1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/spinlock.h>
5 #include <linux/namei.h>
6 #include <linux/slab.h>
7 #include <linux/sched.h>
8 #include <linux/xattr.h>
11 #include "mds_client.h"
14 * Directory operations: readdir, lookup, create, link, unlink,
19 * Ceph MDS operations are specified in terms of a base ino and
20 * relative path. Thus, the client can specify an operation on a
21 * specific inode (e.g., a getattr due to fstat(2)), or as a path
22 * relative to, say, the root directory.
24 * Normally, we limit ourselves to strict inode ops (no path component)
25 * or dentry operations (a single path component relative to an ino). The
26 * exception to this is open_root_dentry(), which will open the mount
30 const struct dentry_operations ceph_dentry_ops;
32 static bool __dentry_lease_is_valid(struct ceph_dentry_info *di);
33 static int __dir_lease_try_check(const struct dentry *dentry);
36 * Initialize ceph dentry state.
38 static int ceph_d_init(struct dentry *dentry)
40 struct ceph_dentry_info *di;
42 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
44 return -ENOMEM; /* oh well */
47 di->lease_session = NULL;
49 dentry->d_fsdata = di;
50 INIT_LIST_HEAD(&di->lease_list);
55 * for f_pos for readdir:
57 * (0xff << 52) | ((24 bits hash) << 28) |
58 * (the nth entry has hash collision);
60 * ((frag value) << 28) | (the nth entry in frag);
62 #define OFFSET_BITS 28
63 #define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
64 #define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
65 loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
67 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
73 static bool is_hash_order(loff_t p)
75 return (p & HASH_ORDER) == HASH_ORDER;
78 static unsigned fpos_frag(loff_t p)
80 return p >> OFFSET_BITS;
83 static unsigned fpos_hash(loff_t p)
85 return ceph_frag_value(fpos_frag(p));
88 static unsigned fpos_off(loff_t p)
90 return p & OFFSET_MASK;
93 static int fpos_cmp(loff_t l, loff_t r)
95 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
98 return (int)(fpos_off(l) - fpos_off(r));
102 * make note of the last dentry we read, so we can
103 * continue at the same lexicographical point,
104 * regardless of what dir changes take place on the
107 static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
108 int len, unsigned next_offset)
110 char *buf = kmalloc(len+1, GFP_KERNEL);
113 kfree(dfi->last_name);
114 dfi->last_name = buf;
115 memcpy(dfi->last_name, name, len);
116 dfi->last_name[len] = 0;
117 dfi->next_offset = next_offset;
118 dout("note_last_dentry '%s'\n", dfi->last_name);
123 static struct dentry *
124 __dcache_find_get_entry(struct dentry *parent, u64 idx,
125 struct ceph_readdir_cache_control *cache_ctl)
127 struct inode *dir = d_inode(parent);
128 struct dentry *dentry;
129 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
130 loff_t ptr_pos = idx * sizeof(struct dentry *);
131 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
133 if (ptr_pos >= i_size_read(dir))
136 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
137 ceph_readdir_cache_release(cache_ctl);
138 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
139 if (!cache_ctl->page) {
140 dout(" page %lu not found\n", ptr_pgoff);
141 return ERR_PTR(-EAGAIN);
143 /* reading/filling the cache are serialized by
144 i_mutex, no need to use page lock */
145 unlock_page(cache_ctl->page);
146 cache_ctl->dentries = kmap(cache_ctl->page);
149 cache_ctl->index = idx & idx_mask;
152 spin_lock(&parent->d_lock);
153 /* check i_size again here, because empty directory can be
154 * marked as complete while not holding the i_mutex. */
155 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
156 dentry = cache_ctl->dentries[cache_ctl->index];
159 spin_unlock(&parent->d_lock);
160 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
163 return dentry ? : ERR_PTR(-EAGAIN);
167 * When possible, we try to satisfy a readdir by peeking at the
168 * dcache. We make this work by carefully ordering dentries on
169 * d_child when we initially get results back from the MDS, and
170 * falling back to a "normal" sync readdir if any dentries in the dir
173 * Complete dir indicates that we have all dentries in the dir. It is
174 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
175 * the MDS if/when the directory is modified).
177 static int __dcache_readdir(struct file *file, struct dir_context *ctx,
180 struct ceph_dir_file_info *dfi = file->private_data;
181 struct dentry *parent = file->f_path.dentry;
182 struct inode *dir = d_inode(parent);
183 struct dentry *dentry, *last = NULL;
184 struct ceph_dentry_info *di;
185 struct ceph_readdir_cache_control cache_ctl = {};
189 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)shared_gen, ctx->pos);
191 /* search start position */
193 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
195 u64 step = count >> 1;
196 dentry = __dcache_find_get_entry(parent, idx + step,
199 /* use linar search */
203 if (IS_ERR(dentry)) {
204 err = PTR_ERR(dentry);
207 di = ceph_dentry(dentry);
208 spin_lock(&dentry->d_lock);
209 if (fpos_cmp(di->offset, ctx->pos) < 0) {
215 spin_unlock(&dentry->d_lock);
219 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
224 bool emit_dentry = false;
225 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
227 dfi->file_info.flags |= CEPH_F_ATEND;
231 if (IS_ERR(dentry)) {
232 err = PTR_ERR(dentry);
236 spin_lock(&dentry->d_lock);
237 di = ceph_dentry(dentry);
238 if (d_unhashed(dentry) ||
239 d_really_is_negative(dentry) ||
240 di->lease_shared_gen != shared_gen) {
241 spin_unlock(&dentry->d_lock);
246 if (fpos_cmp(ctx->pos, di->offset) <= 0) {
247 __ceph_dentry_dir_lease_touch(di);
250 spin_unlock(&dentry->d_lock);
253 dout(" %llx dentry %p %pd %p\n", di->offset,
254 dentry, dentry, d_inode(dentry));
255 ctx->pos = di->offset;
256 if (!dir_emit(ctx, dentry->d_name.name,
258 ceph_translate_ino(dentry->d_sb,
259 d_inode(dentry)->i_ino),
260 d_inode(dentry)->i_mode >> 12)) {
275 ceph_readdir_cache_release(&cache_ctl);
278 di = ceph_dentry(last);
279 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
280 fpos_off(di->offset) + 1);
284 /* last_name no longer match cache index */
285 if (dfi->readdir_cache_idx >= 0) {
286 dfi->readdir_cache_idx = -1;
287 dfi->dir_release_count = 0;
293 static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
295 if (!dfi->last_readdir)
297 if (is_hash_order(pos))
298 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
300 return dfi->frag != fpos_frag(pos);
303 static int ceph_readdir(struct file *file, struct dir_context *ctx)
305 struct ceph_dir_file_info *dfi = file->private_data;
306 struct inode *inode = file_inode(file);
307 struct ceph_inode_info *ci = ceph_inode(inode);
308 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
309 struct ceph_mds_client *mdsc = fsc->mdsc;
313 struct ceph_mds_reply_info_parsed *rinfo;
315 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
316 if (dfi->file_info.flags & CEPH_F_ATEND)
319 /* always start with . and .. */
321 dout("readdir off 0 -> '.'\n");
322 if (!dir_emit(ctx, ".", 1,
323 ceph_translate_ino(inode->i_sb, inode->i_ino),
324 inode->i_mode >> 12))
329 ino_t ino = parent_ino(file->f_path.dentry);
330 dout("readdir off 1 -> '..'\n");
331 if (!dir_emit(ctx, "..", 2,
332 ceph_translate_ino(inode->i_sb, ino),
333 inode->i_mode >> 12))
338 /* can we use the dcache? */
339 spin_lock(&ci->i_ceph_lock);
340 if (ceph_test_mount_opt(fsc, DCACHE) &&
341 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
342 ceph_snap(inode) != CEPH_SNAPDIR &&
343 __ceph_dir_is_complete_ordered(ci) &&
344 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
345 int shared_gen = atomic_read(&ci->i_shared_gen);
346 spin_unlock(&ci->i_ceph_lock);
347 err = __dcache_readdir(file, ctx, shared_gen);
351 spin_unlock(&ci->i_ceph_lock);
354 /* proceed with a normal readdir */
356 /* do we have the correct frag content buffered? */
357 if (need_send_readdir(dfi, ctx->pos)) {
358 struct ceph_mds_request *req;
359 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
360 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
362 /* discard old result, if any */
363 if (dfi->last_readdir) {
364 ceph_mdsc_put_request(dfi->last_readdir);
365 dfi->last_readdir = NULL;
368 if (is_hash_order(ctx->pos)) {
369 /* fragtree isn't always accurate. choose frag
370 * based on previous reply when possible. */
371 if (frag == (unsigned)-1)
372 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
375 frag = fpos_frag(ctx->pos);
378 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
379 ceph_vinop(inode), frag, dfi->last_name);
380 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
383 err = ceph_alloc_readdir_reply_buffer(req, inode);
385 ceph_mdsc_put_request(req);
388 /* hints to request -> mds selection code */
389 req->r_direct_mode = USE_AUTH_MDS;
390 if (op == CEPH_MDS_OP_READDIR) {
391 req->r_direct_hash = ceph_frag_value(frag);
392 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
393 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
395 if (dfi->last_name) {
396 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
398 ceph_mdsc_put_request(req);
401 } else if (is_hash_order(ctx->pos)) {
402 req->r_args.readdir.offset_hash =
403 cpu_to_le32(fpos_hash(ctx->pos));
406 req->r_dir_release_cnt = dfi->dir_release_count;
407 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
408 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
409 req->r_readdir_offset = dfi->next_offset;
410 req->r_args.readdir.frag = cpu_to_le32(frag);
411 req->r_args.readdir.flags =
412 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
414 req->r_inode = inode;
416 req->r_dentry = dget(file->f_path.dentry);
417 err = ceph_mdsc_do_request(mdsc, NULL, req);
419 ceph_mdsc_put_request(req);
422 dout("readdir got and parsed readdir result=%d on "
423 "frag %x, end=%d, complete=%d, hash_order=%d\n",
425 (int)req->r_reply_info.dir_end,
426 (int)req->r_reply_info.dir_complete,
427 (int)req->r_reply_info.hash_order);
429 rinfo = &req->r_reply_info;
430 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
431 frag = le32_to_cpu(rinfo->dir_dir->frag);
432 if (!rinfo->hash_order) {
433 dfi->next_offset = req->r_readdir_offset;
434 /* adjust ctx->pos to beginning of frag */
435 ctx->pos = ceph_make_fpos(frag,
442 dfi->last_readdir = req;
444 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
445 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
446 if (dfi->readdir_cache_idx < 0) {
447 /* preclude from marking dir ordered */
448 dfi->dir_ordered_count = 0;
449 } else if (ceph_frag_is_leftmost(frag) &&
450 dfi->next_offset == 2) {
451 /* note dir version at start of readdir so
452 * we can tell if any dentries get dropped */
453 dfi->dir_release_count = req->r_dir_release_cnt;
454 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
457 dout("readdir !did_prepopulate\n");
458 /* disable readdir cache */
459 dfi->readdir_cache_idx = -1;
460 /* preclude from marking dir complete */
461 dfi->dir_release_count = 0;
464 /* note next offset and last dentry name */
465 if (rinfo->dir_nr > 0) {
466 struct ceph_mds_reply_dir_entry *rde =
467 rinfo->dir_entries + (rinfo->dir_nr-1);
468 unsigned next_offset = req->r_reply_info.dir_end ?
469 2 : (fpos_off(rde->offset) + 1);
470 err = note_last_dentry(dfi, rde->name, rde->name_len,
474 } else if (req->r_reply_info.dir_end) {
475 dfi->next_offset = 2;
480 rinfo = &dfi->last_readdir->r_reply_info;
481 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
482 dfi->frag, rinfo->dir_nr, ctx->pos,
483 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
486 /* search start position */
487 if (rinfo->dir_nr > 0) {
488 int step, nr = rinfo->dir_nr;
491 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
499 for (; i < rinfo->dir_nr; i++) {
500 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
501 struct ceph_vino vino;
505 BUG_ON(rde->offset < ctx->pos);
507 ctx->pos = rde->offset;
508 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
509 i, rinfo->dir_nr, ctx->pos,
510 rde->name_len, rde->name, &rde->inode.in);
512 BUG_ON(!rde->inode.in);
513 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
514 vino.ino = le64_to_cpu(rde->inode.in->ino);
515 vino.snap = le64_to_cpu(rde->inode.in->snapid);
516 ino = ceph_vino_to_ino(vino);
518 if (!dir_emit(ctx, rde->name, rde->name_len,
519 ceph_translate_ino(inode->i_sb, ino), ftype)) {
520 dout("filldir stopping us...\n");
526 ceph_mdsc_put_request(dfi->last_readdir);
527 dfi->last_readdir = NULL;
529 if (dfi->next_offset > 2) {
535 if (!ceph_frag_is_rightmost(dfi->frag)) {
536 frag = ceph_frag_next(dfi->frag);
537 if (is_hash_order(ctx->pos)) {
538 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
539 dfi->next_offset, true);
540 if (new_pos > ctx->pos)
544 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
546 kfree(dfi->last_name);
547 dfi->last_name = NULL;
549 dout("readdir next frag is %x\n", frag);
552 dfi->file_info.flags |= CEPH_F_ATEND;
555 * if dir_release_count still matches the dir, no dentries
556 * were released during the whole readdir, and we should have
557 * the complete dir contents in our cache.
559 if (atomic64_read(&ci->i_release_count) ==
560 dfi->dir_release_count) {
561 spin_lock(&ci->i_ceph_lock);
562 if (dfi->dir_ordered_count ==
563 atomic64_read(&ci->i_ordered_count)) {
564 dout(" marking %p complete and ordered\n", inode);
565 /* use i_size to track number of entries in
567 BUG_ON(dfi->readdir_cache_idx < 0);
568 i_size_write(inode, dfi->readdir_cache_idx *
569 sizeof(struct dentry*));
571 dout(" marking %p complete\n", inode);
573 __ceph_dir_set_complete(ci, dfi->dir_release_count,
574 dfi->dir_ordered_count);
575 spin_unlock(&ci->i_ceph_lock);
578 dout("readdir %p file %p done.\n", inode, file);
582 static void reset_readdir(struct ceph_dir_file_info *dfi)
584 if (dfi->last_readdir) {
585 ceph_mdsc_put_request(dfi->last_readdir);
586 dfi->last_readdir = NULL;
588 kfree(dfi->last_name);
589 dfi->last_name = NULL;
590 dfi->dir_release_count = 0;
591 dfi->readdir_cache_idx = -1;
592 dfi->next_offset = 2; /* compensate for . and .. */
593 dfi->file_info.flags &= ~CEPH_F_ATEND;
597 * discard buffered readdir content on seekdir(0), or seek to new frag,
598 * or seek prior to current chunk
600 static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
602 struct ceph_mds_reply_info_parsed *rinfo;
606 if (is_hash_order(new_pos)) {
607 /* no need to reset last_name for a forward seek when
608 * dentries are sotred in hash order */
609 } else if (dfi->frag != fpos_frag(new_pos)) {
612 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
613 if (!rinfo || !rinfo->dir_nr)
615 chunk_offset = rinfo->dir_entries[0].offset;
616 return new_pos < chunk_offset ||
617 is_hash_order(new_pos) != is_hash_order(chunk_offset);
620 static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
622 struct ceph_dir_file_info *dfi = file->private_data;
623 struct inode *inode = file->f_mapping->host;
630 offset += file->f_pos;
634 retval = -EOPNOTSUPP;
640 if (need_reset_readdir(dfi, offset)) {
641 dout("dir_llseek dropping %p content\n", file);
643 } else if (is_hash_order(offset) && offset > file->f_pos) {
644 /* for hash offset, we don't know if a forward seek
645 * is within same frag */
646 dfi->dir_release_count = 0;
647 dfi->readdir_cache_idx = -1;
650 if (offset != file->f_pos) {
651 file->f_pos = offset;
653 dfi->file_info.flags &= ~CEPH_F_ATEND;
663 * Handle lookups for the hidden .snap directory.
665 int ceph_handle_snapdir(struct ceph_mds_request *req,
666 struct dentry *dentry, int err)
668 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
669 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
672 if (err == -ENOENT &&
673 ceph_snap(parent) == CEPH_NOSNAP &&
674 strcmp(dentry->d_name.name,
675 fsc->mount_options->snapdir_name) == 0) {
676 struct inode *inode = ceph_get_snapdir(parent);
677 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
678 dentry, dentry, inode);
679 BUG_ON(!d_unhashed(dentry));
680 d_add(dentry, inode);
687 * Figure out final result of a lookup/open request.
689 * Mainly, make sure we return the final req->r_dentry (if it already
690 * existed) in place of the original VFS-provided dentry when they
693 * Gracefully handle the case where the MDS replies with -ENOENT and
694 * no trace (which it may do, at its discretion, e.g., if it doesn't
695 * care to issue a lease on the negative dentry).
697 struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
698 struct dentry *dentry, int err)
700 if (err == -ENOENT) {
703 if (!req->r_reply_info.head->is_dentry) {
704 dout("ENOENT and no trace, dentry %p inode %p\n",
705 dentry, d_inode(dentry));
706 if (d_really_is_positive(dentry)) {
715 dentry = ERR_PTR(err);
716 else if (dentry != req->r_dentry)
717 dentry = dget(req->r_dentry); /* we got spliced */
723 static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
725 return ceph_ino(inode) == CEPH_INO_ROOT &&
726 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
730 * Look up a single dir entry. If there is a lookup intent, inform
731 * the MDS so that it gets our 'caps wanted' value in a single op.
733 static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
736 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
737 struct ceph_mds_client *mdsc = fsc->mdsc;
738 struct ceph_mds_request *req;
743 dout("lookup %p dentry %p '%pd'\n",
744 dir, dentry, dentry);
746 if (dentry->d_name.len > NAME_MAX)
747 return ERR_PTR(-ENAMETOOLONG);
749 /* can we conclude ENOENT locally? */
750 if (d_really_is_negative(dentry)) {
751 struct ceph_inode_info *ci = ceph_inode(dir);
752 struct ceph_dentry_info *di = ceph_dentry(dentry);
754 spin_lock(&ci->i_ceph_lock);
755 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
756 if (strncmp(dentry->d_name.name,
757 fsc->mount_options->snapdir_name,
758 dentry->d_name.len) &&
759 !is_root_ceph_dentry(dir, dentry) &&
760 ceph_test_mount_opt(fsc, DCACHE) &&
761 __ceph_dir_is_complete(ci) &&
762 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
763 spin_unlock(&ci->i_ceph_lock);
764 dout(" dir %p complete, -ENOENT\n", dir);
766 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
769 spin_unlock(&ci->i_ceph_lock);
772 op = ceph_snap(dir) == CEPH_SNAPDIR ?
773 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
774 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
776 return ERR_CAST(req);
777 req->r_dentry = dget(dentry);
780 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
781 if (ceph_security_xattr_wanted(dir))
782 mask |= CEPH_CAP_XATTR_SHARED;
783 req->r_args.getattr.mask = cpu_to_le32(mask);
786 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
787 err = ceph_mdsc_do_request(mdsc, NULL, req);
788 err = ceph_handle_snapdir(req, dentry, err);
789 dentry = ceph_finish_lookup(req, dentry, err);
790 ceph_mdsc_put_request(req); /* will dput(dentry) */
791 dout("lookup result=%p\n", dentry);
796 * If we do a create but get no trace back from the MDS, follow up with
797 * a lookup (the VFS expects us to link up the provided dentry).
799 int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
801 struct dentry *result = ceph_lookup(dir, dentry, 0);
803 if (result && !IS_ERR(result)) {
805 * We created the item, then did a lookup, and found
806 * it was already linked to another inode we already
807 * had in our cache (and thus got spliced). To not
808 * confuse VFS (especially when inode is a directory),
809 * we don't link our dentry to that inode, return an
812 * This event should be rare and it happens only when
813 * we talk to old MDS. Recent MDS does not send traceless
814 * reply for request that creates new inode.
819 return PTR_ERR(result);
822 static int ceph_mknod(struct inode *dir, struct dentry *dentry,
823 umode_t mode, dev_t rdev)
825 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
826 struct ceph_mds_client *mdsc = fsc->mdsc;
827 struct ceph_mds_request *req;
828 struct ceph_acl_sec_ctx as_ctx = {};
831 if (ceph_snap(dir) != CEPH_NOSNAP)
834 if (ceph_quota_is_max_files_exceeded(dir)) {
839 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
842 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
846 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
847 dir, dentry, mode, rdev);
848 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
853 req->r_dentry = dget(dentry);
856 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
857 req->r_args.mknod.mode = cpu_to_le32(mode);
858 req->r_args.mknod.rdev = cpu_to_le32(rdev);
859 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
860 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
861 if (as_ctx.pagelist) {
862 req->r_pagelist = as_ctx.pagelist;
863 as_ctx.pagelist = NULL;
865 err = ceph_mdsc_do_request(mdsc, dir, req);
866 if (!err && !req->r_reply_info.head->is_dentry)
867 err = ceph_handle_notrace_create(dir, dentry);
868 ceph_mdsc_put_request(req);
871 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
874 ceph_release_acl_sec_ctx(&as_ctx);
878 static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
881 return ceph_mknod(dir, dentry, mode, 0);
884 static int ceph_symlink(struct inode *dir, struct dentry *dentry,
887 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
888 struct ceph_mds_client *mdsc = fsc->mdsc;
889 struct ceph_mds_request *req;
890 struct ceph_acl_sec_ctx as_ctx = {};
893 if (ceph_snap(dir) != CEPH_NOSNAP)
896 if (ceph_quota_is_max_files_exceeded(dir)) {
901 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
905 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
906 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
911 req->r_path2 = kstrdup(dest, GFP_KERNEL);
914 ceph_mdsc_put_request(req);
918 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
919 req->r_dentry = dget(dentry);
921 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
922 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
923 err = ceph_mdsc_do_request(mdsc, dir, req);
924 if (!err && !req->r_reply_info.head->is_dentry)
925 err = ceph_handle_notrace_create(dir, dentry);
926 ceph_mdsc_put_request(req);
930 ceph_release_acl_sec_ctx(&as_ctx);
934 static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
936 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
937 struct ceph_mds_client *mdsc = fsc->mdsc;
938 struct ceph_mds_request *req;
939 struct ceph_acl_sec_ctx as_ctx = {};
943 if (ceph_snap(dir) == CEPH_SNAPDIR) {
944 /* mkdir .snap/foo is a MKSNAP */
945 op = CEPH_MDS_OP_MKSNAP;
946 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
948 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
949 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
950 op = CEPH_MDS_OP_MKDIR;
955 if (op == CEPH_MDS_OP_MKDIR &&
956 ceph_quota_is_max_files_exceeded(dir)) {
962 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
965 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
969 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
975 req->r_dentry = dget(dentry);
978 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
979 req->r_args.mkdir.mode = cpu_to_le32(mode);
980 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
981 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
982 if (as_ctx.pagelist) {
983 req->r_pagelist = as_ctx.pagelist;
984 as_ctx.pagelist = NULL;
986 err = ceph_mdsc_do_request(mdsc, dir, req);
988 !req->r_reply_info.head->is_target &&
989 !req->r_reply_info.head->is_dentry)
990 err = ceph_handle_notrace_create(dir, dentry);
991 ceph_mdsc_put_request(req);
994 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
997 ceph_release_acl_sec_ctx(&as_ctx);
1001 static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1002 struct dentry *dentry)
1004 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1005 struct ceph_mds_client *mdsc = fsc->mdsc;
1006 struct ceph_mds_request *req;
1009 if (ceph_snap(dir) != CEPH_NOSNAP)
1012 dout("link in dir %p old_dentry %p dentry %p\n", dir,
1013 old_dentry, dentry);
1014 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1017 return PTR_ERR(req);
1019 req->r_dentry = dget(dentry);
1020 req->r_num_caps = 2;
1021 req->r_old_dentry = dget(old_dentry);
1022 req->r_parent = dir;
1023 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1024 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1025 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1026 /* release LINK_SHARED on source inode (mds will lock it) */
1027 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1028 err = ceph_mdsc_do_request(mdsc, dir, req);
1031 } else if (!req->r_reply_info.head->is_dentry) {
1032 ihold(d_inode(old_dentry));
1033 d_instantiate(dentry, d_inode(old_dentry));
1035 ceph_mdsc_put_request(req);
1040 * rmdir and unlink are differ only by the metadata op code
1042 static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1044 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1045 struct ceph_mds_client *mdsc = fsc->mdsc;
1046 struct inode *inode = d_inode(dentry);
1047 struct ceph_mds_request *req;
1051 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1052 /* rmdir .snap/foo is RMSNAP */
1053 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
1054 op = CEPH_MDS_OP_RMSNAP;
1055 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1056 dout("unlink/rmdir dir %p dn %p inode %p\n",
1057 dir, dentry, inode);
1058 op = d_is_dir(dentry) ?
1059 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1062 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1067 req->r_dentry = dget(dentry);
1068 req->r_num_caps = 2;
1069 req->r_parent = dir;
1070 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1071 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1072 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1073 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
1074 err = ceph_mdsc_do_request(mdsc, dir, req);
1075 if (!err && !req->r_reply_info.head->is_dentry)
1077 ceph_mdsc_put_request(req);
1082 static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
1083 struct inode *new_dir, struct dentry *new_dentry,
1086 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1087 struct ceph_mds_client *mdsc = fsc->mdsc;
1088 struct ceph_mds_request *req;
1089 int op = CEPH_MDS_OP_RENAME;
1095 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1097 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1098 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1099 op = CEPH_MDS_OP_RENAMESNAP;
1103 /* don't allow cross-quota renames */
1104 if ((old_dir != new_dir) &&
1105 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1108 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1109 old_dir, old_dentry, new_dir, new_dentry);
1110 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1112 return PTR_ERR(req);
1114 req->r_dentry = dget(new_dentry);
1115 req->r_num_caps = 2;
1116 req->r_old_dentry = dget(old_dentry);
1117 req->r_old_dentry_dir = old_dir;
1118 req->r_parent = new_dir;
1119 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1120 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1121 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1122 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1123 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1124 /* release LINK_RDCACHE on source inode (mds will lock it) */
1125 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1126 if (d_really_is_positive(new_dentry)) {
1128 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1130 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1131 if (!err && !req->r_reply_info.head->is_dentry) {
1133 * Normally d_move() is done by fill_trace (called by
1134 * do_request, above). If there is no trace, we need
1137 d_move(old_dentry, new_dentry);
1139 ceph_mdsc_put_request(req);
1144 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1145 * Leases at front of the list will expire first. (Assume all leases have
1148 * Called under dentry->d_lock.
1150 void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1152 struct dentry *dn = di->dentry;
1153 struct ceph_mds_client *mdsc;
1155 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1157 di->flags |= CEPH_DENTRY_LEASE_LIST;
1158 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1159 di->flags |= CEPH_DENTRY_REFERENCED;
1163 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1164 spin_lock(&mdsc->dentry_list_lock);
1165 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1166 spin_unlock(&mdsc->dentry_list_lock);
1169 static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1170 struct ceph_dentry_info *di)
1172 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1175 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1179 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1180 * list if it's not in the list, otherwise set 'referenced' flag.
1182 * Called under dentry->d_lock.
1184 void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1186 struct dentry *dn = di->dentry;
1187 struct ceph_mds_client *mdsc;
1189 dout("dentry_dir_lease_touch %p %p '%pd' (offset %lld)\n",
1190 di, dn, dn, di->offset);
1192 if (!list_empty(&di->lease_list)) {
1193 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1194 /* don't remove dentry from dentry lease list
1195 * if its lease is valid */
1196 if (__dentry_lease_is_valid(di))
1199 di->flags |= CEPH_DENTRY_REFERENCED;
1204 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1205 di->flags |= CEPH_DENTRY_REFERENCED;
1206 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1210 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1211 spin_lock(&mdsc->dentry_list_lock);
1212 __dentry_dir_lease_touch(mdsc, di),
1213 spin_unlock(&mdsc->dentry_list_lock);
1216 static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1218 struct ceph_mds_client *mdsc;
1219 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1221 if (list_empty(&di->lease_list))
1224 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1225 spin_lock(&mdsc->dentry_list_lock);
1226 list_del_init(&di->lease_list);
1227 spin_unlock(&mdsc->dentry_list_lock);
1237 struct ceph_lease_walk_control {
1239 bool expire_dir_lease;
1240 unsigned long nr_to_scan;
1241 unsigned long dir_lease_ttl;
1244 static unsigned long
1245 __dentry_leases_walk(struct ceph_mds_client *mdsc,
1246 struct ceph_lease_walk_control *lwc,
1247 int (*check)(struct dentry*, void*))
1249 struct ceph_dentry_info *di, *tmp;
1250 struct dentry *dentry, *last = NULL;
1251 struct list_head* list;
1253 unsigned long freed = 0;
1256 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1257 spin_lock(&mdsc->dentry_list_lock);
1258 list_for_each_entry_safe(di, tmp, list, lease_list) {
1259 if (!lwc->nr_to_scan)
1263 dentry = di->dentry;
1267 if (!spin_trylock(&dentry->d_lock))
1270 if (__lockref_is_dead(&dentry->d_lockref)) {
1271 list_del_init(&di->lease_list);
1275 ret = check(dentry, lwc);
1277 /* move it into tail of dir lease list */
1278 __dentry_dir_lease_touch(mdsc, di);
1284 di->flags &= ~CEPH_DENTRY_REFERENCED;
1285 if (dentry->d_lockref.count > 0) {
1286 /* update_dentry_lease() will re-add
1287 * it to lease list, or
1288 * ceph_d_delete() will return 1 when
1289 * last reference is dropped */
1290 list_del_init(&di->lease_list);
1292 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1293 list_move_tail(&di->lease_list, &dispose);
1298 spin_unlock(&dentry->d_lock);
1302 spin_unlock(&mdsc->dentry_list_lock);
1304 while (!list_empty(&dispose)) {
1305 di = list_first_entry(&dispose, struct ceph_dentry_info,
1307 dentry = di->dentry;
1308 spin_lock(&dentry->d_lock);
1310 list_del_init(&di->lease_list);
1311 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1312 if (di->flags & CEPH_DENTRY_REFERENCED) {
1313 spin_lock(&mdsc->dentry_list_lock);
1314 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1315 list_add_tail(&di->lease_list,
1316 &mdsc->dentry_leases);
1318 __dentry_dir_lease_touch(mdsc, di);
1320 spin_unlock(&mdsc->dentry_list_lock);
1325 spin_unlock(&dentry->d_lock);
1326 /* ceph_d_delete() does the trick */
1332 static int __dentry_lease_check(struct dentry *dentry, void *arg)
1334 struct ceph_dentry_info *di = ceph_dentry(dentry);
1337 if (__dentry_lease_is_valid(di))
1339 ret = __dir_lease_try_check(dentry);
1347 static int __dir_lease_check(struct dentry *dentry, void *arg)
1349 struct ceph_lease_walk_control *lwc = arg;
1350 struct ceph_dentry_info *di = ceph_dentry(dentry);
1352 int ret = __dir_lease_try_check(dentry);
1356 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1358 /* Move dentry to tail of dir lease list if we don't want
1359 * to delete it. So dentries in the list are checked in a
1360 * round robin manner */
1361 if (!lwc->expire_dir_lease)
1363 if (dentry->d_lockref.count > 0 ||
1364 (di->flags & CEPH_DENTRY_REFERENCED))
1366 /* invalidate dir lease */
1367 di->lease_shared_gen = 0;
1372 int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1374 struct ceph_lease_walk_control lwc;
1375 unsigned long count;
1376 unsigned long freed;
1378 spin_lock(&mdsc->caps_list_lock);
1379 if (mdsc->caps_use_max > 0 &&
1380 mdsc->caps_use_count > mdsc->caps_use_max)
1381 count = mdsc->caps_use_count - mdsc->caps_use_max;
1384 spin_unlock(&mdsc->caps_list_lock);
1386 lwc.dir_lease = false;
1387 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1388 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1389 if (!lwc.nr_to_scan) /* more invalid leases */
1392 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1393 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1395 lwc.dir_lease = true;
1396 lwc.expire_dir_lease = freed < count;
1397 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
1398 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1399 if (!lwc.nr_to_scan) /* more to check */
1402 return freed > 0 ? 1 : 0;
1406 * Ensure a dentry lease will no longer revalidate.
1408 void ceph_invalidate_dentry_lease(struct dentry *dentry)
1410 struct ceph_dentry_info *di = ceph_dentry(dentry);
1411 spin_lock(&dentry->d_lock);
1413 di->lease_shared_gen = 0;
1414 __dentry_lease_unlist(di);
1415 spin_unlock(&dentry->d_lock);
1419 * Check if dentry lease is valid. If not, delete the lease. Try to
1420 * renew if the least is more than half up.
1422 static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1424 struct ceph_mds_session *session;
1429 session = di->lease_session;
1434 spin_lock(&session->s_gen_ttl_lock);
1435 gen = session->s_cap_gen;
1436 ttl = session->s_cap_ttl;
1437 spin_unlock(&session->s_gen_ttl_lock);
1439 if (di->lease_gen == gen &&
1440 time_before(jiffies, ttl) &&
1441 time_before(jiffies, di->time))
1448 static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
1450 struct ceph_dentry_info *di;
1451 struct ceph_mds_session *session = NULL;
1455 spin_lock(&dentry->d_lock);
1456 di = ceph_dentry(dentry);
1457 if (di && __dentry_lease_is_valid(di)) {
1460 if (di->lease_renew_after &&
1461 time_after(jiffies, di->lease_renew_after)) {
1463 * We should renew. If we're in RCU walk mode
1464 * though, we can't do that so just return
1467 if (flags & LOOKUP_RCU) {
1470 session = ceph_get_mds_session(di->lease_session);
1471 seq = di->lease_seq;
1472 di->lease_renew_after = 0;
1473 di->lease_renew_from = jiffies;
1477 spin_unlock(&dentry->d_lock);
1480 ceph_mdsc_lease_send_msg(session, dentry,
1481 CEPH_MDS_LEASE_RENEW, seq);
1482 ceph_put_mds_session(session);
1484 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1489 * Called under dentry->d_lock.
1491 static int __dir_lease_try_check(const struct dentry *dentry)
1493 struct ceph_dentry_info *di = ceph_dentry(dentry);
1495 struct ceph_inode_info *ci;
1498 if (!di->lease_shared_gen)
1500 if (IS_ROOT(dentry))
1503 dir = d_inode(dentry->d_parent);
1504 ci = ceph_inode(dir);
1506 if (spin_trylock(&ci->i_ceph_lock)) {
1507 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1508 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1510 spin_unlock(&ci->i_ceph_lock);
1516 di->lease_shared_gen = 0;
1521 * Check if directory-wide content lease/cap is valid.
1523 static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1525 struct ceph_inode_info *ci = ceph_inode(dir);
1529 spin_lock(&ci->i_ceph_lock);
1530 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
1531 shared_gen = atomic_read(&ci->i_shared_gen);
1532 spin_unlock(&ci->i_ceph_lock);
1534 struct ceph_dentry_info *di;
1535 spin_lock(&dentry->d_lock);
1536 di = ceph_dentry(dentry);
1537 if (dir == d_inode(dentry->d_parent) &&
1538 di && di->lease_shared_gen == shared_gen)
1539 __ceph_dentry_dir_lease_touch(di);
1542 spin_unlock(&dentry->d_lock);
1544 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1545 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
1550 * Check if cached dentry can be trusted.
1552 static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
1555 struct dentry *parent;
1558 if (flags & LOOKUP_RCU) {
1559 parent = READ_ONCE(dentry->d_parent);
1560 dir = d_inode_rcu(parent);
1564 parent = dget_parent(dentry);
1565 dir = d_inode(parent);
1568 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
1569 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
1571 /* always trust cached snapped dentries, snapdir dentry */
1572 if (ceph_snap(dir) != CEPH_NOSNAP) {
1573 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
1574 dentry, d_inode(dentry));
1576 } else if (d_really_is_positive(dentry) &&
1577 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
1580 valid = dentry_lease_is_valid(dentry, flags);
1581 if (valid == -ECHILD)
1583 if (valid || dir_lease_is_valid(dir, dentry)) {
1584 if (d_really_is_positive(dentry))
1585 valid = ceph_is_any_caps(d_inode(dentry));
1592 struct ceph_mds_client *mdsc =
1593 ceph_sb_to_client(dir->i_sb)->mdsc;
1594 struct ceph_mds_request *req;
1598 if (flags & LOOKUP_RCU)
1601 op = ceph_snap(dir) == CEPH_SNAPDIR ?
1602 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
1603 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1605 req->r_dentry = dget(dentry);
1606 req->r_num_caps = 2;
1607 req->r_parent = dir;
1609 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1610 if (ceph_security_xattr_wanted(dir))
1611 mask |= CEPH_CAP_XATTR_SHARED;
1612 req->r_args.getattr.mask = cpu_to_le32(mask);
1614 err = ceph_mdsc_do_request(mdsc, NULL, req);
1617 if (d_really_is_positive(dentry) &&
1618 d_inode(dentry) == req->r_target_inode)
1622 if (d_really_is_negative(dentry))
1628 ceph_mdsc_put_request(req);
1629 dout("d_revalidate %p lookup result=%d\n",
1634 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
1636 ceph_dir_clear_complete(dir);
1638 if (!(flags & LOOKUP_RCU))
1644 * Delete unused dentry that doesn't have valid lease
1646 * Called under dentry->d_lock.
1648 static int ceph_d_delete(const struct dentry *dentry)
1650 struct ceph_dentry_info *di;
1652 /* won't release caps */
1653 if (d_really_is_negative(dentry))
1655 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1658 di = ceph_dentry(dentry);
1660 if (__dentry_lease_is_valid(di))
1662 if (__dir_lease_try_check(dentry))
1669 * Release our ceph_dentry_info.
1671 static void ceph_d_release(struct dentry *dentry)
1673 struct ceph_dentry_info *di = ceph_dentry(dentry);
1675 dout("d_release %p\n", dentry);
1677 spin_lock(&dentry->d_lock);
1678 __dentry_lease_unlist(di);
1679 dentry->d_fsdata = NULL;
1680 spin_unlock(&dentry->d_lock);
1682 if (di->lease_session)
1683 ceph_put_mds_session(di->lease_session);
1684 kmem_cache_free(ceph_dentry_cachep, di);
1688 * When the VFS prunes a dentry from the cache, we need to clear the
1689 * complete flag on the parent directory.
1691 * Called under dentry->d_lock.
1693 static void ceph_d_prune(struct dentry *dentry)
1695 struct ceph_inode_info *dir_ci;
1696 struct ceph_dentry_info *di;
1698 dout("ceph_d_prune %pd %p\n", dentry, dentry);
1700 /* do we have a valid parent? */
1701 if (IS_ROOT(dentry))
1704 /* we hold d_lock, so d_parent is stable */
1705 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1706 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
1709 /* who calls d_delete() should also disable dcache readdir */
1710 if (d_really_is_negative(dentry))
1713 /* d_fsdata does not get cleared until d_release */
1714 if (!d_unhashed(dentry)) {
1715 __ceph_dir_clear_complete(dir_ci);
1719 /* Disable dcache readdir just in case that someone called d_drop()
1720 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1721 * properly (dcache readdir is still enabled) */
1722 di = ceph_dentry(dentry);
1723 if (di->offset > 0 &&
1724 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1725 __ceph_dir_clear_ordered(dir_ci);
1729 * read() on a dir. This weird interface hack only works if mounted
1730 * with '-o dirstat'.
1732 static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1735 struct ceph_dir_file_info *dfi = file->private_data;
1736 struct inode *inode = file_inode(file);
1737 struct ceph_inode_info *ci = ceph_inode(inode);
1739 const int bufsize = 1024;
1741 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
1744 if (!dfi->dir_info) {
1745 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1749 snprintf(dfi->dir_info, bufsize,
1752 " subdirs: %20lld\n"
1753 "rentries: %20lld\n"
1755 " rsubdirs: %20lld\n"
1757 "rctime: %10lld.%09ld\n",
1758 ci->i_files + ci->i_subdirs,
1761 ci->i_rfiles + ci->i_rsubdirs,
1765 ci->i_rctime.tv_sec,
1766 ci->i_rctime.tv_nsec);
1769 if (*ppos >= dfi->dir_info_len)
1771 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1772 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
1775 *ppos += (size - left);
1782 * Return name hash for a given dentry. This is dependent on
1783 * the parent directory's hash function.
1785 unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
1787 struct ceph_inode_info *dci = ceph_inode(dir);
1790 switch (dci->i_dir_layout.dl_dir_hash) {
1791 case 0: /* for backward compat */
1792 case CEPH_STR_HASH_LINUX:
1793 return dn->d_name.hash;
1796 spin_lock(&dn->d_lock);
1797 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
1798 dn->d_name.name, dn->d_name.len);
1799 spin_unlock(&dn->d_lock);
1804 const struct file_operations ceph_dir_fops = {
1805 .read = ceph_read_dir,
1806 .iterate = ceph_readdir,
1807 .llseek = ceph_dir_llseek,
1809 .release = ceph_release,
1810 .unlocked_ioctl = ceph_ioctl,
1811 .fsync = ceph_fsync,
1813 .flock = ceph_flock,
1816 const struct file_operations ceph_snapdir_fops = {
1817 .iterate = ceph_readdir,
1818 .llseek = ceph_dir_llseek,
1820 .release = ceph_release,
1823 const struct inode_operations ceph_dir_iops = {
1824 .lookup = ceph_lookup,
1825 .permission = ceph_permission,
1826 .getattr = ceph_getattr,
1827 .setattr = ceph_setattr,
1828 .listxattr = ceph_listxattr,
1829 .get_acl = ceph_get_acl,
1830 .set_acl = ceph_set_acl,
1831 .mknod = ceph_mknod,
1832 .symlink = ceph_symlink,
1833 .mkdir = ceph_mkdir,
1835 .unlink = ceph_unlink,
1836 .rmdir = ceph_unlink,
1837 .rename = ceph_rename,
1838 .create = ceph_create,
1839 .atomic_open = ceph_atomic_open,
1842 const struct inode_operations ceph_snapdir_iops = {
1843 .lookup = ceph_lookup,
1844 .permission = ceph_permission,
1845 .getattr = ceph_getattr,
1846 .mkdir = ceph_mkdir,
1847 .rmdir = ceph_unlink,
1848 .rename = ceph_rename,
1851 const struct dentry_operations ceph_dentry_ops = {
1852 .d_revalidate = ceph_d_revalidate,
1853 .d_delete = ceph_d_delete,
1854 .d_release = ceph_d_release,
1855 .d_prune = ceph_d_prune,
1856 .d_init = ceph_d_init,