blob: 67080721cec8e05fc49dc8aa69c684caa9de3c90 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Luis Henriques503f82a2018-10-15 16:45:59 +01003#include <linux/ceph/striper.h>
Sage Weil124e68e2009-10-06 11:31:08 -07004
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005#include <linux/module.h>
Sage Weil124e68e2009-10-06 11:31:08 -07006#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Sage Weil124e68e2009-10-06 11:31:08 -07008#include <linux/file.h>
Sage Weil5ef50c32012-07-31 11:27:36 -07009#include <linux/mount.h>
Sage Weil124e68e2009-10-06 11:31:08 -070010#include <linux/namei.h>
11#include <linux/writeback.h>
Li Wangad7a60d2013-08-15 11:51:44 +080012#include <linux/falloc.h>
Jeff Layton5c308352019-06-06 08:57:27 -040013#include <linux/iversion.h>
Sage Weil124e68e2009-10-06 11:31:08 -070014
15#include "super.h"
16#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040017#include "cache.h"
Jeff Layton321fe132019-08-02 13:15:39 -040018#include "io.h"
Sage Weil124e68e2009-10-06 11:31:08 -070019
Alexander Graff775ff72017-04-27 18:34:00 +020020static __le32 ceph_flags_sys2wire(u32 flags)
21{
22 u32 wire_flags = 0;
23
24 switch (flags & O_ACCMODE) {
25 case O_RDONLY:
26 wire_flags |= CEPH_O_RDONLY;
27 break;
28 case O_WRONLY:
29 wire_flags |= CEPH_O_WRONLY;
30 break;
31 case O_RDWR:
32 wire_flags |= CEPH_O_RDWR;
33 break;
34 }
35
Chengguang Xu51b10f32018-03-09 15:12:40 +080036 flags &= ~O_ACCMODE;
37
Alexander Graff775ff72017-04-27 18:34:00 +020038#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
39
40 ceph_sys2wire(O_CREAT);
41 ceph_sys2wire(O_EXCL);
42 ceph_sys2wire(O_TRUNC);
43 ceph_sys2wire(O_DIRECTORY);
44 ceph_sys2wire(O_NOFOLLOW);
45
46#undef ceph_sys2wire
47
48 if (flags)
Chengguang Xu4c069a52018-01-30 16:29:17 +080049 dout("unused open flags: %x\n", flags);
Alexander Graff775ff72017-04-27 18:34:00 +020050
51 return cpu_to_le32(wire_flags);
52}
53
Sage Weil124e68e2009-10-06 11:31:08 -070054/*
55 * Ceph file operations
56 *
57 * Implement basic open/close functionality, and implement
58 * read/write.
59 *
60 * We implement three modes of file I/O:
61 * - buffered uses the generic_file_aio_{read,write} helpers
62 *
63 * - synchronous is used when there is multi-client read/write
64 * sharing, avoids the page cache, and synchronously waits for an
65 * ack from the OSD.
66 *
67 * - direct io takes the variant of the sync path that references
68 * user pages directly.
69 *
70 * fsync() flushes and waits on dirty pages, but just queues metadata
71 * for writeback: since the MDS can recover size and mtime there is no
72 * need to wait for MDS acknowledgement.
73 */
74
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080075/*
Ilya Dryomovfc218542018-05-04 16:57:31 +020076 * How many pages to get in one call to iov_iter_get_pages(). This
77 * determines the size of the on-stack array used as a buffer.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080078 */
Ilya Dryomovfc218542018-05-04 16:57:31 +020079#define ITER_GET_BVECS_PAGES 64
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080080
Ilya Dryomovfc218542018-05-04 16:57:31 +020081static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
82 struct bio_vec *bvecs)
83{
84 size_t size = 0;
85 int bvec_idx = 0;
86
87 if (maxsize > iov_iter_count(iter))
88 maxsize = iov_iter_count(iter);
89
90 while (size < maxsize) {
91 struct page *pages[ITER_GET_BVECS_PAGES];
92 ssize_t bytes;
93 size_t start;
94 int idx = 0;
95
96 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
97 ITER_GET_BVECS_PAGES, &start);
98 if (bytes < 0)
99 return size ?: bytes;
100
101 iov_iter_advance(iter, bytes);
102 size += bytes;
103
104 for ( ; bytes; idx++, bvec_idx++) {
105 struct bio_vec bv = {
106 .bv_page = pages[idx],
107 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
108 .bv_offset = start,
109 };
110
111 bvecs[bvec_idx] = bv;
112 bytes -= bv.bv_len;
113 start = 0;
114 }
115 }
116
117 return size;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800118}
119
120/*
Ilya Dryomovfc218542018-05-04 16:57:31 +0200121 * iov_iter_get_pages() only considers one iov_iter segment, no matter
122 * what maxsize or maxpages are given. For ITER_BVEC that is a single
123 * page.
124 *
125 * Attempt to get up to @maxsize bytes worth of pages from @iter.
126 * Return the number of bytes in the created bio_vec array, or an error.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800127 */
Ilya Dryomovfc218542018-05-04 16:57:31 +0200128static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
129 struct bio_vec **bvecs, int *num_bvecs)
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800130{
Ilya Dryomovfc218542018-05-04 16:57:31 +0200131 struct bio_vec *bv;
132 size_t orig_count = iov_iter_count(iter);
133 ssize_t bytes;
134 int npages;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800135
Ilya Dryomovfc218542018-05-04 16:57:31 +0200136 iov_iter_truncate(iter, maxsize);
137 npages = iov_iter_npages(iter, INT_MAX);
138 iov_iter_reexpand(iter, orig_count);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800139
Ilya Dryomovfc218542018-05-04 16:57:31 +0200140 /*
141 * __iter_get_bvecs() may populate only part of the array -- zero it
142 * out.
143 */
144 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
145 if (!bv)
146 return -ENOMEM;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800147
Ilya Dryomovfc218542018-05-04 16:57:31 +0200148 bytes = __iter_get_bvecs(iter, maxsize, bv);
149 if (bytes < 0) {
150 /*
151 * No pages were pinned -- just free the array.
152 */
153 kvfree(bv);
154 return bytes;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800155 }
156
Ilya Dryomovfc218542018-05-04 16:57:31 +0200157 *bvecs = bv;
158 *num_bvecs = npages;
159 return bytes;
160}
161
162static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
163{
164 int i;
165
166 for (i = 0; i < num_bvecs; i++) {
167 if (bvecs[i].bv_page) {
168 if (should_dirty)
169 set_page_dirty_lock(bvecs[i].bv_page);
170 put_page(bvecs[i].bv_page);
171 }
172 }
173 kvfree(bvecs);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800174}
Sage Weil124e68e2009-10-06 11:31:08 -0700175
176/*
177 * Prepare an open request. Preallocate ceph_cap to avoid an
178 * inopportune ENOMEM later.
179 */
180static struct ceph_mds_request *
181prepare_open_request(struct super_block *sb, int flags, int create_mode)
182{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700183 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
184 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700185 struct ceph_mds_request *req;
186 int want_auth = USE_ANY_MDS;
187 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
188
189 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
190 want_auth = USE_AUTH_MDS;
191
192 req = ceph_mdsc_create_request(mdsc, op, want_auth);
193 if (IS_ERR(req))
194 goto out;
195 req->r_fmode = ceph_flags_to_mode(flags);
Alexander Graff775ff72017-04-27 18:34:00 +0200196 req->r_args.open.flags = ceph_flags_sys2wire(flags);
Sage Weil124e68e2009-10-06 11:31:08 -0700197 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700198out:
199 return req;
200}
201
Chengguang Xubb48bd42018-03-13 10:42:44 +0800202static int ceph_init_file_info(struct inode *inode, struct file *file,
203 int fmode, bool isdir)
204{
Yan, Zhengf4b97862019-07-25 20:16:42 +0800205 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800206 struct ceph_file_info *fi;
207
208 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
209 inode->i_mode, isdir ? "dir" : "regular");
210 BUG_ON(inode->i_fop->release != ceph_release);
211
212 if (isdir) {
213 struct ceph_dir_file_info *dfi =
214 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
215 if (!dfi) {
Yan, Zhengf4b97862019-07-25 20:16:42 +0800216 ceph_put_fmode(ci, fmode); /* clean up */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800217 return -ENOMEM;
218 }
219
220 file->private_data = dfi;
221 fi = &dfi->file_info;
222 dfi->next_offset = 2;
223 dfi->readdir_cache_idx = -1;
224 } else {
225 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
226 if (!fi) {
Yan, Zhengf4b97862019-07-25 20:16:42 +0800227 ceph_put_fmode(ci, fmode); /* clean up */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800228 return -ENOMEM;
229 }
230
231 file->private_data = fi;
232 }
233
234 fi->fmode = fmode;
235 spin_lock_init(&fi->rw_contexts_lock);
236 INIT_LIST_HEAD(&fi->rw_contexts);
Yan, Zhengf4b97862019-07-25 20:16:42 +0800237 fi->meta_err = errseq_sample(&ci->i_meta_err);
Yan, Zheng81f148a2019-07-25 20:16:46 +0800238 fi->filp_gen = READ_ONCE(ceph_inode_to_client(inode)->filp_gen);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800239
240 return 0;
241}
242
Sage Weil124e68e2009-10-06 11:31:08 -0700243/*
244 * initialize private struct file data.
245 * if we fail, clean up by dropping fmode reference on the ceph_inode
246 */
247static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
248{
Sage Weil124e68e2009-10-06 11:31:08 -0700249 int ret = 0;
250
251 switch (inode->i_mode & S_IFMT) {
252 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800253 ceph_fscache_register_inode_cookie(inode);
254 ceph_fscache_file_set_cookie(inode, file);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -0600255 /* fall through */
Sage Weil124e68e2009-10-06 11:31:08 -0700256 case S_IFDIR:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800257 ret = ceph_init_file_info(inode, file, fmode,
258 S_ISDIR(inode->i_mode));
259 if (ret)
260 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700261 break;
262
263 case S_IFLNK:
264 dout("init_file %p %p 0%o (symlink)\n", inode, file,
265 inode->i_mode);
266 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
267 break;
268
269 default:
270 dout("init_file %p %p 0%o (special)\n", inode, file,
271 inode->i_mode);
272 /*
273 * we need to drop the open ref now, since we don't
274 * have .release set to ceph_release.
275 */
276 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
277 BUG_ON(inode->i_fop->release == ceph_release);
278
279 /* call the proper open fop */
280 ret = inode->i_fop->open(inode, file);
281 }
282 return ret;
283}
284
285/*
Yan, Zheng77310322016-04-08 15:27:16 +0800286 * try renew caps after session gets killed.
287 */
288int ceph_renew_caps(struct inode *inode)
289{
290 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
291 struct ceph_inode_info *ci = ceph_inode(inode);
292 struct ceph_mds_request *req;
293 int err, flags, wanted;
294
295 spin_lock(&ci->i_ceph_lock);
296 wanted = __ceph_caps_file_wanted(ci);
297 if (__ceph_is_any_real_caps(ci) &&
Yan, Zheng8242c9f2017-03-25 17:28:10 +0800298 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
Yan, Zheng77310322016-04-08 15:27:16 +0800299 int issued = __ceph_caps_issued(ci, NULL);
300 spin_unlock(&ci->i_ceph_lock);
301 dout("renew caps %p want %s issued %s updating mds_wanted\n",
302 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
303 ceph_check_caps(ci, 0, NULL);
304 return 0;
305 }
306 spin_unlock(&ci->i_ceph_lock);
307
308 flags = 0;
309 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
310 flags = O_RDWR;
311 else if (wanted & CEPH_CAP_FILE_RD)
312 flags = O_RDONLY;
313 else if (wanted & CEPH_CAP_FILE_WR)
314 flags = O_WRONLY;
315#ifdef O_LAZY
316 if (wanted & CEPH_CAP_FILE_LAZYIO)
317 flags |= O_LAZY;
318#endif
319
320 req = prepare_open_request(inode->i_sb, flags, 0);
321 if (IS_ERR(req)) {
322 err = PTR_ERR(req);
323 goto out;
324 }
325
326 req->r_inode = inode;
327 ihold(inode);
328 req->r_num_caps = 1;
329 req->r_fmode = -1;
330
331 err = ceph_mdsc_do_request(mdsc, NULL, req);
332 ceph_mdsc_put_request(req);
333out:
334 dout("renew caps %p open result=%d\n", inode, err);
335 return err < 0 ? err : 0;
336}
337
338/*
Sage Weil124e68e2009-10-06 11:31:08 -0700339 * If we already have the requisite capabilities, we can satisfy
340 * the open request locally (no need to request new caps from the
341 * MDS). We do, however, need to inform the MDS (asynchronously)
342 * if our wanted caps set expands.
343 */
344int ceph_open(struct inode *inode, struct file *file)
345{
346 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700347 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
348 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700349 struct ceph_mds_request *req;
Chengguang Xu73737682018-02-28 19:43:47 +0800350 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700351 int err;
352 int flags, fmode, wanted;
353
Chengguang Xu73737682018-02-28 19:43:47 +0800354 if (fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700355 dout("open file %p is already opened\n", file);
356 return 0;
357 }
358
359 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
360 flags = file->f_flags & ~(O_CREAT|O_EXCL);
361 if (S_ISDIR(inode->i_mode))
362 flags = O_DIRECTORY; /* mds likes to know */
363
364 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
365 ceph_vinop(inode), file, flags, file->f_flags);
366 fmode = ceph_flags_to_mode(flags);
367 wanted = ceph_caps_for_mode(fmode);
368
369 /* snapped files are read-only */
370 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
371 return -EROFS;
372
373 /* trivially open snapdir */
374 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800375 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700376 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800377 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700378 return ceph_init_file(inode, file, fmode);
379 }
380
381 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800382 * No need to block if we have caps on the auth MDS (for
383 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700384 * asynchronously.
385 */
Sage Weilbe655592011-11-30 09:47:09 -0800386 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800387 if (__ceph_is_any_real_caps(ci) &&
388 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800389 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700390 int issued = __ceph_caps_issued(ci, NULL);
391
392 dout("open %p fmode %d want %s issued %s using existing\n",
393 inode, fmode, ceph_cap_string(wanted),
394 ceph_cap_string(issued));
395 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800396 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700397
398 /* adjust wanted? */
399 if ((issued & wanted) != wanted &&
400 (mds_wanted & wanted) != wanted &&
401 ceph_snap(inode) != CEPH_SNAPDIR)
402 ceph_check_caps(ci, 0, NULL);
403
404 return ceph_init_file(inode, file, fmode);
405 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
406 (ci->i_snap_caps & wanted) == wanted) {
407 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800408 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700409 return ceph_init_file(inode, file, fmode);
410 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400411
Sage Weilbe655592011-11-30 09:47:09 -0800412 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700413
414 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
415 req = prepare_open_request(inode->i_sb, flags, 0);
416 if (IS_ERR(req)) {
417 err = PTR_ERR(req);
418 goto out;
419 }
Sage Weil70b666c2011-05-27 09:24:26 -0700420 req->r_inode = inode;
421 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400422
Sage Weil124e68e2009-10-06 11:31:08 -0700423 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800424 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700425 if (!err)
426 err = ceph_init_file(inode, file, req->r_fmode);
427 ceph_mdsc_put_request(req);
428 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
429out:
430 return err;
431}
432
Jeff Layton785892f2020-01-02 07:11:38 -0500433/* Clone the layout from a synchronous create, if the dir now has Dc caps */
434static void
435cache_file_layout(struct inode *dst, struct inode *src)
436{
437 struct ceph_inode_info *cdst = ceph_inode(dst);
438 struct ceph_inode_info *csrc = ceph_inode(src);
439
440 spin_lock(&cdst->i_ceph_lock);
441 if ((__ceph_caps_issued(cdst, NULL) & CEPH_CAP_DIR_CREATE) &&
442 !ceph_file_layout_is_valid(&cdst->i_cached_layout)) {
443 memcpy(&cdst->i_cached_layout, &csrc->i_layout,
444 sizeof(cdst->i_cached_layout));
445 rcu_assign_pointer(cdst->i_cached_layout.pool_ns,
446 ceph_try_get_string(csrc->i_layout.pool_ns));
447 }
448 spin_unlock(&cdst->i_ceph_lock);
449}
Sage Weil124e68e2009-10-06 11:31:08 -0700450
451/*
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500452 * Try to set up an async create. We need caps, a file layout, and inode number,
453 * and either a lease on the dentry or complete dir info. If any of those
454 * criteria are not satisfied, then return false and the caller can go
455 * synchronous.
456 */
457static int try_prep_async_create(struct inode *dir, struct dentry *dentry,
458 struct ceph_file_layout *lo, u64 *pino)
459{
460 struct ceph_inode_info *ci = ceph_inode(dir);
461 struct ceph_dentry_info *di = ceph_dentry(dentry);
462 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_CREATE;
463 u64 ino;
464
465 spin_lock(&ci->i_ceph_lock);
466 /* No auth cap means no chance for Dc caps */
467 if (!ci->i_auth_cap)
468 goto no_async;
469
470 /* Any delegated inos? */
471 if (xa_empty(&ci->i_auth_cap->session->s_delegated_inos))
472 goto no_async;
473
474 if (!ceph_file_layout_is_valid(&ci->i_cached_layout))
475 goto no_async;
476
477 if ((__ceph_caps_issued(ci, NULL) & want) != want)
478 goto no_async;
479
480 if (d_in_lookup(dentry)) {
481 if (!__ceph_dir_is_complete(ci))
482 goto no_async;
483 } else if (atomic_read(&ci->i_shared_gen) !=
484 READ_ONCE(di->lease_shared_gen)) {
485 goto no_async;
486 }
487
488 ino = ceph_get_deleg_ino(ci->i_auth_cap->session);
489 if (!ino)
490 goto no_async;
491
492 *pino = ino;
493 ceph_take_cap_refs(ci, want, false);
494 memcpy(lo, &ci->i_cached_layout, sizeof(*lo));
495 rcu_assign_pointer(lo->pool_ns,
496 ceph_try_get_string(ci->i_cached_layout.pool_ns));
497 got = want;
498no_async:
499 spin_unlock(&ci->i_ceph_lock);
500 return got;
501}
502
503static void restore_deleg_ino(struct inode *dir, u64 ino)
504{
505 struct ceph_inode_info *ci = ceph_inode(dir);
506 struct ceph_mds_session *s = NULL;
507
508 spin_lock(&ci->i_ceph_lock);
509 if (ci->i_auth_cap)
510 s = ceph_get_mds_session(ci->i_auth_cap->session);
511 spin_unlock(&ci->i_ceph_lock);
512 if (s) {
513 int err = ceph_restore_deleg_ino(s, ino);
514 if (err)
515 pr_warn("ceph: unable to restore delegated ino 0x%llx to session: %d\n",
516 ino, err);
517 ceph_put_mds_session(s);
518 }
519}
520
521static void ceph_async_create_cb(struct ceph_mds_client *mdsc,
522 struct ceph_mds_request *req)
523{
524 int result = req->r_err ? req->r_err :
525 le32_to_cpu(req->r_reply_info.head->result);
526
527 if (result == -EJUKEBOX)
528 goto out;
529
530 mapping_set_error(req->r_parent->i_mapping, result);
531
532 if (result) {
533 struct dentry *dentry = req->r_dentry;
534 int pathlen;
535 u64 base;
536 char *path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
537 &base, 0);
538
539 ceph_dir_clear_complete(req->r_parent);
540 if (!d_unhashed(dentry))
541 d_drop(dentry);
542
543 /* FIXME: start returning I/O errors on all accesses? */
544 pr_warn("ceph: async create failure path=(%llx)%s result=%d!\n",
545 base, IS_ERR(path) ? "<<bad>>" : path, result);
546 ceph_mdsc_free_path(path, pathlen);
547 }
548
549 if (req->r_target_inode) {
550 struct ceph_inode_info *ci = ceph_inode(req->r_target_inode);
551 u64 ino = ceph_vino(req->r_target_inode).ino;
552
553 if (req->r_deleg_ino != ino)
554 pr_warn("%s: inode number mismatch! err=%d deleg_ino=0x%llx target=0x%llx\n",
555 __func__, req->r_err, req->r_deleg_ino, ino);
556 mapping_set_error(req->r_target_inode->i_mapping, result);
557
558 spin_lock(&ci->i_ceph_lock);
559 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
560 ci->i_ceph_flags &= ~CEPH_I_ASYNC_CREATE;
561 wake_up_bit(&ci->i_ceph_flags, CEPH_ASYNC_CREATE_BIT);
562 }
563 ceph_kick_flushing_inode_caps(req->r_session, ci);
564 spin_unlock(&ci->i_ceph_lock);
565 } else {
566 pr_warn("%s: no req->r_target_inode for 0x%llx\n", __func__,
567 req->r_deleg_ino);
568 }
569out:
570 ceph_mdsc_release_dir_caps(req);
571}
572
573static int ceph_finish_async_create(struct inode *dir, struct dentry *dentry,
574 struct file *file, umode_t mode,
575 struct ceph_mds_request *req,
576 struct ceph_acl_sec_ctx *as_ctx,
577 struct ceph_file_layout *lo)
578{
579 int ret;
580 char xattr_buf[4];
581 struct ceph_mds_reply_inode in = { };
582 struct ceph_mds_reply_info_in iinfo = { .in = &in };
583 struct ceph_inode_info *ci = ceph_inode(dir);
584 struct inode *inode;
585 struct timespec64 now;
586 struct ceph_vino vino = { .ino = req->r_deleg_ino,
587 .snap = CEPH_NOSNAP };
588
589 ktime_get_real_ts64(&now);
590
591 inode = ceph_get_inode(dentry->d_sb, vino);
592 if (IS_ERR(inode))
593 return PTR_ERR(inode);
594
595 iinfo.inline_version = CEPH_INLINE_NONE;
596 iinfo.change_attr = 1;
597 ceph_encode_timespec64(&iinfo.btime, &now);
598
599 iinfo.xattr_len = ARRAY_SIZE(xattr_buf);
600 iinfo.xattr_data = xattr_buf;
601 memset(iinfo.xattr_data, 0, iinfo.xattr_len);
602
603 in.ino = cpu_to_le64(vino.ino);
604 in.snapid = cpu_to_le64(CEPH_NOSNAP);
605 in.version = cpu_to_le64(1); // ???
606 in.cap.caps = in.cap.wanted = cpu_to_le32(CEPH_CAP_ALL_FILE);
607 in.cap.cap_id = cpu_to_le64(1);
608 in.cap.realm = cpu_to_le64(ci->i_snap_realm->ino);
609 in.cap.flags = CEPH_CAP_FLAG_AUTH;
610 in.ctime = in.mtime = in.atime = iinfo.btime;
611 in.mode = cpu_to_le32((u32)mode);
612 in.truncate_seq = cpu_to_le32(1);
613 in.truncate_size = cpu_to_le64(-1ULL);
614 in.xattr_version = cpu_to_le64(1);
615 in.uid = cpu_to_le32(from_kuid(&init_user_ns, current_fsuid()));
616 in.gid = cpu_to_le32(from_kgid(&init_user_ns, dir->i_mode & S_ISGID ?
617 dir->i_gid : current_fsgid()));
618 in.nlink = cpu_to_le32(1);
619 in.max_size = cpu_to_le64(lo->stripe_unit);
620
621 ceph_file_layout_to_legacy(lo, &in.layout);
622
623 ret = ceph_fill_inode(inode, NULL, &iinfo, NULL, req->r_session,
624 req->r_fmode, NULL);
625 if (ret) {
626 dout("%s failed to fill inode: %d\n", __func__, ret);
627 ceph_dir_clear_complete(dir);
628 if (!d_unhashed(dentry))
629 d_drop(dentry);
630 if (inode->i_state & I_NEW)
631 discard_new_inode(inode);
632 } else {
633 struct dentry *dn;
634
635 dout("%s d_adding new inode 0x%llx to 0x%lx/%s\n", __func__,
636 vino.ino, dir->i_ino, dentry->d_name.name);
637 ceph_dir_clear_ordered(dir);
638 ceph_init_inode_acls(inode, as_ctx);
639 if (inode->i_state & I_NEW) {
640 /*
641 * If it's not I_NEW, then someone created this before
642 * we got here. Assume the server is aware of it at
643 * that point and don't worry about setting
644 * CEPH_I_ASYNC_CREATE.
645 */
646 ceph_inode(inode)->i_ceph_flags = CEPH_I_ASYNC_CREATE;
647 unlock_new_inode(inode);
648 }
649 if (d_in_lookup(dentry) || d_really_is_negative(dentry)) {
650 if (!d_unhashed(dentry))
651 d_drop(dentry);
652 dn = d_splice_alias(inode, dentry);
653 WARN_ON_ONCE(dn && dn != dentry);
654 }
655 file->f_mode |= FMODE_CREATED;
656 ret = finish_open(file, dentry, ceph_open);
657 }
658 return ret;
659}
660
661/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700662 * Do a lookup + open with a single request. If we get a non-existent
663 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700664 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700665int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro44907d72018-06-08 13:32:02 -0400666 struct file *file, unsigned flags, umode_t mode)
Sage Weil124e68e2009-10-06 11:31:08 -0700667{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700668 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
669 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700670 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700671 struct dentry *dn;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800672 struct ceph_acl_sec_ctx as_ctx = {};
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500673 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
Luis Henriquesb7a29212018-01-05 10:47:19 +0000674 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700675 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700676
Al Viroa4555892014-10-21 20:11:25 -0400677 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
678 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700679 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
680
681 if (dentry->d_name.len > NAME_MAX)
682 return -ENAMETOOLONG;
683
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800684 if (flags & O_CREAT) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000685 if (ceph_quota_is_max_files_exceeded(dir))
686 return -EDQUOT;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800687 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800688 if (err < 0)
689 return err;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800690 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
691 if (err < 0)
692 goto out_ctx;
Jeff Layton5bb5e6e2019-10-30 12:15:10 -0400693 } else if (!d_in_lookup(dentry)) {
694 /* If it's not being looked up, it's negative */
695 return -ENOENT;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800696 }
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500697retry:
Sage Weil124e68e2009-10-06 11:31:08 -0700698 /* do the open */
699 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800700 if (IS_ERR(req)) {
701 err = PTR_ERR(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800702 goto out_ctx;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800703 }
Sage Weil124e68e2009-10-06 11:31:08 -0700704 req->r_dentry = dget(dentry);
705 req->r_num_caps = 2;
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500706 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
707 if (ceph_security_xattr_wanted(dir))
708 mask |= CEPH_CAP_XATTR_SHARED;
709 req->r_args.open.mask = cpu_to_le32(mask);
710 req->r_parent = dir;
711
Sage Weil124e68e2009-10-06 11:31:08 -0700712 if (flags & O_CREAT) {
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500713 struct ceph_file_layout lo;
714
Yan, Zheng222b7f92017-11-23 17:47:15 +0800715 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil124e68e2009-10-06 11:31:08 -0700716 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800717 if (as_ctx.pagelist) {
718 req->r_pagelist = as_ctx.pagelist;
719 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800720 }
Jeff Layton9a8d03c2019-11-27 12:06:14 -0500721 if (try_async &&
722 (req->r_dir_caps =
723 try_prep_async_create(dir, dentry, &lo,
724 &req->r_deleg_ino))) {
725 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
726 req->r_args.open.flags |= cpu_to_le32(CEPH_O_EXCL);
727 req->r_callback = ceph_async_create_cb;
728 err = ceph_mdsc_submit_request(mdsc, dir, req);
729 if (!err) {
730 err = ceph_finish_async_create(dir, dentry,
731 file, mode, req,
732 &as_ctx, &lo);
733 } else if (err == -EJUKEBOX) {
734 restore_deleg_ino(dir, req->r_deleg_ino);
735 ceph_mdsc_put_request(req);
736 try_async = false;
737 goto retry;
738 }
739 goto out_req;
740 }
Sage Weil124e68e2009-10-06 11:31:08 -0700741 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800742
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500743 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700744 err = ceph_mdsc_do_request(mdsc,
745 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
746 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800747 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000748 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800749 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000750
Jianpeng Maa43137f2015-08-18 10:23:50 +0800751 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700752 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700753
Al Viro00699ad2016-07-05 09:44:53 -0400754 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700755 dn = ceph_finish_lookup(req, dentry, err);
756 if (IS_ERR(dn))
757 err = PTR_ERR(dn);
758 } else {
759 /* we were given a hashed negative dentry */
760 dn = NULL;
761 }
Sage Weil468640e2011-07-26 11:28:11 -0700762 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800763 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000764 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700765 /* make vfs retry on splice, ENOENT, or symlink */
766 dout("atomic_open finish_no_open on dn %p\n", dn);
767 err = finish_no_open(file, dn);
768 } else {
769 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800770 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
Jeff Layton785892f2020-01-02 07:11:38 -0500771 struct inode *newino = d_inode(dentry);
772
773 cache_file_layout(dir, newino);
774 ceph_init_inode_acls(newino, &as_ctx);
Al Viro73a09dd2018-06-08 13:22:02 -0400775 file->f_mode |= FMODE_CREATED;
Sam Lang6e8575f2012-12-28 09:56:46 -0800776 }
Al Virobe12af32018-06-08 11:44:56 -0400777 err = finish_open(file, dentry, ceph_open);
Sage Weil5ef50c32012-07-31 11:27:36 -0700778 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800779out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800780 if (!req->r_err && req->r_target_inode)
781 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700782 ceph_mdsc_put_request(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800783out_ctx:
784 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil5ef50c32012-07-31 11:27:36 -0700785 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400786 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700787}
788
789int ceph_release(struct inode *inode, struct file *file)
790{
791 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700792
Chengguang Xubb48bd42018-03-13 10:42:44 +0800793 if (S_ISDIR(inode->i_mode)) {
794 struct ceph_dir_file_info *dfi = file->private_data;
795 dout("release inode %p dir file %p\n", inode, file);
796 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
797
798 ceph_put_fmode(ci, dfi->file_info.fmode);
799
800 if (dfi->last_readdir)
801 ceph_mdsc_put_request(dfi->last_readdir);
802 kfree(dfi->last_name);
803 kfree(dfi->dir_info);
804 kmem_cache_free(ceph_dir_file_cachep, dfi);
805 } else {
806 struct ceph_file_info *fi = file->private_data;
807 dout("release inode %p regular file %p\n", inode, file);
808 WARN_ON(!list_empty(&fi->rw_contexts));
809
810 ceph_put_fmode(ci, fi->fmode);
811 kmem_cache_free(ceph_file_cachep, fi);
812 }
Sage Weil195d3ce2010-03-01 09:57:54 -0800813
814 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700815 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700816 return 0;
817}
818
Yan, Zheng83701242014-11-14 22:36:18 +0800819enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800820 HAVE_RETRIED = 1,
821 CHECK_EOF = 2,
822 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800823};
824
Sage Weil124e68e2009-10-06 11:31:08 -0700825/*
Yan, Zhengfce7a972018-09-29 16:02:19 +0800826 * Completely synchronous read and write methods. Direct from __user
827 * buffer to osd, or directly to user pages (if O_DIRECT).
828 *
829 * If the read spans object boundary, just do multiple reads. (That's not
830 * atomic, but good enough for now.)
Sage Weil124e68e2009-10-06 11:31:08 -0700831 *
832 * If we get a short result from the OSD, check against i_size; we need to
833 * only return a short read to the caller if we hit EOF.
834 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800835static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
Yan, Zhengfce7a972018-09-29 16:02:19 +0800836 int *retry_op)
Sage Weil124e68e2009-10-06 11:31:08 -0700837{
majianpeng8eb4efb2013-09-26 14:42:17 +0800838 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500839 struct inode *inode = file_inode(file);
Yan, Zhengfce7a972018-09-29 16:02:19 +0800840 struct ceph_inode_info *ci = ceph_inode(inode);
841 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
842 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800843 ssize_t ret;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800844 u64 off = iocb->ki_pos;
845 u64 len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700846
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800847 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700848 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800849
850 if (!len)
851 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800852 /*
853 * flush any page cache pages in this range. this
854 * will make concurrent normal and sync io slow,
855 * but it will at least behave sensibly when they are
856 * in sequence.
857 */
zhengbine450f4d2019-02-01 11:19:15 +0000858 ret = filemap_write_and_wait_range(inode->i_mapping,
859 off, off + len - 1);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800860 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800861 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800862
Yan, Zhengfce7a972018-09-29 16:02:19 +0800863 ret = 0;
864 while ((len = iov_iter_count(to)) > 0) {
865 struct ceph_osd_request *req;
866 struct page **pages;
867 int num_pages;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800868 size_t page_off;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800869 u64 i_size;
870 bool more;
Sage Weil124e68e2009-10-06 11:31:08 -0700871
Yan, Zhengfce7a972018-09-29 16:02:19 +0800872 req = ceph_osdc_new_request(osdc, &ci->i_layout,
873 ci->i_vino, off, &len, 0, 1,
874 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
875 NULL, ci->i_truncate_seq,
876 ci->i_truncate_size, false);
877 if (IS_ERR(req)) {
878 ret = PTR_ERR(req);
879 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800880 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800881
Yan, Zhengfce7a972018-09-29 16:02:19 +0800882 more = len < iov_iter_count(to);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800883
Linus Torvalds9931a072018-11-01 19:58:52 -0700884 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800885 ret = iov_iter_get_pages_alloc(to, &pages, len,
886 &page_off);
887 if (ret <= 0) {
888 ceph_osdc_put_request(req);
889 ret = -ENOMEM;
890 break;
891 }
892 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
893 if (ret < len) {
894 len = ret;
895 osd_req_op_extent_update(req, 0, len);
896 more = false;
897 }
898 } else {
899 num_pages = calc_pages_for(off, len);
900 page_off = off & ~PAGE_MASK;
901 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
902 if (IS_ERR(pages)) {
903 ceph_osdc_put_request(req);
904 ret = PTR_ERR(pages);
905 break;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800906 }
907 }
Yan, Zhengfce7a972018-09-29 16:02:19 +0800908
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 ceph_osdc_put_request(req);
915
916 i_size = i_size_read(inode);
917 dout("sync_read %llu~%llu got %zd i_size %llu%s\n",
918 off, len, ret, i_size, (more ? " MORE" : ""));
919
920 if (ret == -ENOENT)
921 ret = 0;
922 if (ret >= 0 && ret < len && (off + ret < i_size)) {
923 int zlen = min(len - ret, i_size - off - ret);
924 int zoff = page_off + ret;
925 dout("sync_read zero gap %llu~%llu\n",
926 off + ret, off + ret + zlen);
927 ceph_zero_page_vector_range(zoff, zlen, pages);
928 ret += zlen;
929 }
930
Linus Torvalds9931a072018-11-01 19:58:52 -0700931 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800932 if (ret > 0) {
933 iov_iter_advance(to, ret);
934 off += ret;
935 } else {
936 iov_iter_advance(to, 0);
937 }
938 ceph_put_page_vector(pages, num_pages, false);
939 } else {
940 int idx = 0;
941 size_t left = ret > 0 ? ret : 0;
942 while (left > 0) {
943 size_t len, copied;
944 page_off = off & ~PAGE_MASK;
945 len = min_t(size_t, left, PAGE_SIZE - page_off);
946 copied = copy_page_to_iter(pages[idx++],
947 page_off, len, to);
948 off += copied;
949 left -= copied;
950 if (copied < len) {
951 ret = -EFAULT;
952 break;
953 }
954 }
955 ceph_release_page_vector(pages, num_pages);
956 }
957
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800958 if (ret < 0) {
959 if (ret == -EBLACKLISTED)
960 fsc->blacklisted = true;
961 break;
962 }
963
964 if (off >= i_size || !more)
Yan, Zhengfce7a972018-09-29 16:02:19 +0800965 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800966 }
967
968 if (off > iocb->ki_pos) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800969 if (ret >= 0 &&
970 iov_iter_count(to) > 0 && off >= i_size_read(inode))
971 *retry_op = CHECK_EOF;
majianpeng8eb4efb2013-09-26 14:42:17 +0800972 ret = off - iocb->ki_pos;
973 iocb->ki_pos = off;
974 }
975
Yan, Zhengfce7a972018-09-29 16:02:19 +0800976 dout("sync_read result %zd retry_op %d\n", ret, *retry_op);
Sage Weil124e68e2009-10-06 11:31:08 -0700977 return ret;
978}
979
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800980struct ceph_aio_request {
981 struct kiocb *iocb;
982 size_t total_len;
Yan, Zheng85784f92018-03-16 11:22:29 +0800983 bool write;
984 bool should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800985 int error;
986 struct list_head osd_reqs;
987 unsigned num_reqs;
988 atomic_t pending_reqs;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200989 struct timespec64 mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800990 struct ceph_cap_flush *prealloc_cf;
991};
992
Yan, Zheng5be03892015-12-24 08:44:20 +0800993struct ceph_aio_work {
994 struct work_struct work;
995 struct ceph_osd_request *req;
996};
997
998static void ceph_aio_retry_work(struct work_struct *work);
999
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001000static void ceph_aio_complete(struct inode *inode,
1001 struct ceph_aio_request *aio_req)
1002{
1003 struct ceph_inode_info *ci = ceph_inode(inode);
1004 int ret;
1005
1006 if (!atomic_dec_and_test(&aio_req->pending_reqs))
1007 return;
1008
Jeff Layton6a817492019-11-13 09:56:06 -05001009 if (aio_req->iocb->ki_flags & IOCB_DIRECT)
1010 inode_dio_end(inode);
1011
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001012 ret = aio_req->error;
1013 if (!ret)
1014 ret = aio_req->total_len;
1015
1016 dout("ceph_aio_complete %p rc %d\n", inode, ret);
1017
1018 if (ret >= 0 && aio_req->write) {
1019 int dirty;
1020
1021 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
1022 if (endoff > i_size_read(inode)) {
1023 if (ceph_inode_set_size(inode, endoff))
1024 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
1025 }
1026
1027 spin_lock(&ci->i_ceph_lock);
1028 ci->i_inline_version = CEPH_INLINE_NONE;
1029 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1030 &aio_req->prealloc_cf);
1031 spin_unlock(&ci->i_ceph_lock);
1032 if (dirty)
1033 __mark_inode_dirty(inode, dirty);
1034
1035 }
1036
1037 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
1038 CEPH_CAP_FILE_RD));
1039
1040 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
1041
1042 ceph_free_cap_flush(aio_req->prealloc_cf);
1043 kfree(aio_req);
1044}
1045
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001046static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001047{
1048 int rc = req->r_result;
1049 struct inode *inode = req->r_inode;
1050 struct ceph_aio_request *aio_req = req->r_priv;
1051 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001052
Ilya Dryomovfc218542018-05-04 16:57:31 +02001053 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
1054 BUG_ON(!osd_data->num_bvecs);
1055
1056 dout("ceph_aio_complete_req %p rc %d bytes %u\n",
1057 inode, rc, osd_data->bvec_pos.iter.bi_size);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001058
1059 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001060 struct ceph_aio_work *aio_work;
1061 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001062
Yan, Zheng5be03892015-12-24 08:44:20 +08001063 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
1064 if (aio_work) {
1065 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
1066 aio_work->req = req;
Yan, Zheng1cf89a82019-05-18 11:18:44 +08001067 queue_work(ceph_inode_to_client(inode)->inode_wq,
Yan, Zheng5be03892015-12-24 08:44:20 +08001068 &aio_work->work);
1069 return;
1070 }
1071 rc = -ENOMEM;
1072 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001073 if (rc == -ENOENT)
1074 rc = 0;
Ilya Dryomovfc218542018-05-04 16:57:31 +02001075 if (rc >= 0 && osd_data->bvec_pos.iter.bi_size > rc) {
1076 struct iov_iter i;
1077 int zlen = osd_data->bvec_pos.iter.bi_size - rc;
1078
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001079 /*
1080 * If read is satisfied by single OSD request,
1081 * it can pass EOF. Otherwise read is within
1082 * i_size.
1083 */
1084 if (aio_req->num_reqs == 1) {
1085 loff_t i_size = i_size_read(inode);
1086 loff_t endoff = aio_req->iocb->ki_pos + rc;
1087 if (endoff < i_size)
1088 zlen = min_t(size_t, zlen,
1089 i_size - endoff);
1090 aio_req->total_len = rc + zlen;
1091 }
1092
David Howellsaa563d72018-10-20 00:57:56 +01001093 iov_iter_bvec(&i, READ, osd_data->bvec_pos.bvecs,
Ilya Dryomovfc218542018-05-04 16:57:31 +02001094 osd_data->num_bvecs,
1095 osd_data->bvec_pos.iter.bi_size);
1096 iov_iter_advance(&i, rc);
1097 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001098 }
1099 }
1100
Ilya Dryomovfc218542018-05-04 16:57:31 +02001101 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
1102 aio_req->should_dirty);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001103 ceph_osdc_put_request(req);
1104
1105 if (rc < 0)
1106 cmpxchg(&aio_req->error, 0, rc);
1107
1108 ceph_aio_complete(inode, aio_req);
1109 return;
1110}
1111
Yan, Zheng5be03892015-12-24 08:44:20 +08001112static void ceph_aio_retry_work(struct work_struct *work)
1113{
1114 struct ceph_aio_work *aio_work =
1115 container_of(work, struct ceph_aio_work, work);
1116 struct ceph_osd_request *orig_req = aio_work->req;
1117 struct ceph_aio_request *aio_req = orig_req->r_priv;
1118 struct inode *inode = orig_req->r_inode;
1119 struct ceph_inode_info *ci = ceph_inode(inode);
1120 struct ceph_snap_context *snapc;
1121 struct ceph_osd_request *req;
1122 int ret;
1123
1124 spin_lock(&ci->i_ceph_lock);
1125 if (__ceph_have_pending_cap_snap(ci)) {
1126 struct ceph_cap_snap *capsnap =
1127 list_last_entry(&ci->i_cap_snaps,
1128 struct ceph_cap_snap,
1129 ci_item);
1130 snapc = ceph_get_snap_context(capsnap->context);
1131 } else {
1132 BUG_ON(!ci->i_head_snapc);
1133 snapc = ceph_get_snap_context(ci->i_head_snapc);
1134 }
1135 spin_unlock(&ci->i_ceph_lock);
1136
Ilya Dryomov61d2f852018-10-11 16:15:38 +02001137 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
Yan, Zheng5be03892015-12-24 08:44:20 +08001138 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +03001139 if (!req) {
1140 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +08001141 req = orig_req;
1142 goto out;
1143 }
1144
Yan, Zhengb178cf42017-08-16 17:27:05 +08001145 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001146 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001147 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +08001148
Ilya Dryomov26f887e2018-10-15 16:11:37 +02001149 req->r_ops[0] = orig_req->r_ops[0];
1150
1151 req->r_mtime = aio_req->mtime;
1152 req->r_data_offset = req->r_ops[0].extent.offset;
1153
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001154 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
1155 if (ret) {
1156 ceph_osdc_put_request(req);
1157 req = orig_req;
1158 goto out;
1159 }
Yan, Zheng5be03892015-12-24 08:44:20 +08001160
Yan, Zheng5be03892015-12-24 08:44:20 +08001161 ceph_osdc_put_request(orig_req);
1162
1163 req->r_callback = ceph_aio_complete_req;
1164 req->r_inode = inode;
1165 req->r_priv = aio_req;
1166
1167 ret = ceph_osdc_start_request(req->r_osdc, req, false);
1168out:
1169 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001170 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001171 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +08001172 }
1173
Yan, Zhengdb6aed72016-01-26 23:05:37 +08001174 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +08001175 kfree(aio_work);
1176}
1177
majianpenge8344e62013-09-12 13:54:26 +08001178static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001179ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
1180 struct ceph_snap_context *snapc,
1181 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -07001182{
majianpenge8344e62013-09-12 13:54:26 +08001183 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -05001184 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001185 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001186 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -05001187 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -07001188 struct ceph_osd_request *req;
Ilya Dryomovfc218542018-05-04 16:57:31 +02001189 struct bio_vec *bvecs;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001190 struct ceph_aio_request *aio_req = NULL;
1191 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001192 int flags;
Jeff Layton321fe132019-08-02 13:15:39 -04001193 int ret = 0;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001194 struct timespec64 mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001195 size_t count = iov_iter_count(iter);
1196 loff_t pos = iocb->ki_pos;
1197 bool write = iov_iter_rw(iter) == WRITE;
Yan, Zheng85784f92018-03-16 11:22:29 +08001198 bool should_dirty = !write && iter_is_iovec(iter);
Sage Weil124e68e2009-10-06 11:31:08 -07001199
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001200 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -07001201 return -EROFS;
1202
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001203 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
1204 (write ? "write" : "read"), file, pos, (unsigned)count,
Jeff Layton40e7e2c2019-04-23 14:18:45 -04001205 snapc, snapc ? snapc->seq : 0);
Sage Weil124e68e2009-10-06 11:31:08 -07001206
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001207 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +08001208 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001209 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +00001210 (pos + count - 1) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +08001211 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +01001212 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -08001213
Yan, Zhengb178cf42017-08-16 17:27:05 +08001214 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001215 } else {
1216 flags = CEPH_OSD_FLAG_READ;
1217 }
Sage Weil124e68e2009-10-06 11:31:08 -07001218
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001219 while (iov_iter_count(iter) > 0) {
Ilya Dryomovfc218542018-05-04 16:57:31 +02001220 u64 size = iov_iter_count(iter);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001221 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +08001222
Ilya Dryomov3a15b382018-05-03 16:10:09 +02001223 if (write)
1224 size = min_t(u64, size, fsc->mount_options->wsize);
1225 else
1226 size = min_t(u64, size, fsc->mount_options->rsize);
1227
majianpenge8344e62013-09-12 13:54:26 +08001228 vino = ceph_vino(inode);
1229 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001230 vino, pos, &size, 0,
Yanhu Cao3fb99d42017-07-21 17:20:10 +08001231 1,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001232 write ? CEPH_OSD_OP_WRITE :
1233 CEPH_OSD_OP_READ,
1234 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +08001235 ci->i_truncate_seq,
1236 ci->i_truncate_size,
1237 false);
1238 if (IS_ERR(req)) {
1239 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001240 break;
majianpenge8344e62013-09-12 13:54:26 +08001241 }
1242
Ilya Dryomovfc218542018-05-04 16:57:31 +02001243 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
1244 if (len < 0) {
Al Viro64c31312014-04-03 22:58:25 -04001245 ceph_osdc_put_request(req);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001246 ret = len;
Al Viro64c31312014-04-03 22:58:25 -04001247 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001248 }
Ilya Dryomovfc218542018-05-04 16:57:31 +02001249 if (len != size)
1250 osd_req_op_extent_update(req, 0, len);
Sage Weil124e68e2009-10-06 11:31:08 -07001251
1252 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001253 * To simplify error handling, allow AIO when IO within i_size
1254 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -07001255 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001256 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
1257 (len == count || pos + count <= i_size_read(inode))) {
1258 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
1259 if (aio_req) {
1260 aio_req->iocb = iocb;
1261 aio_req->write = write;
Yan, Zheng85784f92018-03-16 11:22:29 +08001262 aio_req->should_dirty = should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001263 INIT_LIST_HEAD(&aio_req->osd_reqs);
1264 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001265 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001266 swap(aio_req->prealloc_cf, *pcf);
1267 }
1268 }
1269 /* ignore error */
1270 }
majianpenge8344e62013-09-12 13:54:26 +08001271
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001272 if (write) {
1273 /*
1274 * throw out any page cache pages in this range. this
1275 * may block.
1276 */
1277 truncate_inode_pages_range(inode->i_mapping, pos,
Luis Henriquesd31d07b2019-07-01 18:16:34 +01001278 PAGE_ALIGN(pos + len) - 1);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001279
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001280 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001281 }
1282
Ilya Dryomovfc218542018-05-04 16:57:31 +02001283 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001284
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001285 if (aio_req) {
1286 aio_req->total_len += len;
1287 aio_req->num_reqs++;
1288 atomic_inc(&aio_req->pending_reqs);
1289
1290 req->r_callback = ceph_aio_complete_req;
1291 req->r_inode = inode;
1292 req->r_priv = aio_req;
Ilya Dryomov94e85772019-07-08 12:50:09 +02001293 list_add_tail(&req->r_private_item, &aio_req->osd_reqs);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001294
1295 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001296 continue;
1297 }
1298
1299 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +08001300 if (!ret)
1301 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1302
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001303 size = i_size_read(inode);
1304 if (!write) {
1305 if (ret == -ENOENT)
1306 ret = 0;
1307 if (ret >= 0 && ret < len && pos + ret < size) {
Ilya Dryomovfc218542018-05-04 16:57:31 +02001308 struct iov_iter i;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001309 int zlen = min_t(size_t, len - ret,
1310 size - pos - ret);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001311
David Howellsaa563d72018-10-20 00:57:56 +01001312 iov_iter_bvec(&i, READ, bvecs, num_pages, len);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001313 iov_iter_advance(&i, ret);
1314 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001315 ret += zlen;
1316 }
1317 if (ret >= 0)
1318 len = ret;
1319 }
1320
Ilya Dryomovfc218542018-05-04 16:57:31 +02001321 put_bvecs(bvecs, num_pages, should_dirty);
majianpenge8344e62013-09-12 13:54:26 +08001322 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001323 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +08001324 break;
Al Viro64c31312014-04-03 22:58:25 -04001325
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001326 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001327 if (!write && pos >= size)
1328 break;
1329
1330 if (write && pos > size) {
1331 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -04001332 ceph_check_caps(ceph_inode(inode),
1333 CHECK_CAPS_AUTHONLY,
1334 NULL);
1335 }
majianpenge8344e62013-09-12 13:54:26 +08001336 }
1337
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001338 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001339 LIST_HEAD(osd_reqs);
1340
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001341 if (aio_req->num_reqs == 0) {
1342 kfree(aio_req);
1343 return ret;
1344 }
1345
1346 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1347 CEPH_CAP_FILE_RD);
1348
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001349 list_splice(&aio_req->osd_reqs, &osd_reqs);
Jeff Layton6a817492019-11-13 09:56:06 -05001350 inode_dio_begin(inode);
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001351 while (!list_empty(&osd_reqs)) {
1352 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001353 struct ceph_osd_request,
Ilya Dryomov94e85772019-07-08 12:50:09 +02001354 r_private_item);
1355 list_del_init(&req->r_private_item);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001356 if (ret >= 0)
1357 ret = ceph_osdc_start_request(req->r_osdc,
1358 req, false);
1359 if (ret < 0) {
1360 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001361 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001362 }
1363 }
1364 return -EIOCBQUEUED;
1365 }
1366
1367 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1368 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +08001369 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +08001370 }
1371 return ret;
1372}
1373
majianpenge8344e62013-09-12 13:54:26 +08001374/*
1375 * Synchronous write, straight from __user pointer or user pages.
1376 *
1377 * If write spans object boundary, just do multiple writes. (For a
1378 * correct atomic write, we should e.g. take write locks on all
1379 * objects, rollback on failure, etc.)
1380 */
Yan, Zheng06fee302014-07-28 14:33:46 +08001381static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001382ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1383 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +08001384{
1385 struct file *file = iocb->ki_filp;
1386 struct inode *inode = file_inode(file);
1387 struct ceph_inode_info *ci = ceph_inode(inode);
1388 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001389 struct ceph_vino vino;
1390 struct ceph_osd_request *req;
1391 struct page **pages;
1392 u64 len;
1393 int num_pages;
1394 int written = 0;
1395 int flags;
majianpenge8344e62013-09-12 13:54:26 +08001396 int ret;
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001397 bool check_caps = false;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001398 struct timespec64 mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001399 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001400
1401 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1402 return -EROFS;
1403
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001404 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1405 file, pos, (unsigned)count, snapc, snapc->seq);
majianpenge8344e62013-09-12 13:54:26 +08001406
zhengbine450f4d2019-02-01 11:19:15 +00001407 ret = filemap_write_and_wait_range(inode->i_mapping,
1408 pos, pos + count - 1);
majianpenge8344e62013-09-12 13:54:26 +08001409 if (ret < 0)
1410 return ret;
1411
1412 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001413 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +00001414 (pos + count - 1) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001415 if (ret < 0)
1416 dout("invalidate_inode_pages2_range returned %d\n", ret);
1417
Yan, Zhengb178cf42017-08-16 17:27:05 +08001418 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001419
Al Viro4908b822014-04-03 23:09:01 -04001420 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001421 size_t left;
1422 int n;
1423
majianpenge8344e62013-09-12 13:54:26 +08001424 vino = ceph_vino(inode);
1425 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001426 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001427 CEPH_OSD_OP_WRITE, flags, snapc,
1428 ci->i_truncate_seq,
1429 ci->i_truncate_size,
1430 false);
1431 if (IS_ERR(req)) {
1432 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001433 break;
majianpenge8344e62013-09-12 13:54:26 +08001434 }
1435
1436 /*
1437 * write from beginning of first page,
1438 * regardless of io alignment
1439 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001440 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001441
Yan, Zheng687265e2015-06-13 17:27:05 +08001442 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001443 if (IS_ERR(pages)) {
1444 ret = PTR_ERR(pages);
1445 goto out;
1446 }
majianpenge8344e62013-09-12 13:54:26 +08001447
1448 left = len;
1449 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001450 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001451 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001452 if (ret != plen) {
1453 ret = -EFAULT;
1454 break;
1455 }
1456 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001457 }
1458
Sage Weil124e68e2009-10-06 11:31:08 -07001459 if (ret < 0) {
1460 ceph_release_page_vector(pages, num_pages);
1461 goto out;
1462 }
1463
majianpenge8344e62013-09-12 13:54:26 +08001464 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001465
majianpenge8344e62013-09-12 13:54:26 +08001466 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1467 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001468
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001469 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001470 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1471 if (!ret)
1472 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001473
1474out:
majianpenge8344e62013-09-12 13:54:26 +08001475 ceph_osdc_put_request(req);
Jeff Layton26544c622017-04-04 08:39:46 -04001476 if (ret != 0) {
1477 ceph_set_error_write(ci);
majianpenge8344e62013-09-12 13:54:26 +08001478 break;
Jeff Layton26544c622017-04-04 08:39:46 -04001479 }
1480
1481 ceph_clear_error_write(ci);
1482 pos += len;
1483 written += len;
1484 if (pos > i_size_read(inode)) {
1485 check_caps = ceph_inode_set_size(inode, pos);
1486 if (check_caps)
1487 ceph_check_caps(ceph_inode(inode),
1488 CHECK_CAPS_AUTHONLY,
1489 NULL);
1490 }
1491
majianpenge8344e62013-09-12 13:54:26 +08001492 }
1493
1494 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001495 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001496 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001497 }
1498 return ret;
1499}
1500
1501/*
1502 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1503 * Atomically grab references, so that those bits are not released
1504 * back to the MDS mid-read.
1505 *
1506 * Hmm, the sync read case isn't actually async... should it be?
1507 */
Al Viro36444242014-04-02 20:28:01 -04001508static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001509{
1510 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001511 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001512 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001513 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001514 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001515 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001516 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001517 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001518 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001519
Sage Weil6a026582010-02-09 14:04:02 -08001520again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001521 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1522 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1523
Jeff Laytona81bc312019-11-13 09:10:27 -05001524 if (iocb->ki_flags & IOCB_DIRECT)
1525 ceph_start_io_direct(inode);
1526 else
1527 ceph_start_io_read(inode);
1528
Sage Weil29625072010-05-27 10:40:43 -07001529 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1530 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1531 else
1532 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001533 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1,
1534 &got, &pinned_page);
Jeff Laytona81bc312019-11-13 09:10:27 -05001535 if (ret < 0) {
1536 if (iocb->ki_flags & IOCB_DIRECT)
1537 ceph_end_io_direct(inode);
1538 else
1539 ceph_end_io_read(inode);
majianpeng8eb4efb2013-09-26 14:42:17 +08001540 return ret;
Jeff Laytona81bc312019-11-13 09:10:27 -05001541 }
Sage Weil124e68e2009-10-06 11:31:08 -07001542
Sage Weil29625072010-05-27 10:40:43 -07001543 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001544 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001545 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001546
majianpeng8eb4efb2013-09-26 14:42:17 +08001547 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1548 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1549 ceph_cap_string(got));
1550
Yan, Zheng83701242014-11-14 22:36:18 +08001551 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001552 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1553 ret = ceph_direct_read_write(iocb, to,
1554 NULL, NULL);
1555 if (ret >= 0 && ret < len)
1556 retry_op = CHECK_EOF;
1557 } else {
1558 ret = ceph_sync_read(iocb, to, &retry_op);
1559 }
Yan, Zheng83701242014-11-14 22:36:18 +08001560 } else {
1561 retry_op = READ_INLINE;
1562 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001563 } else {
Yan, Zheng5d988302017-12-15 11:15:36 +08001564 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
majianpeng8eb4efb2013-09-26 14:42:17 +08001565 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001566 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001567 ceph_cap_string(got));
Yan, Zheng5d988302017-12-15 11:15:36 +08001568 ceph_add_rw_context(fi, &rw_ctx);
Al Viro36444242014-04-02 20:28:01 -04001569 ret = generic_file_read_iter(iocb, to);
Yan, Zheng5d988302017-12-15 11:15:36 +08001570 ceph_del_rw_context(fi, &rw_ctx);
majianpeng8eb4efb2013-09-26 14:42:17 +08001571 }
Jeff Laytona81bc312019-11-13 09:10:27 -05001572
Sage Weil124e68e2009-10-06 11:31:08 -07001573 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1574 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001575 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001576 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001577 pinned_page = NULL;
1578 }
Sage Weil124e68e2009-10-06 11:31:08 -07001579 ceph_put_cap_refs(ci, got);
Jeff Laytona81bc312019-11-13 09:10:27 -05001580
1581 if (iocb->ki_flags & IOCB_DIRECT)
1582 ceph_end_io_direct(inode);
1583 else
1584 ceph_end_io_read(inode);
1585
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001586 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001587 int statret;
1588 struct page *page = NULL;
1589 loff_t i_size;
1590 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001591 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001592 if (!page)
1593 return -ENOMEM;
1594 }
Sage Weil6a026582010-02-09 14:04:02 -08001595
Yan, Zheng83701242014-11-14 22:36:18 +08001596 statret = __ceph_do_getattr(inode, page,
1597 CEPH_STAT_CAP_INLINE_DATA, !!page);
1598 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001599 if (page)
1600 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001601 if (statret == -ENODATA) {
1602 BUG_ON(retry_op != READ_INLINE);
1603 goto again;
1604 }
1605 return statret;
1606 }
1607
1608 i_size = i_size_read(inode);
1609 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001610 BUG_ON(ret > 0 || read > 0);
1611 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001612 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001613 loff_t end = min_t(loff_t, i_size,
1614 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001615 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001616 if (statret < end)
1617 zero_user_segment(page, statret, end);
1618 ret = copy_page_to_iter(page,
1619 iocb->ki_pos & ~PAGE_MASK,
1620 end - iocb->ki_pos, to);
1621 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001622 read += ret;
1623 }
1624 if (iocb->ki_pos < i_size && read < len) {
1625 size_t zlen = min_t(size_t, len - read,
1626 i_size - iocb->ki_pos);
1627 ret = iov_iter_zero(zlen, to);
1628 iocb->ki_pos += ret;
1629 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001630 }
1631 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001632 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001633 }
Sage Weil6a026582010-02-09 14:04:02 -08001634
1635 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001636 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001637 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001638 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001639 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001640
Sage Weil6a026582010-02-09 14:04:02 -08001641 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001642 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001643 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001644 goto again;
1645 }
1646 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001647
Sage Weil6a026582010-02-09 14:04:02 -08001648 if (ret >= 0)
1649 ret += read;
1650
Sage Weil124e68e2009-10-06 11:31:08 -07001651 return ret;
1652}
1653
1654/*
1655 * Take cap references to avoid releasing caps to MDS mid-write.
1656 *
1657 * If we are synchronous, and write with an old snap context, the OSD
1658 * may return EOLDSNAPC. In that case, retry the write.. _after_
1659 * dropping our cap refs and allowing the pending snap to logically
1660 * complete _before_ this write occurs.
1661 *
1662 * If we are near ENOSPC, write synchronously.
1663 */
Al Viro4908b822014-04-03 23:09:01 -04001664static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001665{
1666 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001667 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001668 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001669 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001670 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Ilya Dryomov76142092020-03-09 12:03:14 +01001671 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001672 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001673 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001674 int err, want, got;
Xiubo Li8e4473b2020-02-03 21:28:25 -05001675 bool direct_lock = false;
Ilya Dryomov76142092020-03-09 12:03:14 +01001676 u32 map_flags;
1677 u64 pool_flags;
Al Viro3309dd02015-04-09 12:55:47 -04001678 loff_t pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001679 loff_t limit = max(i_size_read(inode), fsc->max_file_size);
Sage Weil124e68e2009-10-06 11:31:08 -07001680
1681 if (ceph_snap(inode) != CEPH_NOSNAP)
1682 return -EROFS;
1683
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001684 prealloc_cf = ceph_alloc_cap_flush();
1685 if (!prealloc_cf)
1686 return -ENOMEM;
1687
Xiubo Li8e4473b2020-02-03 21:28:25 -05001688 if ((iocb->ki_flags & (IOCB_DIRECT | IOCB_APPEND)) == IOCB_DIRECT)
1689 direct_lock = true;
1690
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001691retry_snap:
Xiubo Li8e4473b2020-02-03 21:28:25 -05001692 if (direct_lock)
Jeff Layton321fe132019-08-02 13:15:39 -04001693 ceph_start_io_direct(inode);
1694 else
1695 ceph_start_io_write(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001696
Yan, Zheng03d254e2013-04-12 16:11:13 +08001697 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001698 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001699
Yan, Zheng55b0b312015-09-07 11:35:01 +08001700 if (iocb->ki_flags & IOCB_APPEND) {
1701 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1702 if (err < 0)
1703 goto out;
1704 }
1705
Al Viro3309dd02015-04-09 12:55:47 -04001706 err = generic_write_checks(iocb, from);
1707 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001708 goto out;
1709
Al Viro3309dd02015-04-09 12:55:47 -04001710 pos = iocb->ki_pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001711 if (unlikely(pos >= limit)) {
1712 err = -EFBIG;
1713 goto out;
1714 } else {
1715 iov_iter_truncate(from, limit - pos);
1716 }
1717
Al Viro3309dd02015-04-09 12:55:47 -04001718 count = iov_iter_count(from);
Luis Henriques2b838452018-01-05 10:47:21 +00001719 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1720 err = -EDQUOT;
1721 goto out;
1722 }
1723
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001724 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001725 if (err)
1726 goto out;
1727
1728 err = file_update_time(file);
1729 if (err)
1730 goto out;
1731
Jeff Layton5c308352019-06-06 08:57:27 -04001732 inode_inc_iversion_raw(inode);
1733
Yan, Zheng28127bd2014-11-14 22:38:29 +08001734 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1735 err = ceph_uninline_data(file, NULL);
1736 if (err < 0)
1737 goto out;
1738 }
1739
Ilya Dryomov76142092020-03-09 12:03:14 +01001740 down_read(&osdc->lock);
1741 map_flags = osdc->osdmap->flags;
1742 pool_flags = ceph_pg_pool_flags(osdc->osdmap, ci->i_layout.pool_id);
1743 up_read(&osdc->lock);
1744 if ((map_flags & CEPH_OSDMAP_FULL) ||
1745 (pool_flags & CEPH_POOL_FLAG_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001746 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001747 goto out;
1748 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001749
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001750 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001751 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001752 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1753 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1754 else
1755 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001756 got = 0;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001757 err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count,
Yan, Zheng3738daa2014-11-14 22:10:07 +08001758 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001759 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001760 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001761
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001762 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001763 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001764
1765 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Jeff Layton26544c622017-04-04 08:39:46 -04001766 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1767 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001768 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001769 struct iov_iter data;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001770
1771 spin_lock(&ci->i_ceph_lock);
1772 if (__ceph_have_pending_cap_snap(ci)) {
1773 struct ceph_cap_snap *capsnap =
1774 list_last_entry(&ci->i_cap_snaps,
1775 struct ceph_cap_snap,
1776 ci_item);
1777 snapc = ceph_get_snap_context(capsnap->context);
1778 } else {
1779 BUG_ON(!ci->i_head_snapc);
1780 snapc = ceph_get_snap_context(ci->i_head_snapc);
1781 }
1782 spin_unlock(&ci->i_ceph_lock);
1783
Al Viro4908b822014-04-03 23:09:01 -04001784 /* we might need to revert back to that point */
1785 data = *from;
Xiubo Li8e4473b2020-02-03 21:28:25 -05001786 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001787 written = ceph_direct_read_write(iocb, &data, snapc,
1788 &prealloc_cf);
Xiubo Li8e4473b2020-02-03 21:28:25 -05001789 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001790 written = ceph_sync_write(iocb, &data, pos, snapc);
Xiubo Li8e4473b2020-02-03 21:28:25 -05001791 if (direct_lock)
1792 ceph_end_io_direct(inode);
1793 else
Jeff Layton321fe132019-08-02 13:15:39 -04001794 ceph_end_io_write(inode);
Al Viro4908b822014-04-03 23:09:01 -04001795 if (written > 0)
1796 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001797 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001798 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001799 /*
1800 * No need to acquire the i_truncate_mutex. Because
1801 * the MDS revokes Fwb caps before sending truncate
1802 * message to us. We can't get Fwb cap while there
1803 * are pending vmtruncate. So write and vmtruncate
1804 * can not run at the same time
1805 */
Al Viro4908b822014-04-03 23:09:01 -04001806 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001807 if (likely(written >= 0))
1808 iocb->ki_pos = pos + written;
Jeff Layton321fe132019-08-02 13:15:39 -04001809 ceph_end_io_write(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001810 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001811
Yan, Zheng03d254e2013-04-12 16:11:13 +08001812 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001813 int dirty;
Luis Henriques1ab302a2018-01-05 10:47:22 +00001814
Sage Weilbe655592011-11-30 09:47:09 -08001815 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001816 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001817 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1818 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001819 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001820 if (dirty)
1821 __mark_inode_dirty(inode, dirty);
Luis Henriques1ab302a2018-01-05 10:47:22 +00001822 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1823 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
Sage Weil124e68e2009-10-06 11:31:08 -07001824 }
Sage Weil7971bd92013-05-01 21:15:58 -07001825
Sage Weil124e68e2009-10-06 11:31:08 -07001826 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001827 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001828 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001829 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001830
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001831 if (written == -EOLDSNAPC) {
1832 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1833 inode, ceph_vinop(inode), pos, (unsigned)count);
1834 goto retry_snap;
1835 }
1836
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001837 if (written >= 0) {
Ilya Dryomov76142092020-03-09 12:03:14 +01001838 if ((map_flags & CEPH_OSDMAP_NEARFULL) ||
1839 (pool_flags & CEPH_POOL_FLAG_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001840 iocb->ki_flags |= IOCB_DSYNC;
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001841 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001842 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001843
Sage Weil2f75e9e2013-08-09 09:57:58 -07001844 goto out_unlocked;
Sage Weil2f75e9e2013-08-09 09:57:58 -07001845out:
Xiubo Li8e4473b2020-02-03 21:28:25 -05001846 if (direct_lock)
Jeff Layton321fe132019-08-02 13:15:39 -04001847 ceph_end_io_direct(inode);
1848 else
1849 ceph_end_io_write(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001850out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001851 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001852 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001853 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001854}
1855
1856/*
1857 * llseek. be sure to verify file size on SEEK_END.
1858 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001859static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001860{
1861 struct inode *inode = file->f_mapping->host;
Chengguang Xu9da12e32018-07-19 22:15:27 +08001862 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zheng99c88e62015-12-30 11:32:46 +08001863 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001864 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001865
Al Viro59551022016-01-22 15:40:57 -05001866 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001867
Andrew Morton965c8e52012-12-17 15:59:39 -08001868 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001869 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001870 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001871 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001872 }
1873
Yan, Zheng99c88e62015-12-30 11:32:46 +08001874 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001875 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001876 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001877 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001878 break;
1879 case SEEK_CUR:
1880 /*
1881 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1882 * position-querying operation. Avoid rewriting the "same"
1883 * f_pos value back to the file because a concurrent read(),
1884 * write() or lseek() might have altered it
1885 */
1886 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001887 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001888 goto out;
1889 }
1890 offset += file->f_pos;
1891 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001892 case SEEK_DATA:
Luis Henriques397f2382017-07-28 11:56:40 +01001893 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001894 ret = -ENXIO;
1895 goto out;
1896 }
1897 break;
1898 case SEEK_HOLE:
Luis Henriques397f2382017-07-28 11:56:40 +01001899 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001900 ret = -ENXIO;
1901 goto out;
1902 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001903 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001904 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001905 }
1906
Chengguang Xu9da12e32018-07-19 22:15:27 +08001907 ret = vfs_setpos(file, offset, max(i_size, fsc->max_file_size));
Sage Weil124e68e2009-10-06 11:31:08 -07001908
1909out:
Al Viro59551022016-01-22 15:40:57 -05001910 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001911 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001912}
1913
Li Wangad7a60d2013-08-15 11:51:44 +08001914static inline void ceph_zero_partial_page(
1915 struct inode *inode, loff_t offset, unsigned size)
1916{
1917 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001918 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001919
1920 page = find_lock_page(inode->i_mapping, index);
1921 if (page) {
1922 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001923 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001924 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001925 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001926 }
1927}
1928
1929static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1930 loff_t length)
1931{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001932 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001933 if (offset < nearly) {
1934 loff_t size = nearly - offset;
1935 if (length < size)
1936 size = length;
1937 ceph_zero_partial_page(inode, offset, size);
1938 offset += size;
1939 length -= size;
1940 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001941 if (length >= PAGE_SIZE) {
1942 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001943 truncate_pagecache_range(inode, offset, offset + size - 1);
1944 offset += size;
1945 length -= size;
1946 }
1947 if (length)
1948 ceph_zero_partial_page(inode, offset, length);
1949}
1950
1951static int ceph_zero_partial_object(struct inode *inode,
1952 loff_t offset, loff_t *length)
1953{
1954 struct ceph_inode_info *ci = ceph_inode(inode);
1955 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1956 struct ceph_osd_request *req;
1957 int ret = 0;
1958 loff_t zero = 0;
1959 int op;
1960
1961 if (!length) {
1962 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1963 length = &zero;
1964 } else {
1965 op = CEPH_OSD_OP_ZERO;
1966 }
1967
1968 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1969 ceph_vino(inode),
1970 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001971 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001972 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001973 NULL, 0, 0, false);
1974 if (IS_ERR(req)) {
1975 ret = PTR_ERR(req);
1976 goto out;
1977 }
1978
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001979 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001980 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1981 if (!ret) {
1982 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1983 if (ret == -ENOENT)
1984 ret = 0;
1985 }
1986 ceph_osdc_put_request(req);
1987
1988out:
1989 return ret;
1990}
1991
1992static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1993{
1994 int ret = 0;
1995 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001996 s32 stripe_unit = ci->i_layout.stripe_unit;
1997 s32 stripe_count = ci->i_layout.stripe_count;
1998 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001999 u64 object_set_size = object_size * stripe_count;
2000 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08002001
Sage Weilb314a902013-08-27 12:15:16 -07002002 /* round offset up to next period boundary */
2003 nearly = offset + object_set_size - 1;
2004 t = nearly;
2005 nearly -= do_div(t, object_set_size);
2006
Li Wangad7a60d2013-08-15 11:51:44 +08002007 while (length && offset < nearly) {
2008 loff_t size = length;
2009 ret = ceph_zero_partial_object(inode, offset, &size);
2010 if (ret < 0)
2011 return ret;
2012 offset += size;
2013 length -= size;
2014 }
2015 while (length >= object_set_size) {
2016 int i;
2017 loff_t pos = offset;
2018 for (i = 0; i < stripe_count; ++i) {
2019 ret = ceph_zero_partial_object(inode, pos, NULL);
2020 if (ret < 0)
2021 return ret;
2022 pos += stripe_unit;
2023 }
2024 offset += object_set_size;
2025 length -= object_set_size;
2026 }
2027 while (length) {
2028 loff_t size = length;
2029 ret = ceph_zero_partial_object(inode, offset, &size);
2030 if (ret < 0)
2031 return ret;
2032 offset += size;
2033 length -= size;
2034 }
2035 return ret;
2036}
2037
2038static long ceph_fallocate(struct file *file, int mode,
2039 loff_t offset, loff_t length)
2040{
2041 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08002042 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08002043 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002044 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08002045 int want, got = 0;
2046 int dirty;
2047 int ret = 0;
2048 loff_t endoff = 0;
2049 loff_t size;
2050
Luis Henriquesbddff632018-10-09 18:54:28 +01002051 if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
Yan, Zheng494d77b2014-06-26 15:25:17 +08002052 return -EOPNOTSUPP;
2053
Li Wangad7a60d2013-08-15 11:51:44 +08002054 if (!S_ISREG(inode->i_mode))
2055 return -EOPNOTSUPP;
2056
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002057 prealloc_cf = ceph_alloc_cap_flush();
2058 if (!prealloc_cf)
2059 return -ENOMEM;
2060
Al Viro59551022016-01-22 15:40:57 -05002061 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08002062
2063 if (ceph_snap(inode) != CEPH_NOSNAP) {
2064 ret = -EROFS;
2065 goto unlock;
2066 }
2067
Yan, Zheng28127bd2014-11-14 22:38:29 +08002068 if (ci->i_inline_version != CEPH_INLINE_NONE) {
2069 ret = ceph_uninline_data(file, NULL);
2070 if (ret < 0)
2071 goto unlock;
2072 }
2073
Li Wangad7a60d2013-08-15 11:51:44 +08002074 size = i_size_read(inode);
Luis Henriquesbddff632018-10-09 18:54:28 +01002075
2076 /* Are we punching a hole beyond EOF? */
2077 if (offset >= size)
2078 goto unlock;
2079 if ((offset + length) > size)
2080 length = size - offset;
Li Wangad7a60d2013-08-15 11:51:44 +08002081
2082 if (fi->fmode & CEPH_FILE_MODE_LAZY)
2083 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
2084 else
2085 want = CEPH_CAP_FILE_BUFFER;
2086
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002087 ret = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08002088 if (ret < 0)
2089 goto unlock;
2090
Luis Henriquesbddff632018-10-09 18:54:28 +01002091 ceph_zero_pagecache_range(inode, offset, length);
2092 ret = ceph_zero_objects(inode, offset, length);
Li Wangad7a60d2013-08-15 11:51:44 +08002093
2094 if (!ret) {
2095 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08002096 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002097 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
2098 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08002099 spin_unlock(&ci->i_ceph_lock);
2100 if (dirty)
2101 __mark_inode_dirty(inode, dirty);
2102 }
2103
2104 ceph_put_cap_refs(ci, got);
2105unlock:
Al Viro59551022016-01-22 15:40:57 -05002106 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08002107 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08002108 return ret;
2109}
2110
Luis Henriques503f82a2018-10-15 16:45:59 +01002111/*
2112 * This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
2113 * src_ci. Two attempts are made to obtain both caps, and an error is return if
2114 * this fails; zero is returned on success.
2115 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002116static int get_rd_wr_caps(struct file *src_filp, int *src_got,
2117 struct file *dst_filp,
Luis Henriques503f82a2018-10-15 16:45:59 +01002118 loff_t dst_endoff, int *dst_got)
2119{
2120 int ret = 0;
2121 bool retrying = false;
2122
2123retry_caps:
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002124 ret = ceph_get_caps(dst_filp, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
Luis Henriques503f82a2018-10-15 16:45:59 +01002125 dst_endoff, dst_got, NULL);
2126 if (ret < 0)
2127 return ret;
2128
2129 /*
2130 * Since we're already holding the FILE_WR capability for the dst file,
2131 * we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
2132 * retry dance instead to try to get both capabilities.
2133 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002134 ret = ceph_try_get_caps(file_inode(src_filp),
2135 CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
Luis Henriques503f82a2018-10-15 16:45:59 +01002136 false, src_got);
2137 if (ret <= 0) {
2138 /* Start by dropping dst_ci caps and getting src_ci caps */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002139 ceph_put_cap_refs(ceph_inode(file_inode(dst_filp)), *dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01002140 if (retrying) {
2141 if (!ret)
2142 /* ceph_try_get_caps masks EAGAIN */
2143 ret = -EAGAIN;
2144 return ret;
2145 }
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002146 ret = ceph_get_caps(src_filp, CEPH_CAP_FILE_RD,
2147 CEPH_CAP_FILE_SHARED, -1, src_got, NULL);
Luis Henriques503f82a2018-10-15 16:45:59 +01002148 if (ret < 0)
2149 return ret;
2150 /*... drop src_ci caps too, and retry */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002151 ceph_put_cap_refs(ceph_inode(file_inode(src_filp)), *src_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01002152 retrying = true;
2153 goto retry_caps;
2154 }
2155 return ret;
2156}
2157
2158static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
2159 struct ceph_inode_info *dst_ci, int dst_got)
2160{
2161 ceph_put_cap_refs(src_ci, src_got);
2162 ceph_put_cap_refs(dst_ci, dst_got);
2163}
2164
2165/*
2166 * This function does several size-related checks, returning an error if:
2167 * - source file is smaller than off+len
2168 * - destination file size is not OK (inode_newsize_ok())
2169 * - max bytes quotas is exceeded
2170 */
2171static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
2172 loff_t src_off, loff_t dst_off, size_t len)
2173{
2174 loff_t size, endoff;
2175
2176 size = i_size_read(src_inode);
2177 /*
2178 * Don't copy beyond source file EOF. Instead of simply setting length
2179 * to (size - src_off), just drop to VFS default implementation, as the
2180 * local i_size may be stale due to other clients writing to the source
2181 * inode.
2182 */
2183 if (src_off + len > size) {
2184 dout("Copy beyond EOF (%llu + %zu > %llu)\n",
2185 src_off, len, size);
2186 return -EOPNOTSUPP;
2187 }
2188 size = i_size_read(dst_inode);
2189
2190 endoff = dst_off + len;
2191 if (inode_newsize_ok(dst_inode, endoff))
2192 return -EOPNOTSUPP;
2193
2194 if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
2195 return -EDQUOT;
2196
2197 return 0;
2198}
2199
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002200static ssize_t ceph_do_objects_copy(struct ceph_inode_info *src_ci, u64 *src_off,
2201 struct ceph_inode_info *dst_ci, u64 *dst_off,
2202 struct ceph_fs_client *fsc,
2203 size_t len, unsigned int flags)
2204{
2205 struct ceph_object_locator src_oloc, dst_oloc;
2206 struct ceph_object_id src_oid, dst_oid;
2207 size_t bytes = 0;
2208 u64 src_objnum, src_objoff, dst_objnum, dst_objoff;
2209 u32 src_objlen, dst_objlen;
2210 u32 object_size = src_ci->i_layout.object_size;
2211 int ret;
2212
2213 src_oloc.pool = src_ci->i_layout.pool_id;
2214 src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
2215 dst_oloc.pool = dst_ci->i_layout.pool_id;
2216 dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
2217
2218 while (len >= object_size) {
2219 ceph_calc_file_object_mapping(&src_ci->i_layout, *src_off,
2220 object_size, &src_objnum,
2221 &src_objoff, &src_objlen);
2222 ceph_calc_file_object_mapping(&dst_ci->i_layout, *dst_off,
2223 object_size, &dst_objnum,
2224 &dst_objoff, &dst_objlen);
2225 ceph_oid_init(&src_oid);
2226 ceph_oid_printf(&src_oid, "%llx.%08llx",
2227 src_ci->i_vino.ino, src_objnum);
2228 ceph_oid_init(&dst_oid);
2229 ceph_oid_printf(&dst_oid, "%llx.%08llx",
2230 dst_ci->i_vino.ino, dst_objnum);
2231 /* Do an object remote copy */
2232 ret = ceph_osdc_copy_from(&fsc->client->osdc,
2233 src_ci->i_vino.snap, 0,
2234 &src_oid, &src_oloc,
2235 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2236 CEPH_OSD_OP_FLAG_FADVISE_NOCACHE,
2237 &dst_oid, &dst_oloc,
2238 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2239 CEPH_OSD_OP_FLAG_FADVISE_DONTNEED,
2240 dst_ci->i_truncate_seq,
2241 dst_ci->i_truncate_size,
2242 CEPH_OSD_COPY_FROM_FLAG_TRUNCATE_SEQ);
2243 if (ret) {
2244 if (ret == -EOPNOTSUPP) {
2245 fsc->have_copy_from2 = false;
2246 pr_notice("OSDs don't support copy-from2; disabling copy offload\n");
2247 }
2248 dout("ceph_osdc_copy_from returned %d\n", ret);
2249 if (!bytes)
2250 bytes = ret;
2251 goto out;
2252 }
2253 len -= object_size;
2254 bytes += object_size;
2255 *src_off += object_size;
2256 *dst_off += object_size;
2257 }
2258
2259out:
2260 ceph_oloc_destroy(&src_oloc);
2261 ceph_oloc_destroy(&dst_oloc);
2262 return bytes;
2263}
2264
Dave Chinner64bf5ff2019-06-05 08:04:47 -07002265static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off,
2266 struct file *dst_file, loff_t dst_off,
2267 size_t len, unsigned int flags)
Luis Henriques503f82a2018-10-15 16:45:59 +01002268{
2269 struct inode *src_inode = file_inode(src_file);
2270 struct inode *dst_inode = file_inode(dst_file);
2271 struct ceph_inode_info *src_ci = ceph_inode(src_inode);
2272 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
2273 struct ceph_cap_flush *prealloc_cf;
Luis Henriques6fd4e632019-09-09 16:48:54 +01002274 struct ceph_fs_client *src_fsc = ceph_inode_to_client(src_inode);
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002275 loff_t size;
2276 ssize_t ret = -EIO, bytes;
Luis Henriques503f82a2018-10-15 16:45:59 +01002277 u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002278 u32 src_objlen, dst_objlen;
Luis Henriques503f82a2018-10-15 16:45:59 +01002279 int src_got = 0, dst_got = 0, err, dirty;
Luis Henriques503f82a2018-10-15 16:45:59 +01002280
Luis Henriques6fd4e632019-09-09 16:48:54 +01002281 if (src_inode->i_sb != dst_inode->i_sb) {
2282 struct ceph_fs_client *dst_fsc = ceph_inode_to_client(dst_inode);
2283
2284 if (ceph_fsid_compare(&src_fsc->client->fsid,
2285 &dst_fsc->client->fsid)) {
2286 dout("Copying files across clusters: src: %pU dst: %pU\n",
2287 &src_fsc->client->fsid, &dst_fsc->client->fsid);
2288 return -EXDEV;
2289 }
2290 }
Luis Henriques503f82a2018-10-15 16:45:59 +01002291 if (ceph_snap(dst_inode) != CEPH_NOSNAP)
2292 return -EROFS;
2293
2294 /*
2295 * Some of the checks below will return -EOPNOTSUPP, which will force a
2296 * fallback to the default VFS copy_file_range implementation. This is
2297 * desirable in several cases (for ex, the 'len' is smaller than the
2298 * size of the objects, or in cases where that would be more
2299 * efficient).
2300 */
2301
Luis Henriques6fd4e632019-09-09 16:48:54 +01002302 if (ceph_test_mount_opt(src_fsc, NOCOPYFROM))
Luis Henriquesea4cdc52018-10-15 16:46:00 +01002303 return -EOPNOTSUPP;
2304
Luis Henriques78beb0f2020-01-08 10:03:53 +00002305 if (!src_fsc->have_copy_from2)
2306 return -EOPNOTSUPP;
2307
Luis Henriquesa3a08192019-10-31 11:49:39 +00002308 /*
2309 * Striped file layouts require that we copy partial objects, but the
2310 * OSD copy-from operation only supports full-object copies. Limit
2311 * this to non-striped file layouts for now.
2312 */
Luis Henriques503f82a2018-10-15 16:45:59 +01002313 if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
Luis Henriquesa3a08192019-10-31 11:49:39 +00002314 (src_ci->i_layout.stripe_count != 1) ||
2315 (dst_ci->i_layout.stripe_count != 1) ||
2316 (src_ci->i_layout.object_size != dst_ci->i_layout.object_size)) {
2317 dout("Invalid src/dst files layout\n");
Luis Henriques503f82a2018-10-15 16:45:59 +01002318 return -EOPNOTSUPP;
Luis Henriquesa3a08192019-10-31 11:49:39 +00002319 }
Luis Henriques503f82a2018-10-15 16:45:59 +01002320
2321 if (len < src_ci->i_layout.object_size)
2322 return -EOPNOTSUPP; /* no remote copy will be done */
2323
2324 prealloc_cf = ceph_alloc_cap_flush();
2325 if (!prealloc_cf)
2326 return -ENOMEM;
2327
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00002328 /* Start by sync'ing the source and destination files */
Luis Henriques503f82a2018-10-15 16:45:59 +01002329 ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00002330 if (ret < 0) {
2331 dout("failed to write src file (%zd)\n", ret);
Luis Henriques503f82a2018-10-15 16:45:59 +01002332 goto out;
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00002333 }
2334 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
2335 if (ret < 0) {
2336 dout("failed to write dst file (%zd)\n", ret);
2337 goto out;
2338 }
Luis Henriques503f82a2018-10-15 16:45:59 +01002339
2340 /*
2341 * We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
2342 * clients may have dirty data in their caches. And OSDs know nothing
2343 * about caps, so they can't safely do the remote object copies.
2344 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002345 err = get_rd_wr_caps(src_file, &src_got,
2346 dst_file, (dst_off + len), &dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01002347 if (err < 0) {
2348 dout("get_rd_wr_caps returned %d\n", err);
2349 ret = -EOPNOTSUPP;
2350 goto out;
2351 }
2352
2353 ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
2354 if (ret < 0)
2355 goto out_caps;
2356
Luis Henriques503f82a2018-10-15 16:45:59 +01002357 /* Drop dst file cached pages */
2358 ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
2359 dst_off >> PAGE_SHIFT,
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002360 (dst_off + len) >> PAGE_SHIFT);
Luis Henriques503f82a2018-10-15 16:45:59 +01002361 if (ret < 0) {
2362 dout("Failed to invalidate inode pages (%zd)\n", ret);
2363 ret = 0; /* XXX */
2364 }
Luis Henriques503f82a2018-10-15 16:45:59 +01002365 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
2366 src_ci->i_layout.object_size,
2367 &src_objnum, &src_objoff, &src_objlen);
2368 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2369 dst_ci->i_layout.object_size,
2370 &dst_objnum, &dst_objoff, &dst_objlen);
2371 /* object-level offsets need to the same */
2372 if (src_objoff != dst_objoff) {
2373 ret = -EOPNOTSUPP;
2374 goto out_caps;
2375 }
2376
2377 /*
2378 * Do a manual copy if the object offset isn't object aligned.
2379 * 'src_objlen' contains the bytes left until the end of the object,
2380 * starting at the src_off
2381 */
2382 if (src_objoff) {
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002383 dout("Initial partial copy of %u bytes\n", src_objlen);
2384
Luis Henriques503f82a2018-10-15 16:45:59 +01002385 /*
2386 * we need to temporarily drop all caps as we'll be calling
2387 * {read,write}_iter, which will get caps again.
2388 */
2389 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2390 ret = do_splice_direct(src_file, &src_off, dst_file,
2391 &dst_off, src_objlen, flags);
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002392 /* Abort on short copies or on error */
2393 if (ret < src_objlen) {
2394 dout("Failed partial copy (%zd)\n", ret);
Luis Henriques503f82a2018-10-15 16:45:59 +01002395 goto out;
2396 }
2397 len -= ret;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002398 err = get_rd_wr_caps(src_file, &src_got,
2399 dst_file, (dst_off + len), &dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01002400 if (err < 0)
2401 goto out;
2402 err = is_file_size_ok(src_inode, dst_inode,
2403 src_off, dst_off, len);
2404 if (err < 0)
2405 goto out_caps;
2406 }
Luis Henriques503f82a2018-10-15 16:45:59 +01002407
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002408 size = i_size_read(dst_inode);
2409 bytes = ceph_do_objects_copy(src_ci, &src_off, dst_ci, &dst_off,
2410 src_fsc, len, flags);
2411 if (bytes <= 0) {
2412 if (!ret)
2413 ret = bytes;
2414 goto out_caps;
2415 }
2416 dout("Copied %zu bytes out of %zu\n", bytes, len);
2417 len -= bytes;
2418 ret += bytes;
Luis Henriques503f82a2018-10-15 16:45:59 +01002419
2420 file_update_time(dst_file);
Jeff Layton5c308352019-06-06 08:57:27 -04002421 inode_inc_iversion_raw(dst_inode);
2422
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002423 if (dst_off > size) {
Luis Henriques503f82a2018-10-15 16:45:59 +01002424 int caps_flags = 0;
2425
2426 /* Let the MDS know about dst file size change */
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002427 if (ceph_quota_is_max_bytes_approaching(dst_inode, dst_off))
Luis Henriques503f82a2018-10-15 16:45:59 +01002428 caps_flags |= CHECK_CAPS_NODELAY;
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002429 if (ceph_inode_set_size(dst_inode, dst_off))
Luis Henriques503f82a2018-10-15 16:45:59 +01002430 caps_flags |= CHECK_CAPS_AUTHONLY;
2431 if (caps_flags)
2432 ceph_check_caps(dst_ci, caps_flags, NULL);
2433 }
2434 /* Mark Fw dirty */
2435 spin_lock(&dst_ci->i_ceph_lock);
2436 dst_ci->i_inline_version = CEPH_INLINE_NONE;
2437 dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2438 spin_unlock(&dst_ci->i_ceph_lock);
2439 if (dirty)
2440 __mark_inode_dirty(dst_inode, dirty);
2441
2442out_caps:
2443 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2444
Luis Henriques1b0c3b92020-02-24 13:44:32 +00002445 /*
2446 * Do the final manual copy if we still have some bytes left, unless
2447 * there were errors in remote object copies (len >= object_size).
2448 */
2449 if (len && (len < src_ci->i_layout.object_size)) {
2450 dout("Final partial copy of %zu bytes\n", len);
2451 bytes = do_splice_direct(src_file, &src_off, dst_file,
2452 &dst_off, len, flags);
2453 if (bytes > 0)
2454 ret += bytes;
2455 else
2456 dout("Failed partial copy (%zd)\n", bytes);
Luis Henriques503f82a2018-10-15 16:45:59 +01002457 }
2458
2459out:
2460 ceph_free_cap_flush(prealloc_cf);
2461
2462 return ret;
2463}
2464
Dave Chinner64bf5ff2019-06-05 08:04:47 -07002465static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
2466 struct file *dst_file, loff_t dst_off,
2467 size_t len, unsigned int flags)
2468{
2469 ssize_t ret;
2470
2471 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off,
2472 len, flags);
2473
Amir Goldstein5dae2222019-06-05 08:04:50 -07002474 if (ret == -EOPNOTSUPP || ret == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07002475 ret = generic_copy_file_range(src_file, src_off, dst_file,
2476 dst_off, len, flags);
2477 return ret;
2478}
2479
Sage Weil124e68e2009-10-06 11:31:08 -07002480const struct file_operations ceph_file_fops = {
2481 .open = ceph_open,
2482 .release = ceph_release,
2483 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04002484 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04002485 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07002486 .mmap = ceph_mmap,
2487 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07002488 .lock = ceph_lock,
2489 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08002490 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04002491 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07002492 .unlocked_ioctl = ceph_ioctl,
Arnd Bergmann18bd6ca2018-09-11 20:47:23 +02002493 .compat_ioctl = compat_ptr_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08002494 .fallocate = ceph_fallocate,
Luis Henriques503f82a2018-10-15 16:45:59 +01002495 .copy_file_range = ceph_copy_file_range,
Sage Weil124e68e2009-10-06 11:31:08 -07002496};