net: qmi_wwan: add new Qualcomm devices
[linux-2.6/btrfs-unstable.git] / fs / ceph / file.c
blob3de89829e2a162ab6bce2a58296b25aef9235c43
1 #include <linux/ceph/ceph_debug.h>
3 #include <linux/module.h>
4 #include <linux/sched.h>
5 #include <linux/slab.h>
6 #include <linux/file.h>
7 #include <linux/mount.h>
8 #include <linux/namei.h>
9 #include <linux/writeback.h>
10 #include <linux/aio.h>
11 #include <linux/falloc.h>
13 #include "super.h"
14 #include "mds_client.h"
15 #include "cache.h"
18 * Ceph file operations
20 * Implement basic open/close functionality, and implement
21 * read/write.
23 * We implement three modes of file I/O:
24 * - buffered uses the generic_file_aio_{read,write} helpers
26 * - synchronous is used when there is multi-client read/write
27 * sharing, avoids the page cache, and synchronously waits for an
28 * ack from the OSD.
30 * - direct io takes the variant of the sync path that references
31 * user pages directly.
33 * fsync() flushes and waits on dirty pages, but just queues metadata
34 * for writeback: since the MDS can recover size and mtime there is no
35 * need to wait for MDS acknowledgement.
40 * Prepare an open request. Preallocate ceph_cap to avoid an
41 * inopportune ENOMEM later.
43 static struct ceph_mds_request *
44 prepare_open_request(struct super_block *sb, int flags, int create_mode)
46 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
47 struct ceph_mds_client *mdsc = fsc->mdsc;
48 struct ceph_mds_request *req;
49 int want_auth = USE_ANY_MDS;
50 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
52 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
53 want_auth = USE_AUTH_MDS;
55 req = ceph_mdsc_create_request(mdsc, op, want_auth);
56 if (IS_ERR(req))
57 goto out;
58 req->r_fmode = ceph_flags_to_mode(flags);
59 req->r_args.open.flags = cpu_to_le32(flags);
60 req->r_args.open.mode = cpu_to_le32(create_mode);
61 out:
62 return req;
66 * initialize private struct file data.
67 * if we fail, clean up by dropping fmode reference on the ceph_inode
69 static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
71 struct ceph_file_info *cf;
72 int ret = 0;
73 struct ceph_inode_info *ci = ceph_inode(inode);
74 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
75 struct ceph_mds_client *mdsc = fsc->mdsc;
77 switch (inode->i_mode & S_IFMT) {
78 case S_IFREG:
79 /* First file open request creates the cookie, we want to keep
80 * this cookie around for the filetime of the inode as not to
81 * have to worry about fscache register / revoke / operation
82 * races.
84 * Also, if we know the operation is going to invalidate data
85 * (non readonly) just nuke the cache right away.
87 ceph_fscache_register_inode_cookie(mdsc->fsc, ci);
88 if ((fmode & CEPH_FILE_MODE_WR))
89 ceph_fscache_invalidate(inode);
90 case S_IFDIR:
91 dout("init_file %p %p 0%o (regular)\n", inode, file,
92 inode->i_mode);
93 cf = kmem_cache_alloc(ceph_file_cachep, GFP_NOFS | __GFP_ZERO);
94 if (cf == NULL) {
95 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
96 return -ENOMEM;
98 cf->fmode = fmode;
99 cf->next_offset = 2;
100 file->private_data = cf;
101 BUG_ON(inode->i_fop->release != ceph_release);
102 break;
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;
110 default:
111 dout("init_file %p %p 0%o (special)\n", inode, file,
112 inode->i_mode);
114 * we need to drop the open ref now, since we don't
115 * have .release set to ceph_release.
117 ceph_put_fmode(ceph_inode(inode), fmode); /* clean up */
118 BUG_ON(inode->i_fop->release == ceph_release);
120 /* call the proper open fop */
121 ret = inode->i_fop->open(inode, file);
123 return ret;
127 * 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.
132 int ceph_open(struct inode *inode, struct file *file)
134 struct ceph_inode_info *ci = ceph_inode(inode);
135 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
136 struct ceph_mds_client *mdsc = fsc->mdsc;
137 struct ceph_mds_request *req;
138 struct ceph_file_info *cf = file->private_data;
139 struct inode *parent_inode = NULL;
140 int err;
141 int flags, fmode, wanted;
143 if (cf) {
144 dout("open file %p is already opened\n", file);
145 return 0;
148 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
149 flags = file->f_flags & ~(O_CREAT|O_EXCL);
150 if (S_ISDIR(inode->i_mode))
151 flags = O_DIRECTORY; /* mds likes to know */
153 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
154 ceph_vinop(inode), file, flags, file->f_flags);
155 fmode = ceph_flags_to_mode(flags);
156 wanted = ceph_caps_for_mode(fmode);
158 /* snapped files are read-only */
159 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
160 return -EROFS;
162 /* trivially open snapdir */
163 if (ceph_snap(inode) == CEPH_SNAPDIR) {
164 spin_lock(&ci->i_ceph_lock);
165 __ceph_get_fmode(ci, fmode);
166 spin_unlock(&ci->i_ceph_lock);
167 return ceph_init_file(inode, file, fmode);
171 * No need to block if we have caps on the auth MDS (for
172 * write) or any MDS (for read). Update wanted set
173 * asynchronously.
175 spin_lock(&ci->i_ceph_lock);
176 if (__ceph_is_any_real_caps(ci) &&
177 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
178 int mds_wanted = __ceph_caps_mds_wanted(ci);
179 int issued = __ceph_caps_issued(ci, NULL);
181 dout("open %p fmode %d want %s issued %s using existing\n",
182 inode, fmode, ceph_cap_string(wanted),
183 ceph_cap_string(issued));
184 __ceph_get_fmode(ci, fmode);
185 spin_unlock(&ci->i_ceph_lock);
187 /* adjust wanted? */
188 if ((issued & wanted) != wanted &&
189 (mds_wanted & wanted) != wanted &&
190 ceph_snap(inode) != CEPH_SNAPDIR)
191 ceph_check_caps(ci, 0, NULL);
193 return ceph_init_file(inode, file, fmode);
194 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
195 (ci->i_snap_caps & wanted) == wanted) {
196 __ceph_get_fmode(ci, fmode);
197 spin_unlock(&ci->i_ceph_lock);
198 return ceph_init_file(inode, file, fmode);
201 spin_unlock(&ci->i_ceph_lock);
203 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
204 req = prepare_open_request(inode->i_sb, flags, 0);
205 if (IS_ERR(req)) {
206 err = PTR_ERR(req);
207 goto out;
209 req->r_inode = inode;
210 ihold(inode);
212 req->r_num_caps = 1;
213 if (flags & (O_CREAT|O_TRUNC))
214 parent_inode = ceph_get_dentry_parent_inode(file->f_dentry);
215 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
216 iput(parent_inode);
217 if (!err)
218 err = ceph_init_file(inode, file, req->r_fmode);
219 ceph_mdsc_put_request(req);
220 dout("open result=%d on %llx.%llx\n", err, ceph_vinop(inode));
221 out:
222 return err;
227 * Do a lookup + open with a single request. If we get a non-existent
228 * file or symlink, return 1 so the VFS can retry.
230 int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
231 struct file *file, unsigned flags, umode_t mode,
232 int *opened)
234 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
235 struct ceph_mds_client *mdsc = fsc->mdsc;
236 struct ceph_mds_request *req;
237 struct dentry *dn;
238 int err;
240 dout("atomic_open %p dentry %p '%.*s' %s flags %d mode 0%o\n",
241 dir, dentry, dentry->d_name.len, dentry->d_name.name,
242 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
244 if (dentry->d_name.len > NAME_MAX)
245 return -ENAMETOOLONG;
247 err = ceph_init_dentry(dentry);
248 if (err < 0)
249 return err;
251 /* do the open */
252 req = prepare_open_request(dir->i_sb, flags, mode);
253 if (IS_ERR(req))
254 return PTR_ERR(req);
255 req->r_dentry = dget(dentry);
256 req->r_num_caps = 2;
257 if (flags & O_CREAT) {
258 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
259 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
261 req->r_locked_dir = dir; /* caller holds dir->i_mutex */
262 err = ceph_mdsc_do_request(mdsc,
263 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
264 req);
265 if (err)
266 goto out_err;
268 err = ceph_handle_snapdir(req, dentry, err);
269 if (err == 0 && (flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
270 err = ceph_handle_notrace_create(dir, dentry);
272 if (d_unhashed(dentry)) {
273 dn = ceph_finish_lookup(req, dentry, err);
274 if (IS_ERR(dn))
275 err = PTR_ERR(dn);
276 } else {
277 /* we were given a hashed negative dentry */
278 dn = NULL;
280 if (err)
281 goto out_err;
282 if (dn || dentry->d_inode == NULL || S_ISLNK(dentry->d_inode->i_mode)) {
283 /* make vfs retry on splice, ENOENT, or symlink */
284 dout("atomic_open finish_no_open on dn %p\n", dn);
285 err = finish_no_open(file, dn);
286 } else {
287 dout("atomic_open finish_open on dn %p\n", dn);
288 if (req->r_op == CEPH_MDS_OP_CREATE && req->r_reply_info.has_create_ino) {
289 *opened |= FILE_CREATED;
291 err = finish_open(file, dentry, ceph_open, opened);
294 out_err:
295 ceph_mdsc_put_request(req);
296 dout("atomic_open result=%d\n", err);
297 return err;
300 int ceph_release(struct inode *inode, struct file *file)
302 struct ceph_inode_info *ci = ceph_inode(inode);
303 struct ceph_file_info *cf = file->private_data;
305 dout("release inode %p file %p\n", inode, file);
306 ceph_put_fmode(ci, cf->fmode);
307 if (cf->last_readdir)
308 ceph_mdsc_put_request(cf->last_readdir);
309 kfree(cf->last_name);
310 kfree(cf->dir_info);
311 dput(cf->dentry);
312 kmem_cache_free(ceph_file_cachep, cf);
314 /* wake up anyone waiting for caps on this inode */
315 wake_up_all(&ci->i_cap_wq);
316 return 0;
320 * Read a range of bytes striped over one or more objects. Iterate over
321 * objects we stripe over. (That's not atomic, but good enough for now.)
323 * If we get a short result from the OSD, check against i_size; we need to
324 * only return a short read to the caller if we hit EOF.
326 static int striped_read(struct inode *inode,
327 u64 off, u64 len,
328 struct page **pages, int num_pages,
329 int *checkeof, bool o_direct,
330 unsigned long buf_align)
332 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
333 struct ceph_inode_info *ci = ceph_inode(inode);
334 u64 pos, this_len, left;
335 int io_align, page_align;
336 int pages_left;
337 int read;
338 struct page **page_pos;
339 int ret;
340 bool hit_stripe, was_short;
343 * we may need to do multiple reads. not atomic, unfortunately.
345 pos = off;
346 left = len;
347 page_pos = pages;
348 pages_left = num_pages;
349 read = 0;
350 io_align = off & ~PAGE_MASK;
352 more:
353 if (o_direct)
354 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
355 else
356 page_align = pos & ~PAGE_MASK;
357 this_len = left;
358 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
359 &ci->i_layout, pos, &this_len,
360 ci->i_truncate_seq,
361 ci->i_truncate_size,
362 page_pos, pages_left, page_align);
363 if (ret == -ENOENT)
364 ret = 0;
365 hit_stripe = this_len < left;
366 was_short = ret >= 0 && ret < this_len;
367 dout("striped_read %llu~%llu (read %u) got %d%s%s\n", pos, left, read,
368 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
370 if (ret >= 0) {
371 int didpages;
372 if (was_short && (pos + ret < inode->i_size)) {
373 u64 tmp = min(this_len - ret,
374 inode->i_size - pos - ret);
375 dout(" zero gap %llu to %llu\n",
376 pos + ret, pos + ret + tmp);
377 ceph_zero_page_vector_range(page_align + read + ret,
378 tmp, pages);
379 ret += tmp;
382 didpages = (page_align + ret) >> PAGE_CACHE_SHIFT;
383 pos += ret;
384 read = pos - off;
385 left -= ret;
386 page_pos += didpages;
387 pages_left -= didpages;
389 /* hit stripe and need continue*/
390 if (left && hit_stripe && pos < inode->i_size)
391 goto more;
394 if (read > 0) {
395 ret = read;
396 /* did we bounce off eof? */
397 if (pos + left > inode->i_size)
398 *checkeof = 1;
401 dout("striped_read returns %d\n", ret);
402 return ret;
406 * Completely synchronous read and write methods. Direct from __user
407 * buffer to osd, or directly to user pages (if O_DIRECT).
409 * If the read spans object boundary, just do multiple reads.
411 static ssize_t ceph_sync_read(struct file *file, char __user *data,
412 unsigned len, loff_t *poff, int *checkeof)
414 struct inode *inode = file_inode(file);
415 struct page **pages;
416 u64 off = *poff;
417 int num_pages, ret;
419 dout("sync_read on file %p %llu~%u %s\n", file, off, len,
420 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
422 if (file->f_flags & O_DIRECT) {
423 num_pages = calc_pages_for((unsigned long)data, len);
424 pages = ceph_get_direct_page_vector(data, num_pages, true);
425 } else {
426 num_pages = calc_pages_for(off, len);
427 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
429 if (IS_ERR(pages))
430 return PTR_ERR(pages);
433 * flush any page cache pages in this range. this
434 * will make concurrent normal and sync io slow,
435 * but it will at least behave sensibly when they are
436 * in sequence.
438 ret = filemap_write_and_wait(inode->i_mapping);
439 if (ret < 0)
440 goto done;
442 ret = striped_read(inode, off, len, pages, num_pages, checkeof,
443 file->f_flags & O_DIRECT,
444 (unsigned long)data & ~PAGE_MASK);
446 if (ret >= 0 && (file->f_flags & O_DIRECT) == 0)
447 ret = ceph_copy_page_vector_to_user(pages, data, off, ret);
448 if (ret >= 0)
449 *poff = off + ret;
451 done:
452 if (file->f_flags & O_DIRECT)
453 ceph_put_page_vector(pages, num_pages, true);
454 else
455 ceph_release_page_vector(pages, num_pages);
456 dout("sync_read result %d\n", ret);
457 return ret;
461 * Write commit request unsafe callback, called to tell us when a
462 * request is unsafe (that is, in flight--has been handed to the
463 * messenger to send to its target osd). It is called again when
464 * we've received a response message indicating the request is
465 * "safe" (its CEPH_OSD_FLAG_ONDISK flag is set), or when a request
466 * is completed early (and unsuccessfully) due to a timeout or
467 * interrupt.
469 * This is used if we requested both an ACK and ONDISK commit reply
470 * from the OSD.
472 static void ceph_sync_write_unsafe(struct ceph_osd_request *req, bool unsafe)
474 struct ceph_inode_info *ci = ceph_inode(req->r_inode);
476 dout("%s %p tid %llu %ssafe\n", __func__, req, req->r_tid,
477 unsafe ? "un" : "");
478 if (unsafe) {
479 ceph_get_cap_refs(ci, CEPH_CAP_FILE_WR);
480 spin_lock(&ci->i_unsafe_lock);
481 list_add_tail(&req->r_unsafe_item,
482 &ci->i_unsafe_writes);
483 spin_unlock(&ci->i_unsafe_lock);
484 } else {
485 spin_lock(&ci->i_unsafe_lock);
486 list_del_init(&req->r_unsafe_item);
487 spin_unlock(&ci->i_unsafe_lock);
488 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
493 * Synchronous write, straight from __user pointer or user pages (if
494 * O_DIRECT).
496 * If write spans object boundary, just do multiple writes. (For a
497 * correct atomic write, we should e.g. take write locks on all
498 * objects, rollback on failure, etc.)
500 static ssize_t ceph_sync_write(struct file *file, const char __user *data,
501 size_t left, loff_t pos, loff_t *ppos)
503 struct inode *inode = file_inode(file);
504 struct ceph_inode_info *ci = ceph_inode(inode);
505 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
506 struct ceph_snap_context *snapc;
507 struct ceph_vino vino;
508 struct ceph_osd_request *req;
509 int num_ops = 1;
510 struct page **pages;
511 int num_pages;
512 u64 len;
513 int written = 0;
514 int flags;
515 int check_caps = 0;
516 int page_align, io_align;
517 unsigned long buf_align;
518 int ret;
519 struct timespec mtime = CURRENT_TIME;
520 bool own_pages = false;
522 if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
523 return -EROFS;
525 dout("sync_write on file %p %lld~%u %s\n", file, pos,
526 (unsigned)left, (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
528 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + left);
529 if (ret < 0)
530 return ret;
532 ret = invalidate_inode_pages2_range(inode->i_mapping,
533 pos >> PAGE_CACHE_SHIFT,
534 (pos + left) >> PAGE_CACHE_SHIFT);
535 if (ret < 0)
536 dout("invalidate_inode_pages2_range returned %d\n", ret);
538 flags = CEPH_OSD_FLAG_ORDERSNAP |
539 CEPH_OSD_FLAG_ONDISK |
540 CEPH_OSD_FLAG_WRITE;
541 if ((file->f_flags & (O_SYNC|O_DIRECT)) == 0)
542 flags |= CEPH_OSD_FLAG_ACK;
543 else
544 num_ops++; /* Also include a 'startsync' command. */
547 * we may need to do multiple writes here if we span an object
548 * boundary. this isn't atomic, unfortunately. :(
550 more:
551 io_align = pos & ~PAGE_MASK;
552 buf_align = (unsigned long)data & ~PAGE_MASK;
553 len = left;
555 snapc = ci->i_snap_realm->cached_context;
556 vino = ceph_vino(inode);
557 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
558 vino, pos, &len, num_ops,
559 CEPH_OSD_OP_WRITE, flags, snapc,
560 ci->i_truncate_seq, ci->i_truncate_size,
561 false);
562 if (IS_ERR(req))
563 return PTR_ERR(req);
565 /* write from beginning of first page, regardless of io alignment */
566 page_align = file->f_flags & O_DIRECT ? buf_align : io_align;
567 num_pages = calc_pages_for(page_align, len);
568 if (file->f_flags & O_DIRECT) {
569 pages = ceph_get_direct_page_vector(data, num_pages, false);
570 if (IS_ERR(pages)) {
571 ret = PTR_ERR(pages);
572 goto out;
576 * throw out any page cache pages in this range. this
577 * may block.
579 truncate_inode_pages_range(inode->i_mapping, pos,
580 (pos+len) | (PAGE_CACHE_SIZE-1));
581 } else {
582 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
583 if (IS_ERR(pages)) {
584 ret = PTR_ERR(pages);
585 goto out;
587 ret = ceph_copy_user_to_page_vector(pages, data, pos, len);
588 if (ret < 0) {
589 ceph_release_page_vector(pages, num_pages);
590 goto out;
593 if ((file->f_flags & O_SYNC) == 0) {
594 /* get a second commit callback */
595 req->r_unsafe_callback = ceph_sync_write_unsafe;
596 req->r_inode = inode;
597 own_pages = true;
600 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_align,
601 false, own_pages);
603 /* BUG_ON(vino.snap != CEPH_NOSNAP); */
604 ceph_osdc_build_request(req, pos, snapc, vino.snap, &mtime);
606 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
607 if (!ret)
608 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
610 if (file->f_flags & O_DIRECT)
611 ceph_put_page_vector(pages, num_pages, false);
612 else if (file->f_flags & O_SYNC)
613 ceph_release_page_vector(pages, num_pages);
615 out:
616 ceph_osdc_put_request(req);
617 if (ret == 0) {
618 pos += len;
619 written += len;
620 left -= len;
621 data += len;
622 if (left)
623 goto more;
625 ret = written;
626 *ppos = pos;
627 if (pos > i_size_read(inode))
628 check_caps = ceph_inode_set_size(inode, pos);
629 if (check_caps)
630 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY,
631 NULL);
632 } else if (ret != -EOLDSNAPC && written > 0) {
633 ret = written;
635 return ret;
639 * Wrap generic_file_aio_read with checks for cap bits on the inode.
640 * Atomically grab references, so that those bits are not released
641 * back to the MDS mid-read.
643 * Hmm, the sync read case isn't actually async... should it be?
645 static ssize_t ceph_aio_read(struct kiocb *iocb, const struct iovec *iov,
646 unsigned long nr_segs, loff_t pos)
648 struct file *filp = iocb->ki_filp;
649 struct ceph_file_info *fi = filp->private_data;
650 loff_t *ppos = &iocb->ki_pos;
651 size_t len = iov->iov_len;
652 struct inode *inode = file_inode(filp);
653 struct ceph_inode_info *ci = ceph_inode(inode);
654 void __user *base = iov->iov_base;
655 ssize_t ret;
656 int want, got = 0;
657 int checkeof = 0, read = 0;
659 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
660 inode, ceph_vinop(inode), pos, (unsigned)len, inode);
661 again:
662 if (fi->fmode & CEPH_FILE_MODE_LAZY)
663 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
664 else
665 want = CEPH_CAP_FILE_CACHE;
666 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, &got, -1);
667 if (ret < 0)
668 goto out;
669 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
670 inode, ceph_vinop(inode), pos, (unsigned)len,
671 ceph_cap_string(got));
673 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
674 (iocb->ki_filp->f_flags & O_DIRECT) ||
675 (fi->flags & CEPH_F_SYNC))
676 /* hmm, this isn't really async... */
677 ret = ceph_sync_read(filp, base, len, ppos, &checkeof);
678 else
679 ret = generic_file_aio_read(iocb, iov, nr_segs, pos);
681 out:
682 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
683 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
684 ceph_put_cap_refs(ci, got);
686 if (checkeof && ret >= 0) {
687 int statret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
689 /* hit EOF or hole? */
690 if (statret == 0 && *ppos < inode->i_size) {
691 dout("aio_read sync_read hit hole, ppos %lld < size %lld, reading more\n", *ppos, inode->i_size);
692 read += ret;
693 base += ret;
694 len -= ret;
695 checkeof = 0;
696 goto again;
699 if (ret >= 0)
700 ret += read;
702 return ret;
706 * Take cap references to avoid releasing caps to MDS mid-write.
708 * If we are synchronous, and write with an old snap context, the OSD
709 * may return EOLDSNAPC. In that case, retry the write.. _after_
710 * dropping our cap refs and allowing the pending snap to logically
711 * complete _before_ this write occurs.
713 * If we are near ENOSPC, write synchronously.
715 static ssize_t ceph_aio_write(struct kiocb *iocb, const struct iovec *iov,
716 unsigned long nr_segs, loff_t pos)
718 struct file *file = iocb->ki_filp;
719 struct ceph_file_info *fi = file->private_data;
720 struct inode *inode = file_inode(file);
721 struct ceph_inode_info *ci = ceph_inode(inode);
722 struct ceph_osd_client *osdc =
723 &ceph_sb_to_client(inode->i_sb)->client->osdc;
724 ssize_t count, written = 0;
725 int err, want, got;
727 if (ceph_snap(inode) != CEPH_NOSNAP)
728 return -EROFS;
730 mutex_lock(&inode->i_mutex);
732 err = generic_segment_checks(iov, &nr_segs, &count, VERIFY_READ);
733 if (err)
734 goto out;
736 /* We can write back this queue in page reclaim */
737 current->backing_dev_info = file->f_mapping->backing_dev_info;
739 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
740 if (err)
741 goto out;
743 if (count == 0)
744 goto out;
746 err = file_remove_suid(file);
747 if (err)
748 goto out;
750 err = file_update_time(file);
751 if (err)
752 goto out;
754 retry_snap:
755 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL)) {
756 err = -ENOSPC;
757 goto out;
760 dout("aio_write %p %llx.%llx %llu~%zd getting caps. i_size %llu\n",
761 inode, ceph_vinop(inode), pos, count, inode->i_size);
762 if (fi->fmode & CEPH_FILE_MODE_LAZY)
763 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
764 else
765 want = CEPH_CAP_FILE_BUFFER;
766 got = 0;
767 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, &got, pos + count);
768 if (err < 0)
769 goto out;
771 dout("aio_write %p %llx.%llx %llu~%zd got cap refs on %s\n",
772 inode, ceph_vinop(inode), pos, count, ceph_cap_string(got));
774 if ((got & (CEPH_CAP_FILE_BUFFER|CEPH_CAP_FILE_LAZYIO)) == 0 ||
775 (iocb->ki_filp->f_flags & O_DIRECT) ||
776 (fi->flags & CEPH_F_SYNC)) {
777 mutex_unlock(&inode->i_mutex);
778 written = ceph_sync_write(file, iov->iov_base, count,
779 pos, &iocb->ki_pos);
780 if (written == -EOLDSNAPC) {
781 dout("aio_write %p %llx.%llx %llu~%u"
782 "got EOLDSNAPC, retrying\n",
783 inode, ceph_vinop(inode),
784 pos, (unsigned)iov->iov_len);
785 mutex_lock(&inode->i_mutex);
786 goto retry_snap;
788 } else {
790 * No need to acquire the i_truncate_mutex. Because
791 * the MDS revokes Fwb caps before sending truncate
792 * message to us. We can't get Fwb cap while there
793 * are pending vmtruncate. So write and vmtruncate
794 * can not run at the same time
796 written = generic_file_buffered_write(iocb, iov, nr_segs,
797 pos, &iocb->ki_pos,
798 count, 0);
799 mutex_unlock(&inode->i_mutex);
802 if (written >= 0) {
803 int dirty;
804 spin_lock(&ci->i_ceph_lock);
805 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR);
806 spin_unlock(&ci->i_ceph_lock);
807 if (dirty)
808 __mark_inode_dirty(inode, dirty);
811 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
812 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len,
813 ceph_cap_string(got));
814 ceph_put_cap_refs(ci, got);
816 if (written >= 0 &&
817 ((file->f_flags & O_SYNC) || IS_SYNC(file->f_mapping->host) ||
818 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_NEARFULL))) {
819 err = vfs_fsync_range(file, pos, pos + written - 1, 1);
820 if (err < 0)
821 written = err;
824 goto out_unlocked;
826 out:
827 mutex_unlock(&inode->i_mutex);
828 out_unlocked:
829 current->backing_dev_info = NULL;
830 return written ? written : err;
834 * llseek. be sure to verify file size on SEEK_END.
836 static loff_t ceph_llseek(struct file *file, loff_t offset, int whence)
838 struct inode *inode = file->f_mapping->host;
839 int ret;
841 mutex_lock(&inode->i_mutex);
843 if (whence == SEEK_END || whence == SEEK_DATA || whence == SEEK_HOLE) {
844 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
845 if (ret < 0) {
846 offset = ret;
847 goto out;
851 switch (whence) {
852 case SEEK_END:
853 offset += inode->i_size;
854 break;
855 case SEEK_CUR:
857 * Here we special-case the lseek(fd, 0, SEEK_CUR)
858 * position-querying operation. Avoid rewriting the "same"
859 * f_pos value back to the file because a concurrent read(),
860 * write() or lseek() might have altered it
862 if (offset == 0) {
863 offset = file->f_pos;
864 goto out;
866 offset += file->f_pos;
867 break;
868 case SEEK_DATA:
869 if (offset >= inode->i_size) {
870 ret = -ENXIO;
871 goto out;
873 break;
874 case SEEK_HOLE:
875 if (offset >= inode->i_size) {
876 ret = -ENXIO;
877 goto out;
879 offset = inode->i_size;
880 break;
883 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
885 out:
886 mutex_unlock(&inode->i_mutex);
887 return offset;
890 static inline void ceph_zero_partial_page(
891 struct inode *inode, loff_t offset, unsigned size)
893 struct page *page;
894 pgoff_t index = offset >> PAGE_CACHE_SHIFT;
896 page = find_lock_page(inode->i_mapping, index);
897 if (page) {
898 wait_on_page_writeback(page);
899 zero_user(page, offset & (PAGE_CACHE_SIZE - 1), size);
900 unlock_page(page);
901 page_cache_release(page);
905 static void ceph_zero_pagecache_range(struct inode *inode, loff_t offset,
906 loff_t length)
908 loff_t nearly = round_up(offset, PAGE_CACHE_SIZE);
909 if (offset < nearly) {
910 loff_t size = nearly - offset;
911 if (length < size)
912 size = length;
913 ceph_zero_partial_page(inode, offset, size);
914 offset += size;
915 length -= size;
917 if (length >= PAGE_CACHE_SIZE) {
918 loff_t size = round_down(length, PAGE_CACHE_SIZE);
919 truncate_pagecache_range(inode, offset, offset + size - 1);
920 offset += size;
921 length -= size;
923 if (length)
924 ceph_zero_partial_page(inode, offset, length);
927 static int ceph_zero_partial_object(struct inode *inode,
928 loff_t offset, loff_t *length)
930 struct ceph_inode_info *ci = ceph_inode(inode);
931 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
932 struct ceph_osd_request *req;
933 int ret = 0;
934 loff_t zero = 0;
935 int op;
937 if (!length) {
938 op = offset ? CEPH_OSD_OP_DELETE : CEPH_OSD_OP_TRUNCATE;
939 length = &zero;
940 } else {
941 op = CEPH_OSD_OP_ZERO;
944 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
945 ceph_vino(inode),
946 offset, length,
947 1, op,
948 CEPH_OSD_FLAG_WRITE |
949 CEPH_OSD_FLAG_ONDISK,
950 NULL, 0, 0, false);
951 if (IS_ERR(req)) {
952 ret = PTR_ERR(req);
953 goto out;
956 ceph_osdc_build_request(req, offset, NULL, ceph_vino(inode).snap,
957 &inode->i_mtime);
959 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
960 if (!ret) {
961 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
962 if (ret == -ENOENT)
963 ret = 0;
965 ceph_osdc_put_request(req);
967 out:
968 return ret;
971 static int ceph_zero_objects(struct inode *inode, loff_t offset, loff_t length)
973 int ret = 0;
974 struct ceph_inode_info *ci = ceph_inode(inode);
975 s32 stripe_unit = ceph_file_layout_su(ci->i_layout);
976 s32 stripe_count = ceph_file_layout_stripe_count(ci->i_layout);
977 s32 object_size = ceph_file_layout_object_size(ci->i_layout);
978 u64 object_set_size = object_size * stripe_count;
979 u64 nearly, t;
981 /* round offset up to next period boundary */
982 nearly = offset + object_set_size - 1;
983 t = nearly;
984 nearly -= do_div(t, object_set_size);
986 while (length && offset < nearly) {
987 loff_t size = length;
988 ret = ceph_zero_partial_object(inode, offset, &size);
989 if (ret < 0)
990 return ret;
991 offset += size;
992 length -= size;
994 while (length >= object_set_size) {
995 int i;
996 loff_t pos = offset;
997 for (i = 0; i < stripe_count; ++i) {
998 ret = ceph_zero_partial_object(inode, pos, NULL);
999 if (ret < 0)
1000 return ret;
1001 pos += stripe_unit;
1003 offset += object_set_size;
1004 length -= object_set_size;
1006 while (length) {
1007 loff_t size = length;
1008 ret = ceph_zero_partial_object(inode, offset, &size);
1009 if (ret < 0)
1010 return ret;
1011 offset += size;
1012 length -= size;
1014 return ret;
1017 static long ceph_fallocate(struct file *file, int mode,
1018 loff_t offset, loff_t length)
1020 struct ceph_file_info *fi = file->private_data;
1021 struct inode *inode = file->f_dentry->d_inode;
1022 struct ceph_inode_info *ci = ceph_inode(inode);
1023 struct ceph_osd_client *osdc =
1024 &ceph_inode_to_client(inode)->client->osdc;
1025 int want, got = 0;
1026 int dirty;
1027 int ret = 0;
1028 loff_t endoff = 0;
1029 loff_t size;
1031 if (!S_ISREG(inode->i_mode))
1032 return -EOPNOTSUPP;
1034 if (IS_SWAPFILE(inode))
1035 return -ETXTBSY;
1037 mutex_lock(&inode->i_mutex);
1039 if (ceph_snap(inode) != CEPH_NOSNAP) {
1040 ret = -EROFS;
1041 goto unlock;
1044 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL) &&
1045 !(mode & FALLOC_FL_PUNCH_HOLE)) {
1046 ret = -ENOSPC;
1047 goto unlock;
1050 size = i_size_read(inode);
1051 if (!(mode & FALLOC_FL_KEEP_SIZE))
1052 endoff = offset + length;
1054 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1055 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1056 else
1057 want = CEPH_CAP_FILE_BUFFER;
1059 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, &got, endoff);
1060 if (ret < 0)
1061 goto unlock;
1063 if (mode & FALLOC_FL_PUNCH_HOLE) {
1064 if (offset < size)
1065 ceph_zero_pagecache_range(inode, offset, length);
1066 ret = ceph_zero_objects(inode, offset, length);
1067 } else if (endoff > size) {
1068 truncate_pagecache_range(inode, size, -1);
1069 if (ceph_inode_set_size(inode, endoff))
1070 ceph_check_caps(ceph_inode(inode),
1071 CHECK_CAPS_AUTHONLY, NULL);
1074 if (!ret) {
1075 spin_lock(&ci->i_ceph_lock);
1076 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR);
1077 spin_unlock(&ci->i_ceph_lock);
1078 if (dirty)
1079 __mark_inode_dirty(inode, dirty);
1082 ceph_put_cap_refs(ci, got);
1083 unlock:
1084 mutex_unlock(&inode->i_mutex);
1085 return ret;
1088 const struct file_operations ceph_file_fops = {
1089 .open = ceph_open,
1090 .release = ceph_release,
1091 .llseek = ceph_llseek,
1092 .read = do_sync_read,
1093 .write = do_sync_write,
1094 .aio_read = ceph_aio_read,
1095 .aio_write = ceph_aio_write,
1096 .mmap = ceph_mmap,
1097 .fsync = ceph_fsync,
1098 .lock = ceph_lock,
1099 .flock = ceph_flock,
1100 .splice_read = generic_file_splice_read,
1101 .splice_write = generic_file_splice_write,
1102 .unlocked_ioctl = ceph_ioctl,
1103 .compat_ioctl = ceph_ioctl,
1104 .fallocate = ceph_fallocate,