ceph: auto reconnect after blacklisted
[linux-block.git] / fs / ceph / file.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
503f82a9 3#include <linux/ceph/striper.h>
124e68e7 4
3d14c5d2 5#include <linux/module.h>
124e68e7 6#include <linux/sched.h>
5a0e3ad6 7#include <linux/slab.h>
124e68e7 8#include <linux/file.h>
5ef50c3b 9#include <linux/mount.h>
124e68e7
SW
10#include <linux/namei.h>
11#include <linux/writeback.h>
ad7a60de 12#include <linux/falloc.h>
5c308356 13#include <linux/iversion.h>
124e68e7
SW
14
15#include "super.h"
16#include "mds_client.h"
99ccbd22 17#include "cache.h"
124e68e7 18
f775ff7d
AG
19static __le32 ceph_flags_sys2wire(u32 flags)
20{
21 u32 wire_flags = 0;
22
23 switch (flags & O_ACCMODE) {
24 case O_RDONLY:
25 wire_flags |= CEPH_O_RDONLY;
26 break;
27 case O_WRONLY:
28 wire_flags |= CEPH_O_WRONLY;
29 break;
30 case O_RDWR:
31 wire_flags |= CEPH_O_RDWR;
32 break;
33 }
34
51b10f3f
CX
35 flags &= ~O_ACCMODE;
36
f775ff7d
AG
37#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
38
39 ceph_sys2wire(O_CREAT);
40 ceph_sys2wire(O_EXCL);
41 ceph_sys2wire(O_TRUNC);
42 ceph_sys2wire(O_DIRECTORY);
43 ceph_sys2wire(O_NOFOLLOW);
44
45#undef ceph_sys2wire
46
47 if (flags)
4c069a58 48 dout("unused open flags: %x\n", flags);
f775ff7d
AG
49
50 return cpu_to_le32(wire_flags);
51}
52
124e68e7
SW
53/*
54 * Ceph file operations
55 *
56 * Implement basic open/close functionality, and implement
57 * read/write.
58 *
59 * We implement three modes of file I/O:
60 * - buffered uses the generic_file_aio_{read,write} helpers
61 *
62 * - synchronous is used when there is multi-client read/write
63 * sharing, avoids the page cache, and synchronously waits for an
64 * ack from the OSD.
65 *
66 * - direct io takes the variant of the sync path that references
67 * user pages directly.
68 *
69 * fsync() flushes and waits on dirty pages, but just queues metadata
70 * for writeback: since the MDS can recover size and mtime there is no
71 * need to wait for MDS acknowledgement.
72 */
73
b5b98989 74/*
fc218544
ID
75 * How many pages to get in one call to iov_iter_get_pages(). This
76 * determines the size of the on-stack array used as a buffer.
b5b98989 77 */
fc218544
ID
78#define ITER_GET_BVECS_PAGES 64
79
80static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
81 struct bio_vec *bvecs)
b5b98989 82{
fc218544
ID
83 size_t size = 0;
84 int bvec_idx = 0;
85
86 if (maxsize > iov_iter_count(iter))
87 maxsize = iov_iter_count(iter);
88
89 while (size < maxsize) {
90 struct page *pages[ITER_GET_BVECS_PAGES];
91 ssize_t bytes;
92 size_t start;
93 int idx = 0;
94
95 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
96 ITER_GET_BVECS_PAGES, &start);
97 if (bytes < 0)
98 return size ?: bytes;
99
100 iov_iter_advance(iter, bytes);
101 size += bytes;
102
103 for ( ; bytes; idx++, bvec_idx++) {
104 struct bio_vec bv = {
105 .bv_page = pages[idx],
106 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
107 .bv_offset = start,
108 };
109
110 bvecs[bvec_idx] = bv;
111 bytes -= bv.bv_len;
112 start = 0;
113 }
114 }
115
116 return size;
b5b98989
ZC
117}
118
119/*
fc218544
ID
120 * iov_iter_get_pages() only considers one iov_iter segment, no matter
121 * what maxsize or maxpages are given. For ITER_BVEC that is a single
122 * page.
123 *
124 * Attempt to get up to @maxsize bytes worth of pages from @iter.
125 * Return the number of bytes in the created bio_vec array, or an error.
b5b98989 126 */
fc218544
ID
127static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
128 struct bio_vec **bvecs, int *num_bvecs)
b5b98989 129{
fc218544
ID
130 struct bio_vec *bv;
131 size_t orig_count = iov_iter_count(iter);
132 ssize_t bytes;
133 int npages;
b5b98989 134
fc218544
ID
135 iov_iter_truncate(iter, maxsize);
136 npages = iov_iter_npages(iter, INT_MAX);
137 iov_iter_reexpand(iter, orig_count);
b5b98989 138
fc218544
ID
139 /*
140 * __iter_get_bvecs() may populate only part of the array -- zero it
141 * out.
142 */
143 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
144 if (!bv)
145 return -ENOMEM;
b5b98989 146
fc218544
ID
147 bytes = __iter_get_bvecs(iter, maxsize, bv);
148 if (bytes < 0) {
149 /*
150 * No pages were pinned -- just free the array.
151 */
152 kvfree(bv);
153 return bytes;
b5b98989
ZC
154 }
155
fc218544
ID
156 *bvecs = bv;
157 *num_bvecs = npages;
158 return bytes;
159}
160
161static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
162{
163 int i;
164
165 for (i = 0; i < num_bvecs; i++) {
166 if (bvecs[i].bv_page) {
167 if (should_dirty)
168 set_page_dirty_lock(bvecs[i].bv_page);
169 put_page(bvecs[i].bv_page);
170 }
171 }
172 kvfree(bvecs);
b5b98989 173}
124e68e7
SW
174
175/*
176 * Prepare an open request. Preallocate ceph_cap to avoid an
177 * inopportune ENOMEM later.
178 */
179static struct ceph_mds_request *
180prepare_open_request(struct super_block *sb, int flags, int create_mode)
181{
3d14c5d2
YS
182 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
183 struct ceph_mds_client *mdsc = fsc->mdsc;
124e68e7
SW
184 struct ceph_mds_request *req;
185 int want_auth = USE_ANY_MDS;
186 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
187
188 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
189 want_auth = USE_AUTH_MDS;
190
191 req = ceph_mdsc_create_request(mdsc, op, want_auth);
192 if (IS_ERR(req))
193 goto out;
194 req->r_fmode = ceph_flags_to_mode(flags);
f775ff7d 195 req->r_args.open.flags = ceph_flags_sys2wire(flags);
124e68e7 196 req->r_args.open.mode = cpu_to_le32(create_mode);
124e68e7
SW
197out:
198 return req;
199}
200
bb48bd4d
CX
201static int ceph_init_file_info(struct inode *inode, struct file *file,
202 int fmode, bool isdir)
203{
f4b97866 204 struct ceph_inode_info *ci = ceph_inode(inode);
bb48bd4d
CX
205 struct ceph_file_info *fi;
206
207 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
208 inode->i_mode, isdir ? "dir" : "regular");
209 BUG_ON(inode->i_fop->release != ceph_release);
210
211 if (isdir) {
212 struct ceph_dir_file_info *dfi =
213 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
214 if (!dfi) {
f4b97866 215 ceph_put_fmode(ci, fmode); /* clean up */
bb48bd4d
CX
216 return -ENOMEM;
217 }
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) {
f4b97866 226 ceph_put_fmode(ci, fmode); /* clean up */
bb48bd4d
CX
227 return -ENOMEM;
228 }
229
230 file->private_data = fi;
231 }
232
233 fi->fmode = fmode;
234 spin_lock_init(&fi->rw_contexts_lock);
235 INIT_LIST_HEAD(&fi->rw_contexts);
f4b97866 236 fi->meta_err = errseq_sample(&ci->i_meta_err);
81f148a9 237 fi->filp_gen = READ_ONCE(ceph_inode_to_client(inode)->filp_gen);
bb48bd4d
CX
238
239 return 0;
240}
241
124e68e7
SW
242/*
243 * initialize private struct file data.
244 * if we fail, clean up by dropping fmode reference on the ceph_inode
245 */
246static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
247{
124e68e7
SW
248 int ret = 0;
249
250 switch (inode->i_mode & S_IFMT) {
251 case S_IFREG:
46b59b2b
YZ
252 ceph_fscache_register_inode_cookie(inode);
253 ceph_fscache_file_set_cookie(inode, file);
0a4c9265 254 /* fall through */
124e68e7 255 case S_IFDIR:
bb48bd4d
CX
256 ret = ceph_init_file_info(inode, file, fmode,
257 S_ISDIR(inode->i_mode));
258 if (ret)
259 return ret;
124e68e7
SW
260 break;
261
262 case S_IFLNK:
263 dout("init_file %p %p 0%o (symlink)\n", inode, file,
264 inode->i_mode);
265 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
266 break;
267
268 default:
269 dout("init_file %p %p 0%o (special)\n", inode, file,
270 inode->i_mode);
271 /*
272 * we need to drop the open ref now, since we don't
273 * have .release set to ceph_release.
274 */
275 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
276 BUG_ON(inode->i_fop->release == ceph_release);
277
278 /* call the proper open fop */
279 ret = inode->i_fop->open(inode, file);
280 }
281 return ret;
282}
283
77310320
YZ
284/*
285 * try renew caps after session gets killed.
286 */
287int ceph_renew_caps(struct inode *inode)
288{
289 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
290 struct ceph_inode_info *ci = ceph_inode(inode);
291 struct ceph_mds_request *req;
292 int err, flags, wanted;
293
294 spin_lock(&ci->i_ceph_lock);
295 wanted = __ceph_caps_file_wanted(ci);
296 if (__ceph_is_any_real_caps(ci) &&
8242c9f3 297 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
77310320
YZ
298 int issued = __ceph_caps_issued(ci, NULL);
299 spin_unlock(&ci->i_ceph_lock);
300 dout("renew caps %p want %s issued %s updating mds_wanted\n",
301 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
302 ceph_check_caps(ci, 0, NULL);
303 return 0;
304 }
305 spin_unlock(&ci->i_ceph_lock);
306
307 flags = 0;
308 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
309 flags = O_RDWR;
310 else if (wanted & CEPH_CAP_FILE_RD)
311 flags = O_RDONLY;
312 else if (wanted & CEPH_CAP_FILE_WR)
313 flags = O_WRONLY;
314#ifdef O_LAZY
315 if (wanted & CEPH_CAP_FILE_LAZYIO)
316 flags |= O_LAZY;
317#endif
318
319 req = prepare_open_request(inode->i_sb, flags, 0);
320 if (IS_ERR(req)) {
321 err = PTR_ERR(req);
322 goto out;
323 }
324
325 req->r_inode = inode;
326 ihold(inode);
327 req->r_num_caps = 1;
328 req->r_fmode = -1;
329
330 err = ceph_mdsc_do_request(mdsc, NULL, req);
331 ceph_mdsc_put_request(req);
332out:
333 dout("renew caps %p open result=%d\n", inode, err);
334 return err < 0 ? err : 0;
335}
336
124e68e7 337/*
124e68e7
SW
338 * If we already have the requisite capabilities, we can satisfy
339 * the open request locally (no need to request new caps from the
340 * MDS). We do, however, need to inform the MDS (asynchronously)
341 * if our wanted caps set expands.
342 */
343int ceph_open(struct inode *inode, struct file *file)
344{
345 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2
YS
346 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
347 struct ceph_mds_client *mdsc = fsc->mdsc;
124e68e7 348 struct ceph_mds_request *req;
73737682 349 struct ceph_file_info *fi = file->private_data;
124e68e7
SW
350 int err;
351 int flags, fmode, wanted;
352
73737682 353 if (fi) {
124e68e7
SW
354 dout("open file %p is already opened\n", file);
355 return 0;
356 }
357
358 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
359 flags = file->f_flags & ~(O_CREAT|O_EXCL);
360 if (S_ISDIR(inode->i_mode))
361 flags = O_DIRECTORY; /* mds likes to know */
362
363 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
364 ceph_vinop(inode), file, flags, file->f_flags);
365 fmode = ceph_flags_to_mode(flags);
366 wanted = ceph_caps_for_mode(fmode);
367
368 /* snapped files are read-only */
369 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
370 return -EROFS;
371
372 /* trivially open snapdir */
373 if (ceph_snap(inode) == CEPH_SNAPDIR) {
be655596 374 spin_lock(&ci->i_ceph_lock);
124e68e7 375 __ceph_get_fmode(ci, fmode);
be655596 376 spin_unlock(&ci->i_ceph_lock);
124e68e7
SW
377 return ceph_init_file(inode, file, fmode);
378 }
379
380 /*
7421ab80
SW
381 * No need to block if we have caps on the auth MDS (for
382 * write) or any MDS (for read). Update wanted set
124e68e7
SW
383 * asynchronously.
384 */
be655596 385 spin_lock(&ci->i_ceph_lock);
7421ab80
SW
386 if (__ceph_is_any_real_caps(ci) &&
387 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
c1944fed 388 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
124e68e7
SW
389 int issued = __ceph_caps_issued(ci, NULL);
390
391 dout("open %p fmode %d want %s issued %s using existing\n",
392 inode, fmode, ceph_cap_string(wanted),
393 ceph_cap_string(issued));
394 __ceph_get_fmode(ci, fmode);
be655596 395 spin_unlock(&ci->i_ceph_lock);
124e68e7
SW
396
397 /* adjust wanted? */
398 if ((issued & wanted) != wanted &&
399 (mds_wanted & wanted) != wanted &&
400 ceph_snap(inode) != CEPH_SNAPDIR)
401 ceph_check_caps(ci, 0, NULL);
402
403 return ceph_init_file(inode, file, fmode);
404 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
405 (ci->i_snap_caps & wanted) == wanted) {
406 __ceph_get_fmode(ci, fmode);
be655596 407 spin_unlock(&ci->i_ceph_lock);
124e68e7
SW
408 return ceph_init_file(inode, file, fmode);
409 }
99ccbd22 410
be655596 411 spin_unlock(&ci->i_ceph_lock);
124e68e7
SW
412
413 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
414 req = prepare_open_request(inode->i_sb, flags, 0);
415 if (IS_ERR(req)) {
416 err = PTR_ERR(req);
417 goto out;
418 }
70b666c3
SW
419 req->r_inode = inode;
420 ihold(inode);
99ccbd22 421
124e68e7 422 req->r_num_caps = 1;
e36d571d 423 err = ceph_mdsc_do_request(mdsc, NULL, req);
124e68e7
SW
424 if (!err)
425 err = ceph_init_file(inode, file, req->r_fmode);
426 ceph_mdsc_put_request(req);
427 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
428out:
429 return err;
430}
431
432
433/*
5ef50c3b
SW
434 * Do a lookup + open with a single request. If we get a non-existent
435 * file or symlink, return 1 so the VFS can retry.
124e68e7 436 */
5ef50c3b 437int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
44907d79 438 struct file *file, unsigned flags, umode_t mode)
124e68e7 439{
3d14c5d2
YS
440 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
441 struct ceph_mds_client *mdsc = fsc->mdsc;
124e68e7 442 struct ceph_mds_request *req;
5ef50c3b 443 struct dentry *dn;
5c31e92d 444 struct ceph_acl_sec_ctx as_ctx = {};
b7a29217 445 int mask;
124e68e7 446 int err;
124e68e7 447
a455589f
AV
448 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
449 dir, dentry, dentry,
5ef50c3b
SW
450 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
451
452 if (dentry->d_name.len > NAME_MAX)
453 return -ENAMETOOLONG;
454
b1ee94aa 455 if (flags & O_CREAT) {
b7a29217
LH
456 if (ceph_quota_is_max_files_exceeded(dir))
457 return -EDQUOT;
5c31e92d 458 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
b1ee94aa
YZ
459 if (err < 0)
460 return err;
ac6713cc
YZ
461 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
462 if (err < 0)
463 goto out_ctx;
b1ee94aa
YZ
464 }
465
124e68e7
SW
466 /* do the open */
467 req = prepare_open_request(dir->i_sb, flags, mode);
b1ee94aa
YZ
468 if (IS_ERR(req)) {
469 err = PTR_ERR(req);
5c31e92d 470 goto out_ctx;
b1ee94aa 471 }
124e68e7
SW
472 req->r_dentry = dget(dentry);
473 req->r_num_caps = 2;
474 if (flags & O_CREAT) {
222b7f90 475 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
124e68e7 476 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
5c31e92d
YZ
477 if (as_ctx.pagelist) {
478 req->r_pagelist = as_ctx.pagelist;
479 as_ctx.pagelist = NULL;
b1ee94aa 480 }
124e68e7 481 }
315f2408
YZ
482
483 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
484 if (ceph_security_xattr_wanted(dir))
485 mask |= CEPH_CAP_XATTR_SHARED;
486 req->r_args.open.mask = cpu_to_le32(mask);
487
3dd69aab
JL
488 req->r_parent = dir;
489 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
acda7657
SW
490 err = ceph_mdsc_do_request(mdsc,
491 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
492 req);
bf91c315 493 err = ceph_handle_snapdir(req, dentry, err);
79aec984 494 if (err)
b1ee94aa 495 goto out_req;
79aec984 496
a43137f7 497 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
124e68e7 498 err = ceph_handle_notrace_create(dir, dentry);
2d83bde9 499
00699ad8 500 if (d_in_lookup(dentry)) {
5ef50c3b
SW
501 dn = ceph_finish_lookup(req, dentry, err);
502 if (IS_ERR(dn))
503 err = PTR_ERR(dn);
504 } else {
505 /* we were given a hashed negative dentry */
506 dn = NULL;
507 }
508 if (err)
b1ee94aa 509 goto out_req;
2b0143b5 510 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
5ef50c3b
SW
511 /* make vfs retry on splice, ENOENT, or symlink */
512 dout("atomic_open finish_no_open on dn %p\n", dn);
513 err = finish_no_open(file, dn);
514 } else {
515 dout("atomic_open finish_open on dn %p\n", dn);
6e8575fa 516 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
5c31e92d 517 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
73a09dd9 518 file->f_mode |= FMODE_CREATED;
6e8575fa 519 }
be12af3e 520 err = finish_open(file, dentry, ceph_open);
5ef50c3b 521 }
b1ee94aa 522out_req:
ab866549
YZ
523 if (!req->r_err && req->r_target_inode)
524 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
5ef50c3b 525 ceph_mdsc_put_request(req);
5c31e92d
YZ
526out_ctx:
527 ceph_release_acl_sec_ctx(&as_ctx);
5ef50c3b 528 dout("atomic_open result=%d\n", err);
d9585277 529 return err;
124e68e7
SW
530}
531
532int ceph_release(struct inode *inode, struct file *file)
533{
534 struct ceph_inode_info *ci = ceph_inode(inode);
124e68e7 535
bb48bd4d
CX
536 if (S_ISDIR(inode->i_mode)) {
537 struct ceph_dir_file_info *dfi = file->private_data;
538 dout("release inode %p dir file %p\n", inode, file);
539 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
540
541 ceph_put_fmode(ci, dfi->file_info.fmode);
542
543 if (dfi->last_readdir)
544 ceph_mdsc_put_request(dfi->last_readdir);
545 kfree(dfi->last_name);
546 kfree(dfi->dir_info);
547 kmem_cache_free(ceph_dir_file_cachep, dfi);
548 } else {
549 struct ceph_file_info *fi = file->private_data;
550 dout("release inode %p regular file %p\n", inode, file);
551 WARN_ON(!list_empty(&fi->rw_contexts));
552
553 ceph_put_fmode(ci, fi->fmode);
554 kmem_cache_free(ceph_file_cachep, fi);
555 }
195d3ce2
SW
556
557 /* wake up anyone waiting for caps on this inode */
03066f23 558 wake_up_all(&ci->i_cap_wq);
124e68e7
SW
559 return 0;
560}
561
83701246 562enum {
c8fe9b17
YZ
563 HAVE_RETRIED = 1,
564 CHECK_EOF = 2,
565 READ_INLINE = 3,
83701246
YZ
566};
567
124e68e7
SW
568/*
569 * Completely synchronous read and write methods. Direct from __user
570 * buffer to osd, or directly to user pages (if O_DIRECT).
571 *
fce7a974
YZ
572 * If the read spans object boundary, just do multiple reads. (That's not
573 * atomic, but good enough for now.)
574 *
575 * If we get a short result from the OSD, check against i_size; we need to
576 * only return a short read to the caller if we hit EOF.
124e68e7 577 */
7ce469a5 578static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
fce7a974 579 int *retry_op)
124e68e7 580{
8eb4efb0 581 struct file *file = iocb->ki_filp;
496ad9aa 582 struct inode *inode = file_inode(file);
fce7a974
YZ
583 struct ceph_inode_info *ci = ceph_inode(inode);
584 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
585 struct ceph_osd_client *osdc = &fsc->client->osdc;
7ce469a5 586 ssize_t ret;
fce7a974
YZ
587 u64 off = iocb->ki_pos;
588 u64 len = iov_iter_count(to);
124e68e7 589
1c0a9c2d 590 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
124e68e7 591 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
d0d0db22
YZ
592
593 if (!len)
594 return 0;
e98b6fed
SW
595 /*
596 * flush any page cache pages in this range. this
597 * will make concurrent normal and sync io slow,
598 * but it will at least behave sensibly when they are
599 * in sequence.
600 */
e450f4d1 601 ret = filemap_write_and_wait_range(inode->i_mapping,
602 off, off + len - 1);
29065a51 603 if (ret < 0)
8eb4efb0 604 return ret;
29065a51 605
fce7a974
YZ
606 ret = 0;
607 while ((len = iov_iter_count(to)) > 0) {
608 struct ceph_osd_request *req;
609 struct page **pages;
610 int num_pages;
7ce469a5 611 size_t page_off;
fce7a974
YZ
612 u64 i_size;
613 bool more;
614
615 req = ceph_osdc_new_request(osdc, &ci->i_layout,
616 ci->i_vino, off, &len, 0, 1,
617 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
618 NULL, ci->i_truncate_seq,
619 ci->i_truncate_size, false);
620 if (IS_ERR(req)) {
621 ret = PTR_ERR(req);
622 break;
623 }
7ce469a5 624
fce7a974
YZ
625 more = len < iov_iter_count(to);
626
9931a07d 627 if (unlikely(iov_iter_is_pipe(to))) {
fce7a974
YZ
628 ret = iov_iter_get_pages_alloc(to, &pages, len,
629 &page_off);
630 if (ret <= 0) {
631 ceph_osdc_put_request(req);
632 ret = -ENOMEM;
633 break;
634 }
635 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
636 if (ret < len) {
637 len = ret;
638 osd_req_op_extent_update(req, 0, len);
639 more = false;
640 }
7ce469a5 641 } else {
fce7a974
YZ
642 num_pages = calc_pages_for(off, len);
643 page_off = off & ~PAGE_MASK;
644 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
645 if (IS_ERR(pages)) {
646 ceph_osdc_put_request(req);
647 ret = PTR_ERR(pages);
648 break;
649 }
7ce469a5 650 }
fce7a974
YZ
651
652 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_off,
653 false, false);
654 ret = ceph_osdc_start_request(osdc, req, false);
655 if (!ret)
656 ret = ceph_osdc_wait_request(osdc, req);
657 ceph_osdc_put_request(req);
658
659 i_size = i_size_read(inode);
660 dout("sync_read %llu~%llu got %zd i_size %llu%s\n",
661 off, len, ret, i_size, (more ? " MORE" : ""));
662
663 if (ret == -ENOENT)
664 ret = 0;
665 if (ret >= 0 && ret < len && (off + ret < i_size)) {
666 int zlen = min(len - ret, i_size - off - ret);
667 int zoff = page_off + ret;
668 dout("sync_read zero gap %llu~%llu\n",
669 off + ret, off + ret + zlen);
670 ceph_zero_page_vector_range(zoff, zlen, pages);
671 ret += zlen;
672 }
673
9931a07d 674 if (unlikely(iov_iter_is_pipe(to))) {
fce7a974
YZ
675 if (ret > 0) {
676 iov_iter_advance(to, ret);
677 off += ret;
678 } else {
679 iov_iter_advance(to, 0);
680 }
681 ceph_put_page_vector(pages, num_pages, false);
682 } else {
683 int idx = 0;
684 size_t left = ret > 0 ? ret : 0;
685 while (left > 0) {
686 size_t len, copied;
687 page_off = off & ~PAGE_MASK;
688 len = min_t(size_t, left, PAGE_SIZE - page_off);
689 copied = copy_page_to_iter(pages[idx++],
690 page_off, len, to);
691 off += copied;
692 left -= copied;
693 if (copied < len) {
694 ret = -EFAULT;
7ce469a5 695 break;
fce7a974 696 }
7ce469a5 697 }
fce7a974 698 ceph_release_page_vector(pages, num_pages);
8eb4efb0 699 }
fce7a974 700
131d7eb4
YZ
701 if (ret < 0) {
702 if (ret == -EBLACKLISTED)
703 fsc->blacklisted = true;
704 break;
705 }
706
707 if (off >= i_size || !more)
fce7a974 708 break;
8eb4efb0 709 }
124e68e7 710
8eb4efb0 711 if (off > iocb->ki_pos) {
fce7a974
YZ
712 if (ret >= 0 &&
713 iov_iter_count(to) > 0 && off >= i_size_read(inode))
714 *retry_op = CHECK_EOF;
8eb4efb0 715 ret = off - iocb->ki_pos;
716 iocb->ki_pos = off;
717 }
124e68e7 718
fce7a974 719 dout("sync_read result %zd retry_op %d\n", ret, *retry_op);
124e68e7
SW
720 return ret;
721}
722
c8fe9b17
YZ
723struct ceph_aio_request {
724 struct kiocb *iocb;
725 size_t total_len;
85784f93
YZ
726 bool write;
727 bool should_dirty;
c8fe9b17
YZ
728 int error;
729 struct list_head osd_reqs;
730 unsigned num_reqs;
731 atomic_t pending_reqs;
fac02ddf 732 struct timespec64 mtime;
c8fe9b17
YZ
733 struct ceph_cap_flush *prealloc_cf;
734};
735
5be0389d
YZ
736struct ceph_aio_work {
737 struct work_struct work;
738 struct ceph_osd_request *req;
739};
740
741static void ceph_aio_retry_work(struct work_struct *work);
742
c8fe9b17
YZ
743static void ceph_aio_complete(struct inode *inode,
744 struct ceph_aio_request *aio_req)
745{
746 struct ceph_inode_info *ci = ceph_inode(inode);
747 int ret;
748
749 if (!atomic_dec_and_test(&aio_req->pending_reqs))
750 return;
751
752 ret = aio_req->error;
753 if (!ret)
754 ret = aio_req->total_len;
755
756 dout("ceph_aio_complete %p rc %d\n", inode, ret);
757
758 if (ret >= 0 && aio_req->write) {
759 int dirty;
760
761 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
762 if (endoff > i_size_read(inode)) {
763 if (ceph_inode_set_size(inode, endoff))
764 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
765 }
766
767 spin_lock(&ci->i_ceph_lock);
768 ci->i_inline_version = CEPH_INLINE_NONE;
769 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
770 &aio_req->prealloc_cf);
771 spin_unlock(&ci->i_ceph_lock);
772 if (dirty)
773 __mark_inode_dirty(inode, dirty);
774
775 }
776
777 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
778 CEPH_CAP_FILE_RD));
779
780 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
781
782 ceph_free_cap_flush(aio_req->prealloc_cf);
783 kfree(aio_req);
784}
785
85e084fe 786static void ceph_aio_complete_req(struct ceph_osd_request *req)
c8fe9b17
YZ
787{
788 int rc = req->r_result;
789 struct inode *inode = req->r_inode;
790 struct ceph_aio_request *aio_req = req->r_priv;
791 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
c8fe9b17 792
fc218544
ID
793 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
794 BUG_ON(!osd_data->num_bvecs);
795
796 dout("ceph_aio_complete_req %p rc %d bytes %u\n",
797 inode, rc, osd_data->bvec_pos.iter.bi_size);
c8fe9b17
YZ
798
799 if (rc == -EOLDSNAPC) {
5be0389d
YZ
800 struct ceph_aio_work *aio_work;
801 BUG_ON(!aio_req->write);
802
803 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
804 if (aio_work) {
805 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
806 aio_work->req = req;
1cf89a8d 807 queue_work(ceph_inode_to_client(inode)->inode_wq,
5be0389d
YZ
808 &aio_work->work);
809 return;
810 }
811 rc = -ENOMEM;
812 } else if (!aio_req->write) {
c8fe9b17
YZ
813 if (rc == -ENOENT)
814 rc = 0;
fc218544
ID
815 if (rc >= 0 && osd_data->bvec_pos.iter.bi_size > rc) {
816 struct iov_iter i;
817 int zlen = osd_data->bvec_pos.iter.bi_size - rc;
818
c8fe9b17
YZ
819 /*
820 * If read is satisfied by single OSD request,
821 * it can pass EOF. Otherwise read is within
822 * i_size.
823 */
824 if (aio_req->num_reqs == 1) {
825 loff_t i_size = i_size_read(inode);
826 loff_t endoff = aio_req->iocb->ki_pos + rc;
827 if (endoff < i_size)
828 zlen = min_t(size_t, zlen,
829 i_size - endoff);
830 aio_req->total_len = rc + zlen;
831 }
832
aa563d7b 833 iov_iter_bvec(&i, READ, osd_data->bvec_pos.bvecs,
fc218544
ID
834 osd_data->num_bvecs,
835 osd_data->bvec_pos.iter.bi_size);
836 iov_iter_advance(&i, rc);
837 iov_iter_zero(zlen, &i);
c8fe9b17
YZ
838 }
839 }
840
fc218544
ID
841 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
842 aio_req->should_dirty);
c8fe9b17
YZ
843 ceph_osdc_put_request(req);
844
845 if (rc < 0)
846 cmpxchg(&aio_req->error, 0, rc);
847
848 ceph_aio_complete(inode, aio_req);
849 return;
850}
851
5be0389d
YZ
852static void ceph_aio_retry_work(struct work_struct *work)
853{
854 struct ceph_aio_work *aio_work =
855 container_of(work, struct ceph_aio_work, work);
856 struct ceph_osd_request *orig_req = aio_work->req;
857 struct ceph_aio_request *aio_req = orig_req->r_priv;
858 struct inode *inode = orig_req->r_inode;
859 struct ceph_inode_info *ci = ceph_inode(inode);
860 struct ceph_snap_context *snapc;
861 struct ceph_osd_request *req;
862 int ret;
863
864 spin_lock(&ci->i_ceph_lock);
865 if (__ceph_have_pending_cap_snap(ci)) {
866 struct ceph_cap_snap *capsnap =
867 list_last_entry(&ci->i_cap_snaps,
868 struct ceph_cap_snap,
869 ci_item);
870 snapc = ceph_get_snap_context(capsnap->context);
871 } else {
872 BUG_ON(!ci->i_head_snapc);
873 snapc = ceph_get_snap_context(ci->i_head_snapc);
874 }
875 spin_unlock(&ci->i_ceph_lock);
876
61d2f855 877 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
5be0389d 878 false, GFP_NOFS);
1418bf07
DC
879 if (!req) {
880 ret = -ENOMEM;
5be0389d
YZ
881 req = orig_req;
882 goto out;
883 }
884
b178cf43 885 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
63244fa1 886 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
d30291b9 887 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
5be0389d 888
26f887e0
ID
889 req->r_ops[0] = orig_req->r_ops[0];
890
891 req->r_mtime = aio_req->mtime;
892 req->r_data_offset = req->r_ops[0].extent.offset;
893
13d1ad16
ID
894 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
895 if (ret) {
896 ceph_osdc_put_request(req);
897 req = orig_req;
898 goto out;
899 }
5be0389d 900
5be0389d
YZ
901 ceph_osdc_put_request(orig_req);
902
903 req->r_callback = ceph_aio_complete_req;
904 req->r_inode = inode;
905 req->r_priv = aio_req;
906
907 ret = ceph_osdc_start_request(req->r_osdc, req, false);
908out:
909 if (ret < 0) {
5be0389d 910 req->r_result = ret;
85e084fe 911 ceph_aio_complete_req(req);
5be0389d
YZ
912 }
913
db6aed70 914 ceph_put_snap_context(snapc);
5be0389d
YZ
915 kfree(aio_work);
916}
917
e8344e66 918static ssize_t
c8fe9b17
YZ
919ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
920 struct ceph_snap_context *snapc,
921 struct ceph_cap_flush **pcf)
124e68e7 922{
e8344e66 923 struct file *file = iocb->ki_filp;
496ad9aa 924 struct inode *inode = file_inode(file);
124e68e7 925 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 926 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
acead002 927 struct ceph_vino vino;
124e68e7 928 struct ceph_osd_request *req;
fc218544 929 struct bio_vec *bvecs;
c8fe9b17
YZ
930 struct ceph_aio_request *aio_req = NULL;
931 int num_pages = 0;
124e68e7 932 int flags;
124e68e7 933 int ret;
fac02ddf 934 struct timespec64 mtime = current_time(inode);
c8fe9b17
YZ
935 size_t count = iov_iter_count(iter);
936 loff_t pos = iocb->ki_pos;
937 bool write = iov_iter_rw(iter) == WRITE;
85784f93 938 bool should_dirty = !write && iter_is_iovec(iter);
124e68e7 939
c8fe9b17 940 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
124e68e7
SW
941 return -EROFS;
942
1c0a9c2d
YZ
943 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
944 (write ? "write" : "read"), file, pos, (unsigned)count,
40e7e2c0 945 snapc, snapc ? snapc->seq : 0);
124e68e7 946
e450f4d1 947 ret = filemap_write_and_wait_range(inode->i_mapping,
948 pos, pos + count - 1);
29065a51
YS
949 if (ret < 0)
950 return ret;
951
c8fe9b17 952 if (write) {
5d7eb1a3 953 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
09cbfeaf 954 pos >> PAGE_SHIFT,
e450f4d1 955 (pos + count - 1) >> PAGE_SHIFT);
5d7eb1a3 956 if (ret2 < 0)
a380a031 957 dout("invalidate_inode_pages2_range returned %d\n", ret2);
29065a51 958
b178cf43 959 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
c8fe9b17
YZ
960 } else {
961 flags = CEPH_OSD_FLAG_READ;
962 }
124e68e7 963
c8fe9b17 964 while (iov_iter_count(iter) > 0) {
fc218544 965 u64 size = iov_iter_count(iter);
c8fe9b17 966 ssize_t len;
e8344e66 967
3a15b38f
ID
968 if (write)
969 size = min_t(u64, size, fsc->mount_options->wsize);
970 else
971 size = min_t(u64, size, fsc->mount_options->rsize);
972
e8344e66 973 vino = ceph_vino(inode);
974 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
c8fe9b17 975 vino, pos, &size, 0,
3fb99d48 976 1,
c8fe9b17
YZ
977 write ? CEPH_OSD_OP_WRITE :
978 CEPH_OSD_OP_READ,
979 flags, snapc,
e8344e66 980 ci->i_truncate_seq,
981 ci->i_truncate_size,
982 false);
983 if (IS_ERR(req)) {
984 ret = PTR_ERR(req);
eab87235 985 break;
e8344e66 986 }
124e68e7 987
fc218544
ID
988 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
989 if (len < 0) {
64c31311 990 ceph_osdc_put_request(req);
fc218544 991 ret = len;
64c31311 992 break;
124e68e7 993 }
fc218544
ID
994 if (len != size)
995 osd_req_op_extent_update(req, 0, len);
124e68e7
SW
996
997 /*
c8fe9b17
YZ
998 * To simplify error handling, allow AIO when IO within i_size
999 * or IO can be satisfied by single OSD request.
124e68e7 1000 */
c8fe9b17
YZ
1001 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
1002 (len == count || pos + count <= i_size_read(inode))) {
1003 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
1004 if (aio_req) {
1005 aio_req->iocb = iocb;
1006 aio_req->write = write;
85784f93 1007 aio_req->should_dirty = should_dirty;
c8fe9b17
YZ
1008 INIT_LIST_HEAD(&aio_req->osd_reqs);
1009 if (write) {
5be0389d 1010 aio_req->mtime = mtime;
c8fe9b17
YZ
1011 swap(aio_req->prealloc_cf, *pcf);
1012 }
1013 }
1014 /* ignore error */
1015 }
1016
1017 if (write) {
1018 /*
1019 * throw out any page cache pages in this range. this
1020 * may block.
1021 */
1022 truncate_inode_pages_range(inode->i_mapping, pos,
d31d07b9 1023 PAGE_ALIGN(pos + len) - 1);
c8fe9b17 1024
bb873b53 1025 req->r_mtime = mtime;
c8fe9b17
YZ
1026 }
1027
fc218544 1028 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
e8344e66 1029
c8fe9b17
YZ
1030 if (aio_req) {
1031 aio_req->total_len += len;
1032 aio_req->num_reqs++;
1033 atomic_inc(&aio_req->pending_reqs);
1034
1035 req->r_callback = ceph_aio_complete_req;
1036 req->r_inode = inode;
1037 req->r_priv = aio_req;
94e85771 1038 list_add_tail(&req->r_private_item, &aio_req->osd_reqs);
c8fe9b17
YZ
1039
1040 pos += len;
c8fe9b17
YZ
1041 continue;
1042 }
1043
1044 ret = ceph_osdc_start_request(req->r_osdc, req, false);
e8344e66 1045 if (!ret)
1046 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1047
c8fe9b17
YZ
1048 size = i_size_read(inode);
1049 if (!write) {
1050 if (ret == -ENOENT)
1051 ret = 0;
1052 if (ret >= 0 && ret < len && pos + ret < size) {
fc218544 1053 struct iov_iter i;
c8fe9b17
YZ
1054 int zlen = min_t(size_t, len - ret,
1055 size - pos - ret);
fc218544 1056
aa563d7b 1057 iov_iter_bvec(&i, READ, bvecs, num_pages, len);
fc218544
ID
1058 iov_iter_advance(&i, ret);
1059 iov_iter_zero(zlen, &i);
c8fe9b17
YZ
1060 ret += zlen;
1061 }
1062 if (ret >= 0)
1063 len = ret;
1064 }
1065
fc218544 1066 put_bvecs(bvecs, num_pages, should_dirty);
e8344e66 1067 ceph_osdc_put_request(req);
c8fe9b17 1068 if (ret < 0)
e8344e66 1069 break;
64c31311 1070
c8fe9b17 1071 pos += len;
c8fe9b17 1072 if (!write && pos >= size)
e8344e66 1073 break;
64c31311 1074
c8fe9b17
YZ
1075 if (write && pos > size) {
1076 if (ceph_inode_set_size(inode, pos))
64c31311
AV
1077 ceph_check_caps(ceph_inode(inode),
1078 CHECK_CAPS_AUTHONLY,
1079 NULL);
1080 }
e8344e66 1081 }
1082
c8fe9b17 1083 if (aio_req) {
fc8c3892
YZ
1084 LIST_HEAD(osd_reqs);
1085
c8fe9b17
YZ
1086 if (aio_req->num_reqs == 0) {
1087 kfree(aio_req);
1088 return ret;
1089 }
1090
1091 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1092 CEPH_CAP_FILE_RD);
1093
fc8c3892
YZ
1094 list_splice(&aio_req->osd_reqs, &osd_reqs);
1095 while (!list_empty(&osd_reqs)) {
1096 req = list_first_entry(&osd_reqs,
c8fe9b17 1097 struct ceph_osd_request,
94e85771
ID
1098 r_private_item);
1099 list_del_init(&req->r_private_item);
c8fe9b17
YZ
1100 if (ret >= 0)
1101 ret = ceph_osdc_start_request(req->r_osdc,
1102 req, false);
1103 if (ret < 0) {
1104 req->r_result = ret;
85e084fe 1105 ceph_aio_complete_req(req);
c8fe9b17
YZ
1106 }
1107 }
1108 return -EIOCBQUEUED;
1109 }
1110
1111 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1112 ret = pos - iocb->ki_pos;
e8344e66 1113 iocb->ki_pos = pos;
e8344e66 1114 }
1115 return ret;
1116}
1117
e8344e66 1118/*
1119 * Synchronous write, straight from __user pointer or user pages.
1120 *
1121 * If write spans object boundary, just do multiple writes. (For a
1122 * correct atomic write, we should e.g. take write locks on all
1123 * objects, rollback on failure, etc.)
1124 */
06fee30f 1125static ssize_t
5dda377c
YZ
1126ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1127 struct ceph_snap_context *snapc)
e8344e66 1128{
1129 struct file *file = iocb->ki_filp;
1130 struct inode *inode = file_inode(file);
1131 struct ceph_inode_info *ci = ceph_inode(inode);
1132 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
e8344e66 1133 struct ceph_vino vino;
1134 struct ceph_osd_request *req;
1135 struct page **pages;
1136 u64 len;
1137 int num_pages;
1138 int written = 0;
1139 int flags;
e8344e66 1140 int ret;
efb0ca76 1141 bool check_caps = false;
fac02ddf 1142 struct timespec64 mtime = current_time(inode);
4908b822 1143 size_t count = iov_iter_count(from);
e8344e66 1144
1145 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1146 return -EROFS;
1147
1c0a9c2d
YZ
1148 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1149 file, pos, (unsigned)count, snapc, snapc->seq);
e8344e66 1150
e450f4d1 1151 ret = filemap_write_and_wait_range(inode->i_mapping,
1152 pos, pos + count - 1);
e8344e66 1153 if (ret < 0)
1154 return ret;
1155
1156 ret = invalidate_inode_pages2_range(inode->i_mapping,
09cbfeaf 1157 pos >> PAGE_SHIFT,
e450f4d1 1158 (pos + count - 1) >> PAGE_SHIFT);
e8344e66 1159 if (ret < 0)
1160 dout("invalidate_inode_pages2_range returned %d\n", ret);
1161
b178cf43 1162 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
e8344e66 1163
4908b822 1164 while ((len = iov_iter_count(from)) > 0) {
e8344e66 1165 size_t left;
1166 int n;
1167
e8344e66 1168 vino = ceph_vino(inode);
1169 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
715e4cd4 1170 vino, pos, &len, 0, 1,
e8344e66 1171 CEPH_OSD_OP_WRITE, flags, snapc,
1172 ci->i_truncate_seq,
1173 ci->i_truncate_size,
1174 false);
1175 if (IS_ERR(req)) {
1176 ret = PTR_ERR(req);
eab87235 1177 break;
e8344e66 1178 }
1179
1180 /*
1181 * write from beginning of first page,
1182 * regardless of io alignment
1183 */
09cbfeaf 1184 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
e8344e66 1185
687265e5 1186 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
124e68e7
SW
1187 if (IS_ERR(pages)) {
1188 ret = PTR_ERR(pages);
1189 goto out;
1190 }
e8344e66 1191
1192 left = len;
1193 for (n = 0; n < num_pages; n++) {
125d725c 1194 size_t plen = min_t(size_t, left, PAGE_SIZE);
4908b822 1195 ret = copy_page_from_iter(pages[n], 0, plen, from);
e8344e66 1196 if (ret != plen) {
1197 ret = -EFAULT;
1198 break;
1199 }
1200 left -= ret;
e8344e66 1201 }
1202
124e68e7
SW
1203 if (ret < 0) {
1204 ceph_release_page_vector(pages, num_pages);
1205 goto out;
1206 }
1207
e8344e66 1208 req->r_inode = inode;
124e68e7 1209
e8344e66 1210 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1211 false, true);
02ee07d3 1212
bb873b53 1213 req->r_mtime = mtime;
e8344e66 1214 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1215 if (!ret)
1216 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
124e68e7
SW
1217
1218out:
e8344e66 1219 ceph_osdc_put_request(req);
26544c62
JL
1220 if (ret != 0) {
1221 ceph_set_error_write(ci);
e8344e66 1222 break;
26544c62
JL
1223 }
1224
1225 ceph_clear_error_write(ci);
1226 pos += len;
1227 written += len;
1228 if (pos > i_size_read(inode)) {
1229 check_caps = ceph_inode_set_size(inode, pos);
1230 if (check_caps)
1231 ceph_check_caps(ceph_inode(inode),
1232 CHECK_CAPS_AUTHONLY,
1233 NULL);
1234 }
1235
e8344e66 1236 }
124e68e7 1237
e8344e66 1238 if (ret != -EOLDSNAPC && written > 0) {
124e68e7 1239 ret = written;
e8344e66 1240 iocb->ki_pos = pos;
124e68e7
SW
1241 }
1242 return ret;
1243}
1244
1245/*
1246 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1247 * Atomically grab references, so that those bits are not released
1248 * back to the MDS mid-read.
1249 *
1250 * Hmm, the sync read case isn't actually async... should it be?
1251 */
3644424d 1252static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
124e68e7
SW
1253{
1254 struct file *filp = iocb->ki_filp;
2962507c 1255 struct ceph_file_info *fi = filp->private_data;
66ee59af 1256 size_t len = iov_iter_count(to);
496ad9aa 1257 struct inode *inode = file_inode(filp);
124e68e7 1258 struct ceph_inode_info *ci = ceph_inode(inode);
3738daa6 1259 struct page *pinned_page = NULL;
124e68e7 1260 ssize_t ret;
2962507c 1261 int want, got = 0;
83701246 1262 int retry_op = 0, read = 0;
124e68e7 1263
6a026589 1264again:
8eb4efb0 1265 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1266 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1267
2962507c
SW
1268 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1269 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1270 else
1271 want = CEPH_CAP_FILE_CACHE;
5e3ded1b
YZ
1272 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1,
1273 &got, &pinned_page);
124e68e7 1274 if (ret < 0)
8eb4efb0 1275 return ret;
124e68e7 1276
2962507c 1277 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
2ba48ce5 1278 (iocb->ki_flags & IOCB_DIRECT) ||
8eb4efb0 1279 (fi->flags & CEPH_F_SYNC)) {
8eb4efb0 1280
1281 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1282 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1283 ceph_cap_string(got));
1284
83701246 1285 if (ci->i_inline_version == CEPH_INLINE_NONE) {
c8fe9b17
YZ
1286 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1287 ret = ceph_direct_read_write(iocb, to,
1288 NULL, NULL);
1289 if (ret >= 0 && ret < len)
1290 retry_op = CHECK_EOF;
1291 } else {
1292 ret = ceph_sync_read(iocb, to, &retry_op);
1293 }
83701246
YZ
1294 } else {
1295 retry_op = READ_INLINE;
1296 }
8eb4efb0 1297 } else {
5d988308 1298 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
8eb4efb0 1299 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
3644424d 1300 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
8eb4efb0 1301 ceph_cap_string(got));
5d988308 1302 ceph_add_rw_context(fi, &rw_ctx);
3644424d 1303 ret = generic_file_read_iter(iocb, to);
5d988308 1304 ceph_del_rw_context(fi, &rw_ctx);
8eb4efb0 1305 }
124e68e7
SW
1306 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1307 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
3738daa6 1308 if (pinned_page) {
09cbfeaf 1309 put_page(pinned_page);
3738daa6
YZ
1310 pinned_page = NULL;
1311 }
124e68e7 1312 ceph_put_cap_refs(ci, got);
c8fe9b17 1313 if (retry_op > HAVE_RETRIED && ret >= 0) {
83701246
YZ
1314 int statret;
1315 struct page *page = NULL;
1316 loff_t i_size;
1317 if (retry_op == READ_INLINE) {
687265e5 1318 page = __page_cache_alloc(GFP_KERNEL);
83701246
YZ
1319 if (!page)
1320 return -ENOMEM;
1321 }
6a026589 1322
83701246
YZ
1323 statret = __ceph_do_getattr(inode, page,
1324 CEPH_STAT_CAP_INLINE_DATA, !!page);
1325 if (statret < 0) {
0d7718f6
NB
1326 if (page)
1327 __free_page(page);
83701246
YZ
1328 if (statret == -ENODATA) {
1329 BUG_ON(retry_op != READ_INLINE);
1330 goto again;
1331 }
1332 return statret;
1333 }
6a026589 1334
83701246
YZ
1335 i_size = i_size_read(inode);
1336 if (retry_op == READ_INLINE) {
fcc02d2a
YZ
1337 BUG_ON(ret > 0 || read > 0);
1338 if (iocb->ki_pos < i_size &&
09cbfeaf 1339 iocb->ki_pos < PAGE_SIZE) {
83701246
YZ
1340 loff_t end = min_t(loff_t, i_size,
1341 iocb->ki_pos + len);
09cbfeaf 1342 end = min_t(loff_t, end, PAGE_SIZE);
83701246
YZ
1343 if (statret < end)
1344 zero_user_segment(page, statret, end);
1345 ret = copy_page_to_iter(page,
1346 iocb->ki_pos & ~PAGE_MASK,
1347 end - iocb->ki_pos, to);
1348 iocb->ki_pos += ret;
fcc02d2a
YZ
1349 read += ret;
1350 }
1351 if (iocb->ki_pos < i_size && read < len) {
1352 size_t zlen = min_t(size_t, len - read,
1353 i_size - iocb->ki_pos);
1354 ret = iov_iter_zero(zlen, to);
1355 iocb->ki_pos += ret;
1356 read += ret;
83701246
YZ
1357 }
1358 __free_pages(page, 0);
fcc02d2a 1359 return read;
83701246 1360 }
6a026589
SW
1361
1362 /* hit EOF or hole? */
83701246 1363 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
fcc02d2a 1364 ret < len) {
8eb4efb0 1365 dout("sync_read hit hole, ppos %lld < size %lld"
99c88e69 1366 ", reading more\n", iocb->ki_pos, i_size);
8eb4efb0 1367
6a026589 1368 read += ret;
6a026589 1369 len -= ret;
c8fe9b17 1370 retry_op = HAVE_RETRIED;
6a026589
SW
1371 goto again;
1372 }
1373 }
8eb4efb0 1374
6a026589
SW
1375 if (ret >= 0)
1376 ret += read;
1377
124e68e7
SW
1378 return ret;
1379}
1380
1381/*
1382 * Take cap references to avoid releasing caps to MDS mid-write.
1383 *
1384 * If we are synchronous, and write with an old snap context, the OSD
1385 * may return EOLDSNAPC. In that case, retry the write.. _after_
1386 * dropping our cap refs and allowing the pending snap to logically
1387 * complete _before_ this write occurs.
1388 *
1389 * If we are near ENOSPC, write synchronously.
1390 */
4908b822 1391static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
124e68e7
SW
1392{
1393 struct file *file = iocb->ki_filp;
33caad32 1394 struct ceph_file_info *fi = file->private_data;
496ad9aa 1395 struct inode *inode = file_inode(file);
124e68e7 1396 struct ceph_inode_info *ci = ceph_inode(inode);
8687a3e2 1397 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
f66fd9f0 1398 struct ceph_cap_flush *prealloc_cf;
3309dd04 1399 ssize_t count, written = 0;
03d254ed 1400 int err, want, got;
3309dd04 1401 loff_t pos;
8687a3e2 1402 loff_t limit = max(i_size_read(inode), fsc->max_file_size);
124e68e7
SW
1403
1404 if (ceph_snap(inode) != CEPH_NOSNAP)
1405 return -EROFS;
1406
f66fd9f0
YZ
1407 prealloc_cf = ceph_alloc_cap_flush();
1408 if (!prealloc_cf)
1409 return -ENOMEM;
1410
a5cd74ad 1411retry_snap:
5955102c 1412 inode_lock(inode);
03d254ed 1413
03d254ed 1414 /* We can write back this queue in page reclaim */
de1414a6 1415 current->backing_dev_info = inode_to_bdi(inode);
03d254ed 1416
55b0b31c
YZ
1417 if (iocb->ki_flags & IOCB_APPEND) {
1418 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1419 if (err < 0)
1420 goto out;
1421 }
1422
3309dd04
AV
1423 err = generic_write_checks(iocb, from);
1424 if (err <= 0)
03d254ed
YZ
1425 goto out;
1426
3309dd04 1427 pos = iocb->ki_pos;
8687a3e2
CX
1428 if (unlikely(pos >= limit)) {
1429 err = -EFBIG;
1430 goto out;
1431 } else {
1432 iov_iter_truncate(from, limit - pos);
1433 }
1434
3309dd04 1435 count = iov_iter_count(from);
2b83845f
LH
1436 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1437 err = -EDQUOT;
1438 goto out;
1439 }
1440
5fa8e0a1 1441 err = file_remove_privs(file);
03d254ed
YZ
1442 if (err)
1443 goto out;
1444
1445 err = file_update_time(file);
1446 if (err)
1447 goto out;
1448
5c308356
JL
1449 inode_inc_iversion_raw(inode);
1450
28127bdd
YZ
1451 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1452 err = ceph_uninline_data(file, NULL);
1453 if (err < 0)
1454 goto out;
1455 }
1456
26544c62 1457 /* FIXME: not complete since it doesn't account for being at quota */
8687a3e2 1458 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_FULL)) {
03d254ed 1459 err = -ENOSPC;
6070e0c1
YZ
1460 goto out;
1461 }
03d254ed 1462
ac7f29bf 1463 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
99c88e69 1464 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
7971bd92
SW
1465 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1466 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1467 else
1468 want = CEPH_CAP_FILE_BUFFER;
03d254ed 1469 got = 0;
5e3ded1b 1470 err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count,
3738daa6 1471 &got, NULL);
03d254ed 1472 if (err < 0)
37505d57 1473 goto out;
124e68e7 1474
ac7f29bf 1475 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
03d254ed 1476 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
7971bd92
SW
1477
1478 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
26544c62
JL
1479 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1480 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
5dda377c 1481 struct ceph_snap_context *snapc;
4908b822 1482 struct iov_iter data;
5955102c 1483 inode_unlock(inode);
5dda377c
YZ
1484
1485 spin_lock(&ci->i_ceph_lock);
1486 if (__ceph_have_pending_cap_snap(ci)) {
1487 struct ceph_cap_snap *capsnap =
1488 list_last_entry(&ci->i_cap_snaps,
1489 struct ceph_cap_snap,
1490 ci_item);
1491 snapc = ceph_get_snap_context(capsnap->context);
1492 } else {
1493 BUG_ON(!ci->i_head_snapc);
1494 snapc = ceph_get_snap_context(ci->i_head_snapc);
1495 }
1496 spin_unlock(&ci->i_ceph_lock);
1497
4908b822
AV
1498 /* we might need to revert back to that point */
1499 data = *from;
2ba48ce5 1500 if (iocb->ki_flags & IOCB_DIRECT)
c8fe9b17
YZ
1501 written = ceph_direct_read_write(iocb, &data, snapc,
1502 &prealloc_cf);
e8344e66 1503 else
5dda377c 1504 written = ceph_sync_write(iocb, &data, pos, snapc);
4908b822
AV
1505 if (written > 0)
1506 iov_iter_advance(from, written);
5dda377c 1507 ceph_put_snap_context(snapc);
7971bd92 1508 } else {
b0d7c223
YZ
1509 /*
1510 * No need to acquire the i_truncate_mutex. Because
1511 * the MDS revokes Fwb caps before sending truncate
1512 * message to us. We can't get Fwb cap while there
1513 * are pending vmtruncate. So write and vmtruncate
1514 * can not run at the same time
1515 */
4908b822 1516 written = generic_perform_write(file, from, pos);
aec605f4
AV
1517 if (likely(written >= 0))
1518 iocb->ki_pos = pos + written;
5955102c 1519 inode_unlock(inode);
7971bd92 1520 }
d8de9ab6 1521
03d254ed 1522 if (written >= 0) {
fca65b4a 1523 int dirty;
1ab302a0 1524
be655596 1525 spin_lock(&ci->i_ceph_lock);
28127bdd 1526 ci->i_inline_version = CEPH_INLINE_NONE;
f66fd9f0
YZ
1527 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1528 &prealloc_cf);
be655596 1529 spin_unlock(&ci->i_ceph_lock);
fca65b4a
SW
1530 if (dirty)
1531 __mark_inode_dirty(inode, dirty);
1ab302a0
LH
1532 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1533 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
124e68e7 1534 }
7971bd92 1535
124e68e7 1536 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
4908b822 1537 inode, ceph_vinop(inode), pos, (unsigned)count,
7971bd92 1538 ceph_cap_string(got));
124e68e7 1539 ceph_put_cap_refs(ci, got);
7971bd92 1540
a5cd74ad
YZ
1541 if (written == -EOLDSNAPC) {
1542 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1543 inode, ceph_vinop(inode), pos, (unsigned)count);
1544 goto retry_snap;
1545 }
1546
6aa657c8 1547 if (written >= 0) {
8687a3e2 1548 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_NEARFULL))
6aa657c8 1549 iocb->ki_flags |= IOCB_DSYNC;
6aa657c8 1550 written = generic_write_sync(iocb, written);
6070e0c1 1551 }
03d254ed 1552
2f75e9e1
SW
1553 goto out_unlocked;
1554
03d254ed 1555out:
5955102c 1556 inode_unlock(inode);
2f75e9e1 1557out_unlocked:
f66fd9f0 1558 ceph_free_cap_flush(prealloc_cf);
03d254ed 1559 current->backing_dev_info = NULL;
03d254ed 1560 return written ? written : err;
124e68e7
SW
1561}
1562
1563/*
1564 * llseek. be sure to verify file size on SEEK_END.
1565 */
965c8e59 1566static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
124e68e7
SW
1567{
1568 struct inode *inode = file->f_mapping->host;
9da12e3a 1569 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
99c88e69 1570 loff_t i_size;
955818cd 1571 loff_t ret;
124e68e7 1572
5955102c 1573 inode_lock(inode);
6a82c47a 1574
965c8e59 1575 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
508b32d8 1576 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
955818cd 1577 if (ret < 0)
124e68e7 1578 goto out;
06222e49
JB
1579 }
1580
99c88e69 1581 i_size = i_size_read(inode);
965c8e59 1582 switch (whence) {
06222e49 1583 case SEEK_END:
99c88e69 1584 offset += i_size;
124e68e7
SW
1585 break;
1586 case SEEK_CUR:
1587 /*
1588 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1589 * position-querying operation. Avoid rewriting the "same"
1590 * f_pos value back to the file because a concurrent read(),
1591 * write() or lseek() might have altered it
1592 */
1593 if (offset == 0) {
955818cd 1594 ret = file->f_pos;
124e68e7
SW
1595 goto out;
1596 }
1597 offset += file->f_pos;
1598 break;
06222e49 1599 case SEEK_DATA:
397f2389 1600 if (offset < 0 || offset >= i_size) {
06222e49
JB
1601 ret = -ENXIO;
1602 goto out;
1603 }
1604 break;
1605 case SEEK_HOLE:
397f2389 1606 if (offset < 0 || offset >= i_size) {
06222e49
JB
1607 ret = -ENXIO;
1608 goto out;
1609 }
99c88e69 1610 offset = i_size;
06222e49 1611 break;
124e68e7
SW
1612 }
1613
9da12e3a 1614 ret = vfs_setpos(file, offset, max(i_size, fsc->max_file_size));
124e68e7
SW
1615
1616out:
5955102c 1617 inode_unlock(inode);
955818cd 1618 return ret;
124e68e7
SW
1619}
1620
ad7a60de
LW
1621static inline void ceph_zero_partial_page(
1622 struct inode *inode, loff_t offset, unsigned size)
1623{
1624 struct page *page;
09cbfeaf 1625 pgoff_t index = offset >> PAGE_SHIFT;
ad7a60de
LW
1626
1627 page = find_lock_page(inode->i_mapping, index);
1628 if (page) {
1629 wait_on_page_writeback(page);
09cbfeaf 1630 zero_user(page, offset & (PAGE_SIZE - 1), size);
ad7a60de 1631 unlock_page(page);
09cbfeaf 1632 put_page(page);
ad7a60de
LW
1633 }
1634}
1635
1636static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1637 loff_t length)
1638{
09cbfeaf 1639 loff_t nearly = round_up(offset, PAGE_SIZE);
ad7a60de
LW
1640 if (offset < nearly) {
1641 loff_t size = nearly - offset;
1642 if (length < size)
1643 size = length;
1644 ceph_zero_partial_page(inode, offset, size);
1645 offset += size;
1646 length -= size;
1647 }
09cbfeaf
KS
1648 if (length >= PAGE_SIZE) {
1649 loff_t size = round_down(length, PAGE_SIZE);
ad7a60de
LW
1650 truncate_pagecache_range(inode, offset, offset + size - 1);
1651 offset += size;
1652 length -= size;
1653 }
1654 if (length)
1655 ceph_zero_partial_page(inode, offset, length);
1656}
1657
1658static int ceph_zero_partial_object(struct inode *inode,
1659 loff_t offset, loff_t *length)
1660{
1661 struct ceph_inode_info *ci = ceph_inode(inode);
1662 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1663 struct ceph_osd_request *req;
1664 int ret = 0;
1665 loff_t zero = 0;
1666 int op;
1667
1668 if (!length) {
1669 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1670 length = &zero;
1671 } else {
1672 op = CEPH_OSD_OP_ZERO;
1673 }
1674
1675 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1676 ceph_vino(inode),
1677 offset, length,
715e4cd4 1678 0, 1, op,
54ea0046 1679 CEPH_OSD_FLAG_WRITE,
ad7a60de
LW
1680 NULL, 0, 0, false);
1681 if (IS_ERR(req)) {
1682 ret = PTR_ERR(req);
1683 goto out;
1684 }
1685
fac02ddf 1686 req->r_mtime = inode->i_mtime;
ad7a60de
LW
1687 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1688 if (!ret) {
1689 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1690 if (ret == -ENOENT)
1691 ret = 0;
1692 }
1693 ceph_osdc_put_request(req);
1694
1695out:
1696 return ret;
1697}
1698
1699static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1700{
1701 int ret = 0;
1702 struct ceph_inode_info *ci = ceph_inode(inode);
7627151e
YZ
1703 s32 stripe_unit = ci->i_layout.stripe_unit;
1704 s32 stripe_count = ci->i_layout.stripe_count;
1705 s32 object_size = ci->i_layout.object_size;
b314a90d
SW
1706 u64 object_set_size = object_size * stripe_count;
1707 u64 nearly, t;
1708
1709 /* round offset up to next period boundary */
1710 nearly = offset + object_set_size - 1;
1711 t = nearly;
1712 nearly -= do_div(t, object_set_size);
ad7a60de 1713
ad7a60de
LW
1714 while (length && offset < nearly) {
1715 loff_t size = length;
1716 ret = ceph_zero_partial_object(inode, offset, &size);
1717 if (ret < 0)
1718 return ret;
1719 offset += size;
1720 length -= size;
1721 }
1722 while (length >= object_set_size) {
1723 int i;
1724 loff_t pos = offset;
1725 for (i = 0; i < stripe_count; ++i) {
1726 ret = ceph_zero_partial_object(inode, pos, NULL);
1727 if (ret < 0)
1728 return ret;
1729 pos += stripe_unit;
1730 }
1731 offset += object_set_size;
1732 length -= object_set_size;
1733 }
1734 while (length) {
1735 loff_t size = length;
1736 ret = ceph_zero_partial_object(inode, offset, &size);
1737 if (ret < 0)
1738 return ret;
1739 offset += size;
1740 length -= size;
1741 }
1742 return ret;
1743}
1744
1745static long ceph_fallocate(struct file *file, int mode,
1746 loff_t offset, loff_t length)
1747{
1748 struct ceph_file_info *fi = file->private_data;
aa8b60e0 1749 struct inode *inode = file_inode(file);
ad7a60de 1750 struct ceph_inode_info *ci = ceph_inode(inode);
f66fd9f0 1751 struct ceph_cap_flush *prealloc_cf;
ad7a60de
LW
1752 int want, got = 0;
1753 int dirty;
1754 int ret = 0;
1755 loff_t endoff = 0;
1756 loff_t size;
1757
bddff633 1758 if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
494d77bf
YZ
1759 return -EOPNOTSUPP;
1760
ad7a60de
LW
1761 if (!S_ISREG(inode->i_mode))
1762 return -EOPNOTSUPP;
1763
f66fd9f0
YZ
1764 prealloc_cf = ceph_alloc_cap_flush();
1765 if (!prealloc_cf)
1766 return -ENOMEM;
1767
5955102c 1768 inode_lock(inode);
ad7a60de
LW
1769
1770 if (ceph_snap(inode) != CEPH_NOSNAP) {
1771 ret = -EROFS;
1772 goto unlock;
1773 }
1774
28127bdd
YZ
1775 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1776 ret = ceph_uninline_data(file, NULL);
1777 if (ret < 0)
1778 goto unlock;
1779 }
1780
ad7a60de 1781 size = i_size_read(inode);
bddff633
LH
1782
1783 /* Are we punching a hole beyond EOF? */
1784 if (offset >= size)
1785 goto unlock;
1786 if ((offset + length) > size)
1787 length = size - offset;
ad7a60de
LW
1788
1789 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1790 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1791 else
1792 want = CEPH_CAP_FILE_BUFFER;
1793
5e3ded1b 1794 ret = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
ad7a60de
LW
1795 if (ret < 0)
1796 goto unlock;
1797
bddff633
LH
1798 ceph_zero_pagecache_range(inode, offset, length);
1799 ret = ceph_zero_objects(inode, offset, length);
ad7a60de
LW
1800
1801 if (!ret) {
1802 spin_lock(&ci->i_ceph_lock);
28127bdd 1803 ci->i_inline_version = CEPH_INLINE_NONE;
f66fd9f0
YZ
1804 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1805 &prealloc_cf);
ad7a60de
LW
1806 spin_unlock(&ci->i_ceph_lock);
1807 if (dirty)
1808 __mark_inode_dirty(inode, dirty);
1809 }
1810
1811 ceph_put_cap_refs(ci, got);
1812unlock:
5955102c 1813 inode_unlock(inode);
f66fd9f0 1814 ceph_free_cap_flush(prealloc_cf);
ad7a60de
LW
1815 return ret;
1816}
1817
503f82a9
LH
1818/*
1819 * This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
1820 * src_ci. Two attempts are made to obtain both caps, and an error is return if
1821 * this fails; zero is returned on success.
1822 */
5e3ded1b
YZ
1823static int get_rd_wr_caps(struct file *src_filp, int *src_got,
1824 struct file *dst_filp,
503f82a9
LH
1825 loff_t dst_endoff, int *dst_got)
1826{
1827 int ret = 0;
1828 bool retrying = false;
1829
1830retry_caps:
5e3ded1b 1831 ret = ceph_get_caps(dst_filp, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
503f82a9
LH
1832 dst_endoff, dst_got, NULL);
1833 if (ret < 0)
1834 return ret;
1835
1836 /*
1837 * Since we're already holding the FILE_WR capability for the dst file,
1838 * we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
1839 * retry dance instead to try to get both capabilities.
1840 */
5e3ded1b
YZ
1841 ret = ceph_try_get_caps(file_inode(src_filp),
1842 CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
503f82a9
LH
1843 false, src_got);
1844 if (ret <= 0) {
1845 /* Start by dropping dst_ci caps and getting src_ci caps */
5e3ded1b 1846 ceph_put_cap_refs(ceph_inode(file_inode(dst_filp)), *dst_got);
503f82a9
LH
1847 if (retrying) {
1848 if (!ret)
1849 /* ceph_try_get_caps masks EAGAIN */
1850 ret = -EAGAIN;
1851 return ret;
1852 }
5e3ded1b
YZ
1853 ret = ceph_get_caps(src_filp, CEPH_CAP_FILE_RD,
1854 CEPH_CAP_FILE_SHARED, -1, src_got, NULL);
503f82a9
LH
1855 if (ret < 0)
1856 return ret;
1857 /*... drop src_ci caps too, and retry */
5e3ded1b 1858 ceph_put_cap_refs(ceph_inode(file_inode(src_filp)), *src_got);
503f82a9
LH
1859 retrying = true;
1860 goto retry_caps;
1861 }
1862 return ret;
1863}
1864
1865static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
1866 struct ceph_inode_info *dst_ci, int dst_got)
1867{
1868 ceph_put_cap_refs(src_ci, src_got);
1869 ceph_put_cap_refs(dst_ci, dst_got);
1870}
1871
1872/*
1873 * This function does several size-related checks, returning an error if:
1874 * - source file is smaller than off+len
1875 * - destination file size is not OK (inode_newsize_ok())
1876 * - max bytes quotas is exceeded
1877 */
1878static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
1879 loff_t src_off, loff_t dst_off, size_t len)
1880{
1881 loff_t size, endoff;
1882
1883 size = i_size_read(src_inode);
1884 /*
1885 * Don't copy beyond source file EOF. Instead of simply setting length
1886 * to (size - src_off), just drop to VFS default implementation, as the
1887 * local i_size may be stale due to other clients writing to the source
1888 * inode.
1889 */
1890 if (src_off + len > size) {
1891 dout("Copy beyond EOF (%llu + %zu > %llu)\n",
1892 src_off, len, size);
1893 return -EOPNOTSUPP;
1894 }
1895 size = i_size_read(dst_inode);
1896
1897 endoff = dst_off + len;
1898 if (inode_newsize_ok(dst_inode, endoff))
1899 return -EOPNOTSUPP;
1900
1901 if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
1902 return -EDQUOT;
1903
1904 return 0;
1905}
1906
64bf5ff5
DC
1907static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off,
1908 struct file *dst_file, loff_t dst_off,
1909 size_t len, unsigned int flags)
503f82a9
LH
1910{
1911 struct inode *src_inode = file_inode(src_file);
1912 struct inode *dst_inode = file_inode(dst_file);
1913 struct ceph_inode_info *src_ci = ceph_inode(src_inode);
1914 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
1915 struct ceph_cap_flush *prealloc_cf;
1916 struct ceph_object_locator src_oloc, dst_oloc;
1917 struct ceph_object_id src_oid, dst_oid;
1918 loff_t endoff = 0, size;
1919 ssize_t ret = -EIO;
1920 u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
1921 u32 src_objlen, dst_objlen, object_size;
1922 int src_got = 0, dst_got = 0, err, dirty;
1923 bool do_final_copy = false;
1924
5dae222a
AG
1925 if (src_inode->i_sb != dst_inode->i_sb)
1926 return -EXDEV;
503f82a9
LH
1927 if (ceph_snap(dst_inode) != CEPH_NOSNAP)
1928 return -EROFS;
1929
1930 /*
1931 * Some of the checks below will return -EOPNOTSUPP, which will force a
1932 * fallback to the default VFS copy_file_range implementation. This is
1933 * desirable in several cases (for ex, the 'len' is smaller than the
1934 * size of the objects, or in cases where that would be more
1935 * efficient).
1936 */
1937
ea4cdc54
LH
1938 if (ceph_test_mount_opt(ceph_inode_to_client(src_inode), NOCOPYFROM))
1939 return -EOPNOTSUPP;
1940
503f82a9
LH
1941 if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
1942 (src_ci->i_layout.stripe_count != dst_ci->i_layout.stripe_count) ||
1943 (src_ci->i_layout.object_size != dst_ci->i_layout.object_size))
1944 return -EOPNOTSUPP;
1945
1946 if (len < src_ci->i_layout.object_size)
1947 return -EOPNOTSUPP; /* no remote copy will be done */
1948
1949 prealloc_cf = ceph_alloc_cap_flush();
1950 if (!prealloc_cf)
1951 return -ENOMEM;
1952
c2c6d3ce 1953 /* Start by sync'ing the source and destination files */
503f82a9 1954 ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
c2c6d3ce
LH
1955 if (ret < 0) {
1956 dout("failed to write src file (%zd)\n", ret);
1957 goto out;
1958 }
1959 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
1960 if (ret < 0) {
1961 dout("failed to write dst file (%zd)\n", ret);
503f82a9 1962 goto out;
c2c6d3ce 1963 }
503f82a9
LH
1964
1965 /*
1966 * We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
1967 * clients may have dirty data in their caches. And OSDs know nothing
1968 * about caps, so they can't safely do the remote object copies.
1969 */
5e3ded1b
YZ
1970 err = get_rd_wr_caps(src_file, &src_got,
1971 dst_file, (dst_off + len), &dst_got);
503f82a9
LH
1972 if (err < 0) {
1973 dout("get_rd_wr_caps returned %d\n", err);
1974 ret = -EOPNOTSUPP;
1975 goto out;
1976 }
1977
1978 ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
1979 if (ret < 0)
1980 goto out_caps;
1981
1982 size = i_size_read(dst_inode);
1983 endoff = dst_off + len;
1984
1985 /* Drop dst file cached pages */
1986 ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
1987 dst_off >> PAGE_SHIFT,
1988 endoff >> PAGE_SHIFT);
1989 if (ret < 0) {
1990 dout("Failed to invalidate inode pages (%zd)\n", ret);
1991 ret = 0; /* XXX */
1992 }
1993 src_oloc.pool = src_ci->i_layout.pool_id;
1994 src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
1995 dst_oloc.pool = dst_ci->i_layout.pool_id;
1996 dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
1997
1998 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
1999 src_ci->i_layout.object_size,
2000 &src_objnum, &src_objoff, &src_objlen);
2001 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2002 dst_ci->i_layout.object_size,
2003 &dst_objnum, &dst_objoff, &dst_objlen);
2004 /* object-level offsets need to the same */
2005 if (src_objoff != dst_objoff) {
2006 ret = -EOPNOTSUPP;
2007 goto out_caps;
2008 }
2009
2010 /*
2011 * Do a manual copy if the object offset isn't object aligned.
2012 * 'src_objlen' contains the bytes left until the end of the object,
2013 * starting at the src_off
2014 */
2015 if (src_objoff) {
2016 /*
2017 * we need to temporarily drop all caps as we'll be calling
2018 * {read,write}_iter, which will get caps again.
2019 */
2020 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2021 ret = do_splice_direct(src_file, &src_off, dst_file,
2022 &dst_off, src_objlen, flags);
2023 if (ret < 0) {
2024 dout("do_splice_direct returned %d\n", err);
2025 goto out;
2026 }
2027 len -= ret;
5e3ded1b
YZ
2028 err = get_rd_wr_caps(src_file, &src_got,
2029 dst_file, (dst_off + len), &dst_got);
503f82a9
LH
2030 if (err < 0)
2031 goto out;
2032 err = is_file_size_ok(src_inode, dst_inode,
2033 src_off, dst_off, len);
2034 if (err < 0)
2035 goto out_caps;
2036 }
2037 object_size = src_ci->i_layout.object_size;
2038 while (len >= object_size) {
2039 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
2040 object_size, &src_objnum,
2041 &src_objoff, &src_objlen);
2042 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2043 object_size, &dst_objnum,
2044 &dst_objoff, &dst_objlen);
2045 ceph_oid_init(&src_oid);
2046 ceph_oid_printf(&src_oid, "%llx.%08llx",
2047 src_ci->i_vino.ino, src_objnum);
2048 ceph_oid_init(&dst_oid);
2049 ceph_oid_printf(&dst_oid, "%llx.%08llx",
2050 dst_ci->i_vino.ino, dst_objnum);
2051 /* Do an object remote copy */
2052 err = ceph_osdc_copy_from(
2053 &ceph_inode_to_client(src_inode)->client->osdc,
2054 src_ci->i_vino.snap, 0,
2055 &src_oid, &src_oloc,
2056 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2057 CEPH_OSD_OP_FLAG_FADVISE_NOCACHE,
2058 &dst_oid, &dst_oloc,
2059 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2060 CEPH_OSD_OP_FLAG_FADVISE_DONTNEED, 0);
2061 if (err) {
2062 dout("ceph_osdc_copy_from returned %d\n", err);
2063 if (!ret)
2064 ret = err;
2065 goto out_caps;
2066 }
2067 len -= object_size;
2068 src_off += object_size;
2069 dst_off += object_size;
2070 ret += object_size;
2071 }
2072
2073 if (len)
2074 /* We still need one final local copy */
2075 do_final_copy = true;
2076
2077 file_update_time(dst_file);
5c308356
JL
2078 inode_inc_iversion_raw(dst_inode);
2079
503f82a9
LH
2080 if (endoff > size) {
2081 int caps_flags = 0;
2082
2083 /* Let the MDS know about dst file size change */
2084 if (ceph_quota_is_max_bytes_approaching(dst_inode, endoff))
2085 caps_flags |= CHECK_CAPS_NODELAY;
2086 if (ceph_inode_set_size(dst_inode, endoff))
2087 caps_flags |= CHECK_CAPS_AUTHONLY;
2088 if (caps_flags)
2089 ceph_check_caps(dst_ci, caps_flags, NULL);
2090 }
2091 /* Mark Fw dirty */
2092 spin_lock(&dst_ci->i_ceph_lock);
2093 dst_ci->i_inline_version = CEPH_INLINE_NONE;
2094 dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2095 spin_unlock(&dst_ci->i_ceph_lock);
2096 if (dirty)
2097 __mark_inode_dirty(dst_inode, dirty);
2098
2099out_caps:
2100 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2101
2102 if (do_final_copy) {
2103 err = do_splice_direct(src_file, &src_off, dst_file,
2104 &dst_off, len, flags);
2105 if (err < 0) {
2106 dout("do_splice_direct returned %d\n", err);
2107 goto out;
2108 }
2109 len -= err;
2110 ret += err;
2111 }
2112
2113out:
2114 ceph_free_cap_flush(prealloc_cf);
2115
2116 return ret;
2117}
2118
64bf5ff5
DC
2119static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
2120 struct file *dst_file, loff_t dst_off,
2121 size_t len, unsigned int flags)
2122{
2123 ssize_t ret;
2124
2125 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off,
2126 len, flags);
2127
5dae222a 2128 if (ret == -EOPNOTSUPP || ret == -EXDEV)
64bf5ff5
DC
2129 ret = generic_copy_file_range(src_file, src_off, dst_file,
2130 dst_off, len, flags);
2131 return ret;
2132}
2133
124e68e7
SW
2134const struct file_operations ceph_file_fops = {
2135 .open = ceph_open,
2136 .release = ceph_release,
2137 .llseek = ceph_llseek,
3644424d 2138 .read_iter = ceph_read_iter,
4908b822 2139 .write_iter = ceph_write_iter,
124e68e7
SW
2140 .mmap = ceph_mmap,
2141 .fsync = ceph_fsync,
40819f6f
GF
2142 .lock = ceph_lock,
2143 .flock = ceph_flock,
7ce469a5 2144 .splice_read = generic_file_splice_read,
3551dd79 2145 .splice_write = iter_file_splice_write,
124e68e7
SW
2146 .unlocked_ioctl = ceph_ioctl,
2147 .compat_ioctl = ceph_ioctl,
ad7a60de 2148 .fallocate = ceph_fallocate,
503f82a9 2149 .copy_file_range = ceph_copy_file_range,
124e68e7 2150};