blob: cf0e45b10121aa8323ca7d6a86a109d6f8675c08 [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>
Sage Weil124e68e2009-10-06 11:31:08 -07003
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004#include <linux/module.h>
Sage Weil124e68e2009-10-06 11:31:08 -07005#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weil124e68e2009-10-06 11:31:08 -07007#include <linux/file.h>
Sage Weil5ef50c32012-07-31 11:27:36 -07008#include <linux/mount.h>
Sage Weil124e68e2009-10-06 11:31:08 -07009#include <linux/namei.h>
10#include <linux/writeback.h>
Li Wangad7a60d2013-08-15 11:51:44 +080011#include <linux/falloc.h>
Sage Weil124e68e2009-10-06 11:31:08 -070012
13#include "super.h"
14#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040015#include "cache.h"
Sage Weil124e68e2009-10-06 11:31:08 -070016
Alexander Graff775ff72017-04-27 18:34:00 +020017static __le32 ceph_flags_sys2wire(u32 flags)
18{
19 u32 wire_flags = 0;
20
21 switch (flags & O_ACCMODE) {
22 case O_RDONLY:
23 wire_flags |= CEPH_O_RDONLY;
24 break;
25 case O_WRONLY:
26 wire_flags |= CEPH_O_WRONLY;
27 break;
28 case O_RDWR:
29 wire_flags |= CEPH_O_RDWR;
30 break;
31 }
32
Chengguang Xu51b10f32018-03-09 15:12:40 +080033 flags &= ~O_ACCMODE;
34
Alexander Graff775ff72017-04-27 18:34:00 +020035#define ceph_sys2wire(a) if (flags & a) { wire_flags |= CEPH_##a; flags &= ~a; }
36
37 ceph_sys2wire(O_CREAT);
38 ceph_sys2wire(O_EXCL);
39 ceph_sys2wire(O_TRUNC);
40 ceph_sys2wire(O_DIRECTORY);
41 ceph_sys2wire(O_NOFOLLOW);
42
43#undef ceph_sys2wire
44
45 if (flags)
Chengguang Xu4c069a52018-01-30 16:29:17 +080046 dout("unused open flags: %x\n", flags);
Alexander Graff775ff72017-04-27 18:34:00 +020047
48 return cpu_to_le32(wire_flags);
49}
50
Sage Weil124e68e2009-10-06 11:31:08 -070051/*
52 * Ceph file operations
53 *
54 * Implement basic open/close functionality, and implement
55 * read/write.
56 *
57 * We implement three modes of file I/O:
58 * - buffered uses the generic_file_aio_{read,write} helpers
59 *
60 * - synchronous is used when there is multi-client read/write
61 * sharing, avoids the page cache, and synchronously waits for an
62 * ack from the OSD.
63 *
64 * - direct io takes the variant of the sync path that references
65 * user pages directly.
66 *
67 * fsync() flushes and waits on dirty pages, but just queues metadata
68 * for writeback: since the MDS can recover size and mtime there is no
69 * need to wait for MDS acknowledgement.
70 */
71
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080072/*
Ilya Dryomovfc218542018-05-04 16:57:31 +020073 * How many pages to get in one call to iov_iter_get_pages(). This
74 * determines the size of the on-stack array used as a buffer.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080075 */
Ilya Dryomovfc218542018-05-04 16:57:31 +020076#define ITER_GET_BVECS_PAGES 64
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +080077
Ilya Dryomovfc218542018-05-04 16:57:31 +020078static ssize_t __iter_get_bvecs(struct iov_iter *iter, size_t maxsize,
79 struct bio_vec *bvecs)
80{
81 size_t size = 0;
82 int bvec_idx = 0;
83
84 if (maxsize > iov_iter_count(iter))
85 maxsize = iov_iter_count(iter);
86
87 while (size < maxsize) {
88 struct page *pages[ITER_GET_BVECS_PAGES];
89 ssize_t bytes;
90 size_t start;
91 int idx = 0;
92
93 bytes = iov_iter_get_pages(iter, pages, maxsize - size,
94 ITER_GET_BVECS_PAGES, &start);
95 if (bytes < 0)
96 return size ?: bytes;
97
98 iov_iter_advance(iter, bytes);
99 size += bytes;
100
101 for ( ; bytes; idx++, bvec_idx++) {
102 struct bio_vec bv = {
103 .bv_page = pages[idx],
104 .bv_len = min_t(int, bytes, PAGE_SIZE - start),
105 .bv_offset = start,
106 };
107
108 bvecs[bvec_idx] = bv;
109 bytes -= bv.bv_len;
110 start = 0;
111 }
112 }
113
114 return size;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800115}
116
117/*
Ilya Dryomovfc218542018-05-04 16:57:31 +0200118 * iov_iter_get_pages() only considers one iov_iter segment, no matter
119 * what maxsize or maxpages are given. For ITER_BVEC that is a single
120 * page.
121 *
122 * Attempt to get up to @maxsize bytes worth of pages from @iter.
123 * Return the number of bytes in the created bio_vec array, or an error.
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800124 */
Ilya Dryomovfc218542018-05-04 16:57:31 +0200125static ssize_t iter_get_bvecs_alloc(struct iov_iter *iter, size_t maxsize,
126 struct bio_vec **bvecs, int *num_bvecs)
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800127{
Ilya Dryomovfc218542018-05-04 16:57:31 +0200128 struct bio_vec *bv;
129 size_t orig_count = iov_iter_count(iter);
130 ssize_t bytes;
131 int npages;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800132
Ilya Dryomovfc218542018-05-04 16:57:31 +0200133 iov_iter_truncate(iter, maxsize);
134 npages = iov_iter_npages(iter, INT_MAX);
135 iov_iter_reexpand(iter, orig_count);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800136
Ilya Dryomovfc218542018-05-04 16:57:31 +0200137 /*
138 * __iter_get_bvecs() may populate only part of the array -- zero it
139 * out.
140 */
141 bv = kvmalloc_array(npages, sizeof(*bv), GFP_KERNEL | __GFP_ZERO);
142 if (!bv)
143 return -ENOMEM;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800144
Ilya Dryomovfc218542018-05-04 16:57:31 +0200145 bytes = __iter_get_bvecs(iter, maxsize, bv);
146 if (bytes < 0) {
147 /*
148 * No pages were pinned -- just free the array.
149 */
150 kvfree(bv);
151 return bytes;
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800152 }
153
Ilya Dryomovfc218542018-05-04 16:57:31 +0200154 *bvecs = bv;
155 *num_bvecs = npages;
156 return bytes;
157}
158
159static void put_bvecs(struct bio_vec *bvecs, int num_bvecs, bool should_dirty)
160{
161 int i;
162
163 for (i = 0; i < num_bvecs; i++) {
164 if (bvecs[i].bv_page) {
165 if (should_dirty)
166 set_page_dirty_lock(bvecs[i].bv_page);
167 put_page(bvecs[i].bv_page);
168 }
169 }
170 kvfree(bvecs);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800171}
Sage Weil124e68e2009-10-06 11:31:08 -0700172
173/*
174 * Prepare an open request. Preallocate ceph_cap to avoid an
175 * inopportune ENOMEM later.
176 */
177static struct ceph_mds_request *
178prepare_open_request(struct super_block *sb, int flags, int create_mode)
179{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700180 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
181 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700182 struct ceph_mds_request *req;
183 int want_auth = USE_ANY_MDS;
184 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
185
186 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
187 want_auth = USE_AUTH_MDS;
188
189 req = ceph_mdsc_create_request(mdsc, op, want_auth);
190 if (IS_ERR(req))
191 goto out;
192 req->r_fmode = ceph_flags_to_mode(flags);
Alexander Graff775ff72017-04-27 18:34:00 +0200193 req->r_args.open.flags = ceph_flags_sys2wire(flags);
Sage Weil124e68e2009-10-06 11:31:08 -0700194 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700195out:
196 return req;
197}
198
Chengguang Xubb48bd42018-03-13 10:42:44 +0800199static int ceph_init_file_info(struct inode *inode, struct file *file,
200 int fmode, bool isdir)
201{
202 struct ceph_file_info *fi;
203
204 dout("%s %p %p 0%o (%s)\n", __func__, inode, file,
205 inode->i_mode, isdir ? "dir" : "regular");
206 BUG_ON(inode->i_fop->release != ceph_release);
207
208 if (isdir) {
209 struct ceph_dir_file_info *dfi =
210 kmem_cache_zalloc(ceph_dir_file_cachep, GFP_KERNEL);
211 if (!dfi) {
212 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
213 return -ENOMEM;
214 }
215
216 file->private_data = dfi;
217 fi = &dfi->file_info;
218 dfi->next_offset = 2;
219 dfi->readdir_cache_idx = -1;
220 } else {
221 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
222 if (!fi) {
223 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
224 return -ENOMEM;
225 }
226
227 file->private_data = fi;
228 }
229
230 fi->fmode = fmode;
231 spin_lock_init(&fi->rw_contexts_lock);
232 INIT_LIST_HEAD(&fi->rw_contexts);
233
234 return 0;
235}
236
Sage Weil124e68e2009-10-06 11:31:08 -0700237/*
238 * initialize private struct file data.
239 * if we fail, clean up by dropping fmode reference on the ceph_inode
240 */
241static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
242{
Sage Weil124e68e2009-10-06 11:31:08 -0700243 int ret = 0;
244
245 switch (inode->i_mode & S_IFMT) {
246 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800247 ceph_fscache_register_inode_cookie(inode);
248 ceph_fscache_file_set_cookie(inode, file);
Sage Weil124e68e2009-10-06 11:31:08 -0700249 case S_IFDIR:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800250 ret = ceph_init_file_info(inode, file, fmode,
251 S_ISDIR(inode->i_mode));
252 if (ret)
253 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700254 break;
255
256 case S_IFLNK:
257 dout("init_file %p %p 0%o (symlink)\n", inode, file,
258 inode->i_mode);
259 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
260 break;
261
262 default:
263 dout("init_file %p %p 0%o (special)\n", inode, file,
264 inode->i_mode);
265 /*
266 * we need to drop the open ref now, since we don't
267 * have .release set to ceph_release.
268 */
269 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
270 BUG_ON(inode->i_fop->release == ceph_release);
271
272 /* call the proper open fop */
273 ret = inode->i_fop->open(inode, file);
274 }
275 return ret;
276}
277
278/*
Yan, Zheng77310322016-04-08 15:27:16 +0800279 * try renew caps after session gets killed.
280 */
281int ceph_renew_caps(struct inode *inode)
282{
283 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
284 struct ceph_inode_info *ci = ceph_inode(inode);
285 struct ceph_mds_request *req;
286 int err, flags, wanted;
287
288 spin_lock(&ci->i_ceph_lock);
289 wanted = __ceph_caps_file_wanted(ci);
290 if (__ceph_is_any_real_caps(ci) &&
Yan, Zheng8242c9f2017-03-25 17:28:10 +0800291 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
Yan, Zheng77310322016-04-08 15:27:16 +0800292 int issued = __ceph_caps_issued(ci, NULL);
293 spin_unlock(&ci->i_ceph_lock);
294 dout("renew caps %p want %s issued %s updating mds_wanted\n",
295 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
296 ceph_check_caps(ci, 0, NULL);
297 return 0;
298 }
299 spin_unlock(&ci->i_ceph_lock);
300
301 flags = 0;
302 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
303 flags = O_RDWR;
304 else if (wanted & CEPH_CAP_FILE_RD)
305 flags = O_RDONLY;
306 else if (wanted & CEPH_CAP_FILE_WR)
307 flags = O_WRONLY;
308#ifdef O_LAZY
309 if (wanted & CEPH_CAP_FILE_LAZYIO)
310 flags |= O_LAZY;
311#endif
312
313 req = prepare_open_request(inode->i_sb, flags, 0);
314 if (IS_ERR(req)) {
315 err = PTR_ERR(req);
316 goto out;
317 }
318
319 req->r_inode = inode;
320 ihold(inode);
321 req->r_num_caps = 1;
322 req->r_fmode = -1;
323
324 err = ceph_mdsc_do_request(mdsc, NULL, req);
325 ceph_mdsc_put_request(req);
326out:
327 dout("renew caps %p open result=%d\n", inode, err);
328 return err < 0 ? err : 0;
329}
330
331/*
Sage Weil124e68e2009-10-06 11:31:08 -0700332 * If we already have the requisite capabilities, we can satisfy
333 * the open request locally (no need to request new caps from the
334 * MDS). We do, however, need to inform the MDS (asynchronously)
335 * if our wanted caps set expands.
336 */
337int ceph_open(struct inode *inode, struct file *file)
338{
339 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700340 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
341 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700342 struct ceph_mds_request *req;
Chengguang Xu73737682018-02-28 19:43:47 +0800343 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700344 int err;
345 int flags, fmode, wanted;
346
Chengguang Xu73737682018-02-28 19:43:47 +0800347 if (fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700348 dout("open file %p is already opened\n", file);
349 return 0;
350 }
351
352 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
353 flags = file->f_flags & ~(O_CREAT|O_EXCL);
354 if (S_ISDIR(inode->i_mode))
355 flags = O_DIRECTORY; /* mds likes to know */
356
357 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
358 ceph_vinop(inode), file, flags, file->f_flags);
359 fmode = ceph_flags_to_mode(flags);
360 wanted = ceph_caps_for_mode(fmode);
361
362 /* snapped files are read-only */
363 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
364 return -EROFS;
365
366 /* trivially open snapdir */
367 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800368 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700369 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800370 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700371 return ceph_init_file(inode, file, fmode);
372 }
373
374 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800375 * No need to block if we have caps on the auth MDS (for
376 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700377 * asynchronously.
378 */
Sage Weilbe655592011-11-30 09:47:09 -0800379 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800380 if (__ceph_is_any_real_caps(ci) &&
381 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800382 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700383 int issued = __ceph_caps_issued(ci, NULL);
384
385 dout("open %p fmode %d want %s issued %s using existing\n",
386 inode, fmode, ceph_cap_string(wanted),
387 ceph_cap_string(issued));
388 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800389 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700390
391 /* adjust wanted? */
392 if ((issued & wanted) != wanted &&
393 (mds_wanted & wanted) != wanted &&
394 ceph_snap(inode) != CEPH_SNAPDIR)
395 ceph_check_caps(ci, 0, NULL);
396
397 return ceph_init_file(inode, file, fmode);
398 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
399 (ci->i_snap_caps & wanted) == wanted) {
400 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800401 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700402 return ceph_init_file(inode, file, fmode);
403 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400404
Sage Weilbe655592011-11-30 09:47:09 -0800405 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700406
407 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
408 req = prepare_open_request(inode->i_sb, flags, 0);
409 if (IS_ERR(req)) {
410 err = PTR_ERR(req);
411 goto out;
412 }
Sage Weil70b666c2011-05-27 09:24:26 -0700413 req->r_inode = inode;
414 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400415
Sage Weil124e68e2009-10-06 11:31:08 -0700416 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800417 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700418 if (!err)
419 err = ceph_init_file(inode, file, req->r_fmode);
420 ceph_mdsc_put_request(req);
421 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
422out:
423 return err;
424}
425
426
427/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700428 * Do a lookup + open with a single request. If we get a non-existent
429 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700430 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700431int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400432 struct file *file, unsigned flags, umode_t mode,
Al Virod9585272012-06-22 12:39:14 +0400433 int *opened)
Sage Weil124e68e2009-10-06 11:31:08 -0700434{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700435 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
436 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700437 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700438 struct dentry *dn;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800439 struct ceph_acls_info acls = {};
Luis Henriquesb7a29212018-01-05 10:47:19 +0000440 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700441 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700442
Al Viroa4555892014-10-21 20:11:25 -0400443 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
444 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700445 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
446
447 if (dentry->d_name.len > NAME_MAX)
448 return -ENAMETOOLONG;
449
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800450 if (flags & O_CREAT) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000451 if (ceph_quota_is_max_files_exceeded(dir))
452 return -EDQUOT;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800453 err = ceph_pre_init_acls(dir, &mode, &acls);
454 if (err < 0)
455 return err;
456 }
457
Sage Weil124e68e2009-10-06 11:31:08 -0700458 /* do the open */
459 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800460 if (IS_ERR(req)) {
461 err = PTR_ERR(req);
462 goto out_acl;
463 }
Sage Weil124e68e2009-10-06 11:31:08 -0700464 req->r_dentry = dget(dentry);
465 req->r_num_caps = 2;
466 if (flags & O_CREAT) {
Yan, Zheng222b7f92017-11-23 17:47:15 +0800467 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil124e68e2009-10-06 11:31:08 -0700468 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800469 if (acls.pagelist) {
470 req->r_pagelist = acls.pagelist;
471 acls.pagelist = NULL;
472 }
Sage Weil124e68e2009-10-06 11:31:08 -0700473 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800474
475 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
476 if (ceph_security_xattr_wanted(dir))
477 mask |= CEPH_CAP_XATTR_SHARED;
478 req->r_args.open.mask = cpu_to_le32(mask);
479
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500480 req->r_parent = dir;
481 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700482 err = ceph_mdsc_do_request(mdsc,
483 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
484 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800485 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000486 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800487 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000488
Jianpeng Maa43137f2015-08-18 10:23:50 +0800489 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700490 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700491
Al Viro00699ad2016-07-05 09:44:53 -0400492 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700493 dn = ceph_finish_lookup(req, dentry, err);
494 if (IS_ERR(dn))
495 err = PTR_ERR(dn);
496 } else {
497 /* we were given a hashed negative dentry */
498 dn = NULL;
499 }
Sage Weil468640e2011-07-26 11:28:11 -0700500 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800501 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000502 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700503 /* make vfs retry on splice, ENOENT, or symlink */
504 dout("atomic_open finish_no_open on dn %p\n", dn);
505 err = finish_no_open(file, dn);
506 } else {
507 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800508 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
David Howells2b0143b2015-03-17 22:25:59 +0000509 ceph_init_inode_acls(d_inode(dentry), &acls);
Sam Lang6e8575f2012-12-28 09:56:46 -0800510 *opened |= FILE_CREATED;
511 }
Sage Weil5ef50c32012-07-31 11:27:36 -0700512 err = finish_open(file, dentry, ceph_open, opened);
513 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800514out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800515 if (!req->r_err && req->r_target_inode)
516 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700517 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800518out_acl:
519 ceph_release_acls_info(&acls);
Sage Weil5ef50c32012-07-31 11:27:36 -0700520 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400521 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700522}
523
524int ceph_release(struct inode *inode, struct file *file)
525{
526 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700527
Chengguang Xubb48bd42018-03-13 10:42:44 +0800528 if (S_ISDIR(inode->i_mode)) {
529 struct ceph_dir_file_info *dfi = file->private_data;
530 dout("release inode %p dir file %p\n", inode, file);
531 WARN_ON(!list_empty(&dfi->file_info.rw_contexts));
532
533 ceph_put_fmode(ci, dfi->file_info.fmode);
534
535 if (dfi->last_readdir)
536 ceph_mdsc_put_request(dfi->last_readdir);
537 kfree(dfi->last_name);
538 kfree(dfi->dir_info);
539 kmem_cache_free(ceph_dir_file_cachep, dfi);
540 } else {
541 struct ceph_file_info *fi = file->private_data;
542 dout("release inode %p regular file %p\n", inode, file);
543 WARN_ON(!list_empty(&fi->rw_contexts));
544
545 ceph_put_fmode(ci, fi->fmode);
546 kmem_cache_free(ceph_file_cachep, fi);
547 }
Sage Weil195d3ce2010-03-01 09:57:54 -0800548
549 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700550 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700551 return 0;
552}
553
Yan, Zheng83701242014-11-14 22:36:18 +0800554enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800555 HAVE_RETRIED = 1,
556 CHECK_EOF = 2,
557 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800558};
559
Sage Weil124e68e2009-10-06 11:31:08 -0700560/*
Sage Weil124e68e2009-10-06 11:31:08 -0700561 * Read a range of bytes striped over one or more objects. Iterate over
562 * objects we stripe over. (That's not atomic, but good enough for now.)
563 *
564 * If we get a short result from the OSD, check against i_size; we need to
565 * only return a short read to the caller if we hit EOF.
566 */
567static int striped_read(struct inode *inode,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800568 u64 pos, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800569 struct page **pages, int num_pages,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800570 int page_align, int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700571{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700572 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700573 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800574 u64 this_len;
Yan, Zheng99c88e62015-12-30 11:32:46 +0800575 loff_t i_size;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800576 int page_idx;
577 int ret, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700578 bool hit_stripe, was_short;
579
580 /*
581 * we may need to do multiple reads. not atomic, unfortunately.
582 */
Sage Weil124e68e2009-10-06 11:31:08 -0700583more:
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800584 this_len = len;
585 page_idx = (page_align + read) >> PAGE_SHIFT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700586 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700587 &ci->i_layout, pos, &this_len,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800588 ci->i_truncate_seq, ci->i_truncate_size,
589 pages + page_idx, num_pages - page_idx,
590 ((page_align + read) & ~PAGE_MASK));
Sage Weil124e68e2009-10-06 11:31:08 -0700591 if (ret == -ENOENT)
592 ret = 0;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800593 hit_stripe = this_len < len;
Sage Weil0e987282011-06-07 20:40:35 -0700594 was_short = ret >= 0 && ret < this_len;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800595 dout("striped_read %llu~%llu (read %u) got %d%s%s\n", pos, len, read,
Sage Weil124e68e2009-10-06 11:31:08 -0700596 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
597
Yan, Zheng99c88e62015-12-30 11:32:46 +0800598 i_size = i_size_read(inode);
majianpeng02ae66d2013-08-06 16:20:38 +0800599 if (ret >= 0) {
Yan, Zheng99c88e62015-12-30 11:32:46 +0800600 if (was_short && (pos + ret < i_size)) {
601 int zlen = min(this_len - ret, i_size - pos - ret);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800602 int zoff = page_align + read + ret;
majianpeng02ae66d2013-08-06 16:20:38 +0800603 dout(" zero gap %llu to %llu\n",
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800604 pos + ret, pos + ret + zlen);
Yan, Zheng1487a682015-01-06 15:29:14 +0800605 ceph_zero_page_vector_range(zoff, zlen, pages);
606 ret += zlen;
Sage Weil124e68e2009-10-06 11:31:08 -0700607 }
majianpeng02ae66d2013-08-06 16:20:38 +0800608
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800609 read += ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700610 pos += ret;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800611 len -= ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700612
majianpeng02ae66d2013-08-06 16:20:38 +0800613 /* hit stripe and need continue*/
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800614 if (len && hit_stripe && pos < i_size)
Sage Weil124e68e2009-10-06 11:31:08 -0700615 goto more;
616 }
617
majianpengee7289b2013-08-21 15:02:51 +0800618 if (read > 0) {
majianpeng02ae66d2013-08-06 16:20:38 +0800619 ret = read;
Sage Weilc3cd6282011-06-01 16:08:44 -0700620 /* did we bounce off eof? */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800621 if (pos + len > i_size)
Yan, Zheng83701242014-11-14 22:36:18 +0800622 *checkeof = CHECK_EOF;
Sage Weil124e68e2009-10-06 11:31:08 -0700623 }
624
Sage Weil124e68e2009-10-06 11:31:08 -0700625 dout("striped_read returns %d\n", ret);
626 return ret;
627}
628
629/*
630 * Completely synchronous read and write methods. Direct from __user
631 * buffer to osd, or directly to user pages (if O_DIRECT).
632 *
633 * If the read spans object boundary, just do multiple reads.
634 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800635static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
636 int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700637{
majianpeng8eb4efb2013-09-26 14:42:17 +0800638 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500639 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700640 struct page **pages;
majianpeng8eb4efb2013-09-26 14:42:17 +0800641 u64 off = iocb->ki_pos;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800642 int num_pages;
643 ssize_t ret;
644 size_t len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700645
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800646 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700647 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800648
649 if (!len)
650 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800651 /*
652 * flush any page cache pages in this range. this
653 * will make concurrent normal and sync io slow,
654 * but it will at least behave sensibly when they are
655 * in sequence.
656 */
majianpeng8eb4efb2013-09-26 14:42:17 +0800657 ret = filemap_write_and_wait_range(inode->i_mapping, off,
658 off + len);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800659 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800660 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800661
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800662 if (unlikely(to->type & ITER_PIPE)) {
663 size_t page_off;
664 ret = iov_iter_get_pages_alloc(to, &pages, len,
665 &page_off);
666 if (ret <= 0)
667 return -ENOMEM;
668 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
Sage Weil124e68e2009-10-06 11:31:08 -0700669
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800670 ret = striped_read(inode, off, ret, pages, num_pages,
671 page_off, checkeof);
672 if (ret > 0) {
673 iov_iter_advance(to, ret);
674 off += ret;
675 } else {
676 iov_iter_advance(to, 0);
majianpeng8eb4efb2013-09-26 14:42:17 +0800677 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800678 ceph_put_page_vector(pages, num_pages, false);
679 } else {
680 num_pages = calc_pages_for(off, len);
681 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
682 if (IS_ERR(pages))
683 return PTR_ERR(pages);
684
685 ret = striped_read(inode, off, len, pages, num_pages,
686 (off & ~PAGE_MASK), checkeof);
687 if (ret > 0) {
688 int l, k = 0;
689 size_t left = ret;
690
691 while (left) {
692 size_t page_off = off & ~PAGE_MASK;
693 size_t copy = min_t(size_t, left,
694 PAGE_SIZE - page_off);
695 l = copy_page_to_iter(pages[k++], page_off,
696 copy, to);
697 off += l;
698 left -= l;
699 if (l < copy)
700 break;
701 }
702 }
703 ceph_release_page_vector(pages, num_pages);
majianpeng8eb4efb2013-09-26 14:42:17 +0800704 }
705
706 if (off > iocb->ki_pos) {
707 ret = off - iocb->ki_pos;
708 iocb->ki_pos = off;
709 }
710
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800711 dout("sync_read result %zd\n", ret);
Sage Weil124e68e2009-10-06 11:31:08 -0700712 return ret;
713}
714
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800715struct ceph_aio_request {
716 struct kiocb *iocb;
717 size_t total_len;
Yan, Zheng85784f92018-03-16 11:22:29 +0800718 bool write;
719 bool should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800720 int error;
721 struct list_head osd_reqs;
722 unsigned num_reqs;
723 atomic_t pending_reqs;
Yan, Zheng5be03892015-12-24 08:44:20 +0800724 struct timespec mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800725 struct ceph_cap_flush *prealloc_cf;
726};
727
Yan, Zheng5be03892015-12-24 08:44:20 +0800728struct ceph_aio_work {
729 struct work_struct work;
730 struct ceph_osd_request *req;
731};
732
733static void ceph_aio_retry_work(struct work_struct *work);
734
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800735static void ceph_aio_complete(struct inode *inode,
736 struct ceph_aio_request *aio_req)
737{
738 struct ceph_inode_info *ci = ceph_inode(inode);
739 int ret;
740
741 if (!atomic_dec_and_test(&aio_req->pending_reqs))
742 return;
743
744 ret = aio_req->error;
745 if (!ret)
746 ret = aio_req->total_len;
747
748 dout("ceph_aio_complete %p rc %d\n", inode, ret);
749
750 if (ret >= 0 && aio_req->write) {
751 int dirty;
752
753 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
754 if (endoff > i_size_read(inode)) {
755 if (ceph_inode_set_size(inode, endoff))
756 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
757 }
758
759 spin_lock(&ci->i_ceph_lock);
760 ci->i_inline_version = CEPH_INLINE_NONE;
761 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
762 &aio_req->prealloc_cf);
763 spin_unlock(&ci->i_ceph_lock);
764 if (dirty)
765 __mark_inode_dirty(inode, dirty);
766
767 }
768
769 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
770 CEPH_CAP_FILE_RD));
771
772 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
773
774 ceph_free_cap_flush(aio_req->prealloc_cf);
775 kfree(aio_req);
776}
777
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200778static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800779{
780 int rc = req->r_result;
781 struct inode *inode = req->r_inode;
782 struct ceph_aio_request *aio_req = req->r_priv;
783 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800784
Ilya Dryomovfc218542018-05-04 16:57:31 +0200785 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_BVECS);
786 BUG_ON(!osd_data->num_bvecs);
787
788 dout("ceph_aio_complete_req %p rc %d bytes %u\n",
789 inode, rc, osd_data->bvec_pos.iter.bi_size);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800790
791 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800792 struct ceph_aio_work *aio_work;
793 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800794
Yan, Zheng5be03892015-12-24 08:44:20 +0800795 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
796 if (aio_work) {
797 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
798 aio_work->req = req;
799 queue_work(ceph_inode_to_client(inode)->wb_wq,
800 &aio_work->work);
801 return;
802 }
803 rc = -ENOMEM;
804 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800805 if (rc == -ENOENT)
806 rc = 0;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200807 if (rc >= 0 && osd_data->bvec_pos.iter.bi_size > rc) {
808 struct iov_iter i;
809 int zlen = osd_data->bvec_pos.iter.bi_size - rc;
810
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800811 /*
812 * If read is satisfied by single OSD request,
813 * it can pass EOF. Otherwise read is within
814 * i_size.
815 */
816 if (aio_req->num_reqs == 1) {
817 loff_t i_size = i_size_read(inode);
818 loff_t endoff = aio_req->iocb->ki_pos + rc;
819 if (endoff < i_size)
820 zlen = min_t(size_t, zlen,
821 i_size - endoff);
822 aio_req->total_len = rc + zlen;
823 }
824
Ilya Dryomovfc218542018-05-04 16:57:31 +0200825 iov_iter_bvec(&i, ITER_BVEC, osd_data->bvec_pos.bvecs,
826 osd_data->num_bvecs,
827 osd_data->bvec_pos.iter.bi_size);
828 iov_iter_advance(&i, rc);
829 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800830 }
831 }
832
Ilya Dryomovfc218542018-05-04 16:57:31 +0200833 put_bvecs(osd_data->bvec_pos.bvecs, osd_data->num_bvecs,
834 aio_req->should_dirty);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800835 ceph_osdc_put_request(req);
836
837 if (rc < 0)
838 cmpxchg(&aio_req->error, 0, rc);
839
840 ceph_aio_complete(inode, aio_req);
841 return;
842}
843
Yan, Zheng5be03892015-12-24 08:44:20 +0800844static void ceph_aio_retry_work(struct work_struct *work)
845{
846 struct ceph_aio_work *aio_work =
847 container_of(work, struct ceph_aio_work, work);
848 struct ceph_osd_request *orig_req = aio_work->req;
849 struct ceph_aio_request *aio_req = orig_req->r_priv;
850 struct inode *inode = orig_req->r_inode;
851 struct ceph_inode_info *ci = ceph_inode(inode);
852 struct ceph_snap_context *snapc;
853 struct ceph_osd_request *req;
854 int ret;
855
856 spin_lock(&ci->i_ceph_lock);
857 if (__ceph_have_pending_cap_snap(ci)) {
858 struct ceph_cap_snap *capsnap =
859 list_last_entry(&ci->i_cap_snaps,
860 struct ceph_cap_snap,
861 ci_item);
862 snapc = ceph_get_snap_context(capsnap->context);
863 } else {
864 BUG_ON(!ci->i_head_snapc);
865 snapc = ceph_get_snap_context(ci->i_head_snapc);
866 }
867 spin_unlock(&ci->i_ceph_lock);
868
869 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 2,
870 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +0300871 if (!req) {
872 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +0800873 req = orig_req;
874 goto out;
875 }
876
Yan, Zhengb178cf42017-08-16 17:27:05 +0800877 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200878 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200879 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +0800880
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200881 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
882 if (ret) {
883 ceph_osdc_put_request(req);
884 req = orig_req;
885 goto out;
886 }
Yan, Zheng5be03892015-12-24 08:44:20 +0800887
888 req->r_ops[0] = orig_req->r_ops[0];
Yan, Zheng5be03892015-12-24 08:44:20 +0800889
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200890 req->r_mtime = aio_req->mtime;
891 req->r_data_offset = req->r_ops[0].extent.offset;
Yan, Zheng5be03892015-12-24 08:44:20 +0800892
Yan, Zheng5be03892015-12-24 08:44:20 +0800893 ceph_osdc_put_request(orig_req);
894
895 req->r_callback = ceph_aio_complete_req;
896 req->r_inode = inode;
897 req->r_priv = aio_req;
Jeff Laytona1f40202017-04-04 08:39:37 -0400898 req->r_abort_on_full = true;
Yan, Zheng5be03892015-12-24 08:44:20 +0800899
900 ret = ceph_osdc_start_request(req->r_osdc, req, false);
901out:
902 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800903 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200904 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +0800905 }
906
Yan, Zhengdb6aed72016-01-26 23:05:37 +0800907 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +0800908 kfree(aio_work);
909}
910
majianpenge8344e62013-09-12 13:54:26 +0800911static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800912ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
913 struct ceph_snap_context *snapc,
914 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -0700915{
majianpenge8344e62013-09-12 13:54:26 +0800916 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500917 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700918 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700919 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500920 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700921 struct ceph_osd_request *req;
Ilya Dryomovfc218542018-05-04 16:57:31 +0200922 struct bio_vec *bvecs;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800923 struct ceph_aio_request *aio_req = NULL;
924 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700925 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700926 int ret;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700927 struct timespec mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800928 size_t count = iov_iter_count(iter);
929 loff_t pos = iocb->ki_pos;
930 bool write = iov_iter_rw(iter) == WRITE;
Yan, Zheng85784f92018-03-16 11:22:29 +0800931 bool should_dirty = !write && iter_is_iovec(iter);
Sage Weil124e68e2009-10-06 11:31:08 -0700932
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800933 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700934 return -EROFS;
935
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800936 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
937 (write ? "write" : "read"), file, pos, (unsigned)count,
938 snapc, snapc->seq);
Sage Weil124e68e2009-10-06 11:31:08 -0700939
majianpenge8344e62013-09-12 13:54:26 +0800940 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800941 if (ret < 0)
942 return ret;
943
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800944 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800945 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300946 pos >> PAGE_SHIFT,
947 (pos + count) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800948 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +0100949 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800950
Yan, Zhengb178cf42017-08-16 17:27:05 +0800951 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800952 } else {
953 flags = CEPH_OSD_FLAG_READ;
954 }
Sage Weil124e68e2009-10-06 11:31:08 -0700955
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800956 while (iov_iter_count(iter) > 0) {
Ilya Dryomovfc218542018-05-04 16:57:31 +0200957 u64 size = iov_iter_count(iter);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800958 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +0800959
Ilya Dryomov3a15b382018-05-03 16:10:09 +0200960 if (write)
961 size = min_t(u64, size, fsc->mount_options->wsize);
962 else
963 size = min_t(u64, size, fsc->mount_options->rsize);
964
majianpenge8344e62013-09-12 13:54:26 +0800965 vino = ceph_vino(inode);
966 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800967 vino, pos, &size, 0,
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800968 1,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800969 write ? CEPH_OSD_OP_WRITE :
970 CEPH_OSD_OP_READ,
971 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +0800972 ci->i_truncate_seq,
973 ci->i_truncate_size,
974 false);
975 if (IS_ERR(req)) {
976 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400977 break;
majianpenge8344e62013-09-12 13:54:26 +0800978 }
979
Ilya Dryomovfc218542018-05-04 16:57:31 +0200980 len = iter_get_bvecs_alloc(iter, size, &bvecs, &num_pages);
981 if (len < 0) {
Al Viro64c31312014-04-03 22:58:25 -0400982 ceph_osdc_put_request(req);
Ilya Dryomovfc218542018-05-04 16:57:31 +0200983 ret = len;
Al Viro64c31312014-04-03 22:58:25 -0400984 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700985 }
Ilya Dryomovfc218542018-05-04 16:57:31 +0200986 if (len != size)
987 osd_req_op_extent_update(req, 0, len);
Sage Weil124e68e2009-10-06 11:31:08 -0700988
989 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800990 * To simplify error handling, allow AIO when IO within i_size
991 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -0700992 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800993 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
994 (len == count || pos + count <= i_size_read(inode))) {
995 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
996 if (aio_req) {
997 aio_req->iocb = iocb;
998 aio_req->write = write;
Yan, Zheng85784f92018-03-16 11:22:29 +0800999 aio_req->should_dirty = should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001000 INIT_LIST_HEAD(&aio_req->osd_reqs);
1001 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +08001002 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001003 swap(aio_req->prealloc_cf, *pcf);
1004 }
1005 }
1006 /* ignore error */
1007 }
majianpenge8344e62013-09-12 13:54:26 +08001008
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001009 if (write) {
1010 /*
1011 * throw out any page cache pages in this range. this
1012 * may block.
1013 */
1014 truncate_inode_pages_range(inode->i_mapping, pos,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001015 (pos+len) | (PAGE_SIZE - 1));
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001016
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001017 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001018 }
1019
Ilya Dryomovfc218542018-05-04 16:57:31 +02001020 osd_req_op_extent_osd_data_bvecs(req, 0, bvecs, num_pages, len);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001021
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001022 if (aio_req) {
1023 aio_req->total_len += len;
1024 aio_req->num_reqs++;
1025 atomic_inc(&aio_req->pending_reqs);
1026
1027 req->r_callback = ceph_aio_complete_req;
1028 req->r_inode = inode;
1029 req->r_priv = aio_req;
1030 list_add_tail(&req->r_unsafe_item, &aio_req->osd_reqs);
1031
1032 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001033 continue;
1034 }
1035
1036 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +08001037 if (!ret)
1038 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1039
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001040 size = i_size_read(inode);
1041 if (!write) {
1042 if (ret == -ENOENT)
1043 ret = 0;
1044 if (ret >= 0 && ret < len && pos + ret < size) {
Ilya Dryomovfc218542018-05-04 16:57:31 +02001045 struct iov_iter i;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001046 int zlen = min_t(size_t, len - ret,
1047 size - pos - ret);
Ilya Dryomovfc218542018-05-04 16:57:31 +02001048
1049 iov_iter_bvec(&i, ITER_BVEC, bvecs, num_pages,
1050 len);
1051 iov_iter_advance(&i, ret);
1052 iov_iter_zero(zlen, &i);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001053 ret += zlen;
1054 }
1055 if (ret >= 0)
1056 len = ret;
1057 }
1058
Ilya Dryomovfc218542018-05-04 16:57:31 +02001059 put_bvecs(bvecs, num_pages, should_dirty);
majianpenge8344e62013-09-12 13:54:26 +08001060 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001061 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +08001062 break;
Al Viro64c31312014-04-03 22:58:25 -04001063
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001064 pos += len;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001065 if (!write && pos >= size)
1066 break;
1067
1068 if (write && pos > size) {
1069 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -04001070 ceph_check_caps(ceph_inode(inode),
1071 CHECK_CAPS_AUTHONLY,
1072 NULL);
1073 }
majianpenge8344e62013-09-12 13:54:26 +08001074 }
1075
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001076 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001077 LIST_HEAD(osd_reqs);
1078
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001079 if (aio_req->num_reqs == 0) {
1080 kfree(aio_req);
1081 return ret;
1082 }
1083
1084 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1085 CEPH_CAP_FILE_RD);
1086
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001087 list_splice(&aio_req->osd_reqs, &osd_reqs);
1088 while (!list_empty(&osd_reqs)) {
1089 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001090 struct ceph_osd_request,
1091 r_unsafe_item);
1092 list_del_init(&req->r_unsafe_item);
1093 if (ret >= 0)
1094 ret = ceph_osdc_start_request(req->r_osdc,
1095 req, false);
1096 if (ret < 0) {
1097 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001098 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001099 }
1100 }
1101 return -EIOCBQUEUED;
1102 }
1103
1104 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1105 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +08001106 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +08001107 }
1108 return ret;
1109}
1110
majianpenge8344e62013-09-12 13:54:26 +08001111/*
1112 * Synchronous write, straight from __user pointer or user pages.
1113 *
1114 * If write spans object boundary, just do multiple writes. (For a
1115 * correct atomic write, we should e.g. take write locks on all
1116 * objects, rollback on failure, etc.)
1117 */
Yan, Zheng06fee302014-07-28 14:33:46 +08001118static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001119ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1120 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +08001121{
1122 struct file *file = iocb->ki_filp;
1123 struct inode *inode = file_inode(file);
1124 struct ceph_inode_info *ci = ceph_inode(inode);
1125 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001126 struct ceph_vino vino;
1127 struct ceph_osd_request *req;
1128 struct page **pages;
1129 u64 len;
1130 int num_pages;
1131 int written = 0;
1132 int flags;
majianpenge8344e62013-09-12 13:54:26 +08001133 int ret;
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001134 bool check_caps = false;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001135 struct timespec mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001136 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001137
1138 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1139 return -EROFS;
1140
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001141 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1142 file, pos, (unsigned)count, snapc, snapc->seq);
majianpenge8344e62013-09-12 13:54:26 +08001143
1144 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
1145 if (ret < 0)
1146 return ret;
1147
1148 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001149 pos >> PAGE_SHIFT,
1150 (pos + count) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001151 if (ret < 0)
1152 dout("invalidate_inode_pages2_range returned %d\n", ret);
1153
Yan, Zhengb178cf42017-08-16 17:27:05 +08001154 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001155
Al Viro4908b822014-04-03 23:09:01 -04001156 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001157 size_t left;
1158 int n;
1159
majianpenge8344e62013-09-12 13:54:26 +08001160 vino = ceph_vino(inode);
1161 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001162 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001163 CEPH_OSD_OP_WRITE, flags, snapc,
1164 ci->i_truncate_seq,
1165 ci->i_truncate_size,
1166 false);
1167 if (IS_ERR(req)) {
1168 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001169 break;
majianpenge8344e62013-09-12 13:54:26 +08001170 }
1171
1172 /*
1173 * write from beginning of first page,
1174 * regardless of io alignment
1175 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001176 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001177
Yan, Zheng687265e2015-06-13 17:27:05 +08001178 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001179 if (IS_ERR(pages)) {
1180 ret = PTR_ERR(pages);
1181 goto out;
1182 }
majianpenge8344e62013-09-12 13:54:26 +08001183
1184 left = len;
1185 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001186 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001187 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001188 if (ret != plen) {
1189 ret = -EFAULT;
1190 break;
1191 }
1192 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001193 }
1194
Sage Weil124e68e2009-10-06 11:31:08 -07001195 if (ret < 0) {
1196 ceph_release_page_vector(pages, num_pages);
1197 goto out;
1198 }
1199
majianpenge8344e62013-09-12 13:54:26 +08001200 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001201
majianpenge8344e62013-09-12 13:54:26 +08001202 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1203 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001204
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001205 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001206 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1207 if (!ret)
1208 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001209
1210out:
majianpenge8344e62013-09-12 13:54:26 +08001211 ceph_osdc_put_request(req);
Jeff Layton26544c622017-04-04 08:39:46 -04001212 if (ret != 0) {
1213 ceph_set_error_write(ci);
majianpenge8344e62013-09-12 13:54:26 +08001214 break;
Jeff Layton26544c622017-04-04 08:39:46 -04001215 }
1216
1217 ceph_clear_error_write(ci);
1218 pos += len;
1219 written += len;
1220 if (pos > i_size_read(inode)) {
1221 check_caps = ceph_inode_set_size(inode, pos);
1222 if (check_caps)
1223 ceph_check_caps(ceph_inode(inode),
1224 CHECK_CAPS_AUTHONLY,
1225 NULL);
1226 }
1227
majianpenge8344e62013-09-12 13:54:26 +08001228 }
1229
1230 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001231 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001232 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001233 }
1234 return ret;
1235}
1236
1237/*
1238 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1239 * Atomically grab references, so that those bits are not released
1240 * back to the MDS mid-read.
1241 *
1242 * Hmm, the sync read case isn't actually async... should it be?
1243 */
Al Viro36444242014-04-02 20:28:01 -04001244static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001245{
1246 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001247 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001248 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001249 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001250 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001251 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001252 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001253 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001254 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001255
Sage Weil6a026582010-02-09 14:04:02 -08001256again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001257 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1258 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1259
Sage Weil29625072010-05-27 10:40:43 -07001260 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1261 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1262 else
1263 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001264 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -07001265 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +08001266 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001267
Sage Weil29625072010-05-27 10:40:43 -07001268 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001269 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001270 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001271
majianpeng8eb4efb2013-09-26 14:42:17 +08001272 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1273 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1274 ceph_cap_string(got));
1275
Yan, Zheng83701242014-11-14 22:36:18 +08001276 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001277 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1278 ret = ceph_direct_read_write(iocb, to,
1279 NULL, NULL);
1280 if (ret >= 0 && ret < len)
1281 retry_op = CHECK_EOF;
1282 } else {
1283 ret = ceph_sync_read(iocb, to, &retry_op);
1284 }
Yan, Zheng83701242014-11-14 22:36:18 +08001285 } else {
1286 retry_op = READ_INLINE;
1287 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001288 } else {
Yan, Zheng5d988302017-12-15 11:15:36 +08001289 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
majianpeng8eb4efb2013-09-26 14:42:17 +08001290 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001291 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001292 ceph_cap_string(got));
Yan, Zheng5d988302017-12-15 11:15:36 +08001293 ceph_add_rw_context(fi, &rw_ctx);
Al Viro36444242014-04-02 20:28:01 -04001294 ret = generic_file_read_iter(iocb, to);
Yan, Zheng5d988302017-12-15 11:15:36 +08001295 ceph_del_rw_context(fi, &rw_ctx);
majianpeng8eb4efb2013-09-26 14:42:17 +08001296 }
Sage Weil124e68e2009-10-06 11:31:08 -07001297 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1298 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001299 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001300 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001301 pinned_page = NULL;
1302 }
Sage Weil124e68e2009-10-06 11:31:08 -07001303 ceph_put_cap_refs(ci, got);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001304 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001305 int statret;
1306 struct page *page = NULL;
1307 loff_t i_size;
1308 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001309 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001310 if (!page)
1311 return -ENOMEM;
1312 }
Sage Weil6a026582010-02-09 14:04:02 -08001313
Yan, Zheng83701242014-11-14 22:36:18 +08001314 statret = __ceph_do_getattr(inode, page,
1315 CEPH_STAT_CAP_INLINE_DATA, !!page);
1316 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001317 if (page)
1318 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001319 if (statret == -ENODATA) {
1320 BUG_ON(retry_op != READ_INLINE);
1321 goto again;
1322 }
1323 return statret;
1324 }
1325
1326 i_size = i_size_read(inode);
1327 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001328 BUG_ON(ret > 0 || read > 0);
1329 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001330 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001331 loff_t end = min_t(loff_t, i_size,
1332 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001333 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001334 if (statret < end)
1335 zero_user_segment(page, statret, end);
1336 ret = copy_page_to_iter(page,
1337 iocb->ki_pos & ~PAGE_MASK,
1338 end - iocb->ki_pos, to);
1339 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001340 read += ret;
1341 }
1342 if (iocb->ki_pos < i_size && read < len) {
1343 size_t zlen = min_t(size_t, len - read,
1344 i_size - iocb->ki_pos);
1345 ret = iov_iter_zero(zlen, to);
1346 iocb->ki_pos += ret;
1347 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001348 }
1349 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001350 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001351 }
Sage Weil6a026582010-02-09 14:04:02 -08001352
1353 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001354 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001355 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001356 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001357 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001358
Sage Weil6a026582010-02-09 14:04:02 -08001359 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001360 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001361 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001362 goto again;
1363 }
1364 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001365
Sage Weil6a026582010-02-09 14:04:02 -08001366 if (ret >= 0)
1367 ret += read;
1368
Sage Weil124e68e2009-10-06 11:31:08 -07001369 return ret;
1370}
1371
1372/*
1373 * Take cap references to avoid releasing caps to MDS mid-write.
1374 *
1375 * If we are synchronous, and write with an old snap context, the OSD
1376 * may return EOLDSNAPC. In that case, retry the write.. _after_
1377 * dropping our cap refs and allowing the pending snap to logically
1378 * complete _before_ this write occurs.
1379 *
1380 * If we are near ENOSPC, write synchronously.
1381 */
Al Viro4908b822014-04-03 23:09:01 -04001382static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001383{
1384 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001385 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001386 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001387 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001388 struct ceph_osd_client *osdc =
1389 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001390 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001391 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001392 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -04001393 loff_t pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001394
1395 if (ceph_snap(inode) != CEPH_NOSNAP)
1396 return -EROFS;
1397
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001398 prealloc_cf = ceph_alloc_cap_flush();
1399 if (!prealloc_cf)
1400 return -ENOMEM;
1401
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001402retry_snap:
Al Viro59551022016-01-22 15:40:57 -05001403 inode_lock(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001404
Yan, Zheng03d254e2013-04-12 16:11:13 +08001405 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001406 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001407
Yan, Zheng55b0b312015-09-07 11:35:01 +08001408 if (iocb->ki_flags & IOCB_APPEND) {
1409 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1410 if (err < 0)
1411 goto out;
1412 }
1413
Al Viro3309dd02015-04-09 12:55:47 -04001414 err = generic_write_checks(iocb, from);
1415 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001416 goto out;
1417
Al Viro3309dd02015-04-09 12:55:47 -04001418 pos = iocb->ki_pos;
1419 count = iov_iter_count(from);
Luis Henriques2b838452018-01-05 10:47:21 +00001420 if (ceph_quota_is_max_bytes_exceeded(inode, pos + count)) {
1421 err = -EDQUOT;
1422 goto out;
1423 }
1424
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001425 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001426 if (err)
1427 goto out;
1428
1429 err = file_update_time(file);
1430 if (err)
1431 goto out;
1432
Yan, Zheng28127bd2014-11-14 22:38:29 +08001433 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1434 err = ceph_uninline_data(file, NULL);
1435 if (err < 0)
1436 goto out;
1437 }
1438
Jeff Layton26544c622017-04-04 08:39:46 -04001439 /* FIXME: not complete since it doesn't account for being at quota */
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001440 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001441 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001442 goto out;
1443 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001444
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001445 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001446 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001447 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1448 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1449 else
1450 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001451 got = 0;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001452 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, pos + count,
1453 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001454 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001455 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001456
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001457 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001458 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001459
1460 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Jeff Layton26544c622017-04-04 08:39:46 -04001461 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1462 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001463 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001464 struct iov_iter data;
Al Viro59551022016-01-22 15:40:57 -05001465 inode_unlock(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001466
1467 spin_lock(&ci->i_ceph_lock);
1468 if (__ceph_have_pending_cap_snap(ci)) {
1469 struct ceph_cap_snap *capsnap =
1470 list_last_entry(&ci->i_cap_snaps,
1471 struct ceph_cap_snap,
1472 ci_item);
1473 snapc = ceph_get_snap_context(capsnap->context);
1474 } else {
1475 BUG_ON(!ci->i_head_snapc);
1476 snapc = ceph_get_snap_context(ci->i_head_snapc);
1477 }
1478 spin_unlock(&ci->i_ceph_lock);
1479
Al Viro4908b822014-04-03 23:09:01 -04001480 /* we might need to revert back to that point */
1481 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001482 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001483 written = ceph_direct_read_write(iocb, &data, snapc,
1484 &prealloc_cf);
majianpenge8344e62013-09-12 13:54:26 +08001485 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001486 written = ceph_sync_write(iocb, &data, pos, snapc);
Al Viro4908b822014-04-03 23:09:01 -04001487 if (written > 0)
1488 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001489 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001490 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001491 /*
1492 * No need to acquire the i_truncate_mutex. Because
1493 * the MDS revokes Fwb caps before sending truncate
1494 * message to us. We can't get Fwb cap while there
1495 * are pending vmtruncate. So write and vmtruncate
1496 * can not run at the same time
1497 */
Al Viro4908b822014-04-03 23:09:01 -04001498 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001499 if (likely(written >= 0))
1500 iocb->ki_pos = pos + written;
Al Viro59551022016-01-22 15:40:57 -05001501 inode_unlock(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001502 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001503
Yan, Zheng03d254e2013-04-12 16:11:13 +08001504 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001505 int dirty;
Luis Henriques1ab302a2018-01-05 10:47:22 +00001506
Sage Weilbe655592011-11-30 09:47:09 -08001507 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001508 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001509 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1510 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001511 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001512 if (dirty)
1513 __mark_inode_dirty(inode, dirty);
Luis Henriques1ab302a2018-01-05 10:47:22 +00001514 if (ceph_quota_is_max_bytes_approaching(inode, iocb->ki_pos))
1515 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
Sage Weil124e68e2009-10-06 11:31:08 -07001516 }
Sage Weil7971bd92013-05-01 21:15:58 -07001517
Sage Weil124e68e2009-10-06 11:31:08 -07001518 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001519 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001520 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001521 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001522
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001523 if (written == -EOLDSNAPC) {
1524 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1525 inode, ceph_vinop(inode), pos, (unsigned)count);
1526 goto retry_snap;
1527 }
1528
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001529 if (written >= 0) {
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001530 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001531 iocb->ki_flags |= IOCB_DSYNC;
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001532 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001533 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001534
Sage Weil2f75e9e2013-08-09 09:57:58 -07001535 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001536
Sage Weil2f75e9e2013-08-09 09:57:58 -07001537out:
Al Viro59551022016-01-22 15:40:57 -05001538 inode_unlock(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001539out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001540 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001541 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001542 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001543}
1544
1545/*
1546 * llseek. be sure to verify file size on SEEK_END.
1547 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001548static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001549{
1550 struct inode *inode = file->f_mapping->host;
Yan, Zheng99c88e62015-12-30 11:32:46 +08001551 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001552 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001553
Al Viro59551022016-01-22 15:40:57 -05001554 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001555
Andrew Morton965c8e52012-12-17 15:59:39 -08001556 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001557 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001558 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001559 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001560 }
1561
Yan, Zheng99c88e62015-12-30 11:32:46 +08001562 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001563 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001564 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001565 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001566 break;
1567 case SEEK_CUR:
1568 /*
1569 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1570 * position-querying operation. Avoid rewriting the "same"
1571 * f_pos value back to the file because a concurrent read(),
1572 * write() or lseek() might have altered it
1573 */
1574 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001575 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001576 goto out;
1577 }
1578 offset += file->f_pos;
1579 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001580 case SEEK_DATA:
Luis Henriques397f2382017-07-28 11:56:40 +01001581 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001582 ret = -ENXIO;
1583 goto out;
1584 }
1585 break;
1586 case SEEK_HOLE:
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 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001591 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001592 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001593 }
1594
Phil Turnbull955818c2016-07-21 13:43:09 -04001595 ret = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Sage Weil124e68e2009-10-06 11:31:08 -07001596
1597out:
Al Viro59551022016-01-22 15:40:57 -05001598 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001599 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001600}
1601
Li Wangad7a60d2013-08-15 11:51:44 +08001602static inline void ceph_zero_partial_page(
1603 struct inode *inode, loff_t offset, unsigned size)
1604{
1605 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001606 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001607
1608 page = find_lock_page(inode->i_mapping, index);
1609 if (page) {
1610 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001611 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001612 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001613 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001614 }
1615}
1616
1617static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1618 loff_t length)
1619{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001620 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001621 if (offset < nearly) {
1622 loff_t size = nearly - offset;
1623 if (length < size)
1624 size = length;
1625 ceph_zero_partial_page(inode, offset, size);
1626 offset += size;
1627 length -= size;
1628 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001629 if (length >= PAGE_SIZE) {
1630 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001631 truncate_pagecache_range(inode, offset, offset + size - 1);
1632 offset += size;
1633 length -= size;
1634 }
1635 if (length)
1636 ceph_zero_partial_page(inode, offset, length);
1637}
1638
1639static int ceph_zero_partial_object(struct inode *inode,
1640 loff_t offset, loff_t *length)
1641{
1642 struct ceph_inode_info *ci = ceph_inode(inode);
1643 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1644 struct ceph_osd_request *req;
1645 int ret = 0;
1646 loff_t zero = 0;
1647 int op;
1648
1649 if (!length) {
1650 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1651 length = &zero;
1652 } else {
1653 op = CEPH_OSD_OP_ZERO;
1654 }
1655
1656 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1657 ceph_vino(inode),
1658 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001659 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001660 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001661 NULL, 0, 0, false);
1662 if (IS_ERR(req)) {
1663 ret = PTR_ERR(req);
1664 goto out;
1665 }
1666
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001667 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001668 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1669 if (!ret) {
1670 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1671 if (ret == -ENOENT)
1672 ret = 0;
1673 }
1674 ceph_osdc_put_request(req);
1675
1676out:
1677 return ret;
1678}
1679
1680static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1681{
1682 int ret = 0;
1683 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001684 s32 stripe_unit = ci->i_layout.stripe_unit;
1685 s32 stripe_count = ci->i_layout.stripe_count;
1686 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001687 u64 object_set_size = object_size * stripe_count;
1688 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001689
Sage Weilb314a902013-08-27 12:15:16 -07001690 /* round offset up to next period boundary */
1691 nearly = offset + object_set_size - 1;
1692 t = nearly;
1693 nearly -= do_div(t, object_set_size);
1694
Li Wangad7a60d2013-08-15 11:51:44 +08001695 while (length && offset < nearly) {
1696 loff_t size = length;
1697 ret = ceph_zero_partial_object(inode, offset, &size);
1698 if (ret < 0)
1699 return ret;
1700 offset += size;
1701 length -= size;
1702 }
1703 while (length >= object_set_size) {
1704 int i;
1705 loff_t pos = offset;
1706 for (i = 0; i < stripe_count; ++i) {
1707 ret = ceph_zero_partial_object(inode, pos, NULL);
1708 if (ret < 0)
1709 return ret;
1710 pos += stripe_unit;
1711 }
1712 offset += object_set_size;
1713 length -= object_set_size;
1714 }
1715 while (length) {
1716 loff_t size = length;
1717 ret = ceph_zero_partial_object(inode, offset, &size);
1718 if (ret < 0)
1719 return ret;
1720 offset += size;
1721 length -= size;
1722 }
1723 return ret;
1724}
1725
1726static long ceph_fallocate(struct file *file, int mode,
1727 loff_t offset, loff_t length)
1728{
1729 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001730 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001731 struct ceph_inode_info *ci = ceph_inode(inode);
1732 struct ceph_osd_client *osdc =
1733 &ceph_inode_to_client(inode)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001734 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001735 int want, got = 0;
1736 int dirty;
1737 int ret = 0;
1738 loff_t endoff = 0;
1739 loff_t size;
1740
Yan, Zheng494d77b2014-06-26 15:25:17 +08001741 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
1742 return -EOPNOTSUPP;
1743
Li Wangad7a60d2013-08-15 11:51:44 +08001744 if (!S_ISREG(inode->i_mode))
1745 return -EOPNOTSUPP;
1746
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001747 prealloc_cf = ceph_alloc_cap_flush();
1748 if (!prealloc_cf)
1749 return -ENOMEM;
1750
Al Viro59551022016-01-22 15:40:57 -05001751 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08001752
1753 if (ceph_snap(inode) != CEPH_NOSNAP) {
1754 ret = -EROFS;
1755 goto unlock;
1756 }
1757
Luis Henriques2b838452018-01-05 10:47:21 +00001758 if (!(mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE)) &&
1759 ceph_quota_is_max_bytes_exceeded(inode, offset + length)) {
1760 ret = -EDQUOT;
1761 goto unlock;
1762 }
1763
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001764 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) &&
1765 !(mode & FALLOC_FL_PUNCH_HOLE)) {
Li Wangad7a60d2013-08-15 11:51:44 +08001766 ret = -ENOSPC;
1767 goto unlock;
1768 }
1769
Yan, Zheng28127bd2014-11-14 22:38:29 +08001770 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1771 ret = ceph_uninline_data(file, NULL);
1772 if (ret < 0)
1773 goto unlock;
1774 }
1775
Li Wangad7a60d2013-08-15 11:51:44 +08001776 size = i_size_read(inode);
Luis Henriques42c99fc2017-05-05 18:28:44 +01001777 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
Li Wangad7a60d2013-08-15 11:51:44 +08001778 endoff = offset + length;
Luis Henriques42c99fc2017-05-05 18:28:44 +01001779 ret = inode_newsize_ok(inode, endoff);
1780 if (ret)
1781 goto unlock;
1782 }
Li Wangad7a60d2013-08-15 11:51:44 +08001783
1784 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1785 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1786 else
1787 want = CEPH_CAP_FILE_BUFFER;
1788
Yan, Zheng3738daa2014-11-14 22:10:07 +08001789 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001790 if (ret < 0)
1791 goto unlock;
1792
1793 if (mode & FALLOC_FL_PUNCH_HOLE) {
1794 if (offset < size)
1795 ceph_zero_pagecache_range(inode, offset, length);
1796 ret = ceph_zero_objects(inode, offset, length);
1797 } else if (endoff > size) {
1798 truncate_pagecache_range(inode, size, -1);
1799 if (ceph_inode_set_size(inode, endoff))
1800 ceph_check_caps(ceph_inode(inode),
1801 CHECK_CAPS_AUTHONLY, NULL);
1802 }
1803
1804 if (!ret) {
1805 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001806 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001807 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1808 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001809 spin_unlock(&ci->i_ceph_lock);
1810 if (dirty)
1811 __mark_inode_dirty(inode, dirty);
Luis Henriques1ab302a2018-01-05 10:47:22 +00001812 if ((endoff > size) &&
1813 ceph_quota_is_max_bytes_approaching(inode, endoff))
1814 ceph_check_caps(ci, CHECK_CAPS_NODELAY, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001815 }
1816
1817 ceph_put_cap_refs(ci, got);
1818unlock:
Al Viro59551022016-01-22 15:40:57 -05001819 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001820 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001821 return ret;
1822}
1823
Sage Weil124e68e2009-10-06 11:31:08 -07001824const struct file_operations ceph_file_fops = {
1825 .open = ceph_open,
1826 .release = ceph_release,
1827 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04001828 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04001829 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07001830 .mmap = ceph_mmap,
1831 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07001832 .lock = ceph_lock,
1833 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08001834 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04001835 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07001836 .unlocked_ioctl = ceph_ioctl,
1837 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08001838 .fallocate = ceph_fallocate,
Sage Weil124e68e2009-10-06 11:31:08 -07001839};
1840