blob: 0c62868b5c561b37fa866b68bbe34f3ffb1fd6a6 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil124e68e2009-10-06 11:31:08 -07002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/module.h>
Sage Weil124e68e2009-10-06 11:31:08 -07004#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/slab.h>
Sage Weil124e68e2009-10-06 11:31:08 -07006#include <linux/file.h>
Sage Weil5ef50c32012-07-31 11:27:36 -07007#include <linux/mount.h>
Sage Weil124e68e2009-10-06 11:31:08 -07008#include <linux/namei.h>
9#include <linux/writeback.h>
Li Wangad7a60d2013-08-15 11:51:44 +080010#include <linux/falloc.h>
Sage Weil124e68e2009-10-06 11:31:08 -070011
12#include "super.h"
13#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040014#include "cache.h"
Sage Weil124e68e2009-10-06 11:31:08 -070015
16/*
17 * Ceph file operations
18 *
19 * Implement basic open/close functionality, and implement
20 * read/write.
21 *
22 * We implement three modes of file I/O:
23 * - buffered uses the generic_file_aio_{read,write} helpers
24 *
25 * - synchronous is used when there is multi-client read/write
26 * sharing, avoids the page cache, and synchronously waits for an
27 * ack from the OSD.
28 *
29 * - direct io takes the variant of the sync path that references
30 * user pages directly.
31 *
32 * fsync() flushes and waits on dirty pages, but just queues metadata
33 * for writeback: since the MDS can recover size and mtime there is no
34 * need to wait for MDS acknowledgement.
35 */
36
37
38/*
39 * Prepare an open request. Preallocate ceph_cap to avoid an
40 * inopportune ENOMEM later.
41 */
42static struct ceph_mds_request *
43prepare_open_request(struct super_block *sb, int flags, int create_mode)
44{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070045 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
46 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -070047 struct ceph_mds_request *req;
48 int want_auth = USE_ANY_MDS;
49 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
50
51 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
52 want_auth = USE_AUTH_MDS;
53
54 req = ceph_mdsc_create_request(mdsc, op, want_auth);
55 if (IS_ERR(req))
56 goto out;
57 req->r_fmode = ceph_flags_to_mode(flags);
58 req->r_args.open.flags = cpu_to_le32(flags);
59 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil124e68e2009-10-06 11:31:08 -070060out:
61 return req;
62}
63
64/*
65 * initialize private struct file data.
66 * if we fail, clean up by dropping fmode reference on the ceph_inode
67 */
68static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
69{
70 struct ceph_file_info *cf;
71 int ret = 0;
Milosz Tanski99ccbd22013-08-21 17:29:54 -040072 struct ceph_inode_info *ci = ceph_inode(inode);
73 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
74 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -070075
76 switch (inode->i_mode & S_IFMT) {
77 case S_IFREG:
Milosz Tanski99ccbd22013-08-21 17:29:54 -040078 /* First file open request creates the cookie, we want to keep
79 * this cookie around for the filetime of the inode as not to
80 * have to worry about fscache register / revoke / operation
81 * races.
82 *
83 * Also, if we know the operation is going to invalidate data
84 * (non readonly) just nuke the cache right away.
85 */
86 ceph_fscache_register_inode_cookie(mdsc->fsc, ci);
87 if ((fmode & CEPH_FILE_MODE_WR))
88 ceph_fscache_invalidate(inode);
Sage Weil124e68e2009-10-06 11:31:08 -070089 case S_IFDIR:
90 dout("init_file %p %p 0%o (regular)\n", inode, file,
91 inode->i_mode);
Yan, Zheng687265e2015-06-13 17:27:05 +080092 cf = kmem_cache_alloc(ceph_file_cachep, GFP_KERNEL | __GFP_ZERO);
Sage Weil124e68e2009-10-06 11:31:08 -070093 if (cf == NULL) {
94 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
95 return -ENOMEM;
96 }
97 cf->fmode = fmode;
98 cf->next_offset = 2;
Yan, Zhengfdd4e152015-06-16 20:48:56 +080099 cf->readdir_cache_idx = -1;
Sage Weil124e68e2009-10-06 11:31:08 -0700100 file->private_data = cf;
101 BUG_ON(inode->i_fop->release != ceph_release);
102 break;
103
104 case S_IFLNK:
105 dout("init_file %p %p 0%o (symlink)\n", inode, file,
106 inode->i_mode);
107 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
108 break;
109
110 default:
111 dout("init_file %p %p 0%o (special)\n", inode, file,
112 inode->i_mode);
113 /*
114 * we need to drop the open ref now, since we don't
115 * have .release set to ceph_release.
116 */
117 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
118 BUG_ON(inode->i_fop->release == ceph_release);
119
120 /* call the proper open fop */
121 ret = inode->i_fop->open(inode, file);
122 }
123 return ret;
124}
125
126/*
Sage Weil124e68e2009-10-06 11:31:08 -0700127 * If we already have the requisite capabilities, we can satisfy
128 * the open request locally (no need to request new caps from the
129 * MDS). We do, however, need to inform the MDS (asynchronously)
130 * if our wanted caps set expands.
131 */
132int ceph_open(struct inode *inode, struct file *file)
133{
134 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700135 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
136 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700137 struct ceph_mds_request *req;
138 struct ceph_file_info *cf = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700139 int err;
140 int flags, fmode, wanted;
141
142 if (cf) {
143 dout("open file %p is already opened\n", file);
144 return 0;
145 }
146
147 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
148 flags = file->f_flags & ~(O_CREAT|O_EXCL);
149 if (S_ISDIR(inode->i_mode))
150 flags = O_DIRECTORY; /* mds likes to know */
151
152 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
153 ceph_vinop(inode), file, flags, file->f_flags);
154 fmode = ceph_flags_to_mode(flags);
155 wanted = ceph_caps_for_mode(fmode);
156
157 /* snapped files are read-only */
158 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
159 return -EROFS;
160
161 /* trivially open snapdir */
162 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800163 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700164 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800165 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700166 return ceph_init_file(inode, file, fmode);
167 }
168
169 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800170 * No need to block if we have caps on the auth MDS (for
171 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700172 * asynchronously.
173 */
Sage Weilbe655592011-11-30 09:47:09 -0800174 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800175 if (__ceph_is_any_real_caps(ci) &&
176 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Sage Weil124e68e2009-10-06 11:31:08 -0700177 int mds_wanted = __ceph_caps_mds_wanted(ci);
178 int issued = __ceph_caps_issued(ci, NULL);
179
180 dout("open %p fmode %d want %s issued %s using existing\n",
181 inode, fmode, ceph_cap_string(wanted),
182 ceph_cap_string(issued));
183 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800184 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700185
186 /* adjust wanted? */
187 if ((issued & wanted) != wanted &&
188 (mds_wanted & wanted) != wanted &&
189 ceph_snap(inode) != CEPH_SNAPDIR)
190 ceph_check_caps(ci, 0, NULL);
191
192 return ceph_init_file(inode, file, fmode);
193 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
194 (ci->i_snap_caps & wanted) == wanted) {
195 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800196 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700197 return ceph_init_file(inode, file, fmode);
198 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400199
Sage Weilbe655592011-11-30 09:47:09 -0800200 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700201
202 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
203 req = prepare_open_request(inode->i_sb, flags, 0);
204 if (IS_ERR(req)) {
205 err = PTR_ERR(req);
206 goto out;
207 }
Sage Weil70b666c2011-05-27 09:24:26 -0700208 req->r_inode = inode;
209 ihold(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400210
Sage Weil124e68e2009-10-06 11:31:08 -0700211 req->r_num_caps = 1;
Jianpeng Mae36d5712015-08-18 10:25:35 +0800212 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700213 if (!err)
214 err = ceph_init_file(inode, file, req->r_fmode);
215 ceph_mdsc_put_request(req);
216 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
217out:
218 return err;
219}
220
221
222/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700223 * Do a lookup + open with a single request. If we get a non-existent
224 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700225 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700226int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400227 struct file *file, unsigned flags, umode_t mode,
Al Virod9585272012-06-22 12:39:14 +0400228 int *opened)
Sage Weil124e68e2009-10-06 11:31:08 -0700229{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700230 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
231 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700232 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700233 struct dentry *dn;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800234 struct ceph_acls_info acls = {};
Sage Weil124e68e2009-10-06 11:31:08 -0700235 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700236
Al Viroa4555892014-10-21 20:11:25 -0400237 dout("atomic_open %p dentry %p '%pd' %s flags %d mode 0%o\n",
238 dir, dentry, dentry,
Sage Weil5ef50c32012-07-31 11:27:36 -0700239 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
240
241 if (dentry->d_name.len > NAME_MAX)
242 return -ENAMETOOLONG;
243
244 err = ceph_init_dentry(dentry);
245 if (err < 0)
246 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700247
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800248 if (flags & O_CREAT) {
249 err = ceph_pre_init_acls(dir, &mode, &acls);
250 if (err < 0)
251 return err;
252 }
253
Sage Weil124e68e2009-10-06 11:31:08 -0700254 /* do the open */
255 req = prepare_open_request(dir->i_sb, flags, mode);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800256 if (IS_ERR(req)) {
257 err = PTR_ERR(req);
258 goto out_acl;
259 }
Sage Weil124e68e2009-10-06 11:31:08 -0700260 req->r_dentry = dget(dentry);
261 req->r_num_caps = 2;
262 if (flags & O_CREAT) {
263 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
264 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800265 if (acls.pagelist) {
266 req->r_pagelist = acls.pagelist;
267 acls.pagelist = NULL;
268 }
Sage Weil124e68e2009-10-06 11:31:08 -0700269 }
270 req->r_locked_dir = dir; /* caller holds dir->i_mutex */
Sage Weilacda7652011-07-26 11:27:48 -0700271 err = ceph_mdsc_do_request(mdsc,
272 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
273 req);
Yan, Zhengbf91c312015-01-19 13:23:20 +0800274 err = ceph_handle_snapdir(req, dentry, err);
Sam Lang79aec9842012-12-19 09:44:23 -1000275 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800276 goto out_req;
Sam Lang79aec9842012-12-19 09:44:23 -1000277
Jianpeng Maa43137f2015-08-18 10:23:50 +0800278 if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700279 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700280
281 if (d_unhashed(dentry)) {
282 dn = ceph_finish_lookup(req, dentry, err);
283 if (IS_ERR(dn))
284 err = PTR_ERR(dn);
285 } else {
286 /* we were given a hashed negative dentry */
287 dn = NULL;
288 }
Sage Weil468640e2011-07-26 11:28:11 -0700289 if (err)
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800290 goto out_req;
David Howells2b0143b2015-03-17 22:25:59 +0000291 if (dn || d_really_is_negative(dentry) || d_is_symlink(dentry)) {
Sage Weil5ef50c32012-07-31 11:27:36 -0700292 /* make vfs retry on splice, ENOENT, or symlink */
293 dout("atomic_open finish_no_open on dn %p\n", dn);
294 err = finish_no_open(file, dn);
295 } else {
296 dout("atomic_open finish_open on dn %p\n", dn);
Sam Lang6e8575f2012-12-28 09:56:46 -0800297 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
David Howells2b0143b2015-03-17 22:25:59 +0000298 ceph_init_inode_acls(d_inode(dentry), &acls);
Sam Lang6e8575f2012-12-28 09:56:46 -0800299 *opened |= FILE_CREATED;
300 }
Sage Weil5ef50c32012-07-31 11:27:36 -0700301 err = finish_open(file, dentry, ceph_open, opened);
302 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800303out_req:
Yan, Zhengab866542014-04-01 20:20:17 +0800304 if (!req->r_err && req->r_target_inode)
305 ceph_put_fmode(ceph_inode(req->r_target_inode), req->r_fmode);
Sage Weil124e68e2009-10-06 11:31:08 -0700306 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800307out_acl:
308 ceph_release_acls_info(&acls);
Sage Weil5ef50c32012-07-31 11:27:36 -0700309 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400310 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700311}
312
313int ceph_release(struct inode *inode, struct file *file)
314{
315 struct ceph_inode_info *ci = ceph_inode(inode);
316 struct ceph_file_info *cf = file->private_data;
317
318 dout("release inode %p file %p\n", inode, file);
319 ceph_put_fmode(ci, cf->fmode);
320 if (cf->last_readdir)
321 ceph_mdsc_put_request(cf->last_readdir);
322 kfree(cf->last_name);
323 kfree(cf->dir_info);
Sage Weil124e68e2009-10-06 11:31:08 -0700324 kmem_cache_free(ceph_file_cachep, cf);
Sage Weil195d3ce2010-03-01 09:57:54 -0800325
326 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700327 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700328 return 0;
329}
330
Yan, Zheng83701242014-11-14 22:36:18 +0800331enum {
332 CHECK_EOF = 1,
333 READ_INLINE = 2,
334};
335
Sage Weil124e68e2009-10-06 11:31:08 -0700336/*
Sage Weil124e68e2009-10-06 11:31:08 -0700337 * Read a range of bytes striped over one or more objects. Iterate over
338 * objects we stripe over. (That's not atomic, but good enough for now.)
339 *
340 * If we get a short result from the OSD, check against i_size; we need to
341 * only return a short read to the caller if we hit EOF.
342 */
343static int striped_read(struct inode *inode,
344 u64 off, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800345 struct page **pages, int num_pages,
Sage Weilc3cd6282011-06-01 16:08:44 -0700346 int *checkeof, bool o_direct,
Henry C Changab226e22010-12-15 20:41:54 -0800347 unsigned long buf_align)
Sage Weil124e68e2009-10-06 11:31:08 -0700348{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700349 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700350 struct ceph_inode_info *ci = ceph_inode(inode);
Dan Carpenter688bac42013-07-23 16:48:01 +0300351 u64 pos, this_len, left;
Sage Weilb7495fc2010-11-09 12:43:12 -0800352 int io_align, page_align;
Dan Carpenter688bac42013-07-23 16:48:01 +0300353 int pages_left;
Sage Weil124e68e2009-10-06 11:31:08 -0700354 int read;
355 struct page **page_pos;
356 int ret;
357 bool hit_stripe, was_short;
358
359 /*
360 * we may need to do multiple reads. not atomic, unfortunately.
361 */
362 pos = off;
363 left = len;
364 page_pos = pages;
365 pages_left = num_pages;
366 read = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -0800367 io_align = off & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700368
369more:
Sage Weilc3cd6282011-06-01 16:08:44 -0700370 if (o_direct)
Henry C Changab226e22010-12-15 20:41:54 -0800371 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
Sage Weilb7495fc2010-11-09 12:43:12 -0800372 else
373 page_align = pos & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700374 this_len = left;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700375 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700376 &ci->i_layout, pos, &this_len,
377 ci->i_truncate_seq,
378 ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800379 page_pos, pages_left, page_align);
Sage Weil124e68e2009-10-06 11:31:08 -0700380 if (ret == -ENOENT)
381 ret = 0;
Sage Weil0e987282011-06-07 20:40:35 -0700382 hit_stripe = this_len < left;
383 was_short = ret >= 0 && ret < this_len;
Dan Carpenter688bac42013-07-23 16:48:01 +0300384 dout("striped_read %llu~%llu (read %u) got %d%s%s\n", pos, left, read,
Sage Weil124e68e2009-10-06 11:31:08 -0700385 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
386
majianpeng02ae66d2013-08-06 16:20:38 +0800387 if (ret >= 0) {
388 int didpages;
389 if (was_short && (pos + ret < inode->i_size)) {
Yan, Zheng1487a682015-01-06 15:29:14 +0800390 int zlen = min(this_len - ret,
391 inode->i_size - pos - ret);
392 int zoff = (o_direct ? buf_align : io_align) +
393 read + ret;
majianpeng02ae66d2013-08-06 16:20:38 +0800394 dout(" zero gap %llu to %llu\n",
Yan, Zheng1487a682015-01-06 15:29:14 +0800395 pos + ret, pos + ret + zlen);
396 ceph_zero_page_vector_range(zoff, zlen, pages);
397 ret += zlen;
Sage Weil124e68e2009-10-06 11:31:08 -0700398 }
majianpeng02ae66d2013-08-06 16:20:38 +0800399
400 didpages = (page_align + ret) >> PAGE_CACHE_SHIFT;
Sage Weil124e68e2009-10-06 11:31:08 -0700401 pos += ret;
402 read = pos - off;
403 left -= ret;
404 page_pos += didpages;
405 pages_left -= didpages;
406
majianpeng02ae66d2013-08-06 16:20:38 +0800407 /* hit stripe and need continue*/
408 if (left && hit_stripe && pos < inode->i_size)
Sage Weil124e68e2009-10-06 11:31:08 -0700409 goto more;
410 }
411
majianpengee7289b2013-08-21 15:02:51 +0800412 if (read > 0) {
majianpeng02ae66d2013-08-06 16:20:38 +0800413 ret = read;
Sage Weilc3cd6282011-06-01 16:08:44 -0700414 /* did we bounce off eof? */
415 if (pos + left > inode->i_size)
Yan, Zheng83701242014-11-14 22:36:18 +0800416 *checkeof = CHECK_EOF;
Sage Weil124e68e2009-10-06 11:31:08 -0700417 }
418
Sage Weil124e68e2009-10-06 11:31:08 -0700419 dout("striped_read returns %d\n", ret);
420 return ret;
421}
422
423/*
424 * Completely synchronous read and write methods. Direct from __user
425 * buffer to osd, or directly to user pages (if O_DIRECT).
426 *
427 * If the read spans object boundary, just do multiple reads.
428 */
majianpeng8eb4efb2013-09-26 14:42:17 +0800429static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *i,
430 int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700431{
majianpeng8eb4efb2013-09-26 14:42:17 +0800432 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500433 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700434 struct page **pages;
majianpeng8eb4efb2013-09-26 14:42:17 +0800435 u64 off = iocb->ki_pos;
Henry C Changab226e22010-12-15 20:41:54 -0800436 int num_pages, ret;
Al Viro2b777c92014-04-03 22:31:22 -0400437 size_t len = iov_iter_count(i);
Sage Weil124e68e2009-10-06 11:31:08 -0700438
majianpeng8eb4efb2013-09-26 14:42:17 +0800439 dout("sync_read on file %p %llu~%u %s\n", file, off,
440 (unsigned)len,
Sage Weil124e68e2009-10-06 11:31:08 -0700441 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
Yan, Zhengd0d0db22014-07-21 10:15:48 +0800442
443 if (!len)
444 return 0;
Sage Weile98b6fe2010-11-09 12:24:53 -0800445 /*
446 * flush any page cache pages in this range. this
447 * will make concurrent normal and sync io slow,
448 * but it will at least behave sensibly when they are
449 * in sequence.
450 */
majianpeng8eb4efb2013-09-26 14:42:17 +0800451 ret = filemap_write_and_wait_range(inode->i_mapping, off,
452 off + len);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800453 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800454 return ret;
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800455
Al Viro2ba48ce2015-04-09 13:52:01 -0400456 if (iocb->ki_flags & IOCB_DIRECT) {
majianpeng8eb4efb2013-09-26 14:42:17 +0800457 while (iov_iter_count(i)) {
Al Viro2b777c92014-04-03 22:31:22 -0400458 size_t start;
459 ssize_t n;
Sage Weil124e68e2009-10-06 11:31:08 -0700460
Al Viro2b777c92014-04-03 22:31:22 -0400461 n = iov_iter_get_pages_alloc(i, &pages, INT_MAX, &start);
462 if (n < 0)
463 return n;
Sage Weil124e68e2009-10-06 11:31:08 -0700464
Al Viro2b777c92014-04-03 22:31:22 -0400465 num_pages = (n + start + PAGE_SIZE - 1) / PAGE_SIZE;
466
467 ret = striped_read(inode, off, n,
majianpeng8eb4efb2013-09-26 14:42:17 +0800468 pages, num_pages, checkeof,
Al Viro2b777c92014-04-03 22:31:22 -0400469 1, start);
470
majianpeng8eb4efb2013-09-26 14:42:17 +0800471 ceph_put_page_vector(pages, num_pages, true);
472
473 if (ret <= 0)
474 break;
475 off += ret;
476 iov_iter_advance(i, ret);
Al Viro2b777c92014-04-03 22:31:22 -0400477 if (ret < n)
majianpeng8eb4efb2013-09-26 14:42:17 +0800478 break;
479 }
480 } else {
481 num_pages = calc_pages_for(off, len);
Yan, Zheng687265e2015-06-13 17:27:05 +0800482 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
majianpeng8eb4efb2013-09-26 14:42:17 +0800483 if (IS_ERR(pages))
484 return PTR_ERR(pages);
485 ret = striped_read(inode, off, len, pages,
486 num_pages, checkeof, 0, 0);
487 if (ret > 0) {
488 int l, k = 0;
Al Viro2b777c92014-04-03 22:31:22 -0400489 size_t left = ret;
majianpeng8eb4efb2013-09-26 14:42:17 +0800490
491 while (left) {
Yan, Zheng5aaa4322014-07-02 10:13:00 +0800492 size_t page_off = off & ~PAGE_MASK;
493 size_t copy = min_t(size_t,
494 PAGE_SIZE - page_off, left);
495 l = copy_page_to_iter(pages[k++], page_off,
496 copy, i);
Al Viro2b777c92014-04-03 22:31:22 -0400497 off += l;
498 left -= l;
499 if (l < copy)
majianpeng8eb4efb2013-09-26 14:42:17 +0800500 break;
501 }
502 }
Sage Weil124e68e2009-10-06 11:31:08 -0700503 ceph_release_page_vector(pages, num_pages);
majianpeng8eb4efb2013-09-26 14:42:17 +0800504 }
505
506 if (off > iocb->ki_pos) {
507 ret = off - iocb->ki_pos;
508 iocb->ki_pos = off;
509 }
510
Sage Weil124e68e2009-10-06 11:31:08 -0700511 dout("sync_read result %d\n", ret);
512 return ret;
513}
514
515/*
Alex Elder26be8802013-04-15 11:20:42 -0500516 * Write commit request unsafe callback, called to tell us when a
517 * request is unsafe (that is, in flight--has been handed to the
518 * messenger to send to its target osd). It is called again when
519 * we've received a response message indicating the request is
520 * "safe" (its CEPH_OSD_FLAG_ONDISK flag is set), or when a request
521 * is completed early (and unsuccessfully) due to a timeout or
522 * interrupt.
523 *
524 * This is used if we requested both an ACK and ONDISK commit reply
525 * from the OSD.
Sage Weil124e68e2009-10-06 11:31:08 -0700526 */
Alex Elder26be8802013-04-15 11:20:42 -0500527static void ceph_sync_write_unsafe(struct ceph_osd_request *req, bool unsafe)
Sage Weil124e68e2009-10-06 11:31:08 -0700528{
529 struct ceph_inode_info *ci = ceph_inode(req->r_inode);
530
Alex Elder26be8802013-04-15 11:20:42 -0500531 dout("%s %p tid %llu %ssafe\n", __func__, req, req->r_tid,
532 unsafe ? "un" : "");
533 if (unsafe) {
534 ceph_get_cap_refs(ci, CEPH_CAP_FILE_WR);
535 spin_lock(&ci->i_unsafe_lock);
536 list_add_tail(&req->r_unsafe_item,
537 &ci->i_unsafe_writes);
538 spin_unlock(&ci->i_unsafe_lock);
539 } else {
540 spin_lock(&ci->i_unsafe_lock);
541 list_del_init(&req->r_unsafe_item);
542 spin_unlock(&ci->i_unsafe_lock);
543 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
544 }
Sage Weil124e68e2009-10-06 11:31:08 -0700545}
546
majianpenge8344e62013-09-12 13:54:26 +0800547
Sage Weil124e68e2009-10-06 11:31:08 -0700548/*
majianpenge8344e62013-09-12 13:54:26 +0800549 * Synchronous write, straight from __user pointer or user pages.
Sage Weil124e68e2009-10-06 11:31:08 -0700550 *
551 * If write spans object boundary, just do multiple writes. (For a
552 * correct atomic write, we should e.g. take write locks on all
553 * objects, rollback on failure, etc.)
554 */
majianpenge8344e62013-09-12 13:54:26 +0800555static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +0800556ceph_sync_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
557 struct ceph_snap_context *snapc)
Sage Weil124e68e2009-10-06 11:31:08 -0700558{
majianpenge8344e62013-09-12 13:54:26 +0800559 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500560 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700561 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700562 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Alex Elderacead002013-03-14 14:09:05 -0500563 struct ceph_vino vino;
Sage Weil124e68e2009-10-06 11:31:08 -0700564 struct ceph_osd_request *req;
565 struct page **pages;
566 int num_pages;
Sage Weil124e68e2009-10-06 11:31:08 -0700567 int written = 0;
568 int flags;
Sage Weil124e68e2009-10-06 11:31:08 -0700569 int check_caps = 0;
570 int ret;
571 struct timespec mtime = CURRENT_TIME;
Al Viro4908b822014-04-03 23:09:01 -0400572 size_t count = iov_iter_count(from);
Sage Weil124e68e2009-10-06 11:31:08 -0700573
Al Viro496ad9a2013-01-23 17:07:38 -0500574 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
Sage Weil124e68e2009-10-06 11:31:08 -0700575 return -EROFS;
576
majianpenge8344e62013-09-12 13:54:26 +0800577 dout("sync_direct_write on file %p %lld~%u\n", file, pos,
578 (unsigned)count);
Sage Weil124e68e2009-10-06 11:31:08 -0700579
majianpenge8344e62013-09-12 13:54:26 +0800580 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800581 if (ret < 0)
582 return ret;
583
584 ret = invalidate_inode_pages2_range(inode->i_mapping,
585 pos >> PAGE_CACHE_SHIFT,
majianpenge8344e62013-09-12 13:54:26 +0800586 (pos + count) >> PAGE_CACHE_SHIFT);
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800587 if (ret < 0)
588 dout("invalidate_inode_pages2_range returned %d\n", ret);
589
Sage Weil124e68e2009-10-06 11:31:08 -0700590 flags = CEPH_OSD_FLAG_ORDERSNAP |
591 CEPH_OSD_FLAG_ONDISK |
592 CEPH_OSD_FLAG_WRITE;
Sage Weil124e68e2009-10-06 11:31:08 -0700593
Al Viro4908b822014-04-03 23:09:01 -0400594 while (iov_iter_count(from) > 0) {
595 u64 len = iov_iter_single_seg_count(from);
Al Viro64c31312014-04-03 22:58:25 -0400596 size_t start;
597 ssize_t n;
majianpenge8344e62013-09-12 13:54:26 +0800598
majianpenge8344e62013-09-12 13:54:26 +0800599 vino = ceph_vino(inode);
600 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800601 vino, pos, &len, 0,
majianpenge8344e62013-09-12 13:54:26 +0800602 2,/*include a 'startsync' command*/
603 CEPH_OSD_OP_WRITE, flags, snapc,
604 ci->i_truncate_seq,
605 ci->i_truncate_size,
606 false);
607 if (IS_ERR(req)) {
608 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400609 break;
majianpenge8344e62013-09-12 13:54:26 +0800610 }
611
Yan, Zheng144cba12015-04-27 11:09:54 +0800612 osd_req_op_init(req, 1, CEPH_OSD_OP_STARTSYNC, 0);
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800613
Al Viro4908b822014-04-03 23:09:01 -0400614 n = iov_iter_get_pages_alloc(from, &pages, len, &start);
Al Viro64c31312014-04-03 22:58:25 -0400615 if (unlikely(n < 0)) {
616 ret = n;
617 ceph_osdc_put_request(req);
618 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700619 }
620
Al Viro64c31312014-04-03 22:58:25 -0400621 num_pages = (n + start + PAGE_SIZE - 1) / PAGE_SIZE;
Sage Weil124e68e2009-10-06 11:31:08 -0700622 /*
623 * throw out any page cache pages in this range. this
624 * may block.
625 */
Sage Weil213c99e2010-08-03 10:25:11 -0700626 truncate_inode_pages_range(inode->i_mapping, pos,
Al Viro64c31312014-04-03 22:58:25 -0400627 (pos+n) | (PAGE_CACHE_SIZE-1));
628 osd_req_op_extent_osd_data_pages(req, 0, pages, n, start,
majianpenge8344e62013-09-12 13:54:26 +0800629 false, false);
630
631 /* BUG_ON(vino.snap != CEPH_NOSNAP); */
632 ceph_osdc_build_request(req, pos, snapc, vino.snap, &mtime);
633
634 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
635 if (!ret)
636 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
637
638 ceph_put_page_vector(pages, num_pages, false);
639
majianpenge8344e62013-09-12 13:54:26 +0800640 ceph_osdc_put_request(req);
Al Viro64c31312014-04-03 22:58:25 -0400641 if (ret)
majianpenge8344e62013-09-12 13:54:26 +0800642 break;
Al Viro64c31312014-04-03 22:58:25 -0400643 pos += n;
644 written += n;
Al Viro4908b822014-04-03 23:09:01 -0400645 iov_iter_advance(from, n);
Al Viro64c31312014-04-03 22:58:25 -0400646
647 if (pos > i_size_read(inode)) {
648 check_caps = ceph_inode_set_size(inode, pos);
649 if (check_caps)
650 ceph_check_caps(ceph_inode(inode),
651 CHECK_CAPS_AUTHONLY,
652 NULL);
653 }
majianpenge8344e62013-09-12 13:54:26 +0800654 }
655
656 if (ret != -EOLDSNAPC && written > 0) {
657 iocb->ki_pos = pos;
658 ret = written;
659 }
660 return ret;
661}
662
663
664/*
665 * Synchronous write, straight from __user pointer or user pages.
666 *
667 * If write spans object boundary, just do multiple writes. (For a
668 * correct atomic write, we should e.g. take write locks on all
669 * objects, rollback on failure, etc.)
670 */
Yan, Zheng06fee302014-07-28 14:33:46 +0800671static ssize_t
Yan, Zheng5dda377c2015-04-30 14:40:54 +0800672ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
673 struct ceph_snap_context *snapc)
majianpenge8344e62013-09-12 13:54:26 +0800674{
675 struct file *file = iocb->ki_filp;
676 struct inode *inode = file_inode(file);
677 struct ceph_inode_info *ci = ceph_inode(inode);
678 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
majianpenge8344e62013-09-12 13:54:26 +0800679 struct ceph_vino vino;
680 struct ceph_osd_request *req;
681 struct page **pages;
682 u64 len;
683 int num_pages;
684 int written = 0;
685 int flags;
686 int check_caps = 0;
687 int ret;
688 struct timespec mtime = CURRENT_TIME;
Al Viro4908b822014-04-03 23:09:01 -0400689 size_t count = iov_iter_count(from);
majianpenge8344e62013-09-12 13:54:26 +0800690
691 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
692 return -EROFS;
693
694 dout("sync_write on file %p %lld~%u\n", file, pos, (unsigned)count);
695
696 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + count);
697 if (ret < 0)
698 return ret;
699
700 ret = invalidate_inode_pages2_range(inode->i_mapping,
701 pos >> PAGE_CACHE_SHIFT,
702 (pos + count) >> PAGE_CACHE_SHIFT);
703 if (ret < 0)
704 dout("invalidate_inode_pages2_range returned %d\n", ret);
705
706 flags = CEPH_OSD_FLAG_ORDERSNAP |
707 CEPH_OSD_FLAG_ONDISK |
708 CEPH_OSD_FLAG_WRITE |
709 CEPH_OSD_FLAG_ACK;
710
Al Viro4908b822014-04-03 23:09:01 -0400711 while ((len = iov_iter_count(from)) > 0) {
majianpenge8344e62013-09-12 13:54:26 +0800712 size_t left;
713 int n;
714
majianpenge8344e62013-09-12 13:54:26 +0800715 vino = ceph_vino(inode);
716 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800717 vino, pos, &len, 0, 1,
majianpenge8344e62013-09-12 13:54:26 +0800718 CEPH_OSD_OP_WRITE, flags, snapc,
719 ci->i_truncate_seq,
720 ci->i_truncate_size,
721 false);
722 if (IS_ERR(req)) {
723 ret = PTR_ERR(req);
Al Viroeab87232014-04-03 22:44:19 -0400724 break;
majianpenge8344e62013-09-12 13:54:26 +0800725 }
726
727 /*
728 * write from beginning of first page,
729 * regardless of io alignment
730 */
731 num_pages = (len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
732
Yan, Zheng687265e2015-06-13 17:27:05 +0800733 pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
Sage Weil124e68e2009-10-06 11:31:08 -0700734 if (IS_ERR(pages)) {
735 ret = PTR_ERR(pages);
736 goto out;
737 }
majianpenge8344e62013-09-12 13:54:26 +0800738
739 left = len;
740 for (n = 0; n < num_pages; n++) {
Ilya Dryomov125d7252014-01-28 19:16:18 +0200741 size_t plen = min_t(size_t, left, PAGE_SIZE);
Al Viro4908b822014-04-03 23:09:01 -0400742 ret = copy_page_from_iter(pages[n], 0, plen, from);
majianpenge8344e62013-09-12 13:54:26 +0800743 if (ret != plen) {
744 ret = -EFAULT;
745 break;
746 }
747 left -= ret;
majianpenge8344e62013-09-12 13:54:26 +0800748 }
749
Sage Weil124e68e2009-10-06 11:31:08 -0700750 if (ret < 0) {
751 ceph_release_page_vector(pages, num_pages);
752 goto out;
753 }
754
majianpenge8344e62013-09-12 13:54:26 +0800755 /* get a second commit callback */
756 req->r_unsafe_callback = ceph_sync_write_unsafe;
757 req->r_inode = inode;
Sage Weil124e68e2009-10-06 11:31:08 -0700758
majianpenge8344e62013-09-12 13:54:26 +0800759 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
760 false, true);
Alex Elder02ee07d2013-03-14 14:09:06 -0500761
majianpenge8344e62013-09-12 13:54:26 +0800762 /* BUG_ON(vino.snap != CEPH_NOSNAP); */
763 ceph_osdc_build_request(req, pos, snapc, vino.snap, &mtime);
Sage Weil124e68e2009-10-06 11:31:08 -0700764
majianpenge8344e62013-09-12 13:54:26 +0800765 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
766 if (!ret)
767 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Sage Weil124e68e2009-10-06 11:31:08 -0700768
769out:
majianpenge8344e62013-09-12 13:54:26 +0800770 ceph_osdc_put_request(req);
771 if (ret == 0) {
772 pos += len;
773 written += len;
Sage Weil124e68e2009-10-06 11:31:08 -0700774
majianpenge8344e62013-09-12 13:54:26 +0800775 if (pos > i_size_read(inode)) {
776 check_caps = ceph_inode_set_size(inode, pos);
777 if (check_caps)
778 ceph_check_caps(ceph_inode(inode),
779 CHECK_CAPS_AUTHONLY,
780 NULL);
781 }
782 } else
783 break;
784 }
785
786 if (ret != -EOLDSNAPC && written > 0) {
Sage Weil124e68e2009-10-06 11:31:08 -0700787 ret = written;
majianpenge8344e62013-09-12 13:54:26 +0800788 iocb->ki_pos = pos;
Sage Weil124e68e2009-10-06 11:31:08 -0700789 }
790 return ret;
791}
792
793/*
794 * Wrap generic_file_aio_read with checks for cap bits on the inode.
795 * Atomically grab references, so that those bits are not released
796 * back to the MDS mid-read.
797 *
798 * Hmm, the sync read case isn't actually async... should it be?
799 */
Al Viro36444242014-04-02 20:28:01 -0400800static ssize_t ceph_read_iter(struct kiocb *iocb, struct iov_iter *to)
Sage Weil124e68e2009-10-06 11:31:08 -0700801{
802 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -0700803 struct ceph_file_info *fi = filp->private_data;
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100804 size_t len = iov_iter_count(to);
Al Viro496ad9a2013-01-23 17:07:38 -0500805 struct inode *inode = file_inode(filp);
Sage Weil124e68e2009-10-06 11:31:08 -0700806 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +0800807 struct page *pinned_page = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -0700808 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -0700809 int want, got = 0;
Yan, Zheng83701242014-11-14 22:36:18 +0800810 int retry_op = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700811
Sage Weil6a026582010-02-09 14:04:02 -0800812again:
majianpeng8eb4efb2013-09-26 14:42:17 +0800813 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
814 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len, inode);
815
Sage Weil29625072010-05-27 10:40:43 -0700816 if (fi->fmode & CEPH_FILE_MODE_LAZY)
817 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
818 else
819 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng3738daa2014-11-14 22:10:07 +0800820 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Sage Weil124e68e2009-10-06 11:31:08 -0700821 if (ret < 0)
majianpeng8eb4efb2013-09-26 14:42:17 +0800822 return ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700823
Sage Weil29625072010-05-27 10:40:43 -0700824 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -0400825 (iocb->ki_flags & IOCB_DIRECT) ||
majianpeng8eb4efb2013-09-26 14:42:17 +0800826 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -0700827
majianpeng8eb4efb2013-09-26 14:42:17 +0800828 dout("aio_sync_read %p %llx.%llx %llu~%u got cap refs on %s\n",
829 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
830 ceph_cap_string(got));
831
Yan, Zheng83701242014-11-14 22:36:18 +0800832 if (ci->i_inline_version == CEPH_INLINE_NONE) {
833 /* hmm, this isn't really async... */
834 ret = ceph_sync_read(iocb, to, &retry_op);
835 } else {
836 retry_op = READ_INLINE;
837 }
majianpeng8eb4efb2013-09-26 14:42:17 +0800838 } else {
majianpeng8eb4efb2013-09-26 14:42:17 +0800839 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
Al Viro36444242014-04-02 20:28:01 -0400840 inode, ceph_vinop(inode), iocb->ki_pos, (unsigned)len,
majianpeng8eb4efb2013-09-26 14:42:17 +0800841 ceph_cap_string(got));
842
Al Viro36444242014-04-02 20:28:01 -0400843 ret = generic_file_read_iter(iocb, to);
majianpeng8eb4efb2013-09-26 14:42:17 +0800844 }
Sage Weil124e68e2009-10-06 11:31:08 -0700845 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
846 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +0800847 if (pinned_page) {
848 page_cache_release(pinned_page);
849 pinned_page = NULL;
850 }
Sage Weil124e68e2009-10-06 11:31:08 -0700851 ceph_put_cap_refs(ci, got);
Yan, Zheng83701242014-11-14 22:36:18 +0800852 if (retry_op && ret >= 0) {
853 int statret;
854 struct page *page = NULL;
855 loff_t i_size;
856 if (retry_op == READ_INLINE) {
Yan, Zheng687265e2015-06-13 17:27:05 +0800857 page = __page_cache_alloc(GFP_KERNEL);
Yan, Zheng83701242014-11-14 22:36:18 +0800858 if (!page)
859 return -ENOMEM;
860 }
Sage Weil6a026582010-02-09 14:04:02 -0800861
Yan, Zheng83701242014-11-14 22:36:18 +0800862 statret = __ceph_do_getattr(inode, page,
863 CEPH_STAT_CAP_INLINE_DATA, !!page);
864 if (statret < 0) {
865 __free_page(page);
866 if (statret == -ENODATA) {
867 BUG_ON(retry_op != READ_INLINE);
868 goto again;
869 }
870 return statret;
871 }
872
873 i_size = i_size_read(inode);
874 if (retry_op == READ_INLINE) {
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800875 BUG_ON(ret > 0 || read > 0);
876 if (iocb->ki_pos < i_size &&
877 iocb->ki_pos < PAGE_CACHE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +0800878 loff_t end = min_t(loff_t, i_size,
879 iocb->ki_pos + len);
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800880 end = min_t(loff_t, end, PAGE_CACHE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +0800881 if (statret < end)
882 zero_user_segment(page, statret, end);
883 ret = copy_page_to_iter(page,
884 iocb->ki_pos & ~PAGE_MASK,
885 end - iocb->ki_pos, to);
886 iocb->ki_pos += ret;
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800887 read += ret;
888 }
889 if (iocb->ki_pos < i_size && read < len) {
890 size_t zlen = min_t(size_t, len - read,
891 i_size - iocb->ki_pos);
892 ret = iov_iter_zero(zlen, to);
893 iocb->ki_pos += ret;
894 read += ret;
Yan, Zheng83701242014-11-14 22:36:18 +0800895 }
896 __free_pages(page, 0);
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800897 return read;
Yan, Zheng83701242014-11-14 22:36:18 +0800898 }
Sage Weil6a026582010-02-09 14:04:02 -0800899
900 /* hit EOF or hole? */
Yan, Zheng83701242014-11-14 22:36:18 +0800901 if (retry_op == CHECK_EOF && iocb->ki_pos < i_size &&
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800902 ret < len) {
majianpeng8eb4efb2013-09-26 14:42:17 +0800903 dout("sync_read hit hole, ppos %lld < size %lld"
904 ", reading more\n", iocb->ki_pos,
905 inode->i_size);
906
Sage Weil6a026582010-02-09 14:04:02 -0800907 read += ret;
Sage Weil6a026582010-02-09 14:04:02 -0800908 len -= ret;
Yan, Zheng83701242014-11-14 22:36:18 +0800909 retry_op = 0;
Sage Weil6a026582010-02-09 14:04:02 -0800910 goto again;
911 }
912 }
majianpeng8eb4efb2013-09-26 14:42:17 +0800913
Sage Weil6a026582010-02-09 14:04:02 -0800914 if (ret >= 0)
915 ret += read;
916
Sage Weil124e68e2009-10-06 11:31:08 -0700917 return ret;
918}
919
920/*
921 * Take cap references to avoid releasing caps to MDS mid-write.
922 *
923 * If we are synchronous, and write with an old snap context, the OSD
924 * may return EOLDSNAPC. In that case, retry the write.. _after_
925 * dropping our cap refs and allowing the pending snap to logically
926 * complete _before_ this write occurs.
927 *
928 * If we are near ENOSPC, write synchronously.
929 */
Al Viro4908b822014-04-03 23:09:01 -0400930static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
Sage Weil124e68e2009-10-06 11:31:08 -0700931{
932 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -0700933 struct ceph_file_info *fi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -0500934 struct inode *inode = file_inode(file);
Sage Weil124e68e2009-10-06 11:31:08 -0700935 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936 struct ceph_osd_client *osdc =
937 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800938 struct ceph_cap_flush *prealloc_cf;
Al Viro3309dd02015-04-09 12:55:47 -0400939 ssize_t count, written = 0;
Yan, Zheng03d254e2013-04-12 16:11:13 +0800940 int err, want, got;
Al Viro3309dd02015-04-09 12:55:47 -0400941 loff_t pos;
Sage Weil124e68e2009-10-06 11:31:08 -0700942
943 if (ceph_snap(inode) != CEPH_NOSNAP)
944 return -EROFS;
945
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800946 prealloc_cf = ceph_alloc_cap_flush();
947 if (!prealloc_cf)
948 return -ENOMEM;
949
Yan, Zheng03d254e2013-04-12 16:11:13 +0800950 mutex_lock(&inode->i_mutex);
Yan, Zheng03d254e2013-04-12 16:11:13 +0800951
Yan, Zheng03d254e2013-04-12 16:11:13 +0800952 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +0100953 current->backing_dev_info = inode_to_bdi(inode);
Yan, Zheng03d254e2013-04-12 16:11:13 +0800954
Yan, Zheng55b0b312015-09-07 11:35:01 +0800955 if (iocb->ki_flags & IOCB_APPEND) {
956 err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
957 if (err < 0)
958 goto out;
959 }
960
Al Viro3309dd02015-04-09 12:55:47 -0400961 err = generic_write_checks(iocb, from);
962 if (err <= 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +0800963 goto out;
964
Al Viro3309dd02015-04-09 12:55:47 -0400965 pos = iocb->ki_pos;
966 count = iov_iter_count(from);
Jan Kara5fa8e0a2015-05-21 16:05:53 +0200967 err = file_remove_privs(file);
Yan, Zheng03d254e2013-04-12 16:11:13 +0800968 if (err)
969 goto out;
970
971 err = file_update_time(file);
972 if (err)
973 goto out;
974
Yan, Zheng28127bd2014-11-14 22:38:29 +0800975 if (ci->i_inline_version != CEPH_INLINE_NONE) {
976 err = ceph_uninline_data(file, NULL);
977 if (err < 0)
978 goto out;
979 }
980
Sage Weil124e68e2009-10-06 11:31:08 -0700981retry_snap:
Yan, Zheng6070e0c2013-03-01 10:55:39 +0800982 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL)) {
Yan, Zheng03d254e2013-04-12 16:11:13 +0800983 err = -ENOSPC;
Yan, Zheng6070e0c2013-03-01 10:55:39 +0800984 goto out;
985 }
Yan, Zheng03d254e2013-04-12 16:11:13 +0800986
Randy Dunlapac7f29b2013-04-19 14:20:07 -0700987 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +0800988 inode, ceph_vinop(inode), pos, count, inode->i_size);
Sage Weil7971bd92013-05-01 21:15:58 -0700989 if (fi->fmode & CEPH_FILE_MODE_LAZY)
990 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
991 else
992 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng03d254e2013-04-12 16:11:13 +0800993 got = 0;
Yan, Zheng3738daa2014-11-14 22:10:07 +0800994 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, pos + count,
995 &got, NULL);
Yan, Zheng03d254e2013-04-12 16:11:13 +0800996 if (err < 0)
Yan, Zheng37505d52013-04-12 16:11:10 +0800997 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -0700998
Randy Dunlapac7f29b2013-04-19 14:20:07 -0700999 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
Yan, Zheng03d254e2013-04-12 16:11:13 +08001000 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
Sage Weil7971bd92013-05-01 21:15:58 -07001001
1002 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Al Viro2ba48ce2015-04-09 13:52:01 -04001003 (iocb->ki_flags & IOCB_DIRECT) || (fi->flags & CEPH_F_SYNC)) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001004 struct ceph_snap_context *snapc;
Al Viro4908b822014-04-03 23:09:01 -04001005 struct iov_iter data;
Yan, Zheng37505d52013-04-12 16:11:10 +08001006 mutex_unlock(&inode->i_mutex);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001007
1008 spin_lock(&ci->i_ceph_lock);
1009 if (__ceph_have_pending_cap_snap(ci)) {
1010 struct ceph_cap_snap *capsnap =
1011 list_last_entry(&ci->i_cap_snaps,
1012 struct ceph_cap_snap,
1013 ci_item);
1014 snapc = ceph_get_snap_context(capsnap->context);
1015 } else {
1016 BUG_ON(!ci->i_head_snapc);
1017 snapc = ceph_get_snap_context(ci->i_head_snapc);
1018 }
1019 spin_unlock(&ci->i_ceph_lock);
1020
Al Viro4908b822014-04-03 23:09:01 -04001021 /* we might need to revert back to that point */
1022 data = *from;
Al Viro2ba48ce2015-04-09 13:52:01 -04001023 if (iocb->ki_flags & IOCB_DIRECT)
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001024 written = ceph_sync_direct_write(iocb, &data, pos,
1025 snapc);
majianpenge8344e62013-09-12 13:54:26 +08001026 else
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001027 written = ceph_sync_write(iocb, &data, pos, snapc);
majianpeng0e5dd452013-08-08 15:32:19 +08001028 if (written == -EOLDSNAPC) {
1029 dout("aio_write %p %llx.%llx %llu~%u"
1030 "got EOLDSNAPC, retrying\n",
1031 inode, ceph_vinop(inode),
Al Viro4908b822014-04-03 23:09:01 -04001032 pos, (unsigned)count);
majianpeng0e5dd452013-08-08 15:32:19 +08001033 mutex_lock(&inode->i_mutex);
majianpeng0e5dd452013-08-08 15:32:19 +08001034 goto retry_snap;
1035 }
Al Viro4908b822014-04-03 23:09:01 -04001036 if (written > 0)
1037 iov_iter_advance(from, written);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001038 ceph_put_snap_context(snapc);
Sage Weil7971bd92013-05-01 21:15:58 -07001039 } else {
Yunchuan Wen32d3e142013-12-26 06:29:27 -08001040 loff_t old_size = inode->i_size;
Yan, Zhengb0d7c222013-08-12 21:42:15 -07001041 /*
1042 * No need to acquire the i_truncate_mutex. Because
1043 * the MDS revokes Fwb caps before sending truncate
1044 * message to us. We can't get Fwb cap while there
1045 * are pending vmtruncate. So write and vmtruncate
1046 * can not run at the same time
1047 */
Al Viro4908b822014-04-03 23:09:01 -04001048 written = generic_perform_write(file, from, pos);
Al Viroaec605f42014-02-11 22:28:43 -05001049 if (likely(written >= 0))
1050 iocb->ki_pos = pos + written;
Yunchuan Wen32d3e142013-12-26 06:29:27 -08001051 if (inode->i_size > old_size)
1052 ceph_fscache_update_objectsize(inode);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001053 mutex_unlock(&inode->i_mutex);
Sage Weil124e68e2009-10-06 11:31:08 -07001054 }
Sage Weild8de9ab2011-07-26 11:27:34 -07001055
Yan, Zheng03d254e2013-04-12 16:11:13 +08001056 if (written >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -07001057 int dirty;
Sage Weilbe655592011-11-30 09:47:09 -08001058 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001059 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001060 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1061 &prealloc_cf);
Sage Weilbe655592011-11-30 09:47:09 -08001062 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -07001063 if (dirty)
1064 __mark_inode_dirty(inode, dirty);
Sage Weil124e68e2009-10-06 11:31:08 -07001065 }
Sage Weil7971bd92013-05-01 21:15:58 -07001066
Sage Weil124e68e2009-10-06 11:31:08 -07001067 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Al Viro4908b822014-04-03 23:09:01 -04001068 inode, ceph_vinop(inode), pos, (unsigned)count,
Sage Weil7971bd92013-05-01 21:15:58 -07001069 ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -07001070 ceph_put_cap_refs(ci, got);
Sage Weil7971bd92013-05-01 21:15:58 -07001071
Yan, Zheng03d254e2013-04-12 16:11:13 +08001072 if (written >= 0 &&
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001073 ((file->f_flags & O_SYNC) || IS_SYNC(file->f_mapping->host) ||
1074 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_NEARFULL))) {
Yan, Zheng03d254e2013-04-12 16:11:13 +08001075 err = vfs_fsync_range(file, pos, pos + written - 1, 1);
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001076 if (err < 0)
Yan, Zheng03d254e2013-04-12 16:11:13 +08001077 written = err;
Yan, Zheng6070e0c2013-03-01 10:55:39 +08001078 }
Yan, Zheng03d254e2013-04-12 16:11:13 +08001079
Sage Weil2f75e9e2013-08-09 09:57:58 -07001080 goto out_unlocked;
Sage Weil124e68e2009-10-06 11:31:08 -07001081
Sage Weil2f75e9e2013-08-09 09:57:58 -07001082out:
1083 mutex_unlock(&inode->i_mutex);
1084out_unlocked:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001085 ceph_free_cap_flush(prealloc_cf);
Sage Weil2f75e9e2013-08-09 09:57:58 -07001086 current->backing_dev_info = NULL;
Yan, Zheng03d254e2013-04-12 16:11:13 +08001087 return written ? written : err;
Sage Weil124e68e2009-10-06 11:31:08 -07001088}
1089
1090/*
1091 * llseek. be sure to verify file size on SEEK_END.
1092 */
Andrew Morton965c8e52012-12-17 15:59:39 -08001093static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
Sage Weil124e68e2009-10-06 11:31:08 -07001094{
1095 struct inode *inode = file->f_mapping->host;
1096 int ret;
1097
1098 mutex_lock(&inode->i_mutex);
Sage Weil6a82c472011-12-13 09:19:26 -08001099
Andrew Morton965c8e52012-12-17 15:59:39 -08001100 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
Yan, Zheng508b32d2014-09-16 21:46:17 +08001101 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
Sage Weil124e68e2009-10-06 11:31:08 -07001102 if (ret < 0) {
1103 offset = ret;
1104 goto out;
1105 }
Josef Bacik06222e42011-07-18 13:21:38 -04001106 }
1107
Andrew Morton965c8e52012-12-17 15:59:39 -08001108 switch (whence) {
Josef Bacik06222e42011-07-18 13:21:38 -04001109 case SEEK_END:
Sage Weil124e68e2009-10-06 11:31:08 -07001110 offset += inode->i_size;
1111 break;
1112 case SEEK_CUR:
1113 /*
1114 * Here we special-case the lseek(fd, 0, SEEK_CUR)
1115 * position-querying operation. Avoid rewriting the "same"
1116 * f_pos value back to the file because a concurrent read(),
1117 * write() or lseek() might have altered it
1118 */
1119 if (offset == 0) {
1120 offset = file->f_pos;
1121 goto out;
1122 }
1123 offset += file->f_pos;
1124 break;
Josef Bacik06222e42011-07-18 13:21:38 -04001125 case SEEK_DATA:
1126 if (offset >= inode->i_size) {
1127 ret = -ENXIO;
1128 goto out;
1129 }
1130 break;
1131 case SEEK_HOLE:
1132 if (offset >= inode->i_size) {
1133 ret = -ENXIO;
1134 goto out;
1135 }
1136 offset = inode->i_size;
1137 break;
Sage Weil124e68e2009-10-06 11:31:08 -07001138 }
1139
Jie Liu46a1c2c2013-06-25 12:02:13 +08001140 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
Sage Weil124e68e2009-10-06 11:31:08 -07001141
1142out:
1143 mutex_unlock(&inode->i_mutex);
1144 return offset;
1145}
1146
Li Wangad7a60d2013-08-15 11:51:44 +08001147static inline void ceph_zero_partial_page(
1148 struct inode *inode, loff_t offset, unsigned size)
1149{
1150 struct page *page;
1151 pgoff_t index = offset >> PAGE_CACHE_SHIFT;
1152
1153 page = find_lock_page(inode->i_mapping, index);
1154 if (page) {
1155 wait_on_page_writeback(page);
1156 zero_user(page, offset & (PAGE_CACHE_SIZE - 1), size);
1157 unlock_page(page);
1158 page_cache_release(page);
1159 }
1160}
1161
1162static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
1163 loff_t length)
1164{
1165 loff_t nearly = round_up(offset, PAGE_CACHE_SIZE);
1166 if (offset < nearly) {
1167 loff_t size = nearly - offset;
1168 if (length < size)
1169 size = length;
1170 ceph_zero_partial_page(inode, offset, size);
1171 offset += size;
1172 length -= size;
1173 }
1174 if (length >= PAGE_CACHE_SIZE) {
1175 loff_t size = round_down(length, PAGE_CACHE_SIZE);
1176 truncate_pagecache_range(inode, offset, offset + size - 1);
1177 offset += size;
1178 length -= size;
1179 }
1180 if (length)
1181 ceph_zero_partial_page(inode, offset, length);
1182}
1183
1184static int ceph_zero_partial_object(struct inode *inode,
1185 loff_t offset, loff_t *length)
1186{
1187 struct ceph_inode_info *ci = ceph_inode(inode);
1188 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1189 struct ceph_osd_request *req;
1190 int ret = 0;
1191 loff_t zero = 0;
1192 int op;
1193
1194 if (!length) {
1195 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
1196 length = &zero;
1197 } else {
1198 op = CEPH_OSD_OP_ZERO;
1199 }
1200
1201 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1202 ceph_vino(inode),
1203 offset, length,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001204 0, 1, op,
Li Wangad7a60d2013-08-15 11:51:44 +08001205 CEPH_OSD_FLAG_WRITE |
1206 CEPH_OSD_FLAG_ONDISK,
1207 NULL, 0, 0, false);
1208 if (IS_ERR(req)) {
1209 ret = PTR_ERR(req);
1210 goto out;
1211 }
1212
1213 ceph_osdc_build_request(req, offset, NULL, ceph_vino(inode).snap,
1214 &inode->i_mtime);
1215
1216 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1217 if (!ret) {
1218 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
1219 if (ret == -ENOENT)
1220 ret = 0;
1221 }
1222 ceph_osdc_put_request(req);
1223
1224out:
1225 return ret;
1226}
1227
1228static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
1229{
1230 int ret = 0;
1231 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weilb314a902013-08-27 12:15:16 -07001232 s32 stripe_unit = ceph_file_layout_su(ci->i_layout);
1233 s32 stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
1234 s32 object_size = ceph_file_layout_object_size(ci->i_layout);
1235 u64 object_set_size = object_size * stripe_count;
1236 u64 nearly, t;
Li Wangad7a60d2013-08-15 11:51:44 +08001237
Sage Weilb314a902013-08-27 12:15:16 -07001238 /* round offset up to next period boundary */
1239 nearly = offset + object_set_size - 1;
1240 t = nearly;
1241 nearly -= do_div(t, object_set_size);
1242
Li Wangad7a60d2013-08-15 11:51:44 +08001243 while (length && offset < nearly) {
1244 loff_t size = length;
1245 ret = ceph_zero_partial_object(inode, offset, &size);
1246 if (ret < 0)
1247 return ret;
1248 offset += size;
1249 length -= size;
1250 }
1251 while (length >= object_set_size) {
1252 int i;
1253 loff_t pos = offset;
1254 for (i = 0; i < stripe_count; ++i) {
1255 ret = ceph_zero_partial_object(inode, pos, NULL);
1256 if (ret < 0)
1257 return ret;
1258 pos += stripe_unit;
1259 }
1260 offset += object_set_size;
1261 length -= object_set_size;
1262 }
1263 while (length) {
1264 loff_t size = length;
1265 ret = ceph_zero_partial_object(inode, offset, &size);
1266 if (ret < 0)
1267 return ret;
1268 offset += size;
1269 length -= size;
1270 }
1271 return ret;
1272}
1273
1274static long ceph_fallocate(struct file *file, int mode,
1275 loff_t offset, loff_t length)
1276{
1277 struct ceph_file_info *fi = file->private_data;
Libo Chenaa8b60e2013-12-11 13:49:11 +08001278 struct inode *inode = file_inode(file);
Li Wangad7a60d2013-08-15 11:51:44 +08001279 struct ceph_inode_info *ci = ceph_inode(inode);
1280 struct ceph_osd_client *osdc =
1281 &ceph_inode_to_client(inode)->client->osdc;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001282 struct ceph_cap_flush *prealloc_cf;
Li Wangad7a60d2013-08-15 11:51:44 +08001283 int want, got = 0;
1284 int dirty;
1285 int ret = 0;
1286 loff_t endoff = 0;
1287 loff_t size;
1288
Yan, Zheng494d77b2014-06-26 15:25:17 +08001289 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
1290 return -EOPNOTSUPP;
1291
Li Wangad7a60d2013-08-15 11:51:44 +08001292 if (!S_ISREG(inode->i_mode))
1293 return -EOPNOTSUPP;
1294
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001295 prealloc_cf = ceph_alloc_cap_flush();
1296 if (!prealloc_cf)
1297 return -ENOMEM;
1298
Li Wangad7a60d2013-08-15 11:51:44 +08001299 mutex_lock(&inode->i_mutex);
1300
1301 if (ceph_snap(inode) != CEPH_NOSNAP) {
1302 ret = -EROFS;
1303 goto unlock;
1304 }
1305
1306 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL) &&
1307 !(mode & FALLOC_FL_PUNCH_HOLE)) {
1308 ret = -ENOSPC;
1309 goto unlock;
1310 }
1311
Yan, Zheng28127bd2014-11-14 22:38:29 +08001312 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1313 ret = ceph_uninline_data(file, NULL);
1314 if (ret < 0)
1315 goto unlock;
1316 }
1317
Li Wangad7a60d2013-08-15 11:51:44 +08001318 size = i_size_read(inode);
1319 if (!(mode & FALLOC_FL_KEEP_SIZE))
1320 endoff = offset + length;
1321
1322 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1323 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1324 else
1325 want = CEPH_CAP_FILE_BUFFER;
1326
Yan, Zheng3738daa2014-11-14 22:10:07 +08001327 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, endoff, &got, NULL);
Li Wangad7a60d2013-08-15 11:51:44 +08001328 if (ret < 0)
1329 goto unlock;
1330
1331 if (mode & FALLOC_FL_PUNCH_HOLE) {
1332 if (offset < size)
1333 ceph_zero_pagecache_range(inode, offset, length);
1334 ret = ceph_zero_objects(inode, offset, length);
1335 } else if (endoff > size) {
1336 truncate_pagecache_range(inode, size, -1);
1337 if (ceph_inode_set_size(inode, endoff))
1338 ceph_check_caps(ceph_inode(inode),
1339 CHECK_CAPS_AUTHONLY, NULL);
1340 }
1341
1342 if (!ret) {
1343 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001344 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001345 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1346 &prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001347 spin_unlock(&ci->i_ceph_lock);
1348 if (dirty)
1349 __mark_inode_dirty(inode, dirty);
1350 }
1351
1352 ceph_put_cap_refs(ci, got);
1353unlock:
1354 mutex_unlock(&inode->i_mutex);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001355 ceph_free_cap_flush(prealloc_cf);
Li Wangad7a60d2013-08-15 11:51:44 +08001356 return ret;
1357}
1358
Sage Weil124e68e2009-10-06 11:31:08 -07001359const struct file_operations ceph_file_fops = {
1360 .open = ceph_open,
1361 .release = ceph_release,
1362 .llseek = ceph_llseek,
Al Viro36444242014-04-02 20:28:01 -04001363 .read_iter = ceph_read_iter,
Al Viro4908b822014-04-03 23:09:01 -04001364 .write_iter = ceph_write_iter,
Sage Weil124e68e2009-10-06 11:31:08 -07001365 .mmap = ceph_mmap,
1366 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -07001367 .lock = ceph_lock,
1368 .flock = ceph_flock,
Sage Weil124e68e2009-10-06 11:31:08 -07001369 .splice_read = generic_file_splice_read,
Al Viro3551dd72014-04-05 04:40:12 -04001370 .splice_write = iter_file_splice_write,
Sage Weil124e68e2009-10-06 11:31:08 -07001371 .unlocked_ioctl = ceph_ioctl,
1372 .compat_ioctl = ceph_ioctl,
Li Wangad7a60d2013-08-15 11:51:44 +08001373 .fallocate = ceph_fallocate,
Sage Weil124e68e2009-10-06 11:31:08 -07001374};
1375