blob: a1f0aee29c27389d47f242890a7e81da675675a2 [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/*
73 * Calculate the length sum of direct io vectors that can
74 * be combined into one page vector.
75 */
76static size_t dio_get_pagev_size(const struct iov_iter *it)
77{
78 const struct iovec *iov = it->iov;
79 const struct iovec *iovend = iov + it->nr_segs;
80 size_t size;
81
82 size = iov->iov_len - it->iov_offset;
83 /*
84 * An iov can be page vectored when both the current tail
85 * and the next base are page aligned.
86 */
87 while (PAGE_ALIGNED((iov->iov_base + iov->iov_len)) &&
88 (++iov < iovend && PAGE_ALIGNED((iov->iov_base)))) {
89 size += iov->iov_len;
90 }
91 dout("dio_get_pagevlen len = %zu\n", size);
92 return size;
93}
94
95/*
96 * Allocate a page vector based on (@it, @nbytes).
97 * The return value is the tuple describing a page vector,
98 * that is (@pages, @page_align, @num_pages).
99 */
100static struct page **
101dio_get_pages_alloc(const struct iov_iter *it, size_t nbytes,
102 size_t *page_align, int *num_pages)
103{
104 struct iov_iter tmp_it = *it;
105 size_t align;
106 struct page **pages;
107 int ret = 0, idx, npages;
108
109 align = (unsigned long)(it->iov->iov_base + it->iov_offset) &
110 (PAGE_SIZE - 1);
111 npages = calc_pages_for(align, nbytes);
Michal Hocko752ade62017-05-08 15:57:27 -0700112 pages = kvmalloc(sizeof(*pages) * npages, GFP_KERNEL);
113 if (!pages)
114 return ERR_PTR(-ENOMEM);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800115
116 for (idx = 0; idx < npages; ) {
117 size_t start;
118 ret = iov_iter_get_pages(&tmp_it, pages + idx, nbytes,
119 npages - idx, &start);
120 if (ret < 0)
121 goto fail;
122
123 iov_iter_advance(&tmp_it, ret);
124 nbytes -= ret;
125 idx += (ret + start + PAGE_SIZE - 1) / PAGE_SIZE;
126 }
127
128 BUG_ON(nbytes != 0);
129 *num_pages = npages;
130 *page_align = align;
131 dout("dio_get_pages_alloc: got %d pages align %zu\n", npages, align);
132 return pages;
133fail:
134 ceph_put_page_vector(pages, idx, false);
135 return ERR_PTR(ret);
136}
Sage Weil124e68e2009-10-06 11:31:08 -0700137
138/*
139 * Prepare an open request. Preallocate ceph_cap to avoid an
140 * inopportune ENOMEM later.
141 */
142static struct ceph_mds_request *
143prepare_open_request(struct super_block *sb, int flags, int create_mode)
144{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700145 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
146 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700147 struct ceph_mds_request *req;
148 int want_auth = USE_ANY_MDS;
149 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
150
151 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
152 want_auth = USE_AUTH_MDS;
153
154 req = ceph_mdsc_create_request(mdsc, op, want_auth);
155 if (IS_ERR(req))
156 goto out;
157 req->r_fmode = ceph_flags_to_mode(flags);
Alexander Graff775ff72017-04-27 18:34:00 +0200158 req->r_args.open.flags = ceph_flags_sys2wire(flags);
Sage Weil124e68e2009-10-06 11:31:08 -0700159 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -0700160out:
161 return req;
162}
163
164/*
165 * initialize private struct file data.
166 * if we fail, clean up by dropping fmode reference on the ceph_inode
167 */
168static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
169{
Chengguang Xu73737682018-02-28 19:43:47 +0800170 struct ceph_file_info *fi;
Sage Weil124e68e2009-10-06 11:31:08 -0700171 int ret = 0;
172
173 switch (inode->i_mode & S_IFMT) {
174 case S_IFREG:
Yan, Zheng46b59b22016-05-18 15:25:03 +0800175 ceph_fscache_register_inode_cookie(inode);
176 ceph_fscache_file_set_cookie(inode, file);
Sage Weil124e68e2009-10-06 11:31:08 -0700177 case S_IFDIR:
178 dout("init_file %p %p 0%o (regular)\n", inode, file,
179 inode->i_mode);
Chengguang Xu73737682018-02-28 19:43:47 +0800180 fi = kmem_cache_zalloc(ceph_file_cachep, GFP_KERNEL);
181 if (!fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700182 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
183 return -ENOMEM;
184 }
Chengguang Xu73737682018-02-28 19:43:47 +0800185 fi->fmode = fmode;
Yan, Zheng5d988302017-12-15 11:15:36 +0800186
Chengguang Xu73737682018-02-28 19:43:47 +0800187 spin_lock_init(&fi->rw_contexts_lock);
188 INIT_LIST_HEAD(&fi->rw_contexts);
Yan, Zheng5d988302017-12-15 11:15:36 +0800189
Chengguang Xu73737682018-02-28 19:43:47 +0800190 fi->next_offset = 2;
191 fi->readdir_cache_idx = -1;
192 file->private_data = fi;
Sage Weil124e68e2009-10-06 11:31:08 -0700193 BUG_ON(inode->i_fop->release != ceph_release);
194 break;
195
196 case S_IFLNK:
197 dout("init_file %p %p 0%o (symlink)\n", inode, file,
198 inode->i_mode);
199 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
200 break;
201
202 default:
203 dout("init_file %p %p 0%o (special)\n", inode, file,
204 inode->i_mode);
205 /*
206 * we need to drop the open ref now, since we don't
207 * have .release set to ceph_release.
208 */
209 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
210 BUG_ON(inode->i_fop->release == ceph_release);
211
212 /* call the proper open fop */
213 ret = inode->i_fop->open(inode, file);
214 }
215 return ret;
216}
217
218/*
Yan, Zheng77310322016-04-08 15:27:16 +0800219 * try renew caps after session gets killed.
220 */
221int ceph_renew_caps(struct inode *inode)
222{
223 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
224 struct ceph_inode_info *ci = ceph_inode(inode);
225 struct ceph_mds_request *req;
226 int err, flags, wanted;
227
228 spin_lock(&ci->i_ceph_lock);
229 wanted = __ceph_caps_file_wanted(ci);
230 if (__ceph_is_any_real_caps(ci) &&
Yan, Zheng8242c9f2017-03-25 17:28:10 +0800231 (!(wanted & CEPH_CAP_ANY_WR) || ci->i_auth_cap)) {
Yan, Zheng77310322016-04-08 15:27:16 +0800232 int issued = __ceph_caps_issued(ci, NULL);
233 spin_unlock(&ci->i_ceph_lock);
234 dout("renew caps %p want %s issued %s updating mds_wanted\n",
235 inode, ceph_cap_string(wanted), ceph_cap_string(issued));
236 ceph_check_caps(ci, 0, NULL);
237 return 0;
238 }
239 spin_unlock(&ci->i_ceph_lock);
240
241 flags = 0;
242 if ((wanted & CEPH_CAP_FILE_RD) && (wanted & CEPH_CAP_FILE_WR))
243 flags = O_RDWR;
244 else if (wanted & CEPH_CAP_FILE_RD)
245 flags = O_RDONLY;
246 else if (wanted & CEPH_CAP_FILE_WR)
247 flags = O_WRONLY;
248#ifdef O_LAZY
249 if (wanted & CEPH_CAP_FILE_LAZYIO)
250 flags |= O_LAZY;
251#endif
252
253 req = prepare_open_request(inode->i_sb, flags, 0);
254 if (IS_ERR(req)) {
255 err = PTR_ERR(req);
256 goto out;
257 }
258
259 req->r_inode = inode;
260 ihold(inode);
261 req->r_num_caps = 1;
262 req->r_fmode = -1;
263
264 err = ceph_mdsc_do_request(mdsc, NULL, req);
265 ceph_mdsc_put_request(req);
266out:
267 dout("renew caps %p open result=%d\n", inode, err);
268 return err < 0 ? err : 0;
269}
270
271/*
Sage Weil124e68e2009-10-06 11:31:08 -0700272 * If we already have the requisite capabilities, we can satisfy
273 * the open request locally (no need to request new caps from the
274 * MDS). We do, however, need to inform the MDS (asynchronously)
275 * if our wanted caps set expands.
276 */
277int ceph_open(struct inode *inode, struct file *file)
278{
279 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700280 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
281 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700282 struct ceph_mds_request *req;
Chengguang Xu73737682018-02-28 19:43:47 +0800283 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700284 int err;
285 int flags, fmode, wanted;
286
Chengguang Xu73737682018-02-28 19:43:47 +0800287 if (fi) {
Sage Weil124e68e2009-10-06 11:31:08 -0700288 dout("open file %p is already opened\n", file);
289 return 0;
290 }
291
292 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
293 flags = file->f_flags & ~(O_CREAT|O_EXCL);
294 if (S_ISDIR(inode->i_mode))
295 flags = O_DIRECTORY; /* mds likes to know */
296
297 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
298 ceph_vinop(inode), file, flags, file->f_flags);
299 fmode = ceph_flags_to_mode(flags);
300 wanted = ceph_caps_for_mode(fmode);
301
302 /* snapped files are read-only */
303 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
304 return -EROFS;
305
306 /* trivially open snapdir */
307 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800308 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700309 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800310 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700311 return ceph_init_file(inode, file, fmode);
312 }
313
314 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800315 * No need to block if we have caps on the auth MDS (for
316 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700317 * asynchronously.
318 */
Sage Weilbe655592011-11-30 09:47:09 -0800319 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800320 if (__ceph_is_any_real_caps(ci) &&
321 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Yan, Zhengc1944fe2017-01-29 22:15:47 +0800322 int mds_wanted = __ceph_caps_mds_wanted(ci, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700323 int issued = __ceph_caps_issued(ci, NULL);
324
325 dout("open %p fmode %d want %s issued %s using existing\n",
326 inode, fmode, ceph_cap_string(wanted),
327 ceph_cap_string(issued));
328 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800329 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700330
331 /* adjust wanted? */
332 if ((issued & wanted) != wanted &&
333 (mds_wanted & wanted) != wanted &&
334 ceph_snap(inode) != CEPH_SNAPDIR)
335 ceph_check_caps(ci, 0, NULL);
336
337 return ceph_init_file(inode, file, fmode);
338 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
339 (ci->i_snap_caps & wanted) == wanted) {
340 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800341 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700342 return ceph_init_file(inode, file, fmode);
343 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400344
Sage Weilbe655592011-11-30 09:47:09 -0800345 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700346
347 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
348 req = prepare_open_request(inode->i_sb, flags, 0);
349 if (IS_ERR(req)) {
350 err = PTR_ERR(req);
351 goto out;
352 }
Sage Weil70b666c2011-05-27 09:24:26 -0700353 req->r_inode = inode;
354 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400355
Sage Weil124e68e2009-10-06 11:31:08 -0700356 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800357 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700358 if (!err)
359 err = ceph_init_file(inode, file, req->r_fmode);
360 ceph_mdsc_put_request(req);
361 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
362out:
363 return err;
364}
365
366
367/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700368 * Do a lookup + open with a single request. If we get a non-existent
369 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700370 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700371int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400372 struct file *file, unsigned flags, umode_t mode,
Al Virod9585272012-06-22 12:39:14 +0400373 int *opened)
Sage Weil124e68e2009-10-06 11:31:08 -0700374{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700375 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
376 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700377 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700378 struct dentry *dn;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800379 struct ceph_acls_info acls = {};
Yan, Zheng315f2402016-03-07 10:34:50 +0800380 int mask;
Sage Weil124e68e2009-10-06 11:31:08 -0700381 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700382
Al Viroa4555892014-10-21 20:11:25 -0400383 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
384 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700385 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
386
387 if (dentry->d_name.len > NAME_MAX)
388 return -ENAMETOOLONG;
389
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800390 if (flags & O_CREAT) {
391 err = ceph_pre_init_acls(dir, &mode, &acls);
392 if (err < 0)
393 return err;
394 }
395
Sage Weil124e68e2009-10-06 11:31:08 -0700396 /* do the open */
397 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800398 if (IS_ERR(req)) {
399 err = PTR_ERR(req);
400 goto out_acl;
401 }
Sage Weil124e68e2009-10-06 11:31:08 -0700402 req->r_dentry = dget(dentry);
403 req->r_num_caps = 2;
404 if (flags & O_CREAT) {
Yan, Zheng222b7f92017-11-23 17:47:15 +0800405 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil124e68e2009-10-06 11:31:08 -0700406 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800407 if (acls.pagelist) {
408 req->r_pagelist = acls.pagelist;
409 acls.pagelist = NULL;
410 }
Sage Weil124e68e2009-10-06 11:31:08 -0700411 }
Yan, Zheng315f2402016-03-07 10:34:50 +0800412
413 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
414 if (ceph_security_xattr_wanted(dir))
415 mask |= CEPH_CAP_XATTR_SHARED;
416 req->r_args.open.mask = cpu_to_le32(mask);
417
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500418 req->r_parent = dir;
419 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weilacda7652011-07-26 11:27:48 -0700420 err = ceph_mdsc_do_request(mdsc,
421 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
422 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800423 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000424 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800425 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000426
Jianpeng Maa43137f2015-08-18 10:23:50 +0800427 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700428 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700429
Al Viro00699ad2016-07-05 09:44:53 -0400430 if (d_in_lookup(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700431 dn = ceph_finish_lookup(req, dentry, err);
432 if (IS_ERR(dn))
433 err = PTR_ERR(dn);
434 } else {
435 /* we were given a hashed negative dentry */
436 dn = NULL;
437 }
Sage Weil468640e2011-07-26 11:28:11 -0700438 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800439 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000440 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700441 /* make vfs retry on splice, ENOENT, or symlink */
442 dout("atomic_open finish_no_open on dn %p\n", dn);
443 err = finish_no_open(file, dn);
444 } else {
445 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800446 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
David Howells2b0143b2015-03-17 22:25:59 +0000447 ceph_init_inode_acls(d_inode(dentry), &acls);
Sam Lang6e8575f2012-12-28 09:56:46 -0800448 *opened |= FILE_CREATED;
449 }
Sage Weil5ef50c32012-07-31 11:27:36 -0700450 err = finish_open(file, dentry, ceph_open, opened);
451 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800452out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800453 if (!req->r_err && req->r_target_inode)
454 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700455 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800456out_acl:
457 ceph_release_acls_info(&acls);
Sage Weil5ef50c32012-07-31 11:27:36 -0700458 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400459 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700460}
461
462int ceph_release(struct inode *inode, struct file *file)
463{
464 struct ceph_inode_info *ci = ceph_inode(inode);
Chengguang Xu73737682018-02-28 19:43:47 +0800465 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700466
467 dout("release inode %p file %p\n", inode, file);
Chengguang Xu73737682018-02-28 19:43:47 +0800468 ceph_put_fmode(ci, fi->fmode);
469 if (fi->last_readdir)
470 ceph_mdsc_put_request(fi->last_readdir);
471 kfree(fi->last_name);
472 kfree(fi->dir_info);
473 WARN_ON(!list_empty(&fi->rw_contexts));
474 kmem_cache_free(ceph_file_cachep, fi);
Sage Weil195d3ce2010-03-01 09:57:54 -0800475
476 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700477 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700478 return 0;
479}
480
Yan, Zheng83701242014-11-14 22:36:18 +0800481enum {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800482 HAVE_RETRIED = 1,
483 CHECK_EOF = 2,
484 READ_INLINE = 3,
Yan, Zheng83701242014-11-14 22:36:18 +0800485};
486
Sage Weil124e68e2009-10-06 11:31:08 -0700487/*
Sage Weil124e68e2009-10-06 11:31:08 -0700488 * Read a range of bytes striped over one or more objects. Iterate over
489 * objects we stripe over. (That's not atomic, but good enough for now.)
490 *
491 * If we get a short result from the OSD, check against i_size; we need to
492 * only return a short read to the caller if we hit EOF.
493 */
494static int striped_read(struct inode *inode,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800495 u64 pos, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800496 struct page **pages, int num_pages,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800497 int page_align, int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700498{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700499 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700500 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800501 u64 this_len;
Yan, Zheng99c88e62015-12-30 11:32:46 +0800502 loff_t i_size;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800503 int page_idx;
504 int ret, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700505 bool hit_stripe, was_short;
506
507 /*
508 * we may need to do multiple reads. not atomic, unfortunately.
509 */
Sage Weil124e68e2009-10-06 11:31:08 -0700510more:
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800511 this_len = len;
512 page_idx = (page_align + read) >> PAGE_SHIFT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700513 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700514 &ci->i_layout, pos, &this_len,
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800515 ci->i_truncate_seq, ci->i_truncate_size,
516 pages + page_idx, num_pages - page_idx,
517 ((page_align + read) & ~PAGE_MASK));
Sage Weil124e68e2009-10-06 11:31:08 -0700518 if (ret == -ENOENT)
519 ret = 0;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800520 hit_stripe = this_len < len;
Sage Weil0e987282011-06-07 20:40:35 -0700521 was_short = ret >= 0 && ret < this_len;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800522 dout("striped_read %llu~%llu (read %u) got %d%s%s\n", pos, len, read,
Sage Weil124e68e2009-10-06 11:31:08 -0700523 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
524
Yan, Zheng99c88e62015-12-30 11:32:46 +0800525 i_size = i_size_read(inode);
majianpeng02ae66d2013-08-06 16:20:38 +0800526 if (ret >= 0) {
Yan, Zheng99c88e62015-12-30 11:32:46 +0800527 if (was_short && (pos + ret < i_size)) {
528 int zlen = min(this_len - ret, i_size - pos - ret);
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800529 int zoff = page_align + read + ret;
majianpeng02ae66d2013-08-06 16:20:38 +0800530 dout(" zero gap %llu to %llu\n",
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800531 pos + ret, pos + ret + zlen);
Yan, Zheng1487a682015-01-06 15:29:14 +0800532 ceph_zero_page_vector_range(zoff, zlen, pages);
533 ret += zlen;
Sage Weil124e68e2009-10-06 11:31:08 -0700534 }
majianpeng02ae66d2013-08-06 16:20:38 +0800535
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800536 read += ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700537 pos += ret;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800538 len -= ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700539
majianpeng02ae66d2013-08-06 16:20:38 +0800540 /* hit stripe and need continue*/
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800541 if (len && hit_stripe && pos < i_size)
Sage Weil124e68e2009-10-06 11:31:08 -0700542 goto more;
543 }
544
majianpengee7289b2013-08-21 15:02:51 +0800545 if (read > 0) {
majianpeng02ae66d2013-08-06 16:20:38 +0800546 ret = read;
Sage Weilc3cd6282011-06-01 16:08:44 -0700547 /* did we bounce off eof? */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800548 if (pos + len > i_size)
Yan, Zheng83701242014-11-14 22:36:18 +0800549 *checkeof = CHECK_EOF;
Sage Weil124e68e2009-10-06 11:31:08 -0700550 }
551
Sage Weil124e68e2009-10-06 11:31:08 -0700552 dout("striped_read returns %d\n", ret);
553 return ret;
554}
555
556/*
557 * Completely synchronous read and write methods. Direct from __user
558 * buffer to osd, or directly to user pages (if O_DIRECT).
559 *
560 * If the read spans object boundary, just do multiple reads.
561 */
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800562static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *to,
563 int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700564{
majianpeng8eb4efb2013-09-26 14:42:17 +0800565 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500566 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700567 struct page **pages;
majianpeng8eb4efb2013-09-26 14:42:17 +0800568 u64 off = iocb->ki_pos;
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800569 int num_pages;
570 ssize_t ret;
571 size_t len = iov_iter_count(to);
Sage Weil124e68e2009-10-06 11:31:08 -0700572
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800573 dout("sync_read on file %p %llu~%u %s\n", file, off, (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700574 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800575
576 if (!len)
577 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800578 /*
579 * flush any page cache pages in this range. this
580 * will make concurrent normal and sync io slow,
581 * but it will at least behave sensibly when they are
582 * in sequence.
583 */
majianpeng8eb4efb2013-09-26 14:42:17 +0800584 ret = filemap_write_and_wait_range(inode->i_mapping, off,
585 off + len);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800586 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800587 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800588
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800589 if (unlikely(to->type & ITER_PIPE)) {
590 size_t page_off;
591 ret = iov_iter_get_pages_alloc(to, &pages, len,
592 &page_off);
593 if (ret <= 0)
594 return -ENOMEM;
595 num_pages = DIV_ROUND_UP(ret + page_off, PAGE_SIZE);
Sage Weil124e68e2009-10-06 11:31:08 -0700596
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800597 ret = striped_read(inode, off, ret, pages, num_pages,
598 page_off, checkeof);
599 if (ret > 0) {
600 iov_iter_advance(to, ret);
601 off += ret;
602 } else {
603 iov_iter_advance(to, 0);
majianpeng8eb4efb2013-09-26 14:42:17 +0800604 }
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800605 ceph_put_page_vector(pages, num_pages, false);
606 } else {
607 num_pages = calc_pages_for(off, len);
608 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
609 if (IS_ERR(pages))
610 return PTR_ERR(pages);
611
612 ret = striped_read(inode, off, len, pages, num_pages,
613 (off & ~PAGE_MASK), checkeof);
614 if (ret > 0) {
615 int l, k = 0;
616 size_t left = ret;
617
618 while (left) {
619 size_t page_off = off & ~PAGE_MASK;
620 size_t copy = min_t(size_t, left,
621 PAGE_SIZE - page_off);
622 l = copy_page_to_iter(pages[k++], page_off,
623 copy, to);
624 off += l;
625 left -= l;
626 if (l < copy)
627 break;
628 }
629 }
630 ceph_release_page_vector(pages, num_pages);
majianpeng8eb4efb2013-09-26 14:42:17 +0800631 }
632
633 if (off > iocb->ki_pos) {
634 ret = off - iocb->ki_pos;
635 iocb->ki_pos = off;
636 }
637
Yan, Zheng7ce469a2016-11-08 21:54:34 +0800638 dout("sync_read result %zd\n", ret);
Sage Weil124e68e2009-10-06 11:31:08 -0700639 return ret;
640}
641
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800642struct ceph_aio_request {
643 struct kiocb *iocb;
644 size_t total_len;
Yan, Zheng85784f92018-03-16 11:22:29 +0800645 bool write;
646 bool should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800647 int error;
648 struct list_head osd_reqs;
649 unsigned num_reqs;
650 atomic_t pending_reqs;
Yan, Zheng5be03892015-12-24 08:44:20 +0800651 struct timespec mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800652 struct ceph_cap_flush *prealloc_cf;
653};
654
Yan, Zheng5be03892015-12-24 08:44:20 +0800655struct ceph_aio_work {
656 struct work_struct work;
657 struct ceph_osd_request *req;
658};
659
660static void ceph_aio_retry_work(struct work_struct *work);
661
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800662static void ceph_aio_complete(struct inode *inode,
663 struct ceph_aio_request *aio_req)
664{
665 struct ceph_inode_info *ci = ceph_inode(inode);
666 int ret;
667
668 if (!atomic_dec_and_test(&aio_req->pending_reqs))
669 return;
670
671 ret = aio_req->error;
672 if (!ret)
673 ret = aio_req->total_len;
674
675 dout("ceph_aio_complete %p rc %d\n", inode, ret);
676
677 if (ret >= 0 && aio_req->write) {
678 int dirty;
679
680 loff_t endoff = aio_req->iocb->ki_pos + aio_req->total_len;
681 if (endoff > i_size_read(inode)) {
682 if (ceph_inode_set_size(inode, endoff))
683 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
684 }
685
686 spin_lock(&ci->i_ceph_lock);
687 ci->i_inline_version = CEPH_INLINE_NONE;
688 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
689 &aio_req->prealloc_cf);
690 spin_unlock(&ci->i_ceph_lock);
691 if (dirty)
692 __mark_inode_dirty(inode, dirty);
693
694 }
695
696 ceph_put_cap_refs(ci, (aio_req->write ? CEPH_CAP_FILE_WR :
697 CEPH_CAP_FILE_RD));
698
699 aio_req->iocb->ki_complete(aio_req->iocb, ret, 0);
700
701 ceph_free_cap_flush(aio_req->prealloc_cf);
702 kfree(aio_req);
703}
704
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200705static void ceph_aio_complete_req(struct ceph_osd_request *req)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800706{
707 int rc = req->r_result;
708 struct inode *inode = req->r_inode;
709 struct ceph_aio_request *aio_req = req->r_priv;
710 struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
711 int num_pages = calc_pages_for((u64)osd_data->alignment,
712 osd_data->length);
713
714 dout("ceph_aio_complete_req %p rc %d bytes %llu\n",
715 inode, rc, osd_data->length);
716
717 if (rc == -EOLDSNAPC) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800718 struct ceph_aio_work *aio_work;
719 BUG_ON(!aio_req->write);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800720
Yan, Zheng5be03892015-12-24 08:44:20 +0800721 aio_work = kmalloc(sizeof(*aio_work), GFP_NOFS);
722 if (aio_work) {
723 INIT_WORK(&aio_work->work, ceph_aio_retry_work);
724 aio_work->req = req;
725 queue_work(ceph_inode_to_client(inode)->wb_wq,
726 &aio_work->work);
727 return;
728 }
729 rc = -ENOMEM;
730 } else if (!aio_req->write) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800731 if (rc == -ENOENT)
732 rc = 0;
733 if (rc >= 0 && osd_data->length > rc) {
734 int zoff = osd_data->alignment + rc;
735 int zlen = osd_data->length - rc;
736 /*
737 * If read is satisfied by single OSD request,
738 * it can pass EOF. Otherwise read is within
739 * i_size.
740 */
741 if (aio_req->num_reqs == 1) {
742 loff_t i_size = i_size_read(inode);
743 loff_t endoff = aio_req->iocb->ki_pos + rc;
744 if (endoff < i_size)
745 zlen = min_t(size_t, zlen,
746 i_size - endoff);
747 aio_req->total_len = rc + zlen;
748 }
749
750 if (zlen > 0)
751 ceph_zero_page_vector_range(zoff, zlen,
752 osd_data->pages);
753 }
754 }
755
Yan, Zheng85784f92018-03-16 11:22:29 +0800756 ceph_put_page_vector(osd_data->pages, num_pages, aio_req->should_dirty);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800757 ceph_osdc_put_request(req);
758
759 if (rc < 0)
760 cmpxchg(&aio_req->error, 0, rc);
761
762 ceph_aio_complete(inode, aio_req);
763 return;
764}
765
Yan, Zheng5be03892015-12-24 08:44:20 +0800766static void ceph_aio_retry_work(struct work_struct *work)
767{
768 struct ceph_aio_work *aio_work =
769 container_of(work, struct ceph_aio_work, work);
770 struct ceph_osd_request *orig_req = aio_work->req;
771 struct ceph_aio_request *aio_req = orig_req->r_priv;
772 struct inode *inode = orig_req->r_inode;
773 struct ceph_inode_info *ci = ceph_inode(inode);
774 struct ceph_snap_context *snapc;
775 struct ceph_osd_request *req;
776 int ret;
777
778 spin_lock(&ci->i_ceph_lock);
779 if (__ceph_have_pending_cap_snap(ci)) {
780 struct ceph_cap_snap *capsnap =
781 list_last_entry(&ci->i_cap_snaps,
782 struct ceph_cap_snap,
783 ci_item);
784 snapc = ceph_get_snap_context(capsnap->context);
785 } else {
786 BUG_ON(!ci->i_head_snapc);
787 snapc = ceph_get_snap_context(ci->i_head_snapc);
788 }
789 spin_unlock(&ci->i_ceph_lock);
790
791 req = ceph_osdc_alloc_request(orig_req->r_osdc, snapc, 2,
792 false, GFP_NOFS);
Dan Carpenter1418bf02016-01-26 12:24:44 +0300793 if (!req) {
794 ret = -ENOMEM;
Yan, Zheng5be03892015-12-24 08:44:20 +0800795 req = orig_req;
796 goto out;
797 }
798
Yan, Zhengb178cf42017-08-16 17:27:05 +0800799 req->r_flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200800 ceph_oloc_copy(&req->r_base_oloc, &orig_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200801 ceph_oid_copy(&req->r_base_oid, &orig_req->r_base_oid);
Yan, Zheng5be03892015-12-24 08:44:20 +0800802
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200803 ret = ceph_osdc_alloc_messages(req, GFP_NOFS);
804 if (ret) {
805 ceph_osdc_put_request(req);
806 req = orig_req;
807 goto out;
808 }
Yan, Zheng5be03892015-12-24 08:44:20 +0800809
810 req->r_ops[0] = orig_req->r_ops[0];
Yan, Zheng5be03892015-12-24 08:44:20 +0800811
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200812 req->r_mtime = aio_req->mtime;
813 req->r_data_offset = req->r_ops[0].extent.offset;
Yan, Zheng5be03892015-12-24 08:44:20 +0800814
Yan, Zheng5be03892015-12-24 08:44:20 +0800815 ceph_osdc_put_request(orig_req);
816
817 req->r_callback = ceph_aio_complete_req;
818 req->r_inode = inode;
819 req->r_priv = aio_req;
Jeff Laytona1f40202017-04-04 08:39:37 -0400820 req->r_abort_on_full = true;
Yan, Zheng5be03892015-12-24 08:44:20 +0800821
822 ret = ceph_osdc_start_request(req->r_osdc, req, false);
823out:
824 if (ret < 0) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800825 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200826 ceph_aio_complete_req(req);
Yan, Zheng5be03892015-12-24 08:44:20 +0800827 }
828
Yan, Zhengdb6aed72016-01-26 23:05:37 +0800829 ceph_put_snap_context(snapc);
Yan, Zheng5be03892015-12-24 08:44:20 +0800830 kfree(aio_work);
831}
832
majianpenge8344e62013-09-12 13:54:26 +0800833static ssize_t
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800834ceph_direct_read_write(struct kiocb *iocb, struct iov_iter *iter,
835 struct ceph_snap_context *snapc,
836 struct ceph_cap_flush **pcf)
Sage Weil124e68e2009-10-06 11:31:08 -0700837{
majianpenge8344e62013-09-12 13:54:26 +0800838 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500839 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700840 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700841 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500842 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700843 struct ceph_osd_request *req;
844 struct page **pages;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800845 struct ceph_aio_request *aio_req = NULL;
846 int num_pages = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700847 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700848 int ret;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700849 struct timespec mtime = current_time(inode);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800850 size_t count = iov_iter_count(iter);
851 loff_t pos = iocb->ki_pos;
852 bool write = iov_iter_rw(iter) == WRITE;
Yan, Zheng85784f92018-03-16 11:22:29 +0800853 bool should_dirty = !write && iter_is_iovec(iter);
Sage Weil124e68e2009-10-06 11:31:08 -0700854
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800855 if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700856 return -EROFS;
857
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800858 dout("sync_direct_%s on file %p %lld~%u snapc %p seq %lld\n",
859 (write ? "write" : "read"), file, pos, (unsigned)count,
860 snapc, snapc->seq);
Sage Weil124e68e2009-10-06 11:31:08 -0700861
majianpenge8344e62013-09-12 13:54:26 +0800862 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800863 if (ret < 0)
864 return ret;
865
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800866 if (write) {
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800867 int ret2 = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300868 pos >> PAGE_SHIFT,
869 (pos + count) >> PAGE_SHIFT);
NeilBrown5d7eb1a2016-09-01 22:26:23 +0800870 if (ret2 < 0)
Zhi Zhanga380a032016-11-08 14:35:59 +0100871 dout("invalidate_inode_pages2_range returned %d\n", ret2);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800872
Yan, Zhengb178cf42017-08-16 17:27:05 +0800873 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800874 } else {
875 flags = CEPH_OSD_FLAG_READ;
876 }
Sage Weil124e68e2009-10-06 11:31:08 -0700877
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800878 while (iov_iter_count(iter) > 0) {
879 u64 size = dio_get_pagev_size(iter);
880 size_t start = 0;
881 ssize_t len;
majianpenge8344e62013-09-12 13:54:26 +0800882
majianpenge8344e62013-09-12 13:54:26 +0800883 vino = ceph_vino(inode);
884 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800885 vino, pos, &size, 0,
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800886 1,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800887 write ? CEPH_OSD_OP_WRITE :
888 CEPH_OSD_OP_READ,
889 flags, snapc,
majianpenge8344e62013-09-12 13:54:26 +0800890 ci->i_truncate_seq,
891 ci->i_truncate_size,
892 false);
893 if (IS_ERR(req)) {
894 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400895 break;
majianpenge8344e62013-09-12 13:54:26 +0800896 }
897
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800898 if (write)
899 size = min_t(u64, size, fsc->mount_options->wsize);
900 else
Yan, Zhengaa187922017-07-11 15:56:09 +0800901 size = min_t(u64, size, fsc->mount_options->rsize);
902
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800903 len = size;
904 pages = dio_get_pages_alloc(iter, len, &start, &num_pages);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800905 if (IS_ERR(pages)) {
Al Viro64c31312014-04-03 22:58:25 -0400906 ceph_osdc_put_request(req);
Zhu, Caifengb5b98989d2015-10-08 15:26:15 +0800907 ret = PTR_ERR(pages);
Al Viro64c31312014-04-03 22:58:25 -0400908 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700909 }
910
911 /*
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800912 * To simplify error handling, allow AIO when IO within i_size
913 * or IO can be satisfied by single OSD request.
Sage Weil124e68e2009-10-06 11:31:08 -0700914 */
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800915 if (pos == iocb->ki_pos && !is_sync_kiocb(iocb) &&
916 (len == count || pos + count <= i_size_read(inode))) {
917 aio_req = kzalloc(sizeof(*aio_req), GFP_KERNEL);
918 if (aio_req) {
919 aio_req->iocb = iocb;
920 aio_req->write = write;
Yan, Zheng85784f92018-03-16 11:22:29 +0800921 aio_req->should_dirty = should_dirty;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800922 INIT_LIST_HEAD(&aio_req->osd_reqs);
923 if (write) {
Yan, Zheng5be03892015-12-24 08:44:20 +0800924 aio_req->mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800925 swap(aio_req->prealloc_cf, *pcf);
926 }
927 }
928 /* ignore error */
929 }
majianpenge8344e62013-09-12 13:54:26 +0800930
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800931 if (write) {
932 /*
933 * throw out any page cache pages in this range. this
934 * may block.
935 */
936 truncate_inode_pages_range(inode->i_mapping, pos,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300937 (pos+len) | (PAGE_SIZE - 1));
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800938
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200939 req->r_mtime = mtime;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800940 }
941
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800942 osd_req_op_extent_osd_data_pages(req, 0, pages, len, start,
943 false, false);
944
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800945 if (aio_req) {
946 aio_req->total_len += len;
947 aio_req->num_reqs++;
948 atomic_inc(&aio_req->pending_reqs);
949
950 req->r_callback = ceph_aio_complete_req;
951 req->r_inode = inode;
952 req->r_priv = aio_req;
953 list_add_tail(&req->r_unsafe_item, &aio_req->osd_reqs);
954
955 pos += len;
956 iov_iter_advance(iter, len);
957 continue;
958 }
959
960 ret = ceph_osdc_start_request(req->r_osdc, req, false);
majianpenge8344e62013-09-12 13:54:26 +0800961 if (!ret)
962 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
963
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800964 size = i_size_read(inode);
965 if (!write) {
966 if (ret == -ENOENT)
967 ret = 0;
968 if (ret >= 0 && ret < len && pos + ret < size) {
969 int zlen = min_t(size_t, len - ret,
970 size - pos - ret);
971 ceph_zero_page_vector_range(start + ret, zlen,
972 pages);
973 ret += zlen;
974 }
975 if (ret >= 0)
976 len = ret;
977 }
978
Yan, Zheng85784f92018-03-16 11:22:29 +0800979 ceph_put_page_vector(pages, num_pages, should_dirty);
majianpenge8344e62013-09-12 13:54:26 +0800980
majianpenge8344e62013-09-12 13:54:26 +0800981 ceph_osdc_put_request(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800982 if (ret < 0)
majianpenge8344e62013-09-12 13:54:26 +0800983 break;
Al Viro64c31312014-04-03 22:58:25 -0400984
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800985 pos += len;
986 iov_iter_advance(iter, len);
987
988 if (!write && pos >= size)
989 break;
990
991 if (write && pos > size) {
992 if (ceph_inode_set_size(inode, pos))
Al Viro64c31312014-04-03 22:58:25 -0400993 ceph_check_caps(ceph_inode(inode),
994 CHECK_CAPS_AUTHONLY,
995 NULL);
996 }
majianpenge8344e62013-09-12 13:54:26 +0800997 }
998
Yan, Zhengc8fe9b12015-12-23 21:23:38 +0800999 if (aio_req) {
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001000 LIST_HEAD(osd_reqs);
1001
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001002 if (aio_req->num_reqs == 0) {
1003 kfree(aio_req);
1004 return ret;
1005 }
1006
1007 ceph_get_cap_refs(ci, write ? CEPH_CAP_FILE_WR :
1008 CEPH_CAP_FILE_RD);
1009
Yan, Zhengfc8c3892016-06-14 11:13:59 +08001010 list_splice(&aio_req->osd_reqs, &osd_reqs);
1011 while (!list_empty(&osd_reqs)) {
1012 req = list_first_entry(&osd_reqs,
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001013 struct ceph_osd_request,
1014 r_unsafe_item);
1015 list_del_init(&req->r_unsafe_item);
1016 if (ret >= 0)
1017 ret = ceph_osdc_start_request(req->r_osdc,
1018 req, false);
1019 if (ret < 0) {
1020 req->r_result = ret;
Ilya Dryomov85e084f2016-04-28 16:07:24 +02001021 ceph_aio_complete_req(req);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001022 }
1023 }
1024 return -EIOCBQUEUED;
1025 }
1026
1027 if (ret != -EOLDSNAPC && pos > iocb->ki_pos) {
1028 ret = pos - iocb->ki_pos;
majianpenge8344e62013-09-12 13:54:26 +08001029 iocb->ki_pos = pos;
majianpenge8344e62013-09-12 13:54:26 +08001030 }
1031 return ret;
1032}
1033
majianpenge8344e62013-09-12 13:54:26 +08001034/*
1035 * Synchronous write, straight from __user pointer or user pages.
1036 *
1037 * If write spans object boundary, just do multiple writes. (For a
1038 * correct atomic write, we should e.g. take write locks on all
1039 * objects, rollback on failure, etc.)
1040 */
Yan, Zheng06fee302014-07-28 14:33:46 +08001041static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001042ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
1043 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +08001044{
1045 struct file *file = iocb->ki_filp;
1046 struct inode *inode = file_inode(file);
1047 struct ceph_inode_info *ci = ceph_inode(inode);
1048 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +08001049 struct ceph_vino vino;
1050 struct ceph_osd_request *req;
1051 struct page **pages;
1052 u64 len;
1053 int num_pages;
1054 int written = 0;
1055 int flags;
majianpenge8344e62013-09-12 13:54:26 +08001056 int ret;
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001057 bool check_caps = false;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07001058 struct timespec mtime = current_time(inode);
Al Viro4908b822014-04-03 23:09:01 -04001059 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +08001060
1061 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
1062 return -EROFS;
1063
Yan, Zheng1c0a9c22017-08-16 17:24:58 +08001064 dout("sync_write on file %p %lld~%u snapc %p seq %lld\n",
1065 file, pos, (unsigned)count, snapc, snapc->seq);
majianpenge8344e62013-09-12 13:54:26 +08001066
1067 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
1068 if (ret < 0)
1069 return ret;
1070
1071 ret = invalidate_inode_pages2_range(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001072 pos >> PAGE_SHIFT,
1073 (pos + count) >> PAGE_SHIFT);
majianpenge8344e62013-09-12 13:54:26 +08001074 if (ret < 0)
1075 dout("invalidate_inode_pages2_range returned %d\n", ret);
1076
Yan, Zhengb178cf42017-08-16 17:27:05 +08001077 flags = /* CEPH_OSD_FLAG_ORDERSNAP | */ CEPH_OSD_FLAG_WRITE;
majianpenge8344e62013-09-12 13:54:26 +08001078
Al Viro4908b822014-04-03 23:09:01 -04001079 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +08001080 size_t left;
1081 int n;
1082
majianpenge8344e62013-09-12 13:54:26 +08001083 vino = ceph_vino(inode);
1084 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001085 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +08001086 CEPH_OSD_OP_WRITE, flags, snapc,
1087 ci->i_truncate_seq,
1088 ci->i_truncate_size,
1089 false);
1090 if (IS_ERR(req)) {
1091 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -04001092 break;
majianpenge8344e62013-09-12 13:54:26 +08001093 }
1094
1095 /*
1096 * write from beginning of first page,
1097 * regardless of io alignment
1098 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001099 num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
majianpenge8344e62013-09-12 13:54:26 +08001100
Yan, Zheng687265e2015-06-13 17:27:05 +08001101 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -07001102 if (IS_ERR(pages)) {
1103 ret = PTR_ERR(pages);
1104 goto out;
1105 }
majianpenge8344e62013-09-12 13:54:26 +08001106
1107 left = len;
1108 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +02001109 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -04001110 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +08001111 if (ret != plen) {
1112 ret = -EFAULT;
1113 break;
1114 }
1115 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +08001116 }
1117
Sage Weil124e68e2009-10-06 11:31:08 -07001118 if (ret < 0) {
1119 ceph_release_page_vector(pages, num_pages);
1120 goto out;
1121 }
1122
majianpenge8344e62013-09-12 13:54:26 +08001123 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -07001124
majianpenge8344e62013-09-12 13:54:26 +08001125 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
1126 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -05001127
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001128 req->r_mtime = mtime;
majianpenge8344e62013-09-12 13:54:26 +08001129 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1130 if (!ret)
1131 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -07001132
1133out:
majianpenge8344e62013-09-12 13:54:26 +08001134 ceph_osdc_put_request(req);
Jeff Layton26544c622017-04-04 08:39:46 -04001135 if (ret != 0) {
1136 ceph_set_error_write(ci);
majianpenge8344e62013-09-12 13:54:26 +08001137 break;
Jeff Layton26544c622017-04-04 08:39:46 -04001138 }
1139
1140 ceph_clear_error_write(ci);
1141 pos += len;
1142 written += len;
1143 if (pos > i_size_read(inode)) {
1144 check_caps = ceph_inode_set_size(inode, pos);
1145 if (check_caps)
1146 ceph_check_caps(ceph_inode(inode),
1147 CHECK_CAPS_AUTHONLY,
1148 NULL);
1149 }
1150
majianpenge8344e62013-09-12 13:54:26 +08001151 }
1152
1153 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -07001154 ret = written;
majianpenge8344e62013-09-12 13:54:26 +08001155 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001156 }
1157 return ret;
1158}
1159
1160/*
1161 * Wrap generic_file_aio_read with checks for cap bits on the inode.
1162 * Atomically grab references, so that those bits are not released
1163 * back to the MDS mid-read.
1164 *
1165 * Hmm, the sync read case isn't actually async... should it be?
1166 */
Al Viro36444242014-04-02 20:28:01 -04001167static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -07001168{
1169 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -07001170 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +01001171 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -05001172 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -07001173 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001174 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -07001175 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -07001176 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +08001177 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -07001178
Sage Weil6a026582010-02-09 14:04:02 -08001179again:
majianpeng8eb4efb2013-09-26 14:42:17 +08001180 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
1181 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
1182
Sage Weil29625072010-05-27 10:40:43 -07001183 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1184 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1185 else
1186 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001187 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -07001188 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +08001189 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001190
Sage Weil29625072010-05-27 10:40:43 -07001191 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001192 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +08001193 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -07001194
majianpeng8eb4efb2013-09-26 14:42:17 +08001195 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
1196 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
1197 ceph_cap_string(got));
1198
Yan, Zheng83701242014-11-14 22:36:18 +08001199 if (ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001200 if (!retry_op && (iocb->ki_flags & IOCB_DIRECT)) {
1201 ret = ceph_direct_read_write(iocb, to,
1202 NULL, NULL);
1203 if (ret >= 0 && ret < len)
1204 retry_op = CHECK_EOF;
1205 } else {
1206 ret = ceph_sync_read(iocb, to, &retry_op);
1207 }
Yan, Zheng83701242014-11-14 22:36:18 +08001208 } else {
1209 retry_op = READ_INLINE;
1210 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001211 } else {
Yan, Zheng5d988302017-12-15 11:15:36 +08001212 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
majianpeng8eb4efb2013-09-26 14:42:17 +08001213 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -04001214 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +08001215 ceph_cap_string(got));
Yan, Zheng5d988302017-12-15 11:15:36 +08001216 ceph_add_rw_context(fi, &rw_ctx);
Al Viro36444242014-04-02 20:28:01 -04001217 ret = generic_file_read_iter(iocb, to);
Yan, Zheng5d988302017-12-15 11:15:36 +08001218 ceph_del_rw_context(fi, &rw_ctx);
majianpeng8eb4efb2013-09-26 14:42:17 +08001219 }
Sage Weil124e68e2009-10-06 11:31:08 -07001220 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
1221 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001222 if (pinned_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001223 put_page(pinned_page);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001224 pinned_page = NULL;
1225 }
Sage Weil124e68e2009-10-06 11:31:08 -07001226 ceph_put_cap_refs(ci, got);
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001227 if (retry_op > HAVE_RETRIED && ret >= 0) {
Yan, Zheng83701242014-11-14 22:36:18 +08001228 int statret;
1229 struct page *page = NULL;
1230 loff_t i_size;
1231 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001232 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +08001233 if (!page)
1234 return -ENOMEM;
1235 }
Sage Weil6a026582010-02-09 14:04:02 -08001236
Yan, Zheng83701242014-11-14 22:36:18 +08001237 statret = __ceph_do_getattr(inode, page,
1238 CEPH_STAT_CAP_INLINE_DATA, !!page);
1239 if (statret < 0) {
Nikolay Borisov0d7718f62016-10-10 15:38:18 +03001240 if (page)
1241 __free_page(page);
Yan, Zheng83701242014-11-14 22:36:18 +08001242 if (statret == -ENODATA) {
1243 BUG_ON(retry_op != READ_INLINE);
1244 goto again;
1245 }
1246 return statret;
1247 }
1248
1249 i_size = i_size_read(inode);
1250 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001251 BUG_ON(ret > 0 || read > 0);
1252 if (iocb->ki_pos < i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001253 iocb->ki_pos < PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001254 loff_t end = min_t(loff_t, i_size,
1255 iocb->ki_pos + len);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001256 end = min_t(loff_t, end, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001257 if (statret < end)
1258 zero_user_segment(page, statret, end);
1259 ret = copy_page_to_iter(page,
1260 iocb->ki_pos & ~PAGE_MASK,
1261 end - iocb->ki_pos, to);
1262 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001263 read += ret;
1264 }
1265 if (iocb->ki_pos < i_size && read < len) {
1266 size_t zlen = min_t(size_t, len - read,
1267 i_size - iocb->ki_pos);
1268 ret = iov_iter_zero(zlen, to);
1269 iocb->ki_pos += ret;
1270 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +08001271 }
1272 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001273 return read;
Yan, Zheng83701242014-11-14 22:36:18 +08001274 }
Sage Weil6a026582010-02-09 14:04:02 -08001275
1276 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +08001277 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +08001278 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +08001279 dout("sync_read hit hole, ppos %lld < size %lld"
Yan, Zheng99c88e62015-12-30 11:32:46 +08001280 ", reading more\n", iocb->ki_pos, i_size);
majianpeng8eb4efb2013-09-26 14:42:17 +08001281
Sage Weil6a026582010-02-09 14:04:02 -08001282 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -08001283 len -= ret;
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001284 retry_op = HAVE_RETRIED;
Sage Weil6a026582010-02-09 14:04:02 -08001285 goto again;
1286 }
1287 }
majianpeng8eb4efb2013-09-26 14:42:17 +08001288
Sage Weil6a026582010-02-09 14:04:02 -08001289 if (ret >= 0)
1290 ret += read;
1291
Sage Weil124e68e2009-10-06 11:31:08 -07001292 return ret;
1293}
1294
1295/*
1296 * Take cap references to avoid releasing caps to MDS mid-write.
1297 *
1298 * If we are synchronous, and write with an old snap context, the OSD
1299 * may return EOLDSNAPC. In that case, retry the write.. _after_
1300 * dropping our cap refs and allowing the pending snap to logically
1301 * complete _before_ this write occurs.
1302 *
1303 * If we are near ENOSPC, write synchronously.
1304 */
Al Viro4908b822014-04-03 23:09:01 -04001305static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -07001306{
1307 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -07001308 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001309 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -07001310 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001311 struct ceph_osd_client *osdc =
1312 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001313 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -04001314 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001315 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -04001316 loff_t pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001317
1318 if (ceph_snap(inode) != CEPH_NOSNAP)
1319 return -EROFS;
1320
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001321 prealloc_cf = ceph_alloc_cap_flush();
1322 if (!prealloc_cf)
1323 return -ENOMEM;
1324
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001325retry_snap:
Al Viro59551022016-01-22 15:40:57 -05001326 inode_lock(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001327
Yan, Zheng03d254e2013-04-12 16:11:13 +08001328 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001329 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001330
Yan, Zheng55b0b312015-09-07 11:35:01 +08001331 if (iocb->ki_flags & IOCB_APPEND) {
1332 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
1333 if (err < 0)
1334 goto out;
1335 }
1336
Al Viro3309dd02015-04-09 12:55:47 -04001337 err = generic_write_checks(iocb, from);
1338 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001339 goto out;
1340
Al Viro3309dd02015-04-09 12:55:47 -04001341 pos = iocb->ki_pos;
1342 count = iov_iter_count(from);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001343 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001344 if (err)
1345 goto out;
1346
1347 err = file_update_time(file);
1348 if (err)
1349 goto out;
1350
Yan, Zheng28127bd2014-11-14 22:38:29 +08001351 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1352 err = ceph_uninline_data(file, NULL);
1353 if (err < 0)
1354 goto out;
1355 }
1356
Jeff Layton26544c622017-04-04 08:39:46 -04001357 /* FIXME: not complete since it doesn't account for being at quota */
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001358 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001359 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001360 goto out;
1361 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001362
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001363 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng99c88e62015-12-30 11:32:46 +08001364 inode, ceph_vinop(inode), pos, count, i_size_read(inode));
Sage Weil7971bd92013-05-01 21:15:58 -07001365 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1366 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1367 else
1368 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001369 got = 0;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001370 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, pos + count,
1371 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +08001372 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +08001373 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -07001374
Randy Dunlapac7f29b2013-04-19 14:20:07 -07001375 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001376 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001377
1378 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Jeff Layton26544c622017-04-04 08:39:46 -04001379 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC) ||
1380 (ci->i_ceph_flags & CEPH_I_ERROR_WRITE)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001381 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001382 struct iov_iter data;
Al Viro59551022016-01-22 15:40:57 -05001383 inode_unlock(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001384
1385 spin_lock(&ci->i_ceph_lock);
1386 if (__ceph_have_pending_cap_snap(ci)) {
1387 struct ceph_cap_snap *capsnap =
1388 list_last_entry(&ci->i_cap_snaps,
1389 struct ceph_cap_snap,
1390 ci_item);
1391 snapc = ceph_get_snap_context(capsnap->context);
1392 } else {
1393 BUG_ON(!ci->i_head_snapc);
1394 snapc = ceph_get_snap_context(ci->i_head_snapc);
1395 }
1396 spin_unlock(&ci->i_ceph_lock);
1397
Al Viro4908b822014-04-03 23:09:01 -04001398 /* we might need to revert back to that point */
1399 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001400 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zhengc8fe9b12015-12-23 21:23:38 +08001401 written = ceph_direct_read_write(iocb, &data, snapc,
1402 &prealloc_cf);
majianpenge8344e62013-09-12 13:54:26 +08001403 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001404 written = ceph_sync_write(iocb, &data, pos, snapc);
Al Viro4908b822014-04-03 23:09:01 -04001405 if (written > 0)
1406 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001407 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001408 } else {
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001409 /*
1410 * No need to acquire the i_truncate_mutex. Because
1411 * the MDS revokes Fwb caps before sending truncate
1412 * message to us. We can't get Fwb cap while there
1413 * are pending vmtruncate. So write and vmtruncate
1414 * can not run at the same time
1415 */
Al Viro4908b822014-04-03 23:09:01 -04001416 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001417 if (likely(written >= 0))
1418 iocb->ki_pos = pos + written;
Al Viro59551022016-01-22 15:40:57 -05001419 inode_unlock(inode);
Sage Weil124e68e2009-10-06 11:31:08 -07001420 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001421
Yan, Zheng03d254e2013-04-12 16:11:13 +08001422 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001423 int dirty;
Sage Weilbe655592011-11-30 09:47:09 -08001424 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001425 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001426 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1427 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001428 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001429 if (dirty)
1430 __mark_inode_dirty(inode, dirty);
Sage Weil124e68e2009-10-06 11:31:08 -07001431 }
Sage Weil7971bd92013-05-01 21:15:58 -07001432
Sage Weil124e68e2009-10-06 11:31:08 -07001433 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001434 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001435 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001436 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001437
Yan, Zhenga5cd74a2017-08-14 10:50:50 +08001438 if (written == -EOLDSNAPC) {
1439 dout("aio_write %p %llx.%llx %llu~%u" "got EOLDSNAPC, retrying\n",
1440 inode, ceph_vinop(inode), pos, (unsigned)count);
1441 goto retry_snap;
1442 }
1443
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001444 if (written >= 0) {
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001445 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_NEARFULL))
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001446 iocb->ki_flags |= IOCB_DSYNC;
Christoph Hellwig6aa657c2016-04-07 08:52:02 -07001447 written = generic_write_sync(iocb, written);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001448 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001449
Sage Weil2f75e9e2013-08-09 09:57:58 -07001450 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001451
Sage Weil2f75e9e2013-08-09 09:57:58 -07001452out:
Al Viro59551022016-01-22 15:40:57 -05001453 inode_unlock(inode);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001454out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001455 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001456 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001457 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001458}
1459
1460/*
1461 * llseek. be sure to verify file size on SEEK_END.
1462 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001463static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001464{
1465 struct inode *inode = file->f_mapping->host;
Yan, Zheng99c88e62015-12-30 11:32:46 +08001466 loff_t i_size;
Phil Turnbull955818c2016-07-21 13:43:09 -04001467 loff_t ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001468
Al Viro59551022016-01-22 15:40:57 -05001469 inode_lock(inode);
Sage Weil6a82c472011-12-13 09:19:26 -08001470
Andrew Morton965c8e52012-12-17 15:59:39 -08001471 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001472 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Phil Turnbull955818c2016-07-21 13:43:09 -04001473 if (ret < 0)
Sage Weil124e68e2009-10-06 11:31:08 -07001474 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -04001475 }
1476
Yan, Zheng99c88e62015-12-30 11:32:46 +08001477 i_size = i_size_read(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -08001478 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001479 case SEEK_END:
Yan, Zheng99c88e62015-12-30 11:32:46 +08001480 offset += i_size;
Sage Weil124e68e2009-10-06 11:31:08 -07001481 break;
1482 case SEEK_CUR:
1483 /*
1484 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1485 * position-querying operation. Avoid rewriting the "same"
1486 * f_pos value back to the file because a concurrent read(),
1487 * write() or lseek() might have altered it
1488 */
1489 if (offset == 0) {
Phil Turnbull955818c2016-07-21 13:43:09 -04001490 ret = file->f_pos;
Sage Weil124e68e2009-10-06 11:31:08 -07001491 goto out;
1492 }
1493 offset += file->f_pos;
1494 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001495 case SEEK_DATA:
Luis Henriques397f2382017-07-28 11:56:40 +01001496 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001497 ret = -ENXIO;
1498 goto out;
1499 }
1500 break;
1501 case SEEK_HOLE:
Luis Henriques397f2382017-07-28 11:56:40 +01001502 if (offset < 0 || offset >= i_size) {
Josef Bacik06222e42011-07-18 13:21:38 -04001503 ret = -ENXIO;
1504 goto out;
1505 }
Yan, Zheng99c88e62015-12-30 11:32:46 +08001506 offset = i_size;
Josef Bacik06222e42011-07-18 13:21:38 -04001507 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001508 }
1509
Phil Turnbull955818c2016-07-21 13:43:09 -04001510 ret = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Sage Weil124e68e2009-10-06 11:31:08 -07001511
1512out:
Al Viro59551022016-01-22 15:40:57 -05001513 inode_unlock(inode);
Phil Turnbull955818c2016-07-21 13:43:09 -04001514 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -07001515}
1516
Li Wangad7a60d2013-08-15 11:51:44 +08001517static inline void ceph_zero_partial_page(
1518 struct inode *inode, loff_t offset, unsigned size)
1519{
1520 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001521 pgoff_t index = offset >> PAGE_SHIFT;
Li Wangad7a60d2013-08-15 11:51:44 +08001522
1523 page = find_lock_page(inode->i_mapping, index);
1524 if (page) {
1525 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001526 zero_user(page, offset & (PAGE_SIZE - 1), size);
Li Wangad7a60d2013-08-15 11:51:44 +08001527 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001528 put_page(page);
Li Wangad7a60d2013-08-15 11:51:44 +08001529 }
1530}
1531
1532static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1533 loff_t length)
1534{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001535 loff_t nearly = round_up(offset, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001536 if (offset < nearly) {
1537 loff_t size = nearly - offset;
1538 if (length < size)
1539 size = length;
1540 ceph_zero_partial_page(inode, offset, size);
1541 offset += size;
1542 length -= size;
1543 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001544 if (length >= PAGE_SIZE) {
1545 loff_t size = round_down(length, PAGE_SIZE);
Li Wangad7a60d2013-08-15 11:51:44 +08001546 truncate_pagecache_range(inode, offset, offset + size - 1);
1547 offset += size;
1548 length -= size;
1549 }
1550 if (length)
1551 ceph_zero_partial_page(inode, offset, length);
1552}
1553
1554static int ceph_zero_partial_object(struct inode *inode,
1555 loff_t offset, loff_t *length)
1556{
1557 struct ceph_inode_info *ci = ceph_inode(inode);
1558 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1559 struct ceph_osd_request *req;
1560 int ret = 0;
1561 loff_t zero = 0;
1562 int op;
1563
1564 if (!length) {
1565 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1566 length = &zero;
1567 } else {
1568 op = CEPH_OSD_OP_ZERO;
1569 }
1570
1571 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1572 ceph_vino(inode),
1573 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001574 0, 1, op,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001575 CEPH_OSD_FLAG_WRITE,
Li Wangad7a60d2013-08-15 11:51:44 +08001576 NULL, 0, 0, false);
1577 if (IS_ERR(req)) {
1578 ret = PTR_ERR(req);
1579 goto out;
1580 }
1581
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001582 req->r_mtime = inode->i_mtime;
Li Wangad7a60d2013-08-15 11:51:44 +08001583 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1584 if (!ret) {
1585 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1586 if (ret == -ENOENT)
1587 ret = 0;
1588 }
1589 ceph_osdc_put_request(req);
1590
1591out:
1592 return ret;
1593}
1594
1595static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1596{
1597 int ret = 0;
1598 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng76271512016-02-03 21:24:49 +08001599 s32 stripe_unit = ci->i_layout.stripe_unit;
1600 s32 stripe_count = ci->i_layout.stripe_count;
1601 s32 object_size = ci->i_layout.object_size;
Sage Weilb314a902013-08-27 12:15:16 -07001602 u64 object_set_size = object_size * stripe_count;
1603 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001604
Sage Weilb314a902013-08-27 12:15:16 -07001605 /* round offset up to next period boundary */
1606 nearly = offset + object_set_size - 1;
1607 t = nearly;
1608 nearly -= do_div(t, object_set_size);
1609
Li Wangad7a60d2013-08-15 11:51:44 +08001610 while (length && offset < nearly) {
1611 loff_t size = length;
1612 ret = ceph_zero_partial_object(inode, offset, &size);
1613 if (ret < 0)
1614 return ret;
1615 offset += size;
1616 length -= size;
1617 }
1618 while (length >= object_set_size) {
1619 int i;
1620 loff_t pos = offset;
1621 for (i = 0; i < stripe_count; ++i) {
1622 ret = ceph_zero_partial_object(inode, pos, NULL);
1623 if (ret < 0)
1624 return ret;
1625 pos += stripe_unit;
1626 }
1627 offset += object_set_size;
1628 length -= object_set_size;
1629 }
1630 while (length) {
1631 loff_t size = length;
1632 ret = ceph_zero_partial_object(inode, offset, &size);
1633 if (ret < 0)
1634 return ret;
1635 offset += size;
1636 length -= size;
1637 }
1638 return ret;
1639}
1640
1641static long ceph_fallocate(struct file *file, int mode,
1642 loff_t offset, loff_t length)
1643{
1644 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001645 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001646 struct ceph_inode_info *ci = ceph_inode(inode);
1647 struct ceph_osd_client *osdc =
1648 &ceph_inode_to_client(inode)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001649 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001650 int want, got = 0;
1651 int dirty;
1652 int ret = 0;
1653 loff_t endoff = 0;
1654 loff_t size;
1655
Yan, Zheng494d77b2014-06-26 15:25:17 +08001656 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
1657 return -EOPNOTSUPP;
1658
Li Wangad7a60d2013-08-15 11:51:44 +08001659 if (!S_ISREG(inode->i_mode))
1660 return -EOPNOTSUPP;
1661
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001662 prealloc_cf = ceph_alloc_cap_flush();
1663 if (!prealloc_cf)
1664 return -ENOMEM;
1665
Al Viro59551022016-01-22 15:40:57 -05001666 inode_lock(inode);
Li Wangad7a60d2013-08-15 11:51:44 +08001667
1668 if (ceph_snap(inode) != CEPH_NOSNAP) {
1669 ret = -EROFS;
1670 goto unlock;
1671 }
1672
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001673 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) &&
1674 !(mode & FALLOC_FL_PUNCH_HOLE)) {
Li Wangad7a60d2013-08-15 11:51:44 +08001675 ret = -ENOSPC;
1676 goto unlock;
1677 }
1678
Yan, Zheng28127bd2014-11-14 22:38:29 +08001679 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1680 ret = ceph_uninline_data(file, NULL);
1681 if (ret < 0)
1682 goto unlock;
1683 }
1684
Li Wangad7a60d2013-08-15 11:51:44 +08001685 size = i_size_read(inode);
Luis Henriques42c99fc2017-05-05 18:28:44 +01001686 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
Li Wangad7a60d2013-08-15 11:51:44 +08001687 endoff = offset + length;
Luis Henriques42c99fc2017-05-05 18:28:44 +01001688 ret = inode_newsize_ok(inode, endoff);
1689 if (ret)
1690 goto unlock;
1691 }
Li Wangad7a60d2013-08-15 11:51:44 +08001692
1693 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1694 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1695 else
1696 want = CEPH_CAP_FILE_BUFFER;
1697
Yan, Zheng3738daa2014-11-14 22:10:07 +08001698 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001699 if (ret < 0)
1700 goto unlock;
1701
1702 if (mode & FALLOC_FL_PUNCH_HOLE) {
1703 if (offset < size)
1704 ceph_zero_pagecache_range(inode, offset, length);
1705 ret = ceph_zero_objects(inode, offset, length);
1706 } else if (endoff > size) {
1707 truncate_pagecache_range(inode, size, -1);
1708 if (ceph_inode_set_size(inode, endoff))
1709 ceph_check_caps(ceph_inode(inode),
1710 CHECK_CAPS_AUTHONLY, NULL);
1711 }
1712
1713 if (!ret) {
1714 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001715 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001716 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1717 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001718 spin_unlock(&ci->i_ceph_lock);
1719 if (dirty)
1720 __mark_inode_dirty(inode, dirty);
1721 }
1722
1723 ceph_put_cap_refs(ci, got);
1724unlock:
Al Viro59551022016-01-22 15:40:57 -05001725 inode_unlock(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001726 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001727 return ret;
1728}
1729
Sage Weil124e68e2009-10-06 11:31:08 -07001730const struct file_operations ceph_file_fops = {
1731 .open = ceph_open,
1732 .release = ceph_release,
1733 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04001734 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04001735 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07001736 .mmap = ceph_mmap,
1737 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07001738 .lock = ceph_lock,
1739 .flock = ceph_flock,
Yan, Zheng7ce469a2016-11-08 21:54:34 +08001740 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04001741 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07001742 .unlocked_ioctl = ceph_ioctl,
1743 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08001744 .fallocate = ceph_fallocate,
Sage Weil124e68e2009-10-06 11:31:08 -07001745};
1746