blob: 1e11ed716f853550b4a076a89dc5ddad6f4ea7c3 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil2817b002009-10-06 11:31:08 -07002
3#include <linux/spinlock.h>
4#include <linux/fs_struct.h>
5#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weil2817b002009-10-06 11:31:08 -07007#include <linux/sched.h>
8
9#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include "mds_client.h"
Sage Weil2817b002009-10-06 11:31:08 -070011
12/*
13 * Directory operations: readdir, lookup, create, link, unlink,
14 * rename, etc.
15 */
16
17/*
18 * Ceph MDS operations are specified in terms of a base ino and
19 * relative path. Thus, the client can specify an operation on a
20 * specific inode (e.g., a getattr due to fstat(2)), or as a path
21 * relative to, say, the root directory.
22 *
23 * Normally, we limit ourselves to strict inode ops (no path component)
24 * or dentry operations (a single path component relative to an ino). The
25 * exception to this is open_root_dentry(), which will open the mount
26 * point by name.
27 */
28
29const struct inode_operations ceph_dir_iops;
30const struct file_operations ceph_dir_fops;
Sage Weil52dfb8a2010-08-03 10:25:30 -070031const struct dentry_operations ceph_dentry_ops;
Sage Weil2817b002009-10-06 11:31:08 -070032
33/*
34 * Initialize ceph dentry state.
35 */
36int ceph_init_dentry(struct dentry *dentry)
37{
38 struct ceph_dentry_info *di;
39
40 if (dentry->d_fsdata)
41 return 0;
42
43 if (ceph_snap(dentry->d_parent->d_inode) == CEPH_NOSNAP)
44 dentry->d_op = &ceph_dentry_ops;
45 else if (ceph_snap(dentry->d_parent->d_inode) == CEPH_SNAPDIR)
46 dentry->d_op = &ceph_snapdir_dentry_ops;
47 else
48 dentry->d_op = &ceph_snap_dentry_ops;
49
Sage Weil36e21682010-08-24 16:23:48 -070050 di = kmem_cache_alloc(ceph_dentry_cachep, GFP_NOFS | __GFP_ZERO);
Sage Weil2817b002009-10-06 11:31:08 -070051 if (!di)
52 return -ENOMEM; /* oh well */
53
54 spin_lock(&dentry->d_lock);
Sage Weil8c6efb52010-04-23 11:36:54 -070055 if (dentry->d_fsdata) {
56 /* lost a race */
57 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -070058 goto out_unlock;
Sage Weil8c6efb52010-04-23 11:36:54 -070059 }
Sage Weil2817b002009-10-06 11:31:08 -070060 di->dentry = dentry;
61 di->lease_session = NULL;
62 dentry->d_fsdata = di;
63 dentry->d_time = jiffies;
64 ceph_dentry_lru_add(dentry);
65out_unlock:
66 spin_unlock(&dentry->d_lock);
67 return 0;
68}
69
70
71
72/*
73 * for readdir, we encode the directory frag and offset within that
74 * frag into f_pos.
75 */
76static unsigned fpos_frag(loff_t p)
77{
78 return p >> 32;
79}
80static unsigned fpos_off(loff_t p)
81{
82 return p & 0xffffffff;
83}
84
85/*
86 * When possible, we try to satisfy a readdir by peeking at the
87 * dcache. We make this work by carefully ordering dentries on
88 * d_u.d_child when we initially get results back from the MDS, and
89 * falling back to a "normal" sync readdir if any dentries in the dir
90 * are dropped.
91 *
92 * I_COMPLETE tells indicates we have all dentries in the dir. It is
93 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
94 * the MDS if/when the directory is modified).
95 */
96static int __dcache_readdir(struct file *filp,
97 void *dirent, filldir_t filldir)
98{
Sage Weil2817b002009-10-06 11:31:08 -070099 struct ceph_file_info *fi = filp->private_data;
100 struct dentry *parent = filp->f_dentry;
101 struct inode *dir = parent->d_inode;
102 struct list_head *p;
103 struct dentry *dentry, *last;
104 struct ceph_dentry_info *di;
105 int err = 0;
106
107 /* claim ref on last dentry we returned */
108 last = fi->dentry;
109 fi->dentry = NULL;
110
111 dout("__dcache_readdir %p at %llu (last %p)\n", dir, filp->f_pos,
112 last);
113
114 spin_lock(&dcache_lock);
115
116 /* start at beginning? */
117 if (filp->f_pos == 2 || (last &&
118 filp->f_pos < ceph_dentry(last)->offset)) {
119 if (list_empty(&parent->d_subdirs))
120 goto out_unlock;
121 p = parent->d_subdirs.prev;
122 dout(" initial p %p/%p\n", p->prev, p->next);
123 } else {
124 p = last->d_u.d_child.prev;
125 }
126
127more:
128 dentry = list_entry(p, struct dentry, d_u.d_child);
129 di = ceph_dentry(dentry);
130 while (1) {
Sage Weil1cd39352010-05-03 22:08:02 -0700131 dout(" p %p/%p %s d_subdirs %p/%p\n", p->prev, p->next,
132 d_unhashed(dentry) ? "!hashed" : "hashed",
Sage Weil2817b002009-10-06 11:31:08 -0700133 parent->d_subdirs.prev, parent->d_subdirs.next);
134 if (p == &parent->d_subdirs) {
135 fi->at_end = 1;
136 goto out_unlock;
137 }
138 if (!d_unhashed(dentry) && dentry->d_inode &&
Sage Weil09b8a7d2009-11-11 15:21:27 -0800139 ceph_snap(dentry->d_inode) != CEPH_SNAPDIR &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800140 ceph_ino(dentry->d_inode) != CEPH_INO_CEPH &&
Sage Weil2817b002009-10-06 11:31:08 -0700141 filp->f_pos <= di->offset)
142 break;
143 dout(" skipping %p %.*s at %llu (%llu)%s%s\n", dentry,
144 dentry->d_name.len, dentry->d_name.name, di->offset,
145 filp->f_pos, d_unhashed(dentry) ? " unhashed" : "",
146 !dentry->d_inode ? " null" : "");
147 p = p->prev;
148 dentry = list_entry(p, struct dentry, d_u.d_child);
149 di = ceph_dentry(dentry);
150 }
151
152 atomic_inc(&dentry->d_count);
153 spin_unlock(&dcache_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700154
155 dout(" %llu (%llu) dentry %p %.*s %p\n", di->offset, filp->f_pos,
156 dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
157 filp->f_pos = di->offset;
158 err = filldir(dirent, dentry->d_name.name,
159 dentry->d_name.len, di->offset,
160 dentry->d_inode->i_ino,
161 dentry->d_inode->i_mode >> 12);
162
163 if (last) {
164 if (err < 0) {
165 /* remember our position */
166 fi->dentry = last;
167 fi->next_offset = di->offset;
168 } else {
169 dput(last);
170 }
Sage Weil2817b002009-10-06 11:31:08 -0700171 }
Sage Weilf5b06622010-04-12 14:24:28 -0700172 last = dentry;
173
Sage Weil2817b002009-10-06 11:31:08 -0700174 if (err < 0)
Sage Weilefa4c122010-10-18 14:04:31 -0700175 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700176
Sage Weil2817b002009-10-06 11:31:08 -0700177 filp->f_pos++;
178
179 /* make sure a dentry wasn't dropped while we didn't have dcache_lock */
Sage Weilefa4c122010-10-18 14:04:31 -0700180 if (!ceph_i_test(dir, CEPH_I_COMPLETE)) {
181 dout(" lost I_COMPLETE on %p; falling back to mds\n", dir);
182 err = -EAGAIN;
183 goto out;
184 }
185
186 spin_lock(&dcache_lock);
187 p = p->prev; /* advance to next dentry */
188 goto more;
Sage Weil2817b002009-10-06 11:31:08 -0700189
190out_unlock:
191 spin_unlock(&dcache_lock);
Sage Weilefa4c122010-10-18 14:04:31 -0700192out:
193 if (last)
Sage Weil2817b002009-10-06 11:31:08 -0700194 dput(last);
Sage Weil2817b002009-10-06 11:31:08 -0700195 return err;
196}
197
198/*
199 * make note of the last dentry we read, so we can
200 * continue at the same lexicographical point,
201 * regardless of what dir changes take place on the
202 * server.
203 */
204static int note_last_dentry(struct ceph_file_info *fi, const char *name,
205 int len)
206{
207 kfree(fi->last_name);
208 fi->last_name = kmalloc(len+1, GFP_NOFS);
209 if (!fi->last_name)
210 return -ENOMEM;
211 memcpy(fi->last_name, name, len);
212 fi->last_name[len] = 0;
213 dout("note_last_dentry '%s'\n", fi->last_name);
214 return 0;
215}
216
217static int ceph_readdir(struct file *filp, void *dirent, filldir_t filldir)
218{
219 struct ceph_file_info *fi = filp->private_data;
220 struct inode *inode = filp->f_dentry->d_inode;
221 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700222 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
223 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700224 unsigned frag = fpos_frag(filp->f_pos);
225 int off = fpos_off(filp->f_pos);
226 int err;
227 u32 ftype;
228 struct ceph_mds_reply_info_parsed *rinfo;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700229 const int max_entries = fsc->mount_options->max_readdir;
230 const int max_bytes = fsc->mount_options->max_readdir_bytes;
Sage Weil2817b002009-10-06 11:31:08 -0700231
232 dout("readdir %p filp %p frag %u off %u\n", inode, filp, frag, off);
233 if (fi->at_end)
234 return 0;
235
236 /* always start with . and .. */
237 if (filp->f_pos == 0) {
238 /* note dir version at start of readdir so we can tell
239 * if any dentries get dropped */
240 fi->dir_release_count = ci->i_release_count;
241
242 dout("readdir off 0 -> '.'\n");
243 if (filldir(dirent, ".", 1, ceph_make_fpos(0, 0),
244 inode->i_ino, inode->i_mode >> 12) < 0)
245 return 0;
246 filp->f_pos = 1;
247 off = 1;
248 }
249 if (filp->f_pos == 1) {
250 dout("readdir off 1 -> '..'\n");
251 if (filldir(dirent, "..", 2, ceph_make_fpos(0, 1),
252 filp->f_dentry->d_parent->d_inode->i_ino,
253 inode->i_mode >> 12) < 0)
254 return 0;
255 filp->f_pos = 2;
256 off = 2;
257 }
258
259 /* can we use the dcache? */
260 spin_lock(&inode->i_lock);
261 if ((filp->f_pos == 2 || fi->dentry) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700262 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700263 ceph_snap(inode) != CEPH_SNAPDIR &&
Sage Weil2817b002009-10-06 11:31:08 -0700264 (ci->i_ceph_flags & CEPH_I_COMPLETE) &&
265 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Sage Weilefa4c122010-10-18 14:04:31 -0700266 spin_unlock(&inode->i_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700267 err = __dcache_readdir(filp, dirent, filldir);
Sage Weilefa4c122010-10-18 14:04:31 -0700268 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700269 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700270 } else {
271 spin_unlock(&inode->i_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700272 }
Sage Weil2817b002009-10-06 11:31:08 -0700273 if (fi->dentry) {
274 err = note_last_dentry(fi, fi->dentry->d_name.name,
275 fi->dentry->d_name.len);
276 if (err)
277 return err;
278 dput(fi->dentry);
279 fi->dentry = NULL;
280 }
281
282 /* proceed with a normal readdir */
283
284more:
285 /* do we have the correct frag content buffered? */
286 if (fi->frag != frag || fi->last_readdir == NULL) {
287 struct ceph_mds_request *req;
288 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
289 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
290
291 /* discard old result, if any */
Sage Weil393f6622010-03-10 12:03:32 -0800292 if (fi->last_readdir) {
Sage Weil2817b002009-10-06 11:31:08 -0700293 ceph_mdsc_put_request(fi->last_readdir);
Sage Weil393f6622010-03-10 12:03:32 -0800294 fi->last_readdir = NULL;
295 }
Sage Weil2817b002009-10-06 11:31:08 -0700296
297 /* requery frag tree, as the frag topology may have changed */
298 frag = ceph_choose_frag(ceph_inode(inode), frag, NULL, NULL);
299
300 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
301 ceph_vinop(inode), frag, fi->last_name);
302 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
303 if (IS_ERR(req))
304 return PTR_ERR(req);
305 req->r_inode = igrab(inode);
306 req->r_dentry = dget(filp->f_dentry);
307 /* hints to request -> mds selection code */
308 req->r_direct_mode = USE_AUTH_MDS;
309 req->r_direct_hash = ceph_frag_value(frag);
310 req->r_direct_is_hash = true;
311 req->r_path2 = kstrdup(fi->last_name, GFP_NOFS);
312 req->r_readdir_offset = fi->next_offset;
313 req->r_args.readdir.frag = cpu_to_le32(frag);
314 req->r_args.readdir.max_entries = cpu_to_le32(max_entries);
Sage Weil23804d92010-05-14 13:06:30 -0700315 req->r_args.readdir.max_bytes = cpu_to_le32(max_bytes);
Yehuda Sadehe1e4dd02010-04-13 11:45:56 -0700316 req->r_num_caps = max_entries + 1;
Sage Weil2817b002009-10-06 11:31:08 -0700317 err = ceph_mdsc_do_request(mdsc, NULL, req);
318 if (err < 0) {
319 ceph_mdsc_put_request(req);
320 return err;
321 }
322 dout("readdir got and parsed readdir result=%d"
323 " on frag %x, end=%d, complete=%d\n", err, frag,
324 (int)req->r_reply_info.dir_end,
325 (int)req->r_reply_info.dir_complete);
326
327 if (!req->r_did_prepopulate) {
328 dout("readdir !did_prepopulate");
329 fi->dir_release_count--; /* preclude I_COMPLETE */
330 }
331
332 /* note next offset and last dentry name */
333 fi->offset = fi->next_offset;
334 fi->last_readdir = req;
335
336 if (req->r_reply_info.dir_end) {
337 kfree(fi->last_name);
338 fi->last_name = NULL;
Sage Weilf1f27652010-05-03 21:50:39 -0700339 fi->next_offset = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700340 } else {
341 rinfo = &req->r_reply_info;
342 err = note_last_dentry(fi,
343 rinfo->dir_dname[rinfo->dir_nr-1],
344 rinfo->dir_dname_len[rinfo->dir_nr-1]);
345 if (err)
346 return err;
347 fi->next_offset += rinfo->dir_nr;
348 }
349 }
350
351 rinfo = &fi->last_readdir->r_reply_info;
352 dout("readdir frag %x num %d off %d chunkoff %d\n", frag,
353 rinfo->dir_nr, off, fi->offset);
354 while (off - fi->offset >= 0 && off - fi->offset < rinfo->dir_nr) {
355 u64 pos = ceph_make_fpos(frag, off);
356 struct ceph_mds_reply_inode *in =
357 rinfo->dir_in[off - fi->offset].in;
358 dout("readdir off %d (%d/%d) -> %lld '%.*s' %p\n",
359 off, off - fi->offset, rinfo->dir_nr, pos,
360 rinfo->dir_dname_len[off - fi->offset],
361 rinfo->dir_dname[off - fi->offset], in);
362 BUG_ON(!in);
363 ftype = le32_to_cpu(in->mode) >> 12;
364 if (filldir(dirent,
365 rinfo->dir_dname[off - fi->offset],
366 rinfo->dir_dname_len[off - fi->offset],
367 pos,
368 le64_to_cpu(in->ino),
369 ftype) < 0) {
370 dout("filldir stopping us...\n");
371 return 0;
372 }
373 off++;
374 filp->f_pos = pos + 1;
375 }
376
377 if (fi->last_name) {
378 ceph_mdsc_put_request(fi->last_readdir);
379 fi->last_readdir = NULL;
380 goto more;
381 }
382
383 /* more frags? */
384 if (!ceph_frag_is_rightmost(frag)) {
385 frag = ceph_frag_next(frag);
386 off = 0;
387 filp->f_pos = ceph_make_fpos(frag, off);
388 dout("readdir next frag is %x\n", frag);
389 goto more;
390 }
391 fi->at_end = 1;
392
393 /*
394 * if dir_release_count still matches the dir, no dentries
395 * were released during the whole readdir, and we should have
396 * the complete dir contents in our cache.
397 */
398 spin_lock(&inode->i_lock);
399 if (ci->i_release_count == fi->dir_release_count) {
400 dout(" marking %p complete\n", inode);
401 ci->i_ceph_flags |= CEPH_I_COMPLETE;
402 ci->i_max_offset = filp->f_pos;
403 }
404 spin_unlock(&inode->i_lock);
405
406 dout("readdir %p filp %p done.\n", inode, filp);
407 return 0;
408}
409
410static void reset_readdir(struct ceph_file_info *fi)
411{
412 if (fi->last_readdir) {
413 ceph_mdsc_put_request(fi->last_readdir);
414 fi->last_readdir = NULL;
415 }
416 kfree(fi->last_name);
Sage Weila1629c32010-11-11 15:24:06 -0800417 fi->last_name = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700418 fi->next_offset = 2; /* compensate for . and .. */
419 if (fi->dentry) {
420 dput(fi->dentry);
421 fi->dentry = NULL;
422 }
423 fi->at_end = 0;
424}
425
426static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int origin)
427{
428 struct ceph_file_info *fi = file->private_data;
429 struct inode *inode = file->f_mapping->host;
430 loff_t old_offset = offset;
431 loff_t retval;
432
433 mutex_lock(&inode->i_mutex);
434 switch (origin) {
435 case SEEK_END:
436 offset += inode->i_size + 2; /* FIXME */
437 break;
438 case SEEK_CUR:
439 offset += file->f_pos;
440 }
441 retval = -EINVAL;
442 if (offset >= 0 && offset <= inode->i_sb->s_maxbytes) {
443 if (offset != file->f_pos) {
444 file->f_pos = offset;
445 file->f_version = 0;
446 fi->at_end = 0;
447 }
448 retval = offset;
449
450 /*
451 * discard buffered readdir content on seekdir(0), or
452 * seek to new frag, or seek prior to current chunk.
453 */
454 if (offset == 0 ||
455 fpos_frag(offset) != fpos_frag(old_offset) ||
456 fpos_off(offset) < fi->offset) {
457 dout("dir_llseek dropping %p content\n", file);
458 reset_readdir(fi);
459 }
460
461 /* bump dir_release_count if we did a forward seek */
462 if (offset > old_offset)
463 fi->dir_release_count--;
464 }
465 mutex_unlock(&inode->i_mutex);
466 return retval;
467}
468
469/*
470 * Process result of a lookup/open request.
471 *
472 * Mainly, make sure we return the final req->r_dentry (if it already
473 * existed) in place of the original VFS-provided dentry when they
474 * differ.
475 *
476 * Gracefully handle the case where the MDS replies with -ENOENT and
477 * no trace (which it may do, at its discretion, e.g., if it doesn't
478 * care to issue a lease on the negative dentry).
479 */
480struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
481 struct dentry *dentry, int err)
482{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700483 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
Sage Weil2817b002009-10-06 11:31:08 -0700484 struct inode *parent = dentry->d_parent->d_inode;
485
486 /* .snap dir? */
487 if (err == -ENOENT &&
Sage Weil6b805182009-10-27 11:50:50 -0700488 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700489 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700490 struct inode *inode = ceph_get_snapdir(parent);
491 dout("ENOENT on snapdir %p '%.*s', linking to snapdir %p\n",
492 dentry, dentry->d_name.len, dentry->d_name.name, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700493 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700494 d_add(dentry, inode);
495 err = 0;
496 }
497
498 if (err == -ENOENT) {
499 /* no trace? */
500 err = 0;
501 if (!req->r_reply_info.head->is_dentry) {
502 dout("ENOENT and no trace, dentry %p inode %p\n",
503 dentry, dentry->d_inode);
504 if (dentry->d_inode) {
505 d_drop(dentry);
506 err = -ENOENT;
507 } else {
508 d_add(dentry, NULL);
509 }
510 }
511 }
512 if (err)
513 dentry = ERR_PTR(err);
514 else if (dentry != req->r_dentry)
515 dentry = dget(req->r_dentry); /* we got spliced */
516 else
517 dentry = NULL;
518 return dentry;
519}
520
Sage Weil1d1de9162009-12-02 11:54:25 -0800521static int is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
522{
523 return ceph_ino(inode) == CEPH_INO_ROOT &&
524 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
525}
526
Sage Weil2817b002009-10-06 11:31:08 -0700527/*
528 * Look up a single dir entry. If there is a lookup intent, inform
529 * the MDS so that it gets our 'caps wanted' value in a single op.
530 */
531static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
532 struct nameidata *nd)
533{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700534 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
535 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700536 struct ceph_mds_request *req;
537 int op;
538 int err;
539
540 dout("lookup %p dentry %p '%.*s'\n",
541 dir, dentry, dentry->d_name.len, dentry->d_name.name);
542
543 if (dentry->d_name.len > NAME_MAX)
544 return ERR_PTR(-ENAMETOOLONG);
545
546 err = ceph_init_dentry(dentry);
547 if (err < 0)
548 return ERR_PTR(err);
549
550 /* open (but not create!) intent? */
551 if (nd &&
552 (nd->flags & LOOKUP_OPEN) &&
553 (nd->flags & LOOKUP_CONTINUE) == 0 && /* only open last component */
554 !(nd->intent.open.flags & O_CREAT)) {
555 int mode = nd->intent.open.create_mode & ~current->fs->umask;
556 return ceph_lookup_open(dir, dentry, nd, mode, 1);
557 }
558
559 /* can we conclude ENOENT locally? */
560 if (dentry->d_inode == NULL) {
561 struct ceph_inode_info *ci = ceph_inode(dir);
562 struct ceph_dentry_info *di = ceph_dentry(dentry);
563
564 spin_lock(&dir->i_lock);
565 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
566 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700568 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800569 !is_root_ceph_dentry(dir, dentry) &&
Sage Weil2817b002009-10-06 11:31:08 -0700570 (ci->i_ceph_flags & CEPH_I_COMPLETE) &&
571 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Sage Weil2817b002009-10-06 11:31:08 -0700572 spin_unlock(&dir->i_lock);
573 dout(" dir %p complete, -ENOENT\n", dir);
574 d_add(dentry, NULL);
575 di->lease_shared_gen = ci->i_shared_gen;
576 return NULL;
577 }
578 spin_unlock(&dir->i_lock);
579 }
580
581 op = ceph_snap(dir) == CEPH_SNAPDIR ?
582 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
583 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
584 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200585 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700586 req->r_dentry = dget(dentry);
587 req->r_num_caps = 2;
588 /* we only need inode linkage */
589 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
590 req->r_locked_dir = dir;
591 err = ceph_mdsc_do_request(mdsc, NULL, req);
592 dentry = ceph_finish_lookup(req, dentry, err);
593 ceph_mdsc_put_request(req); /* will dput(dentry) */
594 dout("lookup result=%p\n", dentry);
595 return dentry;
596}
597
598/*
599 * If we do a create but get no trace back from the MDS, follow up with
600 * a lookup (the VFS expects us to link up the provided dentry).
601 */
602int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
603{
604 struct dentry *result = ceph_lookup(dir, dentry, NULL);
605
606 if (result && !IS_ERR(result)) {
607 /*
608 * We created the item, then did a lookup, and found
609 * it was already linked to another inode we already
610 * had in our cache (and thus got spliced). Link our
611 * dentry to that inode, but don't hash it, just in
612 * case the VFS wants to dereference it.
613 */
614 BUG_ON(!result->d_inode);
615 d_instantiate(dentry, result->d_inode);
616 return 0;
617 }
618 return PTR_ERR(result);
619}
620
621static int ceph_mknod(struct inode *dir, struct dentry *dentry,
622 int mode, dev_t rdev)
623{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700624 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
625 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700626 struct ceph_mds_request *req;
627 int err;
628
629 if (ceph_snap(dir) != CEPH_NOSNAP)
630 return -EROFS;
631
632 dout("mknod in dir %p dentry %p mode 0%o rdev %d\n",
633 dir, dentry, mode, rdev);
634 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
635 if (IS_ERR(req)) {
636 d_drop(dentry);
637 return PTR_ERR(req);
638 }
639 req->r_dentry = dget(dentry);
640 req->r_num_caps = 2;
641 req->r_locked_dir = dir;
642 req->r_args.mknod.mode = cpu_to_le32(mode);
643 req->r_args.mknod.rdev = cpu_to_le32(rdev);
644 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
645 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
646 err = ceph_mdsc_do_request(mdsc, dir, req);
647 if (!err && !req->r_reply_info.head->is_dentry)
648 err = ceph_handle_notrace_create(dir, dentry);
649 ceph_mdsc_put_request(req);
650 if (err)
651 d_drop(dentry);
652 return err;
653}
654
655static int ceph_create(struct inode *dir, struct dentry *dentry, int mode,
656 struct nameidata *nd)
657{
658 dout("create in dir %p dentry %p name '%.*s'\n",
659 dir, dentry, dentry->d_name.len, dentry->d_name.name);
660
661 if (ceph_snap(dir) != CEPH_NOSNAP)
662 return -EROFS;
663
664 if (nd) {
665 BUG_ON((nd->flags & LOOKUP_OPEN) == 0);
666 dentry = ceph_lookup_open(dir, dentry, nd, mode, 0);
667 /* hrm, what should i do here if we get aliased? */
668 if (IS_ERR(dentry))
669 return PTR_ERR(dentry);
670 return 0;
671 }
672
673 /* fall back to mknod */
674 return ceph_mknod(dir, dentry, (mode & ~S_IFMT) | S_IFREG, 0);
675}
676
677static int ceph_symlink(struct inode *dir, struct dentry *dentry,
678 const char *dest)
679{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700680 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
681 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700682 struct ceph_mds_request *req;
683 int err;
684
685 if (ceph_snap(dir) != CEPH_NOSNAP)
686 return -EROFS;
687
688 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
689 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
690 if (IS_ERR(req)) {
691 d_drop(dentry);
692 return PTR_ERR(req);
693 }
694 req->r_dentry = dget(dentry);
695 req->r_num_caps = 2;
696 req->r_path2 = kstrdup(dest, GFP_NOFS);
697 req->r_locked_dir = dir;
698 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
699 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
700 err = ceph_mdsc_do_request(mdsc, dir, req);
701 if (!err && !req->r_reply_info.head->is_dentry)
702 err = ceph_handle_notrace_create(dir, dentry);
703 ceph_mdsc_put_request(req);
704 if (err)
705 d_drop(dentry);
706 return err;
707}
708
709static int ceph_mkdir(struct inode *dir, struct dentry *dentry, int mode)
710{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700711 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
712 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700713 struct ceph_mds_request *req;
714 int err = -EROFS;
715 int op;
716
717 if (ceph_snap(dir) == CEPH_SNAPDIR) {
718 /* mkdir .snap/foo is a MKSNAP */
719 op = CEPH_MDS_OP_MKSNAP;
720 dout("mksnap dir %p snap '%.*s' dn %p\n", dir,
721 dentry->d_name.len, dentry->d_name.name, dentry);
722 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
723 dout("mkdir dir %p dn %p mode 0%o\n", dir, dentry, mode);
724 op = CEPH_MDS_OP_MKDIR;
725 } else {
726 goto out;
727 }
728 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
729 if (IS_ERR(req)) {
730 err = PTR_ERR(req);
731 goto out;
732 }
733
734 req->r_dentry = dget(dentry);
735 req->r_num_caps = 2;
736 req->r_locked_dir = dir;
737 req->r_args.mkdir.mode = cpu_to_le32(mode);
738 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
739 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
740 err = ceph_mdsc_do_request(mdsc, dir, req);
741 if (!err && !req->r_reply_info.head->is_dentry)
742 err = ceph_handle_notrace_create(dir, dentry);
743 ceph_mdsc_put_request(req);
744out:
745 if (err < 0)
746 d_drop(dentry);
747 return err;
748}
749
750static int ceph_link(struct dentry *old_dentry, struct inode *dir,
751 struct dentry *dentry)
752{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700753 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
754 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700755 struct ceph_mds_request *req;
756 int err;
757
758 if (ceph_snap(dir) != CEPH_NOSNAP)
759 return -EROFS;
760
761 dout("link in dir %p old_dentry %p dentry %p\n", dir,
762 old_dentry, dentry);
763 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
764 if (IS_ERR(req)) {
765 d_drop(dentry);
766 return PTR_ERR(req);
767 }
768 req->r_dentry = dget(dentry);
769 req->r_num_caps = 2;
770 req->r_old_dentry = dget(old_dentry); /* or inode? hrm. */
771 req->r_locked_dir = dir;
772 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
773 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
774 err = ceph_mdsc_do_request(mdsc, dir, req);
775 if (err)
776 d_drop(dentry);
777 else if (!req->r_reply_info.head->is_dentry)
778 d_instantiate(dentry, igrab(old_dentry->d_inode));
779 ceph_mdsc_put_request(req);
780 return err;
781}
782
783/*
784 * For a soon-to-be unlinked file, drop the AUTH_RDCACHE caps. If it
785 * looks like the link count will hit 0, drop any other caps (other
786 * than PIN) we don't specifically want (due to the file still being
787 * open).
788 */
789static int drop_caps_for_unlink(struct inode *inode)
790{
791 struct ceph_inode_info *ci = ceph_inode(inode);
792 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
793
794 spin_lock(&inode->i_lock);
795 if (inode->i_nlink == 1) {
796 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
797 ci->i_ceph_flags |= CEPH_I_NODELAY;
798 }
799 spin_unlock(&inode->i_lock);
800 return drop;
801}
802
803/*
804 * rmdir and unlink are differ only by the metadata op code
805 */
806static int ceph_unlink(struct inode *dir, struct dentry *dentry)
807{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700808 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
809 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700810 struct inode *inode = dentry->d_inode;
811 struct ceph_mds_request *req;
812 int err = -EROFS;
813 int op;
814
815 if (ceph_snap(dir) == CEPH_SNAPDIR) {
816 /* rmdir .snap/foo is RMSNAP */
817 dout("rmsnap dir %p '%.*s' dn %p\n", dir, dentry->d_name.len,
818 dentry->d_name.name, dentry);
819 op = CEPH_MDS_OP_RMSNAP;
820 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
821 dout("unlink/rmdir dir %p dn %p inode %p\n",
822 dir, dentry, inode);
823 op = ((dentry->d_inode->i_mode & S_IFMT) == S_IFDIR) ?
824 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
825 } else
826 goto out;
827 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
828 if (IS_ERR(req)) {
829 err = PTR_ERR(req);
830 goto out;
831 }
832 req->r_dentry = dget(dentry);
833 req->r_num_caps = 2;
834 req->r_locked_dir = dir;
835 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
836 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
837 req->r_inode_drop = drop_caps_for_unlink(inode);
838 err = ceph_mdsc_do_request(mdsc, dir, req);
839 if (!err && !req->r_reply_info.head->is_dentry)
840 d_delete(dentry);
841 ceph_mdsc_put_request(req);
842out:
843 return err;
844}
845
846static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
847 struct inode *new_dir, struct dentry *new_dentry)
848{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700849 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
850 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700851 struct ceph_mds_request *req;
852 int err;
853
854 if (ceph_snap(old_dir) != ceph_snap(new_dir))
855 return -EXDEV;
856 if (ceph_snap(old_dir) != CEPH_NOSNAP ||
857 ceph_snap(new_dir) != CEPH_NOSNAP)
858 return -EROFS;
859 dout("rename dir %p dentry %p to dir %p dentry %p\n",
860 old_dir, old_dentry, new_dir, new_dentry);
861 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_RENAME, USE_AUTH_MDS);
862 if (IS_ERR(req))
863 return PTR_ERR(req);
864 req->r_dentry = dget(new_dentry);
865 req->r_num_caps = 2;
866 req->r_old_dentry = dget(old_dentry);
867 req->r_locked_dir = new_dir;
868 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
869 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
870 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
871 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
872 /* release LINK_RDCACHE on source inode (mds will lock it) */
873 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
874 if (new_dentry->d_inode)
875 req->r_inode_drop = drop_caps_for_unlink(new_dentry->d_inode);
876 err = ceph_mdsc_do_request(mdsc, old_dir, req);
877 if (!err && !req->r_reply_info.head->is_dentry) {
878 /*
879 * Normally d_move() is done by fill_trace (called by
880 * do_request, above). If there is no trace, we need
881 * to do it here.
882 */
Sage Weilea1409f2010-04-28 16:12:06 -0700883
884 /* d_move screws up d_subdirs order */
885 ceph_i_clear(new_dir, CEPH_I_COMPLETE);
886
Sage Weil2817b002009-10-06 11:31:08 -0700887 d_move(old_dentry, new_dentry);
Sage Weilea1409f2010-04-28 16:12:06 -0700888
889 /* ensure target dentry is invalidated, despite
890 rehashing bug in vfs_rename_dir */
Sage Weil81a6cf22010-05-14 09:35:38 -0700891 ceph_invalidate_dentry_lease(new_dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700892 }
893 ceph_mdsc_put_request(req);
894 return err;
895}
896
Sage Weil81a6cf22010-05-14 09:35:38 -0700897/*
898 * Ensure a dentry lease will no longer revalidate.
899 */
900void ceph_invalidate_dentry_lease(struct dentry *dentry)
901{
902 spin_lock(&dentry->d_lock);
903 dentry->d_time = jiffies;
904 ceph_dentry(dentry)->lease_shared_gen = 0;
905 spin_unlock(&dentry->d_lock);
906}
Sage Weil2817b002009-10-06 11:31:08 -0700907
908/*
909 * Check if dentry lease is valid. If not, delete the lease. Try to
910 * renew if the least is more than half up.
911 */
912static int dentry_lease_is_valid(struct dentry *dentry)
913{
914 struct ceph_dentry_info *di;
915 struct ceph_mds_session *s;
916 int valid = 0;
917 u32 gen;
918 unsigned long ttl;
919 struct ceph_mds_session *session = NULL;
920 struct inode *dir = NULL;
921 u32 seq = 0;
922
923 spin_lock(&dentry->d_lock);
924 di = ceph_dentry(dentry);
925 if (di && di->lease_session) {
926 s = di->lease_session;
927 spin_lock(&s->s_cap_lock);
928 gen = s->s_cap_gen;
929 ttl = s->s_cap_ttl;
930 spin_unlock(&s->s_cap_lock);
931
932 if (di->lease_gen == gen &&
933 time_before(jiffies, dentry->d_time) &&
934 time_before(jiffies, ttl)) {
935 valid = 1;
936 if (di->lease_renew_after &&
937 time_after(jiffies, di->lease_renew_after)) {
938 /* we should renew */
939 dir = dentry->d_parent->d_inode;
940 session = ceph_get_mds_session(s);
941 seq = di->lease_seq;
942 di->lease_renew_after = 0;
943 di->lease_renew_from = jiffies;
944 }
Sage Weil2817b002009-10-06 11:31:08 -0700945 }
946 }
947 spin_unlock(&dentry->d_lock);
948
949 if (session) {
950 ceph_mdsc_lease_send_msg(session, dir, dentry,
951 CEPH_MDS_LEASE_RENEW, seq);
952 ceph_put_mds_session(session);
953 }
954 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
955 return valid;
956}
957
958/*
959 * Check if directory-wide content lease/cap is valid.
960 */
961static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
962{
963 struct ceph_inode_info *ci = ceph_inode(dir);
964 struct ceph_dentry_info *di = ceph_dentry(dentry);
965 int valid = 0;
966
967 spin_lock(&dir->i_lock);
968 if (ci->i_shared_gen == di->lease_shared_gen)
969 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
970 spin_unlock(&dir->i_lock);
971 dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
972 dir, (unsigned)ci->i_shared_gen, dentry,
973 (unsigned)di->lease_shared_gen, valid);
974 return valid;
975}
976
977/*
978 * Check if cached dentry can be trusted.
979 */
980static int ceph_d_revalidate(struct dentry *dentry, struct nameidata *nd)
981{
982 struct inode *dir = dentry->d_parent->d_inode;
983
Sage Weil1cd39352010-05-03 22:08:02 -0700984 dout("d_revalidate %p '%.*s' inode %p offset %lld\n", dentry,
985 dentry->d_name.len, dentry->d_name.name, dentry->d_inode,
986 ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -0700987
988 /* always trust cached snapped dentries, snapdir dentry */
989 if (ceph_snap(dir) != CEPH_NOSNAP) {
990 dout("d_revalidate %p '%.*s' inode %p is SNAPPED\n", dentry,
991 dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
992 goto out_touch;
993 }
994 if (dentry->d_inode && ceph_snap(dentry->d_inode) == CEPH_SNAPDIR)
995 goto out_touch;
996
997 if (dentry_lease_is_valid(dentry) ||
998 dir_lease_is_valid(dir, dentry))
999 goto out_touch;
1000
1001 dout("d_revalidate %p invalid\n", dentry);
1002 d_drop(dentry);
1003 return 0;
1004out_touch:
1005 ceph_dentry_lru_touch(dentry);
1006 return 1;
1007}
1008
1009/*
1010 * When a dentry is released, clear the dir I_COMPLETE if it was part
Sage Weil252af522010-07-22 13:49:08 -07001011 * of the current dir gen or if this is in the snapshot namespace.
Sage Weil2817b002009-10-06 11:31:08 -07001012 */
1013static void ceph_dentry_release(struct dentry *dentry)
1014{
1015 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weilca04d9c2010-08-26 16:12:01 -07001016 struct inode *parent_inode = NULL;
1017 u64 snapid = CEPH_NOSNAP;
Sage Weil2817b002009-10-06 11:31:08 -07001018
Sage Weilca04d9c2010-08-26 16:12:01 -07001019 if (!IS_ROOT(dentry)) {
1020 parent_inode = dentry->d_parent->d_inode;
1021 if (parent_inode)
1022 snapid = ceph_snap(parent_inode);
1023 }
Sage Weil252af522010-07-22 13:49:08 -07001024 dout("dentry_release %p parent %p\n", dentry, parent_inode);
Sage Weil252af522010-07-22 13:49:08 -07001025 if (parent_inode && snapid != CEPH_SNAPDIR) {
Sage Weil2817b002009-10-06 11:31:08 -07001026 struct ceph_inode_info *ci = ceph_inode(parent_inode);
1027
1028 spin_lock(&parent_inode->i_lock);
Sage Weil252af522010-07-22 13:49:08 -07001029 if (ci->i_shared_gen == di->lease_shared_gen ||
1030 snapid <= CEPH_MAXSNAP) {
Sage Weil2817b002009-10-06 11:31:08 -07001031 dout(" clearing %p complete (d_release)\n",
1032 parent_inode);
1033 ci->i_ceph_flags &= ~CEPH_I_COMPLETE;
1034 ci->i_release_count++;
1035 }
1036 spin_unlock(&parent_inode->i_lock);
1037 }
1038 if (di) {
1039 ceph_dentry_lru_del(dentry);
1040 if (di->lease_session)
1041 ceph_put_mds_session(di->lease_session);
1042 kmem_cache_free(ceph_dentry_cachep, di);
1043 dentry->d_fsdata = NULL;
1044 }
1045}
1046
1047static int ceph_snapdir_d_revalidate(struct dentry *dentry,
1048 struct nameidata *nd)
1049{
1050 /*
1051 * Eventually, we'll want to revalidate snapped metadata
1052 * too... probably...
1053 */
1054 return 1;
1055}
1056
1057
1058
1059/*
1060 * read() on a dir. This weird interface hack only works if mounted
1061 * with '-o dirstat'.
1062 */
1063static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1064 loff_t *ppos)
1065{
1066 struct ceph_file_info *cf = file->private_data;
1067 struct inode *inode = file->f_dentry->d_inode;
1068 struct ceph_inode_info *ci = ceph_inode(inode);
1069 int left;
1070
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001071 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001072 return -EISDIR;
1073
1074 if (!cf->dir_info) {
1075 cf->dir_info = kmalloc(1024, GFP_NOFS);
1076 if (!cf->dir_info)
1077 return -ENOMEM;
1078 cf->dir_info_len =
1079 sprintf(cf->dir_info,
1080 "entries: %20lld\n"
1081 " files: %20lld\n"
1082 " subdirs: %20lld\n"
1083 "rentries: %20lld\n"
1084 " rfiles: %20lld\n"
1085 " rsubdirs: %20lld\n"
1086 "rbytes: %20lld\n"
1087 "rctime: %10ld.%09ld\n",
1088 ci->i_files + ci->i_subdirs,
1089 ci->i_files,
1090 ci->i_subdirs,
1091 ci->i_rfiles + ci->i_rsubdirs,
1092 ci->i_rfiles,
1093 ci->i_rsubdirs,
1094 ci->i_rbytes,
1095 (long)ci->i_rctime.tv_sec,
1096 (long)ci->i_rctime.tv_nsec);
1097 }
1098
1099 if (*ppos >= cf->dir_info_len)
1100 return 0;
1101 size = min_t(unsigned, size, cf->dir_info_len-*ppos);
1102 left = copy_to_user(buf, cf->dir_info + *ppos, size);
1103 if (left == size)
1104 return -EFAULT;
1105 *ppos += (size - left);
1106 return size - left;
1107}
1108
1109/*
1110 * an fsync() on a dir will wait for any uncommitted directory
1111 * operations to commit.
1112 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001113static int ceph_dir_fsync(struct file *file, int datasync)
Sage Weil2817b002009-10-06 11:31:08 -07001114{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001115 struct inode *inode = file->f_path.dentry->d_inode;
Sage Weil2817b002009-10-06 11:31:08 -07001116 struct ceph_inode_info *ci = ceph_inode(inode);
1117 struct list_head *head = &ci->i_unsafe_dirops;
1118 struct ceph_mds_request *req;
1119 u64 last_tid;
1120 int ret = 0;
1121
1122 dout("dir_fsync %p\n", inode);
1123 spin_lock(&ci->i_unsafe_lock);
1124 if (list_empty(head))
1125 goto out;
1126
1127 req = list_entry(head->prev,
1128 struct ceph_mds_request, r_unsafe_dir_item);
1129 last_tid = req->r_tid;
1130
1131 do {
1132 ceph_mdsc_get_request(req);
1133 spin_unlock(&ci->i_unsafe_lock);
1134 dout("dir_fsync %p wait on tid %llu (until %llu)\n",
1135 inode, req->r_tid, last_tid);
1136 if (req->r_timeout) {
1137 ret = wait_for_completion_timeout(
1138 &req->r_safe_completion, req->r_timeout);
1139 if (ret > 0)
1140 ret = 0;
1141 else if (ret == 0)
1142 ret = -EIO; /* timed out */
1143 } else {
1144 wait_for_completion(&req->r_safe_completion);
1145 }
1146 spin_lock(&ci->i_unsafe_lock);
1147 ceph_mdsc_put_request(req);
1148
1149 if (ret || list_empty(head))
1150 break;
1151 req = list_entry(head->next,
1152 struct ceph_mds_request, r_unsafe_dir_item);
1153 } while (req->r_tid < last_tid);
1154out:
1155 spin_unlock(&ci->i_unsafe_lock);
1156 return ret;
1157}
1158
1159/*
1160 * We maintain a private dentry LRU.
1161 *
1162 * FIXME: this needs to be changed to a per-mds lru to be useful.
1163 */
1164void ceph_dentry_lru_add(struct dentry *dn)
1165{
1166 struct ceph_dentry_info *di = ceph_dentry(dn);
1167 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001168
Sage Weil04a419f2009-12-23 09:30:21 -08001169 dout("dentry_lru_add %p %p '%.*s'\n", di, dn,
1170 dn->d_name.len, dn->d_name.name);
Sage Weil2817b002009-10-06 11:31:08 -07001171 if (di) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001172 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001173 spin_lock(&mdsc->dentry_lru_lock);
1174 list_add_tail(&di->lru, &mdsc->dentry_lru);
1175 mdsc->num_dentry++;
1176 spin_unlock(&mdsc->dentry_lru_lock);
1177 }
1178}
1179
1180void ceph_dentry_lru_touch(struct dentry *dn)
1181{
1182 struct ceph_dentry_info *di = ceph_dentry(dn);
1183 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001184
Sage Weil1cd39352010-05-03 22:08:02 -07001185 dout("dentry_lru_touch %p %p '%.*s' (offset %lld)\n", di, dn,
1186 dn->d_name.len, dn->d_name.name, di->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001187 if (di) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001188 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001189 spin_lock(&mdsc->dentry_lru_lock);
1190 list_move_tail(&di->lru, &mdsc->dentry_lru);
1191 spin_unlock(&mdsc->dentry_lru_lock);
1192 }
1193}
1194
1195void ceph_dentry_lru_del(struct dentry *dn)
1196{
1197 struct ceph_dentry_info *di = ceph_dentry(dn);
1198 struct ceph_mds_client *mdsc;
1199
Sage Weil04a419f2009-12-23 09:30:21 -08001200 dout("dentry_lru_del %p %p '%.*s'\n", di, dn,
1201 dn->d_name.len, dn->d_name.name);
Sage Weil2817b002009-10-06 11:31:08 -07001202 if (di) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001203 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001204 spin_lock(&mdsc->dentry_lru_lock);
1205 list_del_init(&di->lru);
1206 mdsc->num_dentry--;
1207 spin_unlock(&mdsc->dentry_lru_lock);
1208 }
1209}
1210
1211const struct file_operations ceph_dir_fops = {
1212 .read = ceph_read_dir,
1213 .readdir = ceph_readdir,
1214 .llseek = ceph_dir_llseek,
1215 .open = ceph_open,
1216 .release = ceph_release,
1217 .unlocked_ioctl = ceph_ioctl,
1218 .fsync = ceph_dir_fsync,
1219};
1220
1221const struct inode_operations ceph_dir_iops = {
1222 .lookup = ceph_lookup,
1223 .permission = ceph_permission,
1224 .getattr = ceph_getattr,
1225 .setattr = ceph_setattr,
1226 .setxattr = ceph_setxattr,
1227 .getxattr = ceph_getxattr,
1228 .listxattr = ceph_listxattr,
1229 .removexattr = ceph_removexattr,
1230 .mknod = ceph_mknod,
1231 .symlink = ceph_symlink,
1232 .mkdir = ceph_mkdir,
1233 .link = ceph_link,
1234 .unlink = ceph_unlink,
1235 .rmdir = ceph_unlink,
1236 .rename = ceph_rename,
1237 .create = ceph_create,
1238};
1239
Sage Weil52dfb8a2010-08-03 10:25:30 -07001240const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001241 .d_revalidate = ceph_d_revalidate,
1242 .d_release = ceph_dentry_release,
1243};
1244
Sage Weil52dfb8a2010-08-03 10:25:30 -07001245const struct dentry_operations ceph_snapdir_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001246 .d_revalidate = ceph_snapdir_d_revalidate,
Sage Weil252af522010-07-22 13:49:08 -07001247 .d_release = ceph_dentry_release,
Sage Weil2817b002009-10-06 11:31:08 -07001248};
1249
Sage Weil52dfb8a2010-08-03 10:25:30 -07001250const struct dentry_operations ceph_snap_dentry_ops = {
Sage Weil252af522010-07-22 13:49:08 -07001251 .d_release = ceph_dentry_release,
Sage Weil2817b002009-10-06 11:31:08 -07001252};