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;
41 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dentry->d_sb);
43 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
45 return -ENOMEM; /* oh well */
48 di->lease_session = NULL;
50 dentry->d_fsdata = di;
51 INIT_LIST_HEAD(&di->lease_list);
53 atomic64_inc(&mdsc->metric.total_dentries);
59 * for f_pos for readdir:
61 * (0xff << 52) | ((24 bits hash) << 28) |
62 * (the nth entry has hash collision);
64 * ((frag value) << 28) | (the nth entry in frag);
66 #define OFFSET_BITS 28
67 #define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
68 #define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
69 loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
71 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
77 static bool is_hash_order(loff_t p)
79 return (p & HASH_ORDER) == HASH_ORDER;
82 static unsigned fpos_frag(loff_t p)
84 return p >> OFFSET_BITS;
87 static unsigned fpos_hash(loff_t p)
89 return ceph_frag_value(fpos_frag(p));
92 static unsigned fpos_off(loff_t p)
94 return p & OFFSET_MASK;
97 static int fpos_cmp(loff_t l, loff_t r)
99 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
102 return (int)(fpos_off(l) - fpos_off(r));
106 * make note of the last dentry we read, so we can
107 * continue at the same lexicographical point,
108 * regardless of what dir changes take place on the
111 static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
112 int len, unsigned next_offset)
114 char *buf = kmalloc(len+1, GFP_KERNEL);
117 kfree(dfi->last_name);
118 dfi->last_name = buf;
119 memcpy(dfi->last_name, name, len);
120 dfi->last_name[len] = 0;
121 dfi->next_offset = next_offset;
122 dout("note_last_dentry '%s'\n", dfi->last_name);
127 static struct dentry *
128 __dcache_find_get_entry(struct dentry *parent, u64 idx,
129 struct ceph_readdir_cache_control *cache_ctl)
131 struct inode *dir = d_inode(parent);
132 struct dentry *dentry;
133 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
134 loff_t ptr_pos = idx * sizeof(struct dentry *);
135 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
137 if (ptr_pos >= i_size_read(dir))
140 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
141 ceph_readdir_cache_release(cache_ctl);
142 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
143 if (!cache_ctl->page) {
144 dout(" page %lu not found\n", ptr_pgoff);
145 return ERR_PTR(-EAGAIN);
147 /* reading/filling the cache are serialized by
148 i_rwsem, no need to use page lock */
149 unlock_page(cache_ctl->page);
150 cache_ctl->dentries = kmap(cache_ctl->page);
153 cache_ctl->index = idx & idx_mask;
156 spin_lock(&parent->d_lock);
157 /* check i_size again here, because empty directory can be
158 * marked as complete while not holding the i_rwsem. */
159 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
160 dentry = cache_ctl->dentries[cache_ctl->index];
163 spin_unlock(&parent->d_lock);
164 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
167 return dentry ? : ERR_PTR(-EAGAIN);
171 * When possible, we try to satisfy a readdir by peeking at the
172 * dcache. We make this work by carefully ordering dentries on
173 * d_child when we initially get results back from the MDS, and
174 * falling back to a "normal" sync readdir if any dentries in the dir
177 * Complete dir indicates that we have all dentries in the dir. It is
178 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
179 * the MDS if/when the directory is modified).
181 static int __dcache_readdir(struct file *file, struct dir_context *ctx,
184 struct ceph_dir_file_info *dfi = file->private_data;
185 struct dentry *parent = file->f_path.dentry;
186 struct inode *dir = d_inode(parent);
187 struct dentry *dentry, *last = NULL;
188 struct ceph_dentry_info *di;
189 struct ceph_readdir_cache_control cache_ctl = {};
193 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)shared_gen, ctx->pos);
195 /* search start position */
197 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
199 u64 step = count >> 1;
200 dentry = __dcache_find_get_entry(parent, idx + step,
203 /* use linar search */
207 if (IS_ERR(dentry)) {
208 err = PTR_ERR(dentry);
211 di = ceph_dentry(dentry);
212 spin_lock(&dentry->d_lock);
213 if (fpos_cmp(di->offset, ctx->pos) < 0) {
219 spin_unlock(&dentry->d_lock);
223 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
228 bool emit_dentry = false;
229 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
231 dfi->file_info.flags |= CEPH_F_ATEND;
235 if (IS_ERR(dentry)) {
236 err = PTR_ERR(dentry);
240 spin_lock(&dentry->d_lock);
241 di = ceph_dentry(dentry);
242 if (d_unhashed(dentry) ||
243 d_really_is_negative(dentry) ||
244 di->lease_shared_gen != shared_gen) {
245 spin_unlock(&dentry->d_lock);
250 if (fpos_cmp(ctx->pos, di->offset) <= 0) {
251 __ceph_dentry_dir_lease_touch(di);
254 spin_unlock(&dentry->d_lock);
257 dout(" %llx dentry %p %pd %p\n", di->offset,
258 dentry, dentry, d_inode(dentry));
259 ctx->pos = di->offset;
260 if (!dir_emit(ctx, dentry->d_name.name,
261 dentry->d_name.len, ceph_present_inode(d_inode(dentry)),
262 d_inode(dentry)->i_mode >> 12)) {
277 ceph_readdir_cache_release(&cache_ctl);
280 di = ceph_dentry(last);
281 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
282 fpos_off(di->offset) + 1);
286 /* last_name no longer match cache index */
287 if (dfi->readdir_cache_idx >= 0) {
288 dfi->readdir_cache_idx = -1;
289 dfi->dir_release_count = 0;
295 static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
297 if (!dfi->last_readdir)
299 if (is_hash_order(pos))
300 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
302 return dfi->frag != fpos_frag(pos);
305 static int ceph_readdir(struct file *file, struct dir_context *ctx)
307 struct ceph_dir_file_info *dfi = file->private_data;
308 struct inode *inode = file_inode(file);
309 struct ceph_inode_info *ci = ceph_inode(inode);
310 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
311 struct ceph_mds_client *mdsc = fsc->mdsc;
315 struct ceph_mds_reply_info_parsed *rinfo;
317 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
318 if (dfi->file_info.flags & CEPH_F_ATEND)
321 /* always start with . and .. */
323 dout("readdir off 0 -> '.'\n");
324 if (!dir_emit(ctx, ".", 1, ceph_present_inode(inode),
325 inode->i_mode >> 12))
331 struct dentry *dentry = file->f_path.dentry;
333 spin_lock(&dentry->d_lock);
334 ino = ceph_present_inode(dentry->d_parent->d_inode);
335 spin_unlock(&dentry->d_lock);
337 dout("readdir off 1 -> '..'\n");
338 if (!dir_emit(ctx, "..", 2, ino, inode->i_mode >> 12))
343 spin_lock(&ci->i_ceph_lock);
344 /* request Fx cap. if have Fx, we don't need to release Fs cap
345 * for later create/unlink. */
346 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_WR);
347 /* can we use the dcache? */
348 if (ceph_test_mount_opt(fsc, DCACHE) &&
349 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
350 ceph_snap(inode) != CEPH_SNAPDIR &&
351 __ceph_dir_is_complete_ordered(ci) &&
352 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
353 int shared_gen = atomic_read(&ci->i_shared_gen);
355 spin_unlock(&ci->i_ceph_lock);
356 err = __dcache_readdir(file, ctx, shared_gen);
360 spin_unlock(&ci->i_ceph_lock);
363 /* proceed with a normal readdir */
365 /* do we have the correct frag content buffered? */
366 if (need_send_readdir(dfi, ctx->pos)) {
367 struct ceph_mds_request *req;
368 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
369 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
371 /* discard old result, if any */
372 if (dfi->last_readdir) {
373 ceph_mdsc_put_request(dfi->last_readdir);
374 dfi->last_readdir = NULL;
377 if (is_hash_order(ctx->pos)) {
378 /* fragtree isn't always accurate. choose frag
379 * based on previous reply when possible. */
380 if (frag == (unsigned)-1)
381 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
384 frag = fpos_frag(ctx->pos);
387 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
388 ceph_vinop(inode), frag, dfi->last_name);
389 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
392 err = ceph_alloc_readdir_reply_buffer(req, inode);
394 ceph_mdsc_put_request(req);
397 /* hints to request -> mds selection code */
398 req->r_direct_mode = USE_AUTH_MDS;
399 if (op == CEPH_MDS_OP_READDIR) {
400 req->r_direct_hash = ceph_frag_value(frag);
401 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
402 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
404 if (dfi->last_name) {
405 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
407 ceph_mdsc_put_request(req);
410 } else if (is_hash_order(ctx->pos)) {
411 req->r_args.readdir.offset_hash =
412 cpu_to_le32(fpos_hash(ctx->pos));
415 req->r_dir_release_cnt = dfi->dir_release_count;
416 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
417 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
418 req->r_readdir_offset = dfi->next_offset;
419 req->r_args.readdir.frag = cpu_to_le32(frag);
420 req->r_args.readdir.flags =
421 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
423 req->r_inode = inode;
425 req->r_dentry = dget(file->f_path.dentry);
426 err = ceph_mdsc_do_request(mdsc, NULL, req);
428 ceph_mdsc_put_request(req);
431 dout("readdir got and parsed readdir result=%d on "
432 "frag %x, end=%d, complete=%d, hash_order=%d\n",
434 (int)req->r_reply_info.dir_end,
435 (int)req->r_reply_info.dir_complete,
436 (int)req->r_reply_info.hash_order);
438 rinfo = &req->r_reply_info;
439 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
440 frag = le32_to_cpu(rinfo->dir_dir->frag);
441 if (!rinfo->hash_order) {
442 dfi->next_offset = req->r_readdir_offset;
443 /* adjust ctx->pos to beginning of frag */
444 ctx->pos = ceph_make_fpos(frag,
451 dfi->last_readdir = req;
453 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
454 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
455 if (dfi->readdir_cache_idx < 0) {
456 /* preclude from marking dir ordered */
457 dfi->dir_ordered_count = 0;
458 } else if (ceph_frag_is_leftmost(frag) &&
459 dfi->next_offset == 2) {
460 /* note dir version at start of readdir so
461 * we can tell if any dentries get dropped */
462 dfi->dir_release_count = req->r_dir_release_cnt;
463 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
466 dout("readdir !did_prepopulate\n");
467 /* disable readdir cache */
468 dfi->readdir_cache_idx = -1;
469 /* preclude from marking dir complete */
470 dfi->dir_release_count = 0;
473 /* note next offset and last dentry name */
474 if (rinfo->dir_nr > 0) {
475 struct ceph_mds_reply_dir_entry *rde =
476 rinfo->dir_entries + (rinfo->dir_nr-1);
477 unsigned next_offset = req->r_reply_info.dir_end ?
478 2 : (fpos_off(rde->offset) + 1);
479 err = note_last_dentry(dfi, rde->name, rde->name_len,
482 ceph_mdsc_put_request(dfi->last_readdir);
483 dfi->last_readdir = NULL;
486 } else if (req->r_reply_info.dir_end) {
487 dfi->next_offset = 2;
492 rinfo = &dfi->last_readdir->r_reply_info;
493 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
494 dfi->frag, rinfo->dir_nr, ctx->pos,
495 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
498 /* search start position */
499 if (rinfo->dir_nr > 0) {
500 int step, nr = rinfo->dir_nr;
503 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
511 for (; i < rinfo->dir_nr; i++) {
512 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
514 BUG_ON(rde->offset < ctx->pos);
516 ctx->pos = rde->offset;
517 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
518 i, rinfo->dir_nr, ctx->pos,
519 rde->name_len, rde->name, &rde->inode.in);
521 BUG_ON(!rde->inode.in);
523 if (!dir_emit(ctx, rde->name, rde->name_len,
524 ceph_present_ino(inode->i_sb, le64_to_cpu(rde->inode.in->ino)),
525 le32_to_cpu(rde->inode.in->mode) >> 12)) {
527 * NOTE: Here no need to put the 'dfi->last_readdir',
528 * because when dir_emit stops us it's most likely
529 * doesn't have enough memory, etc. So for next readdir
532 dout("filldir stopping us...\n");
538 ceph_mdsc_put_request(dfi->last_readdir);
539 dfi->last_readdir = NULL;
541 if (dfi->next_offset > 2) {
547 if (!ceph_frag_is_rightmost(dfi->frag)) {
548 frag = ceph_frag_next(dfi->frag);
549 if (is_hash_order(ctx->pos)) {
550 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
551 dfi->next_offset, true);
552 if (new_pos > ctx->pos)
556 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
558 kfree(dfi->last_name);
559 dfi->last_name = NULL;
561 dout("readdir next frag is %x\n", frag);
564 dfi->file_info.flags |= CEPH_F_ATEND;
567 * if dir_release_count still matches the dir, no dentries
568 * were released during the whole readdir, and we should have
569 * the complete dir contents in our cache.
571 if (atomic64_read(&ci->i_release_count) ==
572 dfi->dir_release_count) {
573 spin_lock(&ci->i_ceph_lock);
574 if (dfi->dir_ordered_count ==
575 atomic64_read(&ci->i_ordered_count)) {
576 dout(" marking %p complete and ordered\n", inode);
577 /* use i_size to track number of entries in
579 BUG_ON(dfi->readdir_cache_idx < 0);
580 i_size_write(inode, dfi->readdir_cache_idx *
581 sizeof(struct dentry*));
583 dout(" marking %p complete\n", inode);
585 __ceph_dir_set_complete(ci, dfi->dir_release_count,
586 dfi->dir_ordered_count);
587 spin_unlock(&ci->i_ceph_lock);
590 dout("readdir %p file %p done.\n", inode, file);
594 static void reset_readdir(struct ceph_dir_file_info *dfi)
596 if (dfi->last_readdir) {
597 ceph_mdsc_put_request(dfi->last_readdir);
598 dfi->last_readdir = NULL;
600 kfree(dfi->last_name);
601 dfi->last_name = NULL;
602 dfi->dir_release_count = 0;
603 dfi->readdir_cache_idx = -1;
604 dfi->next_offset = 2; /* compensate for . and .. */
605 dfi->file_info.flags &= ~CEPH_F_ATEND;
609 * discard buffered readdir content on seekdir(0), or seek to new frag,
610 * or seek prior to current chunk
612 static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
614 struct ceph_mds_reply_info_parsed *rinfo;
618 if (is_hash_order(new_pos)) {
619 /* no need to reset last_name for a forward seek when
620 * dentries are sotred in hash order */
621 } else if (dfi->frag != fpos_frag(new_pos)) {
624 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
625 if (!rinfo || !rinfo->dir_nr)
627 chunk_offset = rinfo->dir_entries[0].offset;
628 return new_pos < chunk_offset ||
629 is_hash_order(new_pos) != is_hash_order(chunk_offset);
632 static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
634 struct ceph_dir_file_info *dfi = file->private_data;
635 struct inode *inode = file->f_mapping->host;
642 offset += file->f_pos;
647 retval = -EOPNOTSUPP;
654 if (need_reset_readdir(dfi, offset)) {
655 dout("dir_llseek dropping %p content\n", file);
657 } else if (is_hash_order(offset) && offset > file->f_pos) {
658 /* for hash offset, we don't know if a forward seek
659 * is within same frag */
660 dfi->dir_release_count = 0;
661 dfi->readdir_cache_idx = -1;
664 if (offset != file->f_pos) {
665 file->f_pos = offset;
667 dfi->file_info.flags &= ~CEPH_F_ATEND;
677 * Handle lookups for the hidden .snap directory.
679 struct dentry *ceph_handle_snapdir(struct ceph_mds_request *req,
680 struct dentry *dentry)
682 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
683 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_rwsem */
686 if (ceph_snap(parent) == CEPH_NOSNAP &&
687 strcmp(dentry->d_name.name, fsc->mount_options->snapdir_name) == 0) {
689 struct inode *inode = ceph_get_snapdir(parent);
691 res = d_splice_alias(inode, dentry);
692 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p. Spliced dentry %p\n",
693 dentry, dentry, inode, res);
701 * Figure out final result of a lookup/open request.
703 * Mainly, make sure we return the final req->r_dentry (if it already
704 * existed) in place of the original VFS-provided dentry when they
707 * Gracefully handle the case where the MDS replies with -ENOENT and
708 * no trace (which it may do, at its discretion, e.g., if it doesn't
709 * care to issue a lease on the negative dentry).
711 struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
712 struct dentry *dentry, int err)
714 if (err == -ENOENT) {
717 if (!req->r_reply_info.head->is_dentry) {
718 dout("ENOENT and no trace, dentry %p inode %p\n",
719 dentry, d_inode(dentry));
720 if (d_really_is_positive(dentry)) {
729 dentry = ERR_PTR(err);
730 else if (dentry != req->r_dentry)
731 dentry = dget(req->r_dentry); /* we got spliced */
737 static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
739 return ceph_ino(inode) == CEPH_INO_ROOT &&
740 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
744 * Look up a single dir entry. If there is a lookup intent, inform
745 * the MDS so that it gets our 'caps wanted' value in a single op.
747 static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
750 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
751 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
752 struct ceph_mds_request *req;
757 dout("lookup %p dentry %p '%pd'\n",
758 dir, dentry, dentry);
760 if (dentry->d_name.len > NAME_MAX)
761 return ERR_PTR(-ENAMETOOLONG);
763 /* can we conclude ENOENT locally? */
764 if (d_really_is_negative(dentry)) {
765 struct ceph_inode_info *ci = ceph_inode(dir);
766 struct ceph_dentry_info *di = ceph_dentry(dentry);
768 spin_lock(&ci->i_ceph_lock);
769 dout(" dir %p flags are 0x%lx\n", dir, ci->i_ceph_flags);
770 if (strncmp(dentry->d_name.name,
771 fsc->mount_options->snapdir_name,
772 dentry->d_name.len) &&
773 !is_root_ceph_dentry(dir, dentry) &&
774 ceph_test_mount_opt(fsc, DCACHE) &&
775 __ceph_dir_is_complete(ci) &&
776 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
777 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
778 spin_unlock(&ci->i_ceph_lock);
779 dout(" dir %p complete, -ENOENT\n", dir);
781 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
784 spin_unlock(&ci->i_ceph_lock);
787 op = ceph_snap(dir) == CEPH_SNAPDIR ?
788 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
789 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
791 return ERR_CAST(req);
792 req->r_dentry = dget(dentry);
795 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
796 if (ceph_security_xattr_wanted(dir))
797 mask |= CEPH_CAP_XATTR_SHARED;
798 req->r_args.getattr.mask = cpu_to_le32(mask);
802 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
803 err = ceph_mdsc_do_request(mdsc, NULL, req);
804 if (err == -ENOENT) {
807 res = ceph_handle_snapdir(req, dentry);
815 dentry = ceph_finish_lookup(req, dentry, err);
816 ceph_mdsc_put_request(req); /* will dput(dentry) */
817 dout("lookup result=%p\n", dentry);
822 * If we do a create but get no trace back from the MDS, follow up with
823 * a lookup (the VFS expects us to link up the provided dentry).
825 int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
827 struct dentry *result = ceph_lookup(dir, dentry, 0);
829 if (result && !IS_ERR(result)) {
831 * We created the item, then did a lookup, and found
832 * it was already linked to another inode we already
833 * had in our cache (and thus got spliced). To not
834 * confuse VFS (especially when inode is a directory),
835 * we don't link our dentry to that inode, return an
838 * This event should be rare and it happens only when
839 * we talk to old MDS. Recent MDS does not send traceless
840 * reply for request that creates new inode.
845 return PTR_ERR(result);
848 static int ceph_mknod(struct mnt_idmap *idmap, struct inode *dir,
849 struct dentry *dentry, umode_t mode, dev_t rdev)
851 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
852 struct ceph_mds_request *req;
853 struct ceph_acl_sec_ctx as_ctx = {};
856 if (ceph_snap(dir) != CEPH_NOSNAP)
859 err = ceph_wait_on_conflict_unlink(dentry);
863 if (ceph_quota_is_max_files_exceeded(dir)) {
868 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
871 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
875 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
876 dir, dentry, mode, rdev);
877 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
882 req->r_dentry = dget(dentry);
886 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
887 req->r_args.mknod.mode = cpu_to_le32(mode);
888 req->r_args.mknod.rdev = cpu_to_le32(rdev);
889 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL |
891 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
892 if (as_ctx.pagelist) {
893 req->r_pagelist = as_ctx.pagelist;
894 as_ctx.pagelist = NULL;
896 err = ceph_mdsc_do_request(mdsc, dir, req);
897 if (!err && !req->r_reply_info.head->is_dentry)
898 err = ceph_handle_notrace_create(dir, dentry);
899 ceph_mdsc_put_request(req);
902 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
905 ceph_release_acl_sec_ctx(&as_ctx);
909 static int ceph_create(struct mnt_idmap *idmap, struct inode *dir,
910 struct dentry *dentry, umode_t mode, bool excl)
912 return ceph_mknod(idmap, dir, dentry, mode, 0);
915 static int ceph_symlink(struct mnt_idmap *idmap, struct inode *dir,
916 struct dentry *dentry, const char *dest)
918 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
919 struct ceph_mds_request *req;
920 struct ceph_acl_sec_ctx as_ctx = {};
923 if (ceph_snap(dir) != CEPH_NOSNAP)
926 err = ceph_wait_on_conflict_unlink(dentry);
930 if (ceph_quota_is_max_files_exceeded(dir)) {
935 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
939 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
940 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
945 req->r_path2 = kstrdup(dest, GFP_KERNEL);
948 ceph_mdsc_put_request(req);
954 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
955 req->r_dentry = dget(dentry);
957 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL |
959 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
960 if (as_ctx.pagelist) {
961 req->r_pagelist = as_ctx.pagelist;
962 as_ctx.pagelist = NULL;
964 err = ceph_mdsc_do_request(mdsc, dir, req);
965 if (!err && !req->r_reply_info.head->is_dentry)
966 err = ceph_handle_notrace_create(dir, dentry);
967 ceph_mdsc_put_request(req);
971 ceph_release_acl_sec_ctx(&as_ctx);
975 static int ceph_mkdir(struct mnt_idmap *idmap, struct inode *dir,
976 struct dentry *dentry, umode_t mode)
978 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
979 struct ceph_mds_request *req;
980 struct ceph_acl_sec_ctx as_ctx = {};
984 err = ceph_wait_on_conflict_unlink(dentry);
988 if (ceph_snap(dir) == CEPH_SNAPDIR) {
989 /* mkdir .snap/foo is a MKSNAP */
990 op = CEPH_MDS_OP_MKSNAP;
991 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
993 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
994 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
995 op = CEPH_MDS_OP_MKDIR;
1001 if (op == CEPH_MDS_OP_MKDIR &&
1002 ceph_quota_is_max_files_exceeded(dir)) {
1008 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
1011 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
1015 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1021 req->r_dentry = dget(dentry);
1022 req->r_num_caps = 2;
1023 req->r_parent = dir;
1025 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1026 req->r_args.mkdir.mode = cpu_to_le32(mode);
1027 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL |
1028 CEPH_CAP_XATTR_EXCL;
1029 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1030 if (as_ctx.pagelist) {
1031 req->r_pagelist = as_ctx.pagelist;
1032 as_ctx.pagelist = NULL;
1034 err = ceph_mdsc_do_request(mdsc, dir, req);
1036 !req->r_reply_info.head->is_target &&
1037 !req->r_reply_info.head->is_dentry)
1038 err = ceph_handle_notrace_create(dir, dentry);
1039 ceph_mdsc_put_request(req);
1042 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
1045 ceph_release_acl_sec_ctx(&as_ctx);
1049 static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1050 struct dentry *dentry)
1052 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
1053 struct ceph_mds_request *req;
1056 if (dentry->d_flags & DCACHE_DISCONNECTED)
1059 err = ceph_wait_on_conflict_unlink(dentry);
1063 if (ceph_snap(dir) != CEPH_NOSNAP)
1066 dout("link in dir %p %llx.%llx old_dentry %p:'%pd' dentry %p:'%pd'\n",
1067 dir, ceph_vinop(dir), old_dentry, old_dentry, dentry, dentry);
1068 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1071 return PTR_ERR(req);
1073 req->r_dentry = dget(dentry);
1074 req->r_num_caps = 2;
1075 req->r_old_dentry = dget(old_dentry);
1077 * The old_dentry maybe a DCACHE_DISCONNECTED dentry, then we
1078 * will just pass the ino# to MDSs.
1080 if (old_dentry->d_flags & DCACHE_DISCONNECTED)
1081 req->r_ino2 = ceph_vino(d_inode(old_dentry));
1082 req->r_parent = dir;
1084 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1085 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_XATTR_EXCL;
1086 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1087 /* release LINK_SHARED on source inode (mds will lock it) */
1088 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1089 err = ceph_mdsc_do_request(mdsc, dir, req);
1092 } else if (!req->r_reply_info.head->is_dentry) {
1093 ihold(d_inode(old_dentry));
1094 d_instantiate(dentry, d_inode(old_dentry));
1096 ceph_mdsc_put_request(req);
1100 static void ceph_async_unlink_cb(struct ceph_mds_client *mdsc,
1101 struct ceph_mds_request *req)
1103 struct dentry *dentry = req->r_dentry;
1104 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
1105 struct ceph_dentry_info *di = ceph_dentry(dentry);
1106 int result = req->r_err ? req->r_err :
1107 le32_to_cpu(req->r_reply_info.head->result);
1109 if (!test_bit(CEPH_DENTRY_ASYNC_UNLINK_BIT, &di->flags))
1110 pr_warn("%s dentry %p:%pd async unlink bit is not set\n",
1111 __func__, dentry, dentry);
1113 spin_lock(&fsc->async_unlink_conflict_lock);
1114 hash_del_rcu(&di->hnode);
1115 spin_unlock(&fsc->async_unlink_conflict_lock);
1117 spin_lock(&dentry->d_lock);
1118 di->flags &= ~CEPH_DENTRY_ASYNC_UNLINK;
1119 wake_up_bit(&di->flags, CEPH_DENTRY_ASYNC_UNLINK_BIT);
1120 spin_unlock(&dentry->d_lock);
1124 if (result == -EJUKEBOX)
1127 /* If op failed, mark everyone involved for errors */
1131 char *path = ceph_mdsc_build_path(dentry, &pathlen,
1134 /* mark error on parent + clear complete */
1135 mapping_set_error(req->r_parent->i_mapping, result);
1136 ceph_dir_clear_complete(req->r_parent);
1138 /* drop the dentry -- we don't know its status */
1139 if (!d_unhashed(dentry))
1142 /* mark inode itself for an error (since metadata is bogus) */
1143 mapping_set_error(req->r_old_inode->i_mapping, result);
1145 pr_warn("async unlink failure path=(%llx)%s result=%d!\n",
1146 base, IS_ERR(path) ? "<<bad>>" : path, result);
1147 ceph_mdsc_free_path(path, pathlen);
1150 iput(req->r_old_inode);
1151 ceph_mdsc_release_dir_caps(req);
1154 static int get_caps_for_async_unlink(struct inode *dir, struct dentry *dentry)
1156 struct ceph_inode_info *ci = ceph_inode(dir);
1157 struct ceph_dentry_info *di;
1158 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_UNLINK;
1160 spin_lock(&ci->i_ceph_lock);
1161 if ((__ceph_caps_issued(ci, NULL) & want) == want) {
1162 ceph_take_cap_refs(ci, want, false);
1165 spin_unlock(&ci->i_ceph_lock);
1167 /* If we didn't get anything, return 0 */
1171 spin_lock(&dentry->d_lock);
1172 di = ceph_dentry(dentry);
1174 * - We are holding Fx, which implies Fs caps.
1175 * - Only support async unlink for primary linkage
1177 if (atomic_read(&ci->i_shared_gen) != di->lease_shared_gen ||
1178 !(di->flags & CEPH_DENTRY_PRIMARY_LINK))
1180 spin_unlock(&dentry->d_lock);
1182 /* Do we still want what we've got? */
1186 ceph_put_cap_refs(ci, got);
1191 * rmdir and unlink are differ only by the metadata op code
1193 static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1195 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1196 struct ceph_mds_client *mdsc = fsc->mdsc;
1197 struct inode *inode = d_inode(dentry);
1198 struct ceph_mds_request *req;
1199 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
1203 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1204 /* rmdir .snap/foo is RMSNAP */
1205 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
1206 op = CEPH_MDS_OP_RMSNAP;
1207 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1208 dout("unlink/rmdir dir %p dn %p inode %p\n",
1209 dir, dentry, inode);
1210 op = d_is_dir(dentry) ?
1211 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1215 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1220 req->r_dentry = dget(dentry);
1221 req->r_num_caps = 2;
1222 req->r_parent = dir;
1224 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_XATTR_EXCL;
1225 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1226 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
1228 if (try_async && op == CEPH_MDS_OP_UNLINK &&
1229 (req->r_dir_caps = get_caps_for_async_unlink(dir, dentry))) {
1230 struct ceph_dentry_info *di = ceph_dentry(dentry);
1232 dout("async unlink on %llu/%.*s caps=%s", ceph_ino(dir),
1233 dentry->d_name.len, dentry->d_name.name,
1234 ceph_cap_string(req->r_dir_caps));
1235 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
1236 req->r_callback = ceph_async_unlink_cb;
1237 req->r_old_inode = d_inode(dentry);
1238 ihold(req->r_old_inode);
1240 spin_lock(&dentry->d_lock);
1241 di->flags |= CEPH_DENTRY_ASYNC_UNLINK;
1242 spin_unlock(&dentry->d_lock);
1244 spin_lock(&fsc->async_unlink_conflict_lock);
1245 hash_add_rcu(fsc->async_unlink_conflict, &di->hnode,
1246 dentry->d_name.hash);
1247 spin_unlock(&fsc->async_unlink_conflict_lock);
1249 err = ceph_mdsc_submit_request(mdsc, dir, req);
1252 * We have enough caps, so we assume that the unlink
1253 * will succeed. Fix up the target inode and dcache.
1258 spin_lock(&fsc->async_unlink_conflict_lock);
1259 hash_del_rcu(&di->hnode);
1260 spin_unlock(&fsc->async_unlink_conflict_lock);
1262 spin_lock(&dentry->d_lock);
1263 di->flags &= ~CEPH_DENTRY_ASYNC_UNLINK;
1264 spin_unlock(&dentry->d_lock);
1266 if (err == -EJUKEBOX) {
1268 ceph_mdsc_put_request(req);
1273 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1274 err = ceph_mdsc_do_request(mdsc, dir, req);
1275 if (!err && !req->r_reply_info.head->is_dentry)
1279 ceph_mdsc_put_request(req);
1284 static int ceph_rename(struct mnt_idmap *idmap, struct inode *old_dir,
1285 struct dentry *old_dentry, struct inode *new_dir,
1286 struct dentry *new_dentry, unsigned int flags)
1288 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(old_dir->i_sb);
1289 struct ceph_mds_request *req;
1290 int op = CEPH_MDS_OP_RENAME;
1296 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1298 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1299 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1300 op = CEPH_MDS_OP_RENAMESNAP;
1304 /* don't allow cross-quota renames */
1305 if ((old_dir != new_dir) &&
1306 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1309 err = ceph_wait_on_conflict_unlink(new_dentry);
1313 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1314 old_dir, old_dentry, new_dir, new_dentry);
1315 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1317 return PTR_ERR(req);
1319 req->r_dentry = dget(new_dentry);
1320 req->r_num_caps = 2;
1321 req->r_old_dentry = dget(old_dentry);
1322 req->r_old_dentry_dir = old_dir;
1323 req->r_parent = new_dir;
1325 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1326 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_XATTR_EXCL;
1327 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1328 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_XATTR_EXCL;
1329 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1330 /* release LINK_RDCACHE on source inode (mds will lock it) */
1331 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1332 if (d_really_is_positive(new_dentry)) {
1334 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1336 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1337 if (!err && !req->r_reply_info.head->is_dentry) {
1339 * Normally d_move() is done by fill_trace (called by
1340 * do_request, above). If there is no trace, we need
1343 d_move(old_dentry, new_dentry);
1345 ceph_mdsc_put_request(req);
1350 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1351 * Leases at front of the list will expire first. (Assume all leases have
1354 * Called under dentry->d_lock.
1356 void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1358 struct dentry *dn = di->dentry;
1359 struct ceph_mds_client *mdsc;
1361 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1363 di->flags |= CEPH_DENTRY_LEASE_LIST;
1364 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1365 di->flags |= CEPH_DENTRY_REFERENCED;
1369 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1370 spin_lock(&mdsc->dentry_list_lock);
1371 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1372 spin_unlock(&mdsc->dentry_list_lock);
1375 static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1376 struct ceph_dentry_info *di)
1378 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1381 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1385 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1386 * list if it's not in the list, otherwise set 'referenced' flag.
1388 * Called under dentry->d_lock.
1390 void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1392 struct dentry *dn = di->dentry;
1393 struct ceph_mds_client *mdsc;
1395 dout("dentry_dir_lease_touch %p %p '%pd' (offset 0x%llx)\n",
1396 di, dn, dn, di->offset);
1398 if (!list_empty(&di->lease_list)) {
1399 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1400 /* don't remove dentry from dentry lease list
1401 * if its lease is valid */
1402 if (__dentry_lease_is_valid(di))
1405 di->flags |= CEPH_DENTRY_REFERENCED;
1410 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1411 di->flags |= CEPH_DENTRY_REFERENCED;
1412 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1416 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1417 spin_lock(&mdsc->dentry_list_lock);
1418 __dentry_dir_lease_touch(mdsc, di),
1419 spin_unlock(&mdsc->dentry_list_lock);
1422 static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1424 struct ceph_mds_client *mdsc;
1425 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1427 if (list_empty(&di->lease_list))
1430 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1431 spin_lock(&mdsc->dentry_list_lock);
1432 list_del_init(&di->lease_list);
1433 spin_unlock(&mdsc->dentry_list_lock);
1443 struct ceph_lease_walk_control {
1445 bool expire_dir_lease;
1446 unsigned long nr_to_scan;
1447 unsigned long dir_lease_ttl;
1450 static unsigned long
1451 __dentry_leases_walk(struct ceph_mds_client *mdsc,
1452 struct ceph_lease_walk_control *lwc,
1453 int (*check)(struct dentry*, void*))
1455 struct ceph_dentry_info *di, *tmp;
1456 struct dentry *dentry, *last = NULL;
1457 struct list_head* list;
1459 unsigned long freed = 0;
1462 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1463 spin_lock(&mdsc->dentry_list_lock);
1464 list_for_each_entry_safe(di, tmp, list, lease_list) {
1465 if (!lwc->nr_to_scan)
1469 dentry = di->dentry;
1473 if (!spin_trylock(&dentry->d_lock))
1476 if (__lockref_is_dead(&dentry->d_lockref)) {
1477 list_del_init(&di->lease_list);
1481 ret = check(dentry, lwc);
1483 /* move it into tail of dir lease list */
1484 __dentry_dir_lease_touch(mdsc, di);
1490 di->flags &= ~CEPH_DENTRY_REFERENCED;
1491 if (dentry->d_lockref.count > 0) {
1492 /* update_dentry_lease() will re-add
1493 * it to lease list, or
1494 * ceph_d_delete() will return 1 when
1495 * last reference is dropped */
1496 list_del_init(&di->lease_list);
1498 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1499 list_move_tail(&di->lease_list, &dispose);
1504 spin_unlock(&dentry->d_lock);
1508 spin_unlock(&mdsc->dentry_list_lock);
1510 while (!list_empty(&dispose)) {
1511 di = list_first_entry(&dispose, struct ceph_dentry_info,
1513 dentry = di->dentry;
1514 spin_lock(&dentry->d_lock);
1516 list_del_init(&di->lease_list);
1517 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1518 if (di->flags & CEPH_DENTRY_REFERENCED) {
1519 spin_lock(&mdsc->dentry_list_lock);
1520 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1521 list_add_tail(&di->lease_list,
1522 &mdsc->dentry_leases);
1524 __dentry_dir_lease_touch(mdsc, di);
1526 spin_unlock(&mdsc->dentry_list_lock);
1531 spin_unlock(&dentry->d_lock);
1532 /* ceph_d_delete() does the trick */
1538 static int __dentry_lease_check(struct dentry *dentry, void *arg)
1540 struct ceph_dentry_info *di = ceph_dentry(dentry);
1543 if (__dentry_lease_is_valid(di))
1545 ret = __dir_lease_try_check(dentry);
1553 static int __dir_lease_check(struct dentry *dentry, void *arg)
1555 struct ceph_lease_walk_control *lwc = arg;
1556 struct ceph_dentry_info *di = ceph_dentry(dentry);
1558 int ret = __dir_lease_try_check(dentry);
1562 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1564 /* Move dentry to tail of dir lease list if we don't want
1565 * to delete it. So dentries in the list are checked in a
1566 * round robin manner */
1567 if (!lwc->expire_dir_lease)
1569 if (dentry->d_lockref.count > 0 ||
1570 (di->flags & CEPH_DENTRY_REFERENCED))
1572 /* invalidate dir lease */
1573 di->lease_shared_gen = 0;
1578 int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1580 struct ceph_lease_walk_control lwc;
1581 unsigned long count;
1582 unsigned long freed;
1584 spin_lock(&mdsc->caps_list_lock);
1585 if (mdsc->caps_use_max > 0 &&
1586 mdsc->caps_use_count > mdsc->caps_use_max)
1587 count = mdsc->caps_use_count - mdsc->caps_use_max;
1590 spin_unlock(&mdsc->caps_list_lock);
1592 lwc.dir_lease = false;
1593 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1594 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1595 if (!lwc.nr_to_scan) /* more invalid leases */
1598 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1599 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1601 lwc.dir_lease = true;
1602 lwc.expire_dir_lease = freed < count;
1603 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
1604 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1605 if (!lwc.nr_to_scan) /* more to check */
1608 return freed > 0 ? 1 : 0;
1612 * Ensure a dentry lease will no longer revalidate.
1614 void ceph_invalidate_dentry_lease(struct dentry *dentry)
1616 struct ceph_dentry_info *di = ceph_dentry(dentry);
1617 spin_lock(&dentry->d_lock);
1619 di->lease_shared_gen = 0;
1620 di->flags &= ~CEPH_DENTRY_PRIMARY_LINK;
1621 __dentry_lease_unlist(di);
1622 spin_unlock(&dentry->d_lock);
1626 * Check if dentry lease is valid. If not, delete the lease. Try to
1627 * renew if the least is more than half up.
1629 static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1631 struct ceph_mds_session *session;
1636 session = di->lease_session;
1641 gen = atomic_read(&session->s_cap_gen);
1642 ttl = session->s_cap_ttl;
1644 if (di->lease_gen == gen &&
1645 time_before(jiffies, ttl) &&
1646 time_before(jiffies, di->time))
1653 static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
1655 struct ceph_dentry_info *di;
1656 struct ceph_mds_session *session = NULL;
1660 spin_lock(&dentry->d_lock);
1661 di = ceph_dentry(dentry);
1662 if (di && __dentry_lease_is_valid(di)) {
1665 if (di->lease_renew_after &&
1666 time_after(jiffies, di->lease_renew_after)) {
1668 * We should renew. If we're in RCU walk mode
1669 * though, we can't do that so just return
1672 if (flags & LOOKUP_RCU) {
1675 session = ceph_get_mds_session(di->lease_session);
1676 seq = di->lease_seq;
1677 di->lease_renew_after = 0;
1678 di->lease_renew_from = jiffies;
1682 spin_unlock(&dentry->d_lock);
1685 ceph_mdsc_lease_send_msg(session, dentry,
1686 CEPH_MDS_LEASE_RENEW, seq);
1687 ceph_put_mds_session(session);
1689 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1694 * Called under dentry->d_lock.
1696 static int __dir_lease_try_check(const struct dentry *dentry)
1698 struct ceph_dentry_info *di = ceph_dentry(dentry);
1700 struct ceph_inode_info *ci;
1703 if (!di->lease_shared_gen)
1705 if (IS_ROOT(dentry))
1708 dir = d_inode(dentry->d_parent);
1709 ci = ceph_inode(dir);
1711 if (spin_trylock(&ci->i_ceph_lock)) {
1712 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1713 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1715 spin_unlock(&ci->i_ceph_lock);
1721 di->lease_shared_gen = 0;
1726 * Check if directory-wide content lease/cap is valid.
1728 static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry,
1729 struct ceph_mds_client *mdsc)
1731 struct ceph_inode_info *ci = ceph_inode(dir);
1735 spin_lock(&ci->i_ceph_lock);
1736 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
1738 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
1739 shared_gen = atomic_read(&ci->i_shared_gen);
1741 spin_unlock(&ci->i_ceph_lock);
1743 struct ceph_dentry_info *di;
1744 spin_lock(&dentry->d_lock);
1745 di = ceph_dentry(dentry);
1746 if (dir == d_inode(dentry->d_parent) &&
1747 di && di->lease_shared_gen == shared_gen)
1748 __ceph_dentry_dir_lease_touch(di);
1751 spin_unlock(&dentry->d_lock);
1753 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1754 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
1759 * Check if cached dentry can be trusted.
1761 static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
1764 struct dentry *parent;
1765 struct inode *dir, *inode;
1766 struct ceph_mds_client *mdsc;
1768 if (flags & LOOKUP_RCU) {
1769 parent = READ_ONCE(dentry->d_parent);
1770 dir = d_inode_rcu(parent);
1773 inode = d_inode_rcu(dentry);
1775 parent = dget_parent(dentry);
1776 dir = d_inode(parent);
1777 inode = d_inode(dentry);
1780 dout("d_revalidate %p '%pd' inode %p offset 0x%llx\n", dentry,
1781 dentry, inode, ceph_dentry(dentry)->offset);
1783 mdsc = ceph_sb_to_client(dir->i_sb)->mdsc;
1785 /* always trust cached snapped dentries, snapdir dentry */
1786 if (ceph_snap(dir) != CEPH_NOSNAP) {
1787 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
1790 } else if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
1793 valid = dentry_lease_is_valid(dentry, flags);
1794 if (valid == -ECHILD)
1796 if (valid || dir_lease_is_valid(dir, dentry, mdsc)) {
1798 valid = ceph_is_any_caps(inode);
1805 struct ceph_mds_request *req;
1809 if (flags & LOOKUP_RCU)
1812 percpu_counter_inc(&mdsc->metric.d_lease_mis);
1814 op = ceph_snap(dir) == CEPH_SNAPDIR ?
1815 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
1816 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1818 req->r_dentry = dget(dentry);
1819 req->r_num_caps = 2;
1820 req->r_parent = dir;
1823 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1824 if (ceph_security_xattr_wanted(dir))
1825 mask |= CEPH_CAP_XATTR_SHARED;
1826 req->r_args.getattr.mask = cpu_to_le32(mask);
1828 err = ceph_mdsc_do_request(mdsc, NULL, req);
1831 if (d_really_is_positive(dentry) &&
1832 d_inode(dentry) == req->r_target_inode)
1836 if (d_really_is_negative(dentry))
1842 ceph_mdsc_put_request(req);
1843 dout("d_revalidate %p lookup result=%d\n",
1847 percpu_counter_inc(&mdsc->metric.d_lease_hit);
1850 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
1852 ceph_dir_clear_complete(dir);
1854 if (!(flags & LOOKUP_RCU))
1860 * Delete unused dentry that doesn't have valid lease
1862 * Called under dentry->d_lock.
1864 static int ceph_d_delete(const struct dentry *dentry)
1866 struct ceph_dentry_info *di;
1868 /* won't release caps */
1869 if (d_really_is_negative(dentry))
1871 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1874 di = ceph_dentry(dentry);
1876 if (__dentry_lease_is_valid(di))
1878 if (__dir_lease_try_check(dentry))
1885 * Release our ceph_dentry_info.
1887 static void ceph_d_release(struct dentry *dentry)
1889 struct ceph_dentry_info *di = ceph_dentry(dentry);
1890 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
1892 dout("d_release %p\n", dentry);
1894 atomic64_dec(&fsc->mdsc->metric.total_dentries);
1896 spin_lock(&dentry->d_lock);
1897 __dentry_lease_unlist(di);
1898 dentry->d_fsdata = NULL;
1899 spin_unlock(&dentry->d_lock);
1901 ceph_put_mds_session(di->lease_session);
1902 kmem_cache_free(ceph_dentry_cachep, di);
1906 * When the VFS prunes a dentry from the cache, we need to clear the
1907 * complete flag on the parent directory.
1909 * Called under dentry->d_lock.
1911 static void ceph_d_prune(struct dentry *dentry)
1913 struct ceph_inode_info *dir_ci;
1914 struct ceph_dentry_info *di;
1916 dout("ceph_d_prune %pd %p\n", dentry, dentry);
1918 /* do we have a valid parent? */
1919 if (IS_ROOT(dentry))
1922 /* we hold d_lock, so d_parent is stable */
1923 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1924 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
1927 /* who calls d_delete() should also disable dcache readdir */
1928 if (d_really_is_negative(dentry))
1931 /* d_fsdata does not get cleared until d_release */
1932 if (!d_unhashed(dentry)) {
1933 __ceph_dir_clear_complete(dir_ci);
1937 /* Disable dcache readdir just in case that someone called d_drop()
1938 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1939 * properly (dcache readdir is still enabled) */
1940 di = ceph_dentry(dentry);
1941 if (di->offset > 0 &&
1942 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1943 __ceph_dir_clear_ordered(dir_ci);
1947 * read() on a dir. This weird interface hack only works if mounted
1948 * with '-o dirstat'.
1950 static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1953 struct ceph_dir_file_info *dfi = file->private_data;
1954 struct inode *inode = file_inode(file);
1955 struct ceph_inode_info *ci = ceph_inode(inode);
1957 const int bufsize = 1024;
1959 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
1962 if (!dfi->dir_info) {
1963 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1967 snprintf(dfi->dir_info, bufsize,
1970 " subdirs: %20lld\n"
1971 "rentries: %20lld\n"
1973 " rsubdirs: %20lld\n"
1975 "rctime: %10lld.%09ld\n",
1976 ci->i_files + ci->i_subdirs,
1979 ci->i_rfiles + ci->i_rsubdirs,
1983 ci->i_rctime.tv_sec,
1984 ci->i_rctime.tv_nsec);
1987 if (*ppos >= dfi->dir_info_len)
1989 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1990 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
1993 *ppos += (size - left);
2000 * Return name hash for a given dentry. This is dependent on
2001 * the parent directory's hash function.
2003 unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
2005 struct ceph_inode_info *dci = ceph_inode(dir);
2008 switch (dci->i_dir_layout.dl_dir_hash) {
2009 case 0: /* for backward compat */
2010 case CEPH_STR_HASH_LINUX:
2011 return dn->d_name.hash;
2014 spin_lock(&dn->d_lock);
2015 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
2016 dn->d_name.name, dn->d_name.len);
2017 spin_unlock(&dn->d_lock);
2022 WRAP_DIR_ITER(ceph_readdir) // FIXME!
2023 const struct file_operations ceph_dir_fops = {
2024 .read = ceph_read_dir,
2025 .iterate_shared = shared_ceph_readdir,
2026 .llseek = ceph_dir_llseek,
2028 .release = ceph_release,
2029 .unlocked_ioctl = ceph_ioctl,
2030 .compat_ioctl = compat_ptr_ioctl,
2031 .fsync = ceph_fsync,
2033 .flock = ceph_flock,
2036 const struct file_operations ceph_snapdir_fops = {
2037 .iterate_shared = shared_ceph_readdir,
2038 .llseek = ceph_dir_llseek,
2040 .release = ceph_release,
2043 const struct inode_operations ceph_dir_iops = {
2044 .lookup = ceph_lookup,
2045 .permission = ceph_permission,
2046 .getattr = ceph_getattr,
2047 .setattr = ceph_setattr,
2048 .listxattr = ceph_listxattr,
2049 .get_inode_acl = ceph_get_acl,
2050 .set_acl = ceph_set_acl,
2051 .mknod = ceph_mknod,
2052 .symlink = ceph_symlink,
2053 .mkdir = ceph_mkdir,
2055 .unlink = ceph_unlink,
2056 .rmdir = ceph_unlink,
2057 .rename = ceph_rename,
2058 .create = ceph_create,
2059 .atomic_open = ceph_atomic_open,
2062 const struct inode_operations ceph_snapdir_iops = {
2063 .lookup = ceph_lookup,
2064 .permission = ceph_permission,
2065 .getattr = ceph_getattr,
2066 .mkdir = ceph_mkdir,
2067 .rmdir = ceph_unlink,
2068 .rename = ceph_rename,
2071 const struct dentry_operations ceph_dentry_ops = {
2072 .d_revalidate = ceph_d_revalidate,
2073 .d_delete = ceph_d_delete,
2074 .d_release = ceph_d_release,
2075 .d_prune = ceph_d_prune,
2076 .d_init = ceph_d_init,