1 #include <linux/ceph/ceph_debug.h>
3 #include <linux/spinlock.h>
4 #include <linux/fs_struct.h>
5 #include <linux/namei.h>
6 #include <linux/slab.h>
7 #include <linux/sched.h>
8 #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;
33 * Initialize ceph dentry state.
35 int ceph_init_dentry(struct dentry *dentry)
37 struct ceph_dentry_info *di;
42 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
44 return -ENOMEM; /* oh well */
46 spin_lock(&dentry->d_lock);
47 if (dentry->d_fsdata) {
49 kmem_cache_free(ceph_dentry_cachep, di);
53 if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_NOSNAP)
54 d_set_d_op(dentry, &ceph_dentry_ops);
55 else if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_SNAPDIR)
56 d_set_d_op(dentry, &ceph_snapdir_dentry_ops);
58 d_set_d_op(dentry, &ceph_snap_dentry_ops);
61 di->lease_session = NULL;
63 /* avoid reordering d_fsdata setup so that the check above is safe */
65 dentry->d_fsdata = di;
66 ceph_dentry_lru_add(dentry);
68 spin_unlock(&dentry->d_lock);
73 * for f_pos for readdir:
75 * (0xff << 52) | ((24 bits hash) << 28) |
76 * (the nth entry has hash collision);
78 * ((frag value) << 28) | (the nth entry in frag);
80 #define OFFSET_BITS 28
81 #define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
82 #define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
83 loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
85 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
91 static bool is_hash_order(loff_t p)
93 return (p & HASH_ORDER) == HASH_ORDER;
96 static unsigned fpos_frag(loff_t p)
98 return p >> OFFSET_BITS;
101 static unsigned fpos_hash(loff_t p)
103 return ceph_frag_value(fpos_frag(p));
106 static unsigned fpos_off(loff_t p)
108 return p & OFFSET_MASK;
111 static int fpos_cmp(loff_t l, loff_t r)
113 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
116 return (int)(fpos_off(l) - fpos_off(r));
120 * make note of the last dentry we read, so we can
121 * continue at the same lexicographical point,
122 * regardless of what dir changes take place on the
125 static int note_last_dentry(struct ceph_file_info *fi, const char *name,
126 int len, unsigned next_offset)
128 char *buf = kmalloc(len+1, GFP_KERNEL);
131 kfree(fi->last_name);
133 memcpy(fi->last_name, name, len);
134 fi->last_name[len] = 0;
135 fi->next_offset = next_offset;
136 dout("note_last_dentry '%s'\n", fi->last_name);
141 static struct dentry *
142 __dcache_find_get_entry(struct dentry *parent, u64 idx,
143 struct ceph_readdir_cache_control *cache_ctl)
145 struct inode *dir = d_inode(parent);
146 struct dentry *dentry;
147 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
148 loff_t ptr_pos = idx * sizeof(struct dentry *);
149 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
151 if (ptr_pos >= i_size_read(dir))
154 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
155 ceph_readdir_cache_release(cache_ctl);
156 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
157 if (!cache_ctl->page) {
158 dout(" page %lu not found\n", ptr_pgoff);
159 return ERR_PTR(-EAGAIN);
161 /* reading/filling the cache are serialized by
162 i_mutex, no need to use page lock */
163 unlock_page(cache_ctl->page);
164 cache_ctl->dentries = kmap(cache_ctl->page);
167 cache_ctl->index = idx & idx_mask;
170 spin_lock(&parent->d_lock);
171 /* check i_size again here, because empty directory can be
172 * marked as complete while not holding the i_mutex. */
173 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
174 dentry = cache_ctl->dentries[cache_ctl->index];
177 spin_unlock(&parent->d_lock);
178 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
181 return dentry ? : ERR_PTR(-EAGAIN);
185 * When possible, we try to satisfy a readdir by peeking at the
186 * dcache. We make this work by carefully ordering dentries on
187 * d_child when we initially get results back from the MDS, and
188 * falling back to a "normal" sync readdir if any dentries in the dir
191 * Complete dir indicates that we have all dentries in the dir. It is
192 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
193 * the MDS if/when the directory is modified).
195 static int __dcache_readdir(struct file *file, struct dir_context *ctx,
198 struct ceph_file_info *fi = file->private_data;
199 struct dentry *parent = file->f_path.dentry;
200 struct inode *dir = d_inode(parent);
201 struct dentry *dentry, *last = NULL;
202 struct ceph_dentry_info *di;
203 struct ceph_readdir_cache_control cache_ctl = {};
207 dout("__dcache_readdir %p v%u at %llx\n", dir, shared_gen, ctx->pos);
209 /* search start position */
211 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
213 u64 step = count >> 1;
214 dentry = __dcache_find_get_entry(parent, idx + step,
217 /* use linar search */
221 if (IS_ERR(dentry)) {
222 err = PTR_ERR(dentry);
225 di = ceph_dentry(dentry);
226 spin_lock(&dentry->d_lock);
227 if (fpos_cmp(di->offset, ctx->pos) < 0) {
233 spin_unlock(&dentry->d_lock);
237 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
242 bool emit_dentry = false;
243 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
245 fi->flags |= CEPH_F_ATEND;
249 if (IS_ERR(dentry)) {
250 err = PTR_ERR(dentry);
254 di = ceph_dentry(dentry);
255 spin_lock(&dentry->d_lock);
256 if (di->lease_shared_gen == shared_gen &&
257 d_really_is_positive(dentry) &&
258 fpos_cmp(ctx->pos, di->offset) <= 0) {
261 spin_unlock(&dentry->d_lock);
264 dout(" %llx dentry %p %pd %p\n", di->offset,
265 dentry, dentry, d_inode(dentry));
266 ctx->pos = di->offset;
267 if (!dir_emit(ctx, dentry->d_name.name,
269 ceph_translate_ino(dentry->d_sb,
270 d_inode(dentry)->i_ino),
271 d_inode(dentry)->i_mode >> 12)) {
286 ceph_readdir_cache_release(&cache_ctl);
289 di = ceph_dentry(last);
290 ret = note_last_dentry(fi, last->d_name.name, last->d_name.len,
291 fpos_off(di->offset) + 1);
299 static bool need_send_readdir(struct ceph_file_info *fi, loff_t pos)
301 if (!fi->last_readdir)
303 if (is_hash_order(pos))
304 return !ceph_frag_contains_value(fi->frag, fpos_hash(pos));
306 return fi->frag != fpos_frag(pos);
309 static int ceph_readdir(struct file *file, struct dir_context *ctx)
311 struct ceph_file_info *fi = file->private_data;
312 struct inode *inode = file_inode(file);
313 struct ceph_inode_info *ci = ceph_inode(inode);
314 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
315 struct ceph_mds_client *mdsc = fsc->mdsc;
319 struct ceph_mds_reply_info_parsed *rinfo;
321 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
322 if (fi->flags & CEPH_F_ATEND)
325 /* always start with . and .. */
327 dout("readdir off 0 -> '.'\n");
328 if (!dir_emit(ctx, ".", 1,
329 ceph_translate_ino(inode->i_sb, inode->i_ino),
330 inode->i_mode >> 12))
335 ino_t ino = parent_ino(file->f_path.dentry);
336 dout("readdir off 1 -> '..'\n");
337 if (!dir_emit(ctx, "..", 2,
338 ceph_translate_ino(inode->i_sb, ino),
339 inode->i_mode >> 12))
344 /* can we use the dcache? */
345 spin_lock(&ci->i_ceph_lock);
346 if (ceph_test_mount_opt(fsc, DCACHE) &&
347 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
348 ceph_snap(inode) != CEPH_SNAPDIR &&
349 __ceph_dir_is_complete_ordered(ci) &&
350 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
351 u32 shared_gen = ci->i_shared_gen;
352 spin_unlock(&ci->i_ceph_lock);
353 err = __dcache_readdir(file, ctx, shared_gen);
357 spin_unlock(&ci->i_ceph_lock);
360 /* proceed with a normal readdir */
362 /* do we have the correct frag content buffered? */
363 if (need_send_readdir(fi, ctx->pos)) {
364 struct ceph_mds_request *req;
366 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
367 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
369 /* discard old result, if any */
370 if (fi->last_readdir) {
371 ceph_mdsc_put_request(fi->last_readdir);
372 fi->last_readdir = NULL;
375 if (is_hash_order(ctx->pos)) {
376 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
379 frag = fpos_frag(ctx->pos);
382 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
383 ceph_vinop(inode), frag, fi->last_name);
384 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
387 err = ceph_alloc_readdir_reply_buffer(req, inode);
389 ceph_mdsc_put_request(req);
392 /* hints to request -> mds selection code */
393 req->r_direct_mode = USE_AUTH_MDS;
394 req->r_direct_hash = ceph_frag_value(frag);
395 req->r_direct_is_hash = true;
397 req->r_path2 = kstrdup(fi->last_name, GFP_KERNEL);
399 ceph_mdsc_put_request(req);
403 req->r_dir_release_cnt = fi->dir_release_count;
404 req->r_dir_ordered_cnt = fi->dir_ordered_count;
405 req->r_readdir_cache_idx = fi->readdir_cache_idx;
406 req->r_readdir_offset = fi->next_offset;
407 req->r_args.readdir.frag = cpu_to_le32(frag);
408 req->r_args.readdir.flags =
409 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
411 req->r_inode = inode;
413 req->r_dentry = dget(file->f_path.dentry);
414 err = ceph_mdsc_do_request(mdsc, NULL, req);
416 ceph_mdsc_put_request(req);
419 dout("readdir got and parsed readdir result=%d on "
420 "frag %x, end=%d, complete=%d, hash_order=%d\n",
422 (int)req->r_reply_info.dir_end,
423 (int)req->r_reply_info.dir_complete,
424 (int)req->r_reply_info.hash_order);
426 rinfo = &req->r_reply_info;
427 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
428 frag = le32_to_cpu(rinfo->dir_dir->frag);
429 if (!rinfo->hash_order) {
430 fi->next_offset = req->r_readdir_offset;
431 /* adjust ctx->pos to beginning of frag */
432 ctx->pos = ceph_make_fpos(frag,
439 fi->last_readdir = req;
441 if (req->r_did_prepopulate) {
442 fi->readdir_cache_idx = req->r_readdir_cache_idx;
443 if (fi->readdir_cache_idx < 0) {
444 /* preclude from marking dir ordered */
445 fi->dir_ordered_count = 0;
446 } else if (ceph_frag_is_leftmost(frag) &&
447 fi->next_offset == 2) {
448 /* note dir version at start of readdir so
449 * we can tell if any dentries get dropped */
450 fi->dir_release_count = req->r_dir_release_cnt;
451 fi->dir_ordered_count = req->r_dir_ordered_cnt;
454 dout("readdir !did_prepopulate");
455 /* disable readdir cache */
456 fi->readdir_cache_idx = -1;
457 /* preclude from marking dir complete */
458 fi->dir_release_count = 0;
461 /* note next offset and last dentry name */
462 if (rinfo->dir_nr > 0) {
463 struct ceph_mds_reply_dir_entry *rde =
464 rinfo->dir_entries + (rinfo->dir_nr-1);
465 unsigned next_offset = req->r_reply_info.dir_end ?
466 2 : (fpos_off(rde->offset) + 1);
467 err = note_last_dentry(fi, rde->name, rde->name_len,
471 } else if (req->r_reply_info.dir_end) {
477 rinfo = &fi->last_readdir->r_reply_info;
478 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
479 fi->frag, rinfo->dir_nr, ctx->pos,
480 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
483 /* search start position */
484 if (rinfo->dir_nr > 0) {
485 int step, nr = rinfo->dir_nr;
488 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
496 for (; i < rinfo->dir_nr; i++) {
497 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
498 struct ceph_vino vino;
501 BUG_ON(rde->offset < ctx->pos);
503 ctx->pos = rde->offset;
504 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
505 i, rinfo->dir_nr, ctx->pos,
506 rde->name_len, rde->name, &rde->inode.in);
508 BUG_ON(!rde->inode.in);
509 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
510 vino.ino = le64_to_cpu(rde->inode.in->ino);
511 vino.snap = le64_to_cpu(rde->inode.in->snapid);
512 ino = ceph_vino_to_ino(vino);
514 if (!dir_emit(ctx, rde->name, rde->name_len,
515 ceph_translate_ino(inode->i_sb, ino), ftype)) {
516 dout("filldir stopping us...\n");
522 if (fi->next_offset > 2) {
523 ceph_mdsc_put_request(fi->last_readdir);
524 fi->last_readdir = NULL;
529 if (!ceph_frag_is_rightmost(fi->frag)) {
530 unsigned frag = ceph_frag_next(fi->frag);
531 if (is_hash_order(ctx->pos)) {
532 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
533 fi->next_offset, true);
534 if (new_pos > ctx->pos)
538 ctx->pos = ceph_make_fpos(frag, fi->next_offset, false);
539 kfree(fi->last_name);
540 fi->last_name = NULL;
542 dout("readdir next frag is %x\n", frag);
545 fi->flags |= CEPH_F_ATEND;
548 * if dir_release_count still matches the dir, no dentries
549 * were released during the whole readdir, and we should have
550 * the complete dir contents in our cache.
552 if (atomic64_read(&ci->i_release_count) == fi->dir_release_count) {
553 spin_lock(&ci->i_ceph_lock);
554 if (fi->dir_ordered_count == atomic64_read(&ci->i_ordered_count)) {
555 dout(" marking %p complete and ordered\n", inode);
556 /* use i_size to track number of entries in
558 BUG_ON(fi->readdir_cache_idx < 0);
559 i_size_write(inode, fi->readdir_cache_idx *
560 sizeof(struct dentry*));
562 dout(" marking %p complete\n", inode);
564 __ceph_dir_set_complete(ci, fi->dir_release_count,
565 fi->dir_ordered_count);
566 spin_unlock(&ci->i_ceph_lock);
569 dout("readdir %p file %p done.\n", inode, file);
573 static void reset_readdir(struct ceph_file_info *fi)
575 if (fi->last_readdir) {
576 ceph_mdsc_put_request(fi->last_readdir);
577 fi->last_readdir = NULL;
579 kfree(fi->last_name);
580 fi->last_name = NULL;
581 fi->dir_release_count = 0;
582 fi->readdir_cache_idx = -1;
583 fi->next_offset = 2; /* compensate for . and .. */
584 fi->flags &= ~CEPH_F_ATEND;
588 * discard buffered readdir content on seekdir(0), or seek to new frag,
589 * or seek prior to current chunk
591 static bool need_reset_readdir(struct ceph_file_info *fi, loff_t new_pos)
593 struct ceph_mds_reply_info_parsed *rinfo;
597 if (is_hash_order(new_pos)) {
598 /* no need to reset last_name for a forward seek when
599 * dentries are sotred in hash order */
600 } else if (fi->frag |= fpos_frag(new_pos)) {
603 rinfo = fi->last_readdir ? &fi->last_readdir->r_reply_info : NULL;
604 if (!rinfo || !rinfo->dir_nr)
606 chunk_offset = rinfo->dir_entries[0].offset;
607 return new_pos < chunk_offset ||
608 is_hash_order(new_pos) != is_hash_order(chunk_offset);
611 static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
613 struct ceph_file_info *fi = file->private_data;
614 struct inode *inode = file->f_mapping->host;
621 offset += file->f_pos;
625 retval = -EOPNOTSUPP;
631 if (need_reset_readdir(fi, offset)) {
632 dout("dir_llseek dropping %p content\n", file);
634 } else if (is_hash_order(offset) && offset > file->f_pos) {
635 /* for hash offset, we don't know if a forward seek
636 * is within same frag */
637 fi->dir_release_count = 0;
638 fi->readdir_cache_idx = -1;
641 if (offset != file->f_pos) {
642 file->f_pos = offset;
644 fi->flags &= ~CEPH_F_ATEND;
654 * Handle lookups for the hidden .snap directory.
656 int ceph_handle_snapdir(struct ceph_mds_request *req,
657 struct dentry *dentry, int err)
659 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
660 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
663 if (err == -ENOENT &&
664 ceph_snap(parent) == CEPH_NOSNAP &&
665 strcmp(dentry->d_name.name,
666 fsc->mount_options->snapdir_name) == 0) {
667 struct inode *inode = ceph_get_snapdir(parent);
668 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
669 dentry, dentry, inode);
670 BUG_ON(!d_unhashed(dentry));
671 d_add(dentry, inode);
678 * Figure out final result of a lookup/open request.
680 * Mainly, make sure we return the final req->r_dentry (if it already
681 * existed) in place of the original VFS-provided dentry when they
684 * Gracefully handle the case where the MDS replies with -ENOENT and
685 * no trace (which it may do, at its discretion, e.g., if it doesn't
686 * care to issue a lease on the negative dentry).
688 struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
689 struct dentry *dentry, int err)
691 if (err == -ENOENT) {
694 if (!req->r_reply_info.head->is_dentry) {
695 dout("ENOENT and no trace, dentry %p inode %p\n",
696 dentry, d_inode(dentry));
697 if (d_really_is_positive(dentry)) {
706 dentry = ERR_PTR(err);
707 else if (dentry != req->r_dentry)
708 dentry = dget(req->r_dentry); /* we got spliced */
714 static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
716 return ceph_ino(inode) == CEPH_INO_ROOT &&
717 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
721 * Look up a single dir entry. If there is a lookup intent, inform
722 * the MDS so that it gets our 'caps wanted' value in a single op.
724 static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
727 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
728 struct ceph_mds_client *mdsc = fsc->mdsc;
729 struct ceph_mds_request *req;
734 dout("lookup %p dentry %p '%pd'\n",
735 dir, dentry, dentry);
737 if (dentry->d_name.len > NAME_MAX)
738 return ERR_PTR(-ENAMETOOLONG);
740 err = ceph_init_dentry(dentry);
744 /* can we conclude ENOENT locally? */
745 if (d_really_is_negative(dentry)) {
746 struct ceph_inode_info *ci = ceph_inode(dir);
747 struct ceph_dentry_info *di = ceph_dentry(dentry);
749 spin_lock(&ci->i_ceph_lock);
750 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
751 if (strncmp(dentry->d_name.name,
752 fsc->mount_options->snapdir_name,
753 dentry->d_name.len) &&
754 !is_root_ceph_dentry(dir, dentry) &&
755 ceph_test_mount_opt(fsc, DCACHE) &&
756 __ceph_dir_is_complete(ci) &&
757 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
758 spin_unlock(&ci->i_ceph_lock);
759 dout(" dir %p complete, -ENOENT\n", dir);
761 di->lease_shared_gen = ci->i_shared_gen;
764 spin_unlock(&ci->i_ceph_lock);
767 op = ceph_snap(dir) == CEPH_SNAPDIR ?
768 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
769 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
771 return ERR_CAST(req);
772 req->r_dentry = dget(dentry);
775 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
776 if (ceph_security_xattr_wanted(dir))
777 mask |= CEPH_CAP_XATTR_SHARED;
778 req->r_args.getattr.mask = cpu_to_le32(mask);
780 req->r_locked_dir = dir;
781 err = ceph_mdsc_do_request(mdsc, NULL, req);
782 err = ceph_handle_snapdir(req, dentry, err);
783 dentry = ceph_finish_lookup(req, dentry, err);
784 ceph_mdsc_put_request(req); /* will dput(dentry) */
785 dout("lookup result=%p\n", dentry);
790 * If we do a create but get no trace back from the MDS, follow up with
791 * a lookup (the VFS expects us to link up the provided dentry).
793 int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
795 struct dentry *result = ceph_lookup(dir, dentry, 0);
797 if (result && !IS_ERR(result)) {
799 * We created the item, then did a lookup, and found
800 * it was already linked to another inode we already
801 * had in our cache (and thus got spliced). To not
802 * confuse VFS (especially when inode is a directory),
803 * we don't link our dentry to that inode, return an
806 * This event should be rare and it happens only when
807 * we talk to old MDS. Recent MDS does not send traceless
808 * reply for request that creates new inode.
813 return PTR_ERR(result);
816 static int ceph_mknod(struct inode *dir, struct dentry *dentry,
817 umode_t mode, dev_t rdev)
819 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
820 struct ceph_mds_client *mdsc = fsc->mdsc;
821 struct ceph_mds_request *req;
822 struct ceph_acls_info acls = {};
825 if (ceph_snap(dir) != CEPH_NOSNAP)
828 err = ceph_pre_init_acls(dir, &mode, &acls);
832 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
833 dir, dentry, mode, rdev);
834 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
839 req->r_dentry = dget(dentry);
841 req->r_locked_dir = dir;
842 req->r_args.mknod.mode = cpu_to_le32(mode);
843 req->r_args.mknod.rdev = cpu_to_le32(rdev);
844 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
845 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
847 req->r_pagelist = acls.pagelist;
848 acls.pagelist = NULL;
850 err = ceph_mdsc_do_request(mdsc, dir, req);
851 if (!err && !req->r_reply_info.head->is_dentry)
852 err = ceph_handle_notrace_create(dir, dentry);
853 ceph_mdsc_put_request(req);
856 ceph_init_inode_acls(d_inode(dentry), &acls);
859 ceph_release_acls_info(&acls);
863 static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
866 return ceph_mknod(dir, dentry, mode, 0);
869 static int ceph_symlink(struct inode *dir, struct dentry *dentry,
872 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
873 struct ceph_mds_client *mdsc = fsc->mdsc;
874 struct ceph_mds_request *req;
877 if (ceph_snap(dir) != CEPH_NOSNAP)
880 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
881 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
886 req->r_path2 = kstrdup(dest, GFP_KERNEL);
889 ceph_mdsc_put_request(req);
892 req->r_locked_dir = dir;
893 req->r_dentry = dget(dentry);
895 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
896 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
897 err = ceph_mdsc_do_request(mdsc, dir, req);
898 if (!err && !req->r_reply_info.head->is_dentry)
899 err = ceph_handle_notrace_create(dir, dentry);
900 ceph_mdsc_put_request(req);
907 static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
909 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
910 struct ceph_mds_client *mdsc = fsc->mdsc;
911 struct ceph_mds_request *req;
912 struct ceph_acls_info acls = {};
916 if (ceph_snap(dir) == CEPH_SNAPDIR) {
917 /* mkdir .snap/foo is a MKSNAP */
918 op = CEPH_MDS_OP_MKSNAP;
919 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
921 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
922 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
923 op = CEPH_MDS_OP_MKDIR;
929 err = ceph_pre_init_acls(dir, &mode, &acls);
933 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
939 req->r_dentry = dget(dentry);
941 req->r_locked_dir = dir;
942 req->r_args.mkdir.mode = cpu_to_le32(mode);
943 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
944 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
946 req->r_pagelist = acls.pagelist;
947 acls.pagelist = NULL;
949 err = ceph_mdsc_do_request(mdsc, dir, req);
951 !req->r_reply_info.head->is_target &&
952 !req->r_reply_info.head->is_dentry)
953 err = ceph_handle_notrace_create(dir, dentry);
954 ceph_mdsc_put_request(req);
957 ceph_init_inode_acls(d_inode(dentry), &acls);
960 ceph_release_acls_info(&acls);
964 static int ceph_link(struct dentry *old_dentry, struct inode *dir,
965 struct dentry *dentry)
967 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
968 struct ceph_mds_client *mdsc = fsc->mdsc;
969 struct ceph_mds_request *req;
972 if (ceph_snap(dir) != CEPH_NOSNAP)
975 dout("link in dir %p old_dentry %p dentry %p\n", dir,
977 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
982 req->r_dentry = dget(dentry);
984 req->r_old_dentry = dget(old_dentry);
985 req->r_locked_dir = dir;
986 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
987 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
988 /* release LINK_SHARED on source inode (mds will lock it) */
989 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
990 err = ceph_mdsc_do_request(mdsc, dir, req);
993 } else if (!req->r_reply_info.head->is_dentry) {
994 ihold(d_inode(old_dentry));
995 d_instantiate(dentry, d_inode(old_dentry));
997 ceph_mdsc_put_request(req);
1002 * For a soon-to-be unlinked file, drop the AUTH_RDCACHE caps. If it
1003 * looks like the link count will hit 0, drop any other caps (other
1004 * than PIN) we don't specifically want (due to the file still being
1007 static int drop_caps_for_unlink(struct inode *inode)
1009 struct ceph_inode_info *ci = ceph_inode(inode);
1010 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1012 spin_lock(&ci->i_ceph_lock);
1013 if (inode->i_nlink == 1) {
1014 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
1015 ci->i_ceph_flags |= CEPH_I_NODELAY;
1017 spin_unlock(&ci->i_ceph_lock);
1022 * rmdir and unlink are differ only by the metadata op code
1024 static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1026 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1027 struct ceph_mds_client *mdsc = fsc->mdsc;
1028 struct inode *inode = d_inode(dentry);
1029 struct ceph_mds_request *req;
1033 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1034 /* rmdir .snap/foo is RMSNAP */
1035 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
1036 op = CEPH_MDS_OP_RMSNAP;
1037 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1038 dout("unlink/rmdir dir %p dn %p inode %p\n",
1039 dir, dentry, inode);
1040 op = d_is_dir(dentry) ?
1041 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1044 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1049 req->r_dentry = dget(dentry);
1050 req->r_num_caps = 2;
1051 req->r_locked_dir = dir;
1052 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1053 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1054 req->r_inode_drop = drop_caps_for_unlink(inode);
1055 err = ceph_mdsc_do_request(mdsc, dir, req);
1056 if (!err && !req->r_reply_info.head->is_dentry)
1058 ceph_mdsc_put_request(req);
1063 static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
1064 struct inode *new_dir, struct dentry *new_dentry)
1066 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1067 struct ceph_mds_client *mdsc = fsc->mdsc;
1068 struct ceph_mds_request *req;
1069 int op = CEPH_MDS_OP_RENAME;
1072 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1074 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1075 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1076 op = CEPH_MDS_OP_RENAMESNAP;
1080 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1081 old_dir, old_dentry, new_dir, new_dentry);
1082 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1084 return PTR_ERR(req);
1086 req->r_dentry = dget(new_dentry);
1087 req->r_num_caps = 2;
1088 req->r_old_dentry = dget(old_dentry);
1089 req->r_old_dentry_dir = old_dir;
1090 req->r_locked_dir = new_dir;
1091 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1092 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1093 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1094 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1095 /* release LINK_RDCACHE on source inode (mds will lock it) */
1096 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
1097 if (d_really_is_positive(new_dentry))
1098 req->r_inode_drop = drop_caps_for_unlink(d_inode(new_dentry));
1099 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1100 if (!err && !req->r_reply_info.head->is_dentry) {
1102 * Normally d_move() is done by fill_trace (called by
1103 * do_request, above). If there is no trace, we need
1107 /* d_move screws up sibling dentries' offsets */
1108 ceph_dir_clear_complete(old_dir);
1109 ceph_dir_clear_complete(new_dir);
1111 d_move(old_dentry, new_dentry);
1113 /* ensure target dentry is invalidated, despite
1114 rehashing bug in vfs_rename_dir */
1115 ceph_invalidate_dentry_lease(new_dentry);
1117 ceph_mdsc_put_request(req);
1122 * Ensure a dentry lease will no longer revalidate.
1124 void ceph_invalidate_dentry_lease(struct dentry *dentry)
1126 spin_lock(&dentry->d_lock);
1127 ceph_dentry(dentry)->time = jiffies;
1128 ceph_dentry(dentry)->lease_shared_gen = 0;
1129 spin_unlock(&dentry->d_lock);
1133 * Check if dentry lease is valid. If not, delete the lease. Try to
1134 * renew if the least is more than half up.
1136 static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags,
1139 struct ceph_dentry_info *di;
1140 struct ceph_mds_session *s;
1144 struct ceph_mds_session *session = NULL;
1147 spin_lock(&dentry->d_lock);
1148 di = ceph_dentry(dentry);
1149 if (di && di->lease_session) {
1150 s = di->lease_session;
1151 spin_lock(&s->s_gen_ttl_lock);
1154 spin_unlock(&s->s_gen_ttl_lock);
1156 if (di->lease_gen == gen &&
1157 time_before(jiffies, di->time) &&
1158 time_before(jiffies, ttl)) {
1160 if (di->lease_renew_after &&
1161 time_after(jiffies, di->lease_renew_after)) {
1163 * We should renew. If we're in RCU walk mode
1164 * though, we can't do that so just return
1167 if (flags & LOOKUP_RCU) {
1170 session = ceph_get_mds_session(s);
1171 seq = di->lease_seq;
1172 di->lease_renew_after = 0;
1173 di->lease_renew_from = jiffies;
1178 spin_unlock(&dentry->d_lock);
1181 ceph_mdsc_lease_send_msg(session, dir, dentry,
1182 CEPH_MDS_LEASE_RENEW, seq);
1183 ceph_put_mds_session(session);
1185 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1190 * Check if directory-wide content lease/cap is valid.
1192 static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1194 struct ceph_inode_info *ci = ceph_inode(dir);
1195 struct ceph_dentry_info *di = ceph_dentry(dentry);
1198 spin_lock(&ci->i_ceph_lock);
1199 if (ci->i_shared_gen == di->lease_shared_gen)
1200 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
1201 spin_unlock(&ci->i_ceph_lock);
1202 dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
1203 dir, (unsigned)ci->i_shared_gen, dentry,
1204 (unsigned)di->lease_shared_gen, valid);
1209 * Check if cached dentry can be trusted.
1211 static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
1214 struct dentry *parent;
1217 if (flags & LOOKUP_RCU) {
1218 parent = ACCESS_ONCE(dentry->d_parent);
1219 dir = d_inode_rcu(parent);
1223 parent = dget_parent(dentry);
1224 dir = d_inode(parent);
1227 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
1228 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
1230 /* always trust cached snapped dentries, snapdir dentry */
1231 if (ceph_snap(dir) != CEPH_NOSNAP) {
1232 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
1233 dentry, d_inode(dentry));
1235 } else if (d_really_is_positive(dentry) &&
1236 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
1239 valid = dentry_lease_is_valid(dentry, flags, dir);
1240 if (valid == -ECHILD)
1242 if (valid || dir_lease_is_valid(dir, dentry)) {
1243 if (d_really_is_positive(dentry))
1244 valid = ceph_is_any_caps(d_inode(dentry));
1251 struct ceph_mds_client *mdsc =
1252 ceph_sb_to_client(dir->i_sb)->mdsc;
1253 struct ceph_mds_request *req;
1256 if (flags & LOOKUP_RCU)
1259 op = ceph_snap(dir) == CEPH_SNAPDIR ?
1260 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
1261 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1263 req->r_dentry = dget(dentry);
1264 req->r_num_caps = 2;
1266 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1267 if (ceph_security_xattr_wanted(dir))
1268 mask |= CEPH_CAP_XATTR_SHARED;
1269 req->r_args.getattr.mask = mask;
1271 req->r_locked_dir = dir;
1272 err = ceph_mdsc_do_request(mdsc, NULL, req);
1273 if (err == 0 || err == -ENOENT) {
1274 if (dentry == req->r_dentry) {
1275 valid = !d_unhashed(dentry);
1277 d_invalidate(req->r_dentry);
1281 ceph_mdsc_put_request(req);
1282 dout("d_revalidate %p lookup result=%d\n",
1287 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
1289 ceph_dentry_lru_touch(dentry);
1291 ceph_dir_clear_complete(dir);
1294 if (!(flags & LOOKUP_RCU))
1300 * Release our ceph_dentry_info.
1302 static void ceph_d_release(struct dentry *dentry)
1304 struct ceph_dentry_info *di = ceph_dentry(dentry);
1306 dout("d_release %p\n", dentry);
1307 ceph_dentry_lru_del(dentry);
1309 spin_lock(&dentry->d_lock);
1310 dentry->d_fsdata = NULL;
1311 spin_unlock(&dentry->d_lock);
1313 if (di->lease_session)
1314 ceph_put_mds_session(di->lease_session);
1315 kmem_cache_free(ceph_dentry_cachep, di);
1318 static int ceph_snapdir_d_revalidate(struct dentry *dentry,
1322 * Eventually, we'll want to revalidate snapped metadata
1323 * too... probably...
1329 * When the VFS prunes a dentry from the cache, we need to clear the
1330 * complete flag on the parent directory.
1332 * Called under dentry->d_lock.
1334 static void ceph_d_prune(struct dentry *dentry)
1336 dout("ceph_d_prune %p\n", dentry);
1338 /* do we have a valid parent? */
1339 if (IS_ROOT(dentry))
1342 /* if we are not hashed, we don't affect dir's completeness */
1343 if (d_unhashed(dentry))
1347 * we hold d_lock, so d_parent is stable, and d_fsdata is never
1348 * cleared until d_release
1350 ceph_dir_clear_complete(d_inode(dentry->d_parent));
1354 * read() on a dir. This weird interface hack only works if mounted
1355 * with '-o dirstat'.
1357 static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1360 struct ceph_file_info *cf = file->private_data;
1361 struct inode *inode = file_inode(file);
1362 struct ceph_inode_info *ci = ceph_inode(inode);
1364 const int bufsize = 1024;
1366 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
1369 if (!cf->dir_info) {
1370 cf->dir_info = kmalloc(bufsize, GFP_KERNEL);
1374 snprintf(cf->dir_info, bufsize,
1377 " subdirs: %20lld\n"
1378 "rentries: %20lld\n"
1380 " rsubdirs: %20lld\n"
1382 "rctime: %10ld.%09ld\n",
1383 ci->i_files + ci->i_subdirs,
1386 ci->i_rfiles + ci->i_rsubdirs,
1390 (long)ci->i_rctime.tv_sec,
1391 (long)ci->i_rctime.tv_nsec);
1394 if (*ppos >= cf->dir_info_len)
1396 size = min_t(unsigned, size, cf->dir_info_len-*ppos);
1397 left = copy_to_user(buf, cf->dir_info + *ppos, size);
1400 *ppos += (size - left);
1405 * We maintain a private dentry LRU.
1407 * FIXME: this needs to be changed to a per-mds lru to be useful.
1409 void ceph_dentry_lru_add(struct dentry *dn)
1411 struct ceph_dentry_info *di = ceph_dentry(dn);
1412 struct ceph_mds_client *mdsc;
1414 dout("dentry_lru_add %p %p '%pd'\n", di, dn, dn);
1415 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1416 spin_lock(&mdsc->dentry_lru_lock);
1417 list_add_tail(&di->lru, &mdsc->dentry_lru);
1419 spin_unlock(&mdsc->dentry_lru_lock);
1422 void ceph_dentry_lru_touch(struct dentry *dn)
1424 struct ceph_dentry_info *di = ceph_dentry(dn);
1425 struct ceph_mds_client *mdsc;
1427 dout("dentry_lru_touch %p %p '%pd' (offset %lld)\n", di, dn, dn,
1429 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1430 spin_lock(&mdsc->dentry_lru_lock);
1431 list_move_tail(&di->lru, &mdsc->dentry_lru);
1432 spin_unlock(&mdsc->dentry_lru_lock);
1435 void ceph_dentry_lru_del(struct dentry *dn)
1437 struct ceph_dentry_info *di = ceph_dentry(dn);
1438 struct ceph_mds_client *mdsc;
1440 dout("dentry_lru_del %p %p '%pd'\n", di, dn, dn);
1441 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1442 spin_lock(&mdsc->dentry_lru_lock);
1443 list_del_init(&di->lru);
1445 spin_unlock(&mdsc->dentry_lru_lock);
1449 * Return name hash for a given dentry. This is dependent on
1450 * the parent directory's hash function.
1452 unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
1454 struct ceph_inode_info *dci = ceph_inode(dir);
1456 switch (dci->i_dir_layout.dl_dir_hash) {
1457 case 0: /* for backward compat */
1458 case CEPH_STR_HASH_LINUX:
1459 return dn->d_name.hash;
1462 return ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
1463 dn->d_name.name, dn->d_name.len);
1467 const struct file_operations ceph_dir_fops = {
1468 .read = ceph_read_dir,
1469 .iterate = ceph_readdir,
1470 .llseek = ceph_dir_llseek,
1472 .release = ceph_release,
1473 .unlocked_ioctl = ceph_ioctl,
1474 .fsync = ceph_fsync,
1477 const struct file_operations ceph_snapdir_fops = {
1478 .iterate = ceph_readdir,
1479 .llseek = ceph_dir_llseek,
1481 .release = ceph_release,
1484 const struct inode_operations ceph_dir_iops = {
1485 .lookup = ceph_lookup,
1486 .permission = ceph_permission,
1487 .getattr = ceph_getattr,
1488 .setattr = ceph_setattr,
1489 .setxattr = generic_setxattr,
1490 .getxattr = generic_getxattr,
1491 .listxattr = ceph_listxattr,
1492 .removexattr = generic_removexattr,
1493 .get_acl = ceph_get_acl,
1494 .set_acl = ceph_set_acl,
1495 .mknod = ceph_mknod,
1496 .symlink = ceph_symlink,
1497 .mkdir = ceph_mkdir,
1499 .unlink = ceph_unlink,
1500 .rmdir = ceph_unlink,
1501 .rename = ceph_rename,
1502 .create = ceph_create,
1503 .atomic_open = ceph_atomic_open,
1506 const struct inode_operations ceph_snapdir_iops = {
1507 .lookup = ceph_lookup,
1508 .permission = ceph_permission,
1509 .getattr = ceph_getattr,
1510 .mkdir = ceph_mkdir,
1511 .rmdir = ceph_unlink,
1512 .rename = ceph_rename,
1515 const struct dentry_operations ceph_dentry_ops = {
1516 .d_revalidate = ceph_d_revalidate,
1517 .d_release = ceph_d_release,
1518 .d_prune = ceph_d_prune,
1521 const struct dentry_operations ceph_snapdir_dentry_ops = {
1522 .d_revalidate = ceph_snapdir_d_revalidate,
1523 .d_release = ceph_d_release,
1526 const struct dentry_operations ceph_snap_dentry_ops = {
1527 .d_release = ceph_d_release,
1528 .d_prune = ceph_d_prune,