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