blob: 2c71cbd78332880e866b72dfd1bc9ff6f40e161a [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>
10
11#include "super.h"
12#include "mds_client.h"
13
14/*
15 * Ceph file operations
16 *
17 * Implement basic open/close functionality, and implement
18 * read/write.
19 *
20 * We implement three modes of file I/O:
21 * - buffered uses the generic_file_aio_{read,write} helpers
22 *
23 * - synchronous is used when there is multi-client read/write
24 * sharing, avoids the page cache, and synchronously waits for an
25 * ack from the OSD.
26 *
27 * - direct io takes the variant of the sync path that references
28 * user pages directly.
29 *
30 * fsync() flushes and waits on dirty pages, but just queues metadata
31 * for writeback: since the MDS can recover size and mtime there is no
32 * need to wait for MDS acknowledgement.
33 */
34
35
36/*
37 * Prepare an open request. Preallocate ceph_cap to avoid an
38 * inopportune ENOMEM later.
39 */
40static struct ceph_mds_request *
41prepare_open_request(struct super_block *sb, int flags, int create_mode)
42{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070043 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
44 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -070045 struct ceph_mds_request *req;
46 int want_auth = USE_ANY_MDS;
47 int op = (flags & O_CREAT) ? CEPH_MDS_OP_CREATE : CEPH_MDS_OP_OPEN;
48
49 if (flags & (O_WRONLY|O_RDWR|O_CREAT|O_TRUNC))
50 want_auth = USE_AUTH_MDS;
51
52 req = ceph_mdsc_create_request(mdsc, op, want_auth);
53 if (IS_ERR(req))
54 goto out;
55 req->r_fmode = ceph_flags_to_mode(flags);
56 req->r_args.open.flags = cpu_to_le32(flags);
57 req->r_args.open.mode = cpu_to_le32(create_mode);
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/*
Sage Weil124e68e2009-10-06 11:31:08 -0700110 * If we already have the requisite capabilities, we can satisfy
111 * the open request locally (no need to request new caps from the
112 * MDS). We do, however, need to inform the MDS (asynchronously)
113 * if our wanted caps set expands.
114 */
115int ceph_open(struct inode *inode, struct file *file)
116{
117 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700118 struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
119 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700120 struct ceph_mds_request *req;
121 struct ceph_file_info *cf = file->private_data;
Sage Weil5f21c962011-07-26 11:30:29 -0700122 struct inode *parent_inode = NULL;
Sage Weil124e68e2009-10-06 11:31:08 -0700123 int err;
124 int flags, fmode, wanted;
125
126 if (cf) {
127 dout("open file %p is already opened\n", file);
128 return 0;
129 }
130
131 /* filter out O_CREAT|O_EXCL; vfs did that already. yuck. */
132 flags = file->f_flags & ~(O_CREAT|O_EXCL);
133 if (S_ISDIR(inode->i_mode))
134 flags = O_DIRECTORY; /* mds likes to know */
135
136 dout("open inode %p ino %llx.%llx file %p flags %d (%d)\n", inode,
137 ceph_vinop(inode), file, flags, file->f_flags);
138 fmode = ceph_flags_to_mode(flags);
139 wanted = ceph_caps_for_mode(fmode);
140
141 /* snapped files are read-only */
142 if (ceph_snap(inode) != CEPH_NOSNAP && (file->f_mode & FMODE_WRITE))
143 return -EROFS;
144
145 /* trivially open snapdir */
146 if (ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbe655592011-11-30 09:47:09 -0800147 spin_lock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700148 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800149 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700150 return ceph_init_file(inode, file, fmode);
151 }
152
153 /*
Sage Weil7421ab82010-11-07 09:07:15 -0800154 * No need to block if we have caps on the auth MDS (for
155 * write) or any MDS (for read). Update wanted set
Sage Weil124e68e2009-10-06 11:31:08 -0700156 * asynchronously.
157 */
Sage Weilbe655592011-11-30 09:47:09 -0800158 spin_lock(&ci->i_ceph_lock);
Sage Weil7421ab82010-11-07 09:07:15 -0800159 if (__ceph_is_any_real_caps(ci) &&
160 (((fmode & CEPH_FILE_MODE_WR) == 0) || ci->i_auth_cap)) {
Sage Weil124e68e2009-10-06 11:31:08 -0700161 int mds_wanted = __ceph_caps_mds_wanted(ci);
162 int issued = __ceph_caps_issued(ci, NULL);
163
164 dout("open %p fmode %d want %s issued %s using existing\n",
165 inode, fmode, ceph_cap_string(wanted),
166 ceph_cap_string(issued));
167 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800168 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700169
170 /* adjust wanted? */
171 if ((issued & wanted) != wanted &&
172 (mds_wanted & wanted) != wanted &&
173 ceph_snap(inode) != CEPH_SNAPDIR)
174 ceph_check_caps(ci, 0, NULL);
175
176 return ceph_init_file(inode, file, fmode);
177 } else if (ceph_snap(inode) != CEPH_NOSNAP &&
178 (ci->i_snap_caps & wanted) == wanted) {
179 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800180 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700181 return ceph_init_file(inode, file, fmode);
182 }
Sage Weilbe655592011-11-30 09:47:09 -0800183 spin_unlock(&ci->i_ceph_lock);
Sage Weil124e68e2009-10-06 11:31:08 -0700184
185 dout("open fmode %d wants %s\n", fmode, ceph_cap_string(wanted));
186 req = prepare_open_request(inode->i_sb, flags, 0);
187 if (IS_ERR(req)) {
188 err = PTR_ERR(req);
189 goto out;
190 }
Sage Weil70b666c2011-05-27 09:24:26 -0700191 req->r_inode = inode;
192 ihold(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700193 req->r_num_caps = 1;
Sage Weil5f21c962011-07-26 11:30:29 -0700194 if (flags & (O_CREAT|O_TRUNC))
195 parent_inode = ceph_get_dentry_parent_inode(file->f_dentry);
Sage Weil124e68e2009-10-06 11:31:08 -0700196 err = ceph_mdsc_do_request(mdsc, parent_inode, req);
Sage Weil5f21c962011-07-26 11:30:29 -0700197 iput(parent_inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700198 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/*
Sage Weil5ef50c32012-07-31 11:27:36 -0700208 * Do a lookup + open with a single request. If we get a non-existent
209 * file or symlink, return 1 so the VFS can retry.
Sage Weil124e68e2009-10-06 11:31:08 -0700210 */
Sage Weil5ef50c32012-07-31 11:27:36 -0700211int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400212 struct file *file, unsigned flags, umode_t mode,
Al Virod9585272012-06-22 12:39:14 +0400213 int *opened)
Sage Weil124e68e2009-10-06 11:31:08 -0700214{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700215 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
216 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil124e68e2009-10-06 11:31:08 -0700217 struct ceph_mds_request *req;
Sage Weil5ef50c32012-07-31 11:27:36 -0700218 struct dentry *dn;
Sage Weil124e68e2009-10-06 11:31:08 -0700219 int err;
Sage Weil124e68e2009-10-06 11:31:08 -0700220
Sage Weil5ef50c32012-07-31 11:27:36 -0700221 dout("atomic_open %p dentry %p '%.*s' %s flags %d mode 0%o\n",
222 dir, dentry, dentry->d_name.len, dentry->d_name.name,
223 d_unhashed(dentry) ? "unhashed" : "hashed", flags, mode);
224
225 if (dentry->d_name.len > NAME_MAX)
226 return -ENAMETOOLONG;
227
228 err = ceph_init_dentry(dentry);
229 if (err < 0)
230 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700231
232 /* do the open */
233 req = prepare_open_request(dir->i_sb, flags, mode);
234 if (IS_ERR(req))
Al Virod9585272012-06-22 12:39:14 +0400235 return PTR_ERR(req);
Sage Weil124e68e2009-10-06 11:31:08 -0700236 req->r_dentry = dget(dentry);
237 req->r_num_caps = 2;
238 if (flags & O_CREAT) {
239 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
240 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
241 }
242 req->r_locked_dir = dir; /* caller holds dir->i_mutex */
Sage Weilacda7652011-07-26 11:27:48 -0700243 err = ceph_mdsc_do_request(mdsc,
244 (flags & (O_CREAT|O_TRUNC)) ? dir : NULL,
245 req);
Sam Lang79aec9842012-12-19 09:44:23 -1000246 if (err)
247 goto out_err;
248
Sage Weil468640e2011-07-26 11:28:11 -0700249 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil5ef50c32012-07-31 11:27:36 -0700250 if (err == 0 && (flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
Sage Weil124e68e2009-10-06 11:31:08 -0700251 err = ceph_handle_notrace_create(dir, dentry);
Sage Weil5ef50c32012-07-31 11:27:36 -0700252
253 if (d_unhashed(dentry)) {
254 dn = ceph_finish_lookup(req, dentry, err);
255 if (IS_ERR(dn))
256 err = PTR_ERR(dn);
257 } else {
258 /* we were given a hashed negative dentry */
259 dn = NULL;
260 }
Sage Weil468640e2011-07-26 11:28:11 -0700261 if (err)
Sage Weil5ef50c32012-07-31 11:27:36 -0700262 goto out_err;
263 if (dn || dentry->d_inode == NULL || S_ISLNK(dentry->d_inode->i_mode)) {
264 /* make vfs retry on splice, ENOENT, or symlink */
265 dout("atomic_open finish_no_open on dn %p\n", dn);
266 err = finish_no_open(file, dn);
267 } else {
268 dout("atomic_open finish_open on dn %p\n", dn);
269 err = finish_open(file, dentry, ceph_open, opened);
270 }
271
272out_err:
Sage Weil124e68e2009-10-06 11:31:08 -0700273 ceph_mdsc_put_request(req);
Sage Weil5ef50c32012-07-31 11:27:36 -0700274 dout("atomic_open result=%d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400275 return err;
Sage Weil124e68e2009-10-06 11:31:08 -0700276}
277
278int ceph_release(struct inode *inode, struct file *file)
279{
280 struct ceph_inode_info *ci = ceph_inode(inode);
281 struct ceph_file_info *cf = file->private_data;
282
283 dout("release inode %p file %p\n", inode, file);
284 ceph_put_fmode(ci, cf->fmode);
285 if (cf->last_readdir)
286 ceph_mdsc_put_request(cf->last_readdir);
287 kfree(cf->last_name);
288 kfree(cf->dir_info);
289 dput(cf->dentry);
290 kmem_cache_free(ceph_file_cachep, cf);
Sage Weil195d3ce2010-03-01 09:57:54 -0800291
292 /* wake up anyone waiting for caps on this inode */
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700293 wake_up_all(&ci->i_cap_wq);
Sage Weil124e68e2009-10-06 11:31:08 -0700294 return 0;
295}
296
297/*
Sage Weil124e68e2009-10-06 11:31:08 -0700298 * Read a range of bytes striped over one or more objects. Iterate over
299 * objects we stripe over. (That's not atomic, but good enough for now.)
300 *
301 * If we get a short result from the OSD, check against i_size; we need to
302 * only return a short read to the caller if we hit EOF.
303 */
304static int striped_read(struct inode *inode,
305 u64 off, u64 len,
Sage Weil6a026582010-02-09 14:04:02 -0800306 struct page **pages, int num_pages,
Sage Weilc3cd6282011-06-01 16:08:44 -0700307 int *checkeof, bool o_direct,
Henry C Changab226e22010-12-15 20:41:54 -0800308 unsigned long buf_align)
Sage Weil124e68e2009-10-06 11:31:08 -0700309{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700310 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700311 struct ceph_inode_info *ci = ceph_inode(inode);
312 u64 pos, this_len;
Sage Weilb7495fc2010-11-09 12:43:12 -0800313 int io_align, page_align;
Sage Weil124e68e2009-10-06 11:31:08 -0700314 int left, pages_left;
315 int read;
316 struct page **page_pos;
317 int ret;
318 bool hit_stripe, was_short;
319
320 /*
321 * we may need to do multiple reads. not atomic, unfortunately.
322 */
323 pos = off;
324 left = len;
325 page_pos = pages;
326 pages_left = num_pages;
327 read = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -0800328 io_align = off & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700329
330more:
Sage Weilc3cd6282011-06-01 16:08:44 -0700331 if (o_direct)
Henry C Changab226e22010-12-15 20:41:54 -0800332 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
Sage Weilb7495fc2010-11-09 12:43:12 -0800333 else
334 page_align = pos & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700335 this_len = left;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700336 ret = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
Sage Weil124e68e2009-10-06 11:31:08 -0700337 &ci->i_layout, pos, &this_len,
338 ci->i_truncate_seq,
339 ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800340 page_pos, pages_left, page_align);
Sage Weil124e68e2009-10-06 11:31:08 -0700341 if (ret == -ENOENT)
342 ret = 0;
Sage Weil0e987282011-06-07 20:40:35 -0700343 hit_stripe = this_len < left;
344 was_short = ret >= 0 && ret < this_len;
Sage Weil124e68e2009-10-06 11:31:08 -0700345 dout("striped_read %llu~%u (read %u) got %d%s%s\n", pos, left, read,
346 ret, hit_stripe ? " HITSTRIPE" : "", was_short ? " SHORT" : "");
347
348 if (ret > 0) {
Sage Weil773e9b42011-06-07 20:57:14 -0700349 int didpages = (page_align + ret) >> PAGE_CACHE_SHIFT;
Sage Weil124e68e2009-10-06 11:31:08 -0700350
351 if (read < pos - off) {
352 dout(" zero gap %llu to %llu\n", off + read, pos);
Sage Weil773e9b42011-06-07 20:57:14 -0700353 ceph_zero_page_vector_range(page_align + read,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700354 pos - off - read, pages);
Sage Weil124e68e2009-10-06 11:31:08 -0700355 }
356 pos += ret;
357 read = pos - off;
358 left -= ret;
359 page_pos += didpages;
360 pages_left -= didpages;
361
362 /* hit stripe? */
363 if (left && hit_stripe)
364 goto more;
365 }
366
367 if (was_short) {
Sage Weilc3cd6282011-06-01 16:08:44 -0700368 /* did we bounce off eof? */
369 if (pos + left > inode->i_size)
370 *checkeof = 1;
Sage Weil124e68e2009-10-06 11:31:08 -0700371
Sage Weilc3cd6282011-06-01 16:08:44 -0700372 /* zero trailing bytes (inside i_size) */
373 if (left > 0 && pos < inode->i_size) {
374 if (pos + left > inode->i_size)
375 left = inode->i_size - pos;
376
377 dout("zero tail %d\n", left);
Sage Weil773e9b42011-06-07 20:57:14 -0700378 ceph_zero_page_vector_range(page_align + read, left,
Sage Weilc3cd6282011-06-01 16:08:44 -0700379 pages);
380 read += left;
381 }
Sage Weil124e68e2009-10-06 11:31:08 -0700382 }
383
Sage Weil124e68e2009-10-06 11:31:08 -0700384 if (ret >= 0)
385 ret = read;
386 dout("striped_read returns %d\n", ret);
387 return ret;
388}
389
390/*
391 * Completely synchronous read and write methods. Direct from __user
392 * buffer to osd, or directly to user pages (if O_DIRECT).
393 *
394 * If the read spans object boundary, just do multiple reads.
395 */
396static ssize_t ceph_sync_read(struct file *file, char __user *data,
Sage Weil6a026582010-02-09 14:04:02 -0800397 unsigned len, loff_t *poff, int *checkeof)
Sage Weil124e68e2009-10-06 11:31:08 -0700398{
399 struct inode *inode = file->f_dentry->d_inode;
400 struct page **pages;
401 u64 off = *poff;
Henry C Changab226e22010-12-15 20:41:54 -0800402 int num_pages, ret;
Sage Weil124e68e2009-10-06 11:31:08 -0700403
404 dout("sync_read on file %p %llu~%u %s\n", file, off, len,
405 (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
406
Henry C Changab226e22010-12-15 20:41:54 -0800407 if (file->f_flags & O_DIRECT) {
408 num_pages = calc_pages_for((unsigned long)data, len);
Henry C Changb6aa5902010-12-15 20:45:41 -0800409 pages = ceph_get_direct_page_vector(data, num_pages, true);
Henry C Changab226e22010-12-15 20:41:54 -0800410 } else {
411 num_pages = calc_pages_for(off, len);
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700412 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
Henry C Changab226e22010-12-15 20:41:54 -0800413 }
Sage Weil124e68e2009-10-06 11:31:08 -0700414 if (IS_ERR(pages))
415 return PTR_ERR(pages);
416
Sage Weile98b6fe2010-11-09 12:24:53 -0800417 /*
418 * flush any page cache pages in this range. this
419 * will make concurrent normal and sync io slow,
420 * but it will at least behave sensibly when they are
421 * in sequence.
422 */
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800423 ret = filemap_write_and_wait(inode->i_mapping);
424 if (ret < 0)
425 goto done;
426
Sage Weilb7495fc2010-11-09 12:43:12 -0800427 ret = striped_read(inode, off, len, pages, num_pages, checkeof,
Henry C Changab226e22010-12-15 20:41:54 -0800428 file->f_flags & O_DIRECT,
429 (unsigned long)data & ~PAGE_MASK);
Sage Weil124e68e2009-10-06 11:31:08 -0700430
431 if (ret >= 0 && (file->f_flags & O_DIRECT) == 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700432 ret = ceph_copy_page_vector_to_user(pages, data, off, ret);
Sage Weil124e68e2009-10-06 11:31:08 -0700433 if (ret >= 0)
434 *poff = off + ret;
435
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800436done:
Sage Weil124e68e2009-10-06 11:31:08 -0700437 if (file->f_flags & O_DIRECT)
Henry C Changb6aa5902010-12-15 20:45:41 -0800438 ceph_put_page_vector(pages, num_pages, true);
Sage Weil124e68e2009-10-06 11:31:08 -0700439 else
440 ceph_release_page_vector(pages, num_pages);
441 dout("sync_read result %d\n", ret);
442 return ret;
443}
444
445/*
446 * Write commit callback, called if we requested both an ACK and
447 * ONDISK commit reply from the OSD.
448 */
449static void sync_write_commit(struct ceph_osd_request *req,
450 struct ceph_msg *msg)
451{
452 struct ceph_inode_info *ci = ceph_inode(req->r_inode);
453
454 dout("sync_write_commit %p tid %llu\n", req, req->r_tid);
455 spin_lock(&ci->i_unsafe_lock);
456 list_del_init(&req->r_unsafe_item);
457 spin_unlock(&ci->i_unsafe_lock);
458 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
459}
460
461/*
462 * Synchronous write, straight from __user pointer or user pages (if
463 * O_DIRECT).
464 *
465 * If write spans object boundary, just do multiple writes. (For a
466 * correct atomic write, we should e.g. take write locks on all
467 * objects, rollback on failure, etc.)
468 */
469static ssize_t ceph_sync_write(struct file *file, const char __user *data,
470 size_t left, loff_t *offset)
471{
472 struct inode *inode = file->f_dentry->d_inode;
473 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700474 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700475 struct ceph_osd_request *req;
476 struct page **pages;
477 int num_pages;
478 long long unsigned pos;
479 u64 len;
480 int written = 0;
481 int flags;
482 int do_sync = 0;
483 int check_caps = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -0800484 int page_align, io_align;
Henry C Changab226e22010-12-15 20:41:54 -0800485 unsigned long buf_align;
Sage Weil124e68e2009-10-06 11:31:08 -0700486 int ret;
487 struct timespec mtime = CURRENT_TIME;
488
489 if (ceph_snap(file->f_dentry->d_inode) != CEPH_NOSNAP)
490 return -EROFS;
491
492 dout("sync_write on file %p %lld~%u %s\n", file, *offset,
493 (unsigned)left, (file->f_flags & O_DIRECT) ? "O_DIRECT" : "");
494
495 if (file->f_flags & O_APPEND)
496 pos = i_size_read(inode);
497 else
498 pos = *offset;
499
Yehuda Sadeh29065a52010-02-09 11:14:41 -0800500 ret = filemap_write_and_wait_range(inode->i_mapping, pos, pos + left);
501 if (ret < 0)
502 return ret;
503
504 ret = invalidate_inode_pages2_range(inode->i_mapping,
505 pos >> PAGE_CACHE_SHIFT,
506 (pos + left) >> PAGE_CACHE_SHIFT);
507 if (ret < 0)
508 dout("invalidate_inode_pages2_range returned %d\n", ret);
509
Sage Weil124e68e2009-10-06 11:31:08 -0700510 flags = CEPH_OSD_FLAG_ORDERSNAP |
511 CEPH_OSD_FLAG_ONDISK |
512 CEPH_OSD_FLAG_WRITE;
513 if ((file->f_flags & (O_SYNC|O_DIRECT)) == 0)
514 flags |= CEPH_OSD_FLAG_ACK;
515 else
516 do_sync = 1;
517
518 /*
519 * we may need to do multiple writes here if we span an object
520 * boundary. this isn't atomic, unfortunately. :(
521 */
522more:
Sage Weild7f124f2011-06-13 16:22:18 -0700523 io_align = pos & ~PAGE_MASK;
524 buf_align = (unsigned long)data & ~PAGE_MASK;
Sage Weil124e68e2009-10-06 11:31:08 -0700525 len = left;
Henry C Changab226e22010-12-15 20:41:54 -0800526 if (file->f_flags & O_DIRECT) {
Sage Weilb7495fc2010-11-09 12:43:12 -0800527 /* write from beginning of first page, regardless of
528 io alignment */
Henry C Changab226e22010-12-15 20:41:54 -0800529 page_align = (pos - io_align + buf_align) & ~PAGE_MASK;
530 num_pages = calc_pages_for((unsigned long)data, len);
531 } else {
Sage Weilb7495fc2010-11-09 12:43:12 -0800532 page_align = pos & ~PAGE_MASK;
Henry C Changab226e22010-12-15 20:41:54 -0800533 num_pages = calc_pages_for(pos, len);
534 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700535 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
Sage Weil124e68e2009-10-06 11:31:08 -0700536 ceph_vino(inode), pos, &len,
537 CEPH_OSD_OP_WRITE, flags,
538 ci->i_snap_realm->cached_context,
539 do_sync,
540 ci->i_truncate_seq, ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800541 &mtime, false, 2, page_align);
Sage Weil68162822012-09-24 21:01:02 -0700542 if (IS_ERR(req))
543 return PTR_ERR(req);
Sage Weil124e68e2009-10-06 11:31:08 -0700544
Sage Weil124e68e2009-10-06 11:31:08 -0700545 if (file->f_flags & O_DIRECT) {
Henry C Changb6aa5902010-12-15 20:45:41 -0800546 pages = ceph_get_direct_page_vector(data, num_pages, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700547 if (IS_ERR(pages)) {
548 ret = PTR_ERR(pages);
549 goto out;
550 }
551
552 /*
553 * throw out any page cache pages in this range. this
554 * may block.
555 */
Sage Weil213c99e2010-08-03 10:25:11 -0700556 truncate_inode_pages_range(inode->i_mapping, pos,
Sage Weil5c6a2cd2010-04-22 13:48:59 -0700557 (pos+len) | (PAGE_CACHE_SIZE-1));
Sage Weil124e68e2009-10-06 11:31:08 -0700558 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700559 pages = ceph_alloc_page_vector(num_pages, GFP_NOFS);
Sage Weil124e68e2009-10-06 11:31:08 -0700560 if (IS_ERR(pages)) {
561 ret = PTR_ERR(pages);
562 goto out;
563 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700564 ret = ceph_copy_user_to_page_vector(pages, data, pos, len);
Sage Weil124e68e2009-10-06 11:31:08 -0700565 if (ret < 0) {
566 ceph_release_page_vector(pages, num_pages);
567 goto out;
568 }
569
570 if ((file->f_flags & O_SYNC) == 0) {
571 /* get a second commit callback */
572 req->r_safe_callback = sync_write_commit;
573 req->r_own_pages = 1;
574 }
575 }
576 req->r_pages = pages;
577 req->r_num_pages = num_pages;
578 req->r_inode = inode;
579
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700580 ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700581 if (!ret) {
582 if (req->r_safe_callback) {
583 /*
584 * Add to inode unsafe list only after we
585 * start_request so that a tid has been assigned.
586 */
587 spin_lock(&ci->i_unsafe_lock);
Henry C Chang49bcb932011-03-15 09:18:02 +0000588 list_add_tail(&req->r_unsafe_item,
589 &ci->i_unsafe_writes);
Sage Weil124e68e2009-10-06 11:31:08 -0700590 spin_unlock(&ci->i_unsafe_lock);
591 ceph_get_cap_refs(ci, CEPH_CAP_FILE_WR);
592 }
Henry C Chang78a25562011-03-15 09:18:01 +0000593
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700594 ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
Henry C Chang78a25562011-03-15 09:18:01 +0000595 if (ret < 0 && req->r_safe_callback) {
596 spin_lock(&ci->i_unsafe_lock);
597 list_del_init(&req->r_unsafe_item);
598 spin_unlock(&ci->i_unsafe_lock);
599 ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
600 }
Sage Weil124e68e2009-10-06 11:31:08 -0700601 }
602
603 if (file->f_flags & O_DIRECT)
Henry C Changb6aa5902010-12-15 20:45:41 -0800604 ceph_put_page_vector(pages, num_pages, false);
Sage Weil124e68e2009-10-06 11:31:08 -0700605 else if (file->f_flags & O_SYNC)
606 ceph_release_page_vector(pages, num_pages);
607
608out:
609 ceph_osdc_put_request(req);
610 if (ret == 0) {
611 pos += len;
612 written += len;
613 left -= len;
Sage Weild7f124f2011-06-13 16:22:18 -0700614 data += written;
Sage Weil124e68e2009-10-06 11:31:08 -0700615 if (left)
616 goto more;
617
618 ret = written;
619 *offset = pos;
620 if (pos > i_size_read(inode))
621 check_caps = ceph_inode_set_size(inode, pos);
622 if (check_caps)
623 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY,
624 NULL);
625 }
626 return ret;
627}
628
629/*
630 * Wrap generic_file_aio_read with checks for cap bits on the inode.
631 * Atomically grab references, so that those bits are not released
632 * back to the MDS mid-read.
633 *
634 * Hmm, the sync read case isn't actually async... should it be?
635 */
636static ssize_t ceph_aio_read(struct kiocb *iocb, const struct iovec *iov,
637 unsigned long nr_segs, loff_t pos)
638{
639 struct file *filp = iocb->ki_filp;
Sage Weil29625072010-05-27 10:40:43 -0700640 struct ceph_file_info *fi = filp->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700641 loff_t *ppos = &iocb->ki_pos;
642 size_t len = iov->iov_len;
643 struct inode *inode = filp->f_dentry->d_inode;
644 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700645 void __user *base = iov->iov_base;
Sage Weil124e68e2009-10-06 11:31:08 -0700646 ssize_t ret;
Sage Weil29625072010-05-27 10:40:43 -0700647 int want, got = 0;
Sage Weil6a026582010-02-09 14:04:02 -0800648 int checkeof = 0, read = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700649
650 dout("aio_read %p %llx.%llx %llu~%u trying to get caps on %p\n",
651 inode, ceph_vinop(inode), pos, (unsigned)len, inode);
Sage Weil6a026582010-02-09 14:04:02 -0800652again:
Sage Weil124e68e2009-10-06 11:31:08 -0700653 __ceph_do_pending_vmtruncate(inode);
Sage Weil29625072010-05-27 10:40:43 -0700654 if (fi->fmode & CEPH_FILE_MODE_LAZY)
655 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
656 else
657 want = CEPH_CAP_FILE_CACHE;
658 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, &got, -1);
Sage Weil124e68e2009-10-06 11:31:08 -0700659 if (ret < 0)
660 goto out;
661 dout("aio_read %p %llx.%llx %llu~%u got cap refs on %s\n",
662 inode, ceph_vinop(inode), pos, (unsigned)len,
663 ceph_cap_string(got));
664
Sage Weil29625072010-05-27 10:40:43 -0700665 if ((got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0 ||
Sage Weil124e68e2009-10-06 11:31:08 -0700666 (iocb->ki_filp->f_flags & O_DIRECT) ||
Sage Weil4918b6d2011-07-26 11:26:07 -0700667 (inode->i_sb->s_flags & MS_SYNCHRONOUS) ||
668 (fi->flags & CEPH_F_SYNC))
Sage Weil124e68e2009-10-06 11:31:08 -0700669 /* hmm, this isn't really async... */
Sage Weil6a026582010-02-09 14:04:02 -0800670 ret = ceph_sync_read(filp, base, len, ppos, &checkeof);
Sage Weil124e68e2009-10-06 11:31:08 -0700671 else
672 ret = generic_file_aio_read(iocb, iov, nr_segs, pos);
673
674out:
675 dout("aio_read %p %llx.%llx dropping cap refs on %s = %d\n",
676 inode, ceph_vinop(inode), ceph_cap_string(got), (int)ret);
677 ceph_put_cap_refs(ci, got);
Sage Weil6a026582010-02-09 14:04:02 -0800678
679 if (checkeof && ret >= 0) {
680 int statret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
681
682 /* hit EOF or hole? */
683 if (statret == 0 && *ppos < inode->i_size) {
Sage Weilc3cd6282011-06-01 16:08:44 -0700684 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 -0800685 read += ret;
686 base += ret;
687 len -= ret;
688 checkeof = 0;
689 goto again;
690 }
691 }
692 if (ret >= 0)
693 ret += read;
694
Sage Weil124e68e2009-10-06 11:31:08 -0700695 return ret;
696}
697
698/*
699 * Take cap references to avoid releasing caps to MDS mid-write.
700 *
701 * If we are synchronous, and write with an old snap context, the OSD
702 * may return EOLDSNAPC. In that case, retry the write.. _after_
703 * dropping our cap refs and allowing the pending snap to logically
704 * complete _before_ this write occurs.
705 *
706 * If we are near ENOSPC, write synchronously.
707 */
708static ssize_t ceph_aio_write(struct kiocb *iocb, const struct iovec *iov,
709 unsigned long nr_segs, loff_t pos)
710{
711 struct file *file = iocb->ki_filp;
Sage Weil33caad32010-05-26 14:31:27 -0700712 struct ceph_file_info *fi = file->private_data;
Sage Weil124e68e2009-10-06 11:31:08 -0700713 struct inode *inode = file->f_dentry->d_inode;
714 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700715 struct ceph_osd_client *osdc =
716 &ceph_sb_to_client(inode->i_sb)->client->osdc;
Sage Weil124e68e2009-10-06 11:31:08 -0700717 loff_t endoff = pos + iov->iov_len;
Sage Weil22cddde2012-11-05 11:07:23 -0800718 int got = 0;
719 int ret, err, written;
Sage Weil124e68e2009-10-06 11:31:08 -0700720
721 if (ceph_snap(inode) != CEPH_NOSNAP)
722 return -EROFS;
723
724retry_snap:
Sage Weil22cddde2012-11-05 11:07:23 -0800725 written = 0;
Sage Weil124e68e2009-10-06 11:31:08 -0700726 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL))
727 return -ENOSPC;
728 __ceph_do_pending_vmtruncate(inode);
Sage Weil124e68e2009-10-06 11:31:08 -0700729
Sage Weil22cddde2012-11-05 11:07:23 -0800730 /*
731 * try to do a buffered write. if we don't have sufficient
732 * caps, we'll get -EAGAIN from generic_file_aio_write, or a
733 * short write if we only get caps for some pages.
734 */
735 if (!(iocb->ki_filp->f_flags & O_DIRECT) &&
736 !(inode->i_sb->s_flags & MS_SYNCHRONOUS) &&
737 !(fi->flags & CEPH_F_SYNC)) {
Sage Weild8de9ab2011-07-26 11:27:34 -0700738 ret = generic_file_aio_write(iocb, iov, nr_segs, pos);
Sage Weil22cddde2012-11-05 11:07:23 -0800739 if (ret >= 0)
740 written = ret;
741
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))) {
Sage Weil22cddde2012-11-05 11:07:23 -0800745 err = vfs_fsync_range(file, pos, pos + written - 1, 1);
Yehuda Sadeh88d892a2010-02-23 18:16:23 +0000746 if (err < 0)
747 ret = err;
748 }
Sage Weil22cddde2012-11-05 11:07:23 -0800749 if ((ret < 0 && ret != -EAGAIN) || pos + written >= endoff)
750 goto out;
Sage Weil124e68e2009-10-06 11:31:08 -0700751 }
Sage Weild8de9ab2011-07-26 11:27:34 -0700752
Sage Weil22cddde2012-11-05 11:07:23 -0800753 dout("aio_write %p %llx.%llx %llu~%u getting caps. i_size %llu\n",
754 inode, ceph_vinop(inode), pos + written,
755 (unsigned)iov->iov_len - written, inode->i_size);
756 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, 0, &got, endoff);
757 if (ret < 0)
758 goto out;
759
760 dout("aio_write %p %llx.%llx %llu~%u got cap refs on %s\n",
761 inode, ceph_vinop(inode), pos + written,
762 (unsigned)iov->iov_len - written, ceph_cap_string(got));
763 ret = ceph_sync_write(file, iov->iov_base + written,
764 iov->iov_len - written, &iocb->ki_pos);
Sage Weil124e68e2009-10-06 11:31:08 -0700765 if (ret >= 0) {
Sage Weilfca65b42011-05-04 11:33:47 -0700766 int dirty;
Sage Weilbe655592011-11-30 09:47:09 -0800767 spin_lock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700768 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR);
Sage Weilbe655592011-11-30 09:47:09 -0800769 spin_unlock(&ci->i_ceph_lock);
Sage Weilfca65b42011-05-04 11:33:47 -0700770 if (dirty)
771 __mark_inode_dirty(inode, dirty);
Sage Weil124e68e2009-10-06 11:31:08 -0700772 }
Sage Weil124e68e2009-10-06 11:31:08 -0700773 dout("aio_write %p %llx.%llx %llu~%u dropping cap refs on %s\n",
Sage Weil22cddde2012-11-05 11:07:23 -0800774 inode, ceph_vinop(inode), pos + written,
775 (unsigned)iov->iov_len - written, ceph_cap_string(got));
Sage Weil124e68e2009-10-06 11:31:08 -0700776 ceph_put_cap_refs(ci, got);
Sage Weild8de9ab2011-07-26 11:27:34 -0700777out:
Sage Weil124e68e2009-10-06 11:31:08 -0700778 if (ret == -EOLDSNAPC) {
779 dout("aio_write %p %llx.%llx %llu~%u got EOLDSNAPC, retrying\n",
780 inode, ceph_vinop(inode), pos, (unsigned)iov->iov_len);
781 goto retry_snap;
782 }
783
784 return ret;
785}
786
787/*
788 * llseek. be sure to verify file size on SEEK_END.
789 */
790static loff_t ceph_llseek(struct file *file, loff_t offset, int origin)
791{
792 struct inode *inode = file->f_mapping->host;
793 int ret;
794
795 mutex_lock(&inode->i_mutex);
796 __ceph_do_pending_vmtruncate(inode);
Sage Weil6a82c472011-12-13 09:19:26 -0800797
798 if (origin == SEEK_END || origin == SEEK_DATA || origin == SEEK_HOLE) {
Sage Weil124e68e2009-10-06 11:31:08 -0700799 ret = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE);
800 if (ret < 0) {
801 offset = ret;
802 goto out;
803 }
Josef Bacik06222e42011-07-18 13:21:38 -0400804 }
805
806 switch (origin) {
807 case SEEK_END:
Sage Weil124e68e2009-10-06 11:31:08 -0700808 offset += inode->i_size;
809 break;
810 case SEEK_CUR:
811 /*
812 * Here we special-case the lseek(fd, 0, SEEK_CUR)
813 * position-querying operation. Avoid rewriting the "same"
814 * f_pos value back to the file because a concurrent read(),
815 * write() or lseek() might have altered it
816 */
817 if (offset == 0) {
818 offset = file->f_pos;
819 goto out;
820 }
821 offset += file->f_pos;
822 break;
Josef Bacik06222e42011-07-18 13:21:38 -0400823 case SEEK_DATA:
824 if (offset >= inode->i_size) {
825 ret = -ENXIO;
826 goto out;
827 }
828 break;
829 case SEEK_HOLE:
830 if (offset >= inode->i_size) {
831 ret = -ENXIO;
832 goto out;
833 }
834 offset = inode->i_size;
835 break;
Sage Weil124e68e2009-10-06 11:31:08 -0700836 }
837
838 if (offset < 0 || offset > inode->i_sb->s_maxbytes) {
839 offset = -EINVAL;
840 goto out;
841 }
842
843 /* Special lock needed here? */
844 if (offset != file->f_pos) {
845 file->f_pos = offset;
846 file->f_version = 0;
847 }
848
849out:
850 mutex_unlock(&inode->i_mutex);
851 return offset;
852}
853
854const struct file_operations ceph_file_fops = {
855 .open = ceph_open,
856 .release = ceph_release,
857 .llseek = ceph_llseek,
858 .read = do_sync_read,
859 .write = do_sync_write,
860 .aio_read = ceph_aio_read,
861 .aio_write = ceph_aio_write,
862 .mmap = ceph_mmap,
863 .fsync = ceph_fsync,
Greg Farnum40819f62010-08-02 15:34:23 -0700864 .lock = ceph_lock,
865 .flock = ceph_flock,
Sage Weil124e68e2009-10-06 11:31:08 -0700866 .splice_read = generic_file_splice_read,
867 .splice_write = generic_file_splice_write,
868 .unlocked_ioctl = ceph_ioctl,
869 .compat_ioctl = ceph_ioctl,
870};
871