blob: 18c045e2ead6d822400291ae6353cd4b92803755 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil124e68e2009-10-06 11:31:08 -07002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/module.h>
Sage Weil124e68e2009-10-06 11:31:08 -07004#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/slab.h>
Sage Weil124e68e2009-10-06 11:31:08 -07006#include <linux/file.h>
Sage Weil5ef50c32012-07-31 11:27:36 -07007#include <linux/mount.h>
Sage Weil124e68e2009-10-06 11:31:08 -07008#include <linux/namei.h>
9#include <linux/writeback.h>
Li Wangad7a60d2013-08-15 11:51:44 +080010#include <linux/falloc.h>
Sage Weil124e68e2009-10-06 11:31:08 -070011
12#include "super.h"
13#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040014#include "cache.h"
Sage Weil124e68e2009-10-06 11:31:08 -070015
16/*
17 * Ceph file operations
18 *
19 * Implement basic open/close functionality, and implement
20 * read/write.
21 *
22 * We implement three modes of file I/O:
23 * - buffered uses the generic_file_aio_{read,write} helpers
24 *
25 * - synchronous is used when there is multi-client read/write
26 * sharing, avoids the page cache, and synchronously waits for an
27 * ack from the OSD.
28 *
29 * - direct io takes the variant of the sync path that references
30 * user pages directly.
31 *
32 * fsync() flushes and waits on dirty pages, but just queues metadata
33 * for writeback: since the MDS can recover size and mtime there is no
34 * need to wait for MDS acknowledgement.
35 */
36
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080037/*
38 * Calculate the length sum of direct io vectors that can
39 * be combined into one page vector.
40 */
41static size_t dio_get_pagev_size(const struct iov_iter *it)
42{
43 const struct iovec *iov = it->iov;
44 const struct iovec *iovend = iov + it->nr_segs;
45 size_t size;
46
47 size = iov->iov_len - it->iov_offset;
48 /*
49 * An iov can be page vectored when both the current tail
50 * and the next base are page aligned.
51 */
52 while (PAGE_ALIGNED((iov->iov_base + iov->iov_len)) &&
53 (++iov < iovend && PAGE_ALIGNED((iov->iov_base)))) {
54 size += iov->iov_len;
55 }
56 dout("dio_get_pagevlen len = %zu\n", size);
57 return size;
58}
59
60/*
61 * Allocate a page vector based on (@it, @nbytes).
62 * The return value is the tuple describing a page vector,
63 * that is (@pages, @page_align, @num_pages).
64 */
65static struct page **
66dio_get_pages_alloc(const struct iov_iter *it, size_t nbytes,
67 size_t *page_align, int *num_pages)
68{
69 struct iov_iter tmp_it = *it;
70 size_t align;
71 struct page **pages;
72 int ret = 0, idx, npages;
73
74 align = (unsigned long)(it->iov->iov_base + it->iov_offset) &
75 (PAGE_SIZE - 1);
76 npages = calc_pages_for(align, nbytes);
Michal Hocko752ade62017-05-08 15:57:27 -070077 pages = kvmalloc(sizeof(*pages) * npages, GFP_KERNEL);
78 if (!pages)
79 return ERR_PTR(-ENOMEM);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080080
81 for (idx = 0; idx < npages; ) {
82 size_t start;
83 ret = iov_iter_get_pages(&tmp_it, pages + idx, nbytes,
84 npages - idx, &start);
85 if (ret < 0)
86 goto fail;
87
88 iov_iter_advance(&tmp_it, ret);
89 nbytes -= ret;
90 idx += (ret + start + PAGE_SIZE - 1) / PAGE_SIZE;
91 }
92
93 BUG_ON(nbytes != 0);
94 *num_pages = npages;
95 *page_align = align;
96 dout("dio_get_pages_alloc: got %d pages align %zu\n", npages, align);
97 return pages;
98fail:
99 ceph_put_page_vector(pages, idx, false);
100 return ERR_PTR(ret);
101}
Sage Weil124e68e2009-10-06 11:31:08 -0700102
103/*
104 * Prepare an open request. Preallocate ceph_cap to avoid an
105 * inopportune ENOMEM later.
106 */
107static struct ceph_mds_request *
108prepare_open_request(struct super_block *sb, int flags, int create_mode)
109{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700110 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
111 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700112 struct ceph_mds_request *req;
113 int want_auth = USE_ANY_MDS;
114 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
115
116 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
117 want_auth = USE_AUTH_MDS;
118
119 req = ceph_mdsc_create_request(mdsc, op, want_auth);
120 if (IS_ERR(req))
121 goto out;
122 req->r_fmode = ceph_flags_to_mode(flags);
123 req->r_args.open.flags = cpu_to_le32(flags);
124 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700125out:
126 return req;
127}
128
129/*
130 * initialize private struct file data.
131 * if we fail, clean up by dropping fmode reference on the ceph_inode
132 */
133static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
134{
135 struct ceph_file_info *cf;
136 int ret = 0;
137
138 switch (inode->i_mode & S_IFMT) {
139 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800140 ceph_fscache_register_inode_cookie(inode);
141 ceph_fscache_file_set_cookie(inode, file);
Sage Weil124e68e2009-10-06 11:31:08 -0700142 case S_IFDIR:
143 dout("init_file %p %p 0%o (regular)\n", inode, file,
144 inode->i_mode);
Geliang Tang99ec2692016-03-13 15:26:29 +0800145 cf = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -0700146 if (cf == NULL) {
147 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
148 return -ENOMEM;
149 }
150 cf->fmode = fmode;
151 cf->next_offset = 2;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800152 cf->readdir_cache_idx = -1;
Sage Weil124e68e2009-10-06 11:31:08 -0700153 file->private_data = cf;
154 BUG_ON(inode->i_fop->release != ceph_release);
155 break;
156
157 case S_IFLNK:
158 dout("init_file %p %p 0%o (symlink)\n", inode, file,
159 inode->i_mode);
160 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
161 break;
162
163 default:
164 dout("init_file %p %p 0%o (special)\n", inode, file,
165 inode->i_mode);
166 /*
167 * we need to drop the open ref now, since we don't
168 * have .release set to ceph_release.
169 */
170 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
171 BUG_ON(inode->i_fop->release == ceph_release);
172
173 /* call the proper open fop */
174 ret = inode->i_fop->open(inode, file);
175 }
176 return ret;
177}
178
179/*
Yan, Zheng77310322016-04-08 15:27:16 +0800180 * try renew caps after session gets killed.
181 */
182int ceph_renew_caps(struct inode *inode)
183{
184 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
185 struct ceph_inode_info *ci = ceph_inode(inode);
186 struct ceph_mds_request *req;
187 int err, flags, wanted;
188
189 spin_lock(&ci->i_ceph_lock);
190 wanted = __ceph_caps_file_wanted(ci);
191 if (__ceph_is_any_real_caps(ci) &&
192 (!(wanted & CEPH_CAP_ANY_WR) == 0 || ci->i_auth_cap)) {
193 int issued = __ceph_caps_issued(ci, NULL);
194 spin_unlock(&ci->i_ceph_lock);
195 dout("renew caps %p want %s issued %s updating mds_wanted\n",
196 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
197 ceph_check_caps(ci, 0, NULL);
198 return 0;
199 }
200 spin_unlock(&ci->i_ceph_lock);
201
202 flags = 0;
203 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
204 flags = O_RDWR;
205 else if (wanted & CEPH_CAP_FILE_RD)
206 flags = O_RDONLY;
207 else if (wanted & CEPH_CAP_FILE_WR)
208 flags = O_WRONLY;
209#ifdef O_LAZY
210 if (wanted & CEPH_CAP_FILE_LAZYIO)
211 flags |= O_LAZY;
212#endif
213
214 req = prepare_open_request(inode->i_sb, flags, 0);
215 if (IS_ERR(req)) {
216 err = PTR_ERR(req);
217 goto out;
218 }
219
220 req->r_inode = inode;
221 ihold(inode);
222 req->r_num_caps = 1;
223 req->r_fmode = -1;
224
225 err = ceph_mdsc_do_request(mdsc, NULL, req);
226 ceph_mdsc_put_request(req);
227out:
228 dout("renew caps %p open result=%d\n", inode, err);
229 return err < 0 ? err : 0;
230}
231
232/*
Sage Weil124e68e2009-10-06 11:31:08 -0700233 * If we already have the requisite capabilities, we can satisfy
234 * the open request locally (no need to request new caps from the
235 * MDS). We do, however, need to inform the MDS (asynchronously)
236 * if our wanted caps set expands.
237 */
238int ceph_open(struct inode *inode, struct file *file)
239{
240 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700241 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
242 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700243 struct ceph_mds_request *req;
244 struct ceph_file_info *cf = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700245 int err;
246 int flags, fmode, wanted;
247
248 if (cf) {
249 dout("open file %p is already opened\n", file);
250 return 0;
251 }
252
253 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
254 flags = file->f_flags & ~(O_CREAT|O_EXCL);
255 if (S_ISDIR(inode->i_mode))
256 flags = O_DIRECTORY; /* mds likes to know */
257
258 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
259 ceph_vinop(inode), file, flags, file->f_flags);
260 fmode = ceph_flags_to_mode(flags);
261 wanted = ceph_caps_for_mode(fmode);
262
263 /* snapped files are read-only */
264 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
265 return -EROFS;
266
267 /* trivially open snapdir */
268 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800269 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700270 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800271 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700272 return ceph_init_file(inode, file, fmode);
273 }
274
275 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800276 * No need to block if we have caps on the auth MDS (for
277 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700278 * asynchronously.
279 */
Sage Weilbe655592011-11-30 09:47:09 -0800280 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800281 if (__ceph_is_any_real_caps(ci) &&
282 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800283 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700284 int issued = __ceph_caps_issued(ci, NULL);
285
286 dout("open %p fmode %d want %s issued %s using existing\n",
287 inode, fmode, ceph_cap_string(wanted),
288 ceph_cap_string(issued));
289 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800290 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700291
292 /* adjust wanted? */
293 if ((issued & wanted) != wanted &&
294 (mds_wanted & wanted) != wanted &&
295 ceph_snap(inode) != CEPH_SNAPDIR)
296 ceph_check_caps(ci, 0, NULL);
297
298 return ceph_init_file(inode, file, fmode);
299 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
300 (ci->i_snap_caps & wanted) == wanted) {
301 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800302 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700303 return ceph_init_file(inode, file, fmode);
304 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400305
Sage Weilbe655592011-11-30 09:47:09 -0800306 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700307
308 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
309 req = prepare_open_request(inode->i_sb, flags, 0);
310 if (IS_ERR(req)) {
311 err = PTR_ERR(req);
312 goto out;
313 }
Sage Weil70b666c2011-05-27 09:24:26 -0700314 req->r_inode = inode;
315 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400316
Sage Weil124e68e2009-10-06 11:31:08 -0700317 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800318 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700319 if (!err)
320 err = ceph_init_file(inode, file, req->r_fmode);
321 ceph_mdsc_put_request(req);
322 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
323out:
324 return err;
325}
326
327
328/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700329 * Do a lookup + open with a single request. If we get a non-existent
330 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700331 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700332int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400333 struct file *file, unsigned flags, umode_t mode,
Al Virod9585272012-06-22 12:39:14 +0400334 int *opened)
Sage Weil124e68e2009-10-06 11:31:08 -0700335{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700336 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
337 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700338 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700339 struct dentry *dn;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800340 struct ceph_acls_info acls = {};
Yan, Zheng315f2402016-03-07 10:34:50 +0800341 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700342 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700343
Al Viroa4555892014-10-21 20:11:25 -0400344 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
345 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700346 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
347
348 if (dentry->d_name.len > NAME_MAX)
349 return -ENAMETOOLONG;
350
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800351 if (flags & O_CREAT) {
352 err = ceph_pre_init_acls(dir, &mode, &acls);
353 if (err < 0)
354 return err;
355 }
356
Sage Weil124e68e2009-10-06 11:31:08 -0700357 /* do the open */
358 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800359 if (IS_ERR(req)) {
360 err = PTR_ERR(req);
361 goto out_acl;
362 }
Sage Weil124e68e2009-10-06 11:31:08 -0700363 req->r_dentry = dget(dentry);
364 req->r_num_caps = 2;
365 if (flags & O_CREAT) {
366 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
367 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800368 if (acls.pagelist) {
369 req->r_pagelist = acls.pagelist;
370 acls.pagelist = NULL;
371 }
Sage Weil124e68e2009-10-06 11:31:08 -0700372 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800373
374 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
375 if (ceph_security_xattr_wanted(dir))
376 mask |= CEPH_CAP_XATTR_SHARED;
377 req->r_args.open.mask = cpu_to_le32(mask);
378
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500379 req->r_parent = dir;
380 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700381 err = ceph_mdsc_do_request(mdsc,
382 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
383 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800384 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000385 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800386 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000387
Jianpeng Maa43137f2015-08-18 10:23:50 +0800388 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700389 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700390
Al Viro00699ad2016-07-05 09:44:53 -0400391 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700392 dn = ceph_finish_lookup(req, dentry, err);
393 if (IS_ERR(dn))
394 err = PTR_ERR(dn);
395 } else {
396 /* we were given a hashed negative dentry */
397 dn = NULL;
398 }
Sage Weil468640e2011-07-26 11:28:11 -0700399 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800400 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000401 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700402 /* make vfs retry on splice, ENOENT, or symlink */
403 dout("atomic_open finish_no_open on dn %p\n", dn);
404 err = finish_no_open(file, dn);
405 } else {
406 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800407 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
David Howells2b0143b2015-03-17 22:25:59 +0000408 ceph_init_inode_acls(d_inode(dentry), &acls);
Sam Lang6e8575f2012-12-28 09:56:46 -0800409 *opened |= FILE_CREATED;
410 }
Sage Weil5ef50c32012-07-31 11:27:36 -0700411 err = finish_open(file, dentry, ceph_open, opened);
412 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800413out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800414 if (!req->r_err && req->r_target_inode)
415 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700416 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800417out_acl:
418 ceph_release_acls_info(&acls);
Sage Weil5ef50c32012-07-31 11:27:36 -0700419 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400420 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700421}
422
423int ceph_release(struct inode *inode, struct file *file)
424{
425 struct ceph_inode_info *ci = ceph_inode(inode);
426 struct ceph_file_info *cf = file->private_data;
427
428 dout("release inode %p file %p\n", inode, file);
429 ceph_put_fmode(ci, cf->fmode);
430 if (cf->last_readdir)
431 ceph_mdsc_put_request(cf->last_readdir);
432 kfree(cf->last_name);
433 kfree(cf->dir_info);
Sage Weil124e68e2009-10-06 11:31:08 -0700434 kmem_cache_free(ceph_file_cachep, cf);
Sage Weil195d3ce2010-03-01 09:57:54 -0800435
436 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700437 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700438 return 0;
439}
440
Yan, Zheng83701242014-11-14 22:36:18 +0800441enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800442 HAVE_RETRIED = 1,
443 CHECK_EOF = 2,
444 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800445};
446
Sage Weil124e68e2009-10-06 11:31:08 -0700447/*
Sage Weil124e68e2009-10-06 11:31:08 -0700448 * Read a range of bytes striped over one or more objects. Iterate over
449 * objects we stripe over. (That's not atomic, but good enough for now.)
450 *
451 * If we get a short result from the OSD, check against i_size; we need to
452 * only return a short read to the caller if we hit EOF.
453 */
454static int striped_read(struct inode *inode,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800455 u64 pos, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800456 struct page **pages, int num_pages,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800457 int page_align, int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700458{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700459 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700460 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800461 u64 this_len;
Yan, Zheng99c88e62015-12-30 11:32:46 +0800462 loff_t i_size;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800463 int page_idx;
464 int ret, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700465 bool hit_stripe, was_short;
466
467 /*
468 * we may need to do multiple reads. not atomic, unfortunately.
469 */
Sage Weil124e68e2009-10-06 11:31:08 -0700470more:
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800471 this_len = len;
472 page_idx = (page_align + read) >> PAGE_SHIFT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700473 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700474 &ci->i_layout, pos, &this_len,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800475 ci->i_truncate_seq, ci->i_truncate_size,
476 pages + page_idx, num_pages - page_idx,
477 ((page_align + read) & ~PAGE_MASK));
Sage Weil124e68e2009-10-06 11:31:08 -0700478 if (ret == -ENOENT)
479 ret = 0;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800480 hit_stripe = this_len < len;
Sage Weil0e987282011-06-07 20:40:35 -0700481 was_short = ret >= 0 && ret < this_len;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800482 dout("striped_read %llu~%llu (read %u) got %d%s%s\n", pos, len, read,
Sage Weil124e68e2009-10-06 11:31:08 -0700483 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
484
Yan, Zheng99c88e62015-12-30 11:32:46 +0800485 i_size = i_size_read(inode);
majianpeng02ae66d2013-08-06 16:20:38 +0800486 if (ret >= 0) {
Yan, Zheng99c88e62015-12-30 11:32:46 +0800487 if (was_short && (pos + ret < i_size)) {
488 int zlen = min(this_len - ret, i_size - pos - ret);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800489 int zoff = page_align + read + ret;
majianpeng02ae66d2013-08-06 16:20:38 +0800490 dout(" zero gap %llu to %llu\n",
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800491 pos + ret, pos + ret + zlen);
Yan, Zheng1487a682015-01-06 15:29:14 +0800492 ceph_zero_page_vector_range(zoff, zlen, pages);
493 ret += zlen;
Sage Weil124e68e2009-10-06 11:31:08 -0700494 }
majianpeng02ae66d2013-08-06 16:20:38 +0800495
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800496 read += ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700497 pos += ret;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800498 len -= ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700499
majianpeng02ae66d2013-08-06 16:20:38 +0800500 /* hit stripe and need continue*/
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800501 if (len && hit_stripe && pos < i_size)
Sage Weil124e68e2009-10-06 11:31:08 -0700502 goto more;
503 }
504
majianpengee7289b2013-08-21 15:02:51 +0800505 if (read > 0) {
majianpeng02ae66d2013-08-06 16:20:38 +0800506 ret = read;
Sage Weilc3cd6282011-06-01 16:08:44 -0700507 /* did we bounce off eof? */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800508 if (pos + len > i_size)
Yan, Zheng83701242014-11-14 22:36:18 +0800509 *checkeof = CHECK_EOF;
Sage Weil124e68e2009-10-06 11:31:08 -0700510 }
511
Sage Weil124e68e2009-10-06 11:31:08 -0700512 dout("striped_read returns %d\n", ret);
513 return ret;
514}
515
516/*
517 * Completely synchronous read and write methods. Direct from __user
518 * buffer to osd, or directly to user pages (if O_DIRECT).
519 *
520 * If the read spans object boundary, just do multiple reads.
521 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800522static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
523 int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700524{
majianpeng8eb4efb2013-09-26 14:42:17 +0800525 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500526 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700527 struct page **pages;
majianpeng8eb4efb2013-09-26 14:42:17 +0800528 u64 off = iocb->ki_pos;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800529 int num_pages;
530 ssize_t ret;
531 size_t len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700532
majianpeng8eb4efb2013-09-26 14:42:17 +0800533 dout("sync_read on file %p %llu~%u %s\n", file, off,
534 (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700535 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800536
537 if (!len)
538 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800539 /*
540 * flush any page cache pages in this range. this
541 * will make concurrent normal and sync io slow,
542 * but it will at least behave sensibly when they are
543 * in sequence.
544 */
majianpeng8eb4efb2013-09-26 14:42:17 +0800545 ret = filemap_write_and_wait_range(inode->i_mapping, off,
546 off + len);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800547 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800548 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800549
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800550 if (unlikely(to->type & ITER_PIPE)) {
551 size_t page_off;
552 ret = iov_iter_get_pages_alloc(to, &pages, len,
553 &page_off);
554 if (ret <= 0)
555 return -ENOMEM;
556 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
Sage Weil124e68e2009-10-06 11:31:08 -0700557
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800558 ret = striped_read(inode, off, ret, pages, num_pages,
559 page_off, checkeof);
560 if (ret > 0) {
561 iov_iter_advance(to, ret);
562 off += ret;
563 } else {
564 iov_iter_advance(to, 0);
majianpeng8eb4efb2013-09-26 14:42:17 +0800565 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800566 ceph_put_page_vector(pages, num_pages, false);
567 } else {
568 num_pages = calc_pages_for(off, len);
569 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
570 if (IS_ERR(pages))
571 return PTR_ERR(pages);
572
573 ret = striped_read(inode, off, len, pages, num_pages,
574 (off & ~PAGE_MASK), checkeof);
575 if (ret > 0) {
576 int l, k = 0;
577 size_t left = ret;
578
579 while (left) {
580 size_t page_off = off & ~PAGE_MASK;
581 size_t copy = min_t(size_t, left,
582 PAGE_SIZE - page_off);
583 l = copy_page_to_iter(pages[k++], page_off,
584 copy, to);
585 off += l;
586 left -= l;
587 if (l < copy)
588 break;
589 }
590 }
591 ceph_release_page_vector(pages, num_pages);
majianpeng8eb4efb2013-09-26 14:42:17 +0800592 }
593
594 if (off > iocb->ki_pos) {
595 ret = off - iocb->ki_pos;
596 iocb->ki_pos = off;
597 }
598
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800599 dout("sync_read result %zd\n", ret);
Sage Weil124e68e2009-10-06 11:31:08 -0700600 return ret;
601}
602
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800603struct ceph_aio_request {
604 struct kiocb *iocb;
605 size_t total_len;
606 int write;
607 int error;
608 struct list_head osd_reqs;
609 unsigned num_reqs;
610 atomic_t pending_reqs;
Yan, Zheng5be03892015-12-24 08:44:20 +0800611 struct timespec mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800612 struct ceph_cap_flush *prealloc_cf;
613};
614
Yan, Zheng5be03892015-12-24 08:44:20 +0800615struct ceph_aio_work {
616 struct work_struct work;
617 struct ceph_osd_request *req;
618};
619
620static void ceph_aio_retry_work(struct work_struct *work);
621
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800622static void ceph_aio_complete(struct inode *inode,
623 struct ceph_aio_request *aio_req)
624{
625 struct ceph_inode_info *ci = ceph_inode(inode);
626 int ret;
627
628 if (!atomic_dec_and_test(&aio_req->pending_reqs))
629 return;
630
631 ret = aio_req->error;
632 if (!ret)
633 ret = aio_req->total_len;
634
635 dout("ceph_aio_complete %p rc %d\n", inode, ret);
636
637 if (ret >= 0 && aio_req->write) {
638 int dirty;
639
640 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
641 if (endoff > i_size_read(inode)) {
642 if (ceph_inode_set_size(inode, endoff))
643 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
644 }
645
646 spin_lock(&ci->i_ceph_lock);
647 ci->i_inline_version = CEPH_INLINE_NONE;
648 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
649 &aio_req->prealloc_cf);
650 spin_unlock(&ci->i_ceph_lock);
651 if (dirty)
652 __mark_inode_dirty(inode, dirty);
653
654 }
655
656 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
657 CEPH_CAP_FILE_RD));
658
659 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
660
661 ceph_free_cap_flush(aio_req->prealloc_cf);
662 kfree(aio_req);
663}
664
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200665static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800666{
667 int rc = req->r_result;
668 struct inode *inode = req->r_inode;
669 struct ceph_aio_request *aio_req = req->r_priv;
670 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
671 int num_pages = calc_pages_for((u64)osd_data->alignment,
672 osd_data->length);
673
674 dout("ceph_aio_complete_req %p rc %d bytes %llu\n",
675 inode, rc, osd_data->length);
676
677 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800678 struct ceph_aio_work *aio_work;
679 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800680
Yan, Zheng5be03892015-12-24 08:44:20 +0800681 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
682 if (aio_work) {
683 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
684 aio_work->req = req;
685 queue_work(ceph_inode_to_client(inode)->wb_wq,
686 &aio_work->work);
687 return;
688 }
689 rc = -ENOMEM;
690 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800691 if (rc == -ENOENT)
692 rc = 0;
693 if (rc >= 0 && osd_data->length > rc) {
694 int zoff = osd_data->alignment + rc;
695 int zlen = osd_data->length - rc;
696 /*
697 * If read is satisfied by single OSD request,
698 * it can pass EOF. Otherwise read is within
699 * i_size.
700 */
701 if (aio_req->num_reqs == 1) {
702 loff_t i_size = i_size_read(inode);
703 loff_t endoff = aio_req->iocb->ki_pos + rc;
704 if (endoff < i_size)
705 zlen = min_t(size_t, zlen,
706 i_size - endoff);
707 aio_req->total_len = rc + zlen;
708 }
709
710 if (zlen > 0)
711 ceph_zero_page_vector_range(zoff, zlen,
712 osd_data->pages);
713 }
714 }
715
Yan, Zhenga22bd5f2016-05-26 10:30:13 +0800716 ceph_put_page_vector(osd_data->pages, num_pages, !aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800717 ceph_osdc_put_request(req);
718
719 if (rc < 0)
720 cmpxchg(&aio_req->error, 0, rc);
721
722 ceph_aio_complete(inode, aio_req);
723 return;
724}
725
Yan, Zheng5be03892015-12-24 08:44:20 +0800726static void ceph_aio_retry_work(struct work_struct *work)
727{
728 struct ceph_aio_work *aio_work =
729 container_of(work, struct ceph_aio_work, work);
730 struct ceph_osd_request *orig_req = aio_work->req;
731 struct ceph_aio_request *aio_req = orig_req->r_priv;
732 struct inode *inode = orig_req->r_inode;
733 struct ceph_inode_info *ci = ceph_inode(inode);
734 struct ceph_snap_context *snapc;
735 struct ceph_osd_request *req;
736 int ret;
737
738 spin_lock(&ci->i_ceph_lock);
739 if (__ceph_have_pending_cap_snap(ci)) {
740 struct ceph_cap_snap *capsnap =
741 list_last_entry(&ci->i_cap_snaps,
742 struct ceph_cap_snap,
743 ci_item);
744 snapc = ceph_get_snap_context(capsnap->context);
745 } else {
746 BUG_ON(!ci->i_head_snapc);
747 snapc = ceph_get_snap_context(ci->i_head_snapc);
748 }
749 spin_unlock(&ci->i_ceph_lock);
750
751 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 2,
752 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +0300753 if (!req) {
754 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +0800755 req = orig_req;
756 goto out;
757 }
758
Ilya Dryomov54ea0042017-02-11 18:48:41 +0100759 req->r_flags = CEPH_OSD_FLAG_ORDERSNAP | CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200760 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200761 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +0800762
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200763 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
764 if (ret) {
765 ceph_osdc_put_request(req);
766 req = orig_req;
767 goto out;
768 }
Yan, Zheng5be03892015-12-24 08:44:20 +0800769
770 req->r_ops[0] = orig_req->r_ops[0];
771 osd_req_op_init(req, 1, CEPH_OSD_OP_STARTSYNC, 0);
772
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200773 req->r_mtime = aio_req->mtime;
774 req->r_data_offset = req->r_ops[0].extent.offset;
Yan, Zheng5be03892015-12-24 08:44:20 +0800775
Yan, Zheng5be03892015-12-24 08:44:20 +0800776 ceph_osdc_put_request(orig_req);
777
778 req->r_callback = ceph_aio_complete_req;
779 req->r_inode = inode;
780 req->r_priv = aio_req;
781
782 ret = ceph_osdc_start_request(req->r_osdc, req, false);
783out:
784 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800785 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200786 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +0800787 }
788
Yan, Zhengdb6aed72016-01-26 23:05:37 +0800789 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +0800790 kfree(aio_work);
791}
792
majianpenge8344e62013-09-12 13:54:26 +0800793static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800794ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
795 struct ceph_snap_context *snapc,
796 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -0700797{
majianpenge8344e62013-09-12 13:54:26 +0800798 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500799 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700800 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700801 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500802 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700803 struct ceph_osd_request *req;
804 struct page **pages;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800805 struct ceph_aio_request *aio_req = NULL;
806 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700807 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700808 int ret;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700809 struct timespec mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800810 size_t count = iov_iter_count(iter);
811 loff_t pos = iocb->ki_pos;
812 bool write = iov_iter_rw(iter) == WRITE;
Sage Weil124e68e2009-10-06 11:31:08 -0700813
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800814 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700815 return -EROFS;
816
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800817 dout("sync_direct_read_write (%s) on file %p %lld~%u\n",
818 (write ? "write" : "read"), file, pos, (unsigned)count);
Sage Weil124e68e2009-10-06 11:31:08 -0700819
majianpenge8344e62013-09-12 13:54:26 +0800820 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800821 if (ret < 0)
822 return ret;
823
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800824 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800825 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300826 pos >> PAGE_SHIFT,
827 (pos + count) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800828 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +0100829 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800830
Ilya Dryomov54ea0042017-02-11 18:48:41 +0100831 flags = CEPH_OSD_FLAG_ORDERSNAP | CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800832 } else {
833 flags = CEPH_OSD_FLAG_READ;
834 }
Sage Weil124e68e2009-10-06 11:31:08 -0700835
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800836 while (iov_iter_count(iter) > 0) {
837 u64 size = dio_get_pagev_size(iter);
838 size_t start = 0;
839 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +0800840
majianpenge8344e62013-09-12 13:54:26 +0800841 vino = ceph_vino(inode);
842 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800843 vino, pos, &size, 0,
844 /*include a 'startsync' command*/
845 write ? 2 : 1,
846 write ? CEPH_OSD_OP_WRITE :
847 CEPH_OSD_OP_READ,
848 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +0800849 ci->i_truncate_seq,
850 ci->i_truncate_size,
851 false);
852 if (IS_ERR(req)) {
853 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400854 break;
majianpenge8344e62013-09-12 13:54:26 +0800855 }
856
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800857 len = size;
858 pages = dio_get_pages_alloc(iter, len, &start, &num_pages);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800859 if (IS_ERR(pages)) {
Al Viro64c31312014-04-03 22:58:25 -0400860 ceph_osdc_put_request(req);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800861 ret = PTR_ERR(pages);
Al Viro64c31312014-04-03 22:58:25 -0400862 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700863 }
864
865 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800866 * To simplify error handling, allow AIO when IO within i_size
867 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -0700868 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800869 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
870 (len == count || pos + count <= i_size_read(inode))) {
871 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
872 if (aio_req) {
873 aio_req->iocb = iocb;
874 aio_req->write = write;
875 INIT_LIST_HEAD(&aio_req->osd_reqs);
876 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800877 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800878 swap(aio_req->prealloc_cf, *pcf);
879 }
880 }
881 /* ignore error */
882 }
majianpenge8344e62013-09-12 13:54:26 +0800883
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800884 if (write) {
885 /*
886 * throw out any page cache pages in this range. this
887 * may block.
888 */
889 truncate_inode_pages_range(inode->i_mapping, pos,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300890 (pos+len) | (PAGE_SIZE - 1));
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800891
892 osd_req_op_init(req, 1, CEPH_OSD_OP_STARTSYNC, 0);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200893 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800894 }
895
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800896 osd_req_op_extent_osd_data_pages(req, 0, pages, len, start,
897 false, false);
898
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800899 if (aio_req) {
900 aio_req->total_len += len;
901 aio_req->num_reqs++;
902 atomic_inc(&aio_req->pending_reqs);
903
904 req->r_callback = ceph_aio_complete_req;
905 req->r_inode = inode;
906 req->r_priv = aio_req;
907 list_add_tail(&req->r_unsafe_item, &aio_req->osd_reqs);
908
909 pos += len;
910 iov_iter_advance(iter, len);
911 continue;
912 }
913
914 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +0800915 if (!ret)
916 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
917
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800918 size = i_size_read(inode);
919 if (!write) {
920 if (ret == -ENOENT)
921 ret = 0;
922 if (ret >= 0 && ret < len && pos + ret < size) {
923 int zlen = min_t(size_t, len - ret,
924 size - pos - ret);
925 ceph_zero_page_vector_range(start + ret, zlen,
926 pages);
927 ret += zlen;
928 }
929 if (ret >= 0)
930 len = ret;
931 }
932
Yan, Zhenga22bd5f2016-05-26 10:30:13 +0800933 ceph_put_page_vector(pages, num_pages, !write);
majianpenge8344e62013-09-12 13:54:26 +0800934
majianpenge8344e62013-09-12 13:54:26 +0800935 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800936 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +0800937 break;
Al Viro64c31312014-04-03 22:58:25 -0400938
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800939 pos += len;
940 iov_iter_advance(iter, len);
941
942 if (!write && pos >= size)
943 break;
944
945 if (write && pos > size) {
946 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -0400947 ceph_check_caps(ceph_inode(inode),
948 CHECK_CAPS_AUTHONLY,
949 NULL);
950 }
majianpenge8344e62013-09-12 13:54:26 +0800951 }
952
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800953 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +0800954 LIST_HEAD(osd_reqs);
955
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800956 if (aio_req->num_reqs == 0) {
957 kfree(aio_req);
958 return ret;
959 }
960
961 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
962 CEPH_CAP_FILE_RD);
963
Yan, Zhengfc8c3892016-06-14 11:13:59 +0800964 list_splice(&aio_req->osd_reqs, &osd_reqs);
965 while (!list_empty(&osd_reqs)) {
966 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800967 struct ceph_osd_request,
968 r_unsafe_item);
969 list_del_init(&req->r_unsafe_item);
970 if (ret >= 0)
971 ret = ceph_osdc_start_request(req->r_osdc,
972 req, false);
973 if (ret < 0) {
974 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200975 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800976 }
977 }
978 return -EIOCBQUEUED;
979 }
980
981 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
982 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +0800983 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +0800984 }
985 return ret;
986}
987
majianpenge8344e62013-09-12 13:54:26 +0800988/*
989 * Synchronous write, straight from __user pointer or user pages.
990 *
991 * If write spans object boundary, just do multiple writes. (For a
992 * correct atomic write, we should e.g. take write locks on all
993 * objects, rollback on failure, etc.)
994 */
Yan, Zheng06fee302014-07-28 14:33:46 +0800995static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +0800996ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
997 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +0800998{
999 struct file *file = iocb->ki_filp;
1000 struct inode *inode = file_inode(file);
1001 struct ceph_inode_info *ci = ceph_inode(inode);
1002 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001003 struct ceph_vino vino;
1004 struct ceph_osd_request *req;
1005 struct page **pages;
1006 u64 len;
1007 int num_pages;
1008 int written = 0;
1009 int flags;
1010 int check_caps = 0;
1011 int ret;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001012 struct timespec mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001013 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001014
1015 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1016 return -EROFS;
1017
1018 dout("sync_write on file %p %lld~%u\n", file, pos, (unsigned)count);
1019
1020 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
1021 if (ret < 0)
1022 return ret;
1023
1024 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001025 pos >> PAGE_SHIFT,
1026 (pos + count) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001027 if (ret < 0)
1028 dout("invalidate_inode_pages2_range returned %d\n", ret);
1029
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001030 flags = CEPH_OSD_FLAG_ORDERSNAP | CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001031
Al Viro4908b822014-04-03 23:09:01 -04001032 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001033 size_t left;
1034 int n;
1035
majianpenge8344e62013-09-12 13:54:26 +08001036 vino = ceph_vino(inode);
1037 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001038 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001039 CEPH_OSD_OP_WRITE, flags, snapc,
1040 ci->i_truncate_seq,
1041 ci->i_truncate_size,
1042 false);
1043 if (IS_ERR(req)) {
1044 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001045 break;
majianpenge8344e62013-09-12 13:54:26 +08001046 }
1047
1048 /*
1049 * write from beginning of first page,
1050 * regardless of io alignment
1051 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001052 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001053
Yan, Zheng687265e2015-06-13 17:27:05 +08001054 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001055 if (IS_ERR(pages)) {
1056 ret = PTR_ERR(pages);
1057 goto out;
1058 }
majianpenge8344e62013-09-12 13:54:26 +08001059
1060 left = len;
1061 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001062 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001063 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001064 if (ret != plen) {
1065 ret = -EFAULT;
1066 break;
1067 }
1068 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001069 }
1070
Sage Weil124e68e2009-10-06 11:31:08 -07001071 if (ret < 0) {
1072 ceph_release_page_vector(pages, num_pages);
1073 goto out;
1074 }
1075
majianpenge8344e62013-09-12 13:54:26 +08001076 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001077
majianpenge8344e62013-09-12 13:54:26 +08001078 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1079 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001080
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001081 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001082 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1083 if (!ret)
1084 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001085
1086out:
majianpenge8344e62013-09-12 13:54:26 +08001087 ceph_osdc_put_request(req);
1088 if (ret == 0) {
1089 pos += len;
1090 written += len;
Sage Weil124e68e2009-10-06 11:31:08 -07001091
majianpenge8344e62013-09-12 13:54:26 +08001092 if (pos > i_size_read(inode)) {
1093 check_caps = ceph_inode_set_size(inode, pos);
1094 if (check_caps)
1095 ceph_check_caps(ceph_inode(inode),
1096 CHECK_CAPS_AUTHONLY,
1097 NULL);
1098 }
1099 } else
1100 break;
1101 }
1102
1103 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001104 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001105 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001106 }
1107 return ret;
1108}
1109
1110/*
1111 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1112 * Atomically grab references, so that those bits are not released
1113 * back to the MDS mid-read.
1114 *
1115 * Hmm, the sync read case isn't actually async... should it be?
1116 */
Al Viro36444242014-04-02 20:28:01 -04001117static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001118{
1119 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001120 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001121 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001122 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001123 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001124 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001125 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001126 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001127 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001128
Sage Weil6a026582010-02-09 14:04:02 -08001129again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001130 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1131 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1132
Sage Weil29625072010-05-27 10:40:43 -07001133 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1134 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1135 else
1136 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001137 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -07001138 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +08001139 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001140
Sage Weil29625072010-05-27 10:40:43 -07001141 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001142 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001143 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001144
majianpeng8eb4efb2013-09-26 14:42:17 +08001145 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1146 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1147 ceph_cap_string(got));
1148
Yan, Zheng83701242014-11-14 22:36:18 +08001149 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001150 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1151 ret = ceph_direct_read_write(iocb, to,
1152 NULL, NULL);
1153 if (ret >= 0 && ret < len)
1154 retry_op = CHECK_EOF;
1155 } else {
1156 ret = ceph_sync_read(iocb, to, &retry_op);
1157 }
Yan, Zheng83701242014-11-14 22:36:18 +08001158 } else {
1159 retry_op = READ_INLINE;
1160 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001161 } else {
majianpeng8eb4efb2013-09-26 14:42:17 +08001162 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001163 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001164 ceph_cap_string(got));
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001165 current->journal_info = filp;
Al Viro36444242014-04-02 20:28:01 -04001166 ret = generic_file_read_iter(iocb, to);
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001167 current->journal_info = NULL;
majianpeng8eb4efb2013-09-26 14:42:17 +08001168 }
Sage Weil124e68e2009-10-06 11:31:08 -07001169 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1170 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001171 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001172 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001173 pinned_page = NULL;
1174 }
Sage Weil124e68e2009-10-06 11:31:08 -07001175 ceph_put_cap_refs(ci, got);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001176 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001177 int statret;
1178 struct page *page = NULL;
1179 loff_t i_size;
1180 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001181 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001182 if (!page)
1183 return -ENOMEM;
1184 }
Sage Weil6a026582010-02-09 14:04:02 -08001185
Yan, Zheng83701242014-11-14 22:36:18 +08001186 statret = __ceph_do_getattr(inode, page,
1187 CEPH_STAT_CAP_INLINE_DATA, !!page);
1188 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001189 if (page)
1190 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001191 if (statret == -ENODATA) {
1192 BUG_ON(retry_op != READ_INLINE);
1193 goto again;
1194 }
1195 return statret;
1196 }
1197
1198 i_size = i_size_read(inode);
1199 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001200 BUG_ON(ret > 0 || read > 0);
1201 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001202 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001203 loff_t end = min_t(loff_t, i_size,
1204 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001205 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001206 if (statret < end)
1207 zero_user_segment(page, statret, end);
1208 ret = copy_page_to_iter(page,
1209 iocb->ki_pos & ~PAGE_MASK,
1210 end - iocb->ki_pos, to);
1211 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001212 read += ret;
1213 }
1214 if (iocb->ki_pos < i_size && read < len) {
1215 size_t zlen = min_t(size_t, len - read,
1216 i_size - iocb->ki_pos);
1217 ret = iov_iter_zero(zlen, to);
1218 iocb->ki_pos += ret;
1219 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001220 }
1221 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001222 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001223 }
Sage Weil6a026582010-02-09 14:04:02 -08001224
1225 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001226 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001227 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001228 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001229 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001230
Sage Weil6a026582010-02-09 14:04:02 -08001231 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001232 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001233 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001234 goto again;
1235 }
1236 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001237
Sage Weil6a026582010-02-09 14:04:02 -08001238 if (ret >= 0)
1239 ret += read;
1240
Sage Weil124e68e2009-10-06 11:31:08 -07001241 return ret;
1242}
1243
1244/*
1245 * Take cap references to avoid releasing caps to MDS mid-write.
1246 *
1247 * If we are synchronous, and write with an old snap context, the OSD
1248 * may return EOLDSNAPC. In that case, retry the write.. _after_
1249 * dropping our cap refs and allowing the pending snap to logically
1250 * complete _before_ this write occurs.
1251 *
1252 * If we are near ENOSPC, write synchronously.
1253 */
Al Viro4908b822014-04-03 23:09:01 -04001254static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001255{
1256 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001257 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001258 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001259 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001260 struct ceph_osd_client *osdc =
1261 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001262 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001263 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001264 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -04001265 loff_t pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001266
1267 if (ceph_snap(inode) != CEPH_NOSNAP)
1268 return -EROFS;
1269
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001270 prealloc_cf = ceph_alloc_cap_flush();
1271 if (!prealloc_cf)
1272 return -ENOMEM;
1273
Al Viro59551022016-01-22 15:40:57 -05001274 inode_lock(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001275
Yan, Zheng03d254e2013-04-12 16:11:13 +08001276 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001277 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001278
Yan, Zheng55b0b312015-09-07 11:35:01 +08001279 if (iocb->ki_flags & IOCB_APPEND) {
1280 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1281 if (err < 0)
1282 goto out;
1283 }
1284
Al Viro3309dd02015-04-09 12:55:47 -04001285 err = generic_write_checks(iocb, from);
1286 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001287 goto out;
1288
Al Viro3309dd02015-04-09 12:55:47 -04001289 pos = iocb->ki_pos;
1290 count = iov_iter_count(from);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001291 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001292 if (err)
1293 goto out;
1294
1295 err = file_update_time(file);
1296 if (err)
1297 goto out;
1298
Yan, Zheng28127bd2014-11-14 22:38:29 +08001299 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1300 err = ceph_uninline_data(file, NULL);
1301 if (err < 0)
1302 goto out;
1303 }
1304
Sage Weil124e68e2009-10-06 11:31:08 -07001305retry_snap:
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001306 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001307 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001308 goto out;
1309 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001310
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001311 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001312 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001313 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1314 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1315 else
1316 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001317 got = 0;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001318 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, pos + count,
1319 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001320 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001321 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001322
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001323 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001324 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001325
1326 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001327 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001328 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001329 struct iov_iter data;
Al Viro59551022016-01-22 15:40:57 -05001330 inode_unlock(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001331
1332 spin_lock(&ci->i_ceph_lock);
1333 if (__ceph_have_pending_cap_snap(ci)) {
1334 struct ceph_cap_snap *capsnap =
1335 list_last_entry(&ci->i_cap_snaps,
1336 struct ceph_cap_snap,
1337 ci_item);
1338 snapc = ceph_get_snap_context(capsnap->context);
1339 } else {
1340 BUG_ON(!ci->i_head_snapc);
1341 snapc = ceph_get_snap_context(ci->i_head_snapc);
1342 }
1343 spin_unlock(&ci->i_ceph_lock);
1344
Al Viro4908b822014-04-03 23:09:01 -04001345 /* we might need to revert back to that point */
1346 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001347 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001348 written = ceph_direct_read_write(iocb, &data, snapc,
1349 &prealloc_cf);
majianpenge8344e62013-09-12 13:54:26 +08001350 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001351 written = ceph_sync_write(iocb, &data, pos, snapc);
majianpeng0e5dd452013-08-08 15:32:19 +08001352 if (written == -EOLDSNAPC) {
1353 dout("aio_write %p %llx.%llx %llu~%u"
1354 "got EOLDSNAPC, retrying\n",
1355 inode, ceph_vinop(inode),
Al Viro4908b822014-04-03 23:09:01 -04001356 pos, (unsigned)count);
Al Viro59551022016-01-22 15:40:57 -05001357 inode_lock(inode);
majianpeng0e5dd452013-08-08 15:32:19 +08001358 goto retry_snap;
1359 }
Al Viro4908b822014-04-03 23:09:01 -04001360 if (written > 0)
1361 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001362 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001363 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001364 /*
1365 * No need to acquire the i_truncate_mutex. Because
1366 * the MDS revokes Fwb caps before sending truncate
1367 * message to us. We can't get Fwb cap while there
1368 * are pending vmtruncate. So write and vmtruncate
1369 * can not run at the same time
1370 */
Al Viro4908b822014-04-03 23:09:01 -04001371 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001372 if (likely(written >= 0))
1373 iocb->ki_pos = pos + written;
Al Viro59551022016-01-22 15:40:57 -05001374 inode_unlock(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001375 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001376
Yan, Zheng03d254e2013-04-12 16:11:13 +08001377 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001378 int dirty;
Sage Weilbe655592011-11-30 09:47:09 -08001379 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001380 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001381 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1382 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001383 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001384 if (dirty)
1385 __mark_inode_dirty(inode, dirty);
Sage Weil124e68e2009-10-06 11:31:08 -07001386 }
Sage Weil7971bd92013-05-01 21:15:58 -07001387
Sage Weil124e68e2009-10-06 11:31:08 -07001388 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001389 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001390 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001391 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001392
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001393 if (written >= 0) {
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001394 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001395 iocb->ki_flags |= IOCB_DSYNC;
1396
1397 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001398 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001399
Sage Weil2f75e9e2013-08-09 09:57:58 -07001400 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001401
Sage Weil2f75e9e2013-08-09 09:57:58 -07001402out:
Al Viro59551022016-01-22 15:40:57 -05001403 inode_unlock(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001404out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001405 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001406 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001407 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001408}
1409
1410/*
1411 * llseek. be sure to verify file size on SEEK_END.
1412 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001413static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001414{
1415 struct inode *inode = file->f_mapping->host;
Yan, Zheng99c88e62015-12-30 11:32:46 +08001416 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001417 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001418
Al Viro59551022016-01-22 15:40:57 -05001419 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001420
Andrew Morton965c8e52012-12-17 15:59:39 -08001421 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001422 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001423 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001424 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001425 }
1426
Yan, Zheng99c88e62015-12-30 11:32:46 +08001427 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001428 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001429 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001430 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001431 break;
1432 case SEEK_CUR:
1433 /*
1434 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1435 * position-querying operation. Avoid rewriting the "same"
1436 * f_pos value back to the file because a concurrent read(),
1437 * write() or lseek() might have altered it
1438 */
1439 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001440 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001441 goto out;
1442 }
1443 offset += file->f_pos;
1444 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001445 case SEEK_DATA:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001446 if (offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001447 ret = -ENXIO;
1448 goto out;
1449 }
1450 break;
1451 case SEEK_HOLE:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001452 if (offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001453 ret = -ENXIO;
1454 goto out;
1455 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001456 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001457 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001458 }
1459
Phil Turnbull955818c2016-07-21 13:43:09 -04001460 ret = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Sage Weil124e68e2009-10-06 11:31:08 -07001461
1462out:
Al Viro59551022016-01-22 15:40:57 -05001463 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001464 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001465}
1466
Li Wangad7a60d2013-08-15 11:51:44 +08001467static inline void ceph_zero_partial_page(
1468 struct inode *inode, loff_t offset, unsigned size)
1469{
1470 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001471 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001472
1473 page = find_lock_page(inode->i_mapping, index);
1474 if (page) {
1475 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001476 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001477 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001478 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001479 }
1480}
1481
1482static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1483 loff_t length)
1484{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001485 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001486 if (offset < nearly) {
1487 loff_t size = nearly - offset;
1488 if (length < size)
1489 size = length;
1490 ceph_zero_partial_page(inode, offset, size);
1491 offset += size;
1492 length -= size;
1493 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001494 if (length >= PAGE_SIZE) {
1495 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001496 truncate_pagecache_range(inode, offset, offset + size - 1);
1497 offset += size;
1498 length -= size;
1499 }
1500 if (length)
1501 ceph_zero_partial_page(inode, offset, length);
1502}
1503
1504static int ceph_zero_partial_object(struct inode *inode,
1505 loff_t offset, loff_t *length)
1506{
1507 struct ceph_inode_info *ci = ceph_inode(inode);
1508 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1509 struct ceph_osd_request *req;
1510 int ret = 0;
1511 loff_t zero = 0;
1512 int op;
1513
1514 if (!length) {
1515 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1516 length = &zero;
1517 } else {
1518 op = CEPH_OSD_OP_ZERO;
1519 }
1520
1521 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1522 ceph_vino(inode),
1523 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001524 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001525 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001526 NULL, 0, 0, false);
1527 if (IS_ERR(req)) {
1528 ret = PTR_ERR(req);
1529 goto out;
1530 }
1531
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001532 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001533 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1534 if (!ret) {
1535 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1536 if (ret == -ENOENT)
1537 ret = 0;
1538 }
1539 ceph_osdc_put_request(req);
1540
1541out:
1542 return ret;
1543}
1544
1545static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1546{
1547 int ret = 0;
1548 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001549 s32 stripe_unit = ci->i_layout.stripe_unit;
1550 s32 stripe_count = ci->i_layout.stripe_count;
1551 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001552 u64 object_set_size = object_size * stripe_count;
1553 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001554
Sage Weilb314a902013-08-27 12:15:16 -07001555 /* round offset up to next period boundary */
1556 nearly = offset + object_set_size - 1;
1557 t = nearly;
1558 nearly -= do_div(t, object_set_size);
1559
Li Wangad7a60d2013-08-15 11:51:44 +08001560 while (length && offset < nearly) {
1561 loff_t size = length;
1562 ret = ceph_zero_partial_object(inode, offset, &size);
1563 if (ret < 0)
1564 return ret;
1565 offset += size;
1566 length -= size;
1567 }
1568 while (length >= object_set_size) {
1569 int i;
1570 loff_t pos = offset;
1571 for (i = 0; i < stripe_count; ++i) {
1572 ret = ceph_zero_partial_object(inode, pos, NULL);
1573 if (ret < 0)
1574 return ret;
1575 pos += stripe_unit;
1576 }
1577 offset += object_set_size;
1578 length -= object_set_size;
1579 }
1580 while (length) {
1581 loff_t size = length;
1582 ret = ceph_zero_partial_object(inode, offset, &size);
1583 if (ret < 0)
1584 return ret;
1585 offset += size;
1586 length -= size;
1587 }
1588 return ret;
1589}
1590
1591static long ceph_fallocate(struct file *file, int mode,
1592 loff_t offset, loff_t length)
1593{
1594 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001595 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001596 struct ceph_inode_info *ci = ceph_inode(inode);
1597 struct ceph_osd_client *osdc =
1598 &ceph_inode_to_client(inode)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001599 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001600 int want, got = 0;
1601 int dirty;
1602 int ret = 0;
1603 loff_t endoff = 0;
1604 loff_t size;
1605
Yan, Zheng494d77b2014-06-26 15:25:17 +08001606 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
1607 return -EOPNOTSUPP;
1608
Li Wangad7a60d2013-08-15 11:51:44 +08001609 if (!S_ISREG(inode->i_mode))
1610 return -EOPNOTSUPP;
1611
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001612 prealloc_cf = ceph_alloc_cap_flush();
1613 if (!prealloc_cf)
1614 return -ENOMEM;
1615
Al Viro59551022016-01-22 15:40:57 -05001616 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08001617
1618 if (ceph_snap(inode) != CEPH_NOSNAP) {
1619 ret = -EROFS;
1620 goto unlock;
1621 }
1622
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001623 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) &&
1624 !(mode & FALLOC_FL_PUNCH_HOLE)) {
Li Wangad7a60d2013-08-15 11:51:44 +08001625 ret = -ENOSPC;
1626 goto unlock;
1627 }
1628
Yan, Zheng28127bd2014-11-14 22:38:29 +08001629 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1630 ret = ceph_uninline_data(file, NULL);
1631 if (ret < 0)
1632 goto unlock;
1633 }
1634
Li Wangad7a60d2013-08-15 11:51:44 +08001635 size = i_size_read(inode);
1636 if (!(mode & FALLOC_FL_KEEP_SIZE))
1637 endoff = offset + length;
1638
1639 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1640 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1641 else
1642 want = CEPH_CAP_FILE_BUFFER;
1643
Yan, Zheng3738daa2014-11-14 22:10:07 +08001644 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001645 if (ret < 0)
1646 goto unlock;
1647
1648 if (mode & FALLOC_FL_PUNCH_HOLE) {
1649 if (offset < size)
1650 ceph_zero_pagecache_range(inode, offset, length);
1651 ret = ceph_zero_objects(inode, offset, length);
1652 } else if (endoff > size) {
1653 truncate_pagecache_range(inode, size, -1);
1654 if (ceph_inode_set_size(inode, endoff))
1655 ceph_check_caps(ceph_inode(inode),
1656 CHECK_CAPS_AUTHONLY, NULL);
1657 }
1658
1659 if (!ret) {
1660 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001661 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001662 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1663 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001664 spin_unlock(&ci->i_ceph_lock);
1665 if (dirty)
1666 __mark_inode_dirty(inode, dirty);
1667 }
1668
1669 ceph_put_cap_refs(ci, got);
1670unlock:
Al Viro59551022016-01-22 15:40:57 -05001671 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001672 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001673 return ret;
1674}
1675
Sage Weil124e68e2009-10-06 11:31:08 -07001676const struct file_operations ceph_file_fops = {
1677 .open = ceph_open,
1678 .release = ceph_release,
1679 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04001680 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04001681 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07001682 .mmap = ceph_mmap,
1683 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07001684 .lock = ceph_lock,
1685 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08001686 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04001687 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07001688 .unlocked_ioctl = ceph_ioctl,
1689 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08001690 .fallocate = ceph_fallocate,
Sage Weil124e68e2009-10-06 11:31:08 -07001691};
1692