blob: 9b667e9abf4c8dc61c538787364e4778b02e6dba [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>
7#include <linux/namei.h>
8#include <linux/writeback.h>
9
10#include "super.h"
11#include "mds_client.h"
12
13/*
14 * Ceph file operations
15 *
16 * Implement basic open/close functionality, and implement
17 * read/write.
18 *
19 * We implement three modes of file I/O:
20 * - buffered uses the generic_file_aio_{read,write} helpers
21 *
22 * - synchronous is used when there is multi-client read/write
23 * sharing, avoids the page cache, and synchronously waits for an
24 * ack from the OSD.
25 *
26 * - direct io takes the variant of the sync path that references
27 * user pages directly.
28 *
29 * fsync() flushes and waits on dirty pages, but just queues metadata
30 * for writeback: since the MDS can recover size and mtime there is no
31 * need to wait for MDS acknowledgement.
32 */
33
34
35/*
36 * Prepare an open request. Preallocate ceph_cap to avoid an
37 * inopportune ENOMEM later.
38 */
39static struct ceph_mds_request *
40prepare_open_request(struct super_block *sb, int flags, int create_mode)
41{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070042 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
43 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -070044 struct ceph_mds_request *req;
45 int want_auth = USE_ANY_MDS;
46 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
47
48 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
49 want_auth = USE_AUTH_MDS;
50
51 req = ceph_mdsc_create_request(mdsc, op, want_auth);
52 if (IS_ERR(req))
53 goto out;
54 req->r_fmode = ceph_flags_to_mode(flags);
55 req->r_args.open.flags = cpu_to_le32(flags);
56 req->r_args.open.mode = cpu_to_le32(create_mode);
Sage Weil6a18be12009-11-04 11:40:05 -080057 req->r_args.open.preferred = cpu_to_le32(-1);
Sage Weil124e68e2009-10-06 11:31:08 -070058out:
59 return req;
60}
61
62/*
63 * initialize private struct file data.
64 * if we fail, clean up by dropping fmode reference on the ceph_inode
65 */
66static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
67{
68 struct ceph_file_info *cf;
69 int ret = 0;
70
71 switch (inode->i_mode & S_IFMT) {
72 case S_IFREG:
73 case S_IFDIR:
74 dout("init_file %p %p 0%o (regular)\n", inode, file,
75 inode->i_mode);
76 cf = kmem_cache_alloc(ceph_file_cachep, GFP_NOFS | __GFP_ZERO);
77 if (cf == NULL) {
78 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
79 return -ENOMEM;
80 }
81 cf->fmode = fmode;
82 cf->next_offset = 2;
83 file->private_data = cf;
84 BUG_ON(inode->i_fop->release != ceph_release);
85 break;
86
87 case S_IFLNK:
88 dout("init_file %p %p 0%o (symlink)\n", inode, file,
89 inode->i_mode);
90 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
91 break;
92
93 default:
94 dout("init_file %p %p 0%o (special)\n", inode, file,
95 inode->i_mode);
96 /*
97 * we need to drop the open ref now, since we don't
98 * have .release set to ceph_release.
99 */
100 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
101 BUG_ON(inode->i_fop->release == ceph_release);
102
103 /* call the proper open fop */
104 ret = inode->i_fop->open(inode, file);
105 }
106 return ret;
107}
108
109/*
110 * If the filp already has private_data, that means the file was
111 * already opened by intent during lookup, and we do nothing.
112 *
113 * If we already have the requisite capabilities, we can satisfy
114 * the open request locally (no need to request new caps from the
115 * MDS). We do, however, need to inform the MDS (asynchronously)
116 * if our wanted caps set expands.
117 */
118int ceph_open(struct inode *inode, struct file *file)
119{
120 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700121 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
122 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700123 struct ceph_mds_request *req;
124 struct ceph_file_info *cf = file->private_data;
125 struct inode *parent_inode = file->f_dentry->d_parent->d_inode;
126 int err;
127 int flags, fmode, wanted;
128
129 if (cf) {
130 dout("open file %p is already opened\n", file);
131 return 0;
132 }
133
134 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
135 flags = file->f_flags & ~(O_CREAT|O_EXCL);
136 if (S_ISDIR(inode->i_mode))
137 flags = O_DIRECTORY; /* mds likes to know */
138
139 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
140 ceph_vinop(inode), file, flags, file->f_flags);
141 fmode = ceph_flags_to_mode(flags);
142 wanted = ceph_caps_for_mode(fmode);
143
144 /* snapped files are read-only */
145 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
146 return -EROFS;
147
148 /* trivially open snapdir */
149 if (ceph_snap(inode) == CEPH_SNAPDIR) {
150 spin_lock(&inode->i_lock);
151 __ceph_get_fmode(ci, fmode);
152 spin_unlock(&inode->i_lock);
153 return ceph_init_file(inode, file, fmode);
154 }
155
156 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800157 * No need to block if we have caps on the auth MDS (for
158 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700159 * asynchronously.
160 */
161 spin_lock(&inode->i_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800162 if (__ceph_is_any_real_caps(ci) &&
163 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Sage Weil124e68e2009-10-06 11:31:08 -0700164 int mds_wanted = __ceph_caps_mds_wanted(ci);
165 int issued = __ceph_caps_issued(ci, NULL);
166
167 dout("open %p fmode %d want %s issued %s using existing\n",
168 inode, fmode, ceph_cap_string(wanted),
169 ceph_cap_string(issued));
170 __ceph_get_fmode(ci, fmode);
171 spin_unlock(&inode->i_lock);
172
173 /* adjust wanted? */
174 if ((issued & wanted) != wanted &&
175 (mds_wanted & wanted) != wanted &&
176 ceph_snap(inode) != CEPH_SNAPDIR)
177 ceph_check_caps(ci, 0, NULL);
178
179 return ceph_init_file(inode, file, fmode);
180 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
181 (ci->i_snap_caps & wanted) == wanted) {
182 __ceph_get_fmode(ci, fmode);
183 spin_unlock(&inode->i_lock);
184 return ceph_init_file(inode, file, fmode);
185 }
186 spin_unlock(&inode->i_lock);
187
188 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
189 req = prepare_open_request(inode->i_sb, flags, 0);
190 if (IS_ERR(req)) {
191 err = PTR_ERR(req);
192 goto out;
193 }
Sage Weil70b666c2011-05-27 09:24:26 -0700194 req->r_inode = inode;
195 ihold(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700196 req->r_num_caps = 1;
197 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
198 if (!err)
199 err = ceph_init_file(inode, file, req->r_fmode);
200 ceph_mdsc_put_request(req);
201 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
202out:
203 return err;
204}
205
206
207/*
208 * Do a lookup + open with a single request.
209 *
210 * If this succeeds, but some subsequent check in the vfs
211 * may_open() fails, the struct *file gets cleaned up (i.e.
212 * ceph_release gets called). So fear not!
213 */
214/*
215 * flags
216 * path_lookup_open -> LOOKUP_OPEN
217 * path_lookup_create -> LOOKUP_OPEN|LOOKUP_CREATE
218 */
219struct dentry *ceph_lookup_open(struct inode *dir, struct dentry *dentry,
220 struct nameidata *nd, int mode,
221 int locked_dir)
222{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700223 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
224 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700225 struct file *file = nd->intent.open.file;
Sage Weil124e68e2009-10-06 11:31:08 -0700226 struct ceph_mds_request *req;
227 int err;
228 int flags = nd->intent.open.flags - 1; /* silly vfs! */
229
230 dout("ceph_lookup_open dentry %p '%.*s' flags %d mode 0%o\n",
231 dentry, dentry->d_name.len, dentry->d_name.name, flags, mode);
232
233 /* do the open */
234 req = prepare_open_request(dir->i_sb, flags, mode);
235 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200236 return ERR_CAST(req);
Sage Weil124e68e2009-10-06 11:31:08 -0700237 req->r_dentry = dget(dentry);
238 req->r_num_caps = 2;
239 if (flags & O_CREAT) {
240 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
241 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
242 }
243 req->r_locked_dir = dir; /* caller holds dir->i_mutex */
Sage Weilacda7652011-07-26 11:27:48 -0700244 err = ceph_mdsc_do_request(mdsc,
245 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
246 req);
Sage Weil124e68e2009-10-06 11:31:08 -0700247 dentry = ceph_finish_lookup(req, dentry, err);
248 if (!err && (flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
249 err = ceph_handle_notrace_create(dir, dentry);
250 if (!err)
251 err = ceph_init_file(req->r_dentry->d_inode, file,
252 req->r_fmode);
253 ceph_mdsc_put_request(req);
254 dout("ceph_lookup_open result=%p\n", dentry);
255 return dentry;
256}
257
258int ceph_release(struct inode *inode, struct file *file)
259{
260 struct ceph_inode_info *ci = ceph_inode(inode);
261 struct ceph_file_info *cf = file->private_data;
262
263 dout("release inode %p file %p\n", inode, file);
264 ceph_put_fmode(ci, cf->fmode);
265 if (cf->last_readdir)
266 ceph_mdsc_put_request(cf->last_readdir);
267 kfree(cf->last_name);
268 kfree(cf->dir_info);
269 dput(cf->dentry);
270 kmem_cache_free(ceph_file_cachep, cf);
Sage Weil195d3ce2010-03-01 09:57:54 -0800271
272 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700273 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700274 return 0;
275}
276
277/*
Sage Weil124e68e2009-10-06 11:31:08 -0700278 * Read a range of bytes striped over one or more objects. Iterate over
279 * objects we stripe over. (That's not atomic, but good enough for now.)
280 *
281 * If we get a short result from the OSD, check against i_size; we need to
282 * only return a short read to the caller if we hit EOF.
283 */
284static int striped_read(struct inode *inode,
285 u64 off, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800286 struct page **pages, int num_pages,
Sage Weilc3cd6282011-06-01 16:08:44 -0700287 int *checkeof, bool o_direct,
Henry C Changab226e22010-12-15 20:41:54 -0800288 unsigned long buf_align)
Sage Weil124e68e2009-10-06 11:31:08 -0700289{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700290 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700291 struct ceph_inode_info *ci = ceph_inode(inode);
292 u64 pos, this_len;
Sage Weilb7495fc2010-11-09 12:43:12 -0800293 int io_align, page_align;
Sage Weil124e68e2009-10-06 11:31:08 -0700294 int left, pages_left;
295 int read;
296 struct page **page_pos;
297 int ret;
298 bool hit_stripe, was_short;
299
300 /*
301 * we may need to do multiple reads. not atomic, unfortunately.
302 */
303 pos = off;
304 left = len;
305 page_pos = pages;
306 pages_left = num_pages;
307 read = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -0800308 io_align = off & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700309
310more:
Sage Weilc3cd6282011-06-01 16:08:44 -0700311 if (o_direct)
Henry C Changab226e22010-12-15 20:41:54 -0800312 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
Sage Weilb7495fc2010-11-09 12:43:12 -0800313 else
314 page_align = pos & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700315 this_len = left;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700316 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700317 &ci->i_layout, pos, &this_len,
318 ci->i_truncate_seq,
319 ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800320 page_pos, pages_left, page_align);
Sage Weil124e68e2009-10-06 11:31:08 -0700321 if (ret == -ENOENT)
322 ret = 0;
Sage Weil0e987282011-06-07 20:40:35 -0700323 hit_stripe = this_len < left;
324 was_short = ret >= 0 && ret < this_len;
Sage Weil124e68e2009-10-06 11:31:08 -0700325 dout("striped_read %llu~%u (read %u) got %d%s%s\n", pos, left, read,
326 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
327
328 if (ret > 0) {
Sage Weil773e9b42011-06-07 20:57:14 -0700329 int didpages = (page_align + ret) >> PAGE_CACHE_SHIFT;
Sage Weil124e68e2009-10-06 11:31:08 -0700330
331 if (read < pos - off) {
332 dout(" zero gap %llu to %llu\n", off + read, pos);
Sage Weil773e9b42011-06-07 20:57:14 -0700333 ceph_zero_page_vector_range(page_align + read,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700334 pos - off - read, pages);
Sage Weil124e68e2009-10-06 11:31:08 -0700335 }
336 pos += ret;
337 read = pos - off;
338 left -= ret;
339 page_pos += didpages;
340 pages_left -= didpages;
341
342 /* hit stripe? */
343 if (left && hit_stripe)
344 goto more;
345 }
346
347 if (was_short) {
Sage Weilc3cd6282011-06-01 16:08:44 -0700348 /* did we bounce off eof? */
349 if (pos + left > inode->i_size)
350 *checkeof = 1;
Sage Weil124e68e2009-10-06 11:31:08 -0700351
Sage Weilc3cd6282011-06-01 16:08:44 -0700352 /* zero trailing bytes (inside i_size) */
353 if (left > 0 && pos < inode->i_size) {
354 if (pos + left > inode->i_size)
355 left = inode->i_size - pos;
356
357 dout("zero tail %d\n", left);
Sage Weil773e9b42011-06-07 20:57:14 -0700358 ceph_zero_page_vector_range(page_align + read, left,
Sage Weilc3cd6282011-06-01 16:08:44 -0700359 pages);
360 read += left;
361 }
Sage Weil124e68e2009-10-06 11:31:08 -0700362 }
363
Sage Weil124e68e2009-10-06 11:31:08 -0700364 if (ret >= 0)
365 ret = read;
366 dout("striped_read returns %d\n", ret);
367 return ret;
368}
369
370/*
371 * Completely synchronous read and write methods. Direct from __user
372 * buffer to osd, or directly to user pages (if O_DIRECT).
373 *
374 * If the read spans object boundary, just do multiple reads.
375 */
376static ssize_t ceph_sync_read(struct file *file, char __user *data,
Sage Weil6a026582010-02-09 14:04:02 -0800377 unsigned len, loff_t *poff, int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700378{
379 struct inode *inode = file->f_dentry->d_inode;
380 struct page **pages;
381 u64 off = *poff;
Henry C Changab226e22010-12-15 20:41:54 -0800382 int num_pages, ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700383
384 dout("sync_read on file %p %llu~%u %s\n", file, off, len,
385 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
386
Henry C Changab226e22010-12-15 20:41:54 -0800387 if (file->f_flags & O_DIRECT) {
388 num_pages = calc_pages_for((unsigned long)data, len);
Henry C Changb6aa5902010-12-15 20:45:41 -0800389 pages = ceph_get_direct_page_vector(data, num_pages, true);
Henry C Changab226e22010-12-15 20:41:54 -0800390 } else {
391 num_pages = calc_pages_for(off, len);
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700392 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
Henry C Changab226e22010-12-15 20:41:54 -0800393 }
Sage Weil124e68e2009-10-06 11:31:08 -0700394 if (IS_ERR(pages))
395 return PTR_ERR(pages);
396
Sage Weile98b6fe2010-11-09 12:24:53 -0800397 /*
398 * flush any page cache pages in this range. this
399 * will make concurrent normal and sync io slow,
400 * but it will at least behave sensibly when they are
401 * in sequence.
402 */
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800403 ret = filemap_write_and_wait(inode->i_mapping);
404 if (ret < 0)
405 goto done;
406
Sage Weilb7495fc2010-11-09 12:43:12 -0800407 ret = striped_read(inode, off, len, pages, num_pages, checkeof,
Henry C Changab226e22010-12-15 20:41:54 -0800408 file->f_flags & O_DIRECT,
409 (unsigned long)data & ~PAGE_MASK);
Sage Weil124e68e2009-10-06 11:31:08 -0700410
411 if (ret >= 0 && (file->f_flags & O_DIRECT) == 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700412 ret = ceph_copy_page_vector_to_user(pages, data, off, ret);
Sage Weil124e68e2009-10-06 11:31:08 -0700413 if (ret >= 0)
414 *poff = off + ret;
415
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800416done:
Sage Weil124e68e2009-10-06 11:31:08 -0700417 if (file->f_flags & O_DIRECT)
Henry C Changb6aa5902010-12-15 20:45:41 -0800418 ceph_put_page_vector(pages, num_pages, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700419 else
420 ceph_release_page_vector(pages, num_pages);
421 dout("sync_read result %d\n", ret);
422 return ret;
423}
424
425/*
426 * Write commit callback, called if we requested both an ACK and
427 * ONDISK commit reply from the OSD.
428 */
429static void sync_write_commit(struct ceph_osd_request *req,
430 struct ceph_msg *msg)
431{
432 struct ceph_inode_info *ci = ceph_inode(req->r_inode);
433
434 dout("sync_write_commit %p tid %llu\n", req, req->r_tid);
435 spin_lock(&ci->i_unsafe_lock);
436 list_del_init(&req->r_unsafe_item);
437 spin_unlock(&ci->i_unsafe_lock);
438 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
439}
440
441/*
442 * Synchronous write, straight from __user pointer or user pages (if
443 * O_DIRECT).
444 *
445 * If write spans object boundary, just do multiple writes. (For a
446 * correct atomic write, we should e.g. take write locks on all
447 * objects, rollback on failure, etc.)
448 */
449static ssize_t ceph_sync_write(struct file *file, const char __user *data,
450 size_t left, loff_t *offset)
451{
452 struct inode *inode = file->f_dentry->d_inode;
453 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700454 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700455 struct ceph_osd_request *req;
456 struct page **pages;
457 int num_pages;
458 long long unsigned pos;
459 u64 len;
460 int written = 0;
461 int flags;
462 int do_sync = 0;
463 int check_caps = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -0800464 int page_align, io_align;
Henry C Changab226e22010-12-15 20:41:54 -0800465 unsigned long buf_align;
Sage Weil124e68e2009-10-06 11:31:08 -0700466 int ret;
467 struct timespec mtime = CURRENT_TIME;
468
469 if (ceph_snap(file->f_dentry->d_inode) != CEPH_NOSNAP)
470 return -EROFS;
471
472 dout("sync_write on file %p %lld~%u %s\n", file, *offset,
473 (unsigned)left, (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
474
475 if (file->f_flags & O_APPEND)
476 pos = i_size_read(inode);
477 else
478 pos = *offset;
479
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800480 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + left);
481 if (ret < 0)
482 return ret;
483
484 ret = invalidate_inode_pages2_range(inode->i_mapping,
485 pos >> PAGE_CACHE_SHIFT,
486 (pos + left) >> PAGE_CACHE_SHIFT);
487 if (ret < 0)
488 dout("invalidate_inode_pages2_range returned %d\n", ret);
489
Sage Weil124e68e2009-10-06 11:31:08 -0700490 flags = CEPH_OSD_FLAG_ORDERSNAP |
491 CEPH_OSD_FLAG_ONDISK |
492 CEPH_OSD_FLAG_WRITE;
493 if ((file->f_flags & (O_SYNC|O_DIRECT)) == 0)
494 flags |= CEPH_OSD_FLAG_ACK;
495 else
496 do_sync = 1;
497
498 /*
499 * we may need to do multiple writes here if we span an object
500 * boundary. this isn't atomic, unfortunately. :(
501 */
502more:
Sage Weild7f124f2011-06-13 16:22:18 -0700503 io_align = pos & ~PAGE_MASK;
504 buf_align = (unsigned long)data & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700505 len = left;
Henry C Changab226e22010-12-15 20:41:54 -0800506 if (file->f_flags & O_DIRECT) {
Sage Weilb7495fc2010-11-09 12:43:12 -0800507 /* write from beginning of first page, regardless of
508 io alignment */
Henry C Changab226e22010-12-15 20:41:54 -0800509 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
510 num_pages = calc_pages_for((unsigned long)data, len);
511 } else {
Sage Weilb7495fc2010-11-09 12:43:12 -0800512 page_align = pos & ~PAGE_MASK;
Henry C Changab226e22010-12-15 20:41:54 -0800513 num_pages = calc_pages_for(pos, len);
514 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700515 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Sage Weil124e68e2009-10-06 11:31:08 -0700516 ceph_vino(inode), pos, &len,
517 CEPH_OSD_OP_WRITE, flags,
518 ci->i_snap_realm->cached_context,
519 do_sync,
520 ci->i_truncate_seq, ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800521 &mtime, false, 2, page_align);
Sage Weila79832f2010-04-01 16:06:19 -0700522 if (!req)
523 return -ENOMEM;
Sage Weil124e68e2009-10-06 11:31:08 -0700524
Sage Weil124e68e2009-10-06 11:31:08 -0700525 if (file->f_flags & O_DIRECT) {
Henry C Changb6aa5902010-12-15 20:45:41 -0800526 pages = ceph_get_direct_page_vector(data, num_pages, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700527 if (IS_ERR(pages)) {
528 ret = PTR_ERR(pages);
529 goto out;
530 }
531
532 /*
533 * throw out any page cache pages in this range. this
534 * may block.
535 */
Sage Weil213c99e2010-08-03 10:25:11 -0700536 truncate_inode_pages_range(inode->i_mapping, pos,
Sage Weil5c6a2cd2010-04-22 13:48:59 -0700537 (pos+len) | (PAGE_CACHE_SIZE-1));
Sage Weil124e68e2009-10-06 11:31:08 -0700538 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700539 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
Sage Weil124e68e2009-10-06 11:31:08 -0700540 if (IS_ERR(pages)) {
541 ret = PTR_ERR(pages);
542 goto out;
543 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700544 ret = ceph_copy_user_to_page_vector(pages, data, pos, len);
Sage Weil124e68e2009-10-06 11:31:08 -0700545 if (ret < 0) {
546 ceph_release_page_vector(pages, num_pages);
547 goto out;
548 }
549
550 if ((file->f_flags & O_SYNC) == 0) {
551 /* get a second commit callback */
552 req->r_safe_callback = sync_write_commit;
553 req->r_own_pages = 1;
554 }
555 }
556 req->r_pages = pages;
557 req->r_num_pages = num_pages;
558 req->r_inode = inode;
559
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700560 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700561 if (!ret) {
562 if (req->r_safe_callback) {
563 /*
564 * Add to inode unsafe list only after we
565 * start_request so that a tid has been assigned.
566 */
567 spin_lock(&ci->i_unsafe_lock);
Henry C Chang49bcb932011-03-15 09:18:02 +0000568 list_add_tail(&req->r_unsafe_item,
569 &ci->i_unsafe_writes);
Sage Weil124e68e2009-10-06 11:31:08 -0700570 spin_unlock(&ci->i_unsafe_lock);
571 ceph_get_cap_refs(ci, CEPH_CAP_FILE_WR);
572 }
Henry C Chang78a25562011-03-15 09:18:01 +0000573
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Henry C Chang78a25562011-03-15 09:18:01 +0000575 if (ret < 0 && req->r_safe_callback) {
576 spin_lock(&ci->i_unsafe_lock);
577 list_del_init(&req->r_unsafe_item);
578 spin_unlock(&ci->i_unsafe_lock);
579 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
580 }
Sage Weil124e68e2009-10-06 11:31:08 -0700581 }
582
583 if (file->f_flags & O_DIRECT)
Henry C Changb6aa5902010-12-15 20:45:41 -0800584 ceph_put_page_vector(pages, num_pages, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700585 else if (file->f_flags & O_SYNC)
586 ceph_release_page_vector(pages, num_pages);
587
588out:
589 ceph_osdc_put_request(req);
590 if (ret == 0) {
591 pos += len;
592 written += len;
593 left -= len;
Sage Weild7f124f2011-06-13 16:22:18 -0700594 data += written;
Sage Weil124e68e2009-10-06 11:31:08 -0700595 if (left)
596 goto more;
597
598 ret = written;
599 *offset = pos;
600 if (pos > i_size_read(inode))
601 check_caps = ceph_inode_set_size(inode, pos);
602 if (check_caps)
603 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY,
604 NULL);
605 }
606 return ret;
607}
608
609/*
610 * Wrap generic_file_aio_read with checks for cap bits on the inode.
611 * Atomically grab references, so that those bits are not released
612 * back to the MDS mid-read.
613 *
614 * Hmm, the sync read case isn't actually async... should it be?
615 */
616static ssize_t ceph_aio_read(struct kiocb *iocb, const struct iovec *iov,
617 unsigned long nr_segs, loff_t pos)
618{
619 struct file *filp = iocb->ki_filp;
Sage Weil2962507ca2010-05-27 10:40:43 -0700620 struct ceph_file_info *fi = filp->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700621 loff_t *ppos = &iocb->ki_pos;
622 size_t len = iov->iov_len;
623 struct inode *inode = filp->f_dentry->d_inode;
624 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700625 void __user *base = iov->iov_base;
Sage Weil124e68e2009-10-06 11:31:08 -0700626 ssize_t ret;
Sage Weil2962507ca2010-05-27 10:40:43 -0700627 int want, got = 0;
Sage Weil6a026582010-02-09 14:04:02 -0800628 int checkeof = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700629
630 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
631 inode, ceph_vinop(inode), pos, (unsigned)len, inode);
Sage Weil6a026582010-02-09 14:04:02 -0800632again:
Sage Weil124e68e2009-10-06 11:31:08 -0700633 __ceph_do_pending_vmtruncate(inode);
Sage Weil2962507ca2010-05-27 10:40:43 -0700634 if (fi->fmode & CEPH_FILE_MODE_LAZY)
635 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
636 else
637 want = CEPH_CAP_FILE_CACHE;
638 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, &got, -1);
Sage Weil124e68e2009-10-06 11:31:08 -0700639 if (ret < 0)
640 goto out;
641 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
642 inode, ceph_vinop(inode), pos, (unsigned)len,
643 ceph_cap_string(got));
644
Sage Weil2962507ca2010-05-27 10:40:43 -0700645 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Sage Weil124e68e2009-10-06 11:31:08 -0700646 (iocb->ki_filp->f_flags & O_DIRECT) ||
Sage Weil4918b6d2011-07-26 11:26:07 -0700647 (inode->i_sb->s_flags & MS_SYNCHRONOUS) ||
648 (fi->flags & CEPH_F_SYNC))
Sage Weil124e68e2009-10-06 11:31:08 -0700649 /* hmm, this isn't really async... */
Sage Weil6a026582010-02-09 14:04:02 -0800650 ret = ceph_sync_read(filp, base, len, ppos, &checkeof);
Sage Weil124e68e2009-10-06 11:31:08 -0700651 else
652 ret = generic_file_aio_read(iocb, iov, nr_segs, pos);
653
654out:
655 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
656 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
657 ceph_put_cap_refs(ci, got);
Sage Weil6a026582010-02-09 14:04:02 -0800658
659 if (checkeof && ret >= 0) {
660 int statret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
661
662 /* hit EOF or hole? */
663 if (statret == 0 && *ppos < inode->i_size) {
Sage Weilc3cd6282011-06-01 16:08:44 -0700664 dout("aio_read sync_read hit hole, ppos %lld < size %lld, reading more\n", *ppos, inode->i_size);
Sage Weil6a026582010-02-09 14:04:02 -0800665 read += ret;
666 base += ret;
667 len -= ret;
668 checkeof = 0;
669 goto again;
670 }
671 }
672 if (ret >= 0)
673 ret += read;
674
Sage Weil124e68e2009-10-06 11:31:08 -0700675 return ret;
676}
677
678/*
679 * Take cap references to avoid releasing caps to MDS mid-write.
680 *
681 * If we are synchronous, and write with an old snap context, the OSD
682 * may return EOLDSNAPC. In that case, retry the write.. _after_
683 * dropping our cap refs and allowing the pending snap to logically
684 * complete _before_ this write occurs.
685 *
686 * If we are near ENOSPC, write synchronously.
687 */
688static ssize_t ceph_aio_write(struct kiocb *iocb, const struct iovec *iov,
689 unsigned long nr_segs, loff_t pos)
690{
691 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -0700692 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700693 struct inode *inode = file->f_dentry->d_inode;
694 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700695 struct ceph_osd_client *osdc =
696 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Sage Weil124e68e2009-10-06 11:31:08 -0700697 loff_t endoff = pos + iov->iov_len;
Sage Weil33caad32010-05-26 14:31:27 -0700698 int want, got = 0;
Yehuda Sadeh88d892a2010-02-23 18:16:23 +0000699 int ret, err;
Sage Weil124e68e2009-10-06 11:31:08 -0700700
701 if (ceph_snap(inode) != CEPH_NOSNAP)
702 return -EROFS;
703
704retry_snap:
705 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL))
706 return -ENOSPC;
707 __ceph_do_pending_vmtruncate(inode);
708 dout("aio_write %p %llx.%llx %llu~%u getting caps. i_size %llu\n",
709 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len,
710 inode->i_size);
Sage Weil33caad32010-05-26 14:31:27 -0700711 if (fi->fmode & CEPH_FILE_MODE_LAZY)
712 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
713 else
714 want = CEPH_CAP_FILE_BUFFER;
715 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, &got, endoff);
Sage Weil124e68e2009-10-06 11:31:08 -0700716 if (ret < 0)
Sage Weild8de9ab2011-07-26 11:27:34 -0700717 goto out_put;
Sage Weil124e68e2009-10-06 11:31:08 -0700718
719 dout("aio_write %p %llx.%llx %llu~%u got cap refs on %s\n",
720 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len,
721 ceph_cap_string(got));
722
Sage Weil33caad32010-05-26 14:31:27 -0700723 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Sage Weil124e68e2009-10-06 11:31:08 -0700724 (iocb->ki_filp->f_flags & O_DIRECT) ||
Sage Weil4918b6d2011-07-26 11:26:07 -0700725 (inode->i_sb->s_flags & MS_SYNCHRONOUS) ||
726 (fi->flags & CEPH_F_SYNC)) {
Sage Weil124e68e2009-10-06 11:31:08 -0700727 ret = ceph_sync_write(file, iov->iov_base, iov->iov_len,
728 &iocb->ki_pos);
729 } else {
Sage Weild8de9ab2011-07-26 11:27:34 -0700730 /*
731 * buffered write; drop Fw early to avoid slow
732 * revocation if we get stuck on balance_dirty_pages
733 */
734 int dirty;
Sage Weil124e68e2009-10-06 11:31:08 -0700735
Sage Weild8de9ab2011-07-26 11:27:34 -0700736 spin_lock(&inode->i_lock);
737 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR);
738 spin_unlock(&inode->i_lock);
739 ceph_put_cap_refs(ci, got);
740
741 ret = generic_file_aio_write(iocb, iov, nr_segs, pos);
Sage Weil124e68e2009-10-06 11:31:08 -0700742 if ((ret >= 0 || ret == -EIOCBQUEUED) &&
743 ((file->f_flags & O_SYNC) || IS_SYNC(file->f_mapping->host)
Yehuda Sadeh88d892a2010-02-23 18:16:23 +0000744 || ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_NEARFULL))) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100745 err = vfs_fsync_range(file, pos, pos + ret - 1, 1);
Yehuda Sadeh88d892a2010-02-23 18:16:23 +0000746 if (err < 0)
747 ret = err;
748 }
Sage Weild8de9ab2011-07-26 11:27:34 -0700749
750 if (dirty)
751 __mark_inode_dirty(inode, dirty);
752 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -0700753 }
Sage Weild8de9ab2011-07-26 11:27:34 -0700754
Sage Weil124e68e2009-10-06 11:31:08 -0700755 if (ret >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -0700756 int dirty;
Sage Weil124e68e2009-10-06 11:31:08 -0700757 spin_lock(&inode->i_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700758 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR);
Sage Weil124e68e2009-10-06 11:31:08 -0700759 spin_unlock(&inode->i_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700760 if (dirty)
761 __mark_inode_dirty(inode, dirty);
Sage Weil124e68e2009-10-06 11:31:08 -0700762 }
763
Sage Weild8de9ab2011-07-26 11:27:34 -0700764out_put:
Sage Weil124e68e2009-10-06 11:31:08 -0700765 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
766 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len,
767 ceph_cap_string(got));
768 ceph_put_cap_refs(ci, got);
769
Sage Weild8de9ab2011-07-26 11:27:34 -0700770out:
Sage Weil124e68e2009-10-06 11:31:08 -0700771 if (ret == -EOLDSNAPC) {
772 dout("aio_write %p %llx.%llx %llu~%u got EOLDSNAPC, retrying\n",
773 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len);
774 goto retry_snap;
775 }
776
777 return ret;
778}
779
780/*
781 * llseek. be sure to verify file size on SEEK_END.
782 */
783static loff_t ceph_llseek(struct file *file, loff_t offset, int origin)
784{
785 struct inode *inode = file->f_mapping->host;
786 int ret;
787
788 mutex_lock(&inode->i_mutex);
789 __ceph_do_pending_vmtruncate(inode);
790 switch (origin) {
791 case SEEK_END:
792 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
793 if (ret < 0) {
794 offset = ret;
795 goto out;
796 }
797 offset += inode->i_size;
798 break;
799 case SEEK_CUR:
800 /*
801 * Here we special-case the lseek(fd, 0, SEEK_CUR)
802 * position-querying operation. Avoid rewriting the "same"
803 * f_pos value back to the file because a concurrent read(),
804 * write() or lseek() might have altered it
805 */
806 if (offset == 0) {
807 offset = file->f_pos;
808 goto out;
809 }
810 offset += file->f_pos;
811 break;
812 }
813
814 if (offset < 0 || offset > inode->i_sb->s_maxbytes) {
815 offset = -EINVAL;
816 goto out;
817 }
818
819 /* Special lock needed here? */
820 if (offset != file->f_pos) {
821 file->f_pos = offset;
822 file->f_version = 0;
823 }
824
825out:
826 mutex_unlock(&inode->i_mutex);
827 return offset;
828}
829
830const struct file_operations ceph_file_fops = {
831 .open = ceph_open,
832 .release = ceph_release,
833 .llseek = ceph_llseek,
834 .read = do_sync_read,
835 .write = do_sync_write,
836 .aio_read = ceph_aio_read,
837 .aio_write = ceph_aio_write,
838 .mmap = ceph_mmap,
839 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -0700840 .lock = ceph_lock,
841 .flock = ceph_flock,
Sage Weil124e68e2009-10-06 11:31:08 -0700842 .splice_read = generic_file_splice_read,
843 .splice_write = generic_file_splice_write,
844 .unlocked_ioctl = ceph_ioctl,
845 .compat_ioctl = ceph_ioctl,
846};
847