]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - fs/ceph/file.c
btrfs: check the root node for uptodate before returning it
[mirror_ubuntu-jammy-kernel.git] / fs / ceph / file.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
3 #include <linux/ceph/striper.h>
4
5 #include <linux/module.h>
6 #include <linux/sched.h>
7 #include <linux/slab.h>
8 #include <linux/file.h>
9 #include <linux/mount.h>
10 #include <linux/namei.h>
11 #include <linux/writeback.h>
12 #include <linux/falloc.h>
13 #include <linux/iversion.h>
14 #include <linux/ktime.h>
15
16 #include "super.h"
17 #include "mds_client.h"
18 #include "cache.h"
19 #include "io.h"
20 #include "metric.h"
21
22 static __le32 ceph_flags_sys2wire(u32 flags)
23 {
24 u32 wire_flags = 0;
25
26 switch (flags & O_ACCMODE) {
27 case O_RDONLY:
28 wire_flags |= CEPH_O_RDONLY;
29 break;
30 case O_WRONLY:
31 wire_flags |= CEPH_O_WRONLY;
32 break;
33 case O_RDWR:
34 wire_flags |= CEPH_O_RDWR;
35 break;
36 }
37
38 flags &= ~O_ACCMODE;
39
40 #define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
41
42 ceph_sys2wire(O_CREAT);
43 ceph_sys2wire(O_EXCL);
44 ceph_sys2wire(O_TRUNC);
45 ceph_sys2wire(O_DIRECTORY);
46 ceph_sys2wire(O_NOFOLLOW);
47
48 #undef ceph_sys2wire
49
50 if (flags)
51 dout("unused open flags: %x\n", flags);
52
53 return cpu_to_le32(wire_flags);
54 }
55
56 /*
57 * Ceph file operations
58 *
59 * Implement basic open/close functionality, and implement
60 * read/write.
61 *
62 * We implement three modes of file I/O:
63 * - buffered uses the generic_file_aio_{read,write} helpers
64 *
65 * - synchronous is used when there is multi-client read/write
66 * sharing, avoids the page cache, and synchronously waits for an
67 * ack from the OSD.
68 *
69 * - direct io takes the variant of the sync path that references
70 * user pages directly.
71 *
72 * fsync() flushes and waits on dirty pages, but just queues metadata
73 * for writeback: since the MDS can recover size and mtime there is no
74 * need to wait for MDS acknowledgement.
75 */
76
77 /*
78 * How many pages to get in one call to iov_iter_get_pages(). This
79 * determines the size of the on-stack array used as a buffer.
80 */
81 #define ITER_GET_BVECS_PAGES 64
82
83 static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
84 struct bio_vec *bvecs)
85 {
86 size_t size = 0;
87 int bvec_idx = 0;
88
89 if (maxsize > iov_iter_count(iter))
90 maxsize = iov_iter_count(iter);
91
92 while (size < maxsize) {
93 struct page *pages[ITER_GET_BVECS_PAGES];
94 ssize_t bytes;
95 size_t start;
96 int idx = 0;
97
98 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
99 ITER_GET_BVECS_PAGES, &start);
100 if (bytes < 0)
101 return size ?: bytes;
102
103 iov_iter_advance(iter, bytes);
104 size += bytes;
105
106 for ( ; bytes; idx++, bvec_idx++) {
107 struct bio_vec bv = {
108 .bv_page = pages[idx],
109 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
110 .bv_offset = start,
111 };
112
113 bvecs[bvec_idx] = bv;
114 bytes -= bv.bv_len;
115 start = 0;
116 }
117 }
118
119 return size;
120 }
121
122 /*
123 * iov_iter_get_pages() only considers one iov_iter segment, no matter
124 * what maxsize or maxpages are given. For ITER_BVEC that is a single
125 * page.
126 *
127 * Attempt to get up to @maxsize bytes worth of pages from @iter.
128 * Return the number of bytes in the created bio_vec array, or an error.
129 */
130 static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
131 struct bio_vec **bvecs, int *num_bvecs)
132 {
133 struct bio_vec *bv;
134 size_t orig_count = iov_iter_count(iter);
135 ssize_t bytes;
136 int npages;
137
138 iov_iter_truncate(iter, maxsize);
139 npages = iov_iter_npages(iter, INT_MAX);
140 iov_iter_reexpand(iter, orig_count);
141
142 /*
143 * __iter_get_bvecs() may populate only part of the array -- zero it
144 * out.
145 */
146 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
147 if (!bv)
148 return -ENOMEM;
149
150 bytes = __iter_get_bvecs(iter, maxsize, bv);
151 if (bytes < 0) {
152 /*
153 * No pages were pinned -- just free the array.
154 */
155 kvfree(bv);
156 return bytes;
157 }
158
159 *bvecs = bv;
160 *num_bvecs = npages;
161 return bytes;
162 }
163
164 static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
165 {
166 int i;
167
168 for (i = 0; i < num_bvecs; i++) {
169 if (bvecs[i].bv_page) {
170 if (should_dirty)
171 set_page_dirty_lock(bvecs[i].bv_page);
172 put_page(bvecs[i].bv_page);
173 }
174 }
175 kvfree(bvecs);
176 }
177
178 /*
179 * Prepare an open request. Preallocate ceph_cap to avoid an
180 * inopportune ENOMEM later.
181 */
182 static struct ceph_mds_request *
183 prepare_open_request(struct super_block *sb, int flags, int create_mode)
184 {
185 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(sb);
186 struct ceph_mds_request *req;
187 int want_auth = USE_ANY_MDS;
188 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
189
190 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
191 want_auth = USE_AUTH_MDS;
192
193 req = ceph_mdsc_create_request(mdsc, op, want_auth);
194 if (IS_ERR(req))
195 goto out;
196 req->r_fmode = ceph_flags_to_mode(flags);
197 req->r_args.open.flags = ceph_flags_sys2wire(flags);
198 req->r_args.open.mode = cpu_to_le32(create_mode);
199 out:
200 return req;
201 }
202
203 static int ceph_init_file_info(struct inode *inode, struct file *file,
204 int fmode, bool isdir)
205 {
206 struct ceph_inode_info *ci = ceph_inode(inode);
207 struct ceph_file_info *fi;
208
209 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
210 inode->i_mode, isdir ? "dir" : "regular");
211 BUG_ON(inode->i_fop->release != ceph_release);
212
213 if (isdir) {
214 struct ceph_dir_file_info *dfi =
215 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
216 if (!dfi)
217 return -ENOMEM;
218
219 file->private_data = dfi;
220 fi = &dfi->file_info;
221 dfi->next_offset = 2;
222 dfi->readdir_cache_idx = -1;
223 } else {
224 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
225 if (!fi)
226 return -ENOMEM;
227
228 file->private_data = fi;
229 }
230
231 ceph_get_fmode(ci, fmode, 1);
232 fi->fmode = fmode;
233
234 spin_lock_init(&fi->rw_contexts_lock);
235 INIT_LIST_HEAD(&fi->rw_contexts);
236 fi->filp_gen = READ_ONCE(ceph_inode_to_client(inode)->filp_gen);
237
238 return 0;
239 }
240
241 /*
242 * initialize private struct file data.
243 * if we fail, clean up by dropping fmode reference on the ceph_inode
244 */
245 static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
246 {
247 int ret = 0;
248
249 switch (inode->i_mode & S_IFMT) {
250 case S_IFREG:
251 ceph_fscache_register_inode_cookie(inode);
252 ceph_fscache_file_set_cookie(inode, file);
253 fallthrough;
254 case S_IFDIR:
255 ret = ceph_init_file_info(inode, file, fmode,
256 S_ISDIR(inode->i_mode));
257 break;
258
259 case S_IFLNK:
260 dout("init_file %p %p 0%o (symlink)\n", inode, file,
261 inode->i_mode);
262 break;
263
264 default:
265 dout("init_file %p %p 0%o (special)\n", inode, file,
266 inode->i_mode);
267 /*
268 * we need to drop the open ref now, since we don't
269 * have .release set to ceph_release.
270 */
271 BUG_ON(inode->i_fop->release == ceph_release);
272
273 /* call the proper open fop */
274 ret = inode->i_fop->open(inode, file);
275 }
276 return ret;
277 }
278
279 /*
280 * try renew caps after session gets killed.
281 */
282 int ceph_renew_caps(struct inode *inode, int fmode)
283 {
284 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
285 struct ceph_inode_info *ci = ceph_inode(inode);
286 struct ceph_mds_request *req;
287 int err, flags, wanted;
288
289 spin_lock(&ci->i_ceph_lock);
290 __ceph_touch_fmode(ci, mdsc, fmode);
291 wanted = __ceph_caps_file_wanted(ci);
292 if (__ceph_is_any_real_caps(ci) &&
293 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
294 int issued = __ceph_caps_issued(ci, NULL);
295 spin_unlock(&ci->i_ceph_lock);
296 dout("renew caps %p want %s issued %s updating mds_wanted\n",
297 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
298 ceph_check_caps(ci, 0, NULL);
299 return 0;
300 }
301 spin_unlock(&ci->i_ceph_lock);
302
303 flags = 0;
304 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
305 flags = O_RDWR;
306 else if (wanted & CEPH_CAP_FILE_RD)
307 flags = O_RDONLY;
308 else if (wanted & CEPH_CAP_FILE_WR)
309 flags = O_WRONLY;
310 #ifdef O_LAZY
311 if (wanted & CEPH_CAP_FILE_LAZYIO)
312 flags |= O_LAZY;
313 #endif
314
315 req = prepare_open_request(inode->i_sb, flags, 0);
316 if (IS_ERR(req)) {
317 err = PTR_ERR(req);
318 goto out;
319 }
320
321 req->r_inode = inode;
322 ihold(inode);
323 req->r_num_caps = 1;
324
325 err = ceph_mdsc_do_request(mdsc, NULL, req);
326 ceph_mdsc_put_request(req);
327 out:
328 dout("renew caps %p open result=%d\n", inode, err);
329 return err < 0 ? err : 0;
330 }
331
332 /*
333 * If we already have the requisite capabilities, we can satisfy
334 * the open request locally (no need to request new caps from the
335 * MDS). We do, however, need to inform the MDS (asynchronously)
336 * if our wanted caps set expands.
337 */
338 int ceph_open(struct inode *inode, struct file *file)
339 {
340 struct ceph_inode_info *ci = ceph_inode(inode);
341 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
342 struct ceph_mds_client *mdsc = fsc->mdsc;
343 struct ceph_mds_request *req;
344 struct ceph_file_info *fi = file->private_data;
345 int err;
346 int flags, fmode, wanted;
347
348 if (fi) {
349 dout("open file %p is already opened\n", file);
350 return 0;
351 }
352
353 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
354 flags = file->f_flags & ~(O_CREAT|O_EXCL);
355 if (S_ISDIR(inode->i_mode))
356 flags = O_DIRECTORY; /* mds likes to know */
357
358 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
359 ceph_vinop(inode), file, flags, file->f_flags);
360 fmode = ceph_flags_to_mode(flags);
361 wanted = ceph_caps_for_mode(fmode);
362
363 /* snapped files are read-only */
364 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
365 return -EROFS;
366
367 /* trivially open snapdir */
368 if (ceph_snap(inode) == CEPH_SNAPDIR) {
369 return ceph_init_file(inode, file, fmode);
370 }
371
372 /*
373 * No need to block if we have caps on the auth MDS (for
374 * write) or any MDS (for read). Update wanted set
375 * asynchronously.
376 */
377 spin_lock(&ci->i_ceph_lock);
378 if (__ceph_is_any_real_caps(ci) &&
379 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
380 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
381 int issued = __ceph_caps_issued(ci, NULL);
382
383 dout("open %p fmode %d want %s issued %s using existing\n",
384 inode, fmode, ceph_cap_string(wanted),
385 ceph_cap_string(issued));
386 __ceph_touch_fmode(ci, mdsc, fmode);
387 spin_unlock(&ci->i_ceph_lock);
388
389 /* adjust wanted? */
390 if ((issued & wanted) != wanted &&
391 (mds_wanted & wanted) != wanted &&
392 ceph_snap(inode) != CEPH_SNAPDIR)
393 ceph_check_caps(ci, 0, NULL);
394
395 return ceph_init_file(inode, file, fmode);
396 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
397 (ci->i_snap_caps & wanted) == wanted) {
398 __ceph_touch_fmode(ci, mdsc, fmode);
399 spin_unlock(&ci->i_ceph_lock);
400 return ceph_init_file(inode, file, fmode);
401 }
402
403 spin_unlock(&ci->i_ceph_lock);
404
405 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
406 req = prepare_open_request(inode->i_sb, flags, 0);
407 if (IS_ERR(req)) {
408 err = PTR_ERR(req);
409 goto out;
410 }
411 req->r_inode = inode;
412 ihold(inode);
413
414 req->r_num_caps = 1;
415 err = ceph_mdsc_do_request(mdsc, NULL, req);
416 if (!err)
417 err = ceph_init_file(inode, file, req->r_fmode);
418 ceph_mdsc_put_request(req);
419 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
420 out:
421 return err;
422 }
423
424 /* Clone the layout from a synchronous create, if the dir now has Dc caps */
425 static void
426 cache_file_layout(struct inode *dst, struct inode *src)
427 {
428 struct ceph_inode_info *cdst = ceph_inode(dst);
429 struct ceph_inode_info *csrc = ceph_inode(src);
430
431 spin_lock(&cdst->i_ceph_lock);
432 if ((__ceph_caps_issued(cdst, NULL) & CEPH_CAP_DIR_CREATE) &&
433 !ceph_file_layout_is_valid(&cdst->i_cached_layout)) {
434 memcpy(&cdst->i_cached_layout, &csrc->i_layout,
435 sizeof(cdst->i_cached_layout));
436 rcu_assign_pointer(cdst->i_cached_layout.pool_ns,
437 ceph_try_get_string(csrc->i_layout.pool_ns));
438 }
439 spin_unlock(&cdst->i_ceph_lock);
440 }
441
442 /*
443 * Try to set up an async create. We need caps, a file layout, and inode number,
444 * and either a lease on the dentry or complete dir info. If any of those
445 * criteria are not satisfied, then return false and the caller can go
446 * synchronous.
447 */
448 static int try_prep_async_create(struct inode *dir, struct dentry *dentry,
449 struct ceph_file_layout *lo, u64 *pino)
450 {
451 struct ceph_inode_info *ci = ceph_inode(dir);
452 struct ceph_dentry_info *di = ceph_dentry(dentry);
453 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_CREATE;
454 u64 ino;
455
456 spin_lock(&ci->i_ceph_lock);
457 /* No auth cap means no chance for Dc caps */
458 if (!ci->i_auth_cap)
459 goto no_async;
460
461 /* Any delegated inos? */
462 if (xa_empty(&ci->i_auth_cap->session->s_delegated_inos))
463 goto no_async;
464
465 if (!ceph_file_layout_is_valid(&ci->i_cached_layout))
466 goto no_async;
467
468 if ((__ceph_caps_issued(ci, NULL) & want) != want)
469 goto no_async;
470
471 if (d_in_lookup(dentry)) {
472 if (!__ceph_dir_is_complete(ci))
473 goto no_async;
474 spin_lock(&dentry->d_lock);
475 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
476 spin_unlock(&dentry->d_lock);
477 } else if (atomic_read(&ci->i_shared_gen) !=
478 READ_ONCE(di->lease_shared_gen)) {
479 goto no_async;
480 }
481
482 ino = ceph_get_deleg_ino(ci->i_auth_cap->session);
483 if (!ino)
484 goto no_async;
485
486 *pino = ino;
487 ceph_take_cap_refs(ci, want, false);
488 memcpy(lo, &ci->i_cached_layout, sizeof(*lo));
489 rcu_assign_pointer(lo->pool_ns,
490 ceph_try_get_string(ci->i_cached_layout.pool_ns));
491 got = want;
492 no_async:
493 spin_unlock(&ci->i_ceph_lock);
494 return got;
495 }
496
497 static void restore_deleg_ino(struct inode *dir, u64 ino)
498 {
499 struct ceph_inode_info *ci = ceph_inode(dir);
500 struct ceph_mds_session *s = NULL;
501
502 spin_lock(&ci->i_ceph_lock);
503 if (ci->i_auth_cap)
504 s = ceph_get_mds_session(ci->i_auth_cap->session);
505 spin_unlock(&ci->i_ceph_lock);
506 if (s) {
507 int err = ceph_restore_deleg_ino(s, ino);
508 if (err)
509 pr_warn("ceph: unable to restore delegated ino 0x%llx to session: %d\n",
510 ino, err);
511 ceph_put_mds_session(s);
512 }
513 }
514
515 static void ceph_async_create_cb(struct ceph_mds_client *mdsc,
516 struct ceph_mds_request *req)
517 {
518 int result = req->r_err ? req->r_err :
519 le32_to_cpu(req->r_reply_info.head->result);
520
521 if (result == -EJUKEBOX)
522 goto out;
523
524 mapping_set_error(req->r_parent->i_mapping, result);
525
526 if (result) {
527 struct dentry *dentry = req->r_dentry;
528 int pathlen = 0;
529 u64 base = 0;
530 char *path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
531 &base, 0);
532
533 ceph_dir_clear_complete(req->r_parent);
534 if (!d_unhashed(dentry))
535 d_drop(dentry);
536
537 /* FIXME: start returning I/O errors on all accesses? */
538 pr_warn("ceph: async create failure path=(%llx)%s result=%d!\n",
539 base, IS_ERR(path) ? "<<bad>>" : path, result);
540 ceph_mdsc_free_path(path, pathlen);
541 }
542
543 if (req->r_target_inode) {
544 struct ceph_inode_info *ci = ceph_inode(req->r_target_inode);
545 u64 ino = ceph_vino(req->r_target_inode).ino;
546
547 if (req->r_deleg_ino != ino)
548 pr_warn("%s: inode number mismatch! err=%d deleg_ino=0x%llx target=0x%llx\n",
549 __func__, req->r_err, req->r_deleg_ino, ino);
550 mapping_set_error(req->r_target_inode->i_mapping, result);
551
552 spin_lock(&ci->i_ceph_lock);
553 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
554 ci->i_ceph_flags &= ~CEPH_I_ASYNC_CREATE;
555 wake_up_bit(&ci->i_ceph_flags, CEPH_ASYNC_CREATE_BIT);
556 }
557 ceph_kick_flushing_inode_caps(req->r_session, ci);
558 spin_unlock(&ci->i_ceph_lock);
559 } else {
560 pr_warn("%s: no req->r_target_inode for 0x%llx\n", __func__,
561 req->r_deleg_ino);
562 }
563 out:
564 ceph_mdsc_release_dir_caps(req);
565 }
566
567 static int ceph_finish_async_create(struct inode *dir, struct dentry *dentry,
568 struct file *file, umode_t mode,
569 struct ceph_mds_request *req,
570 struct ceph_acl_sec_ctx *as_ctx,
571 struct ceph_file_layout *lo)
572 {
573 int ret;
574 char xattr_buf[4];
575 struct ceph_mds_reply_inode in = { };
576 struct ceph_mds_reply_info_in iinfo = { .in = &in };
577 struct ceph_inode_info *ci = ceph_inode(dir);
578 struct inode *inode;
579 struct timespec64 now;
580 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
581 struct ceph_vino vino = { .ino = req->r_deleg_ino,
582 .snap = CEPH_NOSNAP };
583
584 ktime_get_real_ts64(&now);
585
586 inode = ceph_get_inode(dentry->d_sb, vino);
587 if (IS_ERR(inode))
588 return PTR_ERR(inode);
589
590 iinfo.inline_version = CEPH_INLINE_NONE;
591 iinfo.change_attr = 1;
592 ceph_encode_timespec64(&iinfo.btime, &now);
593
594 iinfo.xattr_len = ARRAY_SIZE(xattr_buf);
595 iinfo.xattr_data = xattr_buf;
596 memset(iinfo.xattr_data, 0, iinfo.xattr_len);
597
598 in.ino = cpu_to_le64(vino.ino);
599 in.snapid = cpu_to_le64(CEPH_NOSNAP);
600 in.version = cpu_to_le64(1); // ???
601 in.cap.caps = in.cap.wanted = cpu_to_le32(CEPH_CAP_ALL_FILE);
602 in.cap.cap_id = cpu_to_le64(1);
603 in.cap.realm = cpu_to_le64(ci->i_snap_realm->ino);
604 in.cap.flags = CEPH_CAP_FLAG_AUTH;
605 in.ctime = in.mtime = in.atime = iinfo.btime;
606 in.truncate_seq = cpu_to_le32(1);
607 in.truncate_size = cpu_to_le64(-1ULL);
608 in.xattr_version = cpu_to_le64(1);
609 in.uid = cpu_to_le32(from_kuid(&init_user_ns, current_fsuid()));
610 if (dir->i_mode & S_ISGID) {
611 in.gid = cpu_to_le32(from_kgid(&init_user_ns, dir->i_gid));
612
613 /* Directories always inherit the setgid bit. */
614 if (S_ISDIR(mode))
615 mode |= S_ISGID;
616 else if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP) &&
617 !in_group_p(dir->i_gid) &&
618 !capable_wrt_inode_uidgid(&init_user_ns, dir, CAP_FSETID))
619 mode &= ~S_ISGID;
620 } else {
621 in.gid = cpu_to_le32(from_kgid(&init_user_ns, current_fsgid()));
622 }
623 in.mode = cpu_to_le32((u32)mode);
624
625 in.nlink = cpu_to_le32(1);
626 in.max_size = cpu_to_le64(lo->stripe_unit);
627
628 ceph_file_layout_to_legacy(lo, &in.layout);
629
630 down_read(&mdsc->snap_rwsem);
631 ret = ceph_fill_inode(inode, NULL, &iinfo, NULL, req->r_session,
632 req->r_fmode, NULL);
633 up_read(&mdsc->snap_rwsem);
634 if (ret) {
635 dout("%s failed to fill inode: %d\n", __func__, ret);
636 ceph_dir_clear_complete(dir);
637 if (!d_unhashed(dentry))
638 d_drop(dentry);
639 if (inode->i_state & I_NEW)
640 discard_new_inode(inode);
641 } else {
642 struct dentry *dn;
643
644 dout("%s d_adding new inode 0x%llx to 0x%llx/%s\n", __func__,
645 vino.ino, ceph_ino(dir), dentry->d_name.name);
646 ceph_dir_clear_ordered(dir);
647 ceph_init_inode_acls(inode, as_ctx);
648 if (inode->i_state & I_NEW) {
649 /*
650 * If it's not I_NEW, then someone created this before
651 * we got here. Assume the server is aware of it at
652 * that point and don't worry about setting
653 * CEPH_I_ASYNC_CREATE.
654 */
655 ceph_inode(inode)->i_ceph_flags = CEPH_I_ASYNC_CREATE;
656 unlock_new_inode(inode);
657 }
658 if (d_in_lookup(dentry) || d_really_is_negative(dentry)) {
659 if (!d_unhashed(dentry))
660 d_drop(dentry);
661 dn = d_splice_alias(inode, dentry);
662 WARN_ON_ONCE(dn && dn != dentry);
663 }
664 file->f_mode |= FMODE_CREATED;
665 ret = finish_open(file, dentry, ceph_open);
666 }
667 return ret;
668 }
669
670 /*
671 * Do a lookup + open with a single request. If we get a non-existent
672 * file or symlink, return 1 so the VFS can retry.
673 */
674 int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
675 struct file *file, unsigned flags, umode_t mode)
676 {
677 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
678 struct ceph_mds_client *mdsc = fsc->mdsc;
679 struct ceph_mds_request *req;
680 struct dentry *dn;
681 struct ceph_acl_sec_ctx as_ctx = {};
682 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
683 int mask;
684 int err;
685
686 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
687 dir, dentry, dentry,
688 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
689
690 if (dentry->d_name.len > NAME_MAX)
691 return -ENAMETOOLONG;
692
693 if (flags & O_CREAT) {
694 if (ceph_quota_is_max_files_exceeded(dir))
695 return -EDQUOT;
696 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
697 if (err < 0)
698 return err;
699 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
700 if (err < 0)
701 goto out_ctx;
702 } else if (!d_in_lookup(dentry)) {
703 /* If it's not being looked up, it's negative */
704 return -ENOENT;
705 }
706 retry:
707 /* do the open */
708 req = prepare_open_request(dir->i_sb, flags, mode);
709 if (IS_ERR(req)) {
710 err = PTR_ERR(req);
711 goto out_ctx;
712 }
713 req->r_dentry = dget(dentry);
714 req->r_num_caps = 2;
715 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
716 if (ceph_security_xattr_wanted(dir))
717 mask |= CEPH_CAP_XATTR_SHARED;
718 req->r_args.open.mask = cpu_to_le32(mask);
719 req->r_parent = dir;
720 ihold(dir);
721
722 if (flags & O_CREAT) {
723 struct ceph_file_layout lo;
724
725 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
726 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
727 if (as_ctx.pagelist) {
728 req->r_pagelist = as_ctx.pagelist;
729 as_ctx.pagelist = NULL;
730 }
731 if (try_async &&
732 (req->r_dir_caps =
733 try_prep_async_create(dir, dentry, &lo,
734 &req->r_deleg_ino))) {
735 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
736 req->r_args.open.flags |= cpu_to_le32(CEPH_O_EXCL);
737 req->r_callback = ceph_async_create_cb;
738 err = ceph_mdsc_submit_request(mdsc, dir, req);
739 if (!err) {
740 err = ceph_finish_async_create(dir, dentry,
741 file, mode, req,
742 &as_ctx, &lo);
743 } else if (err == -EJUKEBOX) {
744 restore_deleg_ino(dir, req->r_deleg_ino);
745 ceph_mdsc_put_request(req);
746 try_async = false;
747 goto retry;
748 }
749 goto out_req;
750 }
751 }
752
753 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
754 err = ceph_mdsc_do_request(mdsc,
755 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
756 req);
757 if (err == -ENOENT) {
758 dentry = ceph_handle_snapdir(req, dentry);
759 if (IS_ERR(dentry)) {
760 err = PTR_ERR(dentry);
761 goto out_req;
762 }
763 err = 0;
764 }
765
766 if (!err && (flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
767 err = ceph_handle_notrace_create(dir, dentry);
768
769 if (d_in_lookup(dentry)) {
770 dn = ceph_finish_lookup(req, dentry, err);
771 if (IS_ERR(dn))
772 err = PTR_ERR(dn);
773 } else {
774 /* we were given a hashed negative dentry */
775 dn = NULL;
776 }
777 if (err)
778 goto out_req;
779 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
780 /* make vfs retry on splice, ENOENT, or symlink */
781 dout("atomic_open finish_no_open on dn %p\n", dn);
782 err = finish_no_open(file, dn);
783 } else {
784 dout("atomic_open finish_open on dn %p\n", dn);
785 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
786 struct inode *newino = d_inode(dentry);
787
788 cache_file_layout(dir, newino);
789 ceph_init_inode_acls(newino, &as_ctx);
790 file->f_mode |= FMODE_CREATED;
791 }
792 err = finish_open(file, dentry, ceph_open);
793 }
794 out_req:
795 ceph_mdsc_put_request(req);
796 out_ctx:
797 ceph_release_acl_sec_ctx(&as_ctx);
798 dout("atomic_open result=%d\n", err);
799 return err;
800 }
801
802 int ceph_release(struct inode *inode, struct file *file)
803 {
804 struct ceph_inode_info *ci = ceph_inode(inode);
805
806 if (S_ISDIR(inode->i_mode)) {
807 struct ceph_dir_file_info *dfi = file->private_data;
808 dout("release inode %p dir file %p\n", inode, file);
809 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
810
811 ceph_put_fmode(ci, dfi->file_info.fmode, 1);
812
813 if (dfi->last_readdir)
814 ceph_mdsc_put_request(dfi->last_readdir);
815 kfree(dfi->last_name);
816 kfree(dfi->dir_info);
817 kmem_cache_free(ceph_dir_file_cachep, dfi);
818 } else {
819 struct ceph_file_info *fi = file->private_data;
820 dout("release inode %p regular file %p\n", inode, file);
821 WARN_ON(!list_empty(&fi->rw_contexts));
822
823 ceph_put_fmode(ci, fi->fmode, 1);
824
825 kmem_cache_free(ceph_file_cachep, fi);
826 }
827
828 /* wake up anyone waiting for caps on this inode */
829 wake_up_all(&ci->i_cap_wq);
830 return 0;
831 }
832
833 enum {
834 HAVE_RETRIED = 1,
835 CHECK_EOF = 2,
836 READ_INLINE = 3,
837 };
838
839 /*
840 * Completely synchronous read and write methods. Direct from __user
841 * buffer to osd, or directly to user pages (if O_DIRECT).
842 *
843 * If the read spans object boundary, just do multiple reads. (That's not
844 * atomic, but good enough for now.)
845 *
846 * If we get a short result from the OSD, check against i_size; we need to
847 * only return a short read to the caller if we hit EOF.
848 */
849 static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
850 int *retry_op)
851 {
852 struct file *file = iocb->ki_filp;
853 struct inode *inode = file_inode(file);
854 struct ceph_inode_info *ci = ceph_inode(inode);
855 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
856 struct ceph_osd_client *osdc = &fsc->client->osdc;
857 ssize_t ret;
858 u64 off = iocb->ki_pos;
859 u64 len = iov_iter_count(to);
860
861 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
862 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
863
864 if (!len)
865 return 0;
866 /*
867 * flush any page cache pages in this range. this
868 * will make concurrent normal and sync io slow,
869 * but it will at least behave sensibly when they are
870 * in sequence.
871 */
872 ret = filemap_write_and_wait_range(inode->i_mapping,
873 off, off + len - 1);
874 if (ret < 0)
875 return ret;
876
877 ret = 0;
878 while ((len = iov_iter_count(to)) > 0) {
879 struct ceph_osd_request *req;
880 struct page **pages;
881 int num_pages;
882 size_t page_off;
883 u64 i_size;
884 bool more;
885 int idx;
886 size_t left;
887
888 req = ceph_osdc_new_request(osdc, &ci->i_layout,
889 ci->i_vino, off, &len, 0, 1,
890 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
891 NULL, ci->i_truncate_seq,
892 ci->i_truncate_size, false);
893 if (IS_ERR(req)) {
894 ret = PTR_ERR(req);
895 break;
896 }
897
898 more = len < iov_iter_count(to);
899
900 num_pages = calc_pages_for(off, len);
901 page_off = off & ~PAGE_MASK;
902 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
903 if (IS_ERR(pages)) {
904 ceph_osdc_put_request(req);
905 ret = PTR_ERR(pages);
906 break;
907 }
908
909 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_off,
910 false, false);
911 ret = ceph_osdc_start_request(osdc, req, false);
912 if (!ret)
913 ret = ceph_osdc_wait_request(osdc, req);
914
915 ceph_update_read_metrics(&fsc->mdsc->metric,
916 req->r_start_latency,
917 req->r_end_latency,
918 len, ret);
919
920 ceph_osdc_put_request(req);
921
922 i_size = i_size_read(inode);
923 dout("sync_read %llu~%llu got %zd i_size %llu%s\n",
924 off, len, ret, i_size, (more ? " MORE" : ""));
925
926 if (ret == -ENOENT)
927 ret = 0;
928 if (ret >= 0 && ret < len && (off + ret < i_size)) {
929 int zlen = min(len - ret, i_size - off - ret);
930 int zoff = page_off + ret;
931 dout("sync_read zero gap %llu~%llu\n",
932 off + ret, off + ret + zlen);
933 ceph_zero_page_vector_range(zoff, zlen, pages);
934 ret += zlen;
935 }
936
937 idx = 0;
938 left = ret > 0 ? ret : 0;
939 while (left > 0) {
940 size_t len, copied;
941 page_off = off & ~PAGE_MASK;
942 len = min_t(size_t, left, PAGE_SIZE - page_off);
943 SetPageUptodate(pages[idx]);
944 copied = copy_page_to_iter(pages[idx++],
945 page_off, len, to);
946 off += copied;
947 left -= copied;
948 if (copied < len) {
949 ret = -EFAULT;
950 break;
951 }
952 }
953 ceph_release_page_vector(pages, num_pages);
954
955 if (ret < 0) {
956 if (ret == -EBLOCKLISTED)
957 fsc->blocklisted = true;
958 break;
959 }
960
961 if (off >= i_size || !more)
962 break;
963 }
964
965 if (off > iocb->ki_pos) {
966 if (ret >= 0 &&
967 iov_iter_count(to) > 0 && off >= i_size_read(inode))
968 *retry_op = CHECK_EOF;
969 ret = off - iocb->ki_pos;
970 iocb->ki_pos = off;
971 }
972
973 dout("sync_read result %zd retry_op %d\n", ret, *retry_op);
974 return ret;
975 }
976
977 struct ceph_aio_request {
978 struct kiocb *iocb;
979 size_t total_len;
980 bool write;
981 bool should_dirty;
982 int error;
983 struct list_head osd_reqs;
984 unsigned num_reqs;
985 atomic_t pending_reqs;
986 struct timespec64 mtime;
987 struct ceph_cap_flush *prealloc_cf;
988 };
989
990 struct ceph_aio_work {
991 struct work_struct work;
992 struct ceph_osd_request *req;
993 };
994
995 static void ceph_aio_retry_work(struct work_struct *work);
996
997 static void ceph_aio_complete(struct inode *inode,
998 struct ceph_aio_request *aio_req)
999 {
1000 struct ceph_inode_info *ci = ceph_inode(inode);
1001 int ret;
1002
1003 if (!atomic_dec_and_test(&aio_req->pending_reqs))
1004 return;
1005
1006 if (aio_req->iocb->ki_flags & IOCB_DIRECT)
1007 inode_dio_end(inode);
1008
1009 ret = aio_req->error;
1010 if (!ret)
1011 ret = aio_req->total_len;
1012
1013 dout("ceph_aio_complete %p rc %d\n", inode, ret);
1014
1015 if (ret >= 0 && aio_req->write) {
1016 int dirty;
1017
1018 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
1019 if (endoff > i_size_read(inode)) {
1020 if (ceph_inode_set_size(inode, endoff))
1021 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
1022 }
1023
1024 spin_lock(&ci->i_ceph_lock);
1025 ci->i_inline_version = CEPH_INLINE_NONE;
1026 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1027 &aio_req->prealloc_cf);
1028 spin_unlock(&ci->i_ceph_lock);
1029 if (dirty)
1030 __mark_inode_dirty(inode, dirty);
1031
1032 }
1033
1034 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
1035 CEPH_CAP_FILE_RD));
1036
1037 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
1038
1039 ceph_free_cap_flush(aio_req->prealloc_cf);
1040 kfree(aio_req);
1041 }
1042
1043 static void ceph_aio_complete_req(struct ceph_osd_request *req)
1044 {
1045 int rc = req->r_result;
1046 struct inode *inode = req->r_inode;
1047 struct ceph_aio_request *aio_req = req->r_priv;
1048 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
1049 struct ceph_client_metric *metric = &ceph_sb_to_mdsc(inode->i_sb)->metric;
1050 unsigned int len = osd_data->bvec_pos.iter.bi_size;
1051
1052 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
1053 BUG_ON(!osd_data->num_bvecs);
1054
1055 dout("ceph_aio_complete_req %p rc %d bytes %u\n", inode, rc, len);
1056
1057 if (rc == -EOLDSNAPC) {
1058 struct ceph_aio_work *aio_work;
1059 BUG_ON(!aio_req->write);
1060
1061 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
1062 if (aio_work) {
1063 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
1064 aio_work->req = req;
1065 queue_work(ceph_inode_to_client(inode)->inode_wq,
1066 &aio_work->work);
1067 return;
1068 }
1069 rc = -ENOMEM;
1070 } else if (!aio_req->write) {
1071 if (rc == -ENOENT)
1072 rc = 0;
1073 if (rc >= 0 && len > rc) {
1074 struct iov_iter i;
1075 int zlen = len - rc;
1076
1077 /*
1078 * If read is satisfied by single OSD request,
1079 * it can pass EOF. Otherwise read is within
1080 * i_size.
1081 */
1082 if (aio_req->num_reqs == 1) {
1083 loff_t i_size = i_size_read(inode);
1084 loff_t endoff = aio_req->iocb->ki_pos + rc;
1085 if (endoff < i_size)
1086 zlen = min_t(size_t, zlen,
1087 i_size - endoff);
1088 aio_req->total_len = rc + zlen;
1089 }
1090
1091 iov_iter_bvec(&i, READ, osd_data->bvec_pos.bvecs,
1092 osd_data->num_bvecs, len);
1093 iov_iter_advance(&i, rc);
1094 iov_iter_zero(zlen, &i);
1095 }
1096 }
1097
1098 /* r_start_latency == 0 means the request was not submitted */
1099 if (req->r_start_latency) {
1100 if (aio_req->write)
1101 ceph_update_write_metrics(metric, req->r_start_latency,
1102 req->r_end_latency, len, rc);
1103 else
1104 ceph_update_read_metrics(metric, req->r_start_latency,
1105 req->r_end_latency, len, rc);
1106 }
1107
1108 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
1109 aio_req->should_dirty);
1110 ceph_osdc_put_request(req);
1111
1112 if (rc < 0)
1113 cmpxchg(&aio_req->error, 0, rc);
1114
1115 ceph_aio_complete(inode, aio_req);
1116 return;
1117 }
1118
1119 static void ceph_aio_retry_work(struct work_struct *work)
1120 {
1121 struct ceph_aio_work *aio_work =
1122 container_of(work, struct ceph_aio_work, work);
1123 struct ceph_osd_request *orig_req = aio_work->req;
1124 struct ceph_aio_request *aio_req = orig_req->r_priv;
1125 struct inode *inode = orig_req->r_inode;
1126 struct ceph_inode_info *ci = ceph_inode(inode);
1127 struct ceph_snap_context *snapc;
1128 struct ceph_osd_request *req;
1129 int ret;
1130
1131 spin_lock(&ci->i_ceph_lock);
1132 if (__ceph_have_pending_cap_snap(ci)) {
1133 struct ceph_cap_snap *capsnap =
1134 list_last_entry(&ci->i_cap_snaps,
1135 struct ceph_cap_snap,
1136 ci_item);
1137 snapc = ceph_get_snap_context(capsnap->context);
1138 } else {
1139 BUG_ON(!ci->i_head_snapc);
1140 snapc = ceph_get_snap_context(ci->i_head_snapc);
1141 }
1142 spin_unlock(&ci->i_ceph_lock);
1143
1144 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
1145 false, GFP_NOFS);
1146 if (!req) {
1147 ret = -ENOMEM;
1148 req = orig_req;
1149 goto out;
1150 }
1151
1152 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
1153 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
1154 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
1155
1156 req->r_ops[0] = orig_req->r_ops[0];
1157
1158 req->r_mtime = aio_req->mtime;
1159 req->r_data_offset = req->r_ops[0].extent.offset;
1160
1161 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
1162 if (ret) {
1163 ceph_osdc_put_request(req);
1164 req = orig_req;
1165 goto out;
1166 }
1167
1168 ceph_osdc_put_request(orig_req);
1169
1170 req->r_callback = ceph_aio_complete_req;
1171 req->r_inode = inode;
1172 req->r_priv = aio_req;
1173
1174 ret = ceph_osdc_start_request(req->r_osdc, req, false);
1175 out:
1176 if (ret < 0) {
1177 req->r_result = ret;
1178 ceph_aio_complete_req(req);
1179 }
1180
1181 ceph_put_snap_context(snapc);
1182 kfree(aio_work);
1183 }
1184
1185 static ssize_t
1186 ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
1187 struct ceph_snap_context *snapc,
1188 struct ceph_cap_flush **pcf)
1189 {
1190 struct file *file = iocb->ki_filp;
1191 struct inode *inode = file_inode(file);
1192 struct ceph_inode_info *ci = ceph_inode(inode);
1193 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1194 struct ceph_client_metric *metric = &fsc->mdsc->metric;
1195 struct ceph_vino vino;
1196 struct ceph_osd_request *req;
1197 struct bio_vec *bvecs;
1198 struct ceph_aio_request *aio_req = NULL;
1199 int num_pages = 0;
1200 int flags;
1201 int ret = 0;
1202 struct timespec64 mtime = current_time(inode);
1203 size_t count = iov_iter_count(iter);
1204 loff_t pos = iocb->ki_pos;
1205 bool write = iov_iter_rw(iter) == WRITE;
1206 bool should_dirty = !write && iter_is_iovec(iter);
1207
1208 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1209 return -EROFS;
1210
1211 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
1212 (write ? "write" : "read"), file, pos, (unsigned)count,
1213 snapc, snapc ? snapc->seq : 0);
1214
1215 if (write) {
1216 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
1217 pos >> PAGE_SHIFT,
1218 (pos + count - 1) >> PAGE_SHIFT);
1219 if (ret2 < 0)
1220 dout("invalidate_inode_pages2_range returned %d\n", ret2);
1221
1222 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
1223 } else {
1224 flags = CEPH_OSD_FLAG_READ;
1225 }
1226
1227 while (iov_iter_count(iter) > 0) {
1228 u64 size = iov_iter_count(iter);
1229 ssize_t len;
1230
1231 if (write)
1232 size = min_t(u64, size, fsc->mount_options->wsize);
1233 else
1234 size = min_t(u64, size, fsc->mount_options->rsize);
1235
1236 vino = ceph_vino(inode);
1237 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1238 vino, pos, &size, 0,
1239 1,
1240 write ? CEPH_OSD_OP_WRITE :
1241 CEPH_OSD_OP_READ,
1242 flags, snapc,
1243 ci->i_truncate_seq,
1244 ci->i_truncate_size,
1245 false);
1246 if (IS_ERR(req)) {
1247 ret = PTR_ERR(req);
1248 break;
1249 }
1250
1251 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
1252 if (len < 0) {
1253 ceph_osdc_put_request(req);
1254 ret = len;
1255 break;
1256 }
1257 if (len != size)
1258 osd_req_op_extent_update(req, 0, len);
1259
1260 /*
1261 * To simplify error handling, allow AIO when IO within i_size
1262 * or IO can be satisfied by single OSD request.
1263 */
1264 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
1265 (len == count || pos + count <= i_size_read(inode))) {
1266 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
1267 if (aio_req) {
1268 aio_req->iocb = iocb;
1269 aio_req->write = write;
1270 aio_req->should_dirty = should_dirty;
1271 INIT_LIST_HEAD(&aio_req->osd_reqs);
1272 if (write) {
1273 aio_req->mtime = mtime;
1274 swap(aio_req->prealloc_cf, *pcf);
1275 }
1276 }
1277 /* ignore error */
1278 }
1279
1280 if (write) {
1281 /*
1282 * throw out any page cache pages in this range. this
1283 * may block.
1284 */
1285 truncate_inode_pages_range(inode->i_mapping, pos,
1286 PAGE_ALIGN(pos + len) - 1);
1287
1288 req->r_mtime = mtime;
1289 }
1290
1291 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
1292
1293 if (aio_req) {
1294 aio_req->total_len += len;
1295 aio_req->num_reqs++;
1296 atomic_inc(&aio_req->pending_reqs);
1297
1298 req->r_callback = ceph_aio_complete_req;
1299 req->r_inode = inode;
1300 req->r_priv = aio_req;
1301 list_add_tail(&req->r_private_item, &aio_req->osd_reqs);
1302
1303 pos += len;
1304 continue;
1305 }
1306
1307 ret = ceph_osdc_start_request(req->r_osdc, req, false);
1308 if (!ret)
1309 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1310
1311 if (write)
1312 ceph_update_write_metrics(metric, req->r_start_latency,
1313 req->r_end_latency, len, ret);
1314 else
1315 ceph_update_read_metrics(metric, req->r_start_latency,
1316 req->r_end_latency, len, ret);
1317
1318 size = i_size_read(inode);
1319 if (!write) {
1320 if (ret == -ENOENT)
1321 ret = 0;
1322 if (ret >= 0 && ret < len && pos + ret < size) {
1323 struct iov_iter i;
1324 int zlen = min_t(size_t, len - ret,
1325 size - pos - ret);
1326
1327 iov_iter_bvec(&i, READ, bvecs, num_pages, len);
1328 iov_iter_advance(&i, ret);
1329 iov_iter_zero(zlen, &i);
1330 ret += zlen;
1331 }
1332 if (ret >= 0)
1333 len = ret;
1334 }
1335
1336 put_bvecs(bvecs, num_pages, should_dirty);
1337 ceph_osdc_put_request(req);
1338 if (ret < 0)
1339 break;
1340
1341 pos += len;
1342 if (!write && pos >= size)
1343 break;
1344
1345 if (write && pos > size) {
1346 if (ceph_inode_set_size(inode, pos))
1347 ceph_check_caps(ceph_inode(inode),
1348 CHECK_CAPS_AUTHONLY,
1349 NULL);
1350 }
1351 }
1352
1353 if (aio_req) {
1354 LIST_HEAD(osd_reqs);
1355
1356 if (aio_req->num_reqs == 0) {
1357 kfree(aio_req);
1358 return ret;
1359 }
1360
1361 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1362 CEPH_CAP_FILE_RD);
1363
1364 list_splice(&aio_req->osd_reqs, &osd_reqs);
1365 inode_dio_begin(inode);
1366 while (!list_empty(&osd_reqs)) {
1367 req = list_first_entry(&osd_reqs,
1368 struct ceph_osd_request,
1369 r_private_item);
1370 list_del_init(&req->r_private_item);
1371 if (ret >= 0)
1372 ret = ceph_osdc_start_request(req->r_osdc,
1373 req, false);
1374 if (ret < 0) {
1375 req->r_result = ret;
1376 ceph_aio_complete_req(req);
1377 }
1378 }
1379 return -EIOCBQUEUED;
1380 }
1381
1382 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1383 ret = pos - iocb->ki_pos;
1384 iocb->ki_pos = pos;
1385 }
1386 return ret;
1387 }
1388
1389 /*
1390 * Synchronous write, straight from __user pointer or user pages.
1391 *
1392 * If write spans object boundary, just do multiple writes. (For a
1393 * correct atomic write, we should e.g. take write locks on all
1394 * objects, rollback on failure, etc.)
1395 */
1396 static ssize_t
1397 ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1398 struct ceph_snap_context *snapc)
1399 {
1400 struct file *file = iocb->ki_filp;
1401 struct inode *inode = file_inode(file);
1402 struct ceph_inode_info *ci = ceph_inode(inode);
1403 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1404 struct ceph_vino vino;
1405 struct ceph_osd_request *req;
1406 struct page **pages;
1407 u64 len;
1408 int num_pages;
1409 int written = 0;
1410 int flags;
1411 int ret;
1412 bool check_caps = false;
1413 struct timespec64 mtime = current_time(inode);
1414 size_t count = iov_iter_count(from);
1415
1416 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1417 return -EROFS;
1418
1419 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1420 file, pos, (unsigned)count, snapc, snapc->seq);
1421
1422 ret = filemap_write_and_wait_range(inode->i_mapping,
1423 pos, pos + count - 1);
1424 if (ret < 0)
1425 return ret;
1426
1427 ret = invalidate_inode_pages2_range(inode->i_mapping,
1428 pos >> PAGE_SHIFT,
1429 (pos + count - 1) >> PAGE_SHIFT);
1430 if (ret < 0)
1431 dout("invalidate_inode_pages2_range returned %d\n", ret);
1432
1433 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
1434
1435 while ((len = iov_iter_count(from)) > 0) {
1436 size_t left;
1437 int n;
1438
1439 vino = ceph_vino(inode);
1440 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1441 vino, pos, &len, 0, 1,
1442 CEPH_OSD_OP_WRITE, flags, snapc,
1443 ci->i_truncate_seq,
1444 ci->i_truncate_size,
1445 false);
1446 if (IS_ERR(req)) {
1447 ret = PTR_ERR(req);
1448 break;
1449 }
1450
1451 /*
1452 * write from beginning of first page,
1453 * regardless of io alignment
1454 */
1455 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1456
1457 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
1458 if (IS_ERR(pages)) {
1459 ret = PTR_ERR(pages);
1460 goto out;
1461 }
1462
1463 left = len;
1464 for (n = 0; n < num_pages; n++) {
1465 size_t plen = min_t(size_t, left, PAGE_SIZE);
1466 ret = copy_page_from_iter(pages[n], 0, plen, from);
1467 if (ret != plen) {
1468 ret = -EFAULT;
1469 break;
1470 }
1471 left -= ret;
1472 }
1473
1474 if (ret < 0) {
1475 ceph_release_page_vector(pages, num_pages);
1476 goto out;
1477 }
1478
1479 req->r_inode = inode;
1480
1481 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1482 false, true);
1483
1484 req->r_mtime = mtime;
1485 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1486 if (!ret)
1487 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1488
1489 ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
1490 req->r_end_latency, len, ret);
1491 out:
1492 ceph_osdc_put_request(req);
1493 if (ret != 0) {
1494 ceph_set_error_write(ci);
1495 break;
1496 }
1497
1498 ceph_clear_error_write(ci);
1499 pos += len;
1500 written += len;
1501 if (pos > i_size_read(inode)) {
1502 check_caps = ceph_inode_set_size(inode, pos);
1503 if (check_caps)
1504 ceph_check_caps(ceph_inode(inode),
1505 CHECK_CAPS_AUTHONLY,
1506 NULL);
1507 }
1508
1509 }
1510
1511 if (ret != -EOLDSNAPC && written > 0) {
1512 ret = written;
1513 iocb->ki_pos = pos;
1514 }
1515 return ret;
1516 }
1517
1518 /*
1519 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1520 * Atomically grab references, so that those bits are not released
1521 * back to the MDS mid-read.
1522 *
1523 * Hmm, the sync read case isn't actually async... should it be?
1524 */
1525 static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
1526 {
1527 struct file *filp = iocb->ki_filp;
1528 struct ceph_file_info *fi = filp->private_data;
1529 size_t len = iov_iter_count(to);
1530 struct inode *inode = file_inode(filp);
1531 struct ceph_inode_info *ci = ceph_inode(inode);
1532 bool direct_lock = iocb->ki_flags & IOCB_DIRECT;
1533 ssize_t ret;
1534 int want, got = 0;
1535 int retry_op = 0, read = 0;
1536
1537 again:
1538 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1539 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1540
1541 if (direct_lock)
1542 ceph_start_io_direct(inode);
1543 else
1544 ceph_start_io_read(inode);
1545
1546 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1547 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1548 else
1549 want = CEPH_CAP_FILE_CACHE;
1550 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1, &got);
1551 if (ret < 0) {
1552 if (iocb->ki_flags & IOCB_DIRECT)
1553 ceph_end_io_direct(inode);
1554 else
1555 ceph_end_io_read(inode);
1556 return ret;
1557 }
1558
1559 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
1560 (iocb->ki_flags & IOCB_DIRECT) ||
1561 (fi->flags & CEPH_F_SYNC)) {
1562
1563 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1564 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1565 ceph_cap_string(got));
1566
1567 if (ci->i_inline_version == CEPH_INLINE_NONE) {
1568 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1569 ret = ceph_direct_read_write(iocb, to,
1570 NULL, NULL);
1571 if (ret >= 0 && ret < len)
1572 retry_op = CHECK_EOF;
1573 } else {
1574 ret = ceph_sync_read(iocb, to, &retry_op);
1575 }
1576 } else {
1577 retry_op = READ_INLINE;
1578 }
1579 } else {
1580 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1581 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1582 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1583 ceph_cap_string(got));
1584 ceph_add_rw_context(fi, &rw_ctx);
1585 ret = generic_file_read_iter(iocb, to);
1586 ceph_del_rw_context(fi, &rw_ctx);
1587 }
1588
1589 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1590 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
1591 ceph_put_cap_refs(ci, got);
1592
1593 if (direct_lock)
1594 ceph_end_io_direct(inode);
1595 else
1596 ceph_end_io_read(inode);
1597
1598 if (retry_op > HAVE_RETRIED && ret >= 0) {
1599 int statret;
1600 struct page *page = NULL;
1601 loff_t i_size;
1602 if (retry_op == READ_INLINE) {
1603 page = __page_cache_alloc(GFP_KERNEL);
1604 if (!page)
1605 return -ENOMEM;
1606 }
1607
1608 statret = __ceph_do_getattr(inode, page,
1609 CEPH_STAT_CAP_INLINE_DATA, !!page);
1610 if (statret < 0) {
1611 if (page)
1612 __free_page(page);
1613 if (statret == -ENODATA) {
1614 BUG_ON(retry_op != READ_INLINE);
1615 goto again;
1616 }
1617 return statret;
1618 }
1619
1620 i_size = i_size_read(inode);
1621 if (retry_op == READ_INLINE) {
1622 BUG_ON(ret > 0 || read > 0);
1623 if (iocb->ki_pos < i_size &&
1624 iocb->ki_pos < PAGE_SIZE) {
1625 loff_t end = min_t(loff_t, i_size,
1626 iocb->ki_pos + len);
1627 end = min_t(loff_t, end, PAGE_SIZE);
1628 if (statret < end)
1629 zero_user_segment(page, statret, end);
1630 ret = copy_page_to_iter(page,
1631 iocb->ki_pos & ~PAGE_MASK,
1632 end - iocb->ki_pos, to);
1633 iocb->ki_pos += ret;
1634 read += ret;
1635 }
1636 if (iocb->ki_pos < i_size && read < len) {
1637 size_t zlen = min_t(size_t, len - read,
1638 i_size - iocb->ki_pos);
1639 ret = iov_iter_zero(zlen, to);
1640 iocb->ki_pos += ret;
1641 read += ret;
1642 }
1643 __free_pages(page, 0);
1644 return read;
1645 }
1646
1647 /* hit EOF or hole? */
1648 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
1649 ret < len) {
1650 dout("sync_read hit hole, ppos %lld < size %lld"
1651 ", reading more\n", iocb->ki_pos, i_size);
1652
1653 read += ret;
1654 len -= ret;
1655 retry_op = HAVE_RETRIED;
1656 goto again;
1657 }
1658 }
1659
1660 if (ret >= 0)
1661 ret += read;
1662
1663 return ret;
1664 }
1665
1666 /*
1667 * Take cap references to avoid releasing caps to MDS mid-write.
1668 *
1669 * If we are synchronous, and write with an old snap context, the OSD
1670 * may return EOLDSNAPC. In that case, retry the write.. _after_
1671 * dropping our cap refs and allowing the pending snap to logically
1672 * complete _before_ this write occurs.
1673 *
1674 * If we are near ENOSPC, write synchronously.
1675 */
1676 static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
1677 {
1678 struct file *file = iocb->ki_filp;
1679 struct ceph_file_info *fi = file->private_data;
1680 struct inode *inode = file_inode(file);
1681 struct ceph_inode_info *ci = ceph_inode(inode);
1682 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1683 struct ceph_osd_client *osdc = &fsc->client->osdc;
1684 struct ceph_cap_flush *prealloc_cf;
1685 ssize_t count, written = 0;
1686 int err, want, got;
1687 bool direct_lock = false;
1688 u32 map_flags;
1689 u64 pool_flags;
1690 loff_t pos;
1691 loff_t limit = max(i_size_read(inode), fsc->max_file_size);
1692
1693 if (ceph_snap(inode) != CEPH_NOSNAP)
1694 return -EROFS;
1695
1696 prealloc_cf = ceph_alloc_cap_flush();
1697 if (!prealloc_cf)
1698 return -ENOMEM;
1699
1700 if ((iocb->ki_flags & (IOCB_DIRECT | IOCB_APPEND)) == IOCB_DIRECT)
1701 direct_lock = true;
1702
1703 retry_snap:
1704 if (direct_lock)
1705 ceph_start_io_direct(inode);
1706 else
1707 ceph_start_io_write(inode);
1708
1709 /* We can write back this queue in page reclaim */
1710 current->backing_dev_info = inode_to_bdi(inode);
1711
1712 if (iocb->ki_flags & IOCB_APPEND) {
1713 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1714 if (err < 0)
1715 goto out;
1716 }
1717
1718 err = generic_write_checks(iocb, from);
1719 if (err <= 0)
1720 goto out;
1721
1722 pos = iocb->ki_pos;
1723 if (unlikely(pos >= limit)) {
1724 err = -EFBIG;
1725 goto out;
1726 } else {
1727 iov_iter_truncate(from, limit - pos);
1728 }
1729
1730 count = iov_iter_count(from);
1731 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1732 err = -EDQUOT;
1733 goto out;
1734 }
1735
1736 down_read(&osdc->lock);
1737 map_flags = osdc->osdmap->flags;
1738 pool_flags = ceph_pg_pool_flags(osdc->osdmap, ci->i_layout.pool_id);
1739 up_read(&osdc->lock);
1740 if ((map_flags & CEPH_OSDMAP_FULL) ||
1741 (pool_flags & CEPH_POOL_FLAG_FULL)) {
1742 err = -ENOSPC;
1743 goto out;
1744 }
1745
1746 err = file_remove_privs(file);
1747 if (err)
1748 goto out;
1749
1750 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1751 err = ceph_uninline_data(file, NULL);
1752 if (err < 0)
1753 goto out;
1754 }
1755
1756 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
1757 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
1758 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1759 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1760 else
1761 want = CEPH_CAP_FILE_BUFFER;
1762 got = 0;
1763 err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count, &got);
1764 if (err < 0)
1765 goto out;
1766
1767 err = file_update_time(file);
1768 if (err)
1769 goto out_caps;
1770
1771 inode_inc_iversion_raw(inode);
1772
1773 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
1774 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
1775
1776 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
1777 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1778 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
1779 struct ceph_snap_context *snapc;
1780 struct iov_iter data;
1781
1782 spin_lock(&ci->i_ceph_lock);
1783 if (__ceph_have_pending_cap_snap(ci)) {
1784 struct ceph_cap_snap *capsnap =
1785 list_last_entry(&ci->i_cap_snaps,
1786 struct ceph_cap_snap,
1787 ci_item);
1788 snapc = ceph_get_snap_context(capsnap->context);
1789 } else {
1790 BUG_ON(!ci->i_head_snapc);
1791 snapc = ceph_get_snap_context(ci->i_head_snapc);
1792 }
1793 spin_unlock(&ci->i_ceph_lock);
1794
1795 /* we might need to revert back to that point */
1796 data = *from;
1797 if (iocb->ki_flags & IOCB_DIRECT)
1798 written = ceph_direct_read_write(iocb, &data, snapc,
1799 &prealloc_cf);
1800 else
1801 written = ceph_sync_write(iocb, &data, pos, snapc);
1802 if (direct_lock)
1803 ceph_end_io_direct(inode);
1804 else
1805 ceph_end_io_write(inode);
1806 if (written > 0)
1807 iov_iter_advance(from, written);
1808 ceph_put_snap_context(snapc);
1809 } else {
1810 /*
1811 * No need to acquire the i_truncate_mutex. Because
1812 * the MDS revokes Fwb caps before sending truncate
1813 * message to us. We can't get Fwb cap while there
1814 * are pending vmtruncate. So write and vmtruncate
1815 * can not run at the same time
1816 */
1817 written = generic_perform_write(file, from, pos);
1818 if (likely(written >= 0))
1819 iocb->ki_pos = pos + written;
1820 ceph_end_io_write(inode);
1821 }
1822
1823 if (written >= 0) {
1824 int dirty;
1825
1826 spin_lock(&ci->i_ceph_lock);
1827 ci->i_inline_version = CEPH_INLINE_NONE;
1828 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1829 &prealloc_cf);
1830 spin_unlock(&ci->i_ceph_lock);
1831 if (dirty)
1832 __mark_inode_dirty(inode, dirty);
1833 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1834 ceph_check_caps(ci, 0, NULL);
1835 }
1836
1837 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
1838 inode, ceph_vinop(inode), pos, (unsigned)count,
1839 ceph_cap_string(got));
1840 ceph_put_cap_refs(ci, got);
1841
1842 if (written == -EOLDSNAPC) {
1843 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1844 inode, ceph_vinop(inode), pos, (unsigned)count);
1845 goto retry_snap;
1846 }
1847
1848 if (written >= 0) {
1849 if ((map_flags & CEPH_OSDMAP_NEARFULL) ||
1850 (pool_flags & CEPH_POOL_FLAG_NEARFULL))
1851 iocb->ki_flags |= IOCB_DSYNC;
1852 written = generic_write_sync(iocb, written);
1853 }
1854
1855 goto out_unlocked;
1856 out_caps:
1857 ceph_put_cap_refs(ci, got);
1858 out:
1859 if (direct_lock)
1860 ceph_end_io_direct(inode);
1861 else
1862 ceph_end_io_write(inode);
1863 out_unlocked:
1864 ceph_free_cap_flush(prealloc_cf);
1865 current->backing_dev_info = NULL;
1866 return written ? written : err;
1867 }
1868
1869 /*
1870 * llseek. be sure to verify file size on SEEK_END.
1871 */
1872 static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
1873 {
1874 struct inode *inode = file->f_mapping->host;
1875 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1876 loff_t i_size;
1877 loff_t ret;
1878
1879 inode_lock(inode);
1880
1881 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
1882 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1883 if (ret < 0)
1884 goto out;
1885 }
1886
1887 i_size = i_size_read(inode);
1888 switch (whence) {
1889 case SEEK_END:
1890 offset += i_size;
1891 break;
1892 case SEEK_CUR:
1893 /*
1894 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1895 * position-querying operation. Avoid rewriting the "same"
1896 * f_pos value back to the file because a concurrent read(),
1897 * write() or lseek() might have altered it
1898 */
1899 if (offset == 0) {
1900 ret = file->f_pos;
1901 goto out;
1902 }
1903 offset += file->f_pos;
1904 break;
1905 case SEEK_DATA:
1906 if (offset < 0 || offset >= i_size) {
1907 ret = -ENXIO;
1908 goto out;
1909 }
1910 break;
1911 case SEEK_HOLE:
1912 if (offset < 0 || offset >= i_size) {
1913 ret = -ENXIO;
1914 goto out;
1915 }
1916 offset = i_size;
1917 break;
1918 }
1919
1920 ret = vfs_setpos(file, offset, max(i_size, fsc->max_file_size));
1921
1922 out:
1923 inode_unlock(inode);
1924 return ret;
1925 }
1926
1927 static inline void ceph_zero_partial_page(
1928 struct inode *inode, loff_t offset, unsigned size)
1929 {
1930 struct page *page;
1931 pgoff_t index = offset >> PAGE_SHIFT;
1932
1933 page = find_lock_page(inode->i_mapping, index);
1934 if (page) {
1935 wait_on_page_writeback(page);
1936 zero_user(page, offset & (PAGE_SIZE - 1), size);
1937 unlock_page(page);
1938 put_page(page);
1939 }
1940 }
1941
1942 static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1943 loff_t length)
1944 {
1945 loff_t nearly = round_up(offset, PAGE_SIZE);
1946 if (offset < nearly) {
1947 loff_t size = nearly - offset;
1948 if (length < size)
1949 size = length;
1950 ceph_zero_partial_page(inode, offset, size);
1951 offset += size;
1952 length -= size;
1953 }
1954 if (length >= PAGE_SIZE) {
1955 loff_t size = round_down(length, PAGE_SIZE);
1956 truncate_pagecache_range(inode, offset, offset + size - 1);
1957 offset += size;
1958 length -= size;
1959 }
1960 if (length)
1961 ceph_zero_partial_page(inode, offset, length);
1962 }
1963
1964 static int ceph_zero_partial_object(struct inode *inode,
1965 loff_t offset, loff_t *length)
1966 {
1967 struct ceph_inode_info *ci = ceph_inode(inode);
1968 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1969 struct ceph_osd_request *req;
1970 int ret = 0;
1971 loff_t zero = 0;
1972 int op;
1973
1974 if (!length) {
1975 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1976 length = &zero;
1977 } else {
1978 op = CEPH_OSD_OP_ZERO;
1979 }
1980
1981 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1982 ceph_vino(inode),
1983 offset, length,
1984 0, 1, op,
1985 CEPH_OSD_FLAG_WRITE,
1986 NULL, 0, 0, false);
1987 if (IS_ERR(req)) {
1988 ret = PTR_ERR(req);
1989 goto out;
1990 }
1991
1992 req->r_mtime = inode->i_mtime;
1993 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1994 if (!ret) {
1995 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1996 if (ret == -ENOENT)
1997 ret = 0;
1998 }
1999 ceph_osdc_put_request(req);
2000
2001 out:
2002 return ret;
2003 }
2004
2005 static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
2006 {
2007 int ret = 0;
2008 struct ceph_inode_info *ci = ceph_inode(inode);
2009 s32 stripe_unit = ci->i_layout.stripe_unit;
2010 s32 stripe_count = ci->i_layout.stripe_count;
2011 s32 object_size = ci->i_layout.object_size;
2012 u64 object_set_size = object_size * stripe_count;
2013 u64 nearly, t;
2014
2015 /* round offset up to next period boundary */
2016 nearly = offset + object_set_size - 1;
2017 t = nearly;
2018 nearly -= do_div(t, object_set_size);
2019
2020 while (length && offset < nearly) {
2021 loff_t size = length;
2022 ret = ceph_zero_partial_object(inode, offset, &size);
2023 if (ret < 0)
2024 return ret;
2025 offset += size;
2026 length -= size;
2027 }
2028 while (length >= object_set_size) {
2029 int i;
2030 loff_t pos = offset;
2031 for (i = 0; i < stripe_count; ++i) {
2032 ret = ceph_zero_partial_object(inode, pos, NULL);
2033 if (ret < 0)
2034 return ret;
2035 pos += stripe_unit;
2036 }
2037 offset += object_set_size;
2038 length -= object_set_size;
2039 }
2040 while (length) {
2041 loff_t size = length;
2042 ret = ceph_zero_partial_object(inode, offset, &size);
2043 if (ret < 0)
2044 return ret;
2045 offset += size;
2046 length -= size;
2047 }
2048 return ret;
2049 }
2050
2051 static long ceph_fallocate(struct file *file, int mode,
2052 loff_t offset, loff_t length)
2053 {
2054 struct ceph_file_info *fi = file->private_data;
2055 struct inode *inode = file_inode(file);
2056 struct ceph_inode_info *ci = ceph_inode(inode);
2057 struct ceph_cap_flush *prealloc_cf;
2058 int want, got = 0;
2059 int dirty;
2060 int ret = 0;
2061 loff_t endoff = 0;
2062 loff_t size;
2063
2064 if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2065 return -EOPNOTSUPP;
2066
2067 if (!S_ISREG(inode->i_mode))
2068 return -EOPNOTSUPP;
2069
2070 prealloc_cf = ceph_alloc_cap_flush();
2071 if (!prealloc_cf)
2072 return -ENOMEM;
2073
2074 inode_lock(inode);
2075
2076 if (ceph_snap(inode) != CEPH_NOSNAP) {
2077 ret = -EROFS;
2078 goto unlock;
2079 }
2080
2081 if (ci->i_inline_version != CEPH_INLINE_NONE) {
2082 ret = ceph_uninline_data(file, NULL);
2083 if (ret < 0)
2084 goto unlock;
2085 }
2086
2087 size = i_size_read(inode);
2088
2089 /* Are we punching a hole beyond EOF? */
2090 if (offset >= size)
2091 goto unlock;
2092 if ((offset + length) > size)
2093 length = size - offset;
2094
2095 if (fi->fmode & CEPH_FILE_MODE_LAZY)
2096 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
2097 else
2098 want = CEPH_CAP_FILE_BUFFER;
2099
2100 ret = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, endoff, &got);
2101 if (ret < 0)
2102 goto unlock;
2103
2104 filemap_invalidate_lock(inode->i_mapping);
2105 ceph_zero_pagecache_range(inode, offset, length);
2106 ret = ceph_zero_objects(inode, offset, length);
2107
2108 if (!ret) {
2109 spin_lock(&ci->i_ceph_lock);
2110 ci->i_inline_version = CEPH_INLINE_NONE;
2111 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
2112 &prealloc_cf);
2113 spin_unlock(&ci->i_ceph_lock);
2114 if (dirty)
2115 __mark_inode_dirty(inode, dirty);
2116 }
2117 filemap_invalidate_unlock(inode->i_mapping);
2118
2119 ceph_put_cap_refs(ci, got);
2120 unlock:
2121 inode_unlock(inode);
2122 ceph_free_cap_flush(prealloc_cf);
2123 return ret;
2124 }
2125
2126 /*
2127 * This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
2128 * src_ci. Two attempts are made to obtain both caps, and an error is return if
2129 * this fails; zero is returned on success.
2130 */
2131 static int get_rd_wr_caps(struct file *src_filp, int *src_got,
2132 struct file *dst_filp,
2133 loff_t dst_endoff, int *dst_got)
2134 {
2135 int ret = 0;
2136 bool retrying = false;
2137
2138 retry_caps:
2139 ret = ceph_get_caps(dst_filp, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
2140 dst_endoff, dst_got);
2141 if (ret < 0)
2142 return ret;
2143
2144 /*
2145 * Since we're already holding the FILE_WR capability for the dst file,
2146 * we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
2147 * retry dance instead to try to get both capabilities.
2148 */
2149 ret = ceph_try_get_caps(file_inode(src_filp),
2150 CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
2151 false, src_got);
2152 if (ret <= 0) {
2153 /* Start by dropping dst_ci caps and getting src_ci caps */
2154 ceph_put_cap_refs(ceph_inode(file_inode(dst_filp)), *dst_got);
2155 if (retrying) {
2156 if (!ret)
2157 /* ceph_try_get_caps masks EAGAIN */
2158 ret = -EAGAIN;
2159 return ret;
2160 }
2161 ret = ceph_get_caps(src_filp, CEPH_CAP_FILE_RD,
2162 CEPH_CAP_FILE_SHARED, -1, src_got);
2163 if (ret < 0)
2164 return ret;
2165 /*... drop src_ci caps too, and retry */
2166 ceph_put_cap_refs(ceph_inode(file_inode(src_filp)), *src_got);
2167 retrying = true;
2168 goto retry_caps;
2169 }
2170 return ret;
2171 }
2172
2173 static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
2174 struct ceph_inode_info *dst_ci, int dst_got)
2175 {
2176 ceph_put_cap_refs(src_ci, src_got);
2177 ceph_put_cap_refs(dst_ci, dst_got);
2178 }
2179
2180 /*
2181 * This function does several size-related checks, returning an error if:
2182 * - source file is smaller than off+len
2183 * - destination file size is not OK (inode_newsize_ok())
2184 * - max bytes quotas is exceeded
2185 */
2186 static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
2187 loff_t src_off, loff_t dst_off, size_t len)
2188 {
2189 loff_t size, endoff;
2190
2191 size = i_size_read(src_inode);
2192 /*
2193 * Don't copy beyond source file EOF. Instead of simply setting length
2194 * to (size - src_off), just drop to VFS default implementation, as the
2195 * local i_size may be stale due to other clients writing to the source
2196 * inode.
2197 */
2198 if (src_off + len > size) {
2199 dout("Copy beyond EOF (%llu + %zu > %llu)\n",
2200 src_off, len, size);
2201 return -EOPNOTSUPP;
2202 }
2203 size = i_size_read(dst_inode);
2204
2205 endoff = dst_off + len;
2206 if (inode_newsize_ok(dst_inode, endoff))
2207 return -EOPNOTSUPP;
2208
2209 if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
2210 return -EDQUOT;
2211
2212 return 0;
2213 }
2214
2215 static ssize_t ceph_do_objects_copy(struct ceph_inode_info *src_ci, u64 *src_off,
2216 struct ceph_inode_info *dst_ci, u64 *dst_off,
2217 struct ceph_fs_client *fsc,
2218 size_t len, unsigned int flags)
2219 {
2220 struct ceph_object_locator src_oloc, dst_oloc;
2221 struct ceph_object_id src_oid, dst_oid;
2222 size_t bytes = 0;
2223 u64 src_objnum, src_objoff, dst_objnum, dst_objoff;
2224 u32 src_objlen, dst_objlen;
2225 u32 object_size = src_ci->i_layout.object_size;
2226 int ret;
2227
2228 src_oloc.pool = src_ci->i_layout.pool_id;
2229 src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
2230 dst_oloc.pool = dst_ci->i_layout.pool_id;
2231 dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
2232
2233 while (len >= object_size) {
2234 ceph_calc_file_object_mapping(&src_ci->i_layout, *src_off,
2235 object_size, &src_objnum,
2236 &src_objoff, &src_objlen);
2237 ceph_calc_file_object_mapping(&dst_ci->i_layout, *dst_off,
2238 object_size, &dst_objnum,
2239 &dst_objoff, &dst_objlen);
2240 ceph_oid_init(&src_oid);
2241 ceph_oid_printf(&src_oid, "%llx.%08llx",
2242 src_ci->i_vino.ino, src_objnum);
2243 ceph_oid_init(&dst_oid);
2244 ceph_oid_printf(&dst_oid, "%llx.%08llx",
2245 dst_ci->i_vino.ino, dst_objnum);
2246 /* Do an object remote copy */
2247 ret = ceph_osdc_copy_from(&fsc->client->osdc,
2248 src_ci->i_vino.snap, 0,
2249 &src_oid, &src_oloc,
2250 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2251 CEPH_OSD_OP_FLAG_FADVISE_NOCACHE,
2252 &dst_oid, &dst_oloc,
2253 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2254 CEPH_OSD_OP_FLAG_FADVISE_DONTNEED,
2255 dst_ci->i_truncate_seq,
2256 dst_ci->i_truncate_size,
2257 CEPH_OSD_COPY_FROM_FLAG_TRUNCATE_SEQ);
2258 if (ret) {
2259 if (ret == -EOPNOTSUPP) {
2260 fsc->have_copy_from2 = false;
2261 pr_notice("OSDs don't support copy-from2; disabling copy offload\n");
2262 }
2263 dout("ceph_osdc_copy_from returned %d\n", ret);
2264 if (!bytes)
2265 bytes = ret;
2266 goto out;
2267 }
2268 len -= object_size;
2269 bytes += object_size;
2270 *src_off += object_size;
2271 *dst_off += object_size;
2272 }
2273
2274 out:
2275 ceph_oloc_destroy(&src_oloc);
2276 ceph_oloc_destroy(&dst_oloc);
2277 return bytes;
2278 }
2279
2280 static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off,
2281 struct file *dst_file, loff_t dst_off,
2282 size_t len, unsigned int flags)
2283 {
2284 struct inode *src_inode = file_inode(src_file);
2285 struct inode *dst_inode = file_inode(dst_file);
2286 struct ceph_inode_info *src_ci = ceph_inode(src_inode);
2287 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
2288 struct ceph_cap_flush *prealloc_cf;
2289 struct ceph_fs_client *src_fsc = ceph_inode_to_client(src_inode);
2290 loff_t size;
2291 ssize_t ret = -EIO, bytes;
2292 u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
2293 u32 src_objlen, dst_objlen;
2294 int src_got = 0, dst_got = 0, err, dirty;
2295
2296 if (src_inode->i_sb != dst_inode->i_sb) {
2297 struct ceph_fs_client *dst_fsc = ceph_inode_to_client(dst_inode);
2298
2299 if (ceph_fsid_compare(&src_fsc->client->fsid,
2300 &dst_fsc->client->fsid)) {
2301 dout("Copying files across clusters: src: %pU dst: %pU\n",
2302 &src_fsc->client->fsid, &dst_fsc->client->fsid);
2303 return -EXDEV;
2304 }
2305 }
2306 if (ceph_snap(dst_inode) != CEPH_NOSNAP)
2307 return -EROFS;
2308
2309 /*
2310 * Some of the checks below will return -EOPNOTSUPP, which will force a
2311 * fallback to the default VFS copy_file_range implementation. This is
2312 * desirable in several cases (for ex, the 'len' is smaller than the
2313 * size of the objects, or in cases where that would be more
2314 * efficient).
2315 */
2316
2317 if (ceph_test_mount_opt(src_fsc, NOCOPYFROM))
2318 return -EOPNOTSUPP;
2319
2320 if (!src_fsc->have_copy_from2)
2321 return -EOPNOTSUPP;
2322
2323 /*
2324 * Striped file layouts require that we copy partial objects, but the
2325 * OSD copy-from operation only supports full-object copies. Limit
2326 * this to non-striped file layouts for now.
2327 */
2328 if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
2329 (src_ci->i_layout.stripe_count != 1) ||
2330 (dst_ci->i_layout.stripe_count != 1) ||
2331 (src_ci->i_layout.object_size != dst_ci->i_layout.object_size)) {
2332 dout("Invalid src/dst files layout\n");
2333 return -EOPNOTSUPP;
2334 }
2335
2336 if (len < src_ci->i_layout.object_size)
2337 return -EOPNOTSUPP; /* no remote copy will be done */
2338
2339 prealloc_cf = ceph_alloc_cap_flush();
2340 if (!prealloc_cf)
2341 return -ENOMEM;
2342
2343 /* Start by sync'ing the source and destination files */
2344 ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
2345 if (ret < 0) {
2346 dout("failed to write src file (%zd)\n", ret);
2347 goto out;
2348 }
2349 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
2350 if (ret < 0) {
2351 dout("failed to write dst file (%zd)\n", ret);
2352 goto out;
2353 }
2354
2355 /*
2356 * We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
2357 * clients may have dirty data in their caches. And OSDs know nothing
2358 * about caps, so they can't safely do the remote object copies.
2359 */
2360 err = get_rd_wr_caps(src_file, &src_got,
2361 dst_file, (dst_off + len), &dst_got);
2362 if (err < 0) {
2363 dout("get_rd_wr_caps returned %d\n", err);
2364 ret = -EOPNOTSUPP;
2365 goto out;
2366 }
2367
2368 ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
2369 if (ret < 0)
2370 goto out_caps;
2371
2372 /* Drop dst file cached pages */
2373 ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
2374 dst_off >> PAGE_SHIFT,
2375 (dst_off + len) >> PAGE_SHIFT);
2376 if (ret < 0) {
2377 dout("Failed to invalidate inode pages (%zd)\n", ret);
2378 ret = 0; /* XXX */
2379 }
2380 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
2381 src_ci->i_layout.object_size,
2382 &src_objnum, &src_objoff, &src_objlen);
2383 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2384 dst_ci->i_layout.object_size,
2385 &dst_objnum, &dst_objoff, &dst_objlen);
2386 /* object-level offsets need to the same */
2387 if (src_objoff != dst_objoff) {
2388 ret = -EOPNOTSUPP;
2389 goto out_caps;
2390 }
2391
2392 /*
2393 * Do a manual copy if the object offset isn't object aligned.
2394 * 'src_objlen' contains the bytes left until the end of the object,
2395 * starting at the src_off
2396 */
2397 if (src_objoff) {
2398 dout("Initial partial copy of %u bytes\n", src_objlen);
2399
2400 /*
2401 * we need to temporarily drop all caps as we'll be calling
2402 * {read,write}_iter, which will get caps again.
2403 */
2404 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2405 ret = do_splice_direct(src_file, &src_off, dst_file,
2406 &dst_off, src_objlen, flags);
2407 /* Abort on short copies or on error */
2408 if (ret < src_objlen) {
2409 dout("Failed partial copy (%zd)\n", ret);
2410 goto out;
2411 }
2412 len -= ret;
2413 err = get_rd_wr_caps(src_file, &src_got,
2414 dst_file, (dst_off + len), &dst_got);
2415 if (err < 0)
2416 goto out;
2417 err = is_file_size_ok(src_inode, dst_inode,
2418 src_off, dst_off, len);
2419 if (err < 0)
2420 goto out_caps;
2421 }
2422
2423 size = i_size_read(dst_inode);
2424 bytes = ceph_do_objects_copy(src_ci, &src_off, dst_ci, &dst_off,
2425 src_fsc, len, flags);
2426 if (bytes <= 0) {
2427 if (!ret)
2428 ret = bytes;
2429 goto out_caps;
2430 }
2431 dout("Copied %zu bytes out of %zu\n", bytes, len);
2432 len -= bytes;
2433 ret += bytes;
2434
2435 file_update_time(dst_file);
2436 inode_inc_iversion_raw(dst_inode);
2437
2438 if (dst_off > size) {
2439 /* Let the MDS know about dst file size change */
2440 if (ceph_inode_set_size(dst_inode, dst_off) ||
2441 ceph_quota_is_max_bytes_approaching(dst_inode, dst_off))
2442 ceph_check_caps(dst_ci, CHECK_CAPS_AUTHONLY, NULL);
2443 }
2444 /* Mark Fw dirty */
2445 spin_lock(&dst_ci->i_ceph_lock);
2446 dst_ci->i_inline_version = CEPH_INLINE_NONE;
2447 dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2448 spin_unlock(&dst_ci->i_ceph_lock);
2449 if (dirty)
2450 __mark_inode_dirty(dst_inode, dirty);
2451
2452 out_caps:
2453 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2454
2455 /*
2456 * Do the final manual copy if we still have some bytes left, unless
2457 * there were errors in remote object copies (len >= object_size).
2458 */
2459 if (len && (len < src_ci->i_layout.object_size)) {
2460 dout("Final partial copy of %zu bytes\n", len);
2461 bytes = do_splice_direct(src_file, &src_off, dst_file,
2462 &dst_off, len, flags);
2463 if (bytes > 0)
2464 ret += bytes;
2465 else
2466 dout("Failed partial copy (%zd)\n", bytes);
2467 }
2468
2469 out:
2470 ceph_free_cap_flush(prealloc_cf);
2471
2472 return ret;
2473 }
2474
2475 static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
2476 struct file *dst_file, loff_t dst_off,
2477 size_t len, unsigned int flags)
2478 {
2479 ssize_t ret;
2480
2481 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off,
2482 len, flags);
2483
2484 if (ret == -EOPNOTSUPP || ret == -EXDEV)
2485 ret = generic_copy_file_range(src_file, src_off, dst_file,
2486 dst_off, len, flags);
2487 return ret;
2488 }
2489
2490 const struct file_operations ceph_file_fops = {
2491 .open = ceph_open,
2492 .release = ceph_release,
2493 .llseek = ceph_llseek,
2494 .read_iter = ceph_read_iter,
2495 .write_iter = ceph_write_iter,
2496 .mmap = ceph_mmap,
2497 .fsync = ceph_fsync,
2498 .lock = ceph_lock,
2499 .setlease = simple_nosetlease,
2500 .flock = ceph_flock,
2501 .splice_read = generic_file_splice_read,
2502 .splice_write = iter_file_splice_write,
2503 .unlocked_ioctl = ceph_ioctl,
2504 .compat_ioctl = compat_ptr_ioctl,
2505 .fallocate = ceph_fallocate,
2506 .copy_file_range = ceph_copy_file_range,
2507 };