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