blob: d616e4b50b57831faf543aada7832bfbaf08dd14 [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>
Sage Weil124e68e2009-10-06 11:31:08 -070013
14#include "super.h"
15#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040016#include "cache.h"
Sage Weil124e68e2009-10-06 11:31:08 -070017
Alexander Graff775ff72017-04-27 18:34:00 +020018static __le32 ceph_flags_sys2wire(u32 flags)
19{
20 u32 wire_flags = 0;
21
22 switch (flags & O_ACCMODE) {
23 case O_RDONLY:
24 wire_flags |= CEPH_O_RDONLY;
25 break;
26 case O_WRONLY:
27 wire_flags |= CEPH_O_WRONLY;
28 break;
29 case O_RDWR:
30 wire_flags |= CEPH_O_RDWR;
31 break;
32 }
33
Chengguang Xu51b10f32018-03-09 15:12:40 +080034 flags &= ~O_ACCMODE;
35
Alexander Graff775ff72017-04-27 18:34:00 +020036#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
37
38 ceph_sys2wire(O_CREAT);
39 ceph_sys2wire(O_EXCL);
40 ceph_sys2wire(O_TRUNC);
41 ceph_sys2wire(O_DIRECTORY);
42 ceph_sys2wire(O_NOFOLLOW);
43
44#undef ceph_sys2wire
45
46 if (flags)
Chengguang Xu4c069a52018-01-30 16:29:17 +080047 dout("unused open flags: %x\n", flags);
Alexander Graff775ff72017-04-27 18:34:00 +020048
49 return cpu_to_le32(wire_flags);
50}
51
Sage Weil124e68e2009-10-06 11:31:08 -070052/*
53 * Ceph file operations
54 *
55 * Implement basic open/close functionality, and implement
56 * read/write.
57 *
58 * We implement three modes of file I/O:
59 * - buffered uses the generic_file_aio_{read,write} helpers
60 *
61 * - synchronous is used when there is multi-client read/write
62 * sharing, avoids the page cache, and synchronously waits for an
63 * ack from the OSD.
64 *
65 * - direct io takes the variant of the sync path that references
66 * user pages directly.
67 *
68 * fsync() flushes and waits on dirty pages, but just queues metadata
69 * for writeback: since the MDS can recover size and mtime there is no
70 * need to wait for MDS acknowledgement.
71 */
72
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080073/*
Ilya Dryomovfc218542018-05-04 16:57:31 +020074 * How many pages to get in one call to iov_iter_get_pages(). This
75 * determines the size of the on-stack array used as a buffer.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080076 */
Ilya Dryomovfc218542018-05-04 16:57:31 +020077#define ITER_GET_BVECS_PAGES 64
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080078
Ilya Dryomovfc218542018-05-04 16:57:31 +020079static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
80 struct bio_vec *bvecs)
81{
82 size_t size = 0;
83 int bvec_idx = 0;
84
85 if (maxsize > iov_iter_count(iter))
86 maxsize = iov_iter_count(iter);
87
88 while (size < maxsize) {
89 struct page *pages[ITER_GET_BVECS_PAGES];
90 ssize_t bytes;
91 size_t start;
92 int idx = 0;
93
94 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
95 ITER_GET_BVECS_PAGES, &start);
96 if (bytes < 0)
97 return size ?: bytes;
98
99 iov_iter_advance(iter, bytes);
100 size += bytes;
101
102 for ( ; bytes; idx++, bvec_idx++) {
103 struct bio_vec bv = {
104 .bv_page = pages[idx],
105 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
106 .bv_offset = start,
107 };
108
109 bvecs[bvec_idx] = bv;
110 bytes -= bv.bv_len;
111 start = 0;
112 }
113 }
114
115 return size;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800116}
117
118/*
Ilya Dryomovfc218542018-05-04 16:57:31 +0200119 * iov_iter_get_pages() only considers one iov_iter segment, no matter
120 * what maxsize or maxpages are given. For ITER_BVEC that is a single
121 * page.
122 *
123 * Attempt to get up to @maxsize bytes worth of pages from @iter.
124 * Return the number of bytes in the created bio_vec array, or an error.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800125 */
Ilya Dryomovfc218542018-05-04 16:57:31 +0200126static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
127 struct bio_vec **bvecs, int *num_bvecs)
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800128{
Ilya Dryomovfc218542018-05-04 16:57:31 +0200129 struct bio_vec *bv;
130 size_t orig_count = iov_iter_count(iter);
131 ssize_t bytes;
132 int npages;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800133
Ilya Dryomovfc218542018-05-04 16:57:31 +0200134 iov_iter_truncate(iter, maxsize);
135 npages = iov_iter_npages(iter, INT_MAX);
136 iov_iter_reexpand(iter, orig_count);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800137
Ilya Dryomovfc218542018-05-04 16:57:31 +0200138 /*
139 * __iter_get_bvecs() may populate only part of the array -- zero it
140 * out.
141 */
142 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
143 if (!bv)
144 return -ENOMEM;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800145
Ilya Dryomovfc218542018-05-04 16:57:31 +0200146 bytes = __iter_get_bvecs(iter, maxsize, bv);
147 if (bytes < 0) {
148 /*
149 * No pages were pinned -- just free the array.
150 */
151 kvfree(bv);
152 return bytes;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800153 }
154
Ilya Dryomovfc218542018-05-04 16:57:31 +0200155 *bvecs = bv;
156 *num_bvecs = npages;
157 return bytes;
158}
159
160static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
161{
162 int i;
163
164 for (i = 0; i < num_bvecs; i++) {
165 if (bvecs[i].bv_page) {
166 if (should_dirty)
167 set_page_dirty_lock(bvecs[i].bv_page);
168 put_page(bvecs[i].bv_page);
169 }
170 }
171 kvfree(bvecs);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800172}
Sage Weil124e68e2009-10-06 11:31:08 -0700173
174/*
175 * Prepare an open request. Preallocate ceph_cap to avoid an
176 * inopportune ENOMEM later.
177 */
178static struct ceph_mds_request *
179prepare_open_request(struct super_block *sb, int flags, int create_mode)
180{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700181 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
182 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700183 struct ceph_mds_request *req;
184 int want_auth = USE_ANY_MDS;
185 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
186
187 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
188 want_auth = USE_AUTH_MDS;
189
190 req = ceph_mdsc_create_request(mdsc, op, want_auth);
191 if (IS_ERR(req))
192 goto out;
193 req->r_fmode = ceph_flags_to_mode(flags);
Alexander Graff775ff72017-04-27 18:34:00 +0200194 req->r_args.open.flags = ceph_flags_sys2wire(flags);
Sage Weil124e68e2009-10-06 11:31:08 -0700195 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700196out:
197 return req;
198}
199
Chengguang Xubb48bd42018-03-13 10:42:44 +0800200static int ceph_init_file_info(struct inode *inode, struct file *file,
201 int fmode, bool isdir)
202{
203 struct ceph_file_info *fi;
204
205 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
206 inode->i_mode, isdir ? "dir" : "regular");
207 BUG_ON(inode->i_fop->release != ceph_release);
208
209 if (isdir) {
210 struct ceph_dir_file_info *dfi =
211 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
212 if (!dfi) {
213 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
214 return -ENOMEM;
215 }
216
217 file->private_data = dfi;
218 fi = &dfi->file_info;
219 dfi->next_offset = 2;
220 dfi->readdir_cache_idx = -1;
221 } else {
222 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
223 if (!fi) {
224 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
225 return -ENOMEM;
226 }
227
228 file->private_data = fi;
229 }
230
231 fi->fmode = fmode;
232 spin_lock_init(&fi->rw_contexts_lock);
233 INIT_LIST_HEAD(&fi->rw_contexts);
234
235 return 0;
236}
237
Sage Weil124e68e2009-10-06 11:31:08 -0700238/*
239 * initialize private struct file data.
240 * if we fail, clean up by dropping fmode reference on the ceph_inode
241 */
242static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
243{
Sage Weil124e68e2009-10-06 11:31:08 -0700244 int ret = 0;
245
246 switch (inode->i_mode & S_IFMT) {
247 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800248 ceph_fscache_register_inode_cookie(inode);
249 ceph_fscache_file_set_cookie(inode, file);
Gustavo A. R. Silva0a4c9262019-01-23 02:48:28 -0600250 /* fall through */
Sage Weil124e68e2009-10-06 11:31:08 -0700251 case S_IFDIR:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800252 ret = ceph_init_file_info(inode, file, fmode,
253 S_ISDIR(inode->i_mode));
254 if (ret)
255 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700256 break;
257
258 case S_IFLNK:
259 dout("init_file %p %p 0%o (symlink)\n", inode, file,
260 inode->i_mode);
261 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
262 break;
263
264 default:
265 dout("init_file %p %p 0%o (special)\n", inode, file,
266 inode->i_mode);
267 /*
268 * we need to drop the open ref now, since we don't
269 * have .release set to ceph_release.
270 */
271 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
272 BUG_ON(inode->i_fop->release == ceph_release);
273
274 /* call the proper open fop */
275 ret = inode->i_fop->open(inode, file);
276 }
277 return ret;
278}
279
280/*
Yan, Zheng77310322016-04-08 15:27:16 +0800281 * try renew caps after session gets killed.
282 */
283int ceph_renew_caps(struct inode *inode)
284{
285 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
286 struct ceph_inode_info *ci = ceph_inode(inode);
287 struct ceph_mds_request *req;
288 int err, flags, wanted;
289
290 spin_lock(&ci->i_ceph_lock);
291 wanted = __ceph_caps_file_wanted(ci);
292 if (__ceph_is_any_real_caps(ci) &&
Yan, Zheng8242c9f2017-03-25 17:28:10 +0800293 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
Yan, Zheng77310322016-04-08 15:27:16 +0800294 int issued = __ceph_caps_issued(ci, NULL);
295 spin_unlock(&ci->i_ceph_lock);
296 dout("renew caps %p want %s issued %s updating mds_wanted\n",
297 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
298 ceph_check_caps(ci, 0, NULL);
299 return 0;
300 }
301 spin_unlock(&ci->i_ceph_lock);
302
303 flags = 0;
304 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
305 flags = O_RDWR;
306 else if (wanted & CEPH_CAP_FILE_RD)
307 flags = O_RDONLY;
308 else if (wanted & CEPH_CAP_FILE_WR)
309 flags = O_WRONLY;
310#ifdef O_LAZY
311 if (wanted & CEPH_CAP_FILE_LAZYIO)
312 flags |= O_LAZY;
313#endif
314
315 req = prepare_open_request(inode->i_sb, flags, 0);
316 if (IS_ERR(req)) {
317 err = PTR_ERR(req);
318 goto out;
319 }
320
321 req->r_inode = inode;
322 ihold(inode);
323 req->r_num_caps = 1;
324 req->r_fmode = -1;
325
326 err = ceph_mdsc_do_request(mdsc, NULL, req);
327 ceph_mdsc_put_request(req);
328out:
329 dout("renew caps %p open result=%d\n", inode, err);
330 return err < 0 ? err : 0;
331}
332
333/*
Sage Weil124e68e2009-10-06 11:31:08 -0700334 * If we already have the requisite capabilities, we can satisfy
335 * the open request locally (no need to request new caps from the
336 * MDS). We do, however, need to inform the MDS (asynchronously)
337 * if our wanted caps set expands.
338 */
339int ceph_open(struct inode *inode, struct file *file)
340{
341 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700342 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
343 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700344 struct ceph_mds_request *req;
Chengguang Xu73737682018-02-28 19:43:47 +0800345 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700346 int err;
347 int flags, fmode, wanted;
348
Chengguang Xu73737682018-02-28 19:43:47 +0800349 if (fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700350 dout("open file %p is already opened\n", file);
351 return 0;
352 }
353
354 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
355 flags = file->f_flags & ~(O_CREAT|O_EXCL);
356 if (S_ISDIR(inode->i_mode))
357 flags = O_DIRECTORY; /* mds likes to know */
358
359 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
360 ceph_vinop(inode), file, flags, file->f_flags);
361 fmode = ceph_flags_to_mode(flags);
362 wanted = ceph_caps_for_mode(fmode);
363
364 /* snapped files are read-only */
365 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
366 return -EROFS;
367
368 /* trivially open snapdir */
369 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800370 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700371 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800372 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700373 return ceph_init_file(inode, file, fmode);
374 }
375
376 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800377 * No need to block if we have caps on the auth MDS (for
378 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700379 * asynchronously.
380 */
Sage Weilbe655592011-11-30 09:47:09 -0800381 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800382 if (__ceph_is_any_real_caps(ci) &&
383 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800384 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700385 int issued = __ceph_caps_issued(ci, NULL);
386
387 dout("open %p fmode %d want %s issued %s using existing\n",
388 inode, fmode, ceph_cap_string(wanted),
389 ceph_cap_string(issued));
390 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800391 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700392
393 /* adjust wanted? */
394 if ((issued & wanted) != wanted &&
395 (mds_wanted & wanted) != wanted &&
396 ceph_snap(inode) != CEPH_SNAPDIR)
397 ceph_check_caps(ci, 0, NULL);
398
399 return ceph_init_file(inode, file, fmode);
400 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
401 (ci->i_snap_caps & wanted) == wanted) {
402 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800403 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700404 return ceph_init_file(inode, file, fmode);
405 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400406
Sage Weilbe655592011-11-30 09:47:09 -0800407 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700408
409 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
410 req = prepare_open_request(inode->i_sb, flags, 0);
411 if (IS_ERR(req)) {
412 err = PTR_ERR(req);
413 goto out;
414 }
Sage Weil70b666c2011-05-27 09:24:26 -0700415 req->r_inode = inode;
416 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400417
Sage Weil124e68e2009-10-06 11:31:08 -0700418 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800419 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700420 if (!err)
421 err = ceph_init_file(inode, file, req->r_fmode);
422 ceph_mdsc_put_request(req);
423 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
424out:
425 return err;
426}
427
428
429/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700430 * Do a lookup + open with a single request. If we get a non-existent
431 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700432 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700433int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro44907d72018-06-08 13:32:02 -0400434 struct file *file, unsigned flags, umode_t mode)
Sage Weil124e68e2009-10-06 11:31:08 -0700435{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700436 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
437 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700438 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700439 struct dentry *dn;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800440 struct ceph_acl_sec_ctx as_ctx = {};
Luis Henriquesb7a29212018-01-05 10:47:19 +0000441 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700442 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700443
Al Viroa4555892014-10-21 20:11:25 -0400444 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
445 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700446 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
447
448 if (dentry->d_name.len > NAME_MAX)
449 return -ENAMETOOLONG;
450
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800451 if (flags & O_CREAT) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000452 if (ceph_quota_is_max_files_exceeded(dir))
453 return -EDQUOT;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800454 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800455 if (err < 0)
456 return err;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800457 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
458 if (err < 0)
459 goto out_ctx;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800460 }
461
Sage Weil124e68e2009-10-06 11:31:08 -0700462 /* do the open */
463 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800464 if (IS_ERR(req)) {
465 err = PTR_ERR(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800466 goto out_ctx;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800467 }
Sage Weil124e68e2009-10-06 11:31:08 -0700468 req->r_dentry = dget(dentry);
469 req->r_num_caps = 2;
470 if (flags & O_CREAT) {
Yan, Zheng222b7f92017-11-23 17:47:15 +0800471 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil124e68e2009-10-06 11:31:08 -0700472 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800473 if (as_ctx.pagelist) {
474 req->r_pagelist = as_ctx.pagelist;
475 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800476 }
Sage Weil124e68e2009-10-06 11:31:08 -0700477 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800478
479 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
480 if (ceph_security_xattr_wanted(dir))
481 mask |= CEPH_CAP_XATTR_SHARED;
482 req->r_args.open.mask = cpu_to_le32(mask);
483
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500484 req->r_parent = dir;
485 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700486 err = ceph_mdsc_do_request(mdsc,
487 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
488 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800489 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000490 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800491 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000492
Jianpeng Maa43137f2015-08-18 10:23:50 +0800493 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700494 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700495
Al Viro00699ad2016-07-05 09:44:53 -0400496 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700497 dn = ceph_finish_lookup(req, dentry, err);
498 if (IS_ERR(dn))
499 err = PTR_ERR(dn);
500 } else {
501 /* we were given a hashed negative dentry */
502 dn = NULL;
503 }
Sage Weil468640e2011-07-26 11:28:11 -0700504 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800505 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000506 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700507 /* make vfs retry on splice, ENOENT, or symlink */
508 dout("atomic_open finish_no_open on dn %p\n", dn);
509 err = finish_no_open(file, dn);
510 } else {
511 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800512 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
Yan, Zheng5c31e922019-05-26 15:35:39 +0800513 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Al Viro73a09dd2018-06-08 13:22:02 -0400514 file->f_mode |= FMODE_CREATED;
Sam Lang6e8575f2012-12-28 09:56:46 -0800515 }
Al Virobe12af32018-06-08 11:44:56 -0400516 err = finish_open(file, dentry, ceph_open);
Sage Weil5ef50c32012-07-31 11:27:36 -0700517 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800518out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800519 if (!req->r_err && req->r_target_inode)
520 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700521 ceph_mdsc_put_request(req);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800522out_ctx:
523 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil5ef50c32012-07-31 11:27:36 -0700524 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400525 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700526}
527
528int ceph_release(struct inode *inode, struct file *file)
529{
530 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700531
Chengguang Xubb48bd42018-03-13 10:42:44 +0800532 if (S_ISDIR(inode->i_mode)) {
533 struct ceph_dir_file_info *dfi = file->private_data;
534 dout("release inode %p dir file %p\n", inode, file);
535 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
536
537 ceph_put_fmode(ci, dfi->file_info.fmode);
538
539 if (dfi->last_readdir)
540 ceph_mdsc_put_request(dfi->last_readdir);
541 kfree(dfi->last_name);
542 kfree(dfi->dir_info);
543 kmem_cache_free(ceph_dir_file_cachep, dfi);
544 } else {
545 struct ceph_file_info *fi = file->private_data;
546 dout("release inode %p regular file %p\n", inode, file);
547 WARN_ON(!list_empty(&fi->rw_contexts));
548
549 ceph_put_fmode(ci, fi->fmode);
550 kmem_cache_free(ceph_file_cachep, fi);
551 }
Sage Weil195d3ce2010-03-01 09:57:54 -0800552
553 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700554 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700555 return 0;
556}
557
Yan, Zheng83701242014-11-14 22:36:18 +0800558enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800559 HAVE_RETRIED = 1,
560 CHECK_EOF = 2,
561 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800562};
563
Sage Weil124e68e2009-10-06 11:31:08 -0700564/*
Yan, Zhengfce7a972018-09-29 16:02:19 +0800565 * Completely synchronous read and write methods. Direct from __user
566 * buffer to osd, or directly to user pages (if O_DIRECT).
567 *
568 * If the read spans object boundary, just do multiple reads. (That's not
569 * atomic, but good enough for now.)
Sage Weil124e68e2009-10-06 11:31:08 -0700570 *
571 * If we get a short result from the OSD, check against i_size; we need to
572 * only return a short read to the caller if we hit EOF.
573 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800574static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
Yan, Zhengfce7a972018-09-29 16:02:19 +0800575 int *retry_op)
Sage Weil124e68e2009-10-06 11:31:08 -0700576{
majianpeng8eb4efb2013-09-26 14:42:17 +0800577 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500578 struct inode *inode = file_inode(file);
Yan, Zhengfce7a972018-09-29 16:02:19 +0800579 struct ceph_inode_info *ci = ceph_inode(inode);
580 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
581 struct ceph_osd_client *osdc = &fsc->client->osdc;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800582 ssize_t ret;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800583 u64 off = iocb->ki_pos;
584 u64 len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700585
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800586 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700587 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800588
589 if (!len)
590 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800591 /*
592 * flush any page cache pages in this range. this
593 * will make concurrent normal and sync io slow,
594 * but it will at least behave sensibly when they are
595 * in sequence.
596 */
zhengbine450f4d2019-02-01 11:19:15 +0000597 ret = filemap_write_and_wait_range(inode->i_mapping,
598 off, off + len - 1);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800599 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800600 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800601
Yan, Zhengfce7a972018-09-29 16:02:19 +0800602 ret = 0;
603 while ((len = iov_iter_count(to)) > 0) {
604 struct ceph_osd_request *req;
605 struct page **pages;
606 int num_pages;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800607 size_t page_off;
Yan, Zhengfce7a972018-09-29 16:02:19 +0800608 u64 i_size;
609 bool more;
Sage Weil124e68e2009-10-06 11:31:08 -0700610
Yan, Zhengfce7a972018-09-29 16:02:19 +0800611 req = ceph_osdc_new_request(osdc, &ci->i_layout,
612 ci->i_vino, off, &len, 0, 1,
613 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
614 NULL, ci->i_truncate_seq,
615 ci->i_truncate_size, false);
616 if (IS_ERR(req)) {
617 ret = PTR_ERR(req);
618 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800619 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800620
Yan, Zhengfce7a972018-09-29 16:02:19 +0800621 more = len < iov_iter_count(to);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800622
Linus Torvalds9931a072018-11-01 19:58:52 -0700623 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800624 ret = iov_iter_get_pages_alloc(to, &pages, len,
625 &page_off);
626 if (ret <= 0) {
627 ceph_osdc_put_request(req);
628 ret = -ENOMEM;
629 break;
630 }
631 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
632 if (ret < len) {
633 len = ret;
634 osd_req_op_extent_update(req, 0, len);
635 more = false;
636 }
637 } else {
638 num_pages = calc_pages_for(off, len);
639 page_off = off & ~PAGE_MASK;
640 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
641 if (IS_ERR(pages)) {
642 ceph_osdc_put_request(req);
643 ret = PTR_ERR(pages);
644 break;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800645 }
646 }
Yan, Zhengfce7a972018-09-29 16:02:19 +0800647
648 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_off,
649 false, false);
650 ret = ceph_osdc_start_request(osdc, req, false);
651 if (!ret)
652 ret = ceph_osdc_wait_request(osdc, req);
653 ceph_osdc_put_request(req);
654
655 i_size = i_size_read(inode);
656 dout("sync_read %llu~%llu got %zd i_size %llu%s\n",
657 off, len, ret, i_size, (more ? " MORE" : ""));
658
659 if (ret == -ENOENT)
660 ret = 0;
661 if (ret >= 0 && ret < len && (off + ret < i_size)) {
662 int zlen = min(len - ret, i_size - off - ret);
663 int zoff = page_off + ret;
664 dout("sync_read zero gap %llu~%llu\n",
665 off + ret, off + ret + zlen);
666 ceph_zero_page_vector_range(zoff, zlen, pages);
667 ret += zlen;
668 }
669
Linus Torvalds9931a072018-11-01 19:58:52 -0700670 if (unlikely(iov_iter_is_pipe(to))) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800671 if (ret > 0) {
672 iov_iter_advance(to, ret);
673 off += ret;
674 } else {
675 iov_iter_advance(to, 0);
676 }
677 ceph_put_page_vector(pages, num_pages, false);
678 } else {
679 int idx = 0;
680 size_t left = ret > 0 ? ret : 0;
681 while (left > 0) {
682 size_t len, copied;
683 page_off = off & ~PAGE_MASK;
684 len = min_t(size_t, left, PAGE_SIZE - page_off);
685 copied = copy_page_to_iter(pages[idx++],
686 page_off, len, to);
687 off += copied;
688 left -= copied;
689 if (copied < len) {
690 ret = -EFAULT;
691 break;
692 }
693 }
694 ceph_release_page_vector(pages, num_pages);
695 }
696
697 if (ret <= 0 || off >= i_size || !more)
698 break;
majianpeng8eb4efb2013-09-26 14:42:17 +0800699 }
700
701 if (off > iocb->ki_pos) {
Yan, Zhengfce7a972018-09-29 16:02:19 +0800702 if (ret >= 0 &&
703 iov_iter_count(to) > 0 && off >= i_size_read(inode))
704 *retry_op = CHECK_EOF;
majianpeng8eb4efb2013-09-26 14:42:17 +0800705 ret = off - iocb->ki_pos;
706 iocb->ki_pos = off;
707 }
708
Yan, Zhengfce7a972018-09-29 16:02:19 +0800709 dout("sync_read result %zd retry_op %d\n", ret, *retry_op);
Sage Weil124e68e2009-10-06 11:31:08 -0700710 return ret;
711}
712
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800713struct ceph_aio_request {
714 struct kiocb *iocb;
715 size_t total_len;
Yan, Zheng85784f92018-03-16 11:22:29 +0800716 bool write;
717 bool should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800718 int error;
719 struct list_head osd_reqs;
720 unsigned num_reqs;
721 atomic_t pending_reqs;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200722 struct timespec64 mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800723 struct ceph_cap_flush *prealloc_cf;
724};
725
Yan, Zheng5be03892015-12-24 08:44:20 +0800726struct ceph_aio_work {
727 struct work_struct work;
728 struct ceph_osd_request *req;
729};
730
731static void ceph_aio_retry_work(struct work_struct *work);
732
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800733static void ceph_aio_complete(struct inode *inode,
734 struct ceph_aio_request *aio_req)
735{
736 struct ceph_inode_info *ci = ceph_inode(inode);
737 int ret;
738
739 if (!atomic_dec_and_test(&aio_req->pending_reqs))
740 return;
741
742 ret = aio_req->error;
743 if (!ret)
744 ret = aio_req->total_len;
745
746 dout("ceph_aio_complete %p rc %d\n", inode, ret);
747
748 if (ret >= 0 && aio_req->write) {
749 int dirty;
750
751 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
752 if (endoff > i_size_read(inode)) {
753 if (ceph_inode_set_size(inode, endoff))
754 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
755 }
756
757 spin_lock(&ci->i_ceph_lock);
758 ci->i_inline_version = CEPH_INLINE_NONE;
759 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
760 &aio_req->prealloc_cf);
761 spin_unlock(&ci->i_ceph_lock);
762 if (dirty)
763 __mark_inode_dirty(inode, dirty);
764
765 }
766
767 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
768 CEPH_CAP_FILE_RD));
769
770 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
771
772 ceph_free_cap_flush(aio_req->prealloc_cf);
773 kfree(aio_req);
774}
775
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200776static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800777{
778 int rc = req->r_result;
779 struct inode *inode = req->r_inode;
780 struct ceph_aio_request *aio_req = req->r_priv;
781 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800782
Ilya Dryomovfc218542018-05-04 16:57:31 +0200783 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
784 BUG_ON(!osd_data->num_bvecs);
785
786 dout("ceph_aio_complete_req %p rc %d bytes %u\n",
787 inode, rc, osd_data->bvec_pos.iter.bi_size);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800788
789 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800790 struct ceph_aio_work *aio_work;
791 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800792
Yan, Zheng5be03892015-12-24 08:44:20 +0800793 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
794 if (aio_work) {
795 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
796 aio_work->req = req;
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800797 queue_work(ceph_inode_to_client(inode)->inode_wq,
Yan, Zheng5be03892015-12-24 08:44:20 +0800798 &aio_work->work);
799 return;
800 }
801 rc = -ENOMEM;
802 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800803 if (rc == -ENOENT)
804 rc = 0;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200805 if (rc >= 0 && osd_data->bvec_pos.iter.bi_size > rc) {
806 struct iov_iter i;
807 int zlen = osd_data->bvec_pos.iter.bi_size - rc;
808
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800809 /*
810 * If read is satisfied by single OSD request,
811 * it can pass EOF. Otherwise read is within
812 * i_size.
813 */
814 if (aio_req->num_reqs == 1) {
815 loff_t i_size = i_size_read(inode);
816 loff_t endoff = aio_req->iocb->ki_pos + rc;
817 if (endoff < i_size)
818 zlen = min_t(size_t, zlen,
819 i_size - endoff);
820 aio_req->total_len = rc + zlen;
821 }
822
David Howellsaa563d72018-10-20 00:57:56 +0100823 iov_iter_bvec(&i, READ, osd_data->bvec_pos.bvecs,
Ilya Dryomovfc218542018-05-04 16:57:31 +0200824 osd_data->num_bvecs,
825 osd_data->bvec_pos.iter.bi_size);
826 iov_iter_advance(&i, rc);
827 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800828 }
829 }
830
Ilya Dryomovfc218542018-05-04 16:57:31 +0200831 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
832 aio_req->should_dirty);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800833 ceph_osdc_put_request(req);
834
835 if (rc < 0)
836 cmpxchg(&aio_req->error, 0, rc);
837
838 ceph_aio_complete(inode, aio_req);
839 return;
840}
841
Yan, Zheng5be03892015-12-24 08:44:20 +0800842static void ceph_aio_retry_work(struct work_struct *work)
843{
844 struct ceph_aio_work *aio_work =
845 container_of(work, struct ceph_aio_work, work);
846 struct ceph_osd_request *orig_req = aio_work->req;
847 struct ceph_aio_request *aio_req = orig_req->r_priv;
848 struct inode *inode = orig_req->r_inode;
849 struct ceph_inode_info *ci = ceph_inode(inode);
850 struct ceph_snap_context *snapc;
851 struct ceph_osd_request *req;
852 int ret;
853
854 spin_lock(&ci->i_ceph_lock);
855 if (__ceph_have_pending_cap_snap(ci)) {
856 struct ceph_cap_snap *capsnap =
857 list_last_entry(&ci->i_cap_snaps,
858 struct ceph_cap_snap,
859 ci_item);
860 snapc = ceph_get_snap_context(capsnap->context);
861 } else {
862 BUG_ON(!ci->i_head_snapc);
863 snapc = ceph_get_snap_context(ci->i_head_snapc);
864 }
865 spin_unlock(&ci->i_ceph_lock);
866
Ilya Dryomov61d2f852018-10-11 16:15:38 +0200867 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 1,
Yan, Zheng5be03892015-12-24 08:44:20 +0800868 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +0300869 if (!req) {
870 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +0800871 req = orig_req;
872 goto out;
873 }
874
Yan, Zhengb178cf42017-08-16 17:27:05 +0800875 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200876 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200877 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +0800878
Ilya Dryomov26f887e2018-10-15 16:11:37 +0200879 req->r_ops[0] = orig_req->r_ops[0];
880
881 req->r_mtime = aio_req->mtime;
882 req->r_data_offset = req->r_ops[0].extent.offset;
883
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200884 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
885 if (ret) {
886 ceph_osdc_put_request(req);
887 req = orig_req;
888 goto out;
889 }
Yan, Zheng5be03892015-12-24 08:44:20 +0800890
Yan, Zheng5be03892015-12-24 08:44:20 +0800891 ceph_osdc_put_request(orig_req);
892
893 req->r_callback = ceph_aio_complete_req;
894 req->r_inode = inode;
895 req->r_priv = aio_req;
896
897 ret = ceph_osdc_start_request(req->r_osdc, req, false);
898out:
899 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800900 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200901 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +0800902 }
903
Yan, Zhengdb6aed72016-01-26 23:05:37 +0800904 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +0800905 kfree(aio_work);
906}
907
majianpenge8344e62013-09-12 13:54:26 +0800908static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800909ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
910 struct ceph_snap_context *snapc,
911 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -0700912{
majianpenge8344e62013-09-12 13:54:26 +0800913 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500914 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700915 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700916 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500917 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700918 struct ceph_osd_request *req;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200919 struct bio_vec *bvecs;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800920 struct ceph_aio_request *aio_req = NULL;
921 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700922 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700923 int ret;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200924 struct timespec64 mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800925 size_t count = iov_iter_count(iter);
926 loff_t pos = iocb->ki_pos;
927 bool write = iov_iter_rw(iter) == WRITE;
Yan, Zheng85784f92018-03-16 11:22:29 +0800928 bool should_dirty = !write && iter_is_iovec(iter);
Sage Weil124e68e2009-10-06 11:31:08 -0700929
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800930 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700931 return -EROFS;
932
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800933 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
934 (write ? "write" : "read"), file, pos, (unsigned)count,
Jeff Layton40e7e2c2019-04-23 14:18:45 -0400935 snapc, snapc ? snapc->seq : 0);
Sage Weil124e68e2009-10-06 11:31:08 -0700936
zhengbine450f4d2019-02-01 11:19:15 +0000937 ret = filemap_write_and_wait_range(inode->i_mapping,
938 pos, pos + count - 1);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800939 if (ret < 0)
940 return ret;
941
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800942 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800943 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300944 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +0000945 (pos + count - 1) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800946 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +0100947 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800948
Yan, Zhengb178cf42017-08-16 17:27:05 +0800949 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800950 } else {
951 flags = CEPH_OSD_FLAG_READ;
952 }
Sage Weil124e68e2009-10-06 11:31:08 -0700953
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800954 while (iov_iter_count(iter) > 0) {
Ilya Dryomovfc218542018-05-04 16:57:31 +0200955 u64 size = iov_iter_count(iter);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800956 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +0800957
Ilya Dryomov3a15b382018-05-03 16:10:09 +0200958 if (write)
959 size = min_t(u64, size, fsc->mount_options->wsize);
960 else
961 size = min_t(u64, size, fsc->mount_options->rsize);
962
majianpenge8344e62013-09-12 13:54:26 +0800963 vino = ceph_vino(inode);
964 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800965 vino, pos, &size, 0,
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800966 1,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800967 write ? CEPH_OSD_OP_WRITE :
968 CEPH_OSD_OP_READ,
969 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +0800970 ci->i_truncate_seq,
971 ci->i_truncate_size,
972 false);
973 if (IS_ERR(req)) {
974 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400975 break;
majianpenge8344e62013-09-12 13:54:26 +0800976 }
977
Ilya Dryomovfc218542018-05-04 16:57:31 +0200978 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
979 if (len < 0) {
Al Viro64c31312014-04-03 22:58:25 -0400980 ceph_osdc_put_request(req);
Ilya Dryomovfc218542018-05-04 16:57:31 +0200981 ret = len;
Al Viro64c31312014-04-03 22:58:25 -0400982 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700983 }
Ilya Dryomovfc218542018-05-04 16:57:31 +0200984 if (len != size)
985 osd_req_op_extent_update(req, 0, len);
Sage Weil124e68e2009-10-06 11:31:08 -0700986
987 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800988 * To simplify error handling, allow AIO when IO within i_size
989 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -0700990 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800991 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
992 (len == count || pos + count <= i_size_read(inode))) {
993 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
994 if (aio_req) {
995 aio_req->iocb = iocb;
996 aio_req->write = write;
Yan, Zheng85784f92018-03-16 11:22:29 +0800997 aio_req->should_dirty = should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800998 INIT_LIST_HEAD(&aio_req->osd_reqs);
999 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001000 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001001 swap(aio_req->prealloc_cf, *pcf);
1002 }
1003 }
1004 /* ignore error */
1005 }
majianpenge8344e62013-09-12 13:54:26 +08001006
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001007 if (write) {
1008 /*
1009 * throw out any page cache pages in this range. this
1010 * may block.
1011 */
1012 truncate_inode_pages_range(inode->i_mapping, pos,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001013 (pos+len) | (PAGE_SIZE - 1));
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001014
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001015 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001016 }
1017
Ilya Dryomovfc218542018-05-04 16:57:31 +02001018 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001019
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001020 if (aio_req) {
1021 aio_req->total_len += len;
1022 aio_req->num_reqs++;
1023 atomic_inc(&aio_req->pending_reqs);
1024
1025 req->r_callback = ceph_aio_complete_req;
1026 req->r_inode = inode;
1027 req->r_priv = aio_req;
1028 list_add_tail(&req->r_unsafe_item, &aio_req->osd_reqs);
1029
1030 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001031 continue;
1032 }
1033
1034 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +08001035 if (!ret)
1036 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1037
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001038 size = i_size_read(inode);
1039 if (!write) {
1040 if (ret == -ENOENT)
1041 ret = 0;
1042 if (ret >= 0 && ret < len && pos + ret < size) {
Ilya Dryomovfc218542018-05-04 16:57:31 +02001043 struct iov_iter i;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001044 int zlen = min_t(size_t, len - ret,
1045 size - pos - ret);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001046
David Howellsaa563d72018-10-20 00:57:56 +01001047 iov_iter_bvec(&i, READ, bvecs, num_pages, len);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001048 iov_iter_advance(&i, ret);
1049 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001050 ret += zlen;
1051 }
1052 if (ret >= 0)
1053 len = ret;
1054 }
1055
Ilya Dryomovfc218542018-05-04 16:57:31 +02001056 put_bvecs(bvecs, num_pages, should_dirty);
majianpenge8344e62013-09-12 13:54:26 +08001057 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001058 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +08001059 break;
Al Viro64c31312014-04-03 22:58:25 -04001060
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001061 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001062 if (!write && pos >= size)
1063 break;
1064
1065 if (write && pos > size) {
1066 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -04001067 ceph_check_caps(ceph_inode(inode),
1068 CHECK_CAPS_AUTHONLY,
1069 NULL);
1070 }
majianpenge8344e62013-09-12 13:54:26 +08001071 }
1072
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001073 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001074 LIST_HEAD(osd_reqs);
1075
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001076 if (aio_req->num_reqs == 0) {
1077 kfree(aio_req);
1078 return ret;
1079 }
1080
1081 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1082 CEPH_CAP_FILE_RD);
1083
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001084 list_splice(&aio_req->osd_reqs, &osd_reqs);
1085 while (!list_empty(&osd_reqs)) {
1086 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001087 struct ceph_osd_request,
1088 r_unsafe_item);
1089 list_del_init(&req->r_unsafe_item);
1090 if (ret >= 0)
1091 ret = ceph_osdc_start_request(req->r_osdc,
1092 req, false);
1093 if (ret < 0) {
1094 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001095 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001096 }
1097 }
1098 return -EIOCBQUEUED;
1099 }
1100
1101 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1102 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +08001103 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +08001104 }
1105 return ret;
1106}
1107
majianpenge8344e62013-09-12 13:54:26 +08001108/*
1109 * Synchronous write, straight from __user pointer or user pages.
1110 *
1111 * If write spans object boundary, just do multiple writes. (For a
1112 * correct atomic write, we should e.g. take write locks on all
1113 * objects, rollback on failure, etc.)
1114 */
Yan, Zheng06fee302014-07-28 14:33:46 +08001115static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001116ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1117 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +08001118{
1119 struct file *file = iocb->ki_filp;
1120 struct inode *inode = file_inode(file);
1121 struct ceph_inode_info *ci = ceph_inode(inode);
1122 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001123 struct ceph_vino vino;
1124 struct ceph_osd_request *req;
1125 struct page **pages;
1126 u64 len;
1127 int num_pages;
1128 int written = 0;
1129 int flags;
majianpenge8344e62013-09-12 13:54:26 +08001130 int ret;
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001131 bool check_caps = false;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001132 struct timespec64 mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001133 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001134
1135 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1136 return -EROFS;
1137
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001138 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1139 file, pos, (unsigned)count, snapc, snapc->seq);
majianpenge8344e62013-09-12 13:54:26 +08001140
zhengbine450f4d2019-02-01 11:19:15 +00001141 ret = filemap_write_and_wait_range(inode->i_mapping,
1142 pos, pos + count - 1);
majianpenge8344e62013-09-12 13:54:26 +08001143 if (ret < 0)
1144 return ret;
1145
1146 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001147 pos >> PAGE_SHIFT,
zhengbine450f4d2019-02-01 11:19:15 +00001148 (pos + count - 1) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001149 if (ret < 0)
1150 dout("invalidate_inode_pages2_range returned %d\n", ret);
1151
Yan, Zhengb178cf42017-08-16 17:27:05 +08001152 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001153
Al Viro4908b822014-04-03 23:09:01 -04001154 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001155 size_t left;
1156 int n;
1157
majianpenge8344e62013-09-12 13:54:26 +08001158 vino = ceph_vino(inode);
1159 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001160 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001161 CEPH_OSD_OP_WRITE, flags, snapc,
1162 ci->i_truncate_seq,
1163 ci->i_truncate_size,
1164 false);
1165 if (IS_ERR(req)) {
1166 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001167 break;
majianpenge8344e62013-09-12 13:54:26 +08001168 }
1169
1170 /*
1171 * write from beginning of first page,
1172 * regardless of io alignment
1173 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001174 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001175
Yan, Zheng687265e2015-06-13 17:27:05 +08001176 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001177 if (IS_ERR(pages)) {
1178 ret = PTR_ERR(pages);
1179 goto out;
1180 }
majianpenge8344e62013-09-12 13:54:26 +08001181
1182 left = len;
1183 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001184 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001185 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001186 if (ret != plen) {
1187 ret = -EFAULT;
1188 break;
1189 }
1190 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001191 }
1192
Sage Weil124e68e2009-10-06 11:31:08 -07001193 if (ret < 0) {
1194 ceph_release_page_vector(pages, num_pages);
1195 goto out;
1196 }
1197
majianpenge8344e62013-09-12 13:54:26 +08001198 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001199
majianpenge8344e62013-09-12 13:54:26 +08001200 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1201 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001202
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001203 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001204 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1205 if (!ret)
1206 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001207
1208out:
majianpenge8344e62013-09-12 13:54:26 +08001209 ceph_osdc_put_request(req);
Jeff Layton26544c622017-04-04 08:39:46 -04001210 if (ret != 0) {
1211 ceph_set_error_write(ci);
majianpenge8344e62013-09-12 13:54:26 +08001212 break;
Jeff Layton26544c622017-04-04 08:39:46 -04001213 }
1214
1215 ceph_clear_error_write(ci);
1216 pos += len;
1217 written += len;
1218 if (pos > i_size_read(inode)) {
1219 check_caps = ceph_inode_set_size(inode, pos);
1220 if (check_caps)
1221 ceph_check_caps(ceph_inode(inode),
1222 CHECK_CAPS_AUTHONLY,
1223 NULL);
1224 }
1225
majianpenge8344e62013-09-12 13:54:26 +08001226 }
1227
1228 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001229 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001230 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001231 }
1232 return ret;
1233}
1234
1235/*
1236 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1237 * Atomically grab references, so that those bits are not released
1238 * back to the MDS mid-read.
1239 *
1240 * Hmm, the sync read case isn't actually async... should it be?
1241 */
Al Viro36444242014-04-02 20:28:01 -04001242static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001243{
1244 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001245 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001246 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001247 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001248 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001249 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001250 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001251 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001252 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001253
Sage Weil6a026582010-02-09 14:04:02 -08001254again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001255 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1256 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1257
Sage Weil29625072010-05-27 10:40:43 -07001258 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1259 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1260 else
1261 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001262 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -07001263 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +08001264 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001265
Sage Weil29625072010-05-27 10:40:43 -07001266 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001267 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001268 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001269
majianpeng8eb4efb2013-09-26 14:42:17 +08001270 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1271 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1272 ceph_cap_string(got));
1273
Yan, Zheng83701242014-11-14 22:36:18 +08001274 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001275 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1276 ret = ceph_direct_read_write(iocb, to,
1277 NULL, NULL);
1278 if (ret >= 0 && ret < len)
1279 retry_op = CHECK_EOF;
1280 } else {
1281 ret = ceph_sync_read(iocb, to, &retry_op);
1282 }
Yan, Zheng83701242014-11-14 22:36:18 +08001283 } else {
1284 retry_op = READ_INLINE;
1285 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001286 } else {
Yan, Zheng5d988302017-12-15 11:15:36 +08001287 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
majianpeng8eb4efb2013-09-26 14:42:17 +08001288 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001289 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001290 ceph_cap_string(got));
Yan, Zheng5d988302017-12-15 11:15:36 +08001291 ceph_add_rw_context(fi, &rw_ctx);
Al Viro36444242014-04-02 20:28:01 -04001292 ret = generic_file_read_iter(iocb, to);
Yan, Zheng5d988302017-12-15 11:15:36 +08001293 ceph_del_rw_context(fi, &rw_ctx);
majianpeng8eb4efb2013-09-26 14:42:17 +08001294 }
Sage Weil124e68e2009-10-06 11:31:08 -07001295 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1296 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001297 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001298 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001299 pinned_page = NULL;
1300 }
Sage Weil124e68e2009-10-06 11:31:08 -07001301 ceph_put_cap_refs(ci, got);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001302 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001303 int statret;
1304 struct page *page = NULL;
1305 loff_t i_size;
1306 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001307 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001308 if (!page)
1309 return -ENOMEM;
1310 }
Sage Weil6a026582010-02-09 14:04:02 -08001311
Yan, Zheng83701242014-11-14 22:36:18 +08001312 statret = __ceph_do_getattr(inode, page,
1313 CEPH_STAT_CAP_INLINE_DATA, !!page);
1314 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001315 if (page)
1316 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001317 if (statret == -ENODATA) {
1318 BUG_ON(retry_op != READ_INLINE);
1319 goto again;
1320 }
1321 return statret;
1322 }
1323
1324 i_size = i_size_read(inode);
1325 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001326 BUG_ON(ret > 0 || read > 0);
1327 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001328 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001329 loff_t end = min_t(loff_t, i_size,
1330 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001332 if (statret < end)
1333 zero_user_segment(page, statret, end);
1334 ret = copy_page_to_iter(page,
1335 iocb->ki_pos & ~PAGE_MASK,
1336 end - iocb->ki_pos, to);
1337 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001338 read += ret;
1339 }
1340 if (iocb->ki_pos < i_size && read < len) {
1341 size_t zlen = min_t(size_t, len - read,
1342 i_size - iocb->ki_pos);
1343 ret = iov_iter_zero(zlen, to);
1344 iocb->ki_pos += ret;
1345 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001346 }
1347 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001348 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001349 }
Sage Weil6a026582010-02-09 14:04:02 -08001350
1351 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001352 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001353 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001354 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001355 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001356
Sage Weil6a026582010-02-09 14:04:02 -08001357 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001358 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001359 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001360 goto again;
1361 }
1362 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001363
Sage Weil6a026582010-02-09 14:04:02 -08001364 if (ret >= 0)
1365 ret += read;
1366
Sage Weil124e68e2009-10-06 11:31:08 -07001367 return ret;
1368}
1369
1370/*
1371 * Take cap references to avoid releasing caps to MDS mid-write.
1372 *
1373 * If we are synchronous, and write with an old snap context, the OSD
1374 * may return EOLDSNAPC. In that case, retry the write.. _after_
1375 * dropping our cap refs and allowing the pending snap to logically
1376 * complete _before_ this write occurs.
1377 *
1378 * If we are near ENOSPC, write synchronously.
1379 */
Al Viro4908b822014-04-03 23:09:01 -04001380static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001381{
1382 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001383 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001384 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001385 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001386 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001387 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001388 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001389 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -04001390 loff_t pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001391 loff_t limit = max(i_size_read(inode), fsc->max_file_size);
Sage Weil124e68e2009-10-06 11:31:08 -07001392
1393 if (ceph_snap(inode) != CEPH_NOSNAP)
1394 return -EROFS;
1395
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001396 prealloc_cf = ceph_alloc_cap_flush();
1397 if (!prealloc_cf)
1398 return -ENOMEM;
1399
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001400retry_snap:
Al Viro59551022016-01-22 15:40:57 -05001401 inode_lock(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001402
Yan, Zheng03d254e2013-04-12 16:11:13 +08001403 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001404 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001405
Yan, Zheng55b0b312015-09-07 11:35:01 +08001406 if (iocb->ki_flags & IOCB_APPEND) {
1407 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1408 if (err < 0)
1409 goto out;
1410 }
1411
Al Viro3309dd02015-04-09 12:55:47 -04001412 err = generic_write_checks(iocb, from);
1413 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001414 goto out;
1415
Al Viro3309dd02015-04-09 12:55:47 -04001416 pos = iocb->ki_pos;
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001417 if (unlikely(pos >= limit)) {
1418 err = -EFBIG;
1419 goto out;
1420 } else {
1421 iov_iter_truncate(from, limit - pos);
1422 }
1423
Al Viro3309dd02015-04-09 12:55:47 -04001424 count = iov_iter_count(from);
Luis Henriques2b838452018-01-05 10:47:21 +00001425 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1426 err = -EDQUOT;
1427 goto out;
1428 }
1429
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001430 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001431 if (err)
1432 goto out;
1433
1434 err = file_update_time(file);
1435 if (err)
1436 goto out;
1437
Yan, Zheng28127bd2014-11-14 22:38:29 +08001438 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1439 err = ceph_uninline_data(file, NULL);
1440 if (err < 0)
1441 goto out;
1442 }
1443
Jeff Layton26544c622017-04-04 08:39:46 -04001444 /* FIXME: not complete since it doesn't account for being at quota */
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001445 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001446 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001447 goto out;
1448 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001449
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001450 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001451 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001452 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1453 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1454 else
1455 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001456 got = 0;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001457 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, pos + count,
1458 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001459 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001460 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001461
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001462 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001463 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001464
1465 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Jeff Layton26544c622017-04-04 08:39:46 -04001466 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1467 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001468 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001469 struct iov_iter data;
Al Viro59551022016-01-22 15:40:57 -05001470 inode_unlock(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001471
1472 spin_lock(&ci->i_ceph_lock);
1473 if (__ceph_have_pending_cap_snap(ci)) {
1474 struct ceph_cap_snap *capsnap =
1475 list_last_entry(&ci->i_cap_snaps,
1476 struct ceph_cap_snap,
1477 ci_item);
1478 snapc = ceph_get_snap_context(capsnap->context);
1479 } else {
1480 BUG_ON(!ci->i_head_snapc);
1481 snapc = ceph_get_snap_context(ci->i_head_snapc);
1482 }
1483 spin_unlock(&ci->i_ceph_lock);
1484
Al Viro4908b822014-04-03 23:09:01 -04001485 /* we might need to revert back to that point */
1486 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001487 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001488 written = ceph_direct_read_write(iocb, &data, snapc,
1489 &prealloc_cf);
majianpenge8344e62013-09-12 13:54:26 +08001490 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001491 written = ceph_sync_write(iocb, &data, pos, snapc);
Al Viro4908b822014-04-03 23:09:01 -04001492 if (written > 0)
1493 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001494 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001495 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001496 /*
1497 * No need to acquire the i_truncate_mutex. Because
1498 * the MDS revokes Fwb caps before sending truncate
1499 * message to us. We can't get Fwb cap while there
1500 * are pending vmtruncate. So write and vmtruncate
1501 * can not run at the same time
1502 */
Al Viro4908b822014-04-03 23:09:01 -04001503 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001504 if (likely(written >= 0))
1505 iocb->ki_pos = pos + written;
Al Viro59551022016-01-22 15:40:57 -05001506 inode_unlock(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001507 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001508
Yan, Zheng03d254e2013-04-12 16:11:13 +08001509 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001510 int dirty;
Luis Henriques1ab302a2018-01-05 10:47:22 +00001511
Sage Weilbe655592011-11-30 09:47:09 -08001512 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001513 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001514 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1515 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001516 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001517 if (dirty)
1518 __mark_inode_dirty(inode, dirty);
Luis Henriques1ab302a2018-01-05 10:47:22 +00001519 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1520 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
Sage Weil124e68e2009-10-06 11:31:08 -07001521 }
Sage Weil7971bd92013-05-01 21:15:58 -07001522
Sage Weil124e68e2009-10-06 11:31:08 -07001523 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001524 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001525 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001526 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001527
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001528 if (written == -EOLDSNAPC) {
1529 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1530 inode, ceph_vinop(inode), pos, (unsigned)count);
1531 goto retry_snap;
1532 }
1533
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001534 if (written >= 0) {
Chengguang Xu8687a3e2018-07-19 22:15:26 +08001535 if (ceph_osdmap_flag(&fsc->client->osdc, CEPH_OSDMAP_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001536 iocb->ki_flags |= IOCB_DSYNC;
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001537 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001538 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001539
Sage Weil2f75e9e2013-08-09 09:57:58 -07001540 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001541
Sage Weil2f75e9e2013-08-09 09:57:58 -07001542out:
Al Viro59551022016-01-22 15:40:57 -05001543 inode_unlock(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001544out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001545 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001546 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001547 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001548}
1549
1550/*
1551 * llseek. be sure to verify file size on SEEK_END.
1552 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001553static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001554{
1555 struct inode *inode = file->f_mapping->host;
Chengguang Xu9da12e32018-07-19 22:15:27 +08001556 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zheng99c88e62015-12-30 11:32:46 +08001557 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001558 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001559
Al Viro59551022016-01-22 15:40:57 -05001560 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001561
Andrew Morton965c8e52012-12-17 15:59:39 -08001562 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001563 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001564 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001565 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001566 }
1567
Yan, Zheng99c88e62015-12-30 11:32:46 +08001568 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001569 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001570 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001571 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001572 break;
1573 case SEEK_CUR:
1574 /*
1575 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1576 * position-querying operation. Avoid rewriting the "same"
1577 * f_pos value back to the file because a concurrent read(),
1578 * write() or lseek() might have altered it
1579 */
1580 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001581 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001582 goto out;
1583 }
1584 offset += file->f_pos;
1585 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001586 case SEEK_DATA:
Luis Henriques397f2382017-07-28 11:56:40 +01001587 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001588 ret = -ENXIO;
1589 goto out;
1590 }
1591 break;
1592 case SEEK_HOLE:
Luis Henriques397f2382017-07-28 11:56:40 +01001593 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001594 ret = -ENXIO;
1595 goto out;
1596 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001597 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001598 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001599 }
1600
Chengguang Xu9da12e32018-07-19 22:15:27 +08001601 ret = vfs_setpos(file, offset, max(i_size, fsc->max_file_size));
Sage Weil124e68e2009-10-06 11:31:08 -07001602
1603out:
Al Viro59551022016-01-22 15:40:57 -05001604 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001605 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001606}
1607
Li Wangad7a60d2013-08-15 11:51:44 +08001608static inline void ceph_zero_partial_page(
1609 struct inode *inode, loff_t offset, unsigned size)
1610{
1611 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001612 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001613
1614 page = find_lock_page(inode->i_mapping, index);
1615 if (page) {
1616 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001617 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001618 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001619 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001620 }
1621}
1622
1623static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1624 loff_t length)
1625{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001626 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001627 if (offset < nearly) {
1628 loff_t size = nearly - offset;
1629 if (length < size)
1630 size = length;
1631 ceph_zero_partial_page(inode, offset, size);
1632 offset += size;
1633 length -= size;
1634 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 if (length >= PAGE_SIZE) {
1636 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001637 truncate_pagecache_range(inode, offset, offset + size - 1);
1638 offset += size;
1639 length -= size;
1640 }
1641 if (length)
1642 ceph_zero_partial_page(inode, offset, length);
1643}
1644
1645static int ceph_zero_partial_object(struct inode *inode,
1646 loff_t offset, loff_t *length)
1647{
1648 struct ceph_inode_info *ci = ceph_inode(inode);
1649 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1650 struct ceph_osd_request *req;
1651 int ret = 0;
1652 loff_t zero = 0;
1653 int op;
1654
1655 if (!length) {
1656 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1657 length = &zero;
1658 } else {
1659 op = CEPH_OSD_OP_ZERO;
1660 }
1661
1662 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1663 ceph_vino(inode),
1664 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001665 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001666 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001667 NULL, 0, 0, false);
1668 if (IS_ERR(req)) {
1669 ret = PTR_ERR(req);
1670 goto out;
1671 }
1672
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001673 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001674 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1675 if (!ret) {
1676 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1677 if (ret == -ENOENT)
1678 ret = 0;
1679 }
1680 ceph_osdc_put_request(req);
1681
1682out:
1683 return ret;
1684}
1685
1686static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1687{
1688 int ret = 0;
1689 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001690 s32 stripe_unit = ci->i_layout.stripe_unit;
1691 s32 stripe_count = ci->i_layout.stripe_count;
1692 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001693 u64 object_set_size = object_size * stripe_count;
1694 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001695
Sage Weilb314a902013-08-27 12:15:16 -07001696 /* round offset up to next period boundary */
1697 nearly = offset + object_set_size - 1;
1698 t = nearly;
1699 nearly -= do_div(t, object_set_size);
1700
Li Wangad7a60d2013-08-15 11:51:44 +08001701 while (length && offset < nearly) {
1702 loff_t size = length;
1703 ret = ceph_zero_partial_object(inode, offset, &size);
1704 if (ret < 0)
1705 return ret;
1706 offset += size;
1707 length -= size;
1708 }
1709 while (length >= object_set_size) {
1710 int i;
1711 loff_t pos = offset;
1712 for (i = 0; i < stripe_count; ++i) {
1713 ret = ceph_zero_partial_object(inode, pos, NULL);
1714 if (ret < 0)
1715 return ret;
1716 pos += stripe_unit;
1717 }
1718 offset += object_set_size;
1719 length -= object_set_size;
1720 }
1721 while (length) {
1722 loff_t size = length;
1723 ret = ceph_zero_partial_object(inode, offset, &size);
1724 if (ret < 0)
1725 return ret;
1726 offset += size;
1727 length -= size;
1728 }
1729 return ret;
1730}
1731
1732static long ceph_fallocate(struct file *file, int mode,
1733 loff_t offset, loff_t length)
1734{
1735 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001736 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001737 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001738 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001739 int want, got = 0;
1740 int dirty;
1741 int ret = 0;
1742 loff_t endoff = 0;
1743 loff_t size;
1744
Luis Henriquesbddff632018-10-09 18:54:28 +01001745 if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
Yan, Zheng494d77b2014-06-26 15:25:17 +08001746 return -EOPNOTSUPP;
1747
Li Wangad7a60d2013-08-15 11:51:44 +08001748 if (!S_ISREG(inode->i_mode))
1749 return -EOPNOTSUPP;
1750
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001751 prealloc_cf = ceph_alloc_cap_flush();
1752 if (!prealloc_cf)
1753 return -ENOMEM;
1754
Al Viro59551022016-01-22 15:40:57 -05001755 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08001756
1757 if (ceph_snap(inode) != CEPH_NOSNAP) {
1758 ret = -EROFS;
1759 goto unlock;
1760 }
1761
Yan, Zheng28127bd2014-11-14 22:38:29 +08001762 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1763 ret = ceph_uninline_data(file, NULL);
1764 if (ret < 0)
1765 goto unlock;
1766 }
1767
Li Wangad7a60d2013-08-15 11:51:44 +08001768 size = i_size_read(inode);
Luis Henriquesbddff632018-10-09 18:54:28 +01001769
1770 /* Are we punching a hole beyond EOF? */
1771 if (offset >= size)
1772 goto unlock;
1773 if ((offset + length) > size)
1774 length = size - offset;
Li Wangad7a60d2013-08-15 11:51:44 +08001775
1776 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1777 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1778 else
1779 want = CEPH_CAP_FILE_BUFFER;
1780
Yan, Zheng3738daa2014-11-14 22:10:07 +08001781 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001782 if (ret < 0)
1783 goto unlock;
1784
Luis Henriquesbddff632018-10-09 18:54:28 +01001785 ceph_zero_pagecache_range(inode, offset, length);
1786 ret = ceph_zero_objects(inode, offset, length);
Li Wangad7a60d2013-08-15 11:51:44 +08001787
1788 if (!ret) {
1789 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001790 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001791 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1792 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001793 spin_unlock(&ci->i_ceph_lock);
1794 if (dirty)
1795 __mark_inode_dirty(inode, dirty);
1796 }
1797
1798 ceph_put_cap_refs(ci, got);
1799unlock:
Al Viro59551022016-01-22 15:40:57 -05001800 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001801 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001802 return ret;
1803}
1804
Luis Henriques503f82a2018-10-15 16:45:59 +01001805/*
1806 * This function tries to get FILE_WR capabilities for dst_ci and FILE_RD for
1807 * src_ci. Two attempts are made to obtain both caps, and an error is return if
1808 * this fails; zero is returned on success.
1809 */
1810static int get_rd_wr_caps(struct ceph_inode_info *src_ci,
1811 loff_t src_endoff, int *src_got,
1812 struct ceph_inode_info *dst_ci,
1813 loff_t dst_endoff, int *dst_got)
1814{
1815 int ret = 0;
1816 bool retrying = false;
1817
1818retry_caps:
1819 ret = ceph_get_caps(dst_ci, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER,
1820 dst_endoff, dst_got, NULL);
1821 if (ret < 0)
1822 return ret;
1823
1824 /*
1825 * Since we're already holding the FILE_WR capability for the dst file,
1826 * we would risk a deadlock by using ceph_get_caps. Thus, we'll do some
1827 * retry dance instead to try to get both capabilities.
1828 */
1829 ret = ceph_try_get_caps(src_ci, CEPH_CAP_FILE_RD, CEPH_CAP_FILE_SHARED,
1830 false, src_got);
1831 if (ret <= 0) {
1832 /* Start by dropping dst_ci caps and getting src_ci caps */
1833 ceph_put_cap_refs(dst_ci, *dst_got);
1834 if (retrying) {
1835 if (!ret)
1836 /* ceph_try_get_caps masks EAGAIN */
1837 ret = -EAGAIN;
1838 return ret;
1839 }
1840 ret = ceph_get_caps(src_ci, CEPH_CAP_FILE_RD,
1841 CEPH_CAP_FILE_SHARED, src_endoff,
1842 src_got, NULL);
1843 if (ret < 0)
1844 return ret;
1845 /*... drop src_ci caps too, and retry */
1846 ceph_put_cap_refs(src_ci, *src_got);
1847 retrying = true;
1848 goto retry_caps;
1849 }
1850 return ret;
1851}
1852
1853static void put_rd_wr_caps(struct ceph_inode_info *src_ci, int src_got,
1854 struct ceph_inode_info *dst_ci, int dst_got)
1855{
1856 ceph_put_cap_refs(src_ci, src_got);
1857 ceph_put_cap_refs(dst_ci, dst_got);
1858}
1859
1860/*
1861 * This function does several size-related checks, returning an error if:
1862 * - source file is smaller than off+len
1863 * - destination file size is not OK (inode_newsize_ok())
1864 * - max bytes quotas is exceeded
1865 */
1866static int is_file_size_ok(struct inode *src_inode, struct inode *dst_inode,
1867 loff_t src_off, loff_t dst_off, size_t len)
1868{
1869 loff_t size, endoff;
1870
1871 size = i_size_read(src_inode);
1872 /*
1873 * Don't copy beyond source file EOF. Instead of simply setting length
1874 * to (size - src_off), just drop to VFS default implementation, as the
1875 * local i_size may be stale due to other clients writing to the source
1876 * inode.
1877 */
1878 if (src_off + len > size) {
1879 dout("Copy beyond EOF (%llu + %zu > %llu)\n",
1880 src_off, len, size);
1881 return -EOPNOTSUPP;
1882 }
1883 size = i_size_read(dst_inode);
1884
1885 endoff = dst_off + len;
1886 if (inode_newsize_ok(dst_inode, endoff))
1887 return -EOPNOTSUPP;
1888
1889 if (ceph_quota_is_max_bytes_exceeded(dst_inode, endoff))
1890 return -EDQUOT;
1891
1892 return 0;
1893}
1894
1895static ssize_t ceph_copy_file_range(struct file *src_file, loff_t src_off,
1896 struct file *dst_file, loff_t dst_off,
1897 size_t len, unsigned int flags)
1898{
1899 struct inode *src_inode = file_inode(src_file);
1900 struct inode *dst_inode = file_inode(dst_file);
1901 struct ceph_inode_info *src_ci = ceph_inode(src_inode);
1902 struct ceph_inode_info *dst_ci = ceph_inode(dst_inode);
1903 struct ceph_cap_flush *prealloc_cf;
1904 struct ceph_object_locator src_oloc, dst_oloc;
1905 struct ceph_object_id src_oid, dst_oid;
1906 loff_t endoff = 0, size;
1907 ssize_t ret = -EIO;
1908 u64 src_objnum, dst_objnum, src_objoff, dst_objoff;
1909 u32 src_objlen, dst_objlen, object_size;
1910 int src_got = 0, dst_got = 0, err, dirty;
1911 bool do_final_copy = false;
1912
1913 if (src_inode == dst_inode)
1914 return -EINVAL;
1915 if (ceph_snap(dst_inode) != CEPH_NOSNAP)
1916 return -EROFS;
1917
1918 /*
1919 * Some of the checks below will return -EOPNOTSUPP, which will force a
1920 * fallback to the default VFS copy_file_range implementation. This is
1921 * desirable in several cases (for ex, the 'len' is smaller than the
1922 * size of the objects, or in cases where that would be more
1923 * efficient).
1924 */
1925
Luis Henriquesea4cdc52018-10-15 16:46:00 +01001926 if (ceph_test_mount_opt(ceph_inode_to_client(src_inode), NOCOPYFROM))
1927 return -EOPNOTSUPP;
1928
Luis Henriques503f82a2018-10-15 16:45:59 +01001929 if ((src_ci->i_layout.stripe_unit != dst_ci->i_layout.stripe_unit) ||
1930 (src_ci->i_layout.stripe_count != dst_ci->i_layout.stripe_count) ||
1931 (src_ci->i_layout.object_size != dst_ci->i_layout.object_size))
1932 return -EOPNOTSUPP;
1933
1934 if (len < src_ci->i_layout.object_size)
1935 return -EOPNOTSUPP; /* no remote copy will be done */
1936
1937 prealloc_cf = ceph_alloc_cap_flush();
1938 if (!prealloc_cf)
1939 return -ENOMEM;
1940
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001941 /* Start by sync'ing the source and destination files */
Luis Henriques503f82a2018-10-15 16:45:59 +01001942 ret = file_write_and_wait_range(src_file, src_off, (src_off + len));
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001943 if (ret < 0) {
1944 dout("failed to write src file (%zd)\n", ret);
Luis Henriques503f82a2018-10-15 16:45:59 +01001945 goto out;
Luis Henriquesc2c6d3c2018-10-23 16:53:14 +00001946 }
1947 ret = file_write_and_wait_range(dst_file, dst_off, (dst_off + len));
1948 if (ret < 0) {
1949 dout("failed to write dst file (%zd)\n", ret);
1950 goto out;
1951 }
Luis Henriques503f82a2018-10-15 16:45:59 +01001952
1953 /*
1954 * We need FILE_WR caps for dst_ci and FILE_RD for src_ci as other
1955 * clients may have dirty data in their caches. And OSDs know nothing
1956 * about caps, so they can't safely do the remote object copies.
1957 */
1958 err = get_rd_wr_caps(src_ci, (src_off + len), &src_got,
1959 dst_ci, (dst_off + len), &dst_got);
1960 if (err < 0) {
1961 dout("get_rd_wr_caps returned %d\n", err);
1962 ret = -EOPNOTSUPP;
1963 goto out;
1964 }
1965
1966 ret = is_file_size_ok(src_inode, dst_inode, src_off, dst_off, len);
1967 if (ret < 0)
1968 goto out_caps;
1969
1970 size = i_size_read(dst_inode);
1971 endoff = dst_off + len;
1972
1973 /* Drop dst file cached pages */
1974 ret = invalidate_inode_pages2_range(dst_inode->i_mapping,
1975 dst_off >> PAGE_SHIFT,
1976 endoff >> PAGE_SHIFT);
1977 if (ret < 0) {
1978 dout("Failed to invalidate inode pages (%zd)\n", ret);
1979 ret = 0; /* XXX */
1980 }
1981 src_oloc.pool = src_ci->i_layout.pool_id;
1982 src_oloc.pool_ns = ceph_try_get_string(src_ci->i_layout.pool_ns);
1983 dst_oloc.pool = dst_ci->i_layout.pool_id;
1984 dst_oloc.pool_ns = ceph_try_get_string(dst_ci->i_layout.pool_ns);
1985
1986 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
1987 src_ci->i_layout.object_size,
1988 &src_objnum, &src_objoff, &src_objlen);
1989 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
1990 dst_ci->i_layout.object_size,
1991 &dst_objnum, &dst_objoff, &dst_objlen);
1992 /* object-level offsets need to the same */
1993 if (src_objoff != dst_objoff) {
1994 ret = -EOPNOTSUPP;
1995 goto out_caps;
1996 }
1997
1998 /*
1999 * Do a manual copy if the object offset isn't object aligned.
2000 * 'src_objlen' contains the bytes left until the end of the object,
2001 * starting at the src_off
2002 */
2003 if (src_objoff) {
2004 /*
2005 * we need to temporarily drop all caps as we'll be calling
2006 * {read,write}_iter, which will get caps again.
2007 */
2008 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2009 ret = do_splice_direct(src_file, &src_off, dst_file,
2010 &dst_off, src_objlen, flags);
2011 if (ret < 0) {
2012 dout("do_splice_direct returned %d\n", err);
2013 goto out;
2014 }
2015 len -= ret;
2016 err = get_rd_wr_caps(src_ci, (src_off + len),
2017 &src_got, dst_ci,
2018 (dst_off + len), &dst_got);
2019 if (err < 0)
2020 goto out;
2021 err = is_file_size_ok(src_inode, dst_inode,
2022 src_off, dst_off, len);
2023 if (err < 0)
2024 goto out_caps;
2025 }
2026 object_size = src_ci->i_layout.object_size;
2027 while (len >= object_size) {
2028 ceph_calc_file_object_mapping(&src_ci->i_layout, src_off,
2029 object_size, &src_objnum,
2030 &src_objoff, &src_objlen);
2031 ceph_calc_file_object_mapping(&dst_ci->i_layout, dst_off,
2032 object_size, &dst_objnum,
2033 &dst_objoff, &dst_objlen);
2034 ceph_oid_init(&src_oid);
2035 ceph_oid_printf(&src_oid, "%llx.%08llx",
2036 src_ci->i_vino.ino, src_objnum);
2037 ceph_oid_init(&dst_oid);
2038 ceph_oid_printf(&dst_oid, "%llx.%08llx",
2039 dst_ci->i_vino.ino, dst_objnum);
2040 /* Do an object remote copy */
2041 err = ceph_osdc_copy_from(
2042 &ceph_inode_to_client(src_inode)->client->osdc,
2043 src_ci->i_vino.snap, 0,
2044 &src_oid, &src_oloc,
2045 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2046 CEPH_OSD_OP_FLAG_FADVISE_NOCACHE,
2047 &dst_oid, &dst_oloc,
2048 CEPH_OSD_OP_FLAG_FADVISE_SEQUENTIAL |
2049 CEPH_OSD_OP_FLAG_FADVISE_DONTNEED, 0);
2050 if (err) {
2051 dout("ceph_osdc_copy_from returned %d\n", err);
2052 if (!ret)
2053 ret = err;
2054 goto out_caps;
2055 }
2056 len -= object_size;
2057 src_off += object_size;
2058 dst_off += object_size;
2059 ret += object_size;
2060 }
2061
2062 if (len)
2063 /* We still need one final local copy */
2064 do_final_copy = true;
2065
2066 file_update_time(dst_file);
2067 if (endoff > size) {
2068 int caps_flags = 0;
2069
2070 /* Let the MDS know about dst file size change */
2071 if (ceph_quota_is_max_bytes_approaching(dst_inode, endoff))
2072 caps_flags |= CHECK_CAPS_NODELAY;
2073 if (ceph_inode_set_size(dst_inode, endoff))
2074 caps_flags |= CHECK_CAPS_AUTHONLY;
2075 if (caps_flags)
2076 ceph_check_caps(dst_ci, caps_flags, NULL);
2077 }
2078 /* Mark Fw dirty */
2079 spin_lock(&dst_ci->i_ceph_lock);
2080 dst_ci->i_inline_version = CEPH_INLINE_NONE;
2081 dirty = __ceph_mark_dirty_caps(dst_ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2082 spin_unlock(&dst_ci->i_ceph_lock);
2083 if (dirty)
2084 __mark_inode_dirty(dst_inode, dirty);
2085
2086out_caps:
2087 put_rd_wr_caps(src_ci, src_got, dst_ci, dst_got);
2088
2089 if (do_final_copy) {
2090 err = do_splice_direct(src_file, &src_off, dst_file,
2091 &dst_off, len, flags);
2092 if (err < 0) {
2093 dout("do_splice_direct returned %d\n", err);
2094 goto out;
2095 }
2096 len -= err;
2097 ret += err;
2098 }
2099
2100out:
2101 ceph_free_cap_flush(prealloc_cf);
2102
2103 return ret;
2104}
2105
Sage Weil124e68e2009-10-06 11:31:08 -07002106const struct file_operations ceph_file_fops = {
2107 .open = ceph_open,
2108 .release = ceph_release,
2109 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04002110 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04002111 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07002112 .mmap = ceph_mmap,
2113 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07002114 .lock = ceph_lock,
2115 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08002116 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04002117 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07002118 .unlocked_ioctl = ceph_ioctl,
2119 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08002120 .fallocate = ceph_fallocate,
Luis Henriques503f82a2018-10-15 16:45:59 +01002121 .copy_file_range = ceph_copy_file_range,
Sage Weil124e68e2009-10-06 11:31:08 -07002122};