1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/module.h>
6 #include <linux/slab.h>
7 #include <linux/string.h>
8 #include <linux/uaccess.h>
9 #include <linux/kernel.h>
10 #include <linux/writeback.h>
11 #include <linux/vmalloc.h>
12 #include <linux/xattr.h>
13 #include <linux/posix_acl.h>
14 #include <linux/random.h>
15 #include <linux/sort.h>
16 #include <linux/iversion.h>
17 #include <linux/fscrypt.h>
20 #include "mds_client.h"
23 #include <linux/ceph/decode.h>
26 * Ceph inode operations
28 * Implement basic inode helpers (get, alloc) and inode ops (getattr,
29 * setattr, etc.), xattr helpers, and helpers for assimilating
30 * metadata returned by the MDS into our cache.
32 * Also define helpers for doing asynchronous writeback, invalidation,
33 * and truncation for the benefit of those who can't afford to block
34 * (typically because they are in the message handler path).
37 static const struct inode_operations ceph_symlink_iops;
38 static const struct inode_operations ceph_encrypted_symlink_iops;
40 static void ceph_inode_work(struct work_struct *work);
43 * find or create an inode, given the ceph ino number
45 static int ceph_set_ino_cb(struct inode *inode, void *data)
47 struct ceph_inode_info *ci = ceph_inode(inode);
48 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
50 ci->i_vino = *(struct ceph_vino *)data;
51 inode->i_ino = ceph_vino_to_ino_t(ci->i_vino);
52 inode_set_iversion_raw(inode, 0);
53 percpu_counter_inc(&mdsc->metric.total_inodes);
59 * ceph_new_inode - allocate a new inode in advance of an expected create
60 * @dir: parent directory for new inode
61 * @dentry: dentry that may eventually point to new inode
62 * @mode: mode of new inode
63 * @as_ctx: pointer to inherited security context
65 * Allocate a new inode in advance of an operation to create a new inode.
66 * This allocates the inode and sets up the acl_sec_ctx with appropriate
67 * info for the new inode.
69 * Returns a pointer to the new inode or an ERR_PTR.
71 struct inode *ceph_new_inode(struct inode *dir, struct dentry *dentry,
72 umode_t *mode, struct ceph_acl_sec_ctx *as_ctx)
77 inode = new_inode(dir->i_sb);
79 return ERR_PTR(-ENOMEM);
81 if (!S_ISLNK(*mode)) {
82 err = ceph_pre_init_acls(dir, mode, as_ctx);
88 inode->i_mode = *mode;
90 err = ceph_security_init_secctx(dentry, *mode, as_ctx);
95 * We'll skip setting fscrypt context for snapshots, leaving that for
98 if (ceph_snap(dir) != CEPH_SNAPDIR) {
99 err = ceph_fscrypt_prepare_context(dir, inode, as_ctx);
110 void ceph_as_ctx_to_req(struct ceph_mds_request *req,
111 struct ceph_acl_sec_ctx *as_ctx)
113 if (as_ctx->pagelist) {
114 req->r_pagelist = as_ctx->pagelist;
115 as_ctx->pagelist = NULL;
117 ceph_fscrypt_as_ctx_to_req(req, as_ctx);
121 * ceph_get_inode - find or create/hash a new inode
122 * @sb: superblock to search and allocate in
123 * @vino: vino to search for
124 * @newino: optional new inode to insert if one isn't found (may be NULL)
126 * Search for or insert a new inode into the hash for the given vino, and
127 * return a reference to it. If new is non-NULL, its reference is consumed.
129 struct inode *ceph_get_inode(struct super_block *sb, struct ceph_vino vino,
130 struct inode *newino)
132 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(sb);
133 struct ceph_client *cl = mdsc->fsc->client;
136 if (ceph_vino_is_reserved(vino))
137 return ERR_PTR(-EREMOTEIO);
140 inode = inode_insert5(newino, (unsigned long)vino.ino,
141 ceph_ino_compare, ceph_set_ino_cb, &vino);
145 inode = iget5_locked(sb, (unsigned long)vino.ino,
146 ceph_ino_compare, ceph_set_ino_cb, &vino);
150 doutc(cl, "no inode found for %llx.%llx\n", vino.ino, vino.snap);
151 return ERR_PTR(-ENOMEM);
154 doutc(cl, "on %llx=%llx.%llx got %p new %d\n",
155 ceph_present_inode(inode), ceph_vinop(inode), inode,
156 !!(inode->i_state & I_NEW));
161 * get/constuct snapdir inode for a given directory
163 struct inode *ceph_get_snapdir(struct inode *parent)
165 struct ceph_client *cl = ceph_inode_to_client(parent);
166 struct ceph_vino vino = {
167 .ino = ceph_ino(parent),
168 .snap = CEPH_SNAPDIR,
170 struct inode *inode = ceph_get_inode(parent->i_sb, vino, NULL);
171 struct ceph_inode_info *ci = ceph_inode(inode);
177 if (!S_ISDIR(parent->i_mode)) {
178 pr_warn_once_client(cl, "bad snapdir parent type (mode=0%o)\n",
183 if (!(inode->i_state & I_NEW) && !S_ISDIR(inode->i_mode)) {
184 pr_warn_once_client(cl, "bad snapdir inode type (mode=0%o)\n",
189 inode->i_mode = parent->i_mode;
190 inode->i_uid = parent->i_uid;
191 inode->i_gid = parent->i_gid;
192 inode->i_mtime = parent->i_mtime;
193 inode_set_ctime_to_ts(inode, inode_get_ctime(parent));
194 inode->i_atime = parent->i_atime;
196 ci->i_btime = ceph_inode(parent)->i_btime;
198 #ifdef CONFIG_FS_ENCRYPTION
199 /* if encrypted, just borrow fscrypt_auth from parent */
200 if (IS_ENCRYPTED(parent)) {
201 struct ceph_inode_info *pci = ceph_inode(parent);
203 ci->fscrypt_auth = kmemdup(pci->fscrypt_auth,
204 pci->fscrypt_auth_len,
206 if (ci->fscrypt_auth) {
207 inode->i_flags |= S_ENCRYPTED;
208 ci->fscrypt_auth_len = pci->fscrypt_auth_len;
210 doutc(cl, "Failed to alloc snapdir fscrypt_auth\n");
216 if (inode->i_state & I_NEW) {
217 inode->i_op = &ceph_snapdir_iops;
218 inode->i_fop = &ceph_snapdir_fops;
219 ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */
220 unlock_new_inode(inode);
225 if ((inode->i_state & I_NEW))
226 discard_new_inode(inode);
232 const struct inode_operations ceph_file_iops = {
233 .permission = ceph_permission,
234 .setattr = ceph_setattr,
235 .getattr = ceph_getattr,
236 .listxattr = ceph_listxattr,
237 .get_inode_acl = ceph_get_acl,
238 .set_acl = ceph_set_acl,
243 * We use a 'frag tree' to keep track of the MDS's directory fragments
244 * for a given inode (usually there is just a single fragment). We
245 * need to know when a child frag is delegated to a new MDS, or when
246 * it is flagged as replicated, so we can direct our requests
251 * find/create a frag in the tree
253 static struct ceph_inode_frag *__get_or_create_frag(struct ceph_inode_info *ci,
256 struct inode *inode = &ci->netfs.inode;
257 struct ceph_client *cl = ceph_inode_to_client(inode);
259 struct rb_node *parent = NULL;
260 struct ceph_inode_frag *frag;
263 p = &ci->i_fragtree.rb_node;
266 frag = rb_entry(parent, struct ceph_inode_frag, node);
267 c = ceph_frag_compare(f, frag->frag);
276 frag = kmalloc(sizeof(*frag), GFP_NOFS);
278 return ERR_PTR(-ENOMEM);
285 rb_link_node(&frag->node, parent, p);
286 rb_insert_color(&frag->node, &ci->i_fragtree);
288 doutc(cl, "added %p %llx.%llx frag %x\n", inode, ceph_vinop(inode), f);
293 * find a specific frag @f
295 struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci, u32 f)
297 struct rb_node *n = ci->i_fragtree.rb_node;
300 struct ceph_inode_frag *frag =
301 rb_entry(n, struct ceph_inode_frag, node);
302 int c = ceph_frag_compare(f, frag->frag);
314 * Choose frag containing the given value @v. If @pfrag is
315 * specified, copy the frag delegation info to the caller if
318 static u32 __ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
319 struct ceph_inode_frag *pfrag, int *found)
321 struct ceph_client *cl = ceph_inode_to_client(&ci->netfs.inode);
322 u32 t = ceph_frag_make(0, 0);
323 struct ceph_inode_frag *frag;
331 WARN_ON(!ceph_frag_contains_value(t, v));
332 frag = __ceph_find_frag(ci, t);
334 break; /* t is a leaf */
335 if (frag->split_by == 0) {
337 memcpy(pfrag, frag, sizeof(*pfrag));
344 nway = 1 << frag->split_by;
345 doutc(cl, "frag(%x) %x splits by %d (%d ways)\n", v, t,
346 frag->split_by, nway);
347 for (i = 0; i < nway; i++) {
348 n = ceph_frag_make_child(t, frag->split_by, i);
349 if (ceph_frag_contains_value(n, v)) {
356 doutc(cl, "frag(%x) = %x\n", v, t);
361 u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
362 struct ceph_inode_frag *pfrag, int *found)
365 mutex_lock(&ci->i_fragtree_mutex);
366 ret = __ceph_choose_frag(ci, v, pfrag, found);
367 mutex_unlock(&ci->i_fragtree_mutex);
372 * Process dirfrag (delegation) info from the mds. Include leaf
373 * fragment in tree ONLY if ndist > 0. Otherwise, only
374 * branches/splits are included in i_fragtree)
376 static int ceph_fill_dirfrag(struct inode *inode,
377 struct ceph_mds_reply_dirfrag *dirinfo)
379 struct ceph_inode_info *ci = ceph_inode(inode);
380 struct ceph_client *cl = ceph_inode_to_client(inode);
381 struct ceph_inode_frag *frag;
382 u32 id = le32_to_cpu(dirinfo->frag);
383 int mds = le32_to_cpu(dirinfo->auth);
384 int ndist = le32_to_cpu(dirinfo->ndist);
389 spin_lock(&ci->i_ceph_lock);
391 diri_auth = ci->i_auth_cap->mds;
392 spin_unlock(&ci->i_ceph_lock);
394 if (mds == -1) /* CDIR_AUTH_PARENT */
397 mutex_lock(&ci->i_fragtree_mutex);
398 if (ndist == 0 && mds == diri_auth) {
399 /* no delegation info needed. */
400 frag = __ceph_find_frag(ci, id);
403 if (frag->split_by == 0) {
404 /* tree leaf, remove */
405 doutc(cl, "removed %p %llx.%llx frag %x (no ref)\n",
406 inode, ceph_vinop(inode), id);
407 rb_erase(&frag->node, &ci->i_fragtree);
410 /* tree branch, keep and clear */
411 doutc(cl, "cleared %p %llx.%llx frag %x referral\n",
412 inode, ceph_vinop(inode), id);
420 /* find/add this frag to store mds delegation info */
421 frag = __get_or_create_frag(ci, id);
423 /* this is not the end of the world; we can continue
424 with bad/inaccurate delegation info */
425 pr_err_client(cl, "ENOMEM on mds ref %p %llx.%llx fg %x\n",
426 inode, ceph_vinop(inode),
427 le32_to_cpu(dirinfo->frag));
433 frag->ndist = min_t(u32, ndist, CEPH_MAX_DIRFRAG_REP);
434 for (i = 0; i < frag->ndist; i++)
435 frag->dist[i] = le32_to_cpu(dirinfo->dist[i]);
436 doutc(cl, "%p %llx.%llx frag %x ndist=%d\n", inode,
437 ceph_vinop(inode), frag->frag, frag->ndist);
440 mutex_unlock(&ci->i_fragtree_mutex);
444 static int frag_tree_split_cmp(const void *l, const void *r)
446 struct ceph_frag_tree_split *ls = (struct ceph_frag_tree_split*)l;
447 struct ceph_frag_tree_split *rs = (struct ceph_frag_tree_split*)r;
448 return ceph_frag_compare(le32_to_cpu(ls->frag),
449 le32_to_cpu(rs->frag));
452 static bool is_frag_child(u32 f, struct ceph_inode_frag *frag)
455 return f == ceph_frag_make(0, 0);
456 if (ceph_frag_bits(f) != ceph_frag_bits(frag->frag) + frag->split_by)
458 return ceph_frag_contains_value(frag->frag, ceph_frag_value(f));
461 static int ceph_fill_fragtree(struct inode *inode,
462 struct ceph_frag_tree_head *fragtree,
463 struct ceph_mds_reply_dirfrag *dirinfo)
465 struct ceph_client *cl = ceph_inode_to_client(inode);
466 struct ceph_inode_info *ci = ceph_inode(inode);
467 struct ceph_inode_frag *frag, *prev_frag = NULL;
468 struct rb_node *rb_node;
469 unsigned i, split_by, nsplits;
473 mutex_lock(&ci->i_fragtree_mutex);
474 nsplits = le32_to_cpu(fragtree->nsplits);
475 if (nsplits != ci->i_fragtree_nsplits) {
477 } else if (nsplits) {
478 i = get_random_u32_below(nsplits);
479 id = le32_to_cpu(fragtree->splits[i].frag);
480 if (!__ceph_find_frag(ci, id))
482 } else if (!RB_EMPTY_ROOT(&ci->i_fragtree)) {
483 rb_node = rb_first(&ci->i_fragtree);
484 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
485 if (frag->frag != ceph_frag_make(0, 0) || rb_next(rb_node))
488 if (!update && dirinfo) {
489 id = le32_to_cpu(dirinfo->frag);
490 if (id != __ceph_choose_frag(ci, id, NULL, NULL))
497 sort(fragtree->splits, nsplits, sizeof(fragtree->splits[0]),
498 frag_tree_split_cmp, NULL);
501 doutc(cl, "%p %llx.%llx\n", inode, ceph_vinop(inode));
502 rb_node = rb_first(&ci->i_fragtree);
503 for (i = 0; i < nsplits; i++) {
504 id = le32_to_cpu(fragtree->splits[i].frag);
505 split_by = le32_to_cpu(fragtree->splits[i].by);
506 if (split_by == 0 || ceph_frag_bits(id) + split_by > 24) {
507 pr_err_client(cl, "%p %llx.%llx invalid split %d/%u, "
508 "frag %x split by %d\n", inode,
509 ceph_vinop(inode), i, nsplits, id, split_by);
514 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
515 if (ceph_frag_compare(frag->frag, id) >= 0) {
516 if (frag->frag != id)
519 rb_node = rb_next(rb_node);
522 rb_node = rb_next(rb_node);
523 /* delete stale split/leaf node */
524 if (frag->split_by > 0 ||
525 !is_frag_child(frag->frag, prev_frag)) {
526 rb_erase(&frag->node, &ci->i_fragtree);
527 if (frag->split_by > 0)
528 ci->i_fragtree_nsplits--;
534 frag = __get_or_create_frag(ci, id);
538 if (frag->split_by == 0)
539 ci->i_fragtree_nsplits++;
540 frag->split_by = split_by;
541 doutc(cl, " frag %x split by %d\n", frag->frag, frag->split_by);
545 frag = rb_entry(rb_node, struct ceph_inode_frag, node);
546 rb_node = rb_next(rb_node);
547 /* delete stale split/leaf node */
548 if (frag->split_by > 0 ||
549 !is_frag_child(frag->frag, prev_frag)) {
550 rb_erase(&frag->node, &ci->i_fragtree);
551 if (frag->split_by > 0)
552 ci->i_fragtree_nsplits--;
557 mutex_unlock(&ci->i_fragtree_mutex);
562 * initialize a newly allocated inode.
564 struct inode *ceph_alloc_inode(struct super_block *sb)
566 struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
567 struct ceph_inode_info *ci;
570 ci = alloc_inode_sb(sb, ceph_inode_cachep, GFP_NOFS);
574 doutc(fsc->client, "%p\n", &ci->netfs.inode);
576 /* Set parameters for the netfs library */
577 netfs_inode_init(&ci->netfs, &ceph_netfs_ops);
579 spin_lock_init(&ci->i_ceph_lock);
582 ci->i_inline_version = 0;
583 ci->i_time_warp_seq = 0;
584 ci->i_ceph_flags = 0;
585 atomic64_set(&ci->i_ordered_count, 1);
586 atomic64_set(&ci->i_release_count, 1);
587 atomic64_set(&ci->i_complete_seq[0], 0);
588 atomic64_set(&ci->i_complete_seq[1], 0);
589 ci->i_symlink = NULL;
594 memset(&ci->i_dir_layout, 0, sizeof(ci->i_dir_layout));
595 memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
596 RCU_INIT_POINTER(ci->i_layout.pool_ns, NULL);
598 ci->i_fragtree = RB_ROOT;
599 mutex_init(&ci->i_fragtree_mutex);
601 ci->i_xattrs.blob = NULL;
602 ci->i_xattrs.prealloc_blob = NULL;
603 ci->i_xattrs.dirty = false;
604 ci->i_xattrs.index = RB_ROOT;
605 ci->i_xattrs.count = 0;
606 ci->i_xattrs.names_size = 0;
607 ci->i_xattrs.vals_size = 0;
608 ci->i_xattrs.version = 0;
609 ci->i_xattrs.index_version = 0;
611 ci->i_caps = RB_ROOT;
612 ci->i_auth_cap = NULL;
613 ci->i_dirty_caps = 0;
614 ci->i_flushing_caps = 0;
615 INIT_LIST_HEAD(&ci->i_dirty_item);
616 INIT_LIST_HEAD(&ci->i_flushing_item);
617 ci->i_prealloc_cap_flush = NULL;
618 INIT_LIST_HEAD(&ci->i_cap_flush_list);
619 init_waitqueue_head(&ci->i_cap_wq);
620 ci->i_hold_caps_max = 0;
621 INIT_LIST_HEAD(&ci->i_cap_delay_list);
622 INIT_LIST_HEAD(&ci->i_cap_snaps);
623 ci->i_head_snapc = NULL;
626 ci->i_last_rd = ci->i_last_wr = jiffies - 3600 * HZ;
627 for (i = 0; i < CEPH_FILE_MODE_BITS; i++)
628 ci->i_nr_by_mode[i] = 0;
630 mutex_init(&ci->i_truncate_mutex);
631 ci->i_truncate_seq = 0;
632 ci->i_truncate_size = 0;
633 ci->i_truncate_pending = 0;
634 ci->i_truncate_pagecache_size = 0;
637 ci->i_reported_size = 0;
638 ci->i_wanted_max_size = 0;
639 ci->i_requested_max_size = 0;
643 ci->i_rdcache_ref = 0;
647 ci->i_wrbuffer_ref = 0;
648 ci->i_wrbuffer_ref_head = 0;
649 atomic_set(&ci->i_filelock_ref, 0);
650 atomic_set(&ci->i_shared_gen, 1);
651 ci->i_rdcache_gen = 0;
652 ci->i_rdcache_revoking = 0;
654 INIT_LIST_HEAD(&ci->i_unsafe_dirops);
655 INIT_LIST_HEAD(&ci->i_unsafe_iops);
656 spin_lock_init(&ci->i_unsafe_lock);
658 ci->i_snap_realm = NULL;
659 INIT_LIST_HEAD(&ci->i_snap_realm_item);
660 INIT_LIST_HEAD(&ci->i_snap_flush_item);
662 INIT_WORK(&ci->i_work, ceph_inode_work);
664 memset(&ci->i_btime, '\0', sizeof(ci->i_btime));
665 #ifdef CONFIG_FS_ENCRYPTION
666 ci->fscrypt_auth = NULL;
667 ci->fscrypt_auth_len = 0;
669 return &ci->netfs.inode;
672 void ceph_free_inode(struct inode *inode)
674 struct ceph_inode_info *ci = ceph_inode(inode);
676 kfree(ci->i_symlink);
677 #ifdef CONFIG_FS_ENCRYPTION
678 kfree(ci->fscrypt_auth);
680 fscrypt_free_inode(inode);
681 kmem_cache_free(ceph_inode_cachep, ci);
684 void ceph_evict_inode(struct inode *inode)
686 struct ceph_inode_info *ci = ceph_inode(inode);
687 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
688 struct ceph_client *cl = ceph_inode_to_client(inode);
689 struct ceph_inode_frag *frag;
692 doutc(cl, "%p ino %llx.%llx\n", inode, ceph_vinop(inode));
694 percpu_counter_dec(&mdsc->metric.total_inodes);
696 truncate_inode_pages_final(&inode->i_data);
697 if (inode->i_state & I_PINNING_FSCACHE_WB)
698 ceph_fscache_unuse_cookie(inode, true);
701 ceph_fscache_unregister_inode_cookie(ci);
702 fscrypt_put_encryption_info(inode);
704 __ceph_remove_caps(ci);
706 if (__ceph_has_quota(ci, QUOTA_GET_ANY))
707 ceph_adjust_quota_realms_count(inode, false);
710 * we may still have a snap_realm reference if there are stray
711 * caps in i_snap_caps.
713 if (ci->i_snap_realm) {
714 if (ceph_snap(inode) == CEPH_NOSNAP) {
715 doutc(cl, " dropping residual ref to snap realm %p\n",
717 ceph_change_snap_realm(inode, NULL);
719 ceph_put_snapid_map(mdsc, ci->i_snapid_map);
720 ci->i_snap_realm = NULL;
724 while ((n = rb_first(&ci->i_fragtree)) != NULL) {
725 frag = rb_entry(n, struct ceph_inode_frag, node);
726 rb_erase(n, &ci->i_fragtree);
729 ci->i_fragtree_nsplits = 0;
731 __ceph_destroy_xattrs(ci);
732 if (ci->i_xattrs.blob)
733 ceph_buffer_put(ci->i_xattrs.blob);
734 if (ci->i_xattrs.prealloc_blob)
735 ceph_buffer_put(ci->i_xattrs.prealloc_blob);
737 ceph_put_string(rcu_dereference_raw(ci->i_layout.pool_ns));
738 ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
741 static inline blkcnt_t calc_inode_blocks(u64 size)
743 return (size + (1<<9) - 1) >> 9;
747 * Helpers to fill in size, ctime, mtime, and atime. We have to be
748 * careful because either the client or MDS may have more up to date
749 * info, depending on which capabilities are held, and whether
750 * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
751 * and size are monotonically increasing, except when utimes() or
752 * truncate() increments the corresponding _seq values.)
754 int ceph_fill_file_size(struct inode *inode, int issued,
755 u32 truncate_seq, u64 truncate_size, u64 size)
757 struct ceph_client *cl = ceph_inode_to_client(inode);
758 struct ceph_inode_info *ci = ceph_inode(inode);
760 loff_t isize = i_size_read(inode);
762 if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) > 0 ||
763 (truncate_seq == ci->i_truncate_seq && size > isize)) {
764 doutc(cl, "size %lld -> %llu\n", isize, size);
765 if (size > 0 && S_ISDIR(inode->i_mode)) {
766 pr_err_client(cl, "non-zero size for directory\n");
769 i_size_write(inode, size);
770 inode->i_blocks = calc_inode_blocks(size);
772 * If we're expanding, then we should be able to just update
773 * the existing cookie.
776 ceph_fscache_update(inode);
777 ci->i_reported_size = size;
778 if (truncate_seq != ci->i_truncate_seq) {
779 doutc(cl, "truncate_seq %u -> %u\n",
780 ci->i_truncate_seq, truncate_seq);
781 ci->i_truncate_seq = truncate_seq;
783 /* the MDS should have revoked these caps */
784 WARN_ON_ONCE(issued & (CEPH_CAP_FILE_RD |
785 CEPH_CAP_FILE_LAZYIO));
787 * If we hold relevant caps, or in the case where we're
788 * not the only client referencing this file and we
789 * don't hold those caps, then we need to check whether
790 * the file is either opened or mmaped
792 if ((issued & (CEPH_CAP_FILE_CACHE|
793 CEPH_CAP_FILE_BUFFER)) ||
794 mapping_mapped(inode->i_mapping) ||
795 __ceph_is_file_opened(ci)) {
796 ci->i_truncate_pending++;
803 * It's possible that the new sizes of the two consecutive
804 * size truncations will be in the same fscrypt last block,
805 * and we need to truncate the corresponding page caches
808 if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) >= 0) {
809 doutc(cl, "truncate_size %lld -> %llu, encrypted %d\n",
810 ci->i_truncate_size, truncate_size,
811 !!IS_ENCRYPTED(inode));
813 ci->i_truncate_size = truncate_size;
815 if (IS_ENCRYPTED(inode)) {
816 doutc(cl, "truncate_pagecache_size %lld -> %llu\n",
817 ci->i_truncate_pagecache_size, size);
818 ci->i_truncate_pagecache_size = size;
820 ci->i_truncate_pagecache_size = truncate_size;
826 void ceph_fill_file_time(struct inode *inode, int issued,
827 u64 time_warp_seq, struct timespec64 *ctime,
828 struct timespec64 *mtime, struct timespec64 *atime)
830 struct ceph_client *cl = ceph_inode_to_client(inode);
831 struct ceph_inode_info *ci = ceph_inode(inode);
832 struct timespec64 ictime = inode_get_ctime(inode);
835 if (issued & (CEPH_CAP_FILE_EXCL|
837 CEPH_CAP_FILE_BUFFER|
839 CEPH_CAP_XATTR_EXCL)) {
840 if (ci->i_version == 0 ||
841 timespec64_compare(ctime, &ictime) > 0) {
842 doutc(cl, "ctime %lld.%09ld -> %lld.%09ld inc w/ cap\n",
843 ictime.tv_sec, ictime.tv_nsec,
844 ctime->tv_sec, ctime->tv_nsec);
845 inode_set_ctime_to_ts(inode, *ctime);
847 if (ci->i_version == 0 ||
848 ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) > 0) {
849 /* the MDS did a utimes() */
850 doutc(cl, "mtime %lld.%09ld -> %lld.%09ld tw %d -> %d\n",
851 inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
852 mtime->tv_sec, mtime->tv_nsec,
853 ci->i_time_warp_seq, (int)time_warp_seq);
855 inode->i_mtime = *mtime;
856 inode->i_atime = *atime;
857 ci->i_time_warp_seq = time_warp_seq;
858 } else if (time_warp_seq == ci->i_time_warp_seq) {
859 /* nobody did utimes(); take the max */
860 if (timespec64_compare(mtime, &inode->i_mtime) > 0) {
861 doutc(cl, "mtime %lld.%09ld -> %lld.%09ld inc\n",
862 inode->i_mtime.tv_sec,
863 inode->i_mtime.tv_nsec,
864 mtime->tv_sec, mtime->tv_nsec);
865 inode->i_mtime = *mtime;
867 if (timespec64_compare(atime, &inode->i_atime) > 0) {
868 doutc(cl, "atime %lld.%09ld -> %lld.%09ld inc\n",
869 inode->i_atime.tv_sec,
870 inode->i_atime.tv_nsec,
871 atime->tv_sec, atime->tv_nsec);
872 inode->i_atime = *atime;
874 } else if (issued & CEPH_CAP_FILE_EXCL) {
875 /* we did a utimes(); ignore mds values */
880 /* we have no write|excl caps; whatever the MDS says is true */
881 if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) >= 0) {
882 inode_set_ctime_to_ts(inode, *ctime);
883 inode->i_mtime = *mtime;
884 inode->i_atime = *atime;
885 ci->i_time_warp_seq = time_warp_seq;
890 if (warn) /* time_warp_seq shouldn't go backwards */
891 doutc(cl, "%p mds time_warp_seq %llu < %u\n", inode,
892 time_warp_seq, ci->i_time_warp_seq);
895 #if IS_ENABLED(CONFIG_FS_ENCRYPTION)
896 static int decode_encrypted_symlink(struct ceph_mds_client *mdsc,
898 int enclen, u8 **decsym)
900 struct ceph_client *cl = mdsc->fsc->client;
904 sym = kmalloc(enclen + 1, GFP_NOFS);
908 declen = ceph_base64_decode(encsym, enclen, sym);
911 "can't decode symlink (%d). Content: %.*s\n",
912 declen, enclen, encsym);
916 sym[declen + 1] = '\0';
921 static int decode_encrypted_symlink(struct ceph_mds_client *mdsc,
923 int symlen, u8 **decsym)
930 * Populate an inode based on info from mds. May be called on new or
933 int ceph_fill_inode(struct inode *inode, struct page *locked_page,
934 struct ceph_mds_reply_info_in *iinfo,
935 struct ceph_mds_reply_dirfrag *dirinfo,
936 struct ceph_mds_session *session, int cap_fmode,
937 struct ceph_cap_reservation *caps_reservation)
939 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
940 struct ceph_client *cl = mdsc->fsc->client;
941 struct ceph_mds_reply_inode *info = iinfo->in;
942 struct ceph_inode_info *ci = ceph_inode(inode);
943 int issued, new_issued, info_caps;
944 struct timespec64 mtime, atime, ctime;
945 struct ceph_buffer *xattr_blob = NULL;
946 struct ceph_buffer *old_blob = NULL;
947 struct ceph_string *pool_ns = NULL;
948 struct ceph_cap *new_cap = NULL;
951 bool queue_trunc = false;
952 bool new_version = false;
953 bool fill_inline = false;
954 umode_t mode = le32_to_cpu(info->mode);
955 dev_t rdev = le32_to_cpu(info->rdev);
957 lockdep_assert_held(&mdsc->snap_rwsem);
959 doutc(cl, "%p ino %llx.%llx v %llu had %llu\n", inode, ceph_vinop(inode),
960 le64_to_cpu(info->version), ci->i_version);
962 /* Once I_NEW is cleared, we can't change type or dev numbers */
963 if (inode->i_state & I_NEW) {
964 inode->i_mode = mode;
966 if (inode_wrong_type(inode, mode)) {
967 pr_warn_once_client(cl,
968 "inode type changed! (ino %llx.%llx is 0%o, mds says 0%o)\n",
969 ceph_vinop(inode), inode->i_mode, mode);
973 if ((S_ISCHR(mode) || S_ISBLK(mode)) && inode->i_rdev != rdev) {
974 pr_warn_once_client(cl,
975 "dev inode rdev changed! (ino %llx.%llx is %u:%u, mds says %u:%u)\n",
976 ceph_vinop(inode), MAJOR(inode->i_rdev),
977 MINOR(inode->i_rdev), MAJOR(rdev),
983 info_caps = le32_to_cpu(info->cap.caps);
985 /* prealloc new cap struct */
986 if (info_caps && ceph_snap(inode) == CEPH_NOSNAP) {
987 new_cap = ceph_get_cap(mdsc, caps_reservation);
993 * prealloc xattr data, if it looks like we'll need it. only
994 * if len > 4 (meaning there are actually xattrs; the first 4
995 * bytes are the xattr count).
997 if (iinfo->xattr_len > 4) {
998 xattr_blob = ceph_buffer_new(iinfo->xattr_len, GFP_NOFS);
1000 pr_err_client(cl, "ENOMEM xattr blob %d bytes\n",
1004 if (iinfo->pool_ns_len > 0)
1005 pool_ns = ceph_find_or_create_string(iinfo->pool_ns_data,
1006 iinfo->pool_ns_len);
1008 if (ceph_snap(inode) != CEPH_NOSNAP && !ci->i_snapid_map)
1009 ci->i_snapid_map = ceph_get_snapid_map(mdsc, ceph_snap(inode));
1011 spin_lock(&ci->i_ceph_lock);
1014 * provided version will be odd if inode value is projected,
1015 * even if stable. skip the update if we have newer stable
1016 * info (ours>=theirs, e.g. due to racing mds replies), unless
1017 * we are getting projected (unstable) info (in which case the
1018 * version is odd, and we want ours>theirs).
1024 if (ci->i_version == 0 ||
1025 ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
1026 le64_to_cpu(info->version) > (ci->i_version & ~1)))
1029 /* Update change_attribute */
1030 inode_set_max_iversion_raw(inode, iinfo->change_attr);
1032 __ceph_caps_issued(ci, &issued);
1033 issued |= __ceph_caps_dirty(ci);
1034 new_issued = ~issued & info_caps;
1036 __ceph_update_quota(ci, iinfo->max_bytes, iinfo->max_files);
1038 #ifdef CONFIG_FS_ENCRYPTION
1039 if (iinfo->fscrypt_auth_len &&
1040 ((inode->i_state & I_NEW) || (ci->fscrypt_auth_len == 0))) {
1041 kfree(ci->fscrypt_auth);
1042 ci->fscrypt_auth_len = iinfo->fscrypt_auth_len;
1043 ci->fscrypt_auth = iinfo->fscrypt_auth;
1044 iinfo->fscrypt_auth = NULL;
1045 iinfo->fscrypt_auth_len = 0;
1046 inode_set_flags(inode, S_ENCRYPTED, S_ENCRYPTED);
1050 if ((new_version || (new_issued & CEPH_CAP_AUTH_SHARED)) &&
1051 (issued & CEPH_CAP_AUTH_EXCL) == 0) {
1052 inode->i_mode = mode;
1053 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(info->uid));
1054 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(info->gid));
1055 doutc(cl, "%p %llx.%llx mode 0%o uid.gid %d.%d\n", inode,
1056 ceph_vinop(inode), inode->i_mode,
1057 from_kuid(&init_user_ns, inode->i_uid),
1058 from_kgid(&init_user_ns, inode->i_gid));
1059 ceph_decode_timespec64(&ci->i_btime, &iinfo->btime);
1060 ceph_decode_timespec64(&ci->i_snap_btime, &iinfo->snap_btime);
1063 /* directories have fl_stripe_unit set to zero */
1064 if (IS_ENCRYPTED(inode))
1065 inode->i_blkbits = CEPH_FSCRYPT_BLOCK_SHIFT;
1066 else if (le32_to_cpu(info->layout.fl_stripe_unit))
1068 fls(le32_to_cpu(info->layout.fl_stripe_unit)) - 1;
1070 inode->i_blkbits = CEPH_BLOCK_SHIFT;
1072 if ((new_version || (new_issued & CEPH_CAP_LINK_SHARED)) &&
1073 (issued & CEPH_CAP_LINK_EXCL) == 0)
1074 set_nlink(inode, le32_to_cpu(info->nlink));
1076 if (new_version || (new_issued & CEPH_CAP_ANY_RD)) {
1077 /* be careful with mtime, atime, size */
1078 ceph_decode_timespec64(&atime, &info->atime);
1079 ceph_decode_timespec64(&mtime, &info->mtime);
1080 ceph_decode_timespec64(&ctime, &info->ctime);
1081 ceph_fill_file_time(inode, issued,
1082 le32_to_cpu(info->time_warp_seq),
1083 &ctime, &mtime, &atime);
1086 if (new_version || (info_caps & CEPH_CAP_FILE_SHARED)) {
1087 ci->i_files = le64_to_cpu(info->files);
1088 ci->i_subdirs = le64_to_cpu(info->subdirs);
1092 (new_issued & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
1093 u64 size = le64_to_cpu(info->size);
1094 s64 old_pool = ci->i_layout.pool_id;
1095 struct ceph_string *old_ns;
1097 ceph_file_layout_from_legacy(&ci->i_layout, &info->layout);
1098 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
1099 lockdep_is_held(&ci->i_ceph_lock));
1100 rcu_assign_pointer(ci->i_layout.pool_ns, pool_ns);
1102 if (ci->i_layout.pool_id != old_pool || pool_ns != old_ns)
1103 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
1107 if (IS_ENCRYPTED(inode) && size &&
1108 iinfo->fscrypt_file_len == sizeof(__le64)) {
1109 u64 fsize = __le64_to_cpu(*(__le64 *)iinfo->fscrypt_file);
1111 if (size == round_up(fsize, CEPH_FSCRYPT_BLOCK_SIZE)) {
1115 "fscrypt size mismatch: size=%llu fscrypt_file=%llu, discarding fscrypt_file size.\n",
1120 queue_trunc = ceph_fill_file_size(inode, issued,
1121 le32_to_cpu(info->truncate_seq),
1122 le64_to_cpu(info->truncate_size),
1124 /* only update max_size on auth cap */
1125 if ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
1126 ci->i_max_size != le64_to_cpu(info->max_size)) {
1127 doutc(cl, "max_size %lld -> %llu\n",
1128 ci->i_max_size, le64_to_cpu(info->max_size));
1129 ci->i_max_size = le64_to_cpu(info->max_size);
1133 /* layout and rstat are not tracked by capability, update them if
1134 * the inode info is from auth mds */
1135 if (new_version || (info->cap.flags & CEPH_CAP_FLAG_AUTH)) {
1136 if (S_ISDIR(inode->i_mode)) {
1137 ci->i_dir_layout = iinfo->dir_layout;
1138 ci->i_rbytes = le64_to_cpu(info->rbytes);
1139 ci->i_rfiles = le64_to_cpu(info->rfiles);
1140 ci->i_rsubdirs = le64_to_cpu(info->rsubdirs);
1141 ci->i_dir_pin = iinfo->dir_pin;
1142 ci->i_rsnaps = iinfo->rsnaps;
1143 ceph_decode_timespec64(&ci->i_rctime, &info->rctime);
1148 /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
1149 if ((ci->i_xattrs.version == 0 || !(issued & CEPH_CAP_XATTR_EXCL)) &&
1150 le64_to_cpu(info->xattr_version) > ci->i_xattrs.version) {
1151 if (ci->i_xattrs.blob)
1152 old_blob = ci->i_xattrs.blob;
1153 ci->i_xattrs.blob = xattr_blob;
1155 memcpy(ci->i_xattrs.blob->vec.iov_base,
1156 iinfo->xattr_data, iinfo->xattr_len);
1157 ci->i_xattrs.version = le64_to_cpu(info->xattr_version);
1158 ceph_forget_all_cached_acls(inode);
1159 ceph_security_invalidate_secctx(inode);
1163 /* finally update i_version */
1164 if (le64_to_cpu(info->version) > ci->i_version)
1165 ci->i_version = le64_to_cpu(info->version);
1167 inode->i_mapping->a_ops = &ceph_aops;
1169 switch (inode->i_mode & S_IFMT) {
1174 inode->i_blkbits = PAGE_SHIFT;
1175 init_special_inode(inode, inode->i_mode, rdev);
1176 inode->i_op = &ceph_file_iops;
1179 inode->i_op = &ceph_file_iops;
1180 inode->i_fop = &ceph_file_fops;
1183 if (!ci->i_symlink) {
1184 u32 symlen = iinfo->symlink_len;
1187 spin_unlock(&ci->i_ceph_lock);
1189 if (IS_ENCRYPTED(inode)) {
1190 if (symlen != i_size_read(inode))
1192 "%p %llx.%llx BAD symlink size %lld\n",
1193 inode, ceph_vinop(inode),
1194 i_size_read(inode));
1196 err = decode_encrypted_symlink(mdsc, iinfo->symlink,
1197 symlen, (u8 **)&sym);
1200 "decoding encrypted symlink failed: %d\n",
1205 i_size_write(inode, symlen);
1206 inode->i_blocks = calc_inode_blocks(symlen);
1208 if (symlen != i_size_read(inode)) {
1210 "%p %llx.%llx BAD symlink size %lld\n",
1211 inode, ceph_vinop(inode),
1212 i_size_read(inode));
1213 i_size_write(inode, symlen);
1214 inode->i_blocks = calc_inode_blocks(symlen);
1218 sym = kstrndup(iinfo->symlink, symlen, GFP_NOFS);
1223 spin_lock(&ci->i_ceph_lock);
1225 ci->i_symlink = sym;
1227 kfree(sym); /* lost a race */
1230 if (IS_ENCRYPTED(inode)) {
1232 * Encrypted symlinks need to be decrypted before we can
1233 * cache their targets in i_link. Don't touch it here.
1235 inode->i_op = &ceph_encrypted_symlink_iops;
1237 inode->i_link = ci->i_symlink;
1238 inode->i_op = &ceph_symlink_iops;
1242 inode->i_op = &ceph_dir_iops;
1243 inode->i_fop = &ceph_dir_fops;
1246 pr_err_client(cl, "%p %llx.%llx BAD mode 0%o\n", inode,
1247 ceph_vinop(inode), inode->i_mode);
1250 /* were we issued a capability? */
1252 if (ceph_snap(inode) == CEPH_NOSNAP) {
1253 ceph_add_cap(inode, session,
1254 le64_to_cpu(info->cap.cap_id),
1256 le32_to_cpu(info->cap.wanted),
1257 le32_to_cpu(info->cap.seq),
1258 le32_to_cpu(info->cap.mseq),
1259 le64_to_cpu(info->cap.realm),
1260 info->cap.flags, &new_cap);
1262 /* set dir completion flag? */
1263 if (S_ISDIR(inode->i_mode) &&
1264 ci->i_files == 0 && ci->i_subdirs == 0 &&
1265 (info_caps & CEPH_CAP_FILE_SHARED) &&
1266 (issued & CEPH_CAP_FILE_EXCL) == 0 &&
1267 !__ceph_dir_is_complete(ci)) {
1268 doutc(cl, " marking %p complete (empty)\n",
1270 i_size_write(inode, 0);
1271 __ceph_dir_set_complete(ci,
1272 atomic64_read(&ci->i_release_count),
1273 atomic64_read(&ci->i_ordered_count));
1278 doutc(cl, " %p got snap_caps %s\n", inode,
1279 ceph_cap_string(info_caps));
1280 ci->i_snap_caps |= info_caps;
1284 if (iinfo->inline_version > 0 &&
1285 iinfo->inline_version >= ci->i_inline_version) {
1286 int cache_caps = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1287 ci->i_inline_version = iinfo->inline_version;
1288 if (ceph_has_inline_data(ci) &&
1289 (locked_page || (info_caps & cache_caps)))
1293 if (cap_fmode >= 0) {
1295 pr_warn_client(cl, "mds issued no caps on %llx.%llx\n",
1297 __ceph_touch_fmode(ci, mdsc, cap_fmode);
1300 spin_unlock(&ci->i_ceph_lock);
1302 ceph_fscache_register_inode_cookie(inode);
1305 ceph_fill_inline_data(inode, locked_page,
1306 iinfo->inline_data, iinfo->inline_len);
1309 wake_up_all(&ci->i_cap_wq);
1311 /* queue truncate if we saw i_size decrease */
1313 ceph_queue_vmtruncate(inode);
1315 /* populate frag tree */
1316 if (S_ISDIR(inode->i_mode))
1317 ceph_fill_fragtree(inode, &info->fragtree, dirinfo);
1319 /* update delegation info? */
1321 ceph_fill_dirfrag(inode, dirinfo);
1326 ceph_put_cap(mdsc, new_cap);
1327 ceph_buffer_put(old_blob);
1328 ceph_buffer_put(xattr_blob);
1329 ceph_put_string(pool_ns);
1334 * caller should hold session s_mutex and dentry->d_lock.
1336 static void __update_dentry_lease(struct inode *dir, struct dentry *dentry,
1337 struct ceph_mds_reply_lease *lease,
1338 struct ceph_mds_session *session,
1339 unsigned long from_time,
1340 struct ceph_mds_session **old_lease_session)
1342 struct ceph_client *cl = ceph_inode_to_client(dir);
1343 struct ceph_dentry_info *di = ceph_dentry(dentry);
1344 unsigned mask = le16_to_cpu(lease->mask);
1345 long unsigned duration = le32_to_cpu(lease->duration_ms);
1346 long unsigned ttl = from_time + (duration * HZ) / 1000;
1347 long unsigned half_ttl = from_time + (duration * HZ / 2) / 1000;
1349 doutc(cl, "%p duration %lu ms ttl %lu\n", dentry, duration, ttl);
1351 /* only track leases on regular dentries */
1352 if (ceph_snap(dir) != CEPH_NOSNAP)
1355 if (mask & CEPH_LEASE_PRIMARY_LINK)
1356 di->flags |= CEPH_DENTRY_PRIMARY_LINK;
1358 di->flags &= ~CEPH_DENTRY_PRIMARY_LINK;
1360 di->lease_shared_gen = atomic_read(&ceph_inode(dir)->i_shared_gen);
1361 if (!(mask & CEPH_LEASE_VALID)) {
1362 __ceph_dentry_dir_lease_touch(di);
1366 if (di->lease_gen == atomic_read(&session->s_cap_gen) &&
1367 time_before(ttl, di->time))
1368 return; /* we already have a newer lease. */
1370 if (di->lease_session && di->lease_session != session) {
1371 *old_lease_session = di->lease_session;
1372 di->lease_session = NULL;
1375 if (!di->lease_session)
1376 di->lease_session = ceph_get_mds_session(session);
1377 di->lease_gen = atomic_read(&session->s_cap_gen);
1378 di->lease_seq = le32_to_cpu(lease->seq);
1379 di->lease_renew_after = half_ttl;
1380 di->lease_renew_from = 0;
1383 __ceph_dentry_lease_touch(di);
1386 static inline void update_dentry_lease(struct inode *dir, struct dentry *dentry,
1387 struct ceph_mds_reply_lease *lease,
1388 struct ceph_mds_session *session,
1389 unsigned long from_time)
1391 struct ceph_mds_session *old_lease_session = NULL;
1392 spin_lock(&dentry->d_lock);
1393 __update_dentry_lease(dir, dentry, lease, session, from_time,
1394 &old_lease_session);
1395 spin_unlock(&dentry->d_lock);
1396 ceph_put_mds_session(old_lease_session);
1400 * update dentry lease without having parent inode locked
1402 static void update_dentry_lease_careful(struct dentry *dentry,
1403 struct ceph_mds_reply_lease *lease,
1404 struct ceph_mds_session *session,
1405 unsigned long from_time,
1406 char *dname, u32 dname_len,
1407 struct ceph_vino *pdvino,
1408 struct ceph_vino *ptvino)
1412 struct ceph_mds_session *old_lease_session = NULL;
1414 spin_lock(&dentry->d_lock);
1415 /* make sure dentry's name matches target */
1416 if (dentry->d_name.len != dname_len ||
1417 memcmp(dentry->d_name.name, dname, dname_len))
1420 dir = d_inode(dentry->d_parent);
1421 /* make sure parent matches dvino */
1422 if (!ceph_ino_compare(dir, pdvino))
1425 /* make sure dentry's inode matches target. NULL ptvino means that
1426 * we expect a negative dentry */
1428 if (d_really_is_negative(dentry))
1430 if (!ceph_ino_compare(d_inode(dentry), ptvino))
1433 if (d_really_is_positive(dentry))
1437 __update_dentry_lease(dir, dentry, lease, session,
1438 from_time, &old_lease_session);
1440 spin_unlock(&dentry->d_lock);
1441 ceph_put_mds_session(old_lease_session);
1445 * splice a dentry to an inode.
1446 * caller must hold directory i_rwsem for this to be safe.
1448 static int splice_dentry(struct dentry **pdn, struct inode *in)
1450 struct ceph_client *cl = ceph_inode_to_client(in);
1451 struct dentry *dn = *pdn;
1452 struct dentry *realdn;
1454 BUG_ON(d_inode(dn));
1456 if (S_ISDIR(in->i_mode)) {
1457 /* If inode is directory, d_splice_alias() below will remove
1458 * 'realdn' from its origin parent. We need to ensure that
1459 * origin parent's readdir cache will not reference 'realdn'
1461 realdn = d_find_any_alias(in);
1463 struct ceph_dentry_info *di = ceph_dentry(realdn);
1464 spin_lock(&realdn->d_lock);
1466 realdn->d_op->d_prune(realdn);
1469 di->lease_shared_gen = 0;
1472 spin_unlock(&realdn->d_lock);
1477 /* dn must be unhashed */
1478 if (!d_unhashed(dn))
1480 realdn = d_splice_alias(in, dn);
1481 if (IS_ERR(realdn)) {
1482 pr_err_client(cl, "error %ld %p inode %p ino %llx.%llx\n",
1483 PTR_ERR(realdn), dn, in, ceph_vinop(in));
1484 return PTR_ERR(realdn);
1488 doutc(cl, "dn %p (%d) spliced with %p (%d) inode %p ino %llx.%llx\n",
1489 dn, d_count(dn), realdn, d_count(realdn),
1490 d_inode(realdn), ceph_vinop(d_inode(realdn)));
1494 BUG_ON(!ceph_dentry(dn));
1495 doutc(cl, "dn %p attached to %p ino %llx.%llx\n", dn,
1496 d_inode(dn), ceph_vinop(d_inode(dn)));
1502 * Incorporate results into the local cache. This is either just
1503 * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
1506 * A reply may contain
1507 * a directory inode along with a dentry.
1508 * and/or a target inode
1510 * Called with snap_rwsem (read).
1512 int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req)
1514 struct ceph_mds_session *session = req->r_session;
1515 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1516 struct inode *in = NULL;
1517 struct ceph_vino tvino, dvino;
1518 struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
1519 struct ceph_client *cl = fsc->client;
1522 doutc(cl, "%p is_dentry %d is_target %d\n", req,
1523 rinfo->head->is_dentry, rinfo->head->is_target);
1525 if (!rinfo->head->is_target && !rinfo->head->is_dentry) {
1526 doutc(cl, "reply is empty!\n");
1527 if (rinfo->head->result == 0 && req->r_parent)
1528 ceph_invalidate_dir_request(req);
1532 if (rinfo->head->is_dentry) {
1533 struct inode *dir = req->r_parent;
1536 err = ceph_fill_inode(dir, NULL, &rinfo->diri,
1537 rinfo->dirfrag, session, -1,
1538 &req->r_caps_reservation);
1545 if (dir && req->r_op == CEPH_MDS_OP_LOOKUPNAME &&
1546 test_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags) &&
1547 !test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
1548 bool is_nokey = false;
1550 struct dentry *dn, *parent;
1551 struct fscrypt_str oname = FSTR_INIT(NULL, 0);
1552 struct ceph_fname fname = { .dir = dir,
1553 .name = rinfo->dname,
1554 .ctext = rinfo->altname,
1555 .name_len = rinfo->dname_len,
1556 .ctext_len = rinfo->altname_len };
1558 BUG_ON(!rinfo->head->is_target);
1559 BUG_ON(req->r_dentry);
1561 parent = d_find_any_alias(dir);
1564 err = ceph_fname_alloc_buffer(dir, &oname);
1570 err = ceph_fname_to_usr(&fname, NULL, &oname, &is_nokey);
1573 ceph_fname_free_buffer(dir, &oname);
1576 dname.name = oname.name;
1577 dname.len = oname.len;
1578 dname.hash = full_name_hash(parent, dname.name, dname.len);
1579 tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
1580 tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
1582 dn = d_lookup(parent, &dname);
1583 doutc(cl, "d_lookup on parent=%p name=%.*s got %p\n",
1584 parent, dname.len, dname.name, dn);
1587 dn = d_alloc(parent, &dname);
1588 doutc(cl, "d_alloc %p '%.*s' = %p\n", parent,
1589 dname.len, dname.name, dn);
1592 ceph_fname_free_buffer(dir, &oname);
1597 spin_lock(&dn->d_lock);
1598 dn->d_flags |= DCACHE_NOKEY_NAME;
1599 spin_unlock(&dn->d_lock);
1602 } else if (d_really_is_positive(dn) &&
1603 (ceph_ino(d_inode(dn)) != tvino.ino ||
1604 ceph_snap(d_inode(dn)) != tvino.snap)) {
1605 doutc(cl, " dn %p points to wrong inode %p\n",
1607 ceph_dir_clear_ordered(dir);
1612 ceph_fname_free_buffer(dir, &oname);
1619 if (rinfo->head->is_target) {
1620 /* Should be filled in by handle_reply */
1621 BUG_ON(!req->r_target_inode);
1623 in = req->r_target_inode;
1624 err = ceph_fill_inode(in, req->r_locked_page, &rinfo->targeti,
1626 (!test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags) &&
1627 !test_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags) &&
1628 rinfo->head->result == 0) ? req->r_fmode : -1,
1629 &req->r_caps_reservation);
1631 pr_err_client(cl, "badness %p %llx.%llx\n", in,
1633 req->r_target_inode = NULL;
1634 if (in->i_state & I_NEW)
1635 discard_new_inode(in);
1640 if (in->i_state & I_NEW)
1641 unlock_new_inode(in);
1645 * ignore null lease/binding on snapdir ENOENT, or else we
1646 * will have trouble splicing in the virtual snapdir later
1648 if (rinfo->head->is_dentry &&
1649 !test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags) &&
1650 test_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags) &&
1651 (rinfo->head->is_target || strncmp(req->r_dentry->d_name.name,
1652 fsc->mount_options->snapdir_name,
1653 req->r_dentry->d_name.len))) {
1655 * lookup link rename : null -> possibly existing inode
1656 * mknod symlink mkdir : null -> new inode
1657 * unlink : linked -> null
1659 struct inode *dir = req->r_parent;
1660 struct dentry *dn = req->r_dentry;
1661 bool have_dir_cap, have_lease;
1665 BUG_ON(d_inode(dn->d_parent) != dir);
1667 dvino.ino = le64_to_cpu(rinfo->diri.in->ino);
1668 dvino.snap = le64_to_cpu(rinfo->diri.in->snapid);
1670 BUG_ON(ceph_ino(dir) != dvino.ino);
1671 BUG_ON(ceph_snap(dir) != dvino.snap);
1673 /* do we have a lease on the whole dir? */
1675 (le32_to_cpu(rinfo->diri.in->cap.caps) &
1676 CEPH_CAP_FILE_SHARED);
1678 /* do we have a dn lease? */
1679 have_lease = have_dir_cap ||
1680 le32_to_cpu(rinfo->dlease->duration_ms);
1682 doutc(cl, "no dentry lease or dir cap\n");
1685 if (req->r_old_dentry && req->r_op == CEPH_MDS_OP_RENAME) {
1686 struct inode *olddir = req->r_old_dentry_dir;
1689 doutc(cl, " src %p '%pd' dst %p '%pd'\n",
1690 req->r_old_dentry, req->r_old_dentry, dn, dn);
1691 doutc(cl, "doing d_move %p -> %p\n", req->r_old_dentry, dn);
1693 /* d_move screws up sibling dentries' offsets */
1694 ceph_dir_clear_ordered(dir);
1695 ceph_dir_clear_ordered(olddir);
1697 d_move(req->r_old_dentry, dn);
1698 doutc(cl, " src %p '%pd' dst %p '%pd'\n",
1699 req->r_old_dentry, req->r_old_dentry, dn, dn);
1701 /* ensure target dentry is invalidated, despite
1702 rehashing bug in vfs_rename_dir */
1703 ceph_invalidate_dentry_lease(dn);
1705 doutc(cl, "dn %p gets new offset %lld\n",
1707 ceph_dentry(req->r_old_dentry)->offset);
1709 /* swap r_dentry and r_old_dentry in case that
1710 * splice_dentry() gets called later. This is safe
1711 * because no other place will use them */
1712 req->r_dentry = req->r_old_dentry;
1713 req->r_old_dentry = dn;
1718 if (!rinfo->head->is_target) {
1719 doutc(cl, "null dentry\n");
1720 if (d_really_is_positive(dn)) {
1721 doutc(cl, "d_delete %p\n", dn);
1722 ceph_dir_clear_ordered(dir);
1724 } else if (have_lease) {
1729 if (!d_unhashed(dn) && have_lease)
1730 update_dentry_lease(dir, dn,
1731 rinfo->dlease, session,
1732 req->r_request_started);
1736 /* attach proper inode */
1737 if (d_really_is_negative(dn)) {
1738 ceph_dir_clear_ordered(dir);
1740 err = splice_dentry(&req->r_dentry, in);
1743 dn = req->r_dentry; /* may have spliced */
1744 } else if (d_really_is_positive(dn) && d_inode(dn) != in) {
1745 doutc(cl, " %p links to %p %llx.%llx, not %llx.%llx\n",
1746 dn, d_inode(dn), ceph_vinop(d_inode(dn)),
1753 update_dentry_lease(dir, dn,
1754 rinfo->dlease, session,
1755 req->r_request_started);
1757 doutc(cl, " final dn %p\n", dn);
1758 } else if ((req->r_op == CEPH_MDS_OP_LOOKUPSNAP ||
1759 req->r_op == CEPH_MDS_OP_MKSNAP) &&
1760 test_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags) &&
1761 !test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
1762 struct inode *dir = req->r_parent;
1764 /* fill out a snapdir LOOKUPSNAP dentry */
1766 BUG_ON(ceph_snap(dir) != CEPH_SNAPDIR);
1767 BUG_ON(!req->r_dentry);
1768 doutc(cl, " linking snapped dir %p to dn %p\n", in,
1770 ceph_dir_clear_ordered(dir);
1772 err = splice_dentry(&req->r_dentry, in);
1775 } else if (rinfo->head->is_dentry && req->r_dentry) {
1776 /* parent inode is not locked, be carefull */
1777 struct ceph_vino *ptvino = NULL;
1778 dvino.ino = le64_to_cpu(rinfo->diri.in->ino);
1779 dvino.snap = le64_to_cpu(rinfo->diri.in->snapid);
1780 if (rinfo->head->is_target) {
1781 tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
1782 tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
1785 update_dentry_lease_careful(req->r_dentry, rinfo->dlease,
1786 session, req->r_request_started,
1787 rinfo->dname, rinfo->dname_len,
1791 doutc(cl, "done err=%d\n", err);
1796 * Prepopulate our cache with readdir results, leases, etc.
1798 static int readdir_prepopulate_inodes_only(struct ceph_mds_request *req,
1799 struct ceph_mds_session *session)
1801 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1802 struct ceph_client *cl = session->s_mdsc->fsc->client;
1805 for (i = 0; i < rinfo->dir_nr; i++) {
1806 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
1807 struct ceph_vino vino;
1811 vino.ino = le64_to_cpu(rde->inode.in->ino);
1812 vino.snap = le64_to_cpu(rde->inode.in->snapid);
1814 in = ceph_get_inode(req->r_dentry->d_sb, vino, NULL);
1817 doutc(cl, "badness got %d\n", err);
1820 rc = ceph_fill_inode(in, NULL, &rde->inode, NULL, session,
1821 -1, &req->r_caps_reservation);
1823 pr_err_client(cl, "inode badness on %p got %d\n", in,
1826 if (in->i_state & I_NEW) {
1828 discard_new_inode(in);
1830 } else if (in->i_state & I_NEW) {
1831 unlock_new_inode(in);
1840 void ceph_readdir_cache_release(struct ceph_readdir_cache_control *ctl)
1844 put_page(ctl->page);
1849 static int fill_readdir_cache(struct inode *dir, struct dentry *dn,
1850 struct ceph_readdir_cache_control *ctl,
1851 struct ceph_mds_request *req)
1853 struct ceph_client *cl = ceph_inode_to_client(dir);
1854 struct ceph_inode_info *ci = ceph_inode(dir);
1855 unsigned nsize = PAGE_SIZE / sizeof(struct dentry*);
1856 unsigned idx = ctl->index % nsize;
1857 pgoff_t pgoff = ctl->index / nsize;
1859 if (!ctl->page || pgoff != page_index(ctl->page)) {
1860 ceph_readdir_cache_release(ctl);
1862 ctl->page = grab_cache_page(&dir->i_data, pgoff);
1864 ctl->page = find_lock_page(&dir->i_data, pgoff);
1867 return idx == 0 ? -ENOMEM : 0;
1869 /* reading/filling the cache are serialized by
1870 * i_rwsem, no need to use page lock */
1871 unlock_page(ctl->page);
1872 ctl->dentries = kmap(ctl->page);
1874 memset(ctl->dentries, 0, PAGE_SIZE);
1877 if (req->r_dir_release_cnt == atomic64_read(&ci->i_release_count) &&
1878 req->r_dir_ordered_cnt == atomic64_read(&ci->i_ordered_count)) {
1879 doutc(cl, "dn %p idx %d\n", dn, ctl->index);
1880 ctl->dentries[idx] = dn;
1883 doutc(cl, "disable readdir cache\n");
1889 int ceph_readdir_prepopulate(struct ceph_mds_request *req,
1890 struct ceph_mds_session *session)
1892 struct dentry *parent = req->r_dentry;
1893 struct inode *inode = d_inode(parent);
1894 struct ceph_inode_info *ci = ceph_inode(inode);
1895 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1896 struct ceph_client *cl = session->s_mdsc->fsc->client;
1900 int err = 0, skipped = 0, ret, i;
1901 u32 frag = le32_to_cpu(req->r_args.readdir.frag);
1904 struct ceph_readdir_cache_control cache_ctl = {};
1906 if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags))
1907 return readdir_prepopulate_inodes_only(req, session);
1909 if (rinfo->hash_order) {
1911 last_hash = ceph_str_hash(ci->i_dir_layout.dl_dir_hash,
1913 strlen(req->r_path2));
1914 last_hash = ceph_frag_value(last_hash);
1915 } else if (rinfo->offset_hash) {
1916 /* mds understands offset_hash */
1917 WARN_ON_ONCE(req->r_readdir_offset != 2);
1918 last_hash = le32_to_cpu(req->r_args.readdir.offset_hash);
1922 if (rinfo->dir_dir &&
1923 le32_to_cpu(rinfo->dir_dir->frag) != frag) {
1924 doutc(cl, "got new frag %x -> %x\n", frag,
1925 le32_to_cpu(rinfo->dir_dir->frag));
1926 frag = le32_to_cpu(rinfo->dir_dir->frag);
1927 if (!rinfo->hash_order)
1928 req->r_readdir_offset = 2;
1931 if (le32_to_cpu(rinfo->head->op) == CEPH_MDS_OP_LSSNAP) {
1932 doutc(cl, "%d items under SNAPDIR dn %p\n",
1933 rinfo->dir_nr, parent);
1935 doutc(cl, "%d items under dn %p\n", rinfo->dir_nr, parent);
1937 ceph_fill_dirfrag(d_inode(parent), rinfo->dir_dir);
1939 if (ceph_frag_is_leftmost(frag) &&
1940 req->r_readdir_offset == 2 &&
1941 !(rinfo->hash_order && last_hash)) {
1942 /* note dir version at start of readdir so we can
1943 * tell if any dentries get dropped */
1944 req->r_dir_release_cnt =
1945 atomic64_read(&ci->i_release_count);
1946 req->r_dir_ordered_cnt =
1947 atomic64_read(&ci->i_ordered_count);
1948 req->r_readdir_cache_idx = 0;
1952 cache_ctl.index = req->r_readdir_cache_idx;
1953 fpos_offset = req->r_readdir_offset;
1955 /* FIXME: release caps/leases if error occurs */
1956 for (i = 0; i < rinfo->dir_nr; i++) {
1957 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
1958 struct ceph_vino tvino;
1960 dname.name = rde->name;
1961 dname.len = rde->name_len;
1962 dname.hash = full_name_hash(parent, dname.name, dname.len);
1964 tvino.ino = le64_to_cpu(rde->inode.in->ino);
1965 tvino.snap = le64_to_cpu(rde->inode.in->snapid);
1967 if (rinfo->hash_order) {
1968 u32 hash = ceph_frag_value(rde->raw_hash);
1969 if (hash != last_hash)
1972 rde->offset = ceph_make_fpos(hash, fpos_offset++, true);
1974 rde->offset = ceph_make_fpos(frag, fpos_offset++, false);
1978 dn = d_lookup(parent, &dname);
1979 doutc(cl, "d_lookup on parent=%p name=%.*s got %p\n",
1980 parent, dname.len, dname.name, dn);
1983 dn = d_alloc(parent, &dname);
1984 doutc(cl, "d_alloc %p '%.*s' = %p\n", parent,
1985 dname.len, dname.name, dn);
1987 doutc(cl, "d_alloc badness\n");
1991 if (rde->is_nokey) {
1992 spin_lock(&dn->d_lock);
1993 dn->d_flags |= DCACHE_NOKEY_NAME;
1994 spin_unlock(&dn->d_lock);
1996 } else if (d_really_is_positive(dn) &&
1997 (ceph_ino(d_inode(dn)) != tvino.ino ||
1998 ceph_snap(d_inode(dn)) != tvino.snap)) {
1999 struct ceph_dentry_info *di = ceph_dentry(dn);
2000 doutc(cl, " dn %p points to wrong inode %p\n",
2003 spin_lock(&dn->d_lock);
2004 if (di->offset > 0 &&
2005 di->lease_shared_gen ==
2006 atomic_read(&ci->i_shared_gen)) {
2007 __ceph_dir_clear_ordered(ci);
2010 spin_unlock(&dn->d_lock);
2018 if (d_really_is_positive(dn)) {
2021 in = ceph_get_inode(parent->d_sb, tvino, NULL);
2023 doutc(cl, "new_inode badness\n");
2031 ret = ceph_fill_inode(in, NULL, &rde->inode, NULL, session,
2032 -1, &req->r_caps_reservation);
2034 pr_err_client(cl, "badness on %p %llx.%llx\n", in,
2036 if (d_really_is_negative(dn)) {
2037 if (in->i_state & I_NEW) {
2039 discard_new_inode(in);
2047 if (in->i_state & I_NEW)
2048 unlock_new_inode(in);
2050 if (d_really_is_negative(dn)) {
2051 if (ceph_security_xattr_deadlock(in)) {
2052 doutc(cl, " skip splicing dn %p to inode %p"
2053 " (security xattr deadlock)\n", dn, in);
2059 err = splice_dentry(&dn, in);
2064 ceph_dentry(dn)->offset = rde->offset;
2066 update_dentry_lease(d_inode(parent), dn,
2067 rde->lease, req->r_session,
2068 req->r_request_started);
2070 if (err == 0 && skipped == 0 && cache_ctl.index >= 0) {
2071 ret = fill_readdir_cache(d_inode(parent), dn,
2080 if (err == 0 && skipped == 0) {
2081 set_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags);
2082 req->r_readdir_cache_idx = cache_ctl.index;
2084 ceph_readdir_cache_release(&cache_ctl);
2085 doutc(cl, "done\n");
2089 bool ceph_inode_set_size(struct inode *inode, loff_t size)
2091 struct ceph_client *cl = ceph_inode_to_client(inode);
2092 struct ceph_inode_info *ci = ceph_inode(inode);
2095 spin_lock(&ci->i_ceph_lock);
2096 doutc(cl, "set_size %p %llu -> %llu\n", inode, i_size_read(inode), size);
2097 i_size_write(inode, size);
2098 ceph_fscache_update(inode);
2099 inode->i_blocks = calc_inode_blocks(size);
2101 ret = __ceph_should_report_size(ci);
2103 spin_unlock(&ci->i_ceph_lock);
2108 void ceph_queue_inode_work(struct inode *inode, int work_bit)
2110 struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2111 struct ceph_client *cl = fsc->client;
2112 struct ceph_inode_info *ci = ceph_inode(inode);
2113 set_bit(work_bit, &ci->i_work_mask);
2116 if (queue_work(fsc->inode_wq, &ci->i_work)) {
2117 doutc(cl, "%p %llx.%llx mask=%lx\n", inode,
2118 ceph_vinop(inode), ci->i_work_mask);
2120 doutc(cl, "%p %llx.%llx already queued, mask=%lx\n",
2121 inode, ceph_vinop(inode), ci->i_work_mask);
2126 static void ceph_do_invalidate_pages(struct inode *inode)
2128 struct ceph_client *cl = ceph_inode_to_client(inode);
2129 struct ceph_inode_info *ci = ceph_inode(inode);
2133 ceph_fscache_invalidate(inode, false);
2135 mutex_lock(&ci->i_truncate_mutex);
2137 if (ceph_inode_is_shutdown(inode)) {
2138 pr_warn_ratelimited_client(cl,
2139 "%p %llx.%llx is shut down\n", inode,
2141 mapping_set_error(inode->i_mapping, -EIO);
2142 truncate_pagecache(inode, 0);
2143 mutex_unlock(&ci->i_truncate_mutex);
2147 spin_lock(&ci->i_ceph_lock);
2148 doutc(cl, "%p %llx.%llx gen %d revoking %d\n", inode,
2149 ceph_vinop(inode), ci->i_rdcache_gen, ci->i_rdcache_revoking);
2150 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
2151 if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
2153 spin_unlock(&ci->i_ceph_lock);
2154 mutex_unlock(&ci->i_truncate_mutex);
2157 orig_gen = ci->i_rdcache_gen;
2158 spin_unlock(&ci->i_ceph_lock);
2160 if (invalidate_inode_pages2(inode->i_mapping) < 0) {
2161 pr_err_client(cl, "invalidate_inode_pages2 %llx.%llx failed\n",
2165 spin_lock(&ci->i_ceph_lock);
2166 if (orig_gen == ci->i_rdcache_gen &&
2167 orig_gen == ci->i_rdcache_revoking) {
2168 doutc(cl, "%p %llx.%llx gen %d successful\n", inode,
2169 ceph_vinop(inode), ci->i_rdcache_gen);
2170 ci->i_rdcache_revoking--;
2173 doutc(cl, "%p %llx.%llx gen %d raced, now %d revoking %d\n",
2174 inode, ceph_vinop(inode), orig_gen, ci->i_rdcache_gen,
2175 ci->i_rdcache_revoking);
2176 if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
2179 spin_unlock(&ci->i_ceph_lock);
2180 mutex_unlock(&ci->i_truncate_mutex);
2183 ceph_check_caps(ci, 0);
2187 * Make sure any pending truncation is applied before doing anything
2188 * that may depend on it.
2190 void __ceph_do_pending_vmtruncate(struct inode *inode)
2192 struct ceph_client *cl = ceph_inode_to_client(inode);
2193 struct ceph_inode_info *ci = ceph_inode(inode);
2195 int wrbuffer_refs, finish = 0;
2197 mutex_lock(&ci->i_truncate_mutex);
2199 spin_lock(&ci->i_ceph_lock);
2200 if (ci->i_truncate_pending == 0) {
2201 doutc(cl, "%p %llx.%llx none pending\n", inode,
2203 spin_unlock(&ci->i_ceph_lock);
2204 mutex_unlock(&ci->i_truncate_mutex);
2209 * make sure any dirty snapped pages are flushed before we
2210 * possibly truncate them.. so write AND block!
2212 if (ci->i_wrbuffer_ref_head < ci->i_wrbuffer_ref) {
2213 spin_unlock(&ci->i_ceph_lock);
2214 doutc(cl, "%p %llx.%llx flushing snaps first\n", inode,
2216 filemap_write_and_wait_range(&inode->i_data, 0,
2217 inode->i_sb->s_maxbytes);
2221 /* there should be no reader or writer */
2222 WARN_ON_ONCE(ci->i_rd_ref || ci->i_wr_ref);
2224 to = ci->i_truncate_pagecache_size;
2225 wrbuffer_refs = ci->i_wrbuffer_ref;
2226 doutc(cl, "%p %llx.%llx (%d) to %lld\n", inode, ceph_vinop(inode),
2227 ci->i_truncate_pending, to);
2228 spin_unlock(&ci->i_ceph_lock);
2230 ceph_fscache_resize(inode, to);
2231 truncate_pagecache(inode, to);
2233 spin_lock(&ci->i_ceph_lock);
2234 if (to == ci->i_truncate_pagecache_size) {
2235 ci->i_truncate_pending = 0;
2238 spin_unlock(&ci->i_ceph_lock);
2242 mutex_unlock(&ci->i_truncate_mutex);
2244 if (wrbuffer_refs == 0)
2245 ceph_check_caps(ci, 0);
2247 wake_up_all(&ci->i_cap_wq);
2250 static void ceph_inode_work(struct work_struct *work)
2252 struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
2254 struct inode *inode = &ci->netfs.inode;
2255 struct ceph_client *cl = ceph_inode_to_client(inode);
2257 if (test_and_clear_bit(CEPH_I_WORK_WRITEBACK, &ci->i_work_mask)) {
2258 doutc(cl, "writeback %p %llx.%llx\n", inode, ceph_vinop(inode));
2259 filemap_fdatawrite(&inode->i_data);
2261 if (test_and_clear_bit(CEPH_I_WORK_INVALIDATE_PAGES, &ci->i_work_mask))
2262 ceph_do_invalidate_pages(inode);
2264 if (test_and_clear_bit(CEPH_I_WORK_VMTRUNCATE, &ci->i_work_mask))
2265 __ceph_do_pending_vmtruncate(inode);
2267 if (test_and_clear_bit(CEPH_I_WORK_CHECK_CAPS, &ci->i_work_mask))
2268 ceph_check_caps(ci, 0);
2270 if (test_and_clear_bit(CEPH_I_WORK_FLUSH_SNAPS, &ci->i_work_mask))
2271 ceph_flush_snaps(ci, NULL);
2276 static const char *ceph_encrypted_get_link(struct dentry *dentry,
2277 struct inode *inode,
2278 struct delayed_call *done)
2280 struct ceph_inode_info *ci = ceph_inode(inode);
2283 return ERR_PTR(-ECHILD);
2285 return fscrypt_get_symlink(inode, ci->i_symlink, i_size_read(inode),
2289 static int ceph_encrypted_symlink_getattr(struct mnt_idmap *idmap,
2290 const struct path *path,
2291 struct kstat *stat, u32 request_mask,
2292 unsigned int query_flags)
2296 ret = ceph_getattr(idmap, path, stat, request_mask, query_flags);
2299 return fscrypt_symlink_getattr(path, stat);
2305 static const struct inode_operations ceph_symlink_iops = {
2306 .get_link = simple_get_link,
2307 .setattr = ceph_setattr,
2308 .getattr = ceph_getattr,
2309 .listxattr = ceph_listxattr,
2312 static const struct inode_operations ceph_encrypted_symlink_iops = {
2313 .get_link = ceph_encrypted_get_link,
2314 .setattr = ceph_setattr,
2315 .getattr = ceph_encrypted_symlink_getattr,
2316 .listxattr = ceph_listxattr,
2320 * Transfer the encrypted last block to the MDS and the MDS
2321 * will help update it when truncating a smaller size.
2323 * We don't support a PAGE_SIZE that is smaller than the
2324 * CEPH_FSCRYPT_BLOCK_SIZE.
2326 static int fill_fscrypt_truncate(struct inode *inode,
2327 struct ceph_mds_request *req,
2330 struct ceph_client *cl = ceph_inode_to_client(inode);
2331 struct ceph_inode_info *ci = ceph_inode(inode);
2332 int boff = attr->ia_size % CEPH_FSCRYPT_BLOCK_SIZE;
2333 loff_t pos, orig_pos = round_down(attr->ia_size,
2334 CEPH_FSCRYPT_BLOCK_SIZE);
2335 u64 block = orig_pos >> CEPH_FSCRYPT_BLOCK_SHIFT;
2336 struct ceph_pagelist *pagelist = NULL;
2337 struct kvec iov = {0};
2338 struct iov_iter iter;
2339 struct page *page = NULL;
2340 struct ceph_fscrypt_truncate_size_header header;
2342 int len = CEPH_FSCRYPT_BLOCK_SIZE;
2343 loff_t i_size = i_size_read(inode);
2344 int got, ret, issued;
2347 ret = __ceph_get_caps(inode, NULL, CEPH_CAP_FILE_RD, 0, -1, &got);
2351 issued = __ceph_caps_issued(ci, NULL);
2353 doutc(cl, "size %lld -> %lld got cap refs on %s, issued %s\n",
2354 i_size, attr->ia_size, ceph_cap_string(got),
2355 ceph_cap_string(issued));
2357 /* Try to writeback the dirty pagecaches */
2358 if (issued & (CEPH_CAP_FILE_BUFFER)) {
2359 loff_t lend = orig_pos + CEPH_FSCRYPT_BLOCK_SHIFT - 1;
2361 ret = filemap_write_and_wait_range(inode->i_mapping,
2367 page = __page_cache_alloc(GFP_KERNEL);
2373 pagelist = ceph_pagelist_alloc(GFP_KERNEL);
2379 iov.iov_base = kmap_local_page(page);
2381 iov_iter_kvec(&iter, READ, &iov, 1, len);
2384 ret = __ceph_sync_read(inode, &pos, &iter, &retry_op, &objver);
2388 /* Insert the header first */
2391 header.change_attr = cpu_to_le64(inode_peek_iversion_raw(inode));
2394 * Always set the block_size to CEPH_FSCRYPT_BLOCK_SIZE,
2395 * because in MDS it may need this to do the truncate.
2397 header.block_size = cpu_to_le32(CEPH_FSCRYPT_BLOCK_SIZE);
2400 * If we hit a hole here, we should just skip filling
2401 * the fscrypt for the request, because once the fscrypt
2402 * is enabled, the file will be split into many blocks
2403 * with the size of CEPH_FSCRYPT_BLOCK_SIZE, if there
2404 * has a hole, the hole size should be multiple of block
2407 * If the Rados object doesn't exist, it will be set to 0.
2410 doutc(cl, "hit hole, ppos %lld < size %lld\n", pos, i_size);
2412 header.data_len = cpu_to_le32(8 + 8 + 4);
2413 header.file_offset = 0;
2416 header.data_len = cpu_to_le32(8 + 8 + 4 + CEPH_FSCRYPT_BLOCK_SIZE);
2417 header.file_offset = cpu_to_le64(orig_pos);
2419 doutc(cl, "encrypt block boff/bsize %d/%lu\n", boff,
2420 CEPH_FSCRYPT_BLOCK_SIZE);
2422 /* truncate and zero out the extra contents for the last block */
2423 memset(iov.iov_base + boff, 0, PAGE_SIZE - boff);
2425 /* encrypt the last block */
2426 ret = ceph_fscrypt_encrypt_block_inplace(inode, page,
2427 CEPH_FSCRYPT_BLOCK_SIZE,
2434 /* Insert the header */
2435 ret = ceph_pagelist_append(pagelist, &header, sizeof(header));
2439 if (header.block_size) {
2440 /* Append the last block contents to pagelist */
2441 ret = ceph_pagelist_append(pagelist, iov.iov_base,
2442 CEPH_FSCRYPT_BLOCK_SIZE);
2446 req->r_pagelist = pagelist;
2448 doutc(cl, "%p %llx.%llx size dropping cap refs on %s\n", inode,
2449 ceph_vinop(inode), ceph_cap_string(got));
2450 ceph_put_cap_refs(ci, got);
2452 kunmap_local(iov.iov_base);
2454 __free_pages(page, 0);
2455 if (ret && pagelist)
2456 ceph_pagelist_release(pagelist);
2460 int __ceph_setattr(struct inode *inode, struct iattr *attr,
2461 struct ceph_iattr *cia)
2463 struct ceph_inode_info *ci = ceph_inode(inode);
2464 unsigned int ia_valid = attr->ia_valid;
2465 struct ceph_mds_request *req;
2466 struct ceph_mds_client *mdsc = ceph_sb_to_fs_client(inode->i_sb)->mdsc;
2467 struct ceph_client *cl = ceph_inode_to_client(inode);
2468 struct ceph_cap_flush *prealloc_cf;
2469 loff_t isize = i_size_read(inode);
2471 int release = 0, dirtied = 0;
2474 int inode_dirty_flags = 0;
2475 bool lock_snap_rwsem = false;
2477 int truncate_retry = 20; /* The RMW will take around 50ms */
2480 prealloc_cf = ceph_alloc_cap_flush();
2484 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETATTR,
2487 ceph_free_cap_flush(prealloc_cf);
2488 return PTR_ERR(req);
2491 fill_fscrypt = false;
2492 spin_lock(&ci->i_ceph_lock);
2493 issued = __ceph_caps_issued(ci, NULL);
2495 if (!ci->i_head_snapc &&
2496 (issued & (CEPH_CAP_ANY_EXCL | CEPH_CAP_FILE_WR))) {
2497 lock_snap_rwsem = true;
2498 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2499 spin_unlock(&ci->i_ceph_lock);
2500 down_read(&mdsc->snap_rwsem);
2501 spin_lock(&ci->i_ceph_lock);
2502 issued = __ceph_caps_issued(ci, NULL);
2506 doutc(cl, "%p %llx.%llx issued %s\n", inode, ceph_vinop(inode),
2507 ceph_cap_string(issued));
2508 #if IS_ENABLED(CONFIG_FS_ENCRYPTION)
2509 if (cia && cia->fscrypt_auth) {
2510 u32 len = ceph_fscrypt_auth_len(cia->fscrypt_auth);
2512 if (len > sizeof(*cia->fscrypt_auth)) {
2514 spin_unlock(&ci->i_ceph_lock);
2518 doutc(cl, "%p %llx.%llx fscrypt_auth len %u to %u)\n", inode,
2519 ceph_vinop(inode), ci->fscrypt_auth_len, len);
2521 /* It should never be re-set once set */
2522 WARN_ON_ONCE(ci->fscrypt_auth);
2524 if (issued & CEPH_CAP_AUTH_EXCL) {
2525 dirtied |= CEPH_CAP_AUTH_EXCL;
2526 kfree(ci->fscrypt_auth);
2527 ci->fscrypt_auth = (u8 *)cia->fscrypt_auth;
2528 ci->fscrypt_auth_len = len;
2529 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
2530 ci->fscrypt_auth_len != len ||
2531 memcmp(ci->fscrypt_auth, cia->fscrypt_auth, len)) {
2532 req->r_fscrypt_auth = cia->fscrypt_auth;
2533 mask |= CEPH_SETATTR_FSCRYPT_AUTH;
2534 release |= CEPH_CAP_AUTH_SHARED;
2536 cia->fscrypt_auth = NULL;
2539 if (cia && cia->fscrypt_auth) {
2541 spin_unlock(&ci->i_ceph_lock);
2544 #endif /* CONFIG_FS_ENCRYPTION */
2546 if (ia_valid & ATTR_UID) {
2547 doutc(cl, "%p %llx.%llx uid %d -> %d\n", inode,
2549 from_kuid(&init_user_ns, inode->i_uid),
2550 from_kuid(&init_user_ns, attr->ia_uid));
2551 if (issued & CEPH_CAP_AUTH_EXCL) {
2552 inode->i_uid = attr->ia_uid;
2553 dirtied |= CEPH_CAP_AUTH_EXCL;
2554 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
2555 !uid_eq(attr->ia_uid, inode->i_uid)) {
2556 req->r_args.setattr.uid = cpu_to_le32(
2557 from_kuid(&init_user_ns, attr->ia_uid));
2558 mask |= CEPH_SETATTR_UID;
2559 release |= CEPH_CAP_AUTH_SHARED;
2562 if (ia_valid & ATTR_GID) {
2563 doutc(cl, "%p %llx.%llx gid %d -> %d\n", inode,
2565 from_kgid(&init_user_ns, inode->i_gid),
2566 from_kgid(&init_user_ns, attr->ia_gid));
2567 if (issued & CEPH_CAP_AUTH_EXCL) {
2568 inode->i_gid = attr->ia_gid;
2569 dirtied |= CEPH_CAP_AUTH_EXCL;
2570 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
2571 !gid_eq(attr->ia_gid, inode->i_gid)) {
2572 req->r_args.setattr.gid = cpu_to_le32(
2573 from_kgid(&init_user_ns, attr->ia_gid));
2574 mask |= CEPH_SETATTR_GID;
2575 release |= CEPH_CAP_AUTH_SHARED;
2578 if (ia_valid & ATTR_MODE) {
2579 doutc(cl, "%p %llx.%llx mode 0%o -> 0%o\n", inode,
2580 ceph_vinop(inode), inode->i_mode, attr->ia_mode);
2581 if (issued & CEPH_CAP_AUTH_EXCL) {
2582 inode->i_mode = attr->ia_mode;
2583 dirtied |= CEPH_CAP_AUTH_EXCL;
2584 } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
2585 attr->ia_mode != inode->i_mode) {
2586 inode->i_mode = attr->ia_mode;
2587 req->r_args.setattr.mode = cpu_to_le32(attr->ia_mode);
2588 mask |= CEPH_SETATTR_MODE;
2589 release |= CEPH_CAP_AUTH_SHARED;
2593 if (ia_valid & ATTR_ATIME) {
2594 doutc(cl, "%p %llx.%llx atime %lld.%ld -> %lld.%ld\n",
2595 inode, ceph_vinop(inode), inode->i_atime.tv_sec,
2596 inode->i_atime.tv_nsec, attr->ia_atime.tv_sec,
2597 attr->ia_atime.tv_nsec);
2598 if (issued & CEPH_CAP_FILE_EXCL) {
2599 ci->i_time_warp_seq++;
2600 inode->i_atime = attr->ia_atime;
2601 dirtied |= CEPH_CAP_FILE_EXCL;
2602 } else if ((issued & CEPH_CAP_FILE_WR) &&
2603 timespec64_compare(&inode->i_atime,
2604 &attr->ia_atime) < 0) {
2605 inode->i_atime = attr->ia_atime;
2606 dirtied |= CEPH_CAP_FILE_WR;
2607 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
2608 !timespec64_equal(&inode->i_atime, &attr->ia_atime)) {
2609 ceph_encode_timespec64(&req->r_args.setattr.atime,
2611 mask |= CEPH_SETATTR_ATIME;
2612 release |= CEPH_CAP_FILE_SHARED |
2613 CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
2616 if (ia_valid & ATTR_SIZE) {
2617 doutc(cl, "%p %llx.%llx size %lld -> %lld\n", inode,
2618 ceph_vinop(inode), isize, attr->ia_size);
2620 * Only when the new size is smaller and not aligned to
2621 * CEPH_FSCRYPT_BLOCK_SIZE will the RMW is needed.
2623 if (IS_ENCRYPTED(inode) && attr->ia_size < isize &&
2624 (attr->ia_size % CEPH_FSCRYPT_BLOCK_SIZE)) {
2625 mask |= CEPH_SETATTR_SIZE;
2626 release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2627 CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
2628 set_bit(CEPH_MDS_R_FSCRYPT_FILE, &req->r_req_flags);
2629 mask |= CEPH_SETATTR_FSCRYPT_FILE;
2630 req->r_args.setattr.size =
2631 cpu_to_le64(round_up(attr->ia_size,
2632 CEPH_FSCRYPT_BLOCK_SIZE));
2633 req->r_args.setattr.old_size =
2634 cpu_to_le64(round_up(isize,
2635 CEPH_FSCRYPT_BLOCK_SIZE));
2636 req->r_fscrypt_file = attr->ia_size;
2637 fill_fscrypt = true;
2638 } else if ((issued & CEPH_CAP_FILE_EXCL) && attr->ia_size >= isize) {
2639 if (attr->ia_size > isize) {
2640 i_size_write(inode, attr->ia_size);
2641 inode->i_blocks = calc_inode_blocks(attr->ia_size);
2642 ci->i_reported_size = attr->ia_size;
2643 dirtied |= CEPH_CAP_FILE_EXCL;
2644 ia_valid |= ATTR_MTIME;
2646 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
2647 attr->ia_size != isize) {
2648 mask |= CEPH_SETATTR_SIZE;
2649 release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2650 CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
2651 if (IS_ENCRYPTED(inode) && attr->ia_size) {
2652 set_bit(CEPH_MDS_R_FSCRYPT_FILE, &req->r_req_flags);
2653 mask |= CEPH_SETATTR_FSCRYPT_FILE;
2654 req->r_args.setattr.size =
2655 cpu_to_le64(round_up(attr->ia_size,
2656 CEPH_FSCRYPT_BLOCK_SIZE));
2657 req->r_args.setattr.old_size =
2658 cpu_to_le64(round_up(isize,
2659 CEPH_FSCRYPT_BLOCK_SIZE));
2660 req->r_fscrypt_file = attr->ia_size;
2662 req->r_args.setattr.size = cpu_to_le64(attr->ia_size);
2663 req->r_args.setattr.old_size = cpu_to_le64(isize);
2664 req->r_fscrypt_file = 0;
2668 if (ia_valid & ATTR_MTIME) {
2669 doutc(cl, "%p %llx.%llx mtime %lld.%ld -> %lld.%ld\n",
2670 inode, ceph_vinop(inode), inode->i_mtime.tv_sec,
2671 inode->i_mtime.tv_nsec, attr->ia_mtime.tv_sec,
2672 attr->ia_mtime.tv_nsec);
2673 if (issued & CEPH_CAP_FILE_EXCL) {
2674 ci->i_time_warp_seq++;
2675 inode->i_mtime = attr->ia_mtime;
2676 dirtied |= CEPH_CAP_FILE_EXCL;
2677 } else if ((issued & CEPH_CAP_FILE_WR) &&
2678 timespec64_compare(&inode->i_mtime,
2679 &attr->ia_mtime) < 0) {
2680 inode->i_mtime = attr->ia_mtime;
2681 dirtied |= CEPH_CAP_FILE_WR;
2682 } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
2683 !timespec64_equal(&inode->i_mtime, &attr->ia_mtime)) {
2684 ceph_encode_timespec64(&req->r_args.setattr.mtime,
2686 mask |= CEPH_SETATTR_MTIME;
2687 release |= CEPH_CAP_FILE_SHARED |
2688 CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
2692 /* these do nothing */
2693 if (ia_valid & ATTR_CTIME) {
2694 bool only = (ia_valid & (ATTR_SIZE|ATTR_MTIME|ATTR_ATIME|
2695 ATTR_MODE|ATTR_UID|ATTR_GID)) == 0;
2696 doutc(cl, "%p %llx.%llx ctime %lld.%ld -> %lld.%ld (%s)\n",
2697 inode, ceph_vinop(inode), inode_get_ctime(inode).tv_sec,
2698 inode_get_ctime(inode).tv_nsec,
2699 attr->ia_ctime.tv_sec, attr->ia_ctime.tv_nsec,
2700 only ? "ctime only" : "ignored");
2704 * if kernel wants to dirty ctime but nothing else,
2705 * we need to choose a cap to dirty under, or do
2706 * a almost-no-op setattr
2708 if (issued & CEPH_CAP_AUTH_EXCL)
2709 dirtied |= CEPH_CAP_AUTH_EXCL;
2710 else if (issued & CEPH_CAP_FILE_EXCL)
2711 dirtied |= CEPH_CAP_FILE_EXCL;
2712 else if (issued & CEPH_CAP_XATTR_EXCL)
2713 dirtied |= CEPH_CAP_XATTR_EXCL;
2715 mask |= CEPH_SETATTR_CTIME;
2718 if (ia_valid & ATTR_FILE)
2719 doutc(cl, "%p %llx.%llx ATTR_FILE ... hrm!\n", inode,
2723 inode_dirty_flags = __ceph_mark_dirty_caps(ci, dirtied,
2725 inode_set_ctime_to_ts(inode, attr->ia_ctime);
2726 inode_inc_iversion_raw(inode);
2730 spin_unlock(&ci->i_ceph_lock);
2731 if (lock_snap_rwsem) {
2732 up_read(&mdsc->snap_rwsem);
2733 lock_snap_rwsem = false;
2736 if (inode_dirty_flags)
2737 __mark_inode_dirty(inode, inode_dirty_flags);
2740 req->r_inode = inode;
2742 req->r_inode_drop = release;
2743 req->r_args.setattr.mask = cpu_to_le32(mask);
2744 req->r_num_caps = 1;
2745 req->r_stamp = attr->ia_ctime;
2747 err = fill_fscrypt_truncate(inode, req, attr);
2753 * The truncate request will return -EAGAIN when the
2754 * last block has been updated just before the MDS
2755 * successfully gets the xlock for the FILE lock. To
2756 * avoid corrupting the file contents we need to retry
2759 err = ceph_mdsc_do_request(mdsc, NULL, req);
2760 if (err == -EAGAIN && truncate_retry--) {
2761 doutc(cl, "%p %llx.%llx result=%d (%s locally, %d remote), retry it!\n",
2762 inode, ceph_vinop(inode), err,
2763 ceph_cap_string(dirtied), mask);
2764 ceph_mdsc_put_request(req);
2765 ceph_free_cap_flush(prealloc_cf);
2770 doutc(cl, "%p %llx.%llx result=%d (%s locally, %d remote)\n", inode,
2771 ceph_vinop(inode), err, ceph_cap_string(dirtied), mask);
2773 ceph_mdsc_put_request(req);
2774 ceph_free_cap_flush(prealloc_cf);
2776 if (err >= 0 && (mask & CEPH_SETATTR_SIZE))
2777 __ceph_do_pending_vmtruncate(inode);
2785 int ceph_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
2788 struct inode *inode = d_inode(dentry);
2789 struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2792 if (ceph_snap(inode) != CEPH_NOSNAP)
2795 if (ceph_inode_is_shutdown(inode))
2798 err = fscrypt_prepare_setattr(dentry, attr);
2802 err = setattr_prepare(&nop_mnt_idmap, dentry, attr);
2806 if ((attr->ia_valid & ATTR_SIZE) &&
2807 attr->ia_size > max(i_size_read(inode), fsc->max_file_size))
2810 if ((attr->ia_valid & ATTR_SIZE) &&
2811 ceph_quota_is_max_bytes_exceeded(inode, attr->ia_size))
2814 err = __ceph_setattr(inode, attr, NULL);
2816 if (err >= 0 && (attr->ia_valid & ATTR_MODE))
2817 err = posix_acl_chmod(&nop_mnt_idmap, dentry, attr->ia_mode);
2822 int ceph_try_to_choose_auth_mds(struct inode *inode, int mask)
2824 int issued = ceph_caps_issued(ceph_inode(inode));
2827 * If any 'x' caps is issued we can just choose the auth MDS
2828 * instead of the random replica MDSes. Because only when the
2829 * Locker is in LOCK_EXEC state will the loner client could
2830 * get the 'x' caps. And if we send the getattr requests to
2831 * any replica MDS it must auth pin and tries to rdlock from
2832 * the auth MDS, and then the auth MDS need to do the Locker
2833 * state transition to LOCK_SYNC. And after that the lock state
2836 * This cost much when doing the Locker state transition and
2837 * usually will need to revoke caps from clients.
2839 * And for the 'Xs' caps for getxattr we will also choose the
2840 * auth MDS, because the MDS side code is buggy due to setxattr
2841 * won't notify the replica MDSes when the values changed and
2842 * the replica MDS will return the old values. Though we will
2843 * fix it in MDS code, but this still makes sense for old ceph.
2845 if (((mask & CEPH_CAP_ANY_SHARED) && (issued & CEPH_CAP_ANY_EXCL))
2846 || (mask & (CEPH_STAT_RSTAT | CEPH_STAT_CAP_XATTR)))
2847 return USE_AUTH_MDS;
2853 * Verify that we have a lease on the given mask. If not,
2854 * do a getattr against an mds.
2856 int __ceph_do_getattr(struct inode *inode, struct page *locked_page,
2857 int mask, bool force)
2859 struct ceph_fs_client *fsc = ceph_sb_to_fs_client(inode->i_sb);
2860 struct ceph_client *cl = fsc->client;
2861 struct ceph_mds_client *mdsc = fsc->mdsc;
2862 struct ceph_mds_request *req;
2866 if (ceph_snap(inode) == CEPH_SNAPDIR) {
2867 doutc(cl, "inode %p %llx.%llx SNAPDIR\n", inode,
2872 doutc(cl, "inode %p %llx.%llx mask %s mode 0%o\n", inode,
2873 ceph_vinop(inode), ceph_cap_string(mask), inode->i_mode);
2874 if (!force && ceph_caps_issued_mask_metric(ceph_inode(inode), mask, 1))
2877 mode = ceph_try_to_choose_auth_mds(inode, mask);
2878 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, mode);
2880 return PTR_ERR(req);
2881 req->r_inode = inode;
2883 req->r_num_caps = 1;
2884 req->r_args.getattr.mask = cpu_to_le32(mask);
2885 req->r_locked_page = locked_page;
2886 err = ceph_mdsc_do_request(mdsc, NULL, req);
2887 if (locked_page && err == 0) {
2888 u64 inline_version = req->r_reply_info.targeti.inline_version;
2889 if (inline_version == 0) {
2890 /* the reply is supposed to contain inline data */
2892 } else if (inline_version == CEPH_INLINE_NONE ||
2893 inline_version == 1) {
2896 err = req->r_reply_info.targeti.inline_len;
2899 ceph_mdsc_put_request(req);
2900 doutc(cl, "result=%d\n", err);
2904 int ceph_do_getvxattr(struct inode *inode, const char *name, void *value,
2907 struct ceph_fs_client *fsc = ceph_sb_to_fs_client(inode->i_sb);
2908 struct ceph_client *cl = fsc->client;
2909 struct ceph_mds_client *mdsc = fsc->mdsc;
2910 struct ceph_mds_request *req;
2911 int mode = USE_AUTH_MDS;
2914 size_t xattr_value_len;
2916 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETVXATTR, mode);
2922 req->r_feature_needed = CEPHFS_FEATURE_OP_GETVXATTR;
2923 req->r_path2 = kstrdup(name, GFP_NOFS);
2924 if (!req->r_path2) {
2930 req->r_inode = inode;
2931 err = ceph_mdsc_do_request(mdsc, NULL, req);
2935 xattr_value = req->r_reply_info.xattr_info.xattr_value;
2936 xattr_value_len = req->r_reply_info.xattr_info.xattr_value_len;
2938 doutc(cl, "xattr_value_len:%zu, size:%zu\n", xattr_value_len, size);
2940 err = (int)xattr_value_len;
2944 if (xattr_value_len > size) {
2949 memcpy(value, xattr_value, xattr_value_len);
2951 ceph_mdsc_put_request(req);
2953 doutc(cl, "result=%d\n", err);
2959 * Check inode permissions. We verify we have a valid value for
2960 * the AUTH cap, then call the generic handler.
2962 int ceph_permission(struct mnt_idmap *idmap, struct inode *inode,
2967 if (mask & MAY_NOT_BLOCK)
2970 err = ceph_do_getattr(inode, CEPH_CAP_AUTH_SHARED, false);
2973 err = generic_permission(&nop_mnt_idmap, inode, mask);
2977 /* Craft a mask of needed caps given a set of requested statx attrs. */
2978 static int statx_to_caps(u32 want, umode_t mode)
2982 if (want & (STATX_MODE|STATX_UID|STATX_GID|STATX_CTIME|STATX_BTIME|STATX_CHANGE_COOKIE))
2983 mask |= CEPH_CAP_AUTH_SHARED;
2985 if (want & (STATX_NLINK|STATX_CTIME|STATX_CHANGE_COOKIE)) {
2987 * The link count for directories depends on inode->i_subdirs,
2988 * and that is only updated when Fs caps are held.
2991 mask |= CEPH_CAP_FILE_SHARED;
2993 mask |= CEPH_CAP_LINK_SHARED;
2996 if (want & (STATX_ATIME|STATX_MTIME|STATX_CTIME|STATX_SIZE|STATX_BLOCKS|STATX_CHANGE_COOKIE))
2997 mask |= CEPH_CAP_FILE_SHARED;
2999 if (want & (STATX_CTIME|STATX_CHANGE_COOKIE))
3000 mask |= CEPH_CAP_XATTR_SHARED;
3006 * Get all the attributes. If we have sufficient caps for the requested attrs,
3007 * then we can avoid talking to the MDS at all.
3009 int ceph_getattr(struct mnt_idmap *idmap, const struct path *path,
3010 struct kstat *stat, u32 request_mask, unsigned int flags)
3012 struct inode *inode = d_inode(path->dentry);
3013 struct super_block *sb = inode->i_sb;
3014 struct ceph_inode_info *ci = ceph_inode(inode);
3015 u32 valid_mask = STATX_BASIC_STATS;
3018 if (ceph_inode_is_shutdown(inode))
3021 /* Skip the getattr altogether if we're asked not to sync */
3022 if ((flags & AT_STATX_SYNC_TYPE) != AT_STATX_DONT_SYNC) {
3023 err = ceph_do_getattr(inode,
3024 statx_to_caps(request_mask, inode->i_mode),
3025 flags & AT_STATX_FORCE_SYNC);
3030 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat);
3031 stat->ino = ceph_present_inode(inode);
3034 * btime on newly-allocated inodes is 0, so if this is still set to
3035 * that, then assume that it's not valid.
3037 if (ci->i_btime.tv_sec || ci->i_btime.tv_nsec) {
3038 stat->btime = ci->i_btime;
3039 valid_mask |= STATX_BTIME;
3042 if (request_mask & STATX_CHANGE_COOKIE) {
3043 stat->change_cookie = inode_peek_iversion_raw(inode);
3044 valid_mask |= STATX_CHANGE_COOKIE;
3047 if (ceph_snap(inode) == CEPH_NOSNAP)
3048 stat->dev = sb->s_dev;
3050 stat->dev = ci->i_snapid_map ? ci->i_snapid_map->dev : 0;
3052 if (S_ISDIR(inode->i_mode)) {
3053 if (ceph_test_mount_opt(ceph_sb_to_fs_client(sb), RBYTES)) {
3054 stat->size = ci->i_rbytes;
3055 } else if (ceph_snap(inode) == CEPH_SNAPDIR) {
3056 struct ceph_inode_info *pci;
3057 struct ceph_snap_realm *realm;
3058 struct inode *parent;
3060 parent = ceph_lookup_inode(sb, ceph_ino(inode));
3062 return PTR_ERR(parent);
3064 pci = ceph_inode(parent);
3065 spin_lock(&pci->i_ceph_lock);
3066 realm = pci->i_snap_realm;
3068 stat->size = realm->num_snaps;
3071 spin_unlock(&pci->i_ceph_lock);
3074 stat->size = ci->i_files + ci->i_subdirs;
3077 stat->blksize = 65536;
3079 * Some applications rely on the number of st_nlink
3080 * value on directories to be either 0 (if unlinked)
3081 * or 2 + number of subdirectories.
3083 if (stat->nlink == 1)
3084 /* '.' + '..' + subdirs */
3085 stat->nlink = 1 + 1 + ci->i_subdirs;
3088 stat->attributes |= STATX_ATTR_CHANGE_MONOTONIC;
3089 if (IS_ENCRYPTED(inode))
3090 stat->attributes |= STATX_ATTR_ENCRYPTED;
3091 stat->attributes_mask |= (STATX_ATTR_CHANGE_MONOTONIC |
3092 STATX_ATTR_ENCRYPTED);
3094 stat->result_mask = request_mask & valid_mask;
3098 void ceph_inode_shutdown(struct inode *inode)
3100 struct ceph_inode_info *ci = ceph_inode(inode);
3103 bool invalidate = false;
3105 spin_lock(&ci->i_ceph_lock);
3106 ci->i_ceph_flags |= CEPH_I_SHUTDOWN;
3107 p = rb_first(&ci->i_caps);
3109 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
3112 iputs += ceph_purge_inode_cap(inode, cap, &invalidate);
3114 spin_unlock(&ci->i_ceph_lock);
3117 ceph_queue_invalidate(inode);