blob: 5182e1a49d6fa3cbf3ee35d6dd6fc1cabfd1a9ff [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"
Sage Weil124e68e2009-10-06 11:31:08 -070018
Alexander Graff775ff72017-04-27 18:34:00 +020019static __le32 ceph_flags_sys2wire(u32 flags)
20{
21 u32 wire_flags = 0;
22
23 switch (flags & O_ACCMODE) {
24 case O_RDONLY:
25 wire_flags |= CEPH_O_RDONLY;
26 break;
27 case O_WRONLY:
28 wire_flags |= CEPH_O_WRONLY;
29 break;
30 case O_RDWR:
31 wire_flags |= CEPH_O_RDWR;
32 break;
33 }
34
Chengguang Xu51b10f32018-03-09 15:12:40 +080035 flags &= ~O_ACCMODE;
36
Alexander Graff775ff72017-04-27 18:34:00 +020037#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
38
39 ceph_sys2wire(O_CREAT);
40 ceph_sys2wire(O_EXCL);
41 ceph_sys2wire(O_TRUNC);
42 ceph_sys2wire(O_DIRECTORY);
43 ceph_sys2wire(O_NOFOLLOW);
44
45#undef ceph_sys2wire
46
47 if (flags)
Chengguang Xu4c069a52018-01-30 16:29:17 +080048 dout("unused open flags: %x\n", flags);
Alexander Graff775ff72017-04-27 18:34:00 +020049
50 return cpu_to_le32(wire_flags);
51}
52
Sage Weil124e68e2009-10-06 11:31:08 -070053/*
54 * Ceph file operations
55 *
56 * Implement basic open/close functionality, and implement
57 * read/write.
58 *
59 * We implement three modes of file I/O:
60 * - buffered uses the generic_file_aio_{read,write} helpers
61 *
62 * - synchronous is used when there is multi-client read/write
63 * sharing, avoids the page cache, and synchronously waits for an
64 * ack from the OSD.
65 *
66 * - direct io takes the variant of the sync path that references
67 * user pages directly.
68 *
69 * fsync() flushes and waits on dirty pages, but just queues metadata
70 * for writeback: since the MDS can recover size and mtime there is no
71 * need to wait for MDS acknowledgement.
72 */
73
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080074/*
Ilya Dryomovfc218542018-05-04 16:57:31 +020075 * How many pages to get in one call to iov_iter_get_pages(). This
76 * determines the size of the on-stack array used as a buffer.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080077 */
Ilya Dryomovfc218542018-05-04 16:57:31 +020078#define ITER_GET_BVECS_PAGES 64
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080079
Ilya Dryomovfc218542018-05-04 16:57:31 +020080static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
81 struct bio_vec *bvecs)
82{
83 size_t size = 0;
84 int bvec_idx = 0;
85
86 if (maxsize > iov_iter_count(iter))
87 maxsize = iov_iter_count(iter);
88
89 while (size < maxsize) {
90 struct page *pages[ITER_GET_BVECS_PAGES];
91 ssize_t bytes;
92 size_t start;
93 int idx = 0;
94
95 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
96 ITER_GET_BVECS_PAGES, &start);
97 if (bytes < 0)
98 return size ?: bytes;
99
100 iov_iter_advance(iter, bytes);
101 size += bytes;
102
103 for ( ; bytes; idx++, bvec_idx++) {
104 struct bio_vec bv = {
105 .bv_page = pages[idx],
106 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
107 .bv_offset = start,
108 };
109
110 bvecs[bvec_idx] = bv;
111 bytes -= bv.bv_len;
112 start = 0;
113 }
114 }
115
116 return size;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800117}
118
119/*
Ilya Dryomovfc218542018-05-04 16:57:31 +0200120 * iov_iter_get_pages() only considers one iov_iter segment, no matter
121 * what maxsize or maxpages are given. For ITER_BVEC that is a single
122 * page.
123 *
124 * Attempt to get up to @maxsize bytes worth of pages from @iter.
125 * Return the number of bytes in the created bio_vec array, or an error.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800126 */
Ilya Dryomovfc218542018-05-04 16:57:31 +0200127static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
128 struct bio_vec **bvecs, int *num_bvecs)
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800129{
Ilya Dryomovfc218542018-05-04 16:57:31 +0200130 struct bio_vec *bv;
131 size_t orig_count = iov_iter_count(iter);
132 ssize_t bytes;
133 int npages;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800134
Ilya Dryomovfc218542018-05-04 16:57:31 +0200135 iov_iter_truncate(iter, maxsize);
136 npages = iov_iter_npages(iter, INT_MAX);
137 iov_iter_reexpand(iter, orig_count);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800138
Ilya Dryomovfc218542018-05-04 16:57:31 +0200139 /*
140 * __iter_get_bvecs() may populate only part of the array -- zero it
141 * out.
142 */
143 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
144 if (!bv)
145 return -ENOMEM;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800146
Ilya Dryomovfc218542018-05-04 16:57:31 +0200147 bytes = __iter_get_bvecs(iter, maxsize, bv);
148 if (bytes < 0) {
149 /*
150 * No pages were pinned -- just free the array.
151 */
152 kvfree(bv);
153 return bytes;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800154 }
155
Ilya Dryomovfc218542018-05-04 16:57:31 +0200156 *bvecs = bv;
157 *num_bvecs = npages;
158 return bytes;
159}
160
161static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
162{
163 int i;
164
165 for (i = 0; i < num_bvecs; i++) {
166 if (bvecs[i].bv_page) {
167 if (should_dirty)
168 set_page_dirty_lock(bvecs[i].bv_page);
169 put_page(bvecs[i].bv_page);
170 }
171 }
172 kvfree(bvecs);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800173}
Sage Weil124e68e2009-10-06 11:31:08 -0700174
175/*
176 * Prepare an open request. Preallocate ceph_cap to avoid an
177 * inopportune ENOMEM later.
178 */
179static struct ceph_mds_request *
180prepare_open_request(struct super_block *sb, int flags, int create_mode)
181{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700182 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
183 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700184 struct ceph_mds_request *req;
185 int want_auth = USE_ANY_MDS;
186 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
187
188 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
189 want_auth = USE_AUTH_MDS;
190
191 req = ceph_mdsc_create_request(mdsc, op, want_auth);
192 if (IS_ERR(req))
193 goto out;
194 req->r_fmode = ceph_flags_to_mode(flags);
Alexander Graff775ff72017-04-27 18:34:00 +0200195 req->r_args.open.flags = ceph_flags_sys2wire(flags);
Sage Weil124e68e2009-10-06 11:31:08 -0700196 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700197out:
198 return req;
199}
200
Chengguang Xubb48bd42018-03-13 10:42:44 +0800201static int ceph_init_file_info(struct inode *inode, struct file *file,
202 int fmode, bool isdir)
203{
Yan, Zhengf4b97862019-07-25 20:16:42 +0800204 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800205 struct ceph_file_info *fi;
206
207 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
208 inode->i_mode, isdir ? "dir" : "regular");
209 BUG_ON(inode->i_fop->release != ceph_release);
210
211 if (isdir) {
212 struct ceph_dir_file_info *dfi =
213 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
214 if (!dfi) {
Yan, Zhengf4b97862019-07-25 20:16:42 +0800215 ceph_put_fmode(ci, fmode); /* clean up */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800216 return -ENOMEM;
217 }
218
219 file->private_data = dfi;
220 fi = &dfi->file_info;
221 dfi->next_offset = 2;
222 dfi->readdir_cache_idx = -1;
223 } else {
224 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
225 if (!fi) {
Yan, Zhengf4b97862019-07-25 20:16:42 +0800226 ceph_put_fmode(ci, fmode); /* clean up */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800227 return -ENOMEM;
228 }
229
230 file->private_data = fi;
231 }
232
233 fi->fmode = fmode;
234 spin_lock_init(&fi->rw_contexts_lock);
235 INIT_LIST_HEAD(&fi->rw_contexts);
Yan, Zhengf4b97862019-07-25 20:16:42 +0800236 fi->meta_err = errseq_sample(&ci->i_meta_err);
Yan, Zheng81f148a2019-07-25 20:16:46 +0800237 fi->filp_gen = READ_ONCE(ceph_inode_to_client(inode)->filp_gen);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800238
239 return 0;
240}
241
Sage Weil124e68e2009-10-06 11:31:08 -0700242/*
243 * initialize private struct file data.
244 * if we fail, clean up by dropping fmode reference on the ceph_inode
245 */
246static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
247{
Sage Weil124e68e2009-10-06 11:31:08 -0700248 int ret = 0;
249
250 switch (inode->i_mode & S_IFMT) {
251 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800252 ceph_fscache_register_inode_cookie(inode);
253 ceph_fscache_file_set_cookie(inode, file);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -0600254 /* fall through */
Sage Weil124e68e2009-10-06 11:31:08 -0700255 case S_IFDIR:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800256 ret = ceph_init_file_info(inode, file, fmode,
257 S_ISDIR(inode->i_mode));
258 if (ret)
259 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700260 break;
261
262 case S_IFLNK:
263 dout("init_file %p %p 0%o (symlink)\n", inode, file,
264 inode->i_mode);
265 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
266 break;
267
268 default:
269 dout("init_file %p %p 0%o (special)\n", inode, file,
270 inode->i_mode);
271 /*
272 * we need to drop the open ref now, since we don't
273 * have .release set to ceph_release.
274 */
275 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
276 BUG_ON(inode->i_fop->release == ceph_release);
277
278 /* call the proper open fop */
279 ret = inode->i_fop->open(inode, file);
280 }
281 return ret;
282}
283
284/*
Yan, Zheng77310322016-04-08 15:27:16 +0800285 * try renew caps after session gets killed.
286 */
287int ceph_renew_caps(struct inode *inode)
288{
289 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
290 struct ceph_inode_info *ci = ceph_inode(inode);
291 struct ceph_mds_request *req;
292 int err, flags, wanted;
293
294 spin_lock(&ci->i_ceph_lock);
295 wanted = __ceph_caps_file_wanted(ci);
296 if (__ceph_is_any_real_caps(ci) &&
Yan, Zheng8242c9f2017-03-25 17:28:10 +0800297 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
Yan, Zheng77310322016-04-08 15:27:16 +0800298 int issued = __ceph_caps_issued(ci, NULL);
299 spin_unlock(&ci->i_ceph_lock);
300 dout("renew caps %p want %s issued %s updating mds_wanted\n",
301 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
302 ceph_check_caps(ci, 0, NULL);
303 return 0;
304 }
305 spin_unlock(&ci->i_ceph_lock);
306
307 flags = 0;
308 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
309 flags = O_RDWR;
310 else if (wanted & CEPH_CAP_FILE_RD)
311 flags = O_RDONLY;
312 else if (wanted & CEPH_CAP_FILE_WR)
313 flags = O_WRONLY;
314#ifdef O_LAZY
315 if (wanted & CEPH_CAP_FILE_LAZYIO)
316 flags |= O_LAZY;
317#endif
318
319 req = prepare_open_request(inode->i_sb, flags, 0);
320 if (IS_ERR(req)) {
321 err = PTR_ERR(req);
322 goto out;
323 }
324
325 req->r_inode = inode;
326 ihold(inode);
327 req->r_num_caps = 1;
328 req->r_fmode = -1;
329
330 err = ceph_mdsc_do_request(mdsc, NULL, req);
331 ceph_mdsc_put_request(req);
332out:
333 dout("renew caps %p open result=%d\n", inode, err);
334 return err < 0 ? err : 0;
335}
336
337/*
Sage Weil124e68e2009-10-06 11:31:08 -0700338 * If we already have the requisite capabilities, we can satisfy
339 * the open request locally (no need to request new caps from the
340 * MDS). We do, however, need to inform the MDS (asynchronously)
341 * if our wanted caps set expands.
342 */
343int ceph_open(struct inode *inode, struct file *file)
344{
345 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700346 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
347 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700348 struct ceph_mds_request *req;
Chengguang Xu73737682018-02-28 19:43:47 +0800349 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700350 int err;
351 int flags, fmode, wanted;
352
Chengguang Xu73737682018-02-28 19:43:47 +0800353 if (fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700354 dout("open file %p is already opened\n", file);
355 return 0;
356 }
357
358 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
359 flags = file->f_flags & ~(O_CREAT|O_EXCL);
360 if (S_ISDIR(inode->i_mode))
361 flags = O_DIRECTORY; /* mds likes to know */
362
363 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
364 ceph_vinop(inode), file, flags, file->f_flags);
365 fmode = ceph_flags_to_mode(flags);
366 wanted = ceph_caps_for_mode(fmode);
367
368 /* snapped files are read-only */
369 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
370 return -EROFS;
371
372 /* trivially open snapdir */
373 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800374 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700375 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800376 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700377 return ceph_init_file(inode, file, fmode);
378 }
379
380 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800381 * No need to block if we have caps on the auth MDS (for
382 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700383 * asynchronously.
384 */
Sage Weilbe655592011-11-30 09:47:09 -0800385 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800386 if (__ceph_is_any_real_caps(ci) &&
387 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800388 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700389 int issued = __ceph_caps_issued(ci, NULL);
390
391 dout("open %p fmode %d want %s issued %s using existing\n",
392 inode, fmode, ceph_cap_string(wanted),
393 ceph_cap_string(issued));
394 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800395 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700396
397 /* adjust wanted? */
398 if ((issued & wanted) != wanted &&
399 (mds_wanted & wanted) != wanted &&
400 ceph_snap(inode) != CEPH_SNAPDIR)
401 ceph_check_caps(ci, 0, NULL);
402
403 return ceph_init_file(inode, file, fmode);
404 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
405 (ci->i_snap_caps & wanted) == wanted) {
406 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800407 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700408 return ceph_init_file(inode, file, fmode);
409 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400410
Sage Weilbe655592011-11-30 09:47:09 -0800411 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700412
413 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
414 req = prepare_open_request(inode->i_sb, flags, 0);
415 if (IS_ERR(req)) {
416 err = PTR_ERR(req);
417 goto out;
418 }
Sage Weil70b666c2011-05-27 09:24:26 -0700419 req->r_inode = inode;
420 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400421
Sage Weil124e68e2009-10-06 11:31:08 -0700422 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800423 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700424 if (!err)
425 err = ceph_init_file(inode, file, req->r_fmode);
426 ceph_mdsc_put_request(req);
427 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
428out:
429 return err;
430}
431
432
433/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700434 * Do a lookup + open with a single request. If we get a non-existent
435 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700436 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700437int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro44907d72018-06-08 13:32:02 -0400438 struct file *file, unsigned flags, umode_t mode)
Sage Weil124e68e2009-10-06 11:31:08 -0700439{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700440 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
441 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700442 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700443 struct dentry *dn;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800444 struct ceph_acl_sec_ctx as_ctx = {};
Luis Henriquesb7a29212018-01-05 10:47:19 +0000445 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700446 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700447
Al Viroa4555892014-10-21 20:11:25 -0400448 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
449 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700450 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
451
452 if (dentry->d_name.len > NAME_MAX)
453 return -ENAMETOOLONG;
454
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800455 if (flags & O_CREAT) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000456 if (ceph_quota_is_max_files_exceeded(dir))
457 return -EDQUOT;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800458 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800459 if (err < 0)
460 return err;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800461 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
462 if (err < 0)
463 goto out_ctx;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800464 }
465
Sage Weil124e68e2009-10-06 11:31:08 -0700466 /* do the open */
467 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800468 if (IS_ERR(req)) {
469 err = PTR_ERR(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800470 goto out_ctx;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800471 }
Sage Weil124e68e2009-10-06 11:31:08 -0700472 req->r_dentry = dget(dentry);
473 req->r_num_caps = 2;
474 if (flags & O_CREAT) {
Yan, Zheng222b7f92017-11-23 17:47:15 +0800475 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil124e68e2009-10-06 11:31:08 -0700476 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800477 if (as_ctx.pagelist) {
478 req->r_pagelist = as_ctx.pagelist;
479 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800480 }
Sage Weil124e68e2009-10-06 11:31:08 -0700481 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800482
483 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
484 if (ceph_security_xattr_wanted(dir))
485 mask |= CEPH_CAP_XATTR_SHARED;
486 req->r_args.open.mask = cpu_to_le32(mask);
487
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500488 req->r_parent = dir;
489 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700490 err = ceph_mdsc_do_request(mdsc,
491 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
492 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800493 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000494 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800495 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000496
Jianpeng Maa43137f2015-08-18 10:23:50 +0800497 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700498 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700499
Al Viro00699ad2016-07-05 09:44:53 -0400500 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700501 dn = ceph_finish_lookup(req, dentry, err);
502 if (IS_ERR(dn))
503 err = PTR_ERR(dn);
504 } else {
505 /* we were given a hashed negative dentry */
506 dn = NULL;
507 }
Sage Weil468640e2011-07-26 11:28:11 -0700508 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800509 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000510 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700511 /* make vfs retry on splice, ENOENT, or symlink */
512 dout("atomic_open finish_no_open on dn %p\n", dn);
513 err = finish_no_open(file, dn);
514 } else {
515 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800516 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
Yan, Zheng5c31e922019-05-26 15:35:39 +0800517 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Al Viro73a09dd2018-06-08 13:22:02 -0400518 file->f_mode |= FMODE_CREATED;
Sam Lang6e8575f2012-12-28 09:56:46 -0800519 }
Al Virobe12af32018-06-08 11:44:56 -0400520 err = finish_open(file, dentry, ceph_open);
Sage Weil5ef50c32012-07-31 11:27:36 -0700521 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800522out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800523 if (!req->r_err && req->r_target_inode)
524 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700525 ceph_mdsc_put_request(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800526out_ctx:
527 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil5ef50c32012-07-31 11:27:36 -0700528 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400529 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700530}
531
532int ceph_release(struct inode *inode, struct file *file)
533{
534 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700535
Chengguang Xubb48bd42018-03-13 10:42:44 +0800536 if (S_ISDIR(inode->i_mode)) {
537 struct ceph_dir_file_info *dfi = file->private_data;
538 dout("release inode %p dir file %p\n", inode, file);
539 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
540
541 ceph_put_fmode(ci, dfi->file_info.fmode);
542
543 if (dfi->last_readdir)
544 ceph_mdsc_put_request(dfi->last_readdir);
545 kfree(dfi->last_name);
546 kfree(dfi->dir_info);
547 kmem_cache_free(ceph_dir_file_cachep, dfi);
548 } else {
549 struct ceph_file_info *fi = file->private_data;
550 dout("release inode %p regular file %p\n", inode, file);
551 WARN_ON(!list_empty(&fi->rw_contexts));
552
553 ceph_put_fmode(ci, fi->fmode);
554 kmem_cache_free(ceph_file_cachep, fi);
555 }
Sage Weil195d3ce2010-03-01 09:57:54 -0800556
557 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700558 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700559 return 0;
560}
561
Yan, Zheng83701242014-11-14 22:36:18 +0800562enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800563 HAVE_RETRIED = 1,
564 CHECK_EOF = 2,
565 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800566};
567
Sage Weil124e68e2009-10-06 11:31:08 -0700568/*
Yan, Zhengfce7a972018-09-29 16:02:19 +0800569 * Completely synchronous read and write methods. Direct from __user
570 * buffer to osd, or directly to user pages (if O_DIRECT).
571 *
572 * If the read spans object boundary, just do multiple reads. (That's not
573 * atomic, but good enough for now.)
Sage Weil124e68e2009-10-06 11:31:08 -0700574 *
575 * If we get a short result from the OSD, check against i_size; we need to
576 * only return a short read to the caller if we hit EOF.
577 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800578static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
Yan, Zhengfce7a972018-09-29 16:02:19 +0800579 int *retry_op)
Sage Weil124e68e2009-10-06 11:31:08 -0700580{
majianpeng8eb4efb2013-09-26 14:42:17 +0800581 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500582 struct inode *inode = file_inode(file);
Yan, Zhengfce7a972018-09-29 16:02:19 +0800583 struct ceph_inode_info *ci = ceph_inode(inode);
584 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
585 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800586 ssize_t ret;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800587 u64 off = iocb->ki_pos;
588 u64 len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700589
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800590 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700591 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800592
593 if (!len)
594 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800595 /*
596 * flush any page cache pages in this range. this
597 * will make concurrent normal and sync io slow,
598 * but it will at least behave sensibly when they are
599 * in sequence.
600 */
zhengbine450f4d2019-02-01 11:19:15 +0000601 ret = filemap_write_and_wait_range(inode->i_mapping,
602 off, off + len - 1);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800603 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800604 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800605
Yan, Zhengfce7a972018-09-29 16:02:19 +0800606 ret = 0;
607 while ((len = iov_iter_count(to)) > 0) {
608 struct ceph_osd_request *req;
609 struct page **pages;
610 int num_pages;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800611 size_t page_off;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800612 u64 i_size;
613 bool more;
Sage Weil124e68e2009-10-06 11:31:08 -0700614
Yan, Zhengfce7a972018-09-29 16:02:19 +0800615 req = ceph_osdc_new_request(osdc, &ci->i_layout,
616 ci->i_vino, off, &len, 0, 1,
617 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
618 NULL, ci->i_truncate_seq,
619 ci->i_truncate_size, false);
620 if (IS_ERR(req)) {
621 ret = PTR_ERR(req);
622 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800623 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800624
Yan, Zhengfce7a972018-09-29 16:02:19 +0800625 more = len < iov_iter_count(to);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800626
Linus Torvalds9931a072018-11-01 19:58:52 -0700627 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800628 ret = iov_iter_get_pages_alloc(to, &pages, len,
629 &page_off);
630 if (ret <= 0) {
631 ceph_osdc_put_request(req);
632 ret = -ENOMEM;
633 break;
634 }
635 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
636 if (ret < len) {
637 len = ret;
638 osd_req_op_extent_update(req, 0, len);
639 more = false;
640 }
641 } else {
642 num_pages = calc_pages_for(off, len);
643 page_off = off & ~PAGE_MASK;
644 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
645 if (IS_ERR(pages)) {
646 ceph_osdc_put_request(req);
647 ret = PTR_ERR(pages);
648 break;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800649 }
650 }
Yan, Zhengfce7a972018-09-29 16:02:19 +0800651
652 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_off,
653 false, false);
654 ret = ceph_osdc_start_request(osdc, req, false);
655 if (!ret)
656 ret = ceph_osdc_wait_request(osdc, req);
657 ceph_osdc_put_request(req);
658
659 i_size = i_size_read(inode);
660 dout("sync_read %llu~%llu got %zd i_size %llu%s\n",
661 off, len, ret, i_size, (more ? " MORE" : ""));
662
663 if (ret == -ENOENT)
664 ret = 0;
665 if (ret >= 0 && ret < len && (off + ret < i_size)) {
666 int zlen = min(len - ret, i_size - off - ret);
667 int zoff = page_off + ret;
668 dout("sync_read zero gap %llu~%llu\n",
669 off + ret, off + ret + zlen);
670 ceph_zero_page_vector_range(zoff, zlen, pages);
671 ret += zlen;
672 }
673
Linus Torvalds9931a072018-11-01 19:58:52 -0700674 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800675 if (ret > 0) {
676 iov_iter_advance(to, ret);
677 off += ret;
678 } else {
679 iov_iter_advance(to, 0);
680 }
681 ceph_put_page_vector(pages, num_pages, false);
682 } else {
683 int idx = 0;
684 size_t left = ret > 0 ? ret : 0;
685 while (left > 0) {
686 size_t len, copied;
687 page_off = off & ~PAGE_MASK;
688 len = min_t(size_t, left, PAGE_SIZE - page_off);
689 copied = copy_page_to_iter(pages[idx++],
690 page_off, len, to);
691 off += copied;
692 left -= copied;
693 if (copied < len) {
694 ret = -EFAULT;
695 break;
696 }
697 }
698 ceph_release_page_vector(pages, num_pages);
699 }
700
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800701 if (ret < 0) {
702 if (ret == -EBLACKLISTED)
703 fsc->blacklisted = true;
704 break;
705 }
706
707 if (off >= i_size || !more)
Yan, Zhengfce7a972018-09-29 16:02:19 +0800708 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800709 }
710
711 if (off > iocb->ki_pos) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800712 if (ret >= 0 &&
713 iov_iter_count(to) > 0 && off >= i_size_read(inode))
714 *retry_op = CHECK_EOF;
majianpeng8eb4efb2013-09-26 14:42:17 +0800715 ret = off - iocb->ki_pos;
716 iocb->ki_pos = off;
717 }
718
Yan, Zhengfce7a972018-09-29 16:02:19 +0800719 dout("sync_read result %zd retry_op %d\n", ret, *retry_op);
Sage Weil124e68e2009-10-06 11:31:08 -0700720 return ret;
721}
722
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800723struct ceph_aio_request {
724 struct kiocb *iocb;
725 size_t total_len;
Yan, Zheng85784f92018-03-16 11:22:29 +0800726 bool write;
727 bool should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800728 int error;
729 struct list_head osd_reqs;
730 unsigned num_reqs;
731 atomic_t pending_reqs;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200732 struct timespec64 mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800733 struct ceph_cap_flush *prealloc_cf;
734};
735
Yan, Zheng5be03892015-12-24 08:44:20 +0800736struct ceph_aio_work {
737 struct work_struct work;
738 struct ceph_osd_request *req;
739};
740
741static void ceph_aio_retry_work(struct work_struct *work);
742
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800743static void ceph_aio_complete(struct inode *inode,
744 struct ceph_aio_request *aio_req)
745{
746 struct ceph_inode_info *ci = ceph_inode(inode);
747 int ret;
748
749 if (!atomic_dec_and_test(&aio_req->pending_reqs))
750 return;
751
752 ret = aio_req->error;
753 if (!ret)
754 ret = aio_req->total_len;
755
756 dout("ceph_aio_complete %p rc %d\n", inode, ret);
757
758 if (ret >= 0 && aio_req->write) {
759 int dirty;
760
761 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
762 if (endoff > i_size_read(inode)) {
763 if (ceph_inode_set_size(inode, endoff))
764 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
765 }
766
767 spin_lock(&ci->i_ceph_lock);
768 ci->i_inline_version = CEPH_INLINE_NONE;
769 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
770 &aio_req->prealloc_cf);
771 spin_unlock(&ci->i_ceph_lock);
772 if (dirty)
773 __mark_inode_dirty(inode, dirty);
774
775 }
776
777 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
778 CEPH_CAP_FILE_RD));
779
780 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
781
782 ceph_free_cap_flush(aio_req->prealloc_cf);
783 kfree(aio_req);
784}
785
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200786static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800787{
788 int rc = req->r_result;
789 struct inode *inode = req->r_inode;
790 struct ceph_aio_request *aio_req = req->r_priv;
791 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800792
Ilya Dryomovfc218542018-05-04 16:57:31 +0200793 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
794 BUG_ON(!osd_data->num_bvecs);
795
796 dout("ceph_aio_complete_req %p rc %d bytes %u\n",
797 inode, rc, osd_data->bvec_pos.iter.bi_size);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800798
799 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800800 struct ceph_aio_work *aio_work;
801 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800802
Yan, Zheng5be03892015-12-24 08:44:20 +0800803 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
804 if (aio_work) {
805 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
806 aio_work->req = req;
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800807 queue_work(ceph_inode_to_client(inode)->inode_wq,
Yan, Zheng5be03892015-12-24 08:44:20 +0800808 &aio_work->work);
809 return;
810 }
811 rc = -ENOMEM;
812 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800813 if (rc == -ENOENT)
814 rc = 0;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200815 if (rc >= 0 && osd_data->bvec_pos.iter.bi_size > rc) {
816 struct iov_iter i;
817 int zlen = osd_data->bvec_pos.iter.bi_size - rc;
818
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800819 /*
820 * If read is satisfied by single OSD request,
821 * it can pass EOF. Otherwise read is within
822 * i_size.
823 */
824 if (aio_req->num_reqs == 1) {
825 loff_t i_size = i_size_read(inode);
826 loff_t endoff = aio_req->iocb->ki_pos + rc;
827 if (endoff < i_size)
828 zlen = min_t(size_t, zlen,
829 i_size - endoff);
830 aio_req->total_len = rc + zlen;
831 }
832
David Howellsaa563d72018-10-20 00:57:56 +0100833 iov_iter_bvec(&i, READ, osd_data->bvec_pos.bvecs,
Ilya Dryomovfc218542018-05-04 16:57:31 +0200834 osd_data->num_bvecs,
835 osd_data->bvec_pos.iter.bi_size);
836 iov_iter_advance(&i, rc);
837 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800838 }
839 }
840
Ilya Dryomovfc218542018-05-04 16:57:31 +0200841 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
842 aio_req->should_dirty);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800843 ceph_osdc_put_request(req);
844
845 if (rc < 0)
846 cmpxchg(&aio_req->error, 0, rc);
847
848 ceph_aio_complete(inode, aio_req);
849 return;
850}
851
Yan, Zheng5be03892015-12-24 08:44:20 +0800852static void ceph_aio_retry_work(struct work_struct *work)
853{
854 struct ceph_aio_work *aio_work =
855 container_of(work, struct ceph_aio_work, work);
856 struct ceph_osd_request *orig_req = aio_work->req;
857 struct ceph_aio_request *aio_req = orig_req->r_priv;
858 struct inode *inode = orig_req->r_inode;
859 struct ceph_inode_info *ci = ceph_inode(inode);
860 struct ceph_snap_context *snapc;
861 struct ceph_osd_request *req;
862 int ret;
863
864 spin_lock(&ci->i_ceph_lock);
865 if (__ceph_have_pending_cap_snap(ci)) {
866 struct ceph_cap_snap *capsnap =
867 list_last_entry(&ci->i_cap_snaps,
868 struct ceph_cap_snap,
869 ci_item);
870 snapc = ceph_get_snap_context(capsnap->context);
871 } else {
872 BUG_ON(!ci->i_head_snapc);
873 snapc = ceph_get_snap_context(ci->i_head_snapc);
874 }
875 spin_unlock(&ci->i_ceph_lock);
876
Ilya Dryomov61d2f852018-10-11 16:15:38 +0200877 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
Yan, Zheng5be03892015-12-24 08:44:20 +0800878 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +0300879 if (!req) {
880 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +0800881 req = orig_req;
882 goto out;
883 }
884
Yan, Zhengb178cf42017-08-16 17:27:05 +0800885 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200886 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200887 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +0800888
Ilya Dryomov26f887e2018-10-15 16:11:37 +0200889 req->r_ops[0] = orig_req->r_ops[0];
890
891 req->r_mtime = aio_req->mtime;
892 req->r_data_offset = req->r_ops[0].extent.offset;
893
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200894 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
895 if (ret) {
896 ceph_osdc_put_request(req);
897 req = orig_req;
898 goto out;
899 }
Yan, Zheng5be03892015-12-24 08:44:20 +0800900
Yan, Zheng5be03892015-12-24 08:44:20 +0800901 ceph_osdc_put_request(orig_req);
902
903 req->r_callback = ceph_aio_complete_req;
904 req->r_inode = inode;
905 req->r_priv = aio_req;
906
907 ret = ceph_osdc_start_request(req->r_osdc, req, false);
908out:
909 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800910 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200911 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +0800912 }
913
Yan, Zhengdb6aed72016-01-26 23:05:37 +0800914 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +0800915 kfree(aio_work);
916}
917
majianpenge8344e62013-09-12 13:54:26 +0800918static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800919ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
920 struct ceph_snap_context *snapc,
921 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -0700922{
majianpenge8344e62013-09-12 13:54:26 +0800923 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500924 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700925 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700926 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500927 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700928 struct ceph_osd_request *req;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200929 struct bio_vec *bvecs;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800930 struct ceph_aio_request *aio_req = NULL;
931 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700932 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700933 int ret;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200934 struct timespec64 mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800935 size_t count = iov_iter_count(iter);
936 loff_t pos = iocb->ki_pos;
937 bool write = iov_iter_rw(iter) == WRITE;
Yan, Zheng85784f92018-03-16 11:22:29 +0800938 bool should_dirty = !write && iter_is_iovec(iter);
Sage Weil124e68e2009-10-06 11:31:08 -0700939
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800940 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700941 return -EROFS;
942
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800943 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
944 (write ? "write" : "read"), file, pos, (unsigned)count,
Jeff Layton40e7e2c2019-04-23 14:18:45 -0400945 snapc, snapc ? snapc->seq : 0);
Sage Weil124e68e2009-10-06 11:31:08 -0700946
zhengbine450f4d2019-02-01 11:19:15 +0000947 ret = filemap_write_and_wait_range(inode->i_mapping,
948 pos, pos + count - 1);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800949 if (ret < 0)
950 return ret;
951
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800952 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800953 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300954 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +0000955 (pos + count - 1) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800956 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +0100957 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800958
Yan, Zhengb178cf42017-08-16 17:27:05 +0800959 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800960 } else {
961 flags = CEPH_OSD_FLAG_READ;
962 }
Sage Weil124e68e2009-10-06 11:31:08 -0700963
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800964 while (iov_iter_count(iter) > 0) {
Ilya Dryomovfc218542018-05-04 16:57:31 +0200965 u64 size = iov_iter_count(iter);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800966 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +0800967
Ilya Dryomov3a15b382018-05-03 16:10:09 +0200968 if (write)
969 size = min_t(u64, size, fsc->mount_options->wsize);
970 else
971 size = min_t(u64, size, fsc->mount_options->rsize);
972
majianpenge8344e62013-09-12 13:54:26 +0800973 vino = ceph_vino(inode);
974 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800975 vino, pos, &size, 0,
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800976 1,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800977 write ? CEPH_OSD_OP_WRITE :
978 CEPH_OSD_OP_READ,
979 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +0800980 ci->i_truncate_seq,
981 ci->i_truncate_size,
982 false);
983 if (IS_ERR(req)) {
984 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400985 break;
majianpenge8344e62013-09-12 13:54:26 +0800986 }
987
Ilya Dryomovfc218542018-05-04 16:57:31 +0200988 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
989 if (len < 0) {
Al Viro64c31312014-04-03 22:58:25 -0400990 ceph_osdc_put_request(req);
Ilya Dryomovfc218542018-05-04 16:57:31 +0200991 ret = len;
Al Viro64c31312014-04-03 22:58:25 -0400992 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700993 }
Ilya Dryomovfc218542018-05-04 16:57:31 +0200994 if (len != size)
995 osd_req_op_extent_update(req, 0, len);
Sage Weil124e68e2009-10-06 11:31:08 -0700996
997 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800998 * To simplify error handling, allow AIO when IO within i_size
999 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -07001000 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001001 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
1002 (len == count || pos + count <= i_size_read(inode))) {
1003 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
1004 if (aio_req) {
1005 aio_req->iocb = iocb;
1006 aio_req->write = write;
Yan, Zheng85784f92018-03-16 11:22:29 +08001007 aio_req->should_dirty = should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001008 INIT_LIST_HEAD(&aio_req->osd_reqs);
1009 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001010 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001011 swap(aio_req->prealloc_cf, *pcf);
1012 }
1013 }
1014 /* ignore error */
1015 }
majianpenge8344e62013-09-12 13:54:26 +08001016
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001017 if (write) {
1018 /*
1019 * throw out any page cache pages in this range. this
1020 * may block.
1021 */
1022 truncate_inode_pages_range(inode->i_mapping, pos,
Luis Henriquesd31d07b2019-07-01 18:16:34 +01001023 PAGE_ALIGN(pos + len) - 1);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001024
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001025 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001026 }
1027
Ilya Dryomovfc218542018-05-04 16:57:31 +02001028 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001029
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001030 if (aio_req) {
1031 aio_req->total_len += len;
1032 aio_req->num_reqs++;
1033 atomic_inc(&aio_req->pending_reqs);
1034
1035 req->r_callback = ceph_aio_complete_req;
1036 req->r_inode = inode;
1037 req->r_priv = aio_req;
Ilya Dryomov94e85772019-07-08 12:50:09 +02001038 list_add_tail(&req->r_private_item, &aio_req->osd_reqs);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001039
1040 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001041 continue;
1042 }
1043
1044 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +08001045 if (!ret)
1046 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1047
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001048 size = i_size_read(inode);
1049 if (!write) {
1050 if (ret == -ENOENT)
1051 ret = 0;
1052 if (ret >= 0 && ret < len && pos + ret < size) {
Ilya Dryomovfc218542018-05-04 16:57:31 +02001053 struct iov_iter i;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001054 int zlen = min_t(size_t, len - ret,
1055 size - pos - ret);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001056
David Howellsaa563d72018-10-20 00:57:56 +01001057 iov_iter_bvec(&i, READ, bvecs, num_pages, len);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001058 iov_iter_advance(&i, ret);
1059 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001060 ret += zlen;
1061 }
1062 if (ret >= 0)
1063 len = ret;
1064 }
1065
Ilya Dryomovfc218542018-05-04 16:57:31 +02001066 put_bvecs(bvecs, num_pages, should_dirty);
majianpenge8344e62013-09-12 13:54:26 +08001067 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001068 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +08001069 break;
Al Viro64c31312014-04-03 22:58:25 -04001070
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001071 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001072 if (!write && pos >= size)
1073 break;
1074
1075 if (write && pos > size) {
1076 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -04001077 ceph_check_caps(ceph_inode(inode),
1078 CHECK_CAPS_AUTHONLY,
1079 NULL);
1080 }
majianpenge8344e62013-09-12 13:54:26 +08001081 }
1082
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001083 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001084 LIST_HEAD(osd_reqs);
1085
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001086 if (aio_req->num_reqs == 0) {
1087 kfree(aio_req);
1088 return ret;
1089 }
1090
1091 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1092 CEPH_CAP_FILE_RD);
1093
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001094 list_splice(&aio_req->osd_reqs, &osd_reqs);
1095 while (!list_empty(&osd_reqs)) {
1096 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001097 struct ceph_osd_request,
Ilya Dryomov94e85772019-07-08 12:50:09 +02001098 r_private_item);
1099 list_del_init(&req->r_private_item);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001100 if (ret >= 0)
1101 ret = ceph_osdc_start_request(req->r_osdc,
1102 req, false);
1103 if (ret < 0) {
1104 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001105 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001106 }
1107 }
1108 return -EIOCBQUEUED;
1109 }
1110
1111 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1112 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +08001113 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +08001114 }
1115 return ret;
1116}
1117
majianpenge8344e62013-09-12 13:54:26 +08001118/*
1119 * Synchronous write, straight from __user pointer or user pages.
1120 *
1121 * If write spans object boundary, just do multiple writes. (For a
1122 * correct atomic write, we should e.g. take write locks on all
1123 * objects, rollback on failure, etc.)
1124 */
Yan, Zheng06fee302014-07-28 14:33:46 +08001125static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001126ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1127 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +08001128{
1129 struct file *file = iocb->ki_filp;
1130 struct inode *inode = file_inode(file);
1131 struct ceph_inode_info *ci = ceph_inode(inode);
1132 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001133 struct ceph_vino vino;
1134 struct ceph_osd_request *req;
1135 struct page **pages;
1136 u64 len;
1137 int num_pages;
1138 int written = 0;
1139 int flags;
majianpenge8344e62013-09-12 13:54:26 +08001140 int ret;
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001141 bool check_caps = false;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001142 struct timespec64 mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001143 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001144
1145 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1146 return -EROFS;
1147
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001148 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1149 file, pos, (unsigned)count, snapc, snapc->seq);
majianpenge8344e62013-09-12 13:54:26 +08001150
zhengbine450f4d2019-02-01 11:19:15 +00001151 ret = filemap_write_and_wait_range(inode->i_mapping,
1152 pos, pos + count - 1);
majianpenge8344e62013-09-12 13:54:26 +08001153 if (ret < 0)
1154 return ret;
1155
1156 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001157 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +00001158 (pos + count - 1) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001159 if (ret < 0)
1160 dout("invalidate_inode_pages2_range returned %d\n", ret);
1161
Yan, Zhengb178cf42017-08-16 17:27:05 +08001162 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001163
Al Viro4908b822014-04-03 23:09:01 -04001164 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001165 size_t left;
1166 int n;
1167
majianpenge8344e62013-09-12 13:54:26 +08001168 vino = ceph_vino(inode);
1169 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001170 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001171 CEPH_OSD_OP_WRITE, flags, snapc,
1172 ci->i_truncate_seq,
1173 ci->i_truncate_size,
1174 false);
1175 if (IS_ERR(req)) {
1176 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001177 break;
majianpenge8344e62013-09-12 13:54:26 +08001178 }
1179
1180 /*
1181 * write from beginning of first page,
1182 * regardless of io alignment
1183 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001184 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001185
Yan, Zheng687265e2015-06-13 17:27:05 +08001186 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001187 if (IS_ERR(pages)) {
1188 ret = PTR_ERR(pages);
1189 goto out;
1190 }
majianpenge8344e62013-09-12 13:54:26 +08001191
1192 left = len;
1193 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001194 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001195 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001196 if (ret != plen) {
1197 ret = -EFAULT;
1198 break;
1199 }
1200 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001201 }
1202
Sage Weil124e68e2009-10-06 11:31:08 -07001203 if (ret < 0) {
1204 ceph_release_page_vector(pages, num_pages);
1205 goto out;
1206 }
1207
majianpenge8344e62013-09-12 13:54:26 +08001208 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001209
majianpenge8344e62013-09-12 13:54:26 +08001210 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1211 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001212
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001213 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001214 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1215 if (!ret)
1216 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001217
1218out:
majianpenge8344e62013-09-12 13:54:26 +08001219 ceph_osdc_put_request(req);
Jeff Layton26544c622017-04-04 08:39:46 -04001220 if (ret != 0) {
1221 ceph_set_error_write(ci);
majianpenge8344e62013-09-12 13:54:26 +08001222 break;
Jeff Layton26544c622017-04-04 08:39:46 -04001223 }
1224
1225 ceph_clear_error_write(ci);
1226 pos += len;
1227 written += len;
1228 if (pos > i_size_read(inode)) {
1229 check_caps = ceph_inode_set_size(inode, pos);
1230 if (check_caps)
1231 ceph_check_caps(ceph_inode(inode),
1232 CHECK_CAPS_AUTHONLY,
1233 NULL);
1234 }
1235
majianpenge8344e62013-09-12 13:54:26 +08001236 }
1237
1238 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001239 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001240 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001241 }
1242 return ret;
1243}
1244
1245/*
1246 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1247 * Atomically grab references, so that those bits are not released
1248 * back to the MDS mid-read.
1249 *
1250 * Hmm, the sync read case isn't actually async... should it be?
1251 */
Al Viro36444242014-04-02 20:28:01 -04001252static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001253{
1254 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001255 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001256 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001257 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001258 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001259 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001260 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001261 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001262 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001263
Sage Weil6a026582010-02-09 14:04:02 -08001264again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001265 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1266 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1267
Sage Weil29625072010-05-27 10:40:43 -07001268 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1269 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1270 else
1271 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001272 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1,
1273 &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -07001274 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +08001275 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001276
Sage Weil29625072010-05-27 10:40:43 -07001277 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001278 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001279 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001280
majianpeng8eb4efb2013-09-26 14:42:17 +08001281 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1282 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1283 ceph_cap_string(got));
1284
Yan, Zheng83701242014-11-14 22:36:18 +08001285 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001286 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1287 ret = ceph_direct_read_write(iocb, to,
1288 NULL, NULL);
1289 if (ret >= 0 && ret < len)
1290 retry_op = CHECK_EOF;
1291 } else {
1292 ret = ceph_sync_read(iocb, to, &retry_op);
1293 }
Yan, Zheng83701242014-11-14 22:36:18 +08001294 } else {
1295 retry_op = READ_INLINE;
1296 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001297 } else {
Yan, Zheng5d988302017-12-15 11:15:36 +08001298 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
majianpeng8eb4efb2013-09-26 14:42:17 +08001299 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001300 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001301 ceph_cap_string(got));
Yan, Zheng5d988302017-12-15 11:15:36 +08001302 ceph_add_rw_context(fi, &rw_ctx);
Al Viro36444242014-04-02 20:28:01 -04001303 ret = generic_file_read_iter(iocb, to);
Yan, Zheng5d988302017-12-15 11:15:36 +08001304 ceph_del_rw_context(fi, &rw_ctx);
majianpeng8eb4efb2013-09-26 14:42:17 +08001305 }
Sage Weil124e68e2009-10-06 11:31:08 -07001306 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1307 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001308 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001309 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001310 pinned_page = NULL;
1311 }
Sage Weil124e68e2009-10-06 11:31:08 -07001312 ceph_put_cap_refs(ci, got);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001313 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001314 int statret;
1315 struct page *page = NULL;
1316 loff_t i_size;
1317 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001318 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001319 if (!page)
1320 return -ENOMEM;
1321 }
Sage Weil6a026582010-02-09 14:04:02 -08001322
Yan, Zheng83701242014-11-14 22:36:18 +08001323 statret = __ceph_do_getattr(inode, page,
1324 CEPH_STAT_CAP_INLINE_DATA, !!page);
1325 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001326 if (page)
1327 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001328 if (statret == -ENODATA) {
1329 BUG_ON(retry_op != READ_INLINE);
1330 goto again;
1331 }
1332 return statret;
1333 }
1334
1335 i_size = i_size_read(inode);
1336 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001337 BUG_ON(ret > 0 || read > 0);
1338 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001339 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001340 loff_t end = min_t(loff_t, i_size,
1341 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001342 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001343 if (statret < end)
1344 zero_user_segment(page, statret, end);
1345 ret = copy_page_to_iter(page,
1346 iocb->ki_pos & ~PAGE_MASK,
1347 end - iocb->ki_pos, to);
1348 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001349 read += ret;
1350 }
1351 if (iocb->ki_pos < i_size && read < len) {
1352 size_t zlen = min_t(size_t, len - read,
1353 i_size - iocb->ki_pos);
1354 ret = iov_iter_zero(zlen, to);
1355 iocb->ki_pos += ret;
1356 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001357 }
1358 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001359 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001360 }
Sage Weil6a026582010-02-09 14:04:02 -08001361
1362 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001363 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001364 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001365 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001366 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001367
Sage Weil6a026582010-02-09 14:04:02 -08001368 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001369 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001370 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001371 goto again;
1372 }
1373 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001374
Sage Weil6a026582010-02-09 14:04:02 -08001375 if (ret >= 0)
1376 ret += read;
1377
Sage Weil124e68e2009-10-06 11:31:08 -07001378 return ret;
1379}
1380
1381/*
1382 * Take cap references to avoid releasing caps to MDS mid-write.
1383 *
1384 * If we are synchronous, and write with an old snap context, the OSD
1385 * may return EOLDSNAPC. In that case, retry the write.. _after_
1386 * dropping our cap refs and allowing the pending snap to logically
1387 * complete _before_ this write occurs.
1388 *
1389 * If we are near ENOSPC, write synchronously.
1390 */
Al Viro4908b822014-04-03 23:09:01 -04001391static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001392{
1393 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001394 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001395 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001396 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001397 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001398 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001399 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001400 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -04001401 loff_t pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001402 loff_t limit = max(i_size_read(inode), fsc->max_file_size);
Sage Weil124e68e2009-10-06 11:31:08 -07001403
1404 if (ceph_snap(inode) != CEPH_NOSNAP)
1405 return -EROFS;
1406
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001407 prealloc_cf = ceph_alloc_cap_flush();
1408 if (!prealloc_cf)
1409 return -ENOMEM;
1410
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001411retry_snap:
Al Viro59551022016-01-22 15:40:57 -05001412 inode_lock(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001413
Yan, Zheng03d254e2013-04-12 16:11:13 +08001414 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001415 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001416
Yan, Zheng55b0b312015-09-07 11:35:01 +08001417 if (iocb->ki_flags & IOCB_APPEND) {
1418 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1419 if (err < 0)
1420 goto out;
1421 }
1422
Al Viro3309dd02015-04-09 12:55:47 -04001423 err = generic_write_checks(iocb, from);
1424 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001425 goto out;
1426
Al Viro3309dd02015-04-09 12:55:47 -04001427 pos = iocb->ki_pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001428 if (unlikely(pos >= limit)) {
1429 err = -EFBIG;
1430 goto out;
1431 } else {
1432 iov_iter_truncate(from, limit - pos);
1433 }
1434
Al Viro3309dd02015-04-09 12:55:47 -04001435 count = iov_iter_count(from);
Luis Henriques2b838452018-01-05 10:47:21 +00001436 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1437 err = -EDQUOT;
1438 goto out;
1439 }
1440
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001441 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001442 if (err)
1443 goto out;
1444
1445 err = file_update_time(file);
1446 if (err)
1447 goto out;
1448
Jeff Layton5c308352019-06-06 08:57:27 -04001449 inode_inc_iversion_raw(inode);
1450
Yan, Zheng28127bd2014-11-14 22:38:29 +08001451 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1452 err = ceph_uninline_data(file, NULL);
1453 if (err < 0)
1454 goto out;
1455 }
1456
Jeff Layton26544c622017-04-04 08:39:46 -04001457 /* FIXME: not complete since it doesn't account for being at quota */
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001458 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001459 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001460 goto out;
1461 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001462
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001463 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001464 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001465 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1466 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1467 else
1468 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001469 got = 0;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001470 err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count,
Yan, Zheng3738daa2014-11-14 22:10:07 +08001471 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001472 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001473 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001474
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001475 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001476 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001477
1478 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Jeff Layton26544c622017-04-04 08:39:46 -04001479 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1480 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001481 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001482 struct iov_iter data;
Al Viro59551022016-01-22 15:40:57 -05001483 inode_unlock(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001484
1485 spin_lock(&ci->i_ceph_lock);
1486 if (__ceph_have_pending_cap_snap(ci)) {
1487 struct ceph_cap_snap *capsnap =
1488 list_last_entry(&ci->i_cap_snaps,
1489 struct ceph_cap_snap,
1490 ci_item);
1491 snapc = ceph_get_snap_context(capsnap->context);
1492 } else {
1493 BUG_ON(!ci->i_head_snapc);
1494 snapc = ceph_get_snap_context(ci->i_head_snapc);
1495 }
1496 spin_unlock(&ci->i_ceph_lock);
1497
Al Viro4908b822014-04-03 23:09:01 -04001498 /* we might need to revert back to that point */
1499 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001500 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001501 written = ceph_direct_read_write(iocb, &data, snapc,
1502 &prealloc_cf);
majianpenge8344e62013-09-12 13:54:26 +08001503 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001504 written = ceph_sync_write(iocb, &data, pos, snapc);
Al Viro4908b822014-04-03 23:09:01 -04001505 if (written > 0)
1506 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001507 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001508 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001509 /*
1510 * No need to acquire the i_truncate_mutex. Because
1511 * the MDS revokes Fwb caps before sending truncate
1512 * message to us. We can't get Fwb cap while there
1513 * are pending vmtruncate. So write and vmtruncate
1514 * can not run at the same time
1515 */
Al Viro4908b822014-04-03 23:09:01 -04001516 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001517 if (likely(written >= 0))
1518 iocb->ki_pos = pos + written;
Al Viro59551022016-01-22 15:40:57 -05001519 inode_unlock(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001520 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001521
Yan, Zheng03d254e2013-04-12 16:11:13 +08001522 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001523 int dirty;
Luis Henriques1ab302a2018-01-05 10:47:22 +00001524
Sage Weilbe655592011-11-30 09:47:09 -08001525 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001526 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001527 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1528 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001529 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001530 if (dirty)
1531 __mark_inode_dirty(inode, dirty);
Luis Henriques1ab302a2018-01-05 10:47:22 +00001532 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1533 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
Sage Weil124e68e2009-10-06 11:31:08 -07001534 }
Sage Weil7971bd92013-05-01 21:15:58 -07001535
Sage Weil124e68e2009-10-06 11:31:08 -07001536 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001537 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001538 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001539 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001540
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001541 if (written == -EOLDSNAPC) {
1542 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1543 inode, ceph_vinop(inode), pos, (unsigned)count);
1544 goto retry_snap;
1545 }
1546
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001547 if (written >= 0) {
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001548 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001549 iocb->ki_flags |= IOCB_DSYNC;
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001550 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001551 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001552
Sage Weil2f75e9e2013-08-09 09:57:58 -07001553 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001554
Sage Weil2f75e9e2013-08-09 09:57:58 -07001555out:
Al Viro59551022016-01-22 15:40:57 -05001556 inode_unlock(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001557out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001558 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001559 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001560 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001561}
1562
1563/*
1564 * llseek. be sure to verify file size on SEEK_END.
1565 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001566static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001567{
1568 struct inode *inode = file->f_mapping->host;
Chengguang Xu9da12e32018-07-19 22:15:27 +08001569 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zheng99c88e62015-12-30 11:32:46 +08001570 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001571 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001572
Al Viro59551022016-01-22 15:40:57 -05001573 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001574
Andrew Morton965c8e52012-12-17 15:59:39 -08001575 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001576 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001577 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001578 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001579 }
1580
Yan, Zheng99c88e62015-12-30 11:32:46 +08001581 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001582 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001583 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001584 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001585 break;
1586 case SEEK_CUR:
1587 /*
1588 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1589 * position-querying operation. Avoid rewriting the "same"
1590 * f_pos value back to the file because a concurrent read(),
1591 * write() or lseek() might have altered it
1592 */
1593 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001594 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001595 goto out;
1596 }
1597 offset += file->f_pos;
1598 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001599 case SEEK_DATA:
Luis Henriques397f2382017-07-28 11:56:40 +01001600 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001601 ret = -ENXIO;
1602 goto out;
1603 }
1604 break;
1605 case SEEK_HOLE:
Luis Henriques397f2382017-07-28 11:56:40 +01001606 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001607 ret = -ENXIO;
1608 goto out;
1609 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001610 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001611 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001612 }
1613
Chengguang Xu9da12e32018-07-19 22:15:27 +08001614 ret = vfs_setpos(file, offset, max(i_size, fsc->max_file_size));
Sage Weil124e68e2009-10-06 11:31:08 -07001615
1616out:
Al Viro59551022016-01-22 15:40:57 -05001617 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001618 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001619}
1620
Li Wangad7a60d2013-08-15 11:51:44 +08001621static inline void ceph_zero_partial_page(
1622 struct inode *inode, loff_t offset, unsigned size)
1623{
1624 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001625 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001626
1627 page = find_lock_page(inode->i_mapping, index);
1628 if (page) {
1629 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001630 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001631 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001632 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001633 }
1634}
1635
1636static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1637 loff_t length)
1638{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001639 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001640 if (offset < nearly) {
1641 loff_t size = nearly - offset;
1642 if (length < size)
1643 size = length;
1644 ceph_zero_partial_page(inode, offset, size);
1645 offset += size;
1646 length -= size;
1647 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001648 if (length >= PAGE_SIZE) {
1649 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001650 truncate_pagecache_range(inode, offset, offset + size - 1);
1651 offset += size;
1652 length -= size;
1653 }
1654 if (length)
1655 ceph_zero_partial_page(inode, offset, length);
1656}
1657
1658static int ceph_zero_partial_object(struct inode *inode,
1659 loff_t offset, loff_t *length)
1660{
1661 struct ceph_inode_info *ci = ceph_inode(inode);
1662 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1663 struct ceph_osd_request *req;
1664 int ret = 0;
1665 loff_t zero = 0;
1666 int op;
1667
1668 if (!length) {
1669 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1670 length = &zero;
1671 } else {
1672 op = CEPH_OSD_OP_ZERO;
1673 }
1674
1675 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1676 ceph_vino(inode),
1677 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001678 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001679 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001680 NULL, 0, 0, false);
1681 if (IS_ERR(req)) {
1682 ret = PTR_ERR(req);
1683 goto out;
1684 }
1685
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001686 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001687 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1688 if (!ret) {
1689 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1690 if (ret == -ENOENT)
1691 ret = 0;
1692 }
1693 ceph_osdc_put_request(req);
1694
1695out:
1696 return ret;
1697}
1698
1699static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1700{
1701 int ret = 0;
1702 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001703 s32 stripe_unit = ci->i_layout.stripe_unit;
1704 s32 stripe_count = ci->i_layout.stripe_count;
1705 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001706 u64 object_set_size = object_size * stripe_count;
1707 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001708
Sage Weilb314a902013-08-27 12:15:16 -07001709 /* round offset up to next period boundary */
1710 nearly = offset + object_set_size - 1;
1711 t = nearly;
1712 nearly -= do_div(t, object_set_size);
1713
Li Wangad7a60d2013-08-15 11:51:44 +08001714 while (length && offset < nearly) {
1715 loff_t size = length;
1716 ret = ceph_zero_partial_object(inode, offset, &size);
1717 if (ret < 0)
1718 return ret;
1719 offset += size;
1720 length -= size;
1721 }
1722 while (length >= object_set_size) {
1723 int i;
1724 loff_t pos = offset;
1725 for (i = 0; i < stripe_count; ++i) {
1726 ret = ceph_zero_partial_object(inode, pos, NULL);
1727 if (ret < 0)
1728 return ret;
1729 pos += stripe_unit;
1730 }
1731 offset += object_set_size;
1732 length -= object_set_size;
1733 }
1734 while (length) {
1735 loff_t size = length;
1736 ret = ceph_zero_partial_object(inode, offset, &size);
1737 if (ret < 0)
1738 return ret;
1739 offset += size;
1740 length -= size;
1741 }
1742 return ret;
1743}
1744
1745static long ceph_fallocate(struct file *file, int mode,
1746 loff_t offset, loff_t length)
1747{
1748 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001749 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001750 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001751 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001752 int want, got = 0;
1753 int dirty;
1754 int ret = 0;
1755 loff_t endoff = 0;
1756 loff_t size;
1757
Luis Henriquesbddff632018-10-09 18:54:28 +01001758 if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
Yan, Zheng494d77b2014-06-26 15:25:17 +08001759 return -EOPNOTSUPP;
1760
Li Wangad7a60d2013-08-15 11:51:44 +08001761 if (!S_ISREG(inode->i_mode))
1762 return -EOPNOTSUPP;
1763
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001764 prealloc_cf = ceph_alloc_cap_flush();
1765 if (!prealloc_cf)
1766 return -ENOMEM;
1767
Al Viro59551022016-01-22 15:40:57 -05001768 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08001769
1770 if (ceph_snap(inode) != CEPH_NOSNAP) {
1771 ret = -EROFS;
1772 goto unlock;
1773 }
1774
Yan, Zheng28127bd2014-11-14 22:38:29 +08001775 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1776 ret = ceph_uninline_data(file, NULL);
1777 if (ret < 0)
1778 goto unlock;
1779 }
1780
Li Wangad7a60d2013-08-15 11:51:44 +08001781 size = i_size_read(inode);
Luis Henriquesbddff632018-10-09 18:54:28 +01001782
1783 /* Are we punching a hole beyond EOF? */
1784 if (offset >= size)
1785 goto unlock;
1786 if ((offset + length) > size)
1787 length = size - offset;
Li Wangad7a60d2013-08-15 11:51:44 +08001788
1789 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1790 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1791 else
1792 want = CEPH_CAP_FILE_BUFFER;
1793
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001794 ret = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001795 if (ret < 0)
1796 goto unlock;
1797
Luis Henriquesbddff632018-10-09 18:54:28 +01001798 ceph_zero_pagecache_range(inode, offset, length);
1799 ret = ceph_zero_objects(inode, offset, length);
Li Wangad7a60d2013-08-15 11:51:44 +08001800
1801 if (!ret) {
1802 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001803 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001804 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1805 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001806 spin_unlock(&ci->i_ceph_lock);
1807 if (dirty)
1808 __mark_inode_dirty(inode, dirty);
1809 }
1810
1811 ceph_put_cap_refs(ci, got);
1812unlock:
Al Viro59551022016-01-22 15:40:57 -05001813 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001814 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001815 return ret;
1816}
1817
Luis Henriques503f82a2018-10-15 16:45:59 +01001818/*
1819 * This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
1820 * src_ci. Two attempts are made to obtain both caps, and an error is return if
1821 * this fails; zero is returned on success.
1822 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001823static int get_rd_wr_caps(struct file *src_filp, int *src_got,
1824 struct file *dst_filp,
Luis Henriques503f82a2018-10-15 16:45:59 +01001825 loff_t dst_endoff, int *dst_got)
1826{
1827 int ret = 0;
1828 bool retrying = false;
1829
1830retry_caps:
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001831 ret = ceph_get_caps(dst_filp, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
Luis Henriques503f82a2018-10-15 16:45:59 +01001832 dst_endoff, dst_got, NULL);
1833 if (ret < 0)
1834 return ret;
1835
1836 /*
1837 * Since we're already holding the FILE_WR capability for the dst file,
1838 * we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
1839 * retry dance instead to try to get both capabilities.
1840 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001841 ret = ceph_try_get_caps(file_inode(src_filp),
1842 CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
Luis Henriques503f82a2018-10-15 16:45:59 +01001843 false, src_got);
1844 if (ret <= 0) {
1845 /* Start by dropping dst_ci caps and getting src_ci caps */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001846 ceph_put_cap_refs(ceph_inode(file_inode(dst_filp)), *dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01001847 if (retrying) {
1848 if (!ret)
1849 /* ceph_try_get_caps masks EAGAIN */
1850 ret = -EAGAIN;
1851 return ret;
1852 }
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001853 ret = ceph_get_caps(src_filp, CEPH_CAP_FILE_RD,
1854 CEPH_CAP_FILE_SHARED, -1, src_got, NULL);
Luis Henriques503f82a2018-10-15 16:45:59 +01001855 if (ret < 0)
1856 return ret;
1857 /*... drop src_ci caps too, and retry */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001858 ceph_put_cap_refs(ceph_inode(file_inode(src_filp)), *src_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01001859 retrying = true;
1860 goto retry_caps;
1861 }
1862 return ret;
1863}
1864
1865static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
1866 struct ceph_inode_info *dst_ci, int dst_got)
1867{
1868 ceph_put_cap_refs(src_ci, src_got);
1869 ceph_put_cap_refs(dst_ci, dst_got);
1870}
1871
1872/*
1873 * This function does several size-related checks, returning an error if:
1874 * - source file is smaller than off+len
1875 * - destination file size is not OK (inode_newsize_ok())
1876 * - max bytes quotas is exceeded
1877 */
1878static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
1879 loff_t src_off, loff_t dst_off, size_t len)
1880{
1881 loff_t size, endoff;
1882
1883 size = i_size_read(src_inode);
1884 /*
1885 * Don't copy beyond source file EOF. Instead of simply setting length
1886 * to (size - src_off), just drop to VFS default implementation, as the
1887 * local i_size may be stale due to other clients writing to the source
1888 * inode.
1889 */
1890 if (src_off + len > size) {
1891 dout("Copy beyond EOF (%llu + %zu > %llu)\n",
1892 src_off, len, size);
1893 return -EOPNOTSUPP;
1894 }
1895 size = i_size_read(dst_inode);
1896
1897 endoff = dst_off + len;
1898 if (inode_newsize_ok(dst_inode, endoff))
1899 return -EOPNOTSUPP;
1900
1901 if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
1902 return -EDQUOT;
1903
1904 return 0;
1905}
1906
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001907static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off,
1908 struct file *dst_file, loff_t dst_off,
1909 size_t len, unsigned int flags)
Luis Henriques503f82a2018-10-15 16:45:59 +01001910{
1911 struct inode *src_inode = file_inode(src_file);
1912 struct inode *dst_inode = file_inode(dst_file);
1913 struct ceph_inode_info *src_ci = ceph_inode(src_inode);
1914 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
1915 struct ceph_cap_flush *prealloc_cf;
1916 struct ceph_object_locator src_oloc, dst_oloc;
1917 struct ceph_object_id src_oid, dst_oid;
1918 loff_t endoff = 0, size;
1919 ssize_t ret = -EIO;
1920 u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
1921 u32 src_objlen, dst_objlen, object_size;
1922 int src_got = 0, dst_got = 0, err, dirty;
1923 bool do_final_copy = false;
1924
Amir Goldstein5dae2222019-06-05 08:04:50 -07001925 if (src_inode->i_sb != dst_inode->i_sb)
1926 return -EXDEV;
Luis Henriques503f82a2018-10-15 16:45:59 +01001927 if (ceph_snap(dst_inode) != CEPH_NOSNAP)
1928 return -EROFS;
1929
1930 /*
1931 * Some of the checks below will return -EOPNOTSUPP, which will force a
1932 * fallback to the default VFS copy_file_range implementation. This is
1933 * desirable in several cases (for ex, the 'len' is smaller than the
1934 * size of the objects, or in cases where that would be more
1935 * efficient).
1936 */
1937
Luis Henriquesea4cdc52018-10-15 16:46:00 +01001938 if (ceph_test_mount_opt(ceph_inode_to_client(src_inode), NOCOPYFROM))
1939 return -EOPNOTSUPP;
1940
Luis Henriques503f82a2018-10-15 16:45:59 +01001941 if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
1942 (src_ci->i_layout.stripe_count != dst_ci->i_layout.stripe_count) ||
1943 (src_ci->i_layout.object_size != dst_ci->i_layout.object_size))
1944 return -EOPNOTSUPP;
1945
1946 if (len < src_ci->i_layout.object_size)
1947 return -EOPNOTSUPP; /* no remote copy will be done */
1948
1949 prealloc_cf = ceph_alloc_cap_flush();
1950 if (!prealloc_cf)
1951 return -ENOMEM;
1952
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001953 /* Start by sync'ing the source and destination files */
Luis Henriques503f82a2018-10-15 16:45:59 +01001954 ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001955 if (ret < 0) {
1956 dout("failed to write src file (%zd)\n", ret);
Luis Henriques503f82a2018-10-15 16:45:59 +01001957 goto out;
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001958 }
1959 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
1960 if (ret < 0) {
1961 dout("failed to write dst file (%zd)\n", ret);
1962 goto out;
1963 }
Luis Henriques503f82a2018-10-15 16:45:59 +01001964
1965 /*
1966 * We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
1967 * clients may have dirty data in their caches. And OSDs know nothing
1968 * about caps, so they can't safely do the remote object copies.
1969 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001970 err = get_rd_wr_caps(src_file, &src_got,
1971 dst_file, (dst_off + len), &dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01001972 if (err < 0) {
1973 dout("get_rd_wr_caps returned %d\n", err);
1974 ret = -EOPNOTSUPP;
1975 goto out;
1976 }
1977
1978 ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
1979 if (ret < 0)
1980 goto out_caps;
1981
1982 size = i_size_read(dst_inode);
1983 endoff = dst_off + len;
1984
1985 /* Drop dst file cached pages */
1986 ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
1987 dst_off >> PAGE_SHIFT,
1988 endoff >> PAGE_SHIFT);
1989 if (ret < 0) {
1990 dout("Failed to invalidate inode pages (%zd)\n", ret);
1991 ret = 0; /* XXX */
1992 }
1993 src_oloc.pool = src_ci->i_layout.pool_id;
1994 src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
1995 dst_oloc.pool = dst_ci->i_layout.pool_id;
1996 dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
1997
1998 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
1999 src_ci->i_layout.object_size,
2000 &src_objnum, &src_objoff, &src_objlen);
2001 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2002 dst_ci->i_layout.object_size,
2003 &dst_objnum, &dst_objoff, &dst_objlen);
2004 /* object-level offsets need to the same */
2005 if (src_objoff != dst_objoff) {
2006 ret = -EOPNOTSUPP;
2007 goto out_caps;
2008 }
2009
2010 /*
2011 * Do a manual copy if the object offset isn't object aligned.
2012 * 'src_objlen' contains the bytes left until the end of the object,
2013 * starting at the src_off
2014 */
2015 if (src_objoff) {
2016 /*
2017 * we need to temporarily drop all caps as we'll be calling
2018 * {read,write}_iter, which will get caps again.
2019 */
2020 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2021 ret = do_splice_direct(src_file, &src_off, dst_file,
2022 &dst_off, src_objlen, flags);
2023 if (ret < 0) {
2024 dout("do_splice_direct returned %d\n", err);
2025 goto out;
2026 }
2027 len -= ret;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002028 err = get_rd_wr_caps(src_file, &src_got,
2029 dst_file, (dst_off + len), &dst_got);
Luis Henriques503f82a2018-10-15 16:45:59 +01002030 if (err < 0)
2031 goto out;
2032 err = is_file_size_ok(src_inode, dst_inode,
2033 src_off, dst_off, len);
2034 if (err < 0)
2035 goto out_caps;
2036 }
2037 object_size = src_ci->i_layout.object_size;
2038 while (len >= object_size) {
2039 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
2040 object_size, &src_objnum,
2041 &src_objoff, &src_objlen);
2042 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2043 object_size, &dst_objnum,
2044 &dst_objoff, &dst_objlen);
2045 ceph_oid_init(&src_oid);
2046 ceph_oid_printf(&src_oid, "%llx.%08llx",
2047 src_ci->i_vino.ino, src_objnum);
2048 ceph_oid_init(&dst_oid);
2049 ceph_oid_printf(&dst_oid, "%llx.%08llx",
2050 dst_ci->i_vino.ino, dst_objnum);
2051 /* Do an object remote copy */
2052 err = ceph_osdc_copy_from(
2053 &ceph_inode_to_client(src_inode)->client->osdc,
2054 src_ci->i_vino.snap, 0,
2055 &src_oid, &src_oloc,
2056 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2057 CEPH_OSD_OP_FLAG_FADVISE_NOCACHE,
2058 &dst_oid, &dst_oloc,
2059 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2060 CEPH_OSD_OP_FLAG_FADVISE_DONTNEED, 0);
2061 if (err) {
2062 dout("ceph_osdc_copy_from returned %d\n", err);
2063 if (!ret)
2064 ret = err;
2065 goto out_caps;
2066 }
2067 len -= object_size;
2068 src_off += object_size;
2069 dst_off += object_size;
2070 ret += object_size;
2071 }
2072
2073 if (len)
2074 /* We still need one final local copy */
2075 do_final_copy = true;
2076
2077 file_update_time(dst_file);
Jeff Layton5c308352019-06-06 08:57:27 -04002078 inode_inc_iversion_raw(dst_inode);
2079
Luis Henriques503f82a2018-10-15 16:45:59 +01002080 if (endoff > size) {
2081 int caps_flags = 0;
2082
2083 /* Let the MDS know about dst file size change */
2084 if (ceph_quota_is_max_bytes_approaching(dst_inode, endoff))
2085 caps_flags |= CHECK_CAPS_NODELAY;
2086 if (ceph_inode_set_size(dst_inode, endoff))
2087 caps_flags |= CHECK_CAPS_AUTHONLY;
2088 if (caps_flags)
2089 ceph_check_caps(dst_ci, caps_flags, NULL);
2090 }
2091 /* Mark Fw dirty */
2092 spin_lock(&dst_ci->i_ceph_lock);
2093 dst_ci->i_inline_version = CEPH_INLINE_NONE;
2094 dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2095 spin_unlock(&dst_ci->i_ceph_lock);
2096 if (dirty)
2097 __mark_inode_dirty(dst_inode, dirty);
2098
2099out_caps:
2100 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2101
2102 if (do_final_copy) {
2103 err = do_splice_direct(src_file, &src_off, dst_file,
2104 &dst_off, len, flags);
2105 if (err < 0) {
2106 dout("do_splice_direct returned %d\n", err);
2107 goto out;
2108 }
2109 len -= err;
2110 ret += err;
2111 }
2112
2113out:
2114 ceph_free_cap_flush(prealloc_cf);
2115
2116 return ret;
2117}
2118
Dave Chinner64bf5ff2019-06-05 08:04:47 -07002119static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
2120 struct file *dst_file, loff_t dst_off,
2121 size_t len, unsigned int flags)
2122{
2123 ssize_t ret;
2124
2125 ret = __ceph_copy_file_range(src_file, src_off, dst_file, dst_off,
2126 len, flags);
2127
Amir Goldstein5dae2222019-06-05 08:04:50 -07002128 if (ret == -EOPNOTSUPP || ret == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07002129 ret = generic_copy_file_range(src_file, src_off, dst_file,
2130 dst_off, len, flags);
2131 return ret;
2132}
2133
Sage Weil124e68e2009-10-06 11:31:08 -07002134const struct file_operations ceph_file_fops = {
2135 .open = ceph_open,
2136 .release = ceph_release,
2137 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04002138 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04002139 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07002140 .mmap = ceph_mmap,
2141 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07002142 .lock = ceph_lock,
2143 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08002144 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04002145 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07002146 .unlocked_ioctl = ceph_ioctl,
2147 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08002148 .fallocate = ceph_fallocate,
Luis Henriques503f82a2018-10-15 16:45:59 +01002149 .copy_file_range = ceph_copy_file_range,
Sage Weil124e68e2009-10-06 11:31:08 -07002150};