1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
5 #include <linux/wait.h>
6 #include <linux/slab.h>
8 #include <linux/sched.h>
9 #include <linux/debugfs.h>
10 #include <linux/seq_file.h>
11 #include <linux/ratelimit.h>
12 #include <linux/bits.h>
13 #include <linux/ktime.h>
14 #include <linux/bitmap.h>
17 #include "mds_client.h"
19 #include <linux/ceph/ceph_features.h>
20 #include <linux/ceph/messenger.h>
21 #include <linux/ceph/decode.h>
22 #include <linux/ceph/pagelist.h>
23 #include <linux/ceph/auth.h>
24 #include <linux/ceph/debugfs.h>
26 #define RECONNECT_MAX_SIZE (INT_MAX - PAGE_SIZE)
29 * A cluster of MDS (metadata server) daemons is responsible for
30 * managing the file system namespace (the directory hierarchy and
31 * inodes) and for coordinating shared access to storage. Metadata is
32 * partitioning hierarchically across a number of servers, and that
33 * partition varies over time as the cluster adjusts the distribution
34 * in order to balance load.
36 * The MDS client is primarily responsible to managing synchronous
37 * metadata requests for operations like open, unlink, and so forth.
38 * If there is a MDS failure, we find out about it when we (possibly
39 * request and) receive a new MDS map, and can resubmit affected
42 * For the most part, though, we take advantage of a lossless
43 * communications channel to the MDS, and do not need to worry about
44 * timing out or resubmitting requests.
46 * We maintain a stateful "session" with each MDS we interact with.
47 * Within each session, we sent periodic heartbeat messages to ensure
48 * any capabilities or leases we have been issues remain valid. If
49 * the session times out and goes stale, our leases and capabilities
50 * are no longer valid.
53 struct ceph_reconnect_state {
54 struct ceph_mds_session *session;
55 int nr_caps, nr_realms;
56 struct ceph_pagelist *pagelist;
61 static void __wake_requests(struct ceph_mds_client *mdsc,
62 struct list_head *head);
63 static void ceph_cap_release_work(struct work_struct *work);
64 static void ceph_cap_reclaim_work(struct work_struct *work);
66 static const struct ceph_connection_operations mds_con_ops;
73 static int parse_reply_info_quota(void **p, void *end,
74 struct ceph_mds_reply_info_in *info)
76 u8 struct_v, struct_compat;
79 ceph_decode_8_safe(p, end, struct_v, bad);
80 ceph_decode_8_safe(p, end, struct_compat, bad);
81 /* struct_v is expected to be >= 1. we only
82 * understand encoding with struct_compat == 1. */
83 if (!struct_v || struct_compat != 1)
85 ceph_decode_32_safe(p, end, struct_len, bad);
86 ceph_decode_need(p, end, struct_len, bad);
87 end = *p + struct_len;
88 ceph_decode_64_safe(p, end, info->max_bytes, bad);
89 ceph_decode_64_safe(p, end, info->max_files, bad);
97 * parse individual inode info
99 static int parse_reply_info_in(void **p, void *end,
100 struct ceph_mds_reply_info_in *info,
106 if (features == (u64)-1) {
109 ceph_decode_8_safe(p, end, struct_v, bad);
110 ceph_decode_8_safe(p, end, struct_compat, bad);
111 /* struct_v is expected to be >= 1. we only understand
112 * encoding with struct_compat == 1. */
113 if (!struct_v || struct_compat != 1)
115 ceph_decode_32_safe(p, end, struct_len, bad);
116 ceph_decode_need(p, end, struct_len, bad);
117 end = *p + struct_len;
120 ceph_decode_need(p, end, sizeof(struct ceph_mds_reply_inode), bad);
122 *p += sizeof(struct ceph_mds_reply_inode) +
123 sizeof(*info->in->fragtree.splits) *
124 le32_to_cpu(info->in->fragtree.nsplits);
126 ceph_decode_32_safe(p, end, info->symlink_len, bad);
127 ceph_decode_need(p, end, info->symlink_len, bad);
129 *p += info->symlink_len;
131 ceph_decode_copy_safe(p, end, &info->dir_layout,
132 sizeof(info->dir_layout), bad);
133 ceph_decode_32_safe(p, end, info->xattr_len, bad);
134 ceph_decode_need(p, end, info->xattr_len, bad);
135 info->xattr_data = *p;
136 *p += info->xattr_len;
138 if (features == (u64)-1) {
140 ceph_decode_64_safe(p, end, info->inline_version, bad);
141 ceph_decode_32_safe(p, end, info->inline_len, bad);
142 ceph_decode_need(p, end, info->inline_len, bad);
143 info->inline_data = *p;
144 *p += info->inline_len;
146 err = parse_reply_info_quota(p, end, info);
150 ceph_decode_32_safe(p, end, info->pool_ns_len, bad);
151 if (info->pool_ns_len > 0) {
152 ceph_decode_need(p, end, info->pool_ns_len, bad);
153 info->pool_ns_data = *p;
154 *p += info->pool_ns_len;
158 ceph_decode_need(p, end, sizeof(info->btime), bad);
159 ceph_decode_copy(p, &info->btime, sizeof(info->btime));
161 /* change attribute */
162 ceph_decode_64_safe(p, end, info->change_attr, bad);
166 ceph_decode_32_safe(p, end, info->dir_pin, bad);
168 info->dir_pin = -ENODATA;
171 /* snapshot birth time, remains zero for v<=2 */
173 ceph_decode_need(p, end, sizeof(info->snap_btime), bad);
174 ceph_decode_copy(p, &info->snap_btime,
175 sizeof(info->snap_btime));
177 memset(&info->snap_btime, 0, sizeof(info->snap_btime));
180 /* snapshot count, remains zero for v<=3 */
182 ceph_decode_64_safe(p, end, info->rsnaps, bad);
189 if (features & CEPH_FEATURE_MDS_INLINE_DATA) {
190 ceph_decode_64_safe(p, end, info->inline_version, bad);
191 ceph_decode_32_safe(p, end, info->inline_len, bad);
192 ceph_decode_need(p, end, info->inline_len, bad);
193 info->inline_data = *p;
194 *p += info->inline_len;
196 info->inline_version = CEPH_INLINE_NONE;
198 if (features & CEPH_FEATURE_MDS_QUOTA) {
199 err = parse_reply_info_quota(p, end, info);
207 info->pool_ns_len = 0;
208 info->pool_ns_data = NULL;
209 if (features & CEPH_FEATURE_FS_FILE_LAYOUT_V2) {
210 ceph_decode_32_safe(p, end, info->pool_ns_len, bad);
211 if (info->pool_ns_len > 0) {
212 ceph_decode_need(p, end, info->pool_ns_len, bad);
213 info->pool_ns_data = *p;
214 *p += info->pool_ns_len;
218 if (features & CEPH_FEATURE_FS_BTIME) {
219 ceph_decode_need(p, end, sizeof(info->btime), bad);
220 ceph_decode_copy(p, &info->btime, sizeof(info->btime));
221 ceph_decode_64_safe(p, end, info->change_attr, bad);
224 info->dir_pin = -ENODATA;
225 /* info->snap_btime and info->rsnaps remain zero */
234 static int parse_reply_info_dir(void **p, void *end,
235 struct ceph_mds_reply_dirfrag **dirfrag,
238 if (features == (u64)-1) {
239 u8 struct_v, struct_compat;
241 ceph_decode_8_safe(p, end, struct_v, bad);
242 ceph_decode_8_safe(p, end, struct_compat, bad);
243 /* struct_v is expected to be >= 1. we only understand
244 * encoding whose struct_compat == 1. */
245 if (!struct_v || struct_compat != 1)
247 ceph_decode_32_safe(p, end, struct_len, bad);
248 ceph_decode_need(p, end, struct_len, bad);
249 end = *p + struct_len;
252 ceph_decode_need(p, end, sizeof(**dirfrag), bad);
254 *p += sizeof(**dirfrag) + sizeof(u32) * le32_to_cpu((*dirfrag)->ndist);
255 if (unlikely(*p > end))
257 if (features == (u64)-1)
264 static int parse_reply_info_lease(void **p, void *end,
265 struct ceph_mds_reply_lease **lease,
268 if (features == (u64)-1) {
269 u8 struct_v, struct_compat;
271 ceph_decode_8_safe(p, end, struct_v, bad);
272 ceph_decode_8_safe(p, end, struct_compat, bad);
273 /* struct_v is expected to be >= 1. we only understand
274 * encoding whose struct_compat == 1. */
275 if (!struct_v || struct_compat != 1)
277 ceph_decode_32_safe(p, end, struct_len, bad);
278 ceph_decode_need(p, end, struct_len, bad);
279 end = *p + struct_len;
282 ceph_decode_need(p, end, sizeof(**lease), bad);
284 *p += sizeof(**lease);
285 if (features == (u64)-1)
293 * parse a normal reply, which may contain a (dir+)dentry and/or a
296 static int parse_reply_info_trace(void **p, void *end,
297 struct ceph_mds_reply_info_parsed *info,
302 if (info->head->is_dentry) {
303 err = parse_reply_info_in(p, end, &info->diri, features);
307 err = parse_reply_info_dir(p, end, &info->dirfrag, features);
311 ceph_decode_32_safe(p, end, info->dname_len, bad);
312 ceph_decode_need(p, end, info->dname_len, bad);
314 *p += info->dname_len;
316 err = parse_reply_info_lease(p, end, &info->dlease, features);
321 if (info->head->is_target) {
322 err = parse_reply_info_in(p, end, &info->targeti, features);
327 if (unlikely(*p != end))
334 pr_err("problem parsing mds trace %d\n", err);
339 * parse readdir results
341 static int parse_reply_info_readdir(void **p, void *end,
342 struct ceph_mds_reply_info_parsed *info,
348 err = parse_reply_info_dir(p, end, &info->dir_dir, features);
352 ceph_decode_need(p, end, sizeof(num) + 2, bad);
353 num = ceph_decode_32(p);
355 u16 flags = ceph_decode_16(p);
356 info->dir_end = !!(flags & CEPH_READDIR_FRAG_END);
357 info->dir_complete = !!(flags & CEPH_READDIR_FRAG_COMPLETE);
358 info->hash_order = !!(flags & CEPH_READDIR_HASH_ORDER);
359 info->offset_hash = !!(flags & CEPH_READDIR_OFFSET_HASH);
364 BUG_ON(!info->dir_entries);
365 if ((unsigned long)(info->dir_entries + num) >
366 (unsigned long)info->dir_entries + info->dir_buf_size) {
367 pr_err("dir contents are larger than expected\n");
374 struct ceph_mds_reply_dir_entry *rde = info->dir_entries + i;
376 ceph_decode_32_safe(p, end, rde->name_len, bad);
377 ceph_decode_need(p, end, rde->name_len, bad);
380 dout("parsed dir dname '%.*s'\n", rde->name_len, rde->name);
383 err = parse_reply_info_lease(p, end, &rde->lease, features);
387 err = parse_reply_info_in(p, end, &rde->inode, features);
390 /* ceph_readdir_prepopulate() will update it */
397 /* Skip over any unrecognized fields */
404 pr_err("problem parsing dir contents %d\n", err);
409 * parse fcntl F_GETLK results
411 static int parse_reply_info_filelock(void **p, void *end,
412 struct ceph_mds_reply_info_parsed *info,
415 if (*p + sizeof(*info->filelock_reply) > end)
418 info->filelock_reply = *p;
420 /* Skip over any unrecognized fields */
428 #if BITS_PER_LONG == 64
430 #define DELEGATED_INO_AVAILABLE xa_mk_value(1)
432 static int ceph_parse_deleg_inos(void **p, void *end,
433 struct ceph_mds_session *s)
437 ceph_decode_32_safe(p, end, sets, bad);
438 dout("got %u sets of delegated inodes\n", sets);
442 ceph_decode_64_safe(p, end, start, bad);
443 ceph_decode_64_safe(p, end, len, bad);
445 /* Don't accept a delegation of system inodes */
446 if (start < CEPH_INO_SYSTEM_BASE) {
447 pr_warn_ratelimited("ceph: ignoring reserved inode range delegation (start=0x%llx len=0x%llx)\n",
452 int err = xa_insert(&s->s_delegated_inos, ino = start++,
453 DELEGATED_INO_AVAILABLE,
456 dout("added delegated inode 0x%llx\n",
458 } else if (err == -EBUSY) {
459 pr_warn("ceph: MDS delegated inode 0x%llx more than once.\n",
471 u64 ceph_get_deleg_ino(struct ceph_mds_session *s)
476 xa_for_each(&s->s_delegated_inos, ino, val) {
477 val = xa_erase(&s->s_delegated_inos, ino);
478 if (val == DELEGATED_INO_AVAILABLE)
484 int ceph_restore_deleg_ino(struct ceph_mds_session *s, u64 ino)
486 return xa_insert(&s->s_delegated_inos, ino, DELEGATED_INO_AVAILABLE,
489 #else /* BITS_PER_LONG == 64 */
491 * FIXME: xarrays can't handle 64-bit indexes on a 32-bit arch. For now, just
492 * ignore delegated_inos on 32 bit arch. Maybe eventually add xarrays for top
495 static int ceph_parse_deleg_inos(void **p, void *end,
496 struct ceph_mds_session *s)
500 ceph_decode_32_safe(p, end, sets, bad);
502 ceph_decode_skip_n(p, end, sets * 2 * sizeof(__le64), bad);
508 u64 ceph_get_deleg_ino(struct ceph_mds_session *s)
513 int ceph_restore_deleg_ino(struct ceph_mds_session *s, u64 ino)
517 #endif /* BITS_PER_LONG == 64 */
520 * parse create results
522 static int parse_reply_info_create(void **p, void *end,
523 struct ceph_mds_reply_info_parsed *info,
524 u64 features, struct ceph_mds_session *s)
528 if (features == (u64)-1 ||
529 (features & CEPH_FEATURE_REPLY_CREATE_INODE)) {
531 /* Malformed reply? */
532 info->has_create_ino = false;
533 } else if (test_bit(CEPHFS_FEATURE_DELEG_INO, &s->s_features)) {
534 info->has_create_ino = true;
535 /* struct_v, struct_compat, and len */
536 ceph_decode_skip_n(p, end, 2 + sizeof(u32), bad);
537 ceph_decode_64_safe(p, end, info->ino, bad);
538 ret = ceph_parse_deleg_inos(p, end, s);
543 ceph_decode_64_safe(p, end, info->ino, bad);
544 info->has_create_ino = true;
551 /* Skip over any unrecognized fields */
559 * parse extra results
561 static int parse_reply_info_extra(void **p, void *end,
562 struct ceph_mds_reply_info_parsed *info,
563 u64 features, struct ceph_mds_session *s)
565 u32 op = le32_to_cpu(info->head->op);
567 if (op == CEPH_MDS_OP_GETFILELOCK)
568 return parse_reply_info_filelock(p, end, info, features);
569 else if (op == CEPH_MDS_OP_READDIR || op == CEPH_MDS_OP_LSSNAP)
570 return parse_reply_info_readdir(p, end, info, features);
571 else if (op == CEPH_MDS_OP_CREATE)
572 return parse_reply_info_create(p, end, info, features, s);
578 * parse entire mds reply
580 static int parse_reply_info(struct ceph_mds_session *s, struct ceph_msg *msg,
581 struct ceph_mds_reply_info_parsed *info,
588 info->head = msg->front.iov_base;
589 p = msg->front.iov_base + sizeof(struct ceph_mds_reply_head);
590 end = p + msg->front.iov_len - sizeof(struct ceph_mds_reply_head);
593 ceph_decode_32_safe(&p, end, len, bad);
595 ceph_decode_need(&p, end, len, bad);
596 err = parse_reply_info_trace(&p, p+len, info, features);
602 ceph_decode_32_safe(&p, end, len, bad);
604 ceph_decode_need(&p, end, len, bad);
605 err = parse_reply_info_extra(&p, p+len, info, features, s);
611 ceph_decode_32_safe(&p, end, len, bad);
612 info->snapblob_len = len;
623 pr_err("mds parse_reply err %d\n", err);
627 static void destroy_reply_info(struct ceph_mds_reply_info_parsed *info)
629 if (!info->dir_entries)
631 free_pages((unsigned long)info->dir_entries, get_order(info->dir_buf_size));
638 const char *ceph_session_state_name(int s)
641 case CEPH_MDS_SESSION_NEW: return "new";
642 case CEPH_MDS_SESSION_OPENING: return "opening";
643 case CEPH_MDS_SESSION_OPEN: return "open";
644 case CEPH_MDS_SESSION_HUNG: return "hung";
645 case CEPH_MDS_SESSION_CLOSING: return "closing";
646 case CEPH_MDS_SESSION_CLOSED: return "closed";
647 case CEPH_MDS_SESSION_RESTARTING: return "restarting";
648 case CEPH_MDS_SESSION_RECONNECTING: return "reconnecting";
649 case CEPH_MDS_SESSION_REJECTED: return "rejected";
650 default: return "???";
654 struct ceph_mds_session *ceph_get_mds_session(struct ceph_mds_session *s)
656 if (refcount_inc_not_zero(&s->s_ref))
661 void ceph_put_mds_session(struct ceph_mds_session *s)
663 if (IS_ERR_OR_NULL(s))
666 if (refcount_dec_and_test(&s->s_ref)) {
667 if (s->s_auth.authorizer)
668 ceph_auth_destroy_authorizer(s->s_auth.authorizer);
669 WARN_ON(mutex_is_locked(&s->s_mutex));
670 xa_destroy(&s->s_delegated_inos);
676 * called under mdsc->mutex
678 struct ceph_mds_session *__ceph_lookup_mds_session(struct ceph_mds_client *mdsc,
681 if (mds >= mdsc->max_sessions || !mdsc->sessions[mds])
683 return ceph_get_mds_session(mdsc->sessions[mds]);
686 static bool __have_session(struct ceph_mds_client *mdsc, int mds)
688 if (mds >= mdsc->max_sessions || !mdsc->sessions[mds])
694 static int __verify_registered_session(struct ceph_mds_client *mdsc,
695 struct ceph_mds_session *s)
697 if (s->s_mds >= mdsc->max_sessions ||
698 mdsc->sessions[s->s_mds] != s)
704 * create+register a new session for given mds.
705 * called under mdsc->mutex.
707 static struct ceph_mds_session *register_session(struct ceph_mds_client *mdsc,
710 struct ceph_mds_session *s;
712 if (mds >= mdsc->mdsmap->possible_max_rank)
713 return ERR_PTR(-EINVAL);
715 s = kzalloc(sizeof(*s), GFP_NOFS);
717 return ERR_PTR(-ENOMEM);
719 if (mds >= mdsc->max_sessions) {
720 int newmax = 1 << get_count_order(mds + 1);
721 struct ceph_mds_session **sa;
723 dout("%s: realloc to %d\n", __func__, newmax);
724 sa = kcalloc(newmax, sizeof(void *), GFP_NOFS);
727 if (mdsc->sessions) {
728 memcpy(sa, mdsc->sessions,
729 mdsc->max_sessions * sizeof(void *));
730 kfree(mdsc->sessions);
733 mdsc->max_sessions = newmax;
736 dout("%s: mds%d\n", __func__, mds);
739 s->s_state = CEPH_MDS_SESSION_NEW;
740 mutex_init(&s->s_mutex);
742 ceph_con_init(&s->s_con, s, &mds_con_ops, &mdsc->fsc->client->msgr);
744 atomic_set(&s->s_cap_gen, 1);
745 s->s_cap_ttl = jiffies - 1;
747 spin_lock_init(&s->s_cap_lock);
748 INIT_LIST_HEAD(&s->s_caps);
749 refcount_set(&s->s_ref, 1);
750 INIT_LIST_HEAD(&s->s_waiting);
751 INIT_LIST_HEAD(&s->s_unsafe);
752 xa_init(&s->s_delegated_inos);
753 INIT_LIST_HEAD(&s->s_cap_releases);
754 INIT_WORK(&s->s_cap_release_work, ceph_cap_release_work);
756 INIT_LIST_HEAD(&s->s_cap_dirty);
757 INIT_LIST_HEAD(&s->s_cap_flushing);
759 mdsc->sessions[mds] = s;
760 atomic_inc(&mdsc->num_sessions);
761 refcount_inc(&s->s_ref); /* one ref to sessions[], one to caller */
763 ceph_con_open(&s->s_con, CEPH_ENTITY_TYPE_MDS, mds,
764 ceph_mdsmap_get_addr(mdsc->mdsmap, mds));
770 return ERR_PTR(-ENOMEM);
774 * called under mdsc->mutex
776 static void __unregister_session(struct ceph_mds_client *mdsc,
777 struct ceph_mds_session *s)
779 dout("__unregister_session mds%d %p\n", s->s_mds, s);
780 BUG_ON(mdsc->sessions[s->s_mds] != s);
781 mdsc->sessions[s->s_mds] = NULL;
782 ceph_con_close(&s->s_con);
783 ceph_put_mds_session(s);
784 atomic_dec(&mdsc->num_sessions);
788 * drop session refs in request.
790 * should be last request ref, or hold mdsc->mutex
792 static void put_request_session(struct ceph_mds_request *req)
794 if (req->r_session) {
795 ceph_put_mds_session(req->r_session);
796 req->r_session = NULL;
800 void ceph_mdsc_iterate_sessions(struct ceph_mds_client *mdsc,
801 void (*cb)(struct ceph_mds_session *),
806 mutex_lock(&mdsc->mutex);
807 for (mds = 0; mds < mdsc->max_sessions; ++mds) {
808 struct ceph_mds_session *s;
810 s = __ceph_lookup_mds_session(mdsc, mds);
814 if (check_state && !check_session_state(s)) {
815 ceph_put_mds_session(s);
819 mutex_unlock(&mdsc->mutex);
821 ceph_put_mds_session(s);
822 mutex_lock(&mdsc->mutex);
824 mutex_unlock(&mdsc->mutex);
827 void ceph_mdsc_release_request(struct kref *kref)
829 struct ceph_mds_request *req = container_of(kref,
830 struct ceph_mds_request,
832 ceph_mdsc_release_dir_caps_no_check(req);
833 destroy_reply_info(&req->r_reply_info);
835 ceph_msg_put(req->r_request);
837 ceph_msg_put(req->r_reply);
839 ceph_put_cap_refs(ceph_inode(req->r_inode), CEPH_CAP_PIN);
843 ceph_put_cap_refs(ceph_inode(req->r_parent), CEPH_CAP_PIN);
846 iput(req->r_target_inode);
849 if (req->r_old_dentry)
850 dput(req->r_old_dentry);
851 if (req->r_old_dentry_dir) {
853 * track (and drop pins for) r_old_dentry_dir
854 * separately, since r_old_dentry's d_parent may have
855 * changed between the dir mutex being dropped and
856 * this request being freed.
858 ceph_put_cap_refs(ceph_inode(req->r_old_dentry_dir),
860 iput(req->r_old_dentry_dir);
864 put_cred(req->r_cred);
866 ceph_pagelist_release(req->r_pagelist);
867 put_request_session(req);
868 ceph_unreserve_caps(req->r_mdsc, &req->r_caps_reservation);
869 WARN_ON_ONCE(!list_empty(&req->r_wait));
870 kmem_cache_free(ceph_mds_request_cachep, req);
873 DEFINE_RB_FUNCS(request, struct ceph_mds_request, r_tid, r_node)
876 * lookup session, bump ref if found.
878 * called under mdsc->mutex.
880 static struct ceph_mds_request *
881 lookup_get_request(struct ceph_mds_client *mdsc, u64 tid)
883 struct ceph_mds_request *req;
885 req = lookup_request(&mdsc->request_tree, tid);
887 ceph_mdsc_get_request(req);
893 * Register an in-flight request, and assign a tid. Link to directory
894 * are modifying (if any).
896 * Called under mdsc->mutex.
898 static void __register_request(struct ceph_mds_client *mdsc,
899 struct ceph_mds_request *req,
904 req->r_tid = ++mdsc->last_tid;
905 if (req->r_num_caps) {
906 ret = ceph_reserve_caps(mdsc, &req->r_caps_reservation,
909 pr_err("__register_request %p "
910 "failed to reserve caps: %d\n", req, ret);
911 /* set req->r_err to fail early from __do_request */
916 dout("__register_request %p tid %lld\n", req, req->r_tid);
917 ceph_mdsc_get_request(req);
918 insert_request(&mdsc->request_tree, req);
920 req->r_cred = get_current_cred();
922 if (mdsc->oldest_tid == 0 && req->r_op != CEPH_MDS_OP_SETFILELOCK)
923 mdsc->oldest_tid = req->r_tid;
926 struct ceph_inode_info *ci = ceph_inode(dir);
929 req->r_unsafe_dir = dir;
930 spin_lock(&ci->i_unsafe_lock);
931 list_add_tail(&req->r_unsafe_dir_item, &ci->i_unsafe_dirops);
932 spin_unlock(&ci->i_unsafe_lock);
936 static void __unregister_request(struct ceph_mds_client *mdsc,
937 struct ceph_mds_request *req)
939 dout("__unregister_request %p tid %lld\n", req, req->r_tid);
941 /* Never leave an unregistered request on an unsafe list! */
942 list_del_init(&req->r_unsafe_item);
944 if (req->r_tid == mdsc->oldest_tid) {
945 struct rb_node *p = rb_next(&req->r_node);
946 mdsc->oldest_tid = 0;
948 struct ceph_mds_request *next_req =
949 rb_entry(p, struct ceph_mds_request, r_node);
950 if (next_req->r_op != CEPH_MDS_OP_SETFILELOCK) {
951 mdsc->oldest_tid = next_req->r_tid;
958 erase_request(&mdsc->request_tree, req);
960 if (req->r_unsafe_dir) {
961 struct ceph_inode_info *ci = ceph_inode(req->r_unsafe_dir);
962 spin_lock(&ci->i_unsafe_lock);
963 list_del_init(&req->r_unsafe_dir_item);
964 spin_unlock(&ci->i_unsafe_lock);
966 if (req->r_target_inode &&
967 test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
968 struct ceph_inode_info *ci = ceph_inode(req->r_target_inode);
969 spin_lock(&ci->i_unsafe_lock);
970 list_del_init(&req->r_unsafe_target_item);
971 spin_unlock(&ci->i_unsafe_lock);
974 if (req->r_unsafe_dir) {
975 iput(req->r_unsafe_dir);
976 req->r_unsafe_dir = NULL;
979 complete_all(&req->r_safe_completion);
981 ceph_mdsc_put_request(req);
985 * Walk back up the dentry tree until we hit a dentry representing a
986 * non-snapshot inode. We do this using the rcu_read_lock (which must be held
987 * when calling this) to ensure that the objects won't disappear while we're
988 * working with them. Once we hit a candidate dentry, we attempt to take a
989 * reference to it, and return that as the result.
991 static struct inode *get_nonsnap_parent(struct dentry *dentry)
993 struct inode *inode = NULL;
995 while (dentry && !IS_ROOT(dentry)) {
996 inode = d_inode_rcu(dentry);
997 if (!inode || ceph_snap(inode) == CEPH_NOSNAP)
999 dentry = dentry->d_parent;
1002 inode = igrab(inode);
1007 * Choose mds to send request to next. If there is a hint set in the
1008 * request (e.g., due to a prior forward hint from the mds), use that.
1009 * Otherwise, consult frag tree and/or caps to identify the
1010 * appropriate mds. If all else fails, choose randomly.
1012 * Called under mdsc->mutex.
1014 static int __choose_mds(struct ceph_mds_client *mdsc,
1015 struct ceph_mds_request *req,
1018 struct inode *inode;
1019 struct ceph_inode_info *ci;
1020 struct ceph_cap *cap;
1021 int mode = req->r_direct_mode;
1023 u32 hash = req->r_direct_hash;
1024 bool is_hash = test_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
1030 * is there a specific mds we should try? ignore hint if we have
1031 * no session and the mds is not up (active or recovering).
1033 if (req->r_resend_mds >= 0 &&
1034 (__have_session(mdsc, req->r_resend_mds) ||
1035 ceph_mdsmap_get_state(mdsc->mdsmap, req->r_resend_mds) > 0)) {
1036 dout("%s using resend_mds mds%d\n", __func__,
1038 return req->r_resend_mds;
1041 if (mode == USE_RANDOM_MDS)
1046 if (ceph_snap(req->r_inode) != CEPH_SNAPDIR) {
1047 inode = req->r_inode;
1050 /* req->r_dentry is non-null for LSSNAP request */
1052 inode = get_nonsnap_parent(req->r_dentry);
1054 dout("%s using snapdir's parent %p\n", __func__, inode);
1056 } else if (req->r_dentry) {
1057 /* ignore race with rename; old or new d_parent is okay */
1058 struct dentry *parent;
1062 parent = READ_ONCE(req->r_dentry->d_parent);
1063 dir = req->r_parent ? : d_inode_rcu(parent);
1065 if (!dir || dir->i_sb != mdsc->fsc->sb) {
1066 /* not this fs or parent went negative */
1067 inode = d_inode(req->r_dentry);
1070 } else if (ceph_snap(dir) != CEPH_NOSNAP) {
1071 /* direct snapped/virtual snapdir requests
1072 * based on parent dir inode */
1073 inode = get_nonsnap_parent(parent);
1074 dout("%s using nonsnap parent %p\n", __func__, inode);
1077 inode = d_inode(req->r_dentry);
1078 if (!inode || mode == USE_AUTH_MDS) {
1081 hash = ceph_dentry_hash(dir, req->r_dentry);
1090 dout("%s %p is_hash=%d (0x%x) mode %d\n", __func__, inode, (int)is_hash,
1094 ci = ceph_inode(inode);
1096 if (is_hash && S_ISDIR(inode->i_mode)) {
1097 struct ceph_inode_frag frag;
1100 ceph_choose_frag(ci, hash, &frag, &found);
1102 if (mode == USE_ANY_MDS && frag.ndist > 0) {
1105 /* choose a random replica */
1106 get_random_bytes(&r, 1);
1109 dout("%s %p %llx.%llx frag %u mds%d (%d/%d)\n",
1110 __func__, inode, ceph_vinop(inode),
1111 frag.frag, mds, (int)r, frag.ndist);
1112 if (ceph_mdsmap_get_state(mdsc->mdsmap, mds) >=
1113 CEPH_MDS_STATE_ACTIVE &&
1114 !ceph_mdsmap_is_laggy(mdsc->mdsmap, mds))
1118 /* since this file/dir wasn't known to be
1119 * replicated, then we want to look for the
1120 * authoritative mds. */
1121 if (frag.mds >= 0) {
1122 /* choose auth mds */
1124 dout("%s %p %llx.%llx frag %u mds%d (auth)\n",
1125 __func__, inode, ceph_vinop(inode),
1127 if (ceph_mdsmap_get_state(mdsc->mdsmap, mds) >=
1128 CEPH_MDS_STATE_ACTIVE) {
1129 if (!ceph_mdsmap_is_laggy(mdsc->mdsmap,
1134 mode = USE_AUTH_MDS;
1138 spin_lock(&ci->i_ceph_lock);
1140 if (mode == USE_AUTH_MDS)
1141 cap = ci->i_auth_cap;
1142 if (!cap && !RB_EMPTY_ROOT(&ci->i_caps))
1143 cap = rb_entry(rb_first(&ci->i_caps), struct ceph_cap, ci_node);
1145 spin_unlock(&ci->i_ceph_lock);
1149 mds = cap->session->s_mds;
1150 dout("%s %p %llx.%llx mds%d (%scap %p)\n", __func__,
1151 inode, ceph_vinop(inode), mds,
1152 cap == ci->i_auth_cap ? "auth " : "", cap);
1153 spin_unlock(&ci->i_ceph_lock);
1162 mds = ceph_mdsmap_get_random_mds(mdsc->mdsmap);
1163 dout("%s chose random mds%d\n", __func__, mds);
1171 struct ceph_msg *ceph_create_session_msg(u32 op, u64 seq)
1173 struct ceph_msg *msg;
1174 struct ceph_mds_session_head *h;
1176 msg = ceph_msg_new(CEPH_MSG_CLIENT_SESSION, sizeof(*h), GFP_NOFS,
1179 pr_err("ENOMEM creating session %s msg\n",
1180 ceph_session_op_name(op));
1183 h = msg->front.iov_base;
1184 h->op = cpu_to_le32(op);
1185 h->seq = cpu_to_le64(seq);
1190 static const unsigned char feature_bits[] = CEPHFS_FEATURES_CLIENT_SUPPORTED;
1191 #define FEATURE_BYTES(c) (DIV_ROUND_UP((size_t)feature_bits[c - 1] + 1, 64) * 8)
1192 static int encode_supported_features(void **p, void *end)
1194 static const size_t count = ARRAY_SIZE(feature_bits);
1198 size_t size = FEATURE_BYTES(count);
1200 if (WARN_ON_ONCE(*p + 4 + size > end))
1203 ceph_encode_32(p, size);
1204 memset(*p, 0, size);
1205 for (i = 0; i < count; i++)
1206 ((unsigned char*)(*p))[i / 8] |= BIT(feature_bits[i] % 8);
1209 if (WARN_ON_ONCE(*p + 4 > end))
1212 ceph_encode_32(p, 0);
1218 static const unsigned char metric_bits[] = CEPHFS_METRIC_SPEC_CLIENT_SUPPORTED;
1219 #define METRIC_BYTES(cnt) (DIV_ROUND_UP((size_t)metric_bits[cnt - 1] + 1, 64) * 8)
1220 static int encode_metric_spec(void **p, void *end)
1222 static const size_t count = ARRAY_SIZE(metric_bits);
1225 if (WARN_ON_ONCE(*p + 2 > end))
1228 ceph_encode_8(p, 1); /* version */
1229 ceph_encode_8(p, 1); /* compat */
1233 size_t size = METRIC_BYTES(count);
1235 if (WARN_ON_ONCE(*p + 4 + 4 + size > end))
1238 /* metric spec info length */
1239 ceph_encode_32(p, 4 + size);
1242 ceph_encode_32(p, size);
1243 memset(*p, 0, size);
1244 for (i = 0; i < count; i++)
1245 ((unsigned char *)(*p))[i / 8] |= BIT(metric_bits[i] % 8);
1248 if (WARN_ON_ONCE(*p + 4 + 4 > end))
1251 /* metric spec info length */
1252 ceph_encode_32(p, 4);
1254 ceph_encode_32(p, 0);
1261 * session message, specialization for CEPH_SESSION_REQUEST_OPEN
1262 * to include additional client metadata fields.
1264 static struct ceph_msg *create_session_open_msg(struct ceph_mds_client *mdsc, u64 seq)
1266 struct ceph_msg *msg;
1267 struct ceph_mds_session_head *h;
1269 int extra_bytes = 0;
1270 int metadata_key_count = 0;
1271 struct ceph_options *opt = mdsc->fsc->client->options;
1272 struct ceph_mount_options *fsopt = mdsc->fsc->mount_options;
1277 const char* metadata[][2] = {
1278 {"hostname", mdsc->nodename},
1279 {"kernel_version", init_utsname()->release},
1280 {"entity_id", opt->name ? : ""},
1281 {"root", fsopt->server_path ? : "/"},
1285 /* Calculate serialized length of metadata */
1286 extra_bytes = 4; /* map length */
1287 for (i = 0; metadata[i][0]; ++i) {
1288 extra_bytes += 8 + strlen(metadata[i][0]) +
1289 strlen(metadata[i][1]);
1290 metadata_key_count++;
1293 /* supported feature */
1295 count = ARRAY_SIZE(feature_bits);
1297 size = FEATURE_BYTES(count);
1298 extra_bytes += 4 + size;
1302 count = ARRAY_SIZE(metric_bits);
1304 size = METRIC_BYTES(count);
1305 extra_bytes += 2 + 4 + 4 + size;
1307 /* Allocate the message */
1308 msg = ceph_msg_new(CEPH_MSG_CLIENT_SESSION, sizeof(*h) + extra_bytes,
1311 pr_err("ENOMEM creating session open msg\n");
1312 return ERR_PTR(-ENOMEM);
1314 p = msg->front.iov_base;
1315 end = p + msg->front.iov_len;
1318 h->op = cpu_to_le32(CEPH_SESSION_REQUEST_OPEN);
1319 h->seq = cpu_to_le64(seq);
1322 * Serialize client metadata into waiting buffer space, using
1323 * the format that userspace expects for map<string, string>
1325 * ClientSession messages with metadata are v4
1327 msg->hdr.version = cpu_to_le16(4);
1328 msg->hdr.compat_version = cpu_to_le16(1);
1330 /* The write pointer, following the session_head structure */
1333 /* Number of entries in the map */
1334 ceph_encode_32(&p, metadata_key_count);
1336 /* Two length-prefixed strings for each entry in the map */
1337 for (i = 0; metadata[i][0]; ++i) {
1338 size_t const key_len = strlen(metadata[i][0]);
1339 size_t const val_len = strlen(metadata[i][1]);
1341 ceph_encode_32(&p, key_len);
1342 memcpy(p, metadata[i][0], key_len);
1344 ceph_encode_32(&p, val_len);
1345 memcpy(p, metadata[i][1], val_len);
1349 ret = encode_supported_features(&p, end);
1351 pr_err("encode_supported_features failed!\n");
1353 return ERR_PTR(ret);
1356 ret = encode_metric_spec(&p, end);
1358 pr_err("encode_metric_spec failed!\n");
1360 return ERR_PTR(ret);
1363 msg->front.iov_len = p - msg->front.iov_base;
1364 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
1370 * send session open request.
1372 * called under mdsc->mutex
1374 static int __open_session(struct ceph_mds_client *mdsc,
1375 struct ceph_mds_session *session)
1377 struct ceph_msg *msg;
1379 int mds = session->s_mds;
1381 /* wait for mds to go active? */
1382 mstate = ceph_mdsmap_get_state(mdsc->mdsmap, mds);
1383 dout("open_session to mds%d (%s)\n", mds,
1384 ceph_mds_state_name(mstate));
1385 session->s_state = CEPH_MDS_SESSION_OPENING;
1386 session->s_renew_requested = jiffies;
1388 /* send connect message */
1389 msg = create_session_open_msg(mdsc, session->s_seq);
1391 return PTR_ERR(msg);
1392 ceph_con_send(&session->s_con, msg);
1397 * open sessions for any export targets for the given mds
1399 * called under mdsc->mutex
1401 static struct ceph_mds_session *
1402 __open_export_target_session(struct ceph_mds_client *mdsc, int target)
1404 struct ceph_mds_session *session;
1407 session = __ceph_lookup_mds_session(mdsc, target);
1409 session = register_session(mdsc, target);
1410 if (IS_ERR(session))
1413 if (session->s_state == CEPH_MDS_SESSION_NEW ||
1414 session->s_state == CEPH_MDS_SESSION_CLOSING) {
1415 ret = __open_session(mdsc, session);
1417 return ERR_PTR(ret);
1423 struct ceph_mds_session *
1424 ceph_mdsc_open_export_target_session(struct ceph_mds_client *mdsc, int target)
1426 struct ceph_mds_session *session;
1428 dout("open_export_target_session to mds%d\n", target);
1430 mutex_lock(&mdsc->mutex);
1431 session = __open_export_target_session(mdsc, target);
1432 mutex_unlock(&mdsc->mutex);
1437 static void __open_export_target_sessions(struct ceph_mds_client *mdsc,
1438 struct ceph_mds_session *session)
1440 struct ceph_mds_info *mi;
1441 struct ceph_mds_session *ts;
1442 int i, mds = session->s_mds;
1444 if (mds >= mdsc->mdsmap->possible_max_rank)
1447 mi = &mdsc->mdsmap->m_info[mds];
1448 dout("open_export_target_sessions for mds%d (%d targets)\n",
1449 session->s_mds, mi->num_export_targets);
1451 for (i = 0; i < mi->num_export_targets; i++) {
1452 ts = __open_export_target_session(mdsc, mi->export_targets[i]);
1453 ceph_put_mds_session(ts);
1457 void ceph_mdsc_open_export_target_sessions(struct ceph_mds_client *mdsc,
1458 struct ceph_mds_session *session)
1460 mutex_lock(&mdsc->mutex);
1461 __open_export_target_sessions(mdsc, session);
1462 mutex_unlock(&mdsc->mutex);
1469 static void detach_cap_releases(struct ceph_mds_session *session,
1470 struct list_head *target)
1472 lockdep_assert_held(&session->s_cap_lock);
1474 list_splice_init(&session->s_cap_releases, target);
1475 session->s_num_cap_releases = 0;
1476 dout("dispose_cap_releases mds%d\n", session->s_mds);
1479 static void dispose_cap_releases(struct ceph_mds_client *mdsc,
1480 struct list_head *dispose)
1482 while (!list_empty(dispose)) {
1483 struct ceph_cap *cap;
1484 /* zero out the in-progress message */
1485 cap = list_first_entry(dispose, struct ceph_cap, session_caps);
1486 list_del(&cap->session_caps);
1487 ceph_put_cap(mdsc, cap);
1491 static void cleanup_session_requests(struct ceph_mds_client *mdsc,
1492 struct ceph_mds_session *session)
1494 struct ceph_mds_request *req;
1497 dout("cleanup_session_requests mds%d\n", session->s_mds);
1498 mutex_lock(&mdsc->mutex);
1499 while (!list_empty(&session->s_unsafe)) {
1500 req = list_first_entry(&session->s_unsafe,
1501 struct ceph_mds_request, r_unsafe_item);
1502 pr_warn_ratelimited(" dropping unsafe request %llu\n",
1504 if (req->r_target_inode)
1505 mapping_set_error(req->r_target_inode->i_mapping, -EIO);
1506 if (req->r_unsafe_dir)
1507 mapping_set_error(req->r_unsafe_dir->i_mapping, -EIO);
1508 __unregister_request(mdsc, req);
1510 /* zero r_attempts, so kick_requests() will re-send requests */
1511 p = rb_first(&mdsc->request_tree);
1513 req = rb_entry(p, struct ceph_mds_request, r_node);
1515 if (req->r_session &&
1516 req->r_session->s_mds == session->s_mds)
1517 req->r_attempts = 0;
1519 mutex_unlock(&mdsc->mutex);
1523 * Helper to safely iterate over all caps associated with a session, with
1524 * special care taken to handle a racing __ceph_remove_cap().
1526 * Caller must hold session s_mutex.
1528 int ceph_iterate_session_caps(struct ceph_mds_session *session,
1529 int (*cb)(struct inode *, struct ceph_cap *,
1532 struct list_head *p;
1533 struct ceph_cap *cap;
1534 struct inode *inode, *last_inode = NULL;
1535 struct ceph_cap *old_cap = NULL;
1538 dout("iterate_session_caps %p mds%d\n", session, session->s_mds);
1539 spin_lock(&session->s_cap_lock);
1540 p = session->s_caps.next;
1541 while (p != &session->s_caps) {
1542 cap = list_entry(p, struct ceph_cap, session_caps);
1543 inode = igrab(&cap->ci->vfs_inode);
1548 session->s_cap_iterator = cap;
1549 spin_unlock(&session->s_cap_lock);
1556 ceph_put_cap(session->s_mdsc, old_cap);
1560 ret = cb(inode, cap, arg);
1563 spin_lock(&session->s_cap_lock);
1566 dout("iterate_session_caps finishing cap %p removal\n",
1568 BUG_ON(cap->session != session);
1569 cap->session = NULL;
1570 list_del_init(&cap->session_caps);
1571 session->s_nr_caps--;
1572 atomic64_dec(&session->s_mdsc->metric.total_caps);
1573 if (cap->queue_release)
1574 __ceph_queue_cap_release(session, cap);
1576 old_cap = cap; /* put_cap it w/o locks held */
1583 session->s_cap_iterator = NULL;
1584 spin_unlock(&session->s_cap_lock);
1588 ceph_put_cap(session->s_mdsc, old_cap);
1593 static int remove_session_caps_cb(struct inode *inode, struct ceph_cap *cap,
1596 struct ceph_inode_info *ci = ceph_inode(inode);
1597 bool invalidate = false;
1600 dout("removing cap %p, ci is %p, inode is %p\n",
1601 cap, ci, &ci->vfs_inode);
1602 spin_lock(&ci->i_ceph_lock);
1603 iputs = ceph_purge_inode_cap(inode, cap, &invalidate);
1604 spin_unlock(&ci->i_ceph_lock);
1606 wake_up_all(&ci->i_cap_wq);
1608 ceph_queue_invalidate(inode);
1615 * caller must hold session s_mutex
1617 static void remove_session_caps(struct ceph_mds_session *session)
1619 struct ceph_fs_client *fsc = session->s_mdsc->fsc;
1620 struct super_block *sb = fsc->sb;
1623 dout("remove_session_caps on %p\n", session);
1624 ceph_iterate_session_caps(session, remove_session_caps_cb, fsc);
1626 wake_up_all(&fsc->mdsc->cap_flushing_wq);
1628 spin_lock(&session->s_cap_lock);
1629 if (session->s_nr_caps > 0) {
1630 struct inode *inode;
1631 struct ceph_cap *cap, *prev = NULL;
1632 struct ceph_vino vino;
1634 * iterate_session_caps() skips inodes that are being
1635 * deleted, we need to wait until deletions are complete.
1636 * __wait_on_freeing_inode() is designed for the job,
1637 * but it is not exported, so use lookup inode function
1640 while (!list_empty(&session->s_caps)) {
1641 cap = list_entry(session->s_caps.next,
1642 struct ceph_cap, session_caps);
1646 vino = cap->ci->i_vino;
1647 spin_unlock(&session->s_cap_lock);
1649 inode = ceph_find_inode(sb, vino);
1652 spin_lock(&session->s_cap_lock);
1656 // drop cap expires and unlock s_cap_lock
1657 detach_cap_releases(session, &dispose);
1659 BUG_ON(session->s_nr_caps > 0);
1660 BUG_ON(!list_empty(&session->s_cap_flushing));
1661 spin_unlock(&session->s_cap_lock);
1662 dispose_cap_releases(session->s_mdsc, &dispose);
1672 * wake up any threads waiting on this session's caps. if the cap is
1673 * old (didn't get renewed on the client reconnect), remove it now.
1675 * caller must hold s_mutex.
1677 static int wake_up_session_cb(struct inode *inode, struct ceph_cap *cap,
1680 struct ceph_inode_info *ci = ceph_inode(inode);
1681 unsigned long ev = (unsigned long)arg;
1683 if (ev == RECONNECT) {
1684 spin_lock(&ci->i_ceph_lock);
1685 ci->i_wanted_max_size = 0;
1686 ci->i_requested_max_size = 0;
1687 spin_unlock(&ci->i_ceph_lock);
1688 } else if (ev == RENEWCAPS) {
1689 if (cap->cap_gen < atomic_read(&cap->session->s_cap_gen)) {
1690 /* mds did not re-issue stale cap */
1691 spin_lock(&ci->i_ceph_lock);
1692 cap->issued = cap->implemented = CEPH_CAP_PIN;
1693 spin_unlock(&ci->i_ceph_lock);
1695 } else if (ev == FORCE_RO) {
1697 wake_up_all(&ci->i_cap_wq);
1701 static void wake_up_session_caps(struct ceph_mds_session *session, int ev)
1703 dout("wake_up_session_caps %p mds%d\n", session, session->s_mds);
1704 ceph_iterate_session_caps(session, wake_up_session_cb,
1705 (void *)(unsigned long)ev);
1709 * Send periodic message to MDS renewing all currently held caps. The
1710 * ack will reset the expiration for all caps from this session.
1712 * caller holds s_mutex
1714 static int send_renew_caps(struct ceph_mds_client *mdsc,
1715 struct ceph_mds_session *session)
1717 struct ceph_msg *msg;
1720 if (time_after_eq(jiffies, session->s_cap_ttl) &&
1721 time_after_eq(session->s_cap_ttl, session->s_renew_requested))
1722 pr_info("mds%d caps stale\n", session->s_mds);
1723 session->s_renew_requested = jiffies;
1725 /* do not try to renew caps until a recovering mds has reconnected
1726 * with its clients. */
1727 state = ceph_mdsmap_get_state(mdsc->mdsmap, session->s_mds);
1728 if (state < CEPH_MDS_STATE_RECONNECT) {
1729 dout("send_renew_caps ignoring mds%d (%s)\n",
1730 session->s_mds, ceph_mds_state_name(state));
1734 dout("send_renew_caps to mds%d (%s)\n", session->s_mds,
1735 ceph_mds_state_name(state));
1736 msg = ceph_create_session_msg(CEPH_SESSION_REQUEST_RENEWCAPS,
1737 ++session->s_renew_seq);
1740 ceph_con_send(&session->s_con, msg);
1744 static int send_flushmsg_ack(struct ceph_mds_client *mdsc,
1745 struct ceph_mds_session *session, u64 seq)
1747 struct ceph_msg *msg;
1749 dout("send_flushmsg_ack to mds%d (%s)s seq %lld\n",
1750 session->s_mds, ceph_session_state_name(session->s_state), seq);
1751 msg = ceph_create_session_msg(CEPH_SESSION_FLUSHMSG_ACK, seq);
1754 ceph_con_send(&session->s_con, msg);
1760 * Note new cap ttl, and any transition from stale -> not stale (fresh?).
1762 * Called under session->s_mutex
1764 static void renewed_caps(struct ceph_mds_client *mdsc,
1765 struct ceph_mds_session *session, int is_renew)
1770 spin_lock(&session->s_cap_lock);
1771 was_stale = is_renew && time_after_eq(jiffies, session->s_cap_ttl);
1773 session->s_cap_ttl = session->s_renew_requested +
1774 mdsc->mdsmap->m_session_timeout*HZ;
1777 if (time_before(jiffies, session->s_cap_ttl)) {
1778 pr_info("mds%d caps renewed\n", session->s_mds);
1781 pr_info("mds%d caps still stale\n", session->s_mds);
1784 dout("renewed_caps mds%d ttl now %lu, was %s, now %s\n",
1785 session->s_mds, session->s_cap_ttl, was_stale ? "stale" : "fresh",
1786 time_before(jiffies, session->s_cap_ttl) ? "stale" : "fresh");
1787 spin_unlock(&session->s_cap_lock);
1790 wake_up_session_caps(session, RENEWCAPS);
1794 * send a session close request
1796 static int request_close_session(struct ceph_mds_session *session)
1798 struct ceph_msg *msg;
1800 dout("request_close_session mds%d state %s seq %lld\n",
1801 session->s_mds, ceph_session_state_name(session->s_state),
1803 msg = ceph_create_session_msg(CEPH_SESSION_REQUEST_CLOSE,
1807 ceph_con_send(&session->s_con, msg);
1812 * Called with s_mutex held.
1814 static int __close_session(struct ceph_mds_client *mdsc,
1815 struct ceph_mds_session *session)
1817 if (session->s_state >= CEPH_MDS_SESSION_CLOSING)
1819 session->s_state = CEPH_MDS_SESSION_CLOSING;
1820 return request_close_session(session);
1823 static bool drop_negative_children(struct dentry *dentry)
1825 struct dentry *child;
1826 bool all_negative = true;
1828 if (!d_is_dir(dentry))
1831 spin_lock(&dentry->d_lock);
1832 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
1833 if (d_really_is_positive(child)) {
1834 all_negative = false;
1838 spin_unlock(&dentry->d_lock);
1841 shrink_dcache_parent(dentry);
1843 return all_negative;
1847 * Trim old(er) caps.
1849 * Because we can't cache an inode without one or more caps, we do
1850 * this indirectly: if a cap is unused, we prune its aliases, at which
1851 * point the inode will hopefully get dropped to.
1853 * Yes, this is a bit sloppy. Our only real goal here is to respond to
1854 * memory pressure from the MDS, though, so it needn't be perfect.
1856 static int trim_caps_cb(struct inode *inode, struct ceph_cap *cap, void *arg)
1858 int *remaining = arg;
1859 struct ceph_inode_info *ci = ceph_inode(inode);
1860 int used, wanted, oissued, mine;
1862 if (*remaining <= 0)
1865 spin_lock(&ci->i_ceph_lock);
1866 mine = cap->issued | cap->implemented;
1867 used = __ceph_caps_used(ci);
1868 wanted = __ceph_caps_file_wanted(ci);
1869 oissued = __ceph_caps_issued_other(ci, cap);
1871 dout("trim_caps_cb %p cap %p mine %s oissued %s used %s wanted %s\n",
1872 inode, cap, ceph_cap_string(mine), ceph_cap_string(oissued),
1873 ceph_cap_string(used), ceph_cap_string(wanted));
1874 if (cap == ci->i_auth_cap) {
1875 if (ci->i_dirty_caps || ci->i_flushing_caps ||
1876 !list_empty(&ci->i_cap_snaps))
1878 if ((used | wanted) & CEPH_CAP_ANY_WR)
1880 /* Note: it's possible that i_filelock_ref becomes non-zero
1881 * after dropping auth caps. It doesn't hurt because reply
1882 * of lock mds request will re-add auth caps. */
1883 if (atomic_read(&ci->i_filelock_ref) > 0)
1886 /* The inode has cached pages, but it's no longer used.
1887 * we can safely drop it */
1888 if (S_ISREG(inode->i_mode) &&
1889 wanted == 0 && used == CEPH_CAP_FILE_CACHE &&
1890 !(oissued & CEPH_CAP_FILE_CACHE)) {
1894 if ((used | wanted) & ~oissued & mine)
1895 goto out; /* we need these caps */
1898 /* we aren't the only cap.. just remove us */
1899 ceph_remove_cap(cap, true);
1902 struct dentry *dentry;
1903 /* try dropping referring dentries */
1904 spin_unlock(&ci->i_ceph_lock);
1905 dentry = d_find_any_alias(inode);
1906 if (dentry && drop_negative_children(dentry)) {
1909 d_prune_aliases(inode);
1910 count = atomic_read(&inode->i_count);
1913 dout("trim_caps_cb %p cap %p pruned, count now %d\n",
1922 spin_unlock(&ci->i_ceph_lock);
1927 * Trim session cap count down to some max number.
1929 int ceph_trim_caps(struct ceph_mds_client *mdsc,
1930 struct ceph_mds_session *session,
1933 int trim_caps = session->s_nr_caps - max_caps;
1935 dout("trim_caps mds%d start: %d / %d, trim %d\n",
1936 session->s_mds, session->s_nr_caps, max_caps, trim_caps);
1937 if (trim_caps > 0) {
1938 int remaining = trim_caps;
1940 ceph_iterate_session_caps(session, trim_caps_cb, &remaining);
1941 dout("trim_caps mds%d done: %d / %d, trimmed %d\n",
1942 session->s_mds, session->s_nr_caps, max_caps,
1943 trim_caps - remaining);
1946 ceph_flush_cap_releases(mdsc, session);
1950 static int check_caps_flush(struct ceph_mds_client *mdsc,
1955 spin_lock(&mdsc->cap_dirty_lock);
1956 if (!list_empty(&mdsc->cap_flush_list)) {
1957 struct ceph_cap_flush *cf =
1958 list_first_entry(&mdsc->cap_flush_list,
1959 struct ceph_cap_flush, g_list);
1960 if (cf->tid <= want_flush_tid) {
1961 dout("check_caps_flush still flushing tid "
1962 "%llu <= %llu\n", cf->tid, want_flush_tid);
1966 spin_unlock(&mdsc->cap_dirty_lock);
1971 * flush all dirty inode data to disk.
1973 * returns true if we've flushed through want_flush_tid
1975 static void wait_caps_flush(struct ceph_mds_client *mdsc,
1978 dout("check_caps_flush want %llu\n", want_flush_tid);
1980 wait_event(mdsc->cap_flushing_wq,
1981 check_caps_flush(mdsc, want_flush_tid));
1983 dout("check_caps_flush ok, flushed thru %llu\n", want_flush_tid);
1987 * called under s_mutex
1989 static void ceph_send_cap_releases(struct ceph_mds_client *mdsc,
1990 struct ceph_mds_session *session)
1992 struct ceph_msg *msg = NULL;
1993 struct ceph_mds_cap_release *head;
1994 struct ceph_mds_cap_item *item;
1995 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
1996 struct ceph_cap *cap;
1997 LIST_HEAD(tmp_list);
1998 int num_cap_releases;
1999 __le32 barrier, *cap_barrier;
2001 down_read(&osdc->lock);
2002 barrier = cpu_to_le32(osdc->epoch_barrier);
2003 up_read(&osdc->lock);
2005 spin_lock(&session->s_cap_lock);
2007 list_splice_init(&session->s_cap_releases, &tmp_list);
2008 num_cap_releases = session->s_num_cap_releases;
2009 session->s_num_cap_releases = 0;
2010 spin_unlock(&session->s_cap_lock);
2012 while (!list_empty(&tmp_list)) {
2014 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPRELEASE,
2015 PAGE_SIZE, GFP_NOFS, false);
2018 head = msg->front.iov_base;
2019 head->num = cpu_to_le32(0);
2020 msg->front.iov_len = sizeof(*head);
2022 msg->hdr.version = cpu_to_le16(2);
2023 msg->hdr.compat_version = cpu_to_le16(1);
2026 cap = list_first_entry(&tmp_list, struct ceph_cap,
2028 list_del(&cap->session_caps);
2031 head = msg->front.iov_base;
2032 put_unaligned_le32(get_unaligned_le32(&head->num) + 1,
2034 item = msg->front.iov_base + msg->front.iov_len;
2035 item->ino = cpu_to_le64(cap->cap_ino);
2036 item->cap_id = cpu_to_le64(cap->cap_id);
2037 item->migrate_seq = cpu_to_le32(cap->mseq);
2038 item->seq = cpu_to_le32(cap->issue_seq);
2039 msg->front.iov_len += sizeof(*item);
2041 ceph_put_cap(mdsc, cap);
2043 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
2044 // Append cap_barrier field
2045 cap_barrier = msg->front.iov_base + msg->front.iov_len;
2046 *cap_barrier = barrier;
2047 msg->front.iov_len += sizeof(*cap_barrier);
2049 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2050 dout("send_cap_releases mds%d %p\n", session->s_mds, msg);
2051 ceph_con_send(&session->s_con, msg);
2056 BUG_ON(num_cap_releases != 0);
2058 spin_lock(&session->s_cap_lock);
2059 if (!list_empty(&session->s_cap_releases))
2061 spin_unlock(&session->s_cap_lock);
2064 // Append cap_barrier field
2065 cap_barrier = msg->front.iov_base + msg->front.iov_len;
2066 *cap_barrier = barrier;
2067 msg->front.iov_len += sizeof(*cap_barrier);
2069 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2070 dout("send_cap_releases mds%d %p\n", session->s_mds, msg);
2071 ceph_con_send(&session->s_con, msg);
2075 pr_err("send_cap_releases mds%d, failed to allocate message\n",
2077 spin_lock(&session->s_cap_lock);
2078 list_splice(&tmp_list, &session->s_cap_releases);
2079 session->s_num_cap_releases += num_cap_releases;
2080 spin_unlock(&session->s_cap_lock);
2083 static void ceph_cap_release_work(struct work_struct *work)
2085 struct ceph_mds_session *session =
2086 container_of(work, struct ceph_mds_session, s_cap_release_work);
2088 mutex_lock(&session->s_mutex);
2089 if (session->s_state == CEPH_MDS_SESSION_OPEN ||
2090 session->s_state == CEPH_MDS_SESSION_HUNG)
2091 ceph_send_cap_releases(session->s_mdsc, session);
2092 mutex_unlock(&session->s_mutex);
2093 ceph_put_mds_session(session);
2096 void ceph_flush_cap_releases(struct ceph_mds_client *mdsc,
2097 struct ceph_mds_session *session)
2102 ceph_get_mds_session(session);
2103 if (queue_work(mdsc->fsc->cap_wq,
2104 &session->s_cap_release_work)) {
2105 dout("cap release work queued\n");
2107 ceph_put_mds_session(session);
2108 dout("failed to queue cap release work\n");
2113 * caller holds session->s_cap_lock
2115 void __ceph_queue_cap_release(struct ceph_mds_session *session,
2116 struct ceph_cap *cap)
2118 list_add_tail(&cap->session_caps, &session->s_cap_releases);
2119 session->s_num_cap_releases++;
2121 if (!(session->s_num_cap_releases % CEPH_CAPS_PER_RELEASE))
2122 ceph_flush_cap_releases(session->s_mdsc, session);
2125 static void ceph_cap_reclaim_work(struct work_struct *work)
2127 struct ceph_mds_client *mdsc =
2128 container_of(work, struct ceph_mds_client, cap_reclaim_work);
2129 int ret = ceph_trim_dentries(mdsc);
2131 ceph_queue_cap_reclaim_work(mdsc);
2134 void ceph_queue_cap_reclaim_work(struct ceph_mds_client *mdsc)
2139 if (queue_work(mdsc->fsc->cap_wq, &mdsc->cap_reclaim_work)) {
2140 dout("caps reclaim work queued\n");
2142 dout("failed to queue caps release work\n");
2146 void ceph_reclaim_caps_nr(struct ceph_mds_client *mdsc, int nr)
2151 val = atomic_add_return(nr, &mdsc->cap_reclaim_pending);
2152 if ((val % CEPH_CAPS_PER_RELEASE) < nr) {
2153 atomic_set(&mdsc->cap_reclaim_pending, 0);
2154 ceph_queue_cap_reclaim_work(mdsc);
2162 int ceph_alloc_readdir_reply_buffer(struct ceph_mds_request *req,
2165 struct ceph_inode_info *ci = ceph_inode(dir);
2166 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
2167 struct ceph_mount_options *opt = req->r_mdsc->fsc->mount_options;
2168 size_t size = sizeof(struct ceph_mds_reply_dir_entry);
2169 unsigned int num_entries;
2172 spin_lock(&ci->i_ceph_lock);
2173 num_entries = ci->i_files + ci->i_subdirs;
2174 spin_unlock(&ci->i_ceph_lock);
2175 num_entries = max(num_entries, 1U);
2176 num_entries = min(num_entries, opt->max_readdir);
2178 order = get_order(size * num_entries);
2179 while (order >= 0) {
2180 rinfo->dir_entries = (void*)__get_free_pages(GFP_KERNEL |
2183 if (rinfo->dir_entries)
2187 if (!rinfo->dir_entries)
2190 num_entries = (PAGE_SIZE << order) / size;
2191 num_entries = min(num_entries, opt->max_readdir);
2193 rinfo->dir_buf_size = PAGE_SIZE << order;
2194 req->r_num_caps = num_entries + 1;
2195 req->r_args.readdir.max_entries = cpu_to_le32(num_entries);
2196 req->r_args.readdir.max_bytes = cpu_to_le32(opt->max_readdir_bytes);
2201 * Create an mds request.
2203 struct ceph_mds_request *
2204 ceph_mdsc_create_request(struct ceph_mds_client *mdsc, int op, int mode)
2206 struct ceph_mds_request *req;
2208 req = kmem_cache_zalloc(ceph_mds_request_cachep, GFP_NOFS);
2210 return ERR_PTR(-ENOMEM);
2212 mutex_init(&req->r_fill_mutex);
2214 req->r_started = jiffies;
2215 req->r_start_latency = ktime_get();
2216 req->r_resend_mds = -1;
2217 INIT_LIST_HEAD(&req->r_unsafe_dir_item);
2218 INIT_LIST_HEAD(&req->r_unsafe_target_item);
2220 kref_init(&req->r_kref);
2221 RB_CLEAR_NODE(&req->r_node);
2222 INIT_LIST_HEAD(&req->r_wait);
2223 init_completion(&req->r_completion);
2224 init_completion(&req->r_safe_completion);
2225 INIT_LIST_HEAD(&req->r_unsafe_item);
2227 ktime_get_coarse_real_ts64(&req->r_stamp);
2230 req->r_direct_mode = mode;
2235 * return oldest (lowest) request, tid in request tree, 0 if none.
2237 * called under mdsc->mutex.
2239 static struct ceph_mds_request *__get_oldest_req(struct ceph_mds_client *mdsc)
2241 if (RB_EMPTY_ROOT(&mdsc->request_tree))
2243 return rb_entry(rb_first(&mdsc->request_tree),
2244 struct ceph_mds_request, r_node);
2247 static inline u64 __get_oldest_tid(struct ceph_mds_client *mdsc)
2249 return mdsc->oldest_tid;
2253 * Build a dentry's path. Allocate on heap; caller must kfree. Based
2254 * on build_path_from_dentry in fs/cifs/dir.c.
2256 * If @stop_on_nosnap, generate path relative to the first non-snapped
2259 * Encode hidden .snap dirs as a double /, i.e.
2260 * foo/.snap/bar -> foo//bar
2262 char *ceph_mdsc_build_path(struct dentry *dentry, int *plen, u64 *pbase,
2265 struct dentry *temp;
2272 return ERR_PTR(-EINVAL);
2276 return ERR_PTR(-ENOMEM);
2281 seq = read_seqbegin(&rename_lock);
2285 struct inode *inode;
2287 spin_lock(&temp->d_lock);
2288 inode = d_inode(temp);
2289 if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
2290 dout("build_path path+%d: %p SNAPDIR\n",
2292 } else if (stop_on_nosnap && inode && dentry != temp &&
2293 ceph_snap(inode) == CEPH_NOSNAP) {
2294 spin_unlock(&temp->d_lock);
2295 pos++; /* get rid of any prepended '/' */
2298 pos -= temp->d_name.len;
2300 spin_unlock(&temp->d_lock);
2303 memcpy(path + pos, temp->d_name.name, temp->d_name.len);
2305 spin_unlock(&temp->d_lock);
2306 temp = READ_ONCE(temp->d_parent);
2308 /* Are we at the root? */
2312 /* Are we out of buffer? */
2318 base = ceph_ino(d_inode(temp));
2321 if (read_seqretry(&rename_lock, seq))
2326 * A rename didn't occur, but somehow we didn't end up where
2327 * we thought we would. Throw a warning and try again.
2329 pr_warn("build_path did not end path lookup where "
2330 "expected, pos is %d\n", pos);
2335 *plen = PATH_MAX - 1 - pos;
2336 dout("build_path on %p %d built %llx '%.*s'\n",
2337 dentry, d_count(dentry), base, *plen, path + pos);
2341 static int build_dentry_path(struct dentry *dentry, struct inode *dir,
2342 const char **ppath, int *ppathlen, u64 *pino,
2343 bool *pfreepath, bool parent_locked)
2349 dir = d_inode_rcu(dentry->d_parent);
2350 if (dir && parent_locked && ceph_snap(dir) == CEPH_NOSNAP) {
2351 *pino = ceph_ino(dir);
2353 *ppath = dentry->d_name.name;
2354 *ppathlen = dentry->d_name.len;
2358 path = ceph_mdsc_build_path(dentry, ppathlen, pino, 1);
2360 return PTR_ERR(path);
2366 static int build_inode_path(struct inode *inode,
2367 const char **ppath, int *ppathlen, u64 *pino,
2370 struct dentry *dentry;
2373 if (ceph_snap(inode) == CEPH_NOSNAP) {
2374 *pino = ceph_ino(inode);
2378 dentry = d_find_alias(inode);
2379 path = ceph_mdsc_build_path(dentry, ppathlen, pino, 1);
2382 return PTR_ERR(path);
2389 * request arguments may be specified via an inode *, a dentry *, or
2390 * an explicit ino+path.
2392 static int set_request_path_attr(struct inode *rinode, struct dentry *rdentry,
2393 struct inode *rdiri, const char *rpath,
2394 u64 rino, const char **ppath, int *pathlen,
2395 u64 *ino, bool *freepath, bool parent_locked)
2400 r = build_inode_path(rinode, ppath, pathlen, ino, freepath);
2401 dout(" inode %p %llx.%llx\n", rinode, ceph_ino(rinode),
2403 } else if (rdentry) {
2404 r = build_dentry_path(rdentry, rdiri, ppath, pathlen, ino,
2405 freepath, parent_locked);
2406 dout(" dentry %p %llx/%.*s\n", rdentry, *ino, *pathlen,
2408 } else if (rpath || rino) {
2411 *pathlen = rpath ? strlen(rpath) : 0;
2412 dout(" path %.*s\n", *pathlen, rpath);
2418 static void encode_timestamp_and_gids(void **p,
2419 const struct ceph_mds_request *req)
2421 struct ceph_timespec ts;
2424 ceph_encode_timespec64(&ts, &req->r_stamp);
2425 ceph_encode_copy(p, &ts, sizeof(ts));
2428 ceph_encode_32(p, req->r_cred->group_info->ngroups);
2429 for (i = 0; i < req->r_cred->group_info->ngroups; i++)
2430 ceph_encode_64(p, from_kgid(&init_user_ns,
2431 req->r_cred->group_info->gid[i]));
2435 * called under mdsc->mutex
2437 static struct ceph_msg *create_request_message(struct ceph_mds_session *session,
2438 struct ceph_mds_request *req,
2439 bool drop_cap_releases)
2441 int mds = session->s_mds;
2442 struct ceph_mds_client *mdsc = session->s_mdsc;
2443 struct ceph_msg *msg;
2444 struct ceph_mds_request_head_old *head;
2445 const char *path1 = NULL;
2446 const char *path2 = NULL;
2447 u64 ino1 = 0, ino2 = 0;
2448 int pathlen1 = 0, pathlen2 = 0;
2449 bool freepath1 = false, freepath2 = false;
2454 bool legacy = !(session->s_con.peer_features & CEPH_FEATURE_FS_BTIME);
2456 ret = set_request_path_attr(req->r_inode, req->r_dentry,
2457 req->r_parent, req->r_path1, req->r_ino1.ino,
2458 &path1, &pathlen1, &ino1, &freepath1,
2459 test_bit(CEPH_MDS_R_PARENT_LOCKED,
2460 &req->r_req_flags));
2466 /* If r_old_dentry is set, then assume that its parent is locked */
2467 ret = set_request_path_attr(NULL, req->r_old_dentry,
2468 req->r_old_dentry_dir,
2469 req->r_path2, req->r_ino2.ino,
2470 &path2, &pathlen2, &ino2, &freepath2, true);
2476 len = legacy ? sizeof(*head) : sizeof(struct ceph_mds_request_head);
2477 len += pathlen1 + pathlen2 + 2*(1 + sizeof(u32) + sizeof(u64)) +
2478 sizeof(struct ceph_timespec);
2479 len += sizeof(u32) + (sizeof(u64) * req->r_cred->group_info->ngroups);
2481 /* calculate (max) length for cap releases */
2482 len += sizeof(struct ceph_mds_request_release) *
2483 (!!req->r_inode_drop + !!req->r_dentry_drop +
2484 !!req->r_old_inode_drop + !!req->r_old_dentry_drop);
2486 if (req->r_dentry_drop)
2488 if (req->r_old_dentry_drop)
2491 msg = ceph_msg_new2(CEPH_MSG_CLIENT_REQUEST, len, 1, GFP_NOFS, false);
2493 msg = ERR_PTR(-ENOMEM);
2497 msg->hdr.tid = cpu_to_le64(req->r_tid);
2500 * The old ceph_mds_request_head didn't contain a version field, and
2501 * one was added when we moved the message version from 3->4.
2504 msg->hdr.version = cpu_to_le16(3);
2505 head = msg->front.iov_base;
2506 p = msg->front.iov_base + sizeof(*head);
2508 struct ceph_mds_request_head *new_head = msg->front.iov_base;
2510 msg->hdr.version = cpu_to_le16(4);
2511 new_head->version = cpu_to_le16(CEPH_MDS_REQUEST_HEAD_VERSION);
2512 head = (struct ceph_mds_request_head_old *)&new_head->oldest_client_tid;
2513 p = msg->front.iov_base + sizeof(*new_head);
2516 end = msg->front.iov_base + msg->front.iov_len;
2518 head->mdsmap_epoch = cpu_to_le32(mdsc->mdsmap->m_epoch);
2519 head->op = cpu_to_le32(req->r_op);
2520 head->caller_uid = cpu_to_le32(from_kuid(&init_user_ns,
2521 req->r_cred->fsuid));
2522 head->caller_gid = cpu_to_le32(from_kgid(&init_user_ns,
2523 req->r_cred->fsgid));
2524 head->ino = cpu_to_le64(req->r_deleg_ino);
2525 head->args = req->r_args;
2527 ceph_encode_filepath(&p, end, ino1, path1);
2528 ceph_encode_filepath(&p, end, ino2, path2);
2530 /* make note of release offset, in case we need to replay */
2531 req->r_request_release_offset = p - msg->front.iov_base;
2535 if (req->r_inode_drop)
2536 releases += ceph_encode_inode_release(&p,
2537 req->r_inode ? req->r_inode : d_inode(req->r_dentry),
2538 mds, req->r_inode_drop, req->r_inode_unless,
2539 req->r_op == CEPH_MDS_OP_READDIR);
2540 if (req->r_dentry_drop)
2541 releases += ceph_encode_dentry_release(&p, req->r_dentry,
2542 req->r_parent, mds, req->r_dentry_drop,
2543 req->r_dentry_unless);
2544 if (req->r_old_dentry_drop)
2545 releases += ceph_encode_dentry_release(&p, req->r_old_dentry,
2546 req->r_old_dentry_dir, mds,
2547 req->r_old_dentry_drop,
2548 req->r_old_dentry_unless);
2549 if (req->r_old_inode_drop)
2550 releases += ceph_encode_inode_release(&p,
2551 d_inode(req->r_old_dentry),
2552 mds, req->r_old_inode_drop, req->r_old_inode_unless, 0);
2554 if (drop_cap_releases) {
2556 p = msg->front.iov_base + req->r_request_release_offset;
2559 head->num_releases = cpu_to_le16(releases);
2561 encode_timestamp_and_gids(&p, req);
2563 if (WARN_ON_ONCE(p > end)) {
2565 msg = ERR_PTR(-ERANGE);
2569 msg->front.iov_len = p - msg->front.iov_base;
2570 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2572 if (req->r_pagelist) {
2573 struct ceph_pagelist *pagelist = req->r_pagelist;
2574 ceph_msg_data_add_pagelist(msg, pagelist);
2575 msg->hdr.data_len = cpu_to_le32(pagelist->length);
2577 msg->hdr.data_len = 0;
2580 msg->hdr.data_off = cpu_to_le16(0);
2584 ceph_mdsc_free_path((char *)path2, pathlen2);
2587 ceph_mdsc_free_path((char *)path1, pathlen1);
2593 * called under mdsc->mutex if error, under no mutex if
2596 static void complete_request(struct ceph_mds_client *mdsc,
2597 struct ceph_mds_request *req)
2599 req->r_end_latency = ktime_get();
2601 if (req->r_callback)
2602 req->r_callback(mdsc, req);
2603 complete_all(&req->r_completion);
2606 static struct ceph_mds_request_head_old *
2607 find_old_request_head(void *p, u64 features)
2609 bool legacy = !(features & CEPH_FEATURE_FS_BTIME);
2610 struct ceph_mds_request_head *new_head;
2613 return (struct ceph_mds_request_head_old *)p;
2614 new_head = (struct ceph_mds_request_head *)p;
2615 return (struct ceph_mds_request_head_old *)&new_head->oldest_client_tid;
2619 * called under mdsc->mutex
2621 static int __prepare_send_request(struct ceph_mds_session *session,
2622 struct ceph_mds_request *req,
2623 bool drop_cap_releases)
2625 int mds = session->s_mds;
2626 struct ceph_mds_client *mdsc = session->s_mdsc;
2627 struct ceph_mds_request_head_old *rhead;
2628 struct ceph_msg *msg;
2633 struct ceph_cap *cap =
2634 ceph_get_cap_for_mds(ceph_inode(req->r_inode), mds);
2637 req->r_sent_on_mseq = cap->mseq;
2639 req->r_sent_on_mseq = -1;
2641 dout("prepare_send_request %p tid %lld %s (attempt %d)\n", req,
2642 req->r_tid, ceph_mds_op_name(req->r_op), req->r_attempts);
2644 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
2648 * Replay. Do not regenerate message (and rebuild
2649 * paths, etc.); just use the original message.
2650 * Rebuilding paths will break for renames because
2651 * d_move mangles the src name.
2653 msg = req->r_request;
2654 rhead = find_old_request_head(msg->front.iov_base,
2655 session->s_con.peer_features);
2657 flags = le32_to_cpu(rhead->flags);
2658 flags |= CEPH_MDS_FLAG_REPLAY;
2659 rhead->flags = cpu_to_le32(flags);
2661 if (req->r_target_inode)
2662 rhead->ino = cpu_to_le64(ceph_ino(req->r_target_inode));
2664 rhead->num_retry = req->r_attempts - 1;
2666 /* remove cap/dentry releases from message */
2667 rhead->num_releases = 0;
2669 p = msg->front.iov_base + req->r_request_release_offset;
2670 encode_timestamp_and_gids(&p, req);
2672 msg->front.iov_len = p - msg->front.iov_base;
2673 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2677 if (req->r_request) {
2678 ceph_msg_put(req->r_request);
2679 req->r_request = NULL;
2681 msg = create_request_message(session, req, drop_cap_releases);
2683 req->r_err = PTR_ERR(msg);
2684 return PTR_ERR(msg);
2686 req->r_request = msg;
2688 rhead = find_old_request_head(msg->front.iov_base,
2689 session->s_con.peer_features);
2690 rhead->oldest_client_tid = cpu_to_le64(__get_oldest_tid(mdsc));
2691 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
2692 flags |= CEPH_MDS_FLAG_REPLAY;
2693 if (test_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags))
2694 flags |= CEPH_MDS_FLAG_ASYNC;
2696 flags |= CEPH_MDS_FLAG_WANT_DENTRY;
2697 rhead->flags = cpu_to_le32(flags);
2698 rhead->num_fwd = req->r_num_fwd;
2699 rhead->num_retry = req->r_attempts - 1;
2701 dout(" r_parent = %p\n", req->r_parent);
2706 * called under mdsc->mutex
2708 static int __send_request(struct ceph_mds_session *session,
2709 struct ceph_mds_request *req,
2710 bool drop_cap_releases)
2714 err = __prepare_send_request(session, req, drop_cap_releases);
2716 ceph_msg_get(req->r_request);
2717 ceph_con_send(&session->s_con, req->r_request);
2724 * send request, or put it on the appropriate wait list.
2726 static void __do_request(struct ceph_mds_client *mdsc,
2727 struct ceph_mds_request *req)
2729 struct ceph_mds_session *session = NULL;
2734 if (req->r_err || test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags)) {
2735 if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags))
2736 __unregister_request(mdsc, req);
2740 if (req->r_timeout &&
2741 time_after_eq(jiffies, req->r_started + req->r_timeout)) {
2742 dout("do_request timed out\n");
2746 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
2747 dout("do_request forced umount\n");
2751 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_MOUNTING) {
2752 if (mdsc->mdsmap_err) {
2753 err = mdsc->mdsmap_err;
2754 dout("do_request mdsmap err %d\n", err);
2757 if (mdsc->mdsmap->m_epoch == 0) {
2758 dout("do_request no mdsmap, waiting for map\n");
2759 list_add(&req->r_wait, &mdsc->waiting_for_map);
2762 if (!(mdsc->fsc->mount_options->flags &
2763 CEPH_MOUNT_OPT_MOUNTWAIT) &&
2764 !ceph_mdsmap_is_cluster_available(mdsc->mdsmap)) {
2765 err = -EHOSTUNREACH;
2770 put_request_session(req);
2772 mds = __choose_mds(mdsc, req, &random);
2774 ceph_mdsmap_get_state(mdsc->mdsmap, mds) < CEPH_MDS_STATE_ACTIVE) {
2775 if (test_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags)) {
2779 dout("do_request no mds or not active, waiting for map\n");
2780 list_add(&req->r_wait, &mdsc->waiting_for_map);
2784 /* get, open session */
2785 session = __ceph_lookup_mds_session(mdsc, mds);
2787 session = register_session(mdsc, mds);
2788 if (IS_ERR(session)) {
2789 err = PTR_ERR(session);
2793 req->r_session = ceph_get_mds_session(session);
2795 dout("do_request mds%d session %p state %s\n", mds, session,
2796 ceph_session_state_name(session->s_state));
2797 if (session->s_state != CEPH_MDS_SESSION_OPEN &&
2798 session->s_state != CEPH_MDS_SESSION_HUNG) {
2800 * We cannot queue async requests since the caps and delegated
2801 * inodes are bound to the session. Just return -EJUKEBOX and
2802 * let the caller retry a sync request in that case.
2804 if (test_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags)) {
2810 * If the session has been REJECTED, then return a hard error,
2811 * unless it's a CLEANRECOVER mount, in which case we'll queue
2812 * it to the mdsc queue.
2814 if (session->s_state == CEPH_MDS_SESSION_REJECTED) {
2815 if (ceph_test_mount_opt(mdsc->fsc, CLEANRECOVER))
2816 list_add(&req->r_wait, &mdsc->waiting_for_map);
2822 if (session->s_state == CEPH_MDS_SESSION_NEW ||
2823 session->s_state == CEPH_MDS_SESSION_CLOSING) {
2824 err = __open_session(mdsc, session);
2827 /* retry the same mds later */
2829 req->r_resend_mds = mds;
2831 list_add(&req->r_wait, &session->s_waiting);
2836 req->r_resend_mds = -1; /* forget any previous mds hint */
2838 if (req->r_request_started == 0) /* note request start time */
2839 req->r_request_started = jiffies;
2841 err = __send_request(session, req, false);
2844 ceph_put_mds_session(session);
2847 dout("__do_request early error %d\n", err);
2849 complete_request(mdsc, req);
2850 __unregister_request(mdsc, req);
2856 * called under mdsc->mutex
2858 static void __wake_requests(struct ceph_mds_client *mdsc,
2859 struct list_head *head)
2861 struct ceph_mds_request *req;
2862 LIST_HEAD(tmp_list);
2864 list_splice_init(head, &tmp_list);
2866 while (!list_empty(&tmp_list)) {
2867 req = list_entry(tmp_list.next,
2868 struct ceph_mds_request, r_wait);
2869 list_del_init(&req->r_wait);
2870 dout(" wake request %p tid %llu\n", req, req->r_tid);
2871 __do_request(mdsc, req);
2876 * Wake up threads with requests pending for @mds, so that they can
2877 * resubmit their requests to a possibly different mds.
2879 static void kick_requests(struct ceph_mds_client *mdsc, int mds)
2881 struct ceph_mds_request *req;
2882 struct rb_node *p = rb_first(&mdsc->request_tree);
2884 dout("kick_requests mds%d\n", mds);
2886 req = rb_entry(p, struct ceph_mds_request, r_node);
2888 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
2890 if (req->r_attempts > 0)
2891 continue; /* only new requests */
2892 if (req->r_session &&
2893 req->r_session->s_mds == mds) {
2894 dout(" kicking tid %llu\n", req->r_tid);
2895 list_del_init(&req->r_wait);
2896 __do_request(mdsc, req);
2901 int ceph_mdsc_submit_request(struct ceph_mds_client *mdsc, struct inode *dir,
2902 struct ceph_mds_request *req)
2906 /* take CAP_PIN refs for r_inode, r_parent, r_old_dentry */
2908 ceph_get_cap_refs(ceph_inode(req->r_inode), CEPH_CAP_PIN);
2909 if (req->r_parent) {
2910 struct ceph_inode_info *ci = ceph_inode(req->r_parent);
2911 int fmode = (req->r_op & CEPH_MDS_OP_WRITE) ?
2912 CEPH_FILE_MODE_WR : CEPH_FILE_MODE_RD;
2913 spin_lock(&ci->i_ceph_lock);
2914 ceph_take_cap_refs(ci, CEPH_CAP_PIN, false);
2915 __ceph_touch_fmode(ci, mdsc, fmode);
2916 spin_unlock(&ci->i_ceph_lock);
2918 if (req->r_old_dentry_dir)
2919 ceph_get_cap_refs(ceph_inode(req->r_old_dentry_dir),
2923 err = ceph_wait_on_async_create(req->r_inode);
2925 dout("%s: wait for async create returned: %d\n",
2931 if (!err && req->r_old_inode) {
2932 err = ceph_wait_on_async_create(req->r_old_inode);
2934 dout("%s: wait for async create returned: %d\n",
2940 dout("submit_request on %p for inode %p\n", req, dir);
2941 mutex_lock(&mdsc->mutex);
2942 __register_request(mdsc, req, dir);
2943 __do_request(mdsc, req);
2945 mutex_unlock(&mdsc->mutex);
2949 static int ceph_mdsc_wait_request(struct ceph_mds_client *mdsc,
2950 struct ceph_mds_request *req)
2955 dout("do_request waiting\n");
2956 if (!req->r_timeout && req->r_wait_for_completion) {
2957 err = req->r_wait_for_completion(mdsc, req);
2959 long timeleft = wait_for_completion_killable_timeout(
2961 ceph_timeout_jiffies(req->r_timeout));
2965 err = -ETIMEDOUT; /* timed out */
2967 err = timeleft; /* killed */
2969 dout("do_request waited, got %d\n", err);
2970 mutex_lock(&mdsc->mutex);
2972 /* only abort if we didn't race with a real reply */
2973 if (test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags)) {
2974 err = le32_to_cpu(req->r_reply_info.head->result);
2975 } else if (err < 0) {
2976 dout("aborted request %lld with %d\n", req->r_tid, err);
2979 * ensure we aren't running concurrently with
2980 * ceph_fill_trace or ceph_readdir_prepopulate, which
2981 * rely on locks (dir mutex) held by our caller.
2983 mutex_lock(&req->r_fill_mutex);
2985 set_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags);
2986 mutex_unlock(&req->r_fill_mutex);
2988 if (req->r_parent &&
2989 (req->r_op & CEPH_MDS_OP_WRITE))
2990 ceph_invalidate_dir_request(req);
2995 mutex_unlock(&mdsc->mutex);
3000 * Synchrously perform an mds request. Take care of all of the
3001 * session setup, forwarding, retry details.
3003 int ceph_mdsc_do_request(struct ceph_mds_client *mdsc,
3005 struct ceph_mds_request *req)
3009 dout("do_request on %p\n", req);
3012 err = ceph_mdsc_submit_request(mdsc, dir, req);
3014 err = ceph_mdsc_wait_request(mdsc, req);
3015 dout("do_request %p done, result %d\n", req, err);
3020 * Invalidate dir's completeness, dentry lease state on an aborted MDS
3021 * namespace request.
3023 void ceph_invalidate_dir_request(struct ceph_mds_request *req)
3025 struct inode *dir = req->r_parent;
3026 struct inode *old_dir = req->r_old_dentry_dir;
3028 dout("invalidate_dir_request %p %p (complete, lease(s))\n", dir, old_dir);
3030 ceph_dir_clear_complete(dir);
3032 ceph_dir_clear_complete(old_dir);
3034 ceph_invalidate_dentry_lease(req->r_dentry);
3035 if (req->r_old_dentry)
3036 ceph_invalidate_dentry_lease(req->r_old_dentry);
3042 * We take the session mutex and parse and process the reply immediately.
3043 * This preserves the logical ordering of replies, capabilities, etc., sent
3044 * by the MDS as they are applied to our local cache.
3046 static void handle_reply(struct ceph_mds_session *session, struct ceph_msg *msg)
3048 struct ceph_mds_client *mdsc = session->s_mdsc;
3049 struct ceph_mds_request *req;
3050 struct ceph_mds_reply_head *head = msg->front.iov_base;
3051 struct ceph_mds_reply_info_parsed *rinfo; /* parsed reply info */
3052 struct ceph_snap_realm *realm;
3055 int mds = session->s_mds;
3057 if (msg->front.iov_len < sizeof(*head)) {
3058 pr_err("mdsc_handle_reply got corrupt (short) reply\n");
3063 /* get request, session */
3064 tid = le64_to_cpu(msg->hdr.tid);
3065 mutex_lock(&mdsc->mutex);
3066 req = lookup_get_request(mdsc, tid);
3068 dout("handle_reply on unknown tid %llu\n", tid);
3069 mutex_unlock(&mdsc->mutex);
3072 dout("handle_reply %p\n", req);
3074 /* correct session? */
3075 if (req->r_session != session) {
3076 pr_err("mdsc_handle_reply got %llu on session mds%d"
3077 " not mds%d\n", tid, session->s_mds,
3078 req->r_session ? req->r_session->s_mds : -1);
3079 mutex_unlock(&mdsc->mutex);
3084 if ((test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags) && !head->safe) ||
3085 (test_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags) && head->safe)) {
3086 pr_warn("got a dup %s reply on %llu from mds%d\n",
3087 head->safe ? "safe" : "unsafe", tid, mds);
3088 mutex_unlock(&mdsc->mutex);
3091 if (test_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags)) {
3092 pr_warn("got unsafe after safe on %llu from mds%d\n",
3094 mutex_unlock(&mdsc->mutex);
3098 result = le32_to_cpu(head->result);
3102 * if we're not talking to the authority, send to them
3103 * if the authority has changed while we weren't looking,
3104 * send to new authority
3105 * Otherwise we just have to return an ESTALE
3107 if (result == -ESTALE) {
3108 dout("got ESTALE on request %llu\n", req->r_tid);
3109 req->r_resend_mds = -1;
3110 if (req->r_direct_mode != USE_AUTH_MDS) {
3111 dout("not using auth, setting for that now\n");
3112 req->r_direct_mode = USE_AUTH_MDS;
3113 __do_request(mdsc, req);
3114 mutex_unlock(&mdsc->mutex);
3117 int mds = __choose_mds(mdsc, req, NULL);
3118 if (mds >= 0 && mds != req->r_session->s_mds) {
3119 dout("but auth changed, so resending\n");
3120 __do_request(mdsc, req);
3121 mutex_unlock(&mdsc->mutex);
3125 dout("have to return ESTALE on request %llu\n", req->r_tid);
3130 set_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags);
3131 __unregister_request(mdsc, req);
3133 /* last request during umount? */
3134 if (mdsc->stopping && !__get_oldest_req(mdsc))
3135 complete_all(&mdsc->safe_umount_waiters);
3137 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
3139 * We already handled the unsafe response, now do the
3140 * cleanup. No need to examine the response; the MDS
3141 * doesn't include any result info in the safe
3142 * response. And even if it did, there is nothing
3143 * useful we could do with a revised return value.
3145 dout("got safe reply %llu, mds%d\n", tid, mds);
3147 mutex_unlock(&mdsc->mutex);
3151 set_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags);
3152 list_add_tail(&req->r_unsafe_item, &req->r_session->s_unsafe);
3155 dout("handle_reply tid %lld result %d\n", tid, result);
3156 rinfo = &req->r_reply_info;
3157 if (test_bit(CEPHFS_FEATURE_REPLY_ENCODING, &session->s_features))
3158 err = parse_reply_info(session, msg, rinfo, (u64)-1);
3160 err = parse_reply_info(session, msg, rinfo, session->s_con.peer_features);
3161 mutex_unlock(&mdsc->mutex);
3163 /* Must find target inode outside of mutexes to avoid deadlocks */
3164 if ((err >= 0) && rinfo->head->is_target) {
3166 struct ceph_vino tvino = {
3167 .ino = le64_to_cpu(rinfo->targeti.in->ino),
3168 .snap = le64_to_cpu(rinfo->targeti.in->snapid)
3171 in = ceph_get_inode(mdsc->fsc->sb, tvino);
3174 mutex_lock(&session->s_mutex);
3177 req->r_target_inode = in;
3180 mutex_lock(&session->s_mutex);
3182 pr_err("mdsc_handle_reply got corrupt reply mds%d(tid:%lld)\n", mds, tid);
3189 if (rinfo->snapblob_len) {
3190 down_write(&mdsc->snap_rwsem);
3191 ceph_update_snap_trace(mdsc, rinfo->snapblob,
3192 rinfo->snapblob + rinfo->snapblob_len,
3193 le32_to_cpu(head->op) == CEPH_MDS_OP_RMSNAP,
3195 downgrade_write(&mdsc->snap_rwsem);
3197 down_read(&mdsc->snap_rwsem);
3200 /* insert trace into our cache */
3201 mutex_lock(&req->r_fill_mutex);
3202 current->journal_info = req;
3203 err = ceph_fill_trace(mdsc->fsc->sb, req);
3205 if (result == 0 && (req->r_op == CEPH_MDS_OP_READDIR ||
3206 req->r_op == CEPH_MDS_OP_LSSNAP))
3207 ceph_readdir_prepopulate(req, req->r_session);
3209 current->journal_info = NULL;
3210 mutex_unlock(&req->r_fill_mutex);
3212 up_read(&mdsc->snap_rwsem);
3214 ceph_put_snap_realm(mdsc, realm);
3217 if (req->r_target_inode &&
3218 test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
3219 struct ceph_inode_info *ci =
3220 ceph_inode(req->r_target_inode);
3221 spin_lock(&ci->i_unsafe_lock);
3222 list_add_tail(&req->r_unsafe_target_item,
3223 &ci->i_unsafe_iops);
3224 spin_unlock(&ci->i_unsafe_lock);
3227 ceph_unreserve_caps(mdsc, &req->r_caps_reservation);
3230 mutex_lock(&mdsc->mutex);
3231 if (!test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
3235 req->r_reply = ceph_msg_get(msg);
3236 set_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags);
3239 dout("reply arrived after request %lld was aborted\n", tid);
3241 mutex_unlock(&mdsc->mutex);
3243 mutex_unlock(&session->s_mutex);
3245 /* kick calling process */
3246 complete_request(mdsc, req);
3248 ceph_update_metadata_metrics(&mdsc->metric, req->r_start_latency,
3249 req->r_end_latency, err);
3251 ceph_mdsc_put_request(req);
3258 * handle mds notification that our request has been forwarded.
3260 static void handle_forward(struct ceph_mds_client *mdsc,
3261 struct ceph_mds_session *session,
3262 struct ceph_msg *msg)
3264 struct ceph_mds_request *req;
3265 u64 tid = le64_to_cpu(msg->hdr.tid);
3269 void *p = msg->front.iov_base;
3270 void *end = p + msg->front.iov_len;
3272 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
3273 next_mds = ceph_decode_32(&p);
3274 fwd_seq = ceph_decode_32(&p);
3276 mutex_lock(&mdsc->mutex);
3277 req = lookup_get_request(mdsc, tid);
3279 dout("forward tid %llu to mds%d - req dne\n", tid, next_mds);
3280 goto out; /* dup reply? */
3283 if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
3284 dout("forward tid %llu aborted, unregistering\n", tid);
3285 __unregister_request(mdsc, req);
3286 } else if (fwd_seq <= req->r_num_fwd) {
3287 dout("forward tid %llu to mds%d - old seq %d <= %d\n",
3288 tid, next_mds, req->r_num_fwd, fwd_seq);
3290 /* resend. forward race not possible; mds would drop */
3291 dout("forward tid %llu to mds%d (we resend)\n", tid, next_mds);
3293 BUG_ON(test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags));
3294 req->r_attempts = 0;
3295 req->r_num_fwd = fwd_seq;
3296 req->r_resend_mds = next_mds;
3297 put_request_session(req);
3298 __do_request(mdsc, req);
3300 ceph_mdsc_put_request(req);
3302 mutex_unlock(&mdsc->mutex);
3306 pr_err("mdsc_handle_forward decode error err=%d\n", err);
3309 static int __decode_session_metadata(void **p, void *end,
3312 /* map<string,string> */
3315 ceph_decode_32_safe(p, end, n, bad);
3318 ceph_decode_32_safe(p, end, len, bad);
3319 ceph_decode_need(p, end, len, bad);
3320 err_str = !strncmp(*p, "error_string", len);
3322 ceph_decode_32_safe(p, end, len, bad);
3323 ceph_decode_need(p, end, len, bad);
3325 * Match "blocklisted (blacklisted)" from newer MDSes,
3326 * or "blacklisted" from older MDSes.
3328 if (err_str && strnstr(*p, "blacklisted", len))
3329 *blocklisted = true;
3338 * handle a mds session control message
3340 static void handle_session(struct ceph_mds_session *session,
3341 struct ceph_msg *msg)
3343 struct ceph_mds_client *mdsc = session->s_mdsc;
3344 int mds = session->s_mds;
3345 int msg_version = le16_to_cpu(msg->hdr.version);
3346 void *p = msg->front.iov_base;
3347 void *end = p + msg->front.iov_len;
3348 struct ceph_mds_session_head *h;
3350 u64 seq, features = 0;
3352 bool blocklisted = false;
3355 ceph_decode_need(&p, end, sizeof(*h), bad);
3359 op = le32_to_cpu(h->op);
3360 seq = le64_to_cpu(h->seq);
3362 if (msg_version >= 3) {
3364 /* version >= 2 and < 5, decode metadata, skip otherwise
3365 * as it's handled via flags.
3367 if (msg_version >= 5)
3368 ceph_decode_skip_map(&p, end, string, string, bad);
3369 else if (__decode_session_metadata(&p, end, &blocklisted) < 0)
3372 /* version >= 3, feature bits */
3373 ceph_decode_32_safe(&p, end, len, bad);
3375 ceph_decode_64_safe(&p, end, features, bad);
3376 p += len - sizeof(features);
3380 if (msg_version >= 5) {
3382 /* version >= 4, struct_v, struct_cv, len, metric_spec */
3383 ceph_decode_skip_n(&p, end, 2 + sizeof(u32) * 2, bad);
3384 /* version >= 5, flags */
3385 ceph_decode_32_safe(&p, end, flags, bad);
3386 if (flags & CEPH_SESSION_BLOCKLISTED) {
3387 pr_warn("mds%d session blocklisted\n", session->s_mds);
3392 mutex_lock(&mdsc->mutex);
3393 if (op == CEPH_SESSION_CLOSE) {
3394 ceph_get_mds_session(session);
3395 __unregister_session(mdsc, session);
3397 /* FIXME: this ttl calculation is generous */
3398 session->s_ttl = jiffies + HZ*mdsc->mdsmap->m_session_autoclose;
3399 mutex_unlock(&mdsc->mutex);
3401 mutex_lock(&session->s_mutex);
3403 dout("handle_session mds%d %s %p state %s seq %llu\n",
3404 mds, ceph_session_op_name(op), session,
3405 ceph_session_state_name(session->s_state), seq);
3407 if (session->s_state == CEPH_MDS_SESSION_HUNG) {
3408 session->s_state = CEPH_MDS_SESSION_OPEN;
3409 pr_info("mds%d came back\n", session->s_mds);
3413 case CEPH_SESSION_OPEN:
3414 if (session->s_state == CEPH_MDS_SESSION_RECONNECTING)
3415 pr_info("mds%d reconnect success\n", session->s_mds);
3416 session->s_state = CEPH_MDS_SESSION_OPEN;
3417 session->s_features = features;
3418 renewed_caps(mdsc, session, 0);
3419 if (test_bit(CEPHFS_FEATURE_METRIC_COLLECT, &session->s_features))
3420 metric_schedule_delayed(&mdsc->metric);
3423 __close_session(mdsc, session);
3426 case CEPH_SESSION_RENEWCAPS:
3427 if (session->s_renew_seq == seq)
3428 renewed_caps(mdsc, session, 1);
3431 case CEPH_SESSION_CLOSE:
3432 if (session->s_state == CEPH_MDS_SESSION_RECONNECTING)
3433 pr_info("mds%d reconnect denied\n", session->s_mds);
3434 session->s_state = CEPH_MDS_SESSION_CLOSED;
3435 cleanup_session_requests(mdsc, session);
3436 remove_session_caps(session);
3437 wake = 2; /* for good measure */
3438 wake_up_all(&mdsc->session_close_wq);
3441 case CEPH_SESSION_STALE:
3442 pr_info("mds%d caps went stale, renewing\n",
3444 atomic_inc(&session->s_cap_gen);
3445 session->s_cap_ttl = jiffies - 1;
3446 send_renew_caps(mdsc, session);
3449 case CEPH_SESSION_RECALL_STATE:
3450 ceph_trim_caps(mdsc, session, le32_to_cpu(h->max_caps));
3453 case CEPH_SESSION_FLUSHMSG:
3454 send_flushmsg_ack(mdsc, session, seq);
3457 case CEPH_SESSION_FORCE_RO:
3458 dout("force_session_readonly %p\n", session);
3459 spin_lock(&session->s_cap_lock);
3460 session->s_readonly = true;
3461 spin_unlock(&session->s_cap_lock);
3462 wake_up_session_caps(session, FORCE_RO);
3465 case CEPH_SESSION_REJECT:
3466 WARN_ON(session->s_state != CEPH_MDS_SESSION_OPENING);
3467 pr_info("mds%d rejected session\n", session->s_mds);
3468 session->s_state = CEPH_MDS_SESSION_REJECTED;
3469 cleanup_session_requests(mdsc, session);
3470 remove_session_caps(session);
3472 mdsc->fsc->blocklisted = true;
3473 wake = 2; /* for good measure */
3477 pr_err("mdsc_handle_session bad op %d mds%d\n", op, mds);
3481 mutex_unlock(&session->s_mutex);
3483 mutex_lock(&mdsc->mutex);
3484 __wake_requests(mdsc, &session->s_waiting);
3486 kick_requests(mdsc, mds);
3487 mutex_unlock(&mdsc->mutex);
3489 if (op == CEPH_SESSION_CLOSE)
3490 ceph_put_mds_session(session);
3494 pr_err("mdsc_handle_session corrupt message mds%d len %d\n", mds,
3495 (int)msg->front.iov_len);
3500 void ceph_mdsc_release_dir_caps(struct ceph_mds_request *req)
3504 dcaps = xchg(&req->r_dir_caps, 0);
3506 dout("releasing r_dir_caps=%s\n", ceph_cap_string(dcaps));
3507 ceph_put_cap_refs(ceph_inode(req->r_parent), dcaps);
3511 void ceph_mdsc_release_dir_caps_no_check(struct ceph_mds_request *req)
3515 dcaps = xchg(&req->r_dir_caps, 0);
3517 dout("releasing r_dir_caps=%s\n", ceph_cap_string(dcaps));
3518 ceph_put_cap_refs_no_check_caps(ceph_inode(req->r_parent),
3524 * called under session->mutex.
3526 static void replay_unsafe_requests(struct ceph_mds_client *mdsc,
3527 struct ceph_mds_session *session)
3529 struct ceph_mds_request *req, *nreq;
3532 dout("replay_unsafe_requests mds%d\n", session->s_mds);
3534 mutex_lock(&mdsc->mutex);
3535 list_for_each_entry_safe(req, nreq, &session->s_unsafe, r_unsafe_item)
3536 __send_request(session, req, true);
3539 * also re-send old requests when MDS enters reconnect stage. So that MDS
3540 * can process completed request in clientreplay stage.
3542 p = rb_first(&mdsc->request_tree);
3544 req = rb_entry(p, struct ceph_mds_request, r_node);
3546 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
3548 if (req->r_attempts == 0)
3549 continue; /* only old requests */
3550 if (!req->r_session)
3552 if (req->r_session->s_mds != session->s_mds)
3555 ceph_mdsc_release_dir_caps_no_check(req);
3557 __send_request(session, req, true);
3559 mutex_unlock(&mdsc->mutex);
3562 static int send_reconnect_partial(struct ceph_reconnect_state *recon_state)
3564 struct ceph_msg *reply;
3565 struct ceph_pagelist *_pagelist;
3570 if (!recon_state->allow_multi)
3573 /* can't handle message that contains both caps and realm */
3574 BUG_ON(!recon_state->nr_caps == !recon_state->nr_realms);
3576 /* pre-allocate new pagelist */
3577 _pagelist = ceph_pagelist_alloc(GFP_NOFS);
3581 reply = ceph_msg_new2(CEPH_MSG_CLIENT_RECONNECT, 0, 1, GFP_NOFS, false);
3585 /* placeholder for nr_caps */
3586 err = ceph_pagelist_encode_32(_pagelist, 0);
3590 if (recon_state->nr_caps) {
3591 /* currently encoding caps */
3592 err = ceph_pagelist_encode_32(recon_state->pagelist, 0);
3596 /* placeholder for nr_realms (currently encoding relams) */
3597 err = ceph_pagelist_encode_32(_pagelist, 0);
3602 err = ceph_pagelist_encode_8(recon_state->pagelist, 1);
3606 page = list_first_entry(&recon_state->pagelist->head, struct page, lru);
3607 addr = kmap_atomic(page);
3608 if (recon_state->nr_caps) {
3609 /* currently encoding caps */
3610 *addr = cpu_to_le32(recon_state->nr_caps);
3612 /* currently encoding relams */
3613 *(addr + 1) = cpu_to_le32(recon_state->nr_realms);
3615 kunmap_atomic(addr);
3617 reply->hdr.version = cpu_to_le16(5);
3618 reply->hdr.compat_version = cpu_to_le16(4);
3620 reply->hdr.data_len = cpu_to_le32(recon_state->pagelist->length);
3621 ceph_msg_data_add_pagelist(reply, recon_state->pagelist);
3623 ceph_con_send(&recon_state->session->s_con, reply);
3624 ceph_pagelist_release(recon_state->pagelist);
3626 recon_state->pagelist = _pagelist;
3627 recon_state->nr_caps = 0;
3628 recon_state->nr_realms = 0;
3629 recon_state->msg_version = 5;
3632 ceph_msg_put(reply);
3634 ceph_pagelist_release(_pagelist);
3638 static struct dentry* d_find_primary(struct inode *inode)
3640 struct dentry *alias, *dn = NULL;
3642 if (hlist_empty(&inode->i_dentry))
3645 spin_lock(&inode->i_lock);
3646 if (hlist_empty(&inode->i_dentry))
3649 if (S_ISDIR(inode->i_mode)) {
3650 alias = hlist_entry(inode->i_dentry.first, struct dentry, d_u.d_alias);
3651 if (!IS_ROOT(alias))
3656 hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) {
3657 spin_lock(&alias->d_lock);
3658 if (!d_unhashed(alias) &&
3659 (ceph_dentry(alias)->flags & CEPH_DENTRY_PRIMARY_LINK)) {
3660 dn = dget_dlock(alias);
3662 spin_unlock(&alias->d_lock);
3667 spin_unlock(&inode->i_lock);
3672 * Encode information about a cap for a reconnect with the MDS.
3674 static int reconnect_caps_cb(struct inode *inode, struct ceph_cap *cap,
3678 struct ceph_mds_cap_reconnect v2;
3679 struct ceph_mds_cap_reconnect_v1 v1;
3681 struct ceph_inode_info *ci = cap->ci;
3682 struct ceph_reconnect_state *recon_state = arg;
3683 struct ceph_pagelist *pagelist = recon_state->pagelist;
3684 struct dentry *dentry;
3690 dout(" adding %p ino %llx.%llx cap %p %lld %s\n",
3691 inode, ceph_vinop(inode), cap, cap->cap_id,
3692 ceph_cap_string(cap->issued));
3694 dentry = d_find_primary(inode);
3696 /* set pathbase to parent dir when msg_version >= 2 */
3697 path = ceph_mdsc_build_path(dentry, &pathlen, &pathbase,
3698 recon_state->msg_version >= 2);
3701 err = PTR_ERR(path);
3710 spin_lock(&ci->i_ceph_lock);
3711 cap->seq = 0; /* reset cap seq */
3712 cap->issue_seq = 0; /* and issue_seq */
3713 cap->mseq = 0; /* and migrate_seq */
3714 cap->cap_gen = atomic_read(&cap->session->s_cap_gen);
3716 /* These are lost when the session goes away */
3717 if (S_ISDIR(inode->i_mode)) {
3718 if (cap->issued & CEPH_CAP_DIR_CREATE) {
3719 ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
3720 memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
3722 cap->issued &= ~CEPH_CAP_ANY_DIR_OPS;
3725 if (recon_state->msg_version >= 2) {
3726 rec.v2.cap_id = cpu_to_le64(cap->cap_id);
3727 rec.v2.wanted = cpu_to_le32(__ceph_caps_wanted(ci));
3728 rec.v2.issued = cpu_to_le32(cap->issued);
3729 rec.v2.snaprealm = cpu_to_le64(ci->i_snap_realm->ino);
3730 rec.v2.pathbase = cpu_to_le64(pathbase);
3731 rec.v2.flock_len = (__force __le32)
3732 ((ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK) ? 0 : 1);
3734 rec.v1.cap_id = cpu_to_le64(cap->cap_id);
3735 rec.v1.wanted = cpu_to_le32(__ceph_caps_wanted(ci));
3736 rec.v1.issued = cpu_to_le32(cap->issued);
3737 rec.v1.size = cpu_to_le64(i_size_read(inode));
3738 ceph_encode_timespec64(&rec.v1.mtime, &inode->i_mtime);
3739 ceph_encode_timespec64(&rec.v1.atime, &inode->i_atime);
3740 rec.v1.snaprealm = cpu_to_le64(ci->i_snap_realm->ino);
3741 rec.v1.pathbase = cpu_to_le64(pathbase);
3744 if (list_empty(&ci->i_cap_snaps)) {
3745 snap_follows = ci->i_head_snapc ? ci->i_head_snapc->seq : 0;
3747 struct ceph_cap_snap *capsnap =
3748 list_first_entry(&ci->i_cap_snaps,
3749 struct ceph_cap_snap, ci_item);
3750 snap_follows = capsnap->follows;
3752 spin_unlock(&ci->i_ceph_lock);
3754 if (recon_state->msg_version >= 2) {
3755 int num_fcntl_locks, num_flock_locks;
3756 struct ceph_filelock *flocks = NULL;
3757 size_t struct_len, total_len = sizeof(u64);
3761 if (rec.v2.flock_len) {
3762 ceph_count_locks(inode, &num_fcntl_locks, &num_flock_locks);
3764 num_fcntl_locks = 0;
3765 num_flock_locks = 0;
3767 if (num_fcntl_locks + num_flock_locks > 0) {
3768 flocks = kmalloc_array(num_fcntl_locks + num_flock_locks,
3769 sizeof(struct ceph_filelock),
3775 err = ceph_encode_locks_to_buffer(inode, flocks,
3790 if (recon_state->msg_version >= 3) {
3791 /* version, compat_version and struct_len */
3792 total_len += 2 * sizeof(u8) + sizeof(u32);
3796 * number of encoded locks is stable, so copy to pagelist
3798 struct_len = 2 * sizeof(u32) +
3799 (num_fcntl_locks + num_flock_locks) *
3800 sizeof(struct ceph_filelock);
3801 rec.v2.flock_len = cpu_to_le32(struct_len);
3803 struct_len += sizeof(u32) + pathlen + sizeof(rec.v2);
3806 struct_len += sizeof(u64); /* snap_follows */
3808 total_len += struct_len;
3810 if (pagelist->length + total_len > RECONNECT_MAX_SIZE) {
3811 err = send_reconnect_partial(recon_state);
3813 goto out_freeflocks;
3814 pagelist = recon_state->pagelist;
3817 err = ceph_pagelist_reserve(pagelist, total_len);
3819 goto out_freeflocks;
3821 ceph_pagelist_encode_64(pagelist, ceph_ino(inode));
3822 if (recon_state->msg_version >= 3) {
3823 ceph_pagelist_encode_8(pagelist, struct_v);
3824 ceph_pagelist_encode_8(pagelist, 1);
3825 ceph_pagelist_encode_32(pagelist, struct_len);
3827 ceph_pagelist_encode_string(pagelist, path, pathlen);
3828 ceph_pagelist_append(pagelist, &rec, sizeof(rec.v2));
3829 ceph_locks_to_pagelist(flocks, pagelist,
3830 num_fcntl_locks, num_flock_locks);
3832 ceph_pagelist_encode_64(pagelist, snap_follows);
3836 err = ceph_pagelist_reserve(pagelist,
3837 sizeof(u64) + sizeof(u32) +
3838 pathlen + sizeof(rec.v1));
3842 ceph_pagelist_encode_64(pagelist, ceph_ino(inode));
3843 ceph_pagelist_encode_string(pagelist, path, pathlen);
3844 ceph_pagelist_append(pagelist, &rec, sizeof(rec.v1));
3848 ceph_mdsc_free_path(path, pathlen);
3850 recon_state->nr_caps++;
3854 static int encode_snap_realms(struct ceph_mds_client *mdsc,
3855 struct ceph_reconnect_state *recon_state)
3858 struct ceph_pagelist *pagelist = recon_state->pagelist;
3861 if (recon_state->msg_version >= 4) {
3862 err = ceph_pagelist_encode_32(pagelist, mdsc->num_snap_realms);
3868 * snaprealms. we provide mds with the ino, seq (version), and
3869 * parent for all of our realms. If the mds has any newer info,
3872 for (p = rb_first(&mdsc->snap_realms); p; p = rb_next(p)) {
3873 struct ceph_snap_realm *realm =
3874 rb_entry(p, struct ceph_snap_realm, node);
3875 struct ceph_mds_snaprealm_reconnect sr_rec;
3877 if (recon_state->msg_version >= 4) {
3878 size_t need = sizeof(u8) * 2 + sizeof(u32) +
3881 if (pagelist->length + need > RECONNECT_MAX_SIZE) {
3882 err = send_reconnect_partial(recon_state);
3885 pagelist = recon_state->pagelist;
3888 err = ceph_pagelist_reserve(pagelist, need);
3892 ceph_pagelist_encode_8(pagelist, 1);
3893 ceph_pagelist_encode_8(pagelist, 1);
3894 ceph_pagelist_encode_32(pagelist, sizeof(sr_rec));
3897 dout(" adding snap realm %llx seq %lld parent %llx\n",
3898 realm->ino, realm->seq, realm->parent_ino);
3899 sr_rec.ino = cpu_to_le64(realm->ino);
3900 sr_rec.seq = cpu_to_le64(realm->seq);
3901 sr_rec.parent = cpu_to_le64(realm->parent_ino);
3903 err = ceph_pagelist_append(pagelist, &sr_rec, sizeof(sr_rec));
3907 recon_state->nr_realms++;
3915 * If an MDS fails and recovers, clients need to reconnect in order to
3916 * reestablish shared state. This includes all caps issued through
3917 * this session _and_ the snap_realm hierarchy. Because it's not
3918 * clear which snap realms the mds cares about, we send everything we
3919 * know about.. that ensures we'll then get any new info the
3920 * recovering MDS might have.
3922 * This is a relatively heavyweight operation, but it's rare.
3924 static void send_mds_reconnect(struct ceph_mds_client *mdsc,
3925 struct ceph_mds_session *session)
3927 struct ceph_msg *reply;
3928 int mds = session->s_mds;
3930 struct ceph_reconnect_state recon_state = {
3935 pr_info("mds%d reconnect start\n", mds);
3937 recon_state.pagelist = ceph_pagelist_alloc(GFP_NOFS);
3938 if (!recon_state.pagelist)
3939 goto fail_nopagelist;
3941 reply = ceph_msg_new2(CEPH_MSG_CLIENT_RECONNECT, 0, 1, GFP_NOFS, false);
3945 xa_destroy(&session->s_delegated_inos);
3947 mutex_lock(&session->s_mutex);
3948 session->s_state = CEPH_MDS_SESSION_RECONNECTING;
3951 dout("session %p state %s\n", session,
3952 ceph_session_state_name(session->s_state));
3954 atomic_inc(&session->s_cap_gen);
3956 spin_lock(&session->s_cap_lock);
3957 /* don't know if session is readonly */
3958 session->s_readonly = 0;
3960 * notify __ceph_remove_cap() that we are composing cap reconnect.
3961 * If a cap get released before being added to the cap reconnect,
3962 * __ceph_remove_cap() should skip queuing cap release.
3964 session->s_cap_reconnect = 1;
3965 /* drop old cap expires; we're about to reestablish that state */
3966 detach_cap_releases(session, &dispose);
3967 spin_unlock(&session->s_cap_lock);
3968 dispose_cap_releases(mdsc, &dispose);
3970 /* trim unused caps to reduce MDS's cache rejoin time */
3971 if (mdsc->fsc->sb->s_root)
3972 shrink_dcache_parent(mdsc->fsc->sb->s_root);
3974 ceph_con_close(&session->s_con);
3975 ceph_con_open(&session->s_con,
3976 CEPH_ENTITY_TYPE_MDS, mds,
3977 ceph_mdsmap_get_addr(mdsc->mdsmap, mds));
3979 /* replay unsafe requests */
3980 replay_unsafe_requests(mdsc, session);
3982 ceph_early_kick_flushing_caps(mdsc, session);
3984 down_read(&mdsc->snap_rwsem);
3986 /* placeholder for nr_caps */
3987 err = ceph_pagelist_encode_32(recon_state.pagelist, 0);
3991 if (test_bit(CEPHFS_FEATURE_MULTI_RECONNECT, &session->s_features)) {
3992 recon_state.msg_version = 3;
3993 recon_state.allow_multi = true;
3994 } else if (session->s_con.peer_features & CEPH_FEATURE_MDSENC) {
3995 recon_state.msg_version = 3;
3997 recon_state.msg_version = 2;
3999 /* trsaverse this session's caps */
4000 err = ceph_iterate_session_caps(session, reconnect_caps_cb, &recon_state);
4002 spin_lock(&session->s_cap_lock);
4003 session->s_cap_reconnect = 0;
4004 spin_unlock(&session->s_cap_lock);
4009 /* check if all realms can be encoded into current message */
4010 if (mdsc->num_snap_realms) {
4012 recon_state.pagelist->length +
4013 mdsc->num_snap_realms *
4014 sizeof(struct ceph_mds_snaprealm_reconnect);
4015 if (recon_state.msg_version >= 4) {
4016 /* number of realms */
4017 total_len += sizeof(u32);
4018 /* version, compat_version and struct_len */
4019 total_len += mdsc->num_snap_realms *
4020 (2 * sizeof(u8) + sizeof(u32));
4022 if (total_len > RECONNECT_MAX_SIZE) {
4023 if (!recon_state.allow_multi) {
4027 if (recon_state.nr_caps) {
4028 err = send_reconnect_partial(&recon_state);
4032 recon_state.msg_version = 5;
4036 err = encode_snap_realms(mdsc, &recon_state);
4040 if (recon_state.msg_version >= 5) {
4041 err = ceph_pagelist_encode_8(recon_state.pagelist, 0);
4046 if (recon_state.nr_caps || recon_state.nr_realms) {
4048 list_first_entry(&recon_state.pagelist->head,
4050 __le32 *addr = kmap_atomic(page);
4051 if (recon_state.nr_caps) {
4052 WARN_ON(recon_state.nr_realms != mdsc->num_snap_realms);
4053 *addr = cpu_to_le32(recon_state.nr_caps);
4054 } else if (recon_state.msg_version >= 4) {
4055 *(addr + 1) = cpu_to_le32(recon_state.nr_realms);
4057 kunmap_atomic(addr);
4060 reply->hdr.version = cpu_to_le16(recon_state.msg_version);
4061 if (recon_state.msg_version >= 4)
4062 reply->hdr.compat_version = cpu_to_le16(4);
4064 reply->hdr.data_len = cpu_to_le32(recon_state.pagelist->length);
4065 ceph_msg_data_add_pagelist(reply, recon_state.pagelist);
4067 ceph_con_send(&session->s_con, reply);
4069 mutex_unlock(&session->s_mutex);
4071 mutex_lock(&mdsc->mutex);
4072 __wake_requests(mdsc, &session->s_waiting);
4073 mutex_unlock(&mdsc->mutex);
4075 up_read(&mdsc->snap_rwsem);
4076 ceph_pagelist_release(recon_state.pagelist);
4080 ceph_msg_put(reply);
4081 up_read(&mdsc->snap_rwsem);
4082 mutex_unlock(&session->s_mutex);
4084 ceph_pagelist_release(recon_state.pagelist);
4086 pr_err("error %d preparing reconnect for mds%d\n", err, mds);
4092 * compare old and new mdsmaps, kicking requests
4093 * and closing out old connections as necessary
4095 * called under mdsc->mutex.
4097 static void check_new_map(struct ceph_mds_client *mdsc,
4098 struct ceph_mdsmap *newmap,
4099 struct ceph_mdsmap *oldmap)
4102 int oldstate, newstate;
4103 struct ceph_mds_session *s;
4104 unsigned long targets[DIV_ROUND_UP(CEPH_MAX_MDS, sizeof(unsigned long))] = {0};
4106 dout("check_new_map new %u old %u\n",
4107 newmap->m_epoch, oldmap->m_epoch);
4109 if (newmap->m_info) {
4110 for (i = 0; i < newmap->possible_max_rank; i++) {
4111 for (j = 0; j < newmap->m_info[i].num_export_targets; j++)
4112 set_bit(newmap->m_info[i].export_targets[j], targets);
4116 for (i = 0; i < oldmap->possible_max_rank && i < mdsc->max_sessions; i++) {
4117 if (!mdsc->sessions[i])
4119 s = mdsc->sessions[i];
4120 oldstate = ceph_mdsmap_get_state(oldmap, i);
4121 newstate = ceph_mdsmap_get_state(newmap, i);
4123 dout("check_new_map mds%d state %s%s -> %s%s (session %s)\n",
4124 i, ceph_mds_state_name(oldstate),
4125 ceph_mdsmap_is_laggy(oldmap, i) ? " (laggy)" : "",
4126 ceph_mds_state_name(newstate),
4127 ceph_mdsmap_is_laggy(newmap, i) ? " (laggy)" : "",
4128 ceph_session_state_name(s->s_state));
4130 if (i >= newmap->possible_max_rank) {
4131 /* force close session for stopped mds */
4132 ceph_get_mds_session(s);
4133 __unregister_session(mdsc, s);
4134 __wake_requests(mdsc, &s->s_waiting);
4135 mutex_unlock(&mdsc->mutex);
4137 mutex_lock(&s->s_mutex);
4138 cleanup_session_requests(mdsc, s);
4139 remove_session_caps(s);
4140 mutex_unlock(&s->s_mutex);
4142 ceph_put_mds_session(s);
4144 mutex_lock(&mdsc->mutex);
4145 kick_requests(mdsc, i);
4149 if (memcmp(ceph_mdsmap_get_addr(oldmap, i),
4150 ceph_mdsmap_get_addr(newmap, i),
4151 sizeof(struct ceph_entity_addr))) {
4153 mutex_unlock(&mdsc->mutex);
4154 mutex_lock(&s->s_mutex);
4155 mutex_lock(&mdsc->mutex);
4156 ceph_con_close(&s->s_con);
4157 mutex_unlock(&s->s_mutex);
4158 s->s_state = CEPH_MDS_SESSION_RESTARTING;
4159 } else if (oldstate == newstate) {
4160 continue; /* nothing new with this mds */
4166 if (s->s_state == CEPH_MDS_SESSION_RESTARTING &&
4167 newstate >= CEPH_MDS_STATE_RECONNECT) {
4168 mutex_unlock(&mdsc->mutex);
4169 clear_bit(i, targets);
4170 send_mds_reconnect(mdsc, s);
4171 mutex_lock(&mdsc->mutex);
4175 * kick request on any mds that has gone active.
4177 if (oldstate < CEPH_MDS_STATE_ACTIVE &&
4178 newstate >= CEPH_MDS_STATE_ACTIVE) {
4179 if (oldstate != CEPH_MDS_STATE_CREATING &&
4180 oldstate != CEPH_MDS_STATE_STARTING)
4181 pr_info("mds%d recovery completed\n", s->s_mds);
4182 kick_requests(mdsc, i);
4183 mutex_unlock(&mdsc->mutex);
4184 mutex_lock(&s->s_mutex);
4185 mutex_lock(&mdsc->mutex);
4186 ceph_kick_flushing_caps(mdsc, s);
4187 mutex_unlock(&s->s_mutex);
4188 wake_up_session_caps(s, RECONNECT);
4193 * Only open and reconnect sessions that don't exist yet.
4195 for (i = 0; i < newmap->possible_max_rank; i++) {
4197 * In case the import MDS is crashed just after
4198 * the EImportStart journal is flushed, so when
4199 * a standby MDS takes over it and is replaying
4200 * the EImportStart journal the new MDS daemon
4201 * will wait the client to reconnect it, but the
4202 * client may never register/open the session yet.
4204 * Will try to reconnect that MDS daemon if the
4205 * rank number is in the export targets array and
4206 * is the up:reconnect state.
4208 newstate = ceph_mdsmap_get_state(newmap, i);
4209 if (!test_bit(i, targets) || newstate != CEPH_MDS_STATE_RECONNECT)
4213 * The session maybe registered and opened by some
4214 * requests which were choosing random MDSes during
4215 * the mdsc->mutex's unlock/lock gap below in rare
4216 * case. But the related MDS daemon will just queue
4217 * that requests and be still waiting for the client's
4218 * reconnection request in up:reconnect state.
4220 s = __ceph_lookup_mds_session(mdsc, i);
4222 s = __open_export_target_session(mdsc, i);
4225 pr_err("failed to open export target session, err %d\n",
4230 dout("send reconnect to export target mds.%d\n", i);
4231 mutex_unlock(&mdsc->mutex);
4232 send_mds_reconnect(mdsc, s);
4233 ceph_put_mds_session(s);
4234 mutex_lock(&mdsc->mutex);
4237 for (i = 0; i < newmap->possible_max_rank && i < mdsc->max_sessions; i++) {
4238 s = mdsc->sessions[i];
4241 if (!ceph_mdsmap_is_laggy(newmap, i))
4243 if (s->s_state == CEPH_MDS_SESSION_OPEN ||
4244 s->s_state == CEPH_MDS_SESSION_HUNG ||
4245 s->s_state == CEPH_MDS_SESSION_CLOSING) {
4246 dout(" connecting to export targets of laggy mds%d\n",
4248 __open_export_target_sessions(mdsc, s);
4260 * caller must hold session s_mutex, dentry->d_lock
4262 void __ceph_mdsc_drop_dentry_lease(struct dentry *dentry)
4264 struct ceph_dentry_info *di = ceph_dentry(dentry);
4266 ceph_put_mds_session(di->lease_session);
4267 di->lease_session = NULL;
4270 static void handle_lease(struct ceph_mds_client *mdsc,
4271 struct ceph_mds_session *session,
4272 struct ceph_msg *msg)
4274 struct super_block *sb = mdsc->fsc->sb;
4275 struct inode *inode;
4276 struct dentry *parent, *dentry;
4277 struct ceph_dentry_info *di;
4278 int mds = session->s_mds;
4279 struct ceph_mds_lease *h = msg->front.iov_base;
4281 struct ceph_vino vino;
4285 dout("handle_lease from mds%d\n", mds);
4288 if (msg->front.iov_len < sizeof(*h) + sizeof(u32))
4290 vino.ino = le64_to_cpu(h->ino);
4291 vino.snap = CEPH_NOSNAP;
4292 seq = le32_to_cpu(h->seq);
4293 dname.len = get_unaligned_le32(h + 1);
4294 if (msg->front.iov_len < sizeof(*h) + sizeof(u32) + dname.len)
4296 dname.name = (void *)(h + 1) + sizeof(u32);
4299 inode = ceph_find_inode(sb, vino);
4300 dout("handle_lease %s, ino %llx %p %.*s\n",
4301 ceph_lease_op_name(h->action), vino.ino, inode,
4302 dname.len, dname.name);
4304 mutex_lock(&session->s_mutex);
4305 inc_session_sequence(session);
4308 dout("handle_lease no inode %llx\n", vino.ino);
4313 parent = d_find_alias(inode);
4315 dout("no parent dentry on inode %p\n", inode);
4317 goto release; /* hrm... */
4319 dname.hash = full_name_hash(parent, dname.name, dname.len);
4320 dentry = d_lookup(parent, &dname);
4325 spin_lock(&dentry->d_lock);
4326 di = ceph_dentry(dentry);
4327 switch (h->action) {
4328 case CEPH_MDS_LEASE_REVOKE:
4329 if (di->lease_session == session) {
4330 if (ceph_seq_cmp(di->lease_seq, seq) > 0)
4331 h->seq = cpu_to_le32(di->lease_seq);
4332 __ceph_mdsc_drop_dentry_lease(dentry);
4337 case CEPH_MDS_LEASE_RENEW:
4338 if (di->lease_session == session &&
4339 di->lease_gen == atomic_read(&session->s_cap_gen) &&
4340 di->lease_renew_from &&
4341 di->lease_renew_after == 0) {
4342 unsigned long duration =
4343 msecs_to_jiffies(le32_to_cpu(h->duration_ms));
4345 di->lease_seq = seq;
4346 di->time = di->lease_renew_from + duration;
4347 di->lease_renew_after = di->lease_renew_from +
4349 di->lease_renew_from = 0;
4353 spin_unlock(&dentry->d_lock);
4360 /* let's just reuse the same message */
4361 h->action = CEPH_MDS_LEASE_REVOKE_ACK;
4363 ceph_con_send(&session->s_con, msg);
4366 mutex_unlock(&session->s_mutex);
4371 pr_err("corrupt lease message\n");
4375 void ceph_mdsc_lease_send_msg(struct ceph_mds_session *session,
4376 struct dentry *dentry, char action,
4379 struct ceph_msg *msg;
4380 struct ceph_mds_lease *lease;
4382 int len = sizeof(*lease) + sizeof(u32) + NAME_MAX;
4384 dout("lease_send_msg identry %p %s to mds%d\n",
4385 dentry, ceph_lease_op_name(action), session->s_mds);
4387 msg = ceph_msg_new(CEPH_MSG_CLIENT_LEASE, len, GFP_NOFS, false);
4390 lease = msg->front.iov_base;
4391 lease->action = action;
4392 lease->seq = cpu_to_le32(seq);
4394 spin_lock(&dentry->d_lock);
4395 dir = d_inode(dentry->d_parent);
4396 lease->ino = cpu_to_le64(ceph_ino(dir));
4397 lease->first = lease->last = cpu_to_le64(ceph_snap(dir));
4399 put_unaligned_le32(dentry->d_name.len, lease + 1);
4400 memcpy((void *)(lease + 1) + 4,
4401 dentry->d_name.name, dentry->d_name.len);
4402 spin_unlock(&dentry->d_lock);
4404 * if this is a preemptive lease RELEASE, no need to
4405 * flush request stream, since the actual request will
4408 msg->more_to_follow = (action == CEPH_MDS_LEASE_RELEASE);
4410 ceph_con_send(&session->s_con, msg);
4414 * lock unlock the session, to wait ongoing session activities
4416 static void lock_unlock_session(struct ceph_mds_session *s)
4418 mutex_lock(&s->s_mutex);
4419 mutex_unlock(&s->s_mutex);
4422 static void maybe_recover_session(struct ceph_mds_client *mdsc)
4424 struct ceph_fs_client *fsc = mdsc->fsc;
4426 if (!ceph_test_mount_opt(fsc, CLEANRECOVER))
4429 if (READ_ONCE(fsc->mount_state) != CEPH_MOUNT_MOUNTED)
4432 if (!READ_ONCE(fsc->blocklisted))
4435 pr_info("auto reconnect after blocklisted\n");
4436 ceph_force_reconnect(fsc->sb);
4439 bool check_session_state(struct ceph_mds_session *s)
4441 struct ceph_fs_client *fsc = s->s_mdsc->fsc;
4443 switch (s->s_state) {
4444 case CEPH_MDS_SESSION_OPEN:
4445 if (s->s_ttl && time_after(jiffies, s->s_ttl)) {
4446 s->s_state = CEPH_MDS_SESSION_HUNG;
4447 pr_info("mds%d hung\n", s->s_mds);
4450 case CEPH_MDS_SESSION_CLOSING:
4451 /* Should never reach this when not force unmounting */
4452 WARN_ON_ONCE(s->s_ttl &&
4453 READ_ONCE(fsc->mount_state) != CEPH_MOUNT_SHUTDOWN);
4455 case CEPH_MDS_SESSION_NEW:
4456 case CEPH_MDS_SESSION_RESTARTING:
4457 case CEPH_MDS_SESSION_CLOSED:
4458 case CEPH_MDS_SESSION_REJECTED:
4466 * If the sequence is incremented while we're waiting on a REQUEST_CLOSE reply,
4467 * then we need to retransmit that request.
4469 void inc_session_sequence(struct ceph_mds_session *s)
4471 lockdep_assert_held(&s->s_mutex);
4475 if (s->s_state == CEPH_MDS_SESSION_CLOSING) {
4478 dout("resending session close request for mds%d\n", s->s_mds);
4479 ret = request_close_session(s);
4481 pr_err("unable to close session to mds%d: %d\n",
4487 * delayed work -- periodically trim expired leases, renew caps with mds. If
4488 * the @delay parameter is set to 0 or if it's more than 5 secs, the default
4489 * workqueue delay value of 5 secs will be used.
4491 static void schedule_delayed(struct ceph_mds_client *mdsc, unsigned long delay)
4493 unsigned long max_delay = HZ * 5;
4495 /* 5 secs default delay */
4496 if (!delay || (delay > max_delay))
4498 schedule_delayed_work(&mdsc->delayed_work,
4499 round_jiffies_relative(delay));
4502 static void delayed_work(struct work_struct *work)
4504 struct ceph_mds_client *mdsc =
4505 container_of(work, struct ceph_mds_client, delayed_work.work);
4506 unsigned long delay;
4511 dout("mdsc delayed_work\n");
4516 mutex_lock(&mdsc->mutex);
4517 renew_interval = mdsc->mdsmap->m_session_timeout >> 2;
4518 renew_caps = time_after_eq(jiffies, HZ*renew_interval +
4519 mdsc->last_renew_caps);
4521 mdsc->last_renew_caps = jiffies;
4523 for (i = 0; i < mdsc->max_sessions; i++) {
4524 struct ceph_mds_session *s = __ceph_lookup_mds_session(mdsc, i);
4528 if (!check_session_state(s)) {
4529 ceph_put_mds_session(s);
4532 mutex_unlock(&mdsc->mutex);
4534 mutex_lock(&s->s_mutex);
4536 send_renew_caps(mdsc, s);
4538 ceph_con_keepalive(&s->s_con);
4539 if (s->s_state == CEPH_MDS_SESSION_OPEN ||
4540 s->s_state == CEPH_MDS_SESSION_HUNG)
4541 ceph_send_cap_releases(mdsc, s);
4542 mutex_unlock(&s->s_mutex);
4543 ceph_put_mds_session(s);
4545 mutex_lock(&mdsc->mutex);
4547 mutex_unlock(&mdsc->mutex);
4549 delay = ceph_check_delayed_caps(mdsc);
4551 ceph_queue_cap_reclaim_work(mdsc);
4553 ceph_trim_snapid_map(mdsc);
4555 maybe_recover_session(mdsc);
4557 schedule_delayed(mdsc, delay);
4560 int ceph_mdsc_init(struct ceph_fs_client *fsc)
4563 struct ceph_mds_client *mdsc;
4566 mdsc = kzalloc(sizeof(struct ceph_mds_client), GFP_NOFS);
4570 mutex_init(&mdsc->mutex);
4571 mdsc->mdsmap = kzalloc(sizeof(*mdsc->mdsmap), GFP_NOFS);
4572 if (!mdsc->mdsmap) {
4577 init_completion(&mdsc->safe_umount_waiters);
4578 init_waitqueue_head(&mdsc->session_close_wq);
4579 INIT_LIST_HEAD(&mdsc->waiting_for_map);
4580 mdsc->quotarealms_inodes = RB_ROOT;
4581 mutex_init(&mdsc->quotarealms_inodes_mutex);
4582 init_rwsem(&mdsc->snap_rwsem);
4583 mdsc->snap_realms = RB_ROOT;
4584 INIT_LIST_HEAD(&mdsc->snap_empty);
4585 spin_lock_init(&mdsc->snap_empty_lock);
4586 mdsc->request_tree = RB_ROOT;
4587 INIT_DELAYED_WORK(&mdsc->delayed_work, delayed_work);
4588 mdsc->last_renew_caps = jiffies;
4589 INIT_LIST_HEAD(&mdsc->cap_delay_list);
4590 INIT_LIST_HEAD(&mdsc->cap_wait_list);
4591 spin_lock_init(&mdsc->cap_delay_lock);
4592 INIT_LIST_HEAD(&mdsc->snap_flush_list);
4593 spin_lock_init(&mdsc->snap_flush_lock);
4594 mdsc->last_cap_flush_tid = 1;
4595 INIT_LIST_HEAD(&mdsc->cap_flush_list);
4596 INIT_LIST_HEAD(&mdsc->cap_dirty_migrating);
4597 spin_lock_init(&mdsc->cap_dirty_lock);
4598 init_waitqueue_head(&mdsc->cap_flushing_wq);
4599 INIT_WORK(&mdsc->cap_reclaim_work, ceph_cap_reclaim_work);
4600 err = ceph_metric_init(&mdsc->metric);
4604 spin_lock_init(&mdsc->dentry_list_lock);
4605 INIT_LIST_HEAD(&mdsc->dentry_leases);
4606 INIT_LIST_HEAD(&mdsc->dentry_dir_leases);
4608 ceph_caps_init(mdsc);
4609 ceph_adjust_caps_max_min(mdsc, fsc->mount_options);
4611 spin_lock_init(&mdsc->snapid_map_lock);
4612 mdsc->snapid_map_tree = RB_ROOT;
4613 INIT_LIST_HEAD(&mdsc->snapid_map_lru);
4615 init_rwsem(&mdsc->pool_perm_rwsem);
4616 mdsc->pool_perm_tree = RB_ROOT;
4618 strscpy(mdsc->nodename, utsname()->nodename,
4619 sizeof(mdsc->nodename));
4625 kfree(mdsc->mdsmap);
4632 * Wait for safe replies on open mds requests. If we time out, drop
4633 * all requests from the tree to avoid dangling dentry refs.
4635 static void wait_requests(struct ceph_mds_client *mdsc)
4637 struct ceph_options *opts = mdsc->fsc->client->options;
4638 struct ceph_mds_request *req;
4640 mutex_lock(&mdsc->mutex);
4641 if (__get_oldest_req(mdsc)) {
4642 mutex_unlock(&mdsc->mutex);
4644 dout("wait_requests waiting for requests\n");
4645 wait_for_completion_timeout(&mdsc->safe_umount_waiters,
4646 ceph_timeout_jiffies(opts->mount_timeout));
4648 /* tear down remaining requests */
4649 mutex_lock(&mdsc->mutex);
4650 while ((req = __get_oldest_req(mdsc))) {
4651 dout("wait_requests timed out on tid %llu\n",
4653 list_del_init(&req->r_wait);
4654 __unregister_request(mdsc, req);
4657 mutex_unlock(&mdsc->mutex);
4658 dout("wait_requests done\n");
4661 void send_flush_mdlog(struct ceph_mds_session *s)
4663 struct ceph_msg *msg;
4666 * Pre-luminous MDS crashes when it sees an unknown session request
4668 if (!CEPH_HAVE_FEATURE(s->s_con.peer_features, SERVER_LUMINOUS))
4671 mutex_lock(&s->s_mutex);
4672 dout("request mdlog flush to mds%d (%s)s seq %lld\n", s->s_mds,
4673 ceph_session_state_name(s->s_state), s->s_seq);
4674 msg = ceph_create_session_msg(CEPH_SESSION_REQUEST_FLUSH_MDLOG,
4677 pr_err("failed to request mdlog flush to mds%d (%s) seq %lld\n",
4678 s->s_mds, ceph_session_state_name(s->s_state), s->s_seq);
4680 ceph_con_send(&s->s_con, msg);
4682 mutex_unlock(&s->s_mutex);
4686 * called before mount is ro, and before dentries are torn down.
4687 * (hmm, does this still race with new lookups?)
4689 void ceph_mdsc_pre_umount(struct ceph_mds_client *mdsc)
4691 dout("pre_umount\n");
4694 ceph_mdsc_iterate_sessions(mdsc, send_flush_mdlog, true);
4695 ceph_mdsc_iterate_sessions(mdsc, lock_unlock_session, false);
4696 ceph_flush_dirty_caps(mdsc);
4697 wait_requests(mdsc);
4700 * wait for reply handlers to drop their request refs and
4701 * their inode/dcache refs
4705 ceph_cleanup_quotarealms_inodes(mdsc);
4709 * wait for all write mds requests to flush.
4711 static void wait_unsafe_requests(struct ceph_mds_client *mdsc, u64 want_tid)
4713 struct ceph_mds_request *req = NULL, *nextreq;
4716 mutex_lock(&mdsc->mutex);
4717 dout("wait_unsafe_requests want %lld\n", want_tid);
4719 req = __get_oldest_req(mdsc);
4720 while (req && req->r_tid <= want_tid) {
4721 /* find next request */
4722 n = rb_next(&req->r_node);
4724 nextreq = rb_entry(n, struct ceph_mds_request, r_node);
4727 if (req->r_op != CEPH_MDS_OP_SETFILELOCK &&
4728 (req->r_op & CEPH_MDS_OP_WRITE)) {
4730 ceph_mdsc_get_request(req);
4732 ceph_mdsc_get_request(nextreq);
4733 mutex_unlock(&mdsc->mutex);
4734 dout("wait_unsafe_requests wait on %llu (want %llu)\n",
4735 req->r_tid, want_tid);
4736 wait_for_completion(&req->r_safe_completion);
4737 mutex_lock(&mdsc->mutex);
4738 ceph_mdsc_put_request(req);
4740 break; /* next dne before, so we're done! */
4741 if (RB_EMPTY_NODE(&nextreq->r_node)) {
4742 /* next request was removed from tree */
4743 ceph_mdsc_put_request(nextreq);
4746 ceph_mdsc_put_request(nextreq); /* won't go away */
4750 mutex_unlock(&mdsc->mutex);
4751 dout("wait_unsafe_requests done\n");
4754 void ceph_mdsc_sync(struct ceph_mds_client *mdsc)
4756 u64 want_tid, want_flush;
4758 if (READ_ONCE(mdsc->fsc->mount_state) >= CEPH_MOUNT_SHUTDOWN)
4762 mutex_lock(&mdsc->mutex);
4763 want_tid = mdsc->last_tid;
4764 mutex_unlock(&mdsc->mutex);
4766 ceph_flush_dirty_caps(mdsc);
4767 spin_lock(&mdsc->cap_dirty_lock);
4768 want_flush = mdsc->last_cap_flush_tid;
4769 if (!list_empty(&mdsc->cap_flush_list)) {
4770 struct ceph_cap_flush *cf =
4771 list_last_entry(&mdsc->cap_flush_list,
4772 struct ceph_cap_flush, g_list);
4775 spin_unlock(&mdsc->cap_dirty_lock);
4777 dout("sync want tid %lld flush_seq %lld\n",
4778 want_tid, want_flush);
4780 wait_unsafe_requests(mdsc, want_tid);
4781 wait_caps_flush(mdsc, want_flush);
4785 * true if all sessions are closed, or we force unmount
4787 static bool done_closing_sessions(struct ceph_mds_client *mdsc, int skipped)
4789 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN)
4791 return atomic_read(&mdsc->num_sessions) <= skipped;
4795 * called after sb is ro.
4797 void ceph_mdsc_close_sessions(struct ceph_mds_client *mdsc)
4799 struct ceph_options *opts = mdsc->fsc->client->options;
4800 struct ceph_mds_session *session;
4804 dout("close_sessions\n");
4806 /* close sessions */
4807 mutex_lock(&mdsc->mutex);
4808 for (i = 0; i < mdsc->max_sessions; i++) {
4809 session = __ceph_lookup_mds_session(mdsc, i);
4812 mutex_unlock(&mdsc->mutex);
4813 mutex_lock(&session->s_mutex);
4814 if (__close_session(mdsc, session) <= 0)
4816 mutex_unlock(&session->s_mutex);
4817 ceph_put_mds_session(session);
4818 mutex_lock(&mdsc->mutex);
4820 mutex_unlock(&mdsc->mutex);
4822 dout("waiting for sessions to close\n");
4823 wait_event_timeout(mdsc->session_close_wq,
4824 done_closing_sessions(mdsc, skipped),
4825 ceph_timeout_jiffies(opts->mount_timeout));
4827 /* tear down remaining sessions */
4828 mutex_lock(&mdsc->mutex);
4829 for (i = 0; i < mdsc->max_sessions; i++) {
4830 if (mdsc->sessions[i]) {
4831 session = ceph_get_mds_session(mdsc->sessions[i]);
4832 __unregister_session(mdsc, session);
4833 mutex_unlock(&mdsc->mutex);
4834 mutex_lock(&session->s_mutex);
4835 remove_session_caps(session);
4836 mutex_unlock(&session->s_mutex);
4837 ceph_put_mds_session(session);
4838 mutex_lock(&mdsc->mutex);
4841 WARN_ON(!list_empty(&mdsc->cap_delay_list));
4842 mutex_unlock(&mdsc->mutex);
4844 ceph_cleanup_snapid_map(mdsc);
4845 ceph_cleanup_empty_realms(mdsc);
4847 cancel_work_sync(&mdsc->cap_reclaim_work);
4848 cancel_delayed_work_sync(&mdsc->delayed_work); /* cancel timer */
4853 void ceph_mdsc_force_umount(struct ceph_mds_client *mdsc)
4855 struct ceph_mds_session *session;
4858 dout("force umount\n");
4860 mutex_lock(&mdsc->mutex);
4861 for (mds = 0; mds < mdsc->max_sessions; mds++) {
4862 session = __ceph_lookup_mds_session(mdsc, mds);
4866 if (session->s_state == CEPH_MDS_SESSION_REJECTED)
4867 __unregister_session(mdsc, session);
4868 __wake_requests(mdsc, &session->s_waiting);
4869 mutex_unlock(&mdsc->mutex);
4871 mutex_lock(&session->s_mutex);
4872 __close_session(mdsc, session);
4873 if (session->s_state == CEPH_MDS_SESSION_CLOSING) {
4874 cleanup_session_requests(mdsc, session);
4875 remove_session_caps(session);
4877 mutex_unlock(&session->s_mutex);
4878 ceph_put_mds_session(session);
4880 mutex_lock(&mdsc->mutex);
4881 kick_requests(mdsc, mds);
4883 __wake_requests(mdsc, &mdsc->waiting_for_map);
4884 mutex_unlock(&mdsc->mutex);
4887 static void ceph_mdsc_stop(struct ceph_mds_client *mdsc)
4891 * Make sure the delayed work stopped before releasing
4894 * Because the cancel_delayed_work_sync() will only
4895 * guarantee that the work finishes executing. But the
4896 * delayed work will re-arm itself again after that.
4898 flush_delayed_work(&mdsc->delayed_work);
4901 ceph_mdsmap_destroy(mdsc->mdsmap);
4902 kfree(mdsc->sessions);
4903 ceph_caps_finalize(mdsc);
4904 ceph_pool_perm_destroy(mdsc);
4907 void ceph_mdsc_destroy(struct ceph_fs_client *fsc)
4909 struct ceph_mds_client *mdsc = fsc->mdsc;
4910 dout("mdsc_destroy %p\n", mdsc);
4915 /* flush out any connection work with references to us */
4918 ceph_mdsc_stop(mdsc);
4920 ceph_metric_destroy(&mdsc->metric);
4924 dout("mdsc_destroy %p done\n", mdsc);
4927 void ceph_mdsc_handle_fsmap(struct ceph_mds_client *mdsc, struct ceph_msg *msg)
4929 struct ceph_fs_client *fsc = mdsc->fsc;
4930 const char *mds_namespace = fsc->mount_options->mds_namespace;
4931 void *p = msg->front.iov_base;
4932 void *end = p + msg->front.iov_len;
4935 u32 mount_fscid = (u32)-1;
4938 ceph_decode_need(&p, end, sizeof(u32), bad);
4939 epoch = ceph_decode_32(&p);
4941 dout("handle_fsmap epoch %u\n", epoch);
4943 /* struct_v, struct_cv, map_len, epoch, legacy_client_fscid */
4944 ceph_decode_skip_n(&p, end, 2 + sizeof(u32) * 3, bad);
4946 ceph_decode_32_safe(&p, end, num_fs, bad);
4947 while (num_fs-- > 0) {
4948 void *info_p, *info_end;
4952 ceph_decode_need(&p, end, 2 + sizeof(u32), bad);
4953 p += 2; // info_v, info_cv
4954 info_len = ceph_decode_32(&p);
4955 ceph_decode_need(&p, end, info_len, bad);
4957 info_end = p + info_len;
4960 ceph_decode_need(&info_p, info_end, sizeof(u32) * 2, bad);
4961 fscid = ceph_decode_32(&info_p);
4962 namelen = ceph_decode_32(&info_p);
4963 ceph_decode_need(&info_p, info_end, namelen, bad);
4965 if (mds_namespace &&
4966 strlen(mds_namespace) == namelen &&
4967 !strncmp(mds_namespace, (char *)info_p, namelen)) {
4968 mount_fscid = fscid;
4973 ceph_monc_got_map(&fsc->client->monc, CEPH_SUB_FSMAP, epoch);
4974 if (mount_fscid != (u32)-1) {
4975 fsc->client->monc.fs_cluster_id = mount_fscid;
4976 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
4978 ceph_monc_renew_subs(&fsc->client->monc);
4986 pr_err("error decoding fsmap %d. Shutting down mount.\n", err);
4987 ceph_umount_begin(mdsc->fsc->sb);
4989 mutex_lock(&mdsc->mutex);
4990 mdsc->mdsmap_err = err;
4991 __wake_requests(mdsc, &mdsc->waiting_for_map);
4992 mutex_unlock(&mdsc->mutex);
4996 * handle mds map update.
4998 void ceph_mdsc_handle_mdsmap(struct ceph_mds_client *mdsc, struct ceph_msg *msg)
5002 void *p = msg->front.iov_base;
5003 void *end = p + msg->front.iov_len;
5004 struct ceph_mdsmap *newmap, *oldmap;
5005 struct ceph_fsid fsid;
5008 ceph_decode_need(&p, end, sizeof(fsid)+2*sizeof(u32), bad);
5009 ceph_decode_copy(&p, &fsid, sizeof(fsid));
5010 if (ceph_check_fsid(mdsc->fsc->client, &fsid) < 0)
5012 epoch = ceph_decode_32(&p);
5013 maplen = ceph_decode_32(&p);
5014 dout("handle_map epoch %u len %d\n", epoch, (int)maplen);
5016 /* do we need it? */
5017 mutex_lock(&mdsc->mutex);
5018 if (mdsc->mdsmap && epoch <= mdsc->mdsmap->m_epoch) {
5019 dout("handle_map epoch %u <= our %u\n",
5020 epoch, mdsc->mdsmap->m_epoch);
5021 mutex_unlock(&mdsc->mutex);
5025 newmap = ceph_mdsmap_decode(&p, end, ceph_msgr2(mdsc->fsc->client));
5026 if (IS_ERR(newmap)) {
5027 err = PTR_ERR(newmap);
5031 /* swap into place */
5033 oldmap = mdsc->mdsmap;
5034 mdsc->mdsmap = newmap;
5035 check_new_map(mdsc, newmap, oldmap);
5036 ceph_mdsmap_destroy(oldmap);
5038 mdsc->mdsmap = newmap; /* first mds map */
5040 mdsc->fsc->max_file_size = min((loff_t)mdsc->mdsmap->m_max_file_size,
5043 __wake_requests(mdsc, &mdsc->waiting_for_map);
5044 ceph_monc_got_map(&mdsc->fsc->client->monc, CEPH_SUB_MDSMAP,
5045 mdsc->mdsmap->m_epoch);
5047 mutex_unlock(&mdsc->mutex);
5048 schedule_delayed(mdsc, 0);
5052 mutex_unlock(&mdsc->mutex);
5054 pr_err("error decoding mdsmap %d. Shutting down mount.\n", err);
5055 ceph_umount_begin(mdsc->fsc->sb);
5059 static struct ceph_connection *mds_get_con(struct ceph_connection *con)
5061 struct ceph_mds_session *s = con->private;
5063 if (ceph_get_mds_session(s))
5068 static void mds_put_con(struct ceph_connection *con)
5070 struct ceph_mds_session *s = con->private;
5072 ceph_put_mds_session(s);
5076 * if the client is unresponsive for long enough, the mds will kill
5077 * the session entirely.
5079 static void mds_peer_reset(struct ceph_connection *con)
5081 struct ceph_mds_session *s = con->private;
5082 struct ceph_mds_client *mdsc = s->s_mdsc;
5084 pr_warn("mds%d closed our session\n", s->s_mds);
5085 send_mds_reconnect(mdsc, s);
5088 static void mds_dispatch(struct ceph_connection *con, struct ceph_msg *msg)
5090 struct ceph_mds_session *s = con->private;
5091 struct ceph_mds_client *mdsc = s->s_mdsc;
5092 int type = le16_to_cpu(msg->hdr.type);
5094 mutex_lock(&mdsc->mutex);
5095 if (__verify_registered_session(mdsc, s) < 0) {
5096 mutex_unlock(&mdsc->mutex);
5099 mutex_unlock(&mdsc->mutex);
5102 case CEPH_MSG_MDS_MAP:
5103 ceph_mdsc_handle_mdsmap(mdsc, msg);
5105 case CEPH_MSG_FS_MAP_USER:
5106 ceph_mdsc_handle_fsmap(mdsc, msg);
5108 case CEPH_MSG_CLIENT_SESSION:
5109 handle_session(s, msg);
5111 case CEPH_MSG_CLIENT_REPLY:
5112 handle_reply(s, msg);
5114 case CEPH_MSG_CLIENT_REQUEST_FORWARD:
5115 handle_forward(mdsc, s, msg);
5117 case CEPH_MSG_CLIENT_CAPS:
5118 ceph_handle_caps(s, msg);
5120 case CEPH_MSG_CLIENT_SNAP:
5121 ceph_handle_snap(mdsc, s, msg);
5123 case CEPH_MSG_CLIENT_LEASE:
5124 handle_lease(mdsc, s, msg);
5126 case CEPH_MSG_CLIENT_QUOTA:
5127 ceph_handle_quota(mdsc, s, msg);
5131 pr_err("received unknown message type %d %s\n", type,
5132 ceph_msg_type_name(type));
5143 * Note: returned pointer is the address of a structure that's
5144 * managed separately. Caller must *not* attempt to free it.
5146 static struct ceph_auth_handshake *
5147 mds_get_authorizer(struct ceph_connection *con, int *proto, int force_new)
5149 struct ceph_mds_session *s = con->private;
5150 struct ceph_mds_client *mdsc = s->s_mdsc;
5151 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
5152 struct ceph_auth_handshake *auth = &s->s_auth;
5155 ret = __ceph_auth_get_authorizer(ac, auth, CEPH_ENTITY_TYPE_MDS,
5156 force_new, proto, NULL, NULL);
5158 return ERR_PTR(ret);
5163 static int mds_add_authorizer_challenge(struct ceph_connection *con,
5164 void *challenge_buf, int challenge_buf_len)
5166 struct ceph_mds_session *s = con->private;
5167 struct ceph_mds_client *mdsc = s->s_mdsc;
5168 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
5170 return ceph_auth_add_authorizer_challenge(ac, s->s_auth.authorizer,
5171 challenge_buf, challenge_buf_len);
5174 static int mds_verify_authorizer_reply(struct ceph_connection *con)
5176 struct ceph_mds_session *s = con->private;
5177 struct ceph_mds_client *mdsc = s->s_mdsc;
5178 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
5179 struct ceph_auth_handshake *auth = &s->s_auth;
5181 return ceph_auth_verify_authorizer_reply(ac, auth->authorizer,
5182 auth->authorizer_reply_buf, auth->authorizer_reply_buf_len,
5183 NULL, NULL, NULL, NULL);
5186 static int mds_invalidate_authorizer(struct ceph_connection *con)
5188 struct ceph_mds_session *s = con->private;
5189 struct ceph_mds_client *mdsc = s->s_mdsc;
5190 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
5192 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_MDS);
5194 return ceph_monc_validate_auth(&mdsc->fsc->client->monc);
5197 static int mds_get_auth_request(struct ceph_connection *con,
5198 void *buf, int *buf_len,
5199 void **authorizer, int *authorizer_len)
5201 struct ceph_mds_session *s = con->private;
5202 struct ceph_auth_client *ac = s->s_mdsc->fsc->client->monc.auth;
5203 struct ceph_auth_handshake *auth = &s->s_auth;
5206 ret = ceph_auth_get_authorizer(ac, auth, CEPH_ENTITY_TYPE_MDS,
5211 *authorizer = auth->authorizer_buf;
5212 *authorizer_len = auth->authorizer_buf_len;
5216 static int mds_handle_auth_reply_more(struct ceph_connection *con,
5217 void *reply, int reply_len,
5218 void *buf, int *buf_len,
5219 void **authorizer, int *authorizer_len)
5221 struct ceph_mds_session *s = con->private;
5222 struct ceph_auth_client *ac = s->s_mdsc->fsc->client->monc.auth;
5223 struct ceph_auth_handshake *auth = &s->s_auth;
5226 ret = ceph_auth_handle_svc_reply_more(ac, auth, reply, reply_len,
5231 *authorizer = auth->authorizer_buf;
5232 *authorizer_len = auth->authorizer_buf_len;
5236 static int mds_handle_auth_done(struct ceph_connection *con,
5237 u64 global_id, void *reply, int reply_len,
5238 u8 *session_key, int *session_key_len,
5239 u8 *con_secret, int *con_secret_len)
5241 struct ceph_mds_session *s = con->private;
5242 struct ceph_auth_client *ac = s->s_mdsc->fsc->client->monc.auth;
5243 struct ceph_auth_handshake *auth = &s->s_auth;
5245 return ceph_auth_handle_svc_reply_done(ac, auth, reply, reply_len,
5246 session_key, session_key_len,
5247 con_secret, con_secret_len);
5250 static int mds_handle_auth_bad_method(struct ceph_connection *con,
5251 int used_proto, int result,
5252 const int *allowed_protos, int proto_cnt,
5253 const int *allowed_modes, int mode_cnt)
5255 struct ceph_mds_session *s = con->private;
5256 struct ceph_mon_client *monc = &s->s_mdsc->fsc->client->monc;
5259 if (ceph_auth_handle_bad_authorizer(monc->auth, CEPH_ENTITY_TYPE_MDS,
5261 allowed_protos, proto_cnt,
5262 allowed_modes, mode_cnt)) {
5263 ret = ceph_monc_validate_auth(monc);
5271 static struct ceph_msg *mds_alloc_msg(struct ceph_connection *con,
5272 struct ceph_msg_header *hdr, int *skip)
5274 struct ceph_msg *msg;
5275 int type = (int) le16_to_cpu(hdr->type);
5276 int front_len = (int) le32_to_cpu(hdr->front_len);
5282 msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
5284 pr_err("unable to allocate msg type %d len %d\n",
5292 static int mds_sign_message(struct ceph_msg *msg)
5294 struct ceph_mds_session *s = msg->con->private;
5295 struct ceph_auth_handshake *auth = &s->s_auth;
5297 return ceph_auth_sign_message(auth, msg);
5300 static int mds_check_message_signature(struct ceph_msg *msg)
5302 struct ceph_mds_session *s = msg->con->private;
5303 struct ceph_auth_handshake *auth = &s->s_auth;
5305 return ceph_auth_check_message_signature(auth, msg);
5308 static const struct ceph_connection_operations mds_con_ops = {
5311 .alloc_msg = mds_alloc_msg,
5312 .dispatch = mds_dispatch,
5313 .peer_reset = mds_peer_reset,
5314 .get_authorizer = mds_get_authorizer,
5315 .add_authorizer_challenge = mds_add_authorizer_challenge,
5316 .verify_authorizer_reply = mds_verify_authorizer_reply,
5317 .invalidate_authorizer = mds_invalidate_authorizer,
5318 .sign_message = mds_sign_message,
5319 .check_message_signature = mds_check_message_signature,
5320 .get_auth_request = mds_get_auth_request,
5321 .handle_auth_reply_more = mds_handle_auth_reply_more,
5322 .handle_auth_done = mds_handle_auth_done,
5323 .handle_auth_bad_method = mds_handle_auth_bad_method,