1 #include <linux/ceph/ceph_debug.h>
4 #include <linux/wait.h>
5 #include <linux/slab.h>
6 #include <linux/sched.h>
7 #include <linux/debugfs.h>
8 #include <linux/seq_file.h>
9 #include <linux/smp_lock.h>
12 #include "mds_client.h"
14 #include <linux/ceph/messenger.h>
15 #include <linux/ceph/decode.h>
16 #include <linux/ceph/pagelist.h>
17 #include <linux/ceph/auth.h>
18 #include <linux/ceph/debugfs.h>
21 * A cluster of MDS (metadata server) daemons is responsible for
22 * managing the file system namespace (the directory hierarchy and
23 * inodes) and for coordinating shared access to storage. Metadata is
24 * partitioning hierarchically across a number of servers, and that
25 * partition varies over time as the cluster adjusts the distribution
26 * in order to balance load.
28 * The MDS client is primarily responsible to managing synchronous
29 * metadata requests for operations like open, unlink, and so forth.
30 * If there is a MDS failure, we find out about it when we (possibly
31 * request and) receive a new MDS map, and can resubmit affected
34 * For the most part, though, we take advantage of a lossless
35 * communications channel to the MDS, and do not need to worry about
36 * timing out or resubmitting requests.
38 * We maintain a stateful "session" with each MDS we interact with.
39 * Within each session, we sent periodic heartbeat messages to ensure
40 * any capabilities or leases we have been issues remain valid. If
41 * the session times out and goes stale, our leases and capabilities
42 * are no longer valid.
45 struct ceph_reconnect_state
{
46 struct ceph_pagelist
*pagelist
;
50 static void __wake_requests(struct ceph_mds_client
*mdsc
,
51 struct list_head
*head
);
53 static const struct ceph_connection_operations mds_con_ops
;
61 * parse individual inode info
63 static int parse_reply_info_in(void **p
, void *end
,
64 struct ceph_mds_reply_info_in
*info
)
69 *p
+= sizeof(struct ceph_mds_reply_inode
) +
70 sizeof(*info
->in
->fragtree
.splits
) *
71 le32_to_cpu(info
->in
->fragtree
.nsplits
);
73 ceph_decode_32_safe(p
, end
, info
->symlink_len
, bad
);
74 ceph_decode_need(p
, end
, info
->symlink_len
, bad
);
76 *p
+= info
->symlink_len
;
78 ceph_decode_32_safe(p
, end
, info
->xattr_len
, bad
);
79 ceph_decode_need(p
, end
, info
->xattr_len
, bad
);
80 info
->xattr_data
= *p
;
81 *p
+= info
->xattr_len
;
88 * parse a normal reply, which may contain a (dir+)dentry and/or a
91 static int parse_reply_info_trace(void **p
, void *end
,
92 struct ceph_mds_reply_info_parsed
*info
)
96 if (info
->head
->is_dentry
) {
97 err
= parse_reply_info_in(p
, end
, &info
->diri
);
101 if (unlikely(*p
+ sizeof(*info
->dirfrag
) > end
))
104 *p
+= sizeof(*info
->dirfrag
) +
105 sizeof(u32
)*le32_to_cpu(info
->dirfrag
->ndist
);
106 if (unlikely(*p
> end
))
109 ceph_decode_32_safe(p
, end
, info
->dname_len
, bad
);
110 ceph_decode_need(p
, end
, info
->dname_len
, bad
);
112 *p
+= info
->dname_len
;
114 *p
+= sizeof(*info
->dlease
);
117 if (info
->head
->is_target
) {
118 err
= parse_reply_info_in(p
, end
, &info
->targeti
);
123 if (unlikely(*p
!= end
))
130 pr_err("problem parsing mds trace %d\n", err
);
135 * parse readdir results
137 static int parse_reply_info_dir(void **p
, void *end
,
138 struct ceph_mds_reply_info_parsed
*info
)
144 if (*p
+ sizeof(*info
->dir_dir
) > end
)
146 *p
+= sizeof(*info
->dir_dir
) +
147 sizeof(u32
)*le32_to_cpu(info
->dir_dir
->ndist
);
151 ceph_decode_need(p
, end
, sizeof(num
) + 2, bad
);
152 num
= ceph_decode_32(p
);
153 info
->dir_end
= ceph_decode_8(p
);
154 info
->dir_complete
= ceph_decode_8(p
);
158 /* alloc large array */
160 info
->dir_in
= kcalloc(num
, sizeof(*info
->dir_in
) +
161 sizeof(*info
->dir_dname
) +
162 sizeof(*info
->dir_dname_len
) +
163 sizeof(*info
->dir_dlease
),
165 if (info
->dir_in
== NULL
) {
169 info
->dir_dname
= (void *)(info
->dir_in
+ num
);
170 info
->dir_dname_len
= (void *)(info
->dir_dname
+ num
);
171 info
->dir_dlease
= (void *)(info
->dir_dname_len
+ num
);
175 ceph_decode_need(p
, end
, sizeof(u32
)*2, bad
);
176 info
->dir_dname_len
[i
] = ceph_decode_32(p
);
177 ceph_decode_need(p
, end
, info
->dir_dname_len
[i
], bad
);
178 info
->dir_dname
[i
] = *p
;
179 *p
+= info
->dir_dname_len
[i
];
180 dout("parsed dir dname '%.*s'\n", info
->dir_dname_len
[i
],
182 info
->dir_dlease
[i
] = *p
;
183 *p
+= sizeof(struct ceph_mds_reply_lease
);
186 err
= parse_reply_info_in(p
, end
, &info
->dir_in
[i
]);
201 pr_err("problem parsing dir contents %d\n", err
);
206 * parse entire mds reply
208 static int parse_reply_info(struct ceph_msg
*msg
,
209 struct ceph_mds_reply_info_parsed
*info
)
215 info
->head
= msg
->front
.iov_base
;
216 p
= msg
->front
.iov_base
+ sizeof(struct ceph_mds_reply_head
);
217 end
= p
+ msg
->front
.iov_len
- sizeof(struct ceph_mds_reply_head
);
220 ceph_decode_32_safe(&p
, end
, len
, bad
);
222 err
= parse_reply_info_trace(&p
, p
+len
, info
);
228 ceph_decode_32_safe(&p
, end
, len
, bad
);
230 err
= parse_reply_info_dir(&p
, p
+len
, info
);
236 ceph_decode_32_safe(&p
, end
, len
, bad
);
237 info
->snapblob_len
= len
;
248 pr_err("mds parse_reply err %d\n", err
);
252 static void destroy_reply_info(struct ceph_mds_reply_info_parsed
*info
)
261 static const char *session_state_name(int s
)
264 case CEPH_MDS_SESSION_NEW
: return "new";
265 case CEPH_MDS_SESSION_OPENING
: return "opening";
266 case CEPH_MDS_SESSION_OPEN
: return "open";
267 case CEPH_MDS_SESSION_HUNG
: return "hung";
268 case CEPH_MDS_SESSION_CLOSING
: return "closing";
269 case CEPH_MDS_SESSION_RESTARTING
: return "restarting";
270 case CEPH_MDS_SESSION_RECONNECTING
: return "reconnecting";
271 default: return "???";
275 static struct ceph_mds_session
*get_session(struct ceph_mds_session
*s
)
277 if (atomic_inc_not_zero(&s
->s_ref
)) {
278 dout("mdsc get_session %p %d -> %d\n", s
,
279 atomic_read(&s
->s_ref
)-1, atomic_read(&s
->s_ref
));
282 dout("mdsc get_session %p 0 -- FAIL", s
);
287 void ceph_put_mds_session(struct ceph_mds_session
*s
)
289 dout("mdsc put_session %p %d -> %d\n", s
,
290 atomic_read(&s
->s_ref
), atomic_read(&s
->s_ref
)-1);
291 if (atomic_dec_and_test(&s
->s_ref
)) {
293 s
->s_mdsc
->fsc
->client
->monc
.auth
->ops
->destroy_authorizer(
294 s
->s_mdsc
->fsc
->client
->monc
.auth
,
301 * called under mdsc->mutex
303 struct ceph_mds_session
*__ceph_lookup_mds_session(struct ceph_mds_client
*mdsc
,
306 struct ceph_mds_session
*session
;
308 if (mds
>= mdsc
->max_sessions
|| mdsc
->sessions
[mds
] == NULL
)
310 session
= mdsc
->sessions
[mds
];
311 dout("lookup_mds_session %p %d\n", session
,
312 atomic_read(&session
->s_ref
));
313 get_session(session
);
317 static bool __have_session(struct ceph_mds_client
*mdsc
, int mds
)
319 if (mds
>= mdsc
->max_sessions
)
321 return mdsc
->sessions
[mds
];
324 static int __verify_registered_session(struct ceph_mds_client
*mdsc
,
325 struct ceph_mds_session
*s
)
327 if (s
->s_mds
>= mdsc
->max_sessions
||
328 mdsc
->sessions
[s
->s_mds
] != s
)
334 * create+register a new session for given mds.
335 * called under mdsc->mutex.
337 static struct ceph_mds_session
*register_session(struct ceph_mds_client
*mdsc
,
340 struct ceph_mds_session
*s
;
342 s
= kzalloc(sizeof(*s
), GFP_NOFS
);
344 return ERR_PTR(-ENOMEM
);
347 s
->s_state
= CEPH_MDS_SESSION_NEW
;
350 mutex_init(&s
->s_mutex
);
352 ceph_con_init(mdsc
->fsc
->client
->msgr
, &s
->s_con
);
353 s
->s_con
.private = s
;
354 s
->s_con
.ops
= &mds_con_ops
;
355 s
->s_con
.peer_name
.type
= CEPH_ENTITY_TYPE_MDS
;
356 s
->s_con
.peer_name
.num
= cpu_to_le64(mds
);
358 spin_lock_init(&s
->s_cap_lock
);
361 s
->s_renew_requested
= 0;
363 INIT_LIST_HEAD(&s
->s_caps
);
366 atomic_set(&s
->s_ref
, 1);
367 INIT_LIST_HEAD(&s
->s_waiting
);
368 INIT_LIST_HEAD(&s
->s_unsafe
);
369 s
->s_num_cap_releases
= 0;
370 s
->s_cap_iterator
= NULL
;
371 INIT_LIST_HEAD(&s
->s_cap_releases
);
372 INIT_LIST_HEAD(&s
->s_cap_releases_done
);
373 INIT_LIST_HEAD(&s
->s_cap_flushing
);
374 INIT_LIST_HEAD(&s
->s_cap_snaps_flushing
);
376 dout("register_session mds%d\n", mds
);
377 if (mds
>= mdsc
->max_sessions
) {
378 int newmax
= 1 << get_count_order(mds
+1);
379 struct ceph_mds_session
**sa
;
381 dout("register_session realloc to %d\n", newmax
);
382 sa
= kcalloc(newmax
, sizeof(void *), GFP_NOFS
);
385 if (mdsc
->sessions
) {
386 memcpy(sa
, mdsc
->sessions
,
387 mdsc
->max_sessions
* sizeof(void *));
388 kfree(mdsc
->sessions
);
391 mdsc
->max_sessions
= newmax
;
393 mdsc
->sessions
[mds
] = s
;
394 atomic_inc(&s
->s_ref
); /* one ref to sessions[], one to caller */
396 ceph_con_open(&s
->s_con
, ceph_mdsmap_get_addr(mdsc
->mdsmap
, mds
));
402 return ERR_PTR(-ENOMEM
);
406 * called under mdsc->mutex
408 static void __unregister_session(struct ceph_mds_client
*mdsc
,
409 struct ceph_mds_session
*s
)
411 dout("__unregister_session mds%d %p\n", s
->s_mds
, s
);
412 BUG_ON(mdsc
->sessions
[s
->s_mds
] != s
);
413 mdsc
->sessions
[s
->s_mds
] = NULL
;
414 ceph_con_close(&s
->s_con
);
415 ceph_put_mds_session(s
);
419 * drop session refs in request.
421 * should be last request ref, or hold mdsc->mutex
423 static void put_request_session(struct ceph_mds_request
*req
)
425 if (req
->r_session
) {
426 ceph_put_mds_session(req
->r_session
);
427 req
->r_session
= NULL
;
431 void ceph_mdsc_release_request(struct kref
*kref
)
433 struct ceph_mds_request
*req
= container_of(kref
,
434 struct ceph_mds_request
,
437 ceph_msg_put(req
->r_request
);
439 ceph_msg_put(req
->r_reply
);
440 destroy_reply_info(&req
->r_reply_info
);
443 ceph_put_cap_refs(ceph_inode(req
->r_inode
),
447 if (req
->r_locked_dir
)
448 ceph_put_cap_refs(ceph_inode(req
->r_locked_dir
),
450 if (req
->r_target_inode
)
451 iput(req
->r_target_inode
);
454 if (req
->r_old_dentry
) {
456 ceph_inode(req
->r_old_dentry
->d_parent
->d_inode
),
458 dput(req
->r_old_dentry
);
462 put_request_session(req
);
463 ceph_unreserve_caps(req
->r_mdsc
, &req
->r_caps_reservation
);
468 * lookup session, bump ref if found.
470 * called under mdsc->mutex.
472 static struct ceph_mds_request
*__lookup_request(struct ceph_mds_client
*mdsc
,
475 struct ceph_mds_request
*req
;
476 struct rb_node
*n
= mdsc
->request_tree
.rb_node
;
479 req
= rb_entry(n
, struct ceph_mds_request
, r_node
);
480 if (tid
< req
->r_tid
)
482 else if (tid
> req
->r_tid
)
485 ceph_mdsc_get_request(req
);
492 static void __insert_request(struct ceph_mds_client
*mdsc
,
493 struct ceph_mds_request
*new)
495 struct rb_node
**p
= &mdsc
->request_tree
.rb_node
;
496 struct rb_node
*parent
= NULL
;
497 struct ceph_mds_request
*req
= NULL
;
501 req
= rb_entry(parent
, struct ceph_mds_request
, r_node
);
502 if (new->r_tid
< req
->r_tid
)
504 else if (new->r_tid
> req
->r_tid
)
510 rb_link_node(&new->r_node
, parent
, p
);
511 rb_insert_color(&new->r_node
, &mdsc
->request_tree
);
515 * Register an in-flight request, and assign a tid. Link to directory
516 * are modifying (if any).
518 * Called under mdsc->mutex.
520 static void __register_request(struct ceph_mds_client
*mdsc
,
521 struct ceph_mds_request
*req
,
524 req
->r_tid
= ++mdsc
->last_tid
;
526 ceph_reserve_caps(mdsc
, &req
->r_caps_reservation
,
528 dout("__register_request %p tid %lld\n", req
, req
->r_tid
);
529 ceph_mdsc_get_request(req
);
530 __insert_request(mdsc
, req
);
533 struct ceph_inode_info
*ci
= ceph_inode(dir
);
535 spin_lock(&ci
->i_unsafe_lock
);
536 req
->r_unsafe_dir
= dir
;
537 list_add_tail(&req
->r_unsafe_dir_item
, &ci
->i_unsafe_dirops
);
538 spin_unlock(&ci
->i_unsafe_lock
);
542 static void __unregister_request(struct ceph_mds_client
*mdsc
,
543 struct ceph_mds_request
*req
)
545 dout("__unregister_request %p tid %lld\n", req
, req
->r_tid
);
546 rb_erase(&req
->r_node
, &mdsc
->request_tree
);
547 RB_CLEAR_NODE(&req
->r_node
);
549 if (req
->r_unsafe_dir
) {
550 struct ceph_inode_info
*ci
= ceph_inode(req
->r_unsafe_dir
);
552 spin_lock(&ci
->i_unsafe_lock
);
553 list_del_init(&req
->r_unsafe_dir_item
);
554 spin_unlock(&ci
->i_unsafe_lock
);
557 ceph_mdsc_put_request(req
);
561 * Choose mds to send request to next. If there is a hint set in the
562 * request (e.g., due to a prior forward hint from the mds), use that.
563 * Otherwise, consult frag tree and/or caps to identify the
564 * appropriate mds. If all else fails, choose randomly.
566 * Called under mdsc->mutex.
568 struct dentry
*get_nonsnap_parent(struct dentry
*dentry
)
570 while (!IS_ROOT(dentry
) && ceph_snap(dentry
->d_inode
) != CEPH_NOSNAP
)
571 dentry
= dentry
->d_parent
;
575 static int __choose_mds(struct ceph_mds_client
*mdsc
,
576 struct ceph_mds_request
*req
)
579 struct ceph_inode_info
*ci
;
580 struct ceph_cap
*cap
;
581 int mode
= req
->r_direct_mode
;
583 u32 hash
= req
->r_direct_hash
;
584 bool is_hash
= req
->r_direct_is_hash
;
587 * is there a specific mds we should try? ignore hint if we have
588 * no session and the mds is not up (active or recovering).
590 if (req
->r_resend_mds
>= 0 &&
591 (__have_session(mdsc
, req
->r_resend_mds
) ||
592 ceph_mdsmap_get_state(mdsc
->mdsmap
, req
->r_resend_mds
) > 0)) {
593 dout("choose_mds using resend_mds mds%d\n",
595 return req
->r_resend_mds
;
598 if (mode
== USE_RANDOM_MDS
)
603 inode
= req
->r_inode
;
604 } else if (req
->r_dentry
) {
605 struct inode
*dir
= req
->r_dentry
->d_parent
->d_inode
;
607 if (dir
->i_sb
!= mdsc
->fsc
->sb
) {
609 inode
= req
->r_dentry
->d_inode
;
610 } else if (ceph_snap(dir
) != CEPH_NOSNAP
) {
611 /* direct snapped/virtual snapdir requests
612 * based on parent dir inode */
614 get_nonsnap_parent(req
->r_dentry
->d_parent
);
616 dout("__choose_mds using nonsnap parent %p\n", inode
);
617 } else if (req
->r_dentry
->d_inode
) {
619 inode
= req
->r_dentry
->d_inode
;
623 hash
= req
->r_dentry
->d_name
.hash
;
628 dout("__choose_mds %p is_hash=%d (%d) mode %d\n", inode
, (int)is_hash
,
632 ci
= ceph_inode(inode
);
634 if (is_hash
&& S_ISDIR(inode
->i_mode
)) {
635 struct ceph_inode_frag frag
;
638 ceph_choose_frag(ci
, hash
, &frag
, &found
);
640 if (mode
== USE_ANY_MDS
&& frag
.ndist
> 0) {
643 /* choose a random replica */
644 get_random_bytes(&r
, 1);
647 dout("choose_mds %p %llx.%llx "
648 "frag %u mds%d (%d/%d)\n",
649 inode
, ceph_vinop(inode
),
655 /* since this file/dir wasn't known to be
656 * replicated, then we want to look for the
657 * authoritative mds. */
660 /* choose auth mds */
662 dout("choose_mds %p %llx.%llx "
663 "frag %u mds%d (auth)\n",
664 inode
, ceph_vinop(inode
), frag
.frag
, mds
);
670 spin_lock(&inode
->i_lock
);
672 if (mode
== USE_AUTH_MDS
)
673 cap
= ci
->i_auth_cap
;
674 if (!cap
&& !RB_EMPTY_ROOT(&ci
->i_caps
))
675 cap
= rb_entry(rb_first(&ci
->i_caps
), struct ceph_cap
, ci_node
);
677 spin_unlock(&inode
->i_lock
);
680 mds
= cap
->session
->s_mds
;
681 dout("choose_mds %p %llx.%llx mds%d (%scap %p)\n",
682 inode
, ceph_vinop(inode
), mds
,
683 cap
== ci
->i_auth_cap
? "auth " : "", cap
);
684 spin_unlock(&inode
->i_lock
);
688 mds
= ceph_mdsmap_get_random_mds(mdsc
->mdsmap
);
689 dout("choose_mds chose random mds%d\n", mds
);
697 static struct ceph_msg
*create_session_msg(u32 op
, u64 seq
)
699 struct ceph_msg
*msg
;
700 struct ceph_mds_session_head
*h
;
702 msg
= ceph_msg_new(CEPH_MSG_CLIENT_SESSION
, sizeof(*h
), GFP_NOFS
);
704 pr_err("create_session_msg ENOMEM creating msg\n");
707 h
= msg
->front
.iov_base
;
708 h
->op
= cpu_to_le32(op
);
709 h
->seq
= cpu_to_le64(seq
);
714 * send session open request.
716 * called under mdsc->mutex
718 static int __open_session(struct ceph_mds_client
*mdsc
,
719 struct ceph_mds_session
*session
)
721 struct ceph_msg
*msg
;
723 int mds
= session
->s_mds
;
725 /* wait for mds to go active? */
726 mstate
= ceph_mdsmap_get_state(mdsc
->mdsmap
, mds
);
727 dout("open_session to mds%d (%s)\n", mds
,
728 ceph_mds_state_name(mstate
));
729 session
->s_state
= CEPH_MDS_SESSION_OPENING
;
730 session
->s_renew_requested
= jiffies
;
732 /* send connect message */
733 msg
= create_session_msg(CEPH_SESSION_REQUEST_OPEN
, session
->s_seq
);
736 ceph_con_send(&session
->s_con
, msg
);
741 * open sessions for any export targets for the given mds
743 * called under mdsc->mutex
745 static void __open_export_target_sessions(struct ceph_mds_client
*mdsc
,
746 struct ceph_mds_session
*session
)
748 struct ceph_mds_info
*mi
;
749 struct ceph_mds_session
*ts
;
750 int i
, mds
= session
->s_mds
;
753 if (mds
>= mdsc
->mdsmap
->m_max_mds
)
755 mi
= &mdsc
->mdsmap
->m_info
[mds
];
756 dout("open_export_target_sessions for mds%d (%d targets)\n",
757 session
->s_mds
, mi
->num_export_targets
);
759 for (i
= 0; i
< mi
->num_export_targets
; i
++) {
760 target
= mi
->export_targets
[i
];
761 ts
= __ceph_lookup_mds_session(mdsc
, target
);
763 ts
= register_session(mdsc
, target
);
767 if (session
->s_state
== CEPH_MDS_SESSION_NEW
||
768 session
->s_state
== CEPH_MDS_SESSION_CLOSING
)
769 __open_session(mdsc
, session
);
771 dout(" mds%d target mds%d %p is %s\n", session
->s_mds
,
772 i
, ts
, session_state_name(ts
->s_state
));
773 ceph_put_mds_session(ts
);
777 void ceph_mdsc_open_export_target_sessions(struct ceph_mds_client
*mdsc
,
778 struct ceph_mds_session
*session
)
780 mutex_lock(&mdsc
->mutex
);
781 __open_export_target_sessions(mdsc
, session
);
782 mutex_unlock(&mdsc
->mutex
);
790 * Free preallocated cap messages assigned to this session
792 static void cleanup_cap_releases(struct ceph_mds_session
*session
)
794 struct ceph_msg
*msg
;
796 spin_lock(&session
->s_cap_lock
);
797 while (!list_empty(&session
->s_cap_releases
)) {
798 msg
= list_first_entry(&session
->s_cap_releases
,
799 struct ceph_msg
, list_head
);
800 list_del_init(&msg
->list_head
);
803 while (!list_empty(&session
->s_cap_releases_done
)) {
804 msg
= list_first_entry(&session
->s_cap_releases_done
,
805 struct ceph_msg
, list_head
);
806 list_del_init(&msg
->list_head
);
809 spin_unlock(&session
->s_cap_lock
);
813 * Helper to safely iterate over all caps associated with a session, with
814 * special care taken to handle a racing __ceph_remove_cap().
816 * Caller must hold session s_mutex.
818 static int iterate_session_caps(struct ceph_mds_session
*session
,
819 int (*cb
)(struct inode
*, struct ceph_cap
*,
823 struct ceph_cap
*cap
;
824 struct inode
*inode
, *last_inode
= NULL
;
825 struct ceph_cap
*old_cap
= NULL
;
828 dout("iterate_session_caps %p mds%d\n", session
, session
->s_mds
);
829 spin_lock(&session
->s_cap_lock
);
830 p
= session
->s_caps
.next
;
831 while (p
!= &session
->s_caps
) {
832 cap
= list_entry(p
, struct ceph_cap
, session_caps
);
833 inode
= igrab(&cap
->ci
->vfs_inode
);
838 session
->s_cap_iterator
= cap
;
839 spin_unlock(&session
->s_cap_lock
);
846 ceph_put_cap(session
->s_mdsc
, old_cap
);
850 ret
= cb(inode
, cap
, arg
);
853 spin_lock(&session
->s_cap_lock
);
855 if (cap
->ci
== NULL
) {
856 dout("iterate_session_caps finishing cap %p removal\n",
858 BUG_ON(cap
->session
!= session
);
859 list_del_init(&cap
->session_caps
);
860 session
->s_nr_caps
--;
862 old_cap
= cap
; /* put_cap it w/o locks held */
869 session
->s_cap_iterator
= NULL
;
870 spin_unlock(&session
->s_cap_lock
);
875 ceph_put_cap(session
->s_mdsc
, old_cap
);
880 static int remove_session_caps_cb(struct inode
*inode
, struct ceph_cap
*cap
,
883 struct ceph_inode_info
*ci
= ceph_inode(inode
);
886 dout("removing cap %p, ci is %p, inode is %p\n",
887 cap
, ci
, &ci
->vfs_inode
);
888 spin_lock(&inode
->i_lock
);
889 __ceph_remove_cap(cap
);
890 if (!__ceph_is_any_real_caps(ci
)) {
891 struct ceph_mds_client
*mdsc
=
892 ceph_sb_to_client(inode
->i_sb
)->mdsc
;
894 spin_lock(&mdsc
->cap_dirty_lock
);
895 if (!list_empty(&ci
->i_dirty_item
)) {
896 pr_info(" dropping dirty %s state for %p %lld\n",
897 ceph_cap_string(ci
->i_dirty_caps
),
898 inode
, ceph_ino(inode
));
899 ci
->i_dirty_caps
= 0;
900 list_del_init(&ci
->i_dirty_item
);
903 if (!list_empty(&ci
->i_flushing_item
)) {
904 pr_info(" dropping dirty+flushing %s state for %p %lld\n",
905 ceph_cap_string(ci
->i_flushing_caps
),
906 inode
, ceph_ino(inode
));
907 ci
->i_flushing_caps
= 0;
908 list_del_init(&ci
->i_flushing_item
);
909 mdsc
->num_cap_flushing
--;
912 if (drop
&& ci
->i_wrbuffer_ref
) {
913 pr_info(" dropping dirty data for %p %lld\n",
914 inode
, ceph_ino(inode
));
915 ci
->i_wrbuffer_ref
= 0;
916 ci
->i_wrbuffer_ref_head
= 0;
919 spin_unlock(&mdsc
->cap_dirty_lock
);
921 spin_unlock(&inode
->i_lock
);
928 * caller must hold session s_mutex
930 static void remove_session_caps(struct ceph_mds_session
*session
)
932 dout("remove_session_caps on %p\n", session
);
933 iterate_session_caps(session
, remove_session_caps_cb
, NULL
);
934 BUG_ON(session
->s_nr_caps
> 0);
935 BUG_ON(!list_empty(&session
->s_cap_flushing
));
936 cleanup_cap_releases(session
);
940 * wake up any threads waiting on this session's caps. if the cap is
941 * old (didn't get renewed on the client reconnect), remove it now.
943 * caller must hold s_mutex.
945 static int wake_up_session_cb(struct inode
*inode
, struct ceph_cap
*cap
,
948 struct ceph_inode_info
*ci
= ceph_inode(inode
);
950 wake_up_all(&ci
->i_cap_wq
);
952 spin_lock(&inode
->i_lock
);
953 ci
->i_wanted_max_size
= 0;
954 ci
->i_requested_max_size
= 0;
955 spin_unlock(&inode
->i_lock
);
960 static void wake_up_session_caps(struct ceph_mds_session
*session
,
963 dout("wake_up_session_caps %p mds%d\n", session
, session
->s_mds
);
964 iterate_session_caps(session
, wake_up_session_cb
,
965 (void *)(unsigned long)reconnect
);
969 * Send periodic message to MDS renewing all currently held caps. The
970 * ack will reset the expiration for all caps from this session.
972 * caller holds s_mutex
974 static int send_renew_caps(struct ceph_mds_client
*mdsc
,
975 struct ceph_mds_session
*session
)
977 struct ceph_msg
*msg
;
980 if (time_after_eq(jiffies
, session
->s_cap_ttl
) &&
981 time_after_eq(session
->s_cap_ttl
, session
->s_renew_requested
))
982 pr_info("mds%d caps stale\n", session
->s_mds
);
983 session
->s_renew_requested
= jiffies
;
985 /* do not try to renew caps until a recovering mds has reconnected
986 * with its clients. */
987 state
= ceph_mdsmap_get_state(mdsc
->mdsmap
, session
->s_mds
);
988 if (state
< CEPH_MDS_STATE_RECONNECT
) {
989 dout("send_renew_caps ignoring mds%d (%s)\n",
990 session
->s_mds
, ceph_mds_state_name(state
));
994 dout("send_renew_caps to mds%d (%s)\n", session
->s_mds
,
995 ceph_mds_state_name(state
));
996 msg
= create_session_msg(CEPH_SESSION_REQUEST_RENEWCAPS
,
997 ++session
->s_renew_seq
);
1000 ceph_con_send(&session
->s_con
, msg
);
1005 * Note new cap ttl, and any transition from stale -> not stale (fresh?).
1007 * Called under session->s_mutex
1009 static void renewed_caps(struct ceph_mds_client
*mdsc
,
1010 struct ceph_mds_session
*session
, int is_renew
)
1015 spin_lock(&session
->s_cap_lock
);
1016 was_stale
= is_renew
&& (session
->s_cap_ttl
== 0 ||
1017 time_after_eq(jiffies
, session
->s_cap_ttl
));
1019 session
->s_cap_ttl
= session
->s_renew_requested
+
1020 mdsc
->mdsmap
->m_session_timeout
*HZ
;
1023 if (time_before(jiffies
, session
->s_cap_ttl
)) {
1024 pr_info("mds%d caps renewed\n", session
->s_mds
);
1027 pr_info("mds%d caps still stale\n", session
->s_mds
);
1030 dout("renewed_caps mds%d ttl now %lu, was %s, now %s\n",
1031 session
->s_mds
, session
->s_cap_ttl
, was_stale
? "stale" : "fresh",
1032 time_before(jiffies
, session
->s_cap_ttl
) ? "stale" : "fresh");
1033 spin_unlock(&session
->s_cap_lock
);
1036 wake_up_session_caps(session
, 0);
1040 * send a session close request
1042 static int request_close_session(struct ceph_mds_client
*mdsc
,
1043 struct ceph_mds_session
*session
)
1045 struct ceph_msg
*msg
;
1047 dout("request_close_session mds%d state %s seq %lld\n",
1048 session
->s_mds
, session_state_name(session
->s_state
),
1050 msg
= create_session_msg(CEPH_SESSION_REQUEST_CLOSE
, session
->s_seq
);
1053 ceph_con_send(&session
->s_con
, msg
);
1058 * Called with s_mutex held.
1060 static int __close_session(struct ceph_mds_client
*mdsc
,
1061 struct ceph_mds_session
*session
)
1063 if (session
->s_state
>= CEPH_MDS_SESSION_CLOSING
)
1065 session
->s_state
= CEPH_MDS_SESSION_CLOSING
;
1066 return request_close_session(mdsc
, session
);
1070 * Trim old(er) caps.
1072 * Because we can't cache an inode without one or more caps, we do
1073 * this indirectly: if a cap is unused, we prune its aliases, at which
1074 * point the inode will hopefully get dropped to.
1076 * Yes, this is a bit sloppy. Our only real goal here is to respond to
1077 * memory pressure from the MDS, though, so it needn't be perfect.
1079 static int trim_caps_cb(struct inode
*inode
, struct ceph_cap
*cap
, void *arg
)
1081 struct ceph_mds_session
*session
= arg
;
1082 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1083 int used
, oissued
, mine
;
1085 if (session
->s_trim_caps
<= 0)
1088 spin_lock(&inode
->i_lock
);
1089 mine
= cap
->issued
| cap
->implemented
;
1090 used
= __ceph_caps_used(ci
);
1091 oissued
= __ceph_caps_issued_other(ci
, cap
);
1093 dout("trim_caps_cb %p cap %p mine %s oissued %s used %s\n",
1094 inode
, cap
, ceph_cap_string(mine
), ceph_cap_string(oissued
),
1095 ceph_cap_string(used
));
1096 if (ci
->i_dirty_caps
)
1097 goto out
; /* dirty caps */
1098 if ((used
& ~oissued
) & mine
)
1099 goto out
; /* we need these caps */
1101 session
->s_trim_caps
--;
1103 /* we aren't the only cap.. just remove us */
1104 __ceph_remove_cap(cap
);
1106 /* try to drop referring dentries */
1107 spin_unlock(&inode
->i_lock
);
1108 d_prune_aliases(inode
);
1109 dout("trim_caps_cb %p cap %p pruned, count now %d\n",
1110 inode
, cap
, atomic_read(&inode
->i_count
));
1115 spin_unlock(&inode
->i_lock
);
1120 * Trim session cap count down to some max number.
1122 static int trim_caps(struct ceph_mds_client
*mdsc
,
1123 struct ceph_mds_session
*session
,
1126 int trim_caps
= session
->s_nr_caps
- max_caps
;
1128 dout("trim_caps mds%d start: %d / %d, trim %d\n",
1129 session
->s_mds
, session
->s_nr_caps
, max_caps
, trim_caps
);
1130 if (trim_caps
> 0) {
1131 session
->s_trim_caps
= trim_caps
;
1132 iterate_session_caps(session
, trim_caps_cb
, session
);
1133 dout("trim_caps mds%d done: %d / %d, trimmed %d\n",
1134 session
->s_mds
, session
->s_nr_caps
, max_caps
,
1135 trim_caps
- session
->s_trim_caps
);
1136 session
->s_trim_caps
= 0;
1142 * Allocate cap_release messages. If there is a partially full message
1143 * in the queue, try to allocate enough to cover it's remainder, so that
1144 * we can send it immediately.
1146 * Called under s_mutex.
1148 int ceph_add_cap_releases(struct ceph_mds_client
*mdsc
,
1149 struct ceph_mds_session
*session
)
1151 struct ceph_msg
*msg
, *partial
= NULL
;
1152 struct ceph_mds_cap_release
*head
;
1154 int extra
= mdsc
->fsc
->mount_options
->cap_release_safety
;
1157 dout("add_cap_releases %p mds%d extra %d\n", session
, session
->s_mds
,
1160 spin_lock(&session
->s_cap_lock
);
1162 if (!list_empty(&session
->s_cap_releases
)) {
1163 msg
= list_first_entry(&session
->s_cap_releases
,
1166 head
= msg
->front
.iov_base
;
1167 num
= le32_to_cpu(head
->num
);
1169 dout(" partial %p with (%d/%d)\n", msg
, num
,
1170 (int)CEPH_CAPS_PER_RELEASE
);
1171 extra
+= CEPH_CAPS_PER_RELEASE
- num
;
1175 while (session
->s_num_cap_releases
< session
->s_nr_caps
+ extra
) {
1176 spin_unlock(&session
->s_cap_lock
);
1177 msg
= ceph_msg_new(CEPH_MSG_CLIENT_CAPRELEASE
, PAGE_CACHE_SIZE
,
1181 dout("add_cap_releases %p msg %p now %d\n", session
, msg
,
1182 (int)msg
->front
.iov_len
);
1183 head
= msg
->front
.iov_base
;
1184 head
->num
= cpu_to_le32(0);
1185 msg
->front
.iov_len
= sizeof(*head
);
1186 spin_lock(&session
->s_cap_lock
);
1187 list_add(&msg
->list_head
, &session
->s_cap_releases
);
1188 session
->s_num_cap_releases
+= CEPH_CAPS_PER_RELEASE
;
1192 head
= partial
->front
.iov_base
;
1193 num
= le32_to_cpu(head
->num
);
1194 dout(" queueing partial %p with %d/%d\n", partial
, num
,
1195 (int)CEPH_CAPS_PER_RELEASE
);
1196 list_move_tail(&partial
->list_head
,
1197 &session
->s_cap_releases_done
);
1198 session
->s_num_cap_releases
-= CEPH_CAPS_PER_RELEASE
- num
;
1201 spin_unlock(&session
->s_cap_lock
);
1207 * flush all dirty inode data to disk.
1209 * returns true if we've flushed through want_flush_seq
1211 static int check_cap_flush(struct ceph_mds_client
*mdsc
, u64 want_flush_seq
)
1215 dout("check_cap_flush want %lld\n", want_flush_seq
);
1216 mutex_lock(&mdsc
->mutex
);
1217 for (mds
= 0; ret
&& mds
< mdsc
->max_sessions
; mds
++) {
1218 struct ceph_mds_session
*session
= mdsc
->sessions
[mds
];
1222 get_session(session
);
1223 mutex_unlock(&mdsc
->mutex
);
1225 mutex_lock(&session
->s_mutex
);
1226 if (!list_empty(&session
->s_cap_flushing
)) {
1227 struct ceph_inode_info
*ci
=
1228 list_entry(session
->s_cap_flushing
.next
,
1229 struct ceph_inode_info
,
1231 struct inode
*inode
= &ci
->vfs_inode
;
1233 spin_lock(&inode
->i_lock
);
1234 if (ci
->i_cap_flush_seq
<= want_flush_seq
) {
1235 dout("check_cap_flush still flushing %p "
1236 "seq %lld <= %lld to mds%d\n", inode
,
1237 ci
->i_cap_flush_seq
, want_flush_seq
,
1241 spin_unlock(&inode
->i_lock
);
1243 mutex_unlock(&session
->s_mutex
);
1244 ceph_put_mds_session(session
);
1248 mutex_lock(&mdsc
->mutex
);
1251 mutex_unlock(&mdsc
->mutex
);
1252 dout("check_cap_flush ok, flushed thru %lld\n", want_flush_seq
);
1257 * called under s_mutex
1259 void ceph_send_cap_releases(struct ceph_mds_client
*mdsc
,
1260 struct ceph_mds_session
*session
)
1262 struct ceph_msg
*msg
;
1264 dout("send_cap_releases mds%d\n", session
->s_mds
);
1265 spin_lock(&session
->s_cap_lock
);
1266 while (!list_empty(&session
->s_cap_releases_done
)) {
1267 msg
= list_first_entry(&session
->s_cap_releases_done
,
1268 struct ceph_msg
, list_head
);
1269 list_del_init(&msg
->list_head
);
1270 spin_unlock(&session
->s_cap_lock
);
1271 msg
->hdr
.front_len
= cpu_to_le32(msg
->front
.iov_len
);
1272 dout("send_cap_releases mds%d %p\n", session
->s_mds
, msg
);
1273 ceph_con_send(&session
->s_con
, msg
);
1274 spin_lock(&session
->s_cap_lock
);
1276 spin_unlock(&session
->s_cap_lock
);
1279 static void discard_cap_releases(struct ceph_mds_client
*mdsc
,
1280 struct ceph_mds_session
*session
)
1282 struct ceph_msg
*msg
;
1283 struct ceph_mds_cap_release
*head
;
1286 dout("discard_cap_releases mds%d\n", session
->s_mds
);
1287 spin_lock(&session
->s_cap_lock
);
1289 /* zero out the in-progress message */
1290 msg
= list_first_entry(&session
->s_cap_releases
,
1291 struct ceph_msg
, list_head
);
1292 head
= msg
->front
.iov_base
;
1293 num
= le32_to_cpu(head
->num
);
1294 dout("discard_cap_releases mds%d %p %u\n", session
->s_mds
, msg
, num
);
1295 head
->num
= cpu_to_le32(0);
1296 session
->s_num_cap_releases
+= num
;
1298 /* requeue completed messages */
1299 while (!list_empty(&session
->s_cap_releases_done
)) {
1300 msg
= list_first_entry(&session
->s_cap_releases_done
,
1301 struct ceph_msg
, list_head
);
1302 list_del_init(&msg
->list_head
);
1304 head
= msg
->front
.iov_base
;
1305 num
= le32_to_cpu(head
->num
);
1306 dout("discard_cap_releases mds%d %p %u\n", session
->s_mds
, msg
,
1308 session
->s_num_cap_releases
+= num
;
1309 head
->num
= cpu_to_le32(0);
1310 msg
->front
.iov_len
= sizeof(*head
);
1311 list_add(&msg
->list_head
, &session
->s_cap_releases
);
1314 spin_unlock(&session
->s_cap_lock
);
1322 * Create an mds request.
1324 struct ceph_mds_request
*
1325 ceph_mdsc_create_request(struct ceph_mds_client
*mdsc
, int op
, int mode
)
1327 struct ceph_mds_request
*req
= kzalloc(sizeof(*req
), GFP_NOFS
);
1330 return ERR_PTR(-ENOMEM
);
1332 mutex_init(&req
->r_fill_mutex
);
1334 req
->r_started
= jiffies
;
1335 req
->r_resend_mds
= -1;
1336 INIT_LIST_HEAD(&req
->r_unsafe_dir_item
);
1338 kref_init(&req
->r_kref
);
1339 INIT_LIST_HEAD(&req
->r_wait
);
1340 init_completion(&req
->r_completion
);
1341 init_completion(&req
->r_safe_completion
);
1342 INIT_LIST_HEAD(&req
->r_unsafe_item
);
1345 req
->r_direct_mode
= mode
;
1350 * return oldest (lowest) request, tid in request tree, 0 if none.
1352 * called under mdsc->mutex.
1354 static struct ceph_mds_request
*__get_oldest_req(struct ceph_mds_client
*mdsc
)
1356 if (RB_EMPTY_ROOT(&mdsc
->request_tree
))
1358 return rb_entry(rb_first(&mdsc
->request_tree
),
1359 struct ceph_mds_request
, r_node
);
1362 static u64
__get_oldest_tid(struct ceph_mds_client
*mdsc
)
1364 struct ceph_mds_request
*req
= __get_oldest_req(mdsc
);
1372 * Build a dentry's path. Allocate on heap; caller must kfree. Based
1373 * on build_path_from_dentry in fs/cifs/dir.c.
1375 * If @stop_on_nosnap, generate path relative to the first non-snapped
1378 * Encode hidden .snap dirs as a double /, i.e.
1379 * foo/.snap/bar -> foo//bar
1381 char *ceph_mdsc_build_path(struct dentry
*dentry
, int *plen
, u64
*base
,
1384 struct dentry
*temp
;
1389 return ERR_PTR(-EINVAL
);
1393 for (temp
= dentry
; !IS_ROOT(temp
);) {
1394 struct inode
*inode
= temp
->d_inode
;
1395 if (inode
&& ceph_snap(inode
) == CEPH_SNAPDIR
)
1396 len
++; /* slash only */
1397 else if (stop_on_nosnap
&& inode
&&
1398 ceph_snap(inode
) == CEPH_NOSNAP
)
1401 len
+= 1 + temp
->d_name
.len
;
1402 temp
= temp
->d_parent
;
1404 pr_err("build_path corrupt dentry %p\n", dentry
);
1405 return ERR_PTR(-EINVAL
);
1409 len
--; /* no leading '/' */
1411 path
= kmalloc(len
+1, GFP_NOFS
);
1413 return ERR_PTR(-ENOMEM
);
1415 path
[pos
] = 0; /* trailing null */
1416 for (temp
= dentry
; !IS_ROOT(temp
) && pos
!= 0; ) {
1417 struct inode
*inode
= temp
->d_inode
;
1419 if (inode
&& ceph_snap(inode
) == CEPH_SNAPDIR
) {
1420 dout("build_path path+%d: %p SNAPDIR\n",
1422 } else if (stop_on_nosnap
&& inode
&&
1423 ceph_snap(inode
) == CEPH_NOSNAP
) {
1426 pos
-= temp
->d_name
.len
;
1429 strncpy(path
+ pos
, temp
->d_name
.name
,
1434 temp
= temp
->d_parent
;
1436 pr_err("build_path corrupt dentry\n");
1438 return ERR_PTR(-EINVAL
);
1442 pr_err("build_path did not end path lookup where "
1443 "expected, namelen is %d, pos is %d\n", len
, pos
);
1444 /* presumably this is only possible if racing with a
1445 rename of one of the parent directories (we can not
1446 lock the dentries above us to prevent this, but
1447 retrying should be harmless) */
1452 *base
= ceph_ino(temp
->d_inode
);
1454 dout("build_path on %p %d built %llx '%.*s'\n",
1455 dentry
, atomic_read(&dentry
->d_count
), *base
, len
, path
);
1459 static int build_dentry_path(struct dentry
*dentry
,
1460 const char **ppath
, int *ppathlen
, u64
*pino
,
1465 if (ceph_snap(dentry
->d_parent
->d_inode
) == CEPH_NOSNAP
) {
1466 *pino
= ceph_ino(dentry
->d_parent
->d_inode
);
1467 *ppath
= dentry
->d_name
.name
;
1468 *ppathlen
= dentry
->d_name
.len
;
1471 path
= ceph_mdsc_build_path(dentry
, ppathlen
, pino
, 1);
1473 return PTR_ERR(path
);
1479 static int build_inode_path(struct inode
*inode
,
1480 const char **ppath
, int *ppathlen
, u64
*pino
,
1483 struct dentry
*dentry
;
1486 if (ceph_snap(inode
) == CEPH_NOSNAP
) {
1487 *pino
= ceph_ino(inode
);
1491 dentry
= d_find_alias(inode
);
1492 path
= ceph_mdsc_build_path(dentry
, ppathlen
, pino
, 1);
1495 return PTR_ERR(path
);
1502 * request arguments may be specified via an inode *, a dentry *, or
1503 * an explicit ino+path.
1505 static int set_request_path_attr(struct inode
*rinode
, struct dentry
*rdentry
,
1506 const char *rpath
, u64 rino
,
1507 const char **ppath
, int *pathlen
,
1508 u64
*ino
, int *freepath
)
1513 r
= build_inode_path(rinode
, ppath
, pathlen
, ino
, freepath
);
1514 dout(" inode %p %llx.%llx\n", rinode
, ceph_ino(rinode
),
1516 } else if (rdentry
) {
1517 r
= build_dentry_path(rdentry
, ppath
, pathlen
, ino
, freepath
);
1518 dout(" dentry %p %llx/%.*s\n", rdentry
, *ino
, *pathlen
,
1523 *pathlen
= strlen(rpath
);
1524 dout(" path %.*s\n", *pathlen
, rpath
);
1531 * called under mdsc->mutex
1533 static struct ceph_msg
*create_request_message(struct ceph_mds_client
*mdsc
,
1534 struct ceph_mds_request
*req
,
1537 struct ceph_msg
*msg
;
1538 struct ceph_mds_request_head
*head
;
1539 const char *path1
= NULL
;
1540 const char *path2
= NULL
;
1541 u64 ino1
= 0, ino2
= 0;
1542 int pathlen1
= 0, pathlen2
= 0;
1543 int freepath1
= 0, freepath2
= 0;
1549 ret
= set_request_path_attr(req
->r_inode
, req
->r_dentry
,
1550 req
->r_path1
, req
->r_ino1
.ino
,
1551 &path1
, &pathlen1
, &ino1
, &freepath1
);
1557 ret
= set_request_path_attr(NULL
, req
->r_old_dentry
,
1558 req
->r_path2
, req
->r_ino2
.ino
,
1559 &path2
, &pathlen2
, &ino2
, &freepath2
);
1565 len
= sizeof(*head
) +
1566 pathlen1
+ pathlen2
+ 2*(1 + sizeof(u32
) + sizeof(u64
));
1568 /* calculate (max) length for cap releases */
1569 len
+= sizeof(struct ceph_mds_request_release
) *
1570 (!!req
->r_inode_drop
+ !!req
->r_dentry_drop
+
1571 !!req
->r_old_inode_drop
+ !!req
->r_old_dentry_drop
);
1572 if (req
->r_dentry_drop
)
1573 len
+= req
->r_dentry
->d_name
.len
;
1574 if (req
->r_old_dentry_drop
)
1575 len
+= req
->r_old_dentry
->d_name
.len
;
1577 msg
= ceph_msg_new(CEPH_MSG_CLIENT_REQUEST
, len
, GFP_NOFS
);
1579 msg
= ERR_PTR(-ENOMEM
);
1583 msg
->hdr
.tid
= cpu_to_le64(req
->r_tid
);
1585 head
= msg
->front
.iov_base
;
1586 p
= msg
->front
.iov_base
+ sizeof(*head
);
1587 end
= msg
->front
.iov_base
+ msg
->front
.iov_len
;
1589 head
->mdsmap_epoch
= cpu_to_le32(mdsc
->mdsmap
->m_epoch
);
1590 head
->op
= cpu_to_le32(req
->r_op
);
1591 head
->caller_uid
= cpu_to_le32(current_fsuid());
1592 head
->caller_gid
= cpu_to_le32(current_fsgid());
1593 head
->args
= req
->r_args
;
1595 ceph_encode_filepath(&p
, end
, ino1
, path1
);
1596 ceph_encode_filepath(&p
, end
, ino2
, path2
);
1598 /* make note of release offset, in case we need to replay */
1599 req
->r_request_release_offset
= p
- msg
->front
.iov_base
;
1603 if (req
->r_inode_drop
)
1604 releases
+= ceph_encode_inode_release(&p
,
1605 req
->r_inode
? req
->r_inode
: req
->r_dentry
->d_inode
,
1606 mds
, req
->r_inode_drop
, req
->r_inode_unless
, 0);
1607 if (req
->r_dentry_drop
)
1608 releases
+= ceph_encode_dentry_release(&p
, req
->r_dentry
,
1609 mds
, req
->r_dentry_drop
, req
->r_dentry_unless
);
1610 if (req
->r_old_dentry_drop
)
1611 releases
+= ceph_encode_dentry_release(&p
, req
->r_old_dentry
,
1612 mds
, req
->r_old_dentry_drop
, req
->r_old_dentry_unless
);
1613 if (req
->r_old_inode_drop
)
1614 releases
+= ceph_encode_inode_release(&p
,
1615 req
->r_old_dentry
->d_inode
,
1616 mds
, req
->r_old_inode_drop
, req
->r_old_inode_unless
, 0);
1617 head
->num_releases
= cpu_to_le16(releases
);
1620 msg
->front
.iov_len
= p
- msg
->front
.iov_base
;
1621 msg
->hdr
.front_len
= cpu_to_le32(msg
->front
.iov_len
);
1623 msg
->pages
= req
->r_pages
;
1624 msg
->nr_pages
= req
->r_num_pages
;
1625 msg
->hdr
.data_len
= cpu_to_le32(req
->r_data_len
);
1626 msg
->hdr
.data_off
= cpu_to_le16(0);
1630 kfree((char *)path2
);
1633 kfree((char *)path1
);
1639 * called under mdsc->mutex if error, under no mutex if
1642 static void complete_request(struct ceph_mds_client
*mdsc
,
1643 struct ceph_mds_request
*req
)
1645 if (req
->r_callback
)
1646 req
->r_callback(mdsc
, req
);
1648 complete_all(&req
->r_completion
);
1652 * called under mdsc->mutex
1654 static int __prepare_send_request(struct ceph_mds_client
*mdsc
,
1655 struct ceph_mds_request
*req
,
1658 struct ceph_mds_request_head
*rhead
;
1659 struct ceph_msg
*msg
;
1665 struct ceph_cap
*cap
=
1666 ceph_get_cap_for_mds(ceph_inode(req
->r_inode
), mds
);
1669 req
->r_sent_on_mseq
= cap
->mseq
;
1671 req
->r_sent_on_mseq
= -1;
1673 dout("prepare_send_request %p tid %lld %s (attempt %d)\n", req
,
1674 req
->r_tid
, ceph_mds_op_name(req
->r_op
), req
->r_attempts
);
1676 if (req
->r_got_unsafe
) {
1678 * Replay. Do not regenerate message (and rebuild
1679 * paths, etc.); just use the original message.
1680 * Rebuilding paths will break for renames because
1681 * d_move mangles the src name.
1683 msg
= req
->r_request
;
1684 rhead
= msg
->front
.iov_base
;
1686 flags
= le32_to_cpu(rhead
->flags
);
1687 flags
|= CEPH_MDS_FLAG_REPLAY
;
1688 rhead
->flags
= cpu_to_le32(flags
);
1690 if (req
->r_target_inode
)
1691 rhead
->ino
= cpu_to_le64(ceph_ino(req
->r_target_inode
));
1693 rhead
->num_retry
= req
->r_attempts
- 1;
1695 /* remove cap/dentry releases from message */
1696 rhead
->num_releases
= 0;
1697 msg
->hdr
.front_len
= cpu_to_le32(req
->r_request_release_offset
);
1698 msg
->front
.iov_len
= req
->r_request_release_offset
;
1702 if (req
->r_request
) {
1703 ceph_msg_put(req
->r_request
);
1704 req
->r_request
= NULL
;
1706 msg
= create_request_message(mdsc
, req
, mds
);
1708 req
->r_err
= PTR_ERR(msg
);
1709 complete_request(mdsc
, req
);
1710 return PTR_ERR(msg
);
1712 req
->r_request
= msg
;
1714 rhead
= msg
->front
.iov_base
;
1715 rhead
->oldest_client_tid
= cpu_to_le64(__get_oldest_tid(mdsc
));
1716 if (req
->r_got_unsafe
)
1717 flags
|= CEPH_MDS_FLAG_REPLAY
;
1718 if (req
->r_locked_dir
)
1719 flags
|= CEPH_MDS_FLAG_WANT_DENTRY
;
1720 rhead
->flags
= cpu_to_le32(flags
);
1721 rhead
->num_fwd
= req
->r_num_fwd
;
1722 rhead
->num_retry
= req
->r_attempts
- 1;
1725 dout(" r_locked_dir = %p\n", req
->r_locked_dir
);
1730 * send request, or put it on the appropriate wait list.
1732 static int __do_request(struct ceph_mds_client
*mdsc
,
1733 struct ceph_mds_request
*req
)
1735 struct ceph_mds_session
*session
= NULL
;
1739 if (req
->r_err
|| req
->r_got_result
)
1742 if (req
->r_timeout
&&
1743 time_after_eq(jiffies
, req
->r_started
+ req
->r_timeout
)) {
1744 dout("do_request timed out\n");
1749 mds
= __choose_mds(mdsc
, req
);
1751 ceph_mdsmap_get_state(mdsc
->mdsmap
, mds
) < CEPH_MDS_STATE_ACTIVE
) {
1752 dout("do_request no mds or not active, waiting for map\n");
1753 list_add(&req
->r_wait
, &mdsc
->waiting_for_map
);
1757 /* get, open session */
1758 session
= __ceph_lookup_mds_session(mdsc
, mds
);
1760 session
= register_session(mdsc
, mds
);
1761 if (IS_ERR(session
)) {
1762 err
= PTR_ERR(session
);
1766 dout("do_request mds%d session %p state %s\n", mds
, session
,
1767 session_state_name(session
->s_state
));
1768 if (session
->s_state
!= CEPH_MDS_SESSION_OPEN
&&
1769 session
->s_state
!= CEPH_MDS_SESSION_HUNG
) {
1770 if (session
->s_state
== CEPH_MDS_SESSION_NEW
||
1771 session
->s_state
== CEPH_MDS_SESSION_CLOSING
)
1772 __open_session(mdsc
, session
);
1773 list_add(&req
->r_wait
, &session
->s_waiting
);
1778 req
->r_session
= get_session(session
);
1779 req
->r_resend_mds
= -1; /* forget any previous mds hint */
1781 if (req
->r_request_started
== 0) /* note request start time */
1782 req
->r_request_started
= jiffies
;
1784 err
= __prepare_send_request(mdsc
, req
, mds
);
1786 ceph_msg_get(req
->r_request
);
1787 ceph_con_send(&session
->s_con
, req
->r_request
);
1791 ceph_put_mds_session(session
);
1797 complete_request(mdsc
, req
);
1802 * called under mdsc->mutex
1804 static void __wake_requests(struct ceph_mds_client
*mdsc
,
1805 struct list_head
*head
)
1807 struct ceph_mds_request
*req
, *nreq
;
1809 list_for_each_entry_safe(req
, nreq
, head
, r_wait
) {
1810 list_del_init(&req
->r_wait
);
1811 __do_request(mdsc
, req
);
1816 * Wake up threads with requests pending for @mds, so that they can
1817 * resubmit their requests to a possibly different mds.
1819 static void kick_requests(struct ceph_mds_client
*mdsc
, int mds
)
1821 struct ceph_mds_request
*req
;
1824 dout("kick_requests mds%d\n", mds
);
1825 for (p
= rb_first(&mdsc
->request_tree
); p
; p
= rb_next(p
)) {
1826 req
= rb_entry(p
, struct ceph_mds_request
, r_node
);
1827 if (req
->r_got_unsafe
)
1829 if (req
->r_session
&&
1830 req
->r_session
->s_mds
== mds
) {
1831 dout(" kicking tid %llu\n", req
->r_tid
);
1832 put_request_session(req
);
1833 __do_request(mdsc
, req
);
1838 void ceph_mdsc_submit_request(struct ceph_mds_client
*mdsc
,
1839 struct ceph_mds_request
*req
)
1841 dout("submit_request on %p\n", req
);
1842 mutex_lock(&mdsc
->mutex
);
1843 __register_request(mdsc
, req
, NULL
);
1844 __do_request(mdsc
, req
);
1845 mutex_unlock(&mdsc
->mutex
);
1849 * Synchrously perform an mds request. Take care of all of the
1850 * session setup, forwarding, retry details.
1852 int ceph_mdsc_do_request(struct ceph_mds_client
*mdsc
,
1854 struct ceph_mds_request
*req
)
1858 dout("do_request on %p\n", req
);
1860 /* take CAP_PIN refs for r_inode, r_locked_dir, r_old_dentry */
1862 ceph_get_cap_refs(ceph_inode(req
->r_inode
), CEPH_CAP_PIN
);
1863 if (req
->r_locked_dir
)
1864 ceph_get_cap_refs(ceph_inode(req
->r_locked_dir
), CEPH_CAP_PIN
);
1865 if (req
->r_old_dentry
)
1867 ceph_inode(req
->r_old_dentry
->d_parent
->d_inode
),
1871 mutex_lock(&mdsc
->mutex
);
1872 __register_request(mdsc
, req
, dir
);
1873 __do_request(mdsc
, req
);
1877 __unregister_request(mdsc
, req
);
1878 dout("do_request early error %d\n", err
);
1883 mutex_unlock(&mdsc
->mutex
);
1884 dout("do_request waiting\n");
1885 if (req
->r_timeout
) {
1886 err
= (long)wait_for_completion_killable_timeout(
1887 &req
->r_completion
, req
->r_timeout
);
1891 err
= wait_for_completion_killable(&req
->r_completion
);
1893 dout("do_request waited, got %d\n", err
);
1894 mutex_lock(&mdsc
->mutex
);
1896 /* only abort if we didn't race with a real reply */
1897 if (req
->r_got_result
) {
1898 err
= le32_to_cpu(req
->r_reply_info
.head
->result
);
1899 } else if (err
< 0) {
1900 dout("aborted request %lld with %d\n", req
->r_tid
, err
);
1903 * ensure we aren't running concurrently with
1904 * ceph_fill_trace or ceph_readdir_prepopulate, which
1905 * rely on locks (dir mutex) held by our caller.
1907 mutex_lock(&req
->r_fill_mutex
);
1909 req
->r_aborted
= true;
1910 mutex_unlock(&req
->r_fill_mutex
);
1912 if (req
->r_locked_dir
&&
1913 (req
->r_op
& CEPH_MDS_OP_WRITE
))
1914 ceph_invalidate_dir_request(req
);
1920 mutex_unlock(&mdsc
->mutex
);
1921 dout("do_request %p done, result %d\n", req
, err
);
1926 * Invalidate dir I_COMPLETE, dentry lease state on an aborted MDS
1927 * namespace request.
1929 void ceph_invalidate_dir_request(struct ceph_mds_request
*req
)
1931 struct inode
*inode
= req
->r_locked_dir
;
1932 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1934 dout("invalidate_dir_request %p (I_COMPLETE, lease(s))\n", inode
);
1935 spin_lock(&inode
->i_lock
);
1936 ci
->i_ceph_flags
&= ~CEPH_I_COMPLETE
;
1937 ci
->i_release_count
++;
1938 spin_unlock(&inode
->i_lock
);
1941 ceph_invalidate_dentry_lease(req
->r_dentry
);
1942 if (req
->r_old_dentry
)
1943 ceph_invalidate_dentry_lease(req
->r_old_dentry
);
1949 * We take the session mutex and parse and process the reply immediately.
1950 * This preserves the logical ordering of replies, capabilities, etc., sent
1951 * by the MDS as they are applied to our local cache.
1953 static void handle_reply(struct ceph_mds_session
*session
, struct ceph_msg
*msg
)
1955 struct ceph_mds_client
*mdsc
= session
->s_mdsc
;
1956 struct ceph_mds_request
*req
;
1957 struct ceph_mds_reply_head
*head
= msg
->front
.iov_base
;
1958 struct ceph_mds_reply_info_parsed
*rinfo
; /* parsed reply info */
1961 int mds
= session
->s_mds
;
1963 if (msg
->front
.iov_len
< sizeof(*head
)) {
1964 pr_err("mdsc_handle_reply got corrupt (short) reply\n");
1969 /* get request, session */
1970 tid
= le64_to_cpu(msg
->hdr
.tid
);
1971 mutex_lock(&mdsc
->mutex
);
1972 req
= __lookup_request(mdsc
, tid
);
1974 dout("handle_reply on unknown tid %llu\n", tid
);
1975 mutex_unlock(&mdsc
->mutex
);
1978 dout("handle_reply %p\n", req
);
1980 /* correct session? */
1981 if (req
->r_session
!= session
) {
1982 pr_err("mdsc_handle_reply got %llu on session mds%d"
1983 " not mds%d\n", tid
, session
->s_mds
,
1984 req
->r_session
? req
->r_session
->s_mds
: -1);
1985 mutex_unlock(&mdsc
->mutex
);
1990 if ((req
->r_got_unsafe
&& !head
->safe
) ||
1991 (req
->r_got_safe
&& head
->safe
)) {
1992 pr_warning("got a dup %s reply on %llu from mds%d\n",
1993 head
->safe
? "safe" : "unsafe", tid
, mds
);
1994 mutex_unlock(&mdsc
->mutex
);
1997 if (req
->r_got_safe
&& !head
->safe
) {
1998 pr_warning("got unsafe after safe on %llu from mds%d\n",
2000 mutex_unlock(&mdsc
->mutex
);
2004 result
= le32_to_cpu(head
->result
);
2008 * if we're not talking to the authority, send to them
2009 * if the authority has changed while we weren't looking,
2010 * send to new authority
2011 * Otherwise we just have to return an ESTALE
2013 if (result
== -ESTALE
) {
2014 dout("got ESTALE on request %llu", req
->r_tid
);
2015 if (!req
->r_inode
) {
2016 /* do nothing; not an authority problem */
2017 } else if (req
->r_direct_mode
!= USE_AUTH_MDS
) {
2018 dout("not using auth, setting for that now");
2019 req
->r_direct_mode
= USE_AUTH_MDS
;
2020 __do_request(mdsc
, req
);
2021 mutex_unlock(&mdsc
->mutex
);
2024 struct ceph_inode_info
*ci
= ceph_inode(req
->r_inode
);
2025 struct ceph_cap
*cap
=
2026 ceph_get_cap_for_mds(ci
, req
->r_mds
);;
2028 dout("already using auth");
2029 if ((!cap
|| cap
!= ci
->i_auth_cap
) ||
2030 (cap
->mseq
!= req
->r_sent_on_mseq
)) {
2031 dout("but cap changed, so resending");
2032 __do_request(mdsc
, req
);
2033 mutex_unlock(&mdsc
->mutex
);
2037 dout("have to return ESTALE on request %llu", req
->r_tid
);
2042 req
->r_got_safe
= true;
2043 __unregister_request(mdsc
, req
);
2044 complete_all(&req
->r_safe_completion
);
2046 if (req
->r_got_unsafe
) {
2048 * We already handled the unsafe response, now do the
2049 * cleanup. No need to examine the response; the MDS
2050 * doesn't include any result info in the safe
2051 * response. And even if it did, there is nothing
2052 * useful we could do with a revised return value.
2054 dout("got safe reply %llu, mds%d\n", tid
, mds
);
2055 list_del_init(&req
->r_unsafe_item
);
2057 /* last unsafe request during umount? */
2058 if (mdsc
->stopping
&& !__get_oldest_req(mdsc
))
2059 complete_all(&mdsc
->safe_umount_waiters
);
2060 mutex_unlock(&mdsc
->mutex
);
2064 req
->r_got_unsafe
= true;
2065 list_add_tail(&req
->r_unsafe_item
, &req
->r_session
->s_unsafe
);
2068 dout("handle_reply tid %lld result %d\n", tid
, result
);
2069 rinfo
= &req
->r_reply_info
;
2070 err
= parse_reply_info(msg
, rinfo
);
2071 mutex_unlock(&mdsc
->mutex
);
2073 mutex_lock(&session
->s_mutex
);
2075 pr_err("mdsc_handle_reply got corrupt reply mds%d\n", mds
);
2081 if (rinfo
->snapblob_len
) {
2082 down_write(&mdsc
->snap_rwsem
);
2083 ceph_update_snap_trace(mdsc
, rinfo
->snapblob
,
2084 rinfo
->snapblob
+ rinfo
->snapblob_len
,
2085 le32_to_cpu(head
->op
) == CEPH_MDS_OP_RMSNAP
);
2086 downgrade_write(&mdsc
->snap_rwsem
);
2088 down_read(&mdsc
->snap_rwsem
);
2091 /* insert trace into our cache */
2092 mutex_lock(&req
->r_fill_mutex
);
2093 err
= ceph_fill_trace(mdsc
->fsc
->sb
, req
, req
->r_session
);
2095 if (result
== 0 && rinfo
->dir_nr
)
2096 ceph_readdir_prepopulate(req
, req
->r_session
);
2097 ceph_unreserve_caps(mdsc
, &req
->r_caps_reservation
);
2099 mutex_unlock(&req
->r_fill_mutex
);
2101 up_read(&mdsc
->snap_rwsem
);
2103 mutex_lock(&mdsc
->mutex
);
2104 if (!req
->r_aborted
) {
2110 req
->r_got_result
= true;
2113 dout("reply arrived after request %lld was aborted\n", tid
);
2115 mutex_unlock(&mdsc
->mutex
);
2117 ceph_add_cap_releases(mdsc
, req
->r_session
);
2118 mutex_unlock(&session
->s_mutex
);
2120 /* kick calling process */
2121 complete_request(mdsc
, req
);
2123 ceph_mdsc_put_request(req
);
2130 * handle mds notification that our request has been forwarded.
2132 static void handle_forward(struct ceph_mds_client
*mdsc
,
2133 struct ceph_mds_session
*session
,
2134 struct ceph_msg
*msg
)
2136 struct ceph_mds_request
*req
;
2137 u64 tid
= le64_to_cpu(msg
->hdr
.tid
);
2141 void *p
= msg
->front
.iov_base
;
2142 void *end
= p
+ msg
->front
.iov_len
;
2144 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
2145 next_mds
= ceph_decode_32(&p
);
2146 fwd_seq
= ceph_decode_32(&p
);
2148 mutex_lock(&mdsc
->mutex
);
2149 req
= __lookup_request(mdsc
, tid
);
2151 dout("forward tid %llu to mds%d - req dne\n", tid
, next_mds
);
2152 goto out
; /* dup reply? */
2155 if (req
->r_aborted
) {
2156 dout("forward tid %llu aborted, unregistering\n", tid
);
2157 __unregister_request(mdsc
, req
);
2158 } else if (fwd_seq
<= req
->r_num_fwd
) {
2159 dout("forward tid %llu to mds%d - old seq %d <= %d\n",
2160 tid
, next_mds
, req
->r_num_fwd
, fwd_seq
);
2162 /* resend. forward race not possible; mds would drop */
2163 dout("forward tid %llu to mds%d (we resend)\n", tid
, next_mds
);
2165 BUG_ON(req
->r_got_result
);
2166 req
->r_num_fwd
= fwd_seq
;
2167 req
->r_resend_mds
= next_mds
;
2168 put_request_session(req
);
2169 __do_request(mdsc
, req
);
2171 ceph_mdsc_put_request(req
);
2173 mutex_unlock(&mdsc
->mutex
);
2177 pr_err("mdsc_handle_forward decode error err=%d\n", err
);
2181 * handle a mds session control message
2183 static void handle_session(struct ceph_mds_session
*session
,
2184 struct ceph_msg
*msg
)
2186 struct ceph_mds_client
*mdsc
= session
->s_mdsc
;
2189 int mds
= session
->s_mds
;
2190 struct ceph_mds_session_head
*h
= msg
->front
.iov_base
;
2194 if (msg
->front
.iov_len
!= sizeof(*h
))
2196 op
= le32_to_cpu(h
->op
);
2197 seq
= le64_to_cpu(h
->seq
);
2199 mutex_lock(&mdsc
->mutex
);
2200 if (op
== CEPH_SESSION_CLOSE
)
2201 __unregister_session(mdsc
, session
);
2202 /* FIXME: this ttl calculation is generous */
2203 session
->s_ttl
= jiffies
+ HZ
*mdsc
->mdsmap
->m_session_autoclose
;
2204 mutex_unlock(&mdsc
->mutex
);
2206 mutex_lock(&session
->s_mutex
);
2208 dout("handle_session mds%d %s %p state %s seq %llu\n",
2209 mds
, ceph_session_op_name(op
), session
,
2210 session_state_name(session
->s_state
), seq
);
2212 if (session
->s_state
== CEPH_MDS_SESSION_HUNG
) {
2213 session
->s_state
= CEPH_MDS_SESSION_OPEN
;
2214 pr_info("mds%d came back\n", session
->s_mds
);
2218 case CEPH_SESSION_OPEN
:
2219 if (session
->s_state
== CEPH_MDS_SESSION_RECONNECTING
)
2220 pr_info("mds%d reconnect success\n", session
->s_mds
);
2221 session
->s_state
= CEPH_MDS_SESSION_OPEN
;
2222 renewed_caps(mdsc
, session
, 0);
2225 __close_session(mdsc
, session
);
2228 case CEPH_SESSION_RENEWCAPS
:
2229 if (session
->s_renew_seq
== seq
)
2230 renewed_caps(mdsc
, session
, 1);
2233 case CEPH_SESSION_CLOSE
:
2234 if (session
->s_state
== CEPH_MDS_SESSION_RECONNECTING
)
2235 pr_info("mds%d reconnect denied\n", session
->s_mds
);
2236 remove_session_caps(session
);
2237 wake
= 1; /* for good measure */
2238 wake_up_all(&mdsc
->session_close_wq
);
2239 kick_requests(mdsc
, mds
);
2242 case CEPH_SESSION_STALE
:
2243 pr_info("mds%d caps went stale, renewing\n",
2245 spin_lock(&session
->s_cap_lock
);
2246 session
->s_cap_gen
++;
2247 session
->s_cap_ttl
= 0;
2248 spin_unlock(&session
->s_cap_lock
);
2249 send_renew_caps(mdsc
, session
);
2252 case CEPH_SESSION_RECALL_STATE
:
2253 trim_caps(mdsc
, session
, le32_to_cpu(h
->max_caps
));
2257 pr_err("mdsc_handle_session bad op %d mds%d\n", op
, mds
);
2261 mutex_unlock(&session
->s_mutex
);
2263 mutex_lock(&mdsc
->mutex
);
2264 __wake_requests(mdsc
, &session
->s_waiting
);
2265 mutex_unlock(&mdsc
->mutex
);
2270 pr_err("mdsc_handle_session corrupt message mds%d len %d\n", mds
,
2271 (int)msg
->front
.iov_len
);
2278 * called under session->mutex.
2280 static void replay_unsafe_requests(struct ceph_mds_client
*mdsc
,
2281 struct ceph_mds_session
*session
)
2283 struct ceph_mds_request
*req
, *nreq
;
2286 dout("replay_unsafe_requests mds%d\n", session
->s_mds
);
2288 mutex_lock(&mdsc
->mutex
);
2289 list_for_each_entry_safe(req
, nreq
, &session
->s_unsafe
, r_unsafe_item
) {
2290 err
= __prepare_send_request(mdsc
, req
, session
->s_mds
);
2292 ceph_msg_get(req
->r_request
);
2293 ceph_con_send(&session
->s_con
, req
->r_request
);
2296 mutex_unlock(&mdsc
->mutex
);
2300 * Encode information about a cap for a reconnect with the MDS.
2302 static int encode_caps_cb(struct inode
*inode
, struct ceph_cap
*cap
,
2306 struct ceph_mds_cap_reconnect v2
;
2307 struct ceph_mds_cap_reconnect_v1 v1
;
2310 struct ceph_inode_info
*ci
;
2311 struct ceph_reconnect_state
*recon_state
= arg
;
2312 struct ceph_pagelist
*pagelist
= recon_state
->pagelist
;
2316 struct dentry
*dentry
;
2320 dout(" adding %p ino %llx.%llx cap %p %lld %s\n",
2321 inode
, ceph_vinop(inode
), cap
, cap
->cap_id
,
2322 ceph_cap_string(cap
->issued
));
2323 err
= ceph_pagelist_encode_64(pagelist
, ceph_ino(inode
));
2327 dentry
= d_find_alias(inode
);
2329 path
= ceph_mdsc_build_path(dentry
, &pathlen
, &pathbase
, 0);
2331 err
= PTR_ERR(path
);
2338 err
= ceph_pagelist_encode_string(pagelist
, path
, pathlen
);
2342 spin_lock(&inode
->i_lock
);
2343 cap
->seq
= 0; /* reset cap seq */
2344 cap
->issue_seq
= 0; /* and issue_seq */
2346 if (recon_state
->flock
) {
2347 rec
.v2
.cap_id
= cpu_to_le64(cap
->cap_id
);
2348 rec
.v2
.wanted
= cpu_to_le32(__ceph_caps_wanted(ci
));
2349 rec
.v2
.issued
= cpu_to_le32(cap
->issued
);
2350 rec
.v2
.snaprealm
= cpu_to_le64(ci
->i_snap_realm
->ino
);
2351 rec
.v2
.pathbase
= cpu_to_le64(pathbase
);
2352 rec
.v2
.flock_len
= 0;
2353 reclen
= sizeof(rec
.v2
);
2355 rec
.v1
.cap_id
= cpu_to_le64(cap
->cap_id
);
2356 rec
.v1
.wanted
= cpu_to_le32(__ceph_caps_wanted(ci
));
2357 rec
.v1
.issued
= cpu_to_le32(cap
->issued
);
2358 rec
.v1
.size
= cpu_to_le64(inode
->i_size
);
2359 ceph_encode_timespec(&rec
.v1
.mtime
, &inode
->i_mtime
);
2360 ceph_encode_timespec(&rec
.v1
.atime
, &inode
->i_atime
);
2361 rec
.v1
.snaprealm
= cpu_to_le64(ci
->i_snap_realm
->ino
);
2362 rec
.v1
.pathbase
= cpu_to_le64(pathbase
);
2363 reclen
= sizeof(rec
.v1
);
2365 spin_unlock(&inode
->i_lock
);
2367 if (recon_state
->flock
) {
2368 int num_fcntl_locks
, num_flock_locks
;
2369 struct ceph_pagelist_cursor trunc_point
;
2371 ceph_pagelist_set_cursor(pagelist
, &trunc_point
);
2374 ceph_count_locks(inode
, &num_fcntl_locks
,
2376 rec
.v2
.flock_len
= (2*sizeof(u32
) +
2377 (num_fcntl_locks
+num_flock_locks
) *
2378 sizeof(struct ceph_filelock
));
2381 /* pre-alloc pagelist */
2382 ceph_pagelist_truncate(pagelist
, &trunc_point
);
2383 err
= ceph_pagelist_append(pagelist
, &rec
, reclen
);
2385 err
= ceph_pagelist_reserve(pagelist
,
2391 err
= ceph_encode_locks(inode
,
2397 } while (err
== -ENOSPC
);
2399 err
= ceph_pagelist_append(pagelist
, &rec
, reclen
);
2411 * If an MDS fails and recovers, clients need to reconnect in order to
2412 * reestablish shared state. This includes all caps issued through
2413 * this session _and_ the snap_realm hierarchy. Because it's not
2414 * clear which snap realms the mds cares about, we send everything we
2415 * know about.. that ensures we'll then get any new info the
2416 * recovering MDS might have.
2418 * This is a relatively heavyweight operation, but it's rare.
2420 * called with mdsc->mutex held.
2422 static void send_mds_reconnect(struct ceph_mds_client
*mdsc
,
2423 struct ceph_mds_session
*session
)
2425 struct ceph_msg
*reply
;
2427 int mds
= session
->s_mds
;
2429 struct ceph_pagelist
*pagelist
;
2430 struct ceph_reconnect_state recon_state
;
2432 pr_info("mds%d reconnect start\n", mds
);
2434 pagelist
= kmalloc(sizeof(*pagelist
), GFP_NOFS
);
2436 goto fail_nopagelist
;
2437 ceph_pagelist_init(pagelist
);
2439 reply
= ceph_msg_new(CEPH_MSG_CLIENT_RECONNECT
, 0, GFP_NOFS
);
2443 mutex_lock(&session
->s_mutex
);
2444 session
->s_state
= CEPH_MDS_SESSION_RECONNECTING
;
2447 ceph_con_open(&session
->s_con
,
2448 ceph_mdsmap_get_addr(mdsc
->mdsmap
, mds
));
2450 /* replay unsafe requests */
2451 replay_unsafe_requests(mdsc
, session
);
2453 down_read(&mdsc
->snap_rwsem
);
2455 dout("session %p state %s\n", session
,
2456 session_state_name(session
->s_state
));
2458 /* drop old cap expires; we're about to reestablish that state */
2459 discard_cap_releases(mdsc
, session
);
2461 /* traverse this session's caps */
2462 err
= ceph_pagelist_encode_32(pagelist
, session
->s_nr_caps
);
2466 recon_state
.pagelist
= pagelist
;
2467 recon_state
.flock
= session
->s_con
.peer_features
& CEPH_FEATURE_FLOCK
;
2468 err
= iterate_session_caps(session
, encode_caps_cb
, &recon_state
);
2473 * snaprealms. we provide mds with the ino, seq (version), and
2474 * parent for all of our realms. If the mds has any newer info,
2477 for (p
= rb_first(&mdsc
->snap_realms
); p
; p
= rb_next(p
)) {
2478 struct ceph_snap_realm
*realm
=
2479 rb_entry(p
, struct ceph_snap_realm
, node
);
2480 struct ceph_mds_snaprealm_reconnect sr_rec
;
2482 dout(" adding snap realm %llx seq %lld parent %llx\n",
2483 realm
->ino
, realm
->seq
, realm
->parent_ino
);
2484 sr_rec
.ino
= cpu_to_le64(realm
->ino
);
2485 sr_rec
.seq
= cpu_to_le64(realm
->seq
);
2486 sr_rec
.parent
= cpu_to_le64(realm
->parent_ino
);
2487 err
= ceph_pagelist_append(pagelist
, &sr_rec
, sizeof(sr_rec
));
2492 reply
->pagelist
= pagelist
;
2493 if (recon_state
.flock
)
2494 reply
->hdr
.version
= cpu_to_le16(2);
2495 reply
->hdr
.data_len
= cpu_to_le32(pagelist
->length
);
2496 reply
->nr_pages
= calc_pages_for(0, pagelist
->length
);
2497 ceph_con_send(&session
->s_con
, reply
);
2499 mutex_unlock(&session
->s_mutex
);
2501 mutex_lock(&mdsc
->mutex
);
2502 __wake_requests(mdsc
, &session
->s_waiting
);
2503 mutex_unlock(&mdsc
->mutex
);
2505 up_read(&mdsc
->snap_rwsem
);
2509 ceph_msg_put(reply
);
2510 up_read(&mdsc
->snap_rwsem
);
2511 mutex_unlock(&session
->s_mutex
);
2513 ceph_pagelist_release(pagelist
);
2516 pr_err("error %d preparing reconnect for mds%d\n", err
, mds
);
2522 * compare old and new mdsmaps, kicking requests
2523 * and closing out old connections as necessary
2525 * called under mdsc->mutex.
2527 static void check_new_map(struct ceph_mds_client
*mdsc
,
2528 struct ceph_mdsmap
*newmap
,
2529 struct ceph_mdsmap
*oldmap
)
2532 int oldstate
, newstate
;
2533 struct ceph_mds_session
*s
;
2535 dout("check_new_map new %u old %u\n",
2536 newmap
->m_epoch
, oldmap
->m_epoch
);
2538 for (i
= 0; i
< oldmap
->m_max_mds
&& i
< mdsc
->max_sessions
; i
++) {
2539 if (mdsc
->sessions
[i
] == NULL
)
2541 s
= mdsc
->sessions
[i
];
2542 oldstate
= ceph_mdsmap_get_state(oldmap
, i
);
2543 newstate
= ceph_mdsmap_get_state(newmap
, i
);
2545 dout("check_new_map mds%d state %s%s -> %s%s (session %s)\n",
2546 i
, ceph_mds_state_name(oldstate
),
2547 ceph_mdsmap_is_laggy(oldmap
, i
) ? " (laggy)" : "",
2548 ceph_mds_state_name(newstate
),
2549 ceph_mdsmap_is_laggy(newmap
, i
) ? " (laggy)" : "",
2550 session_state_name(s
->s_state
));
2552 if (memcmp(ceph_mdsmap_get_addr(oldmap
, i
),
2553 ceph_mdsmap_get_addr(newmap
, i
),
2554 sizeof(struct ceph_entity_addr
))) {
2555 if (s
->s_state
== CEPH_MDS_SESSION_OPENING
) {
2556 /* the session never opened, just close it
2558 __wake_requests(mdsc
, &s
->s_waiting
);
2559 __unregister_session(mdsc
, s
);
2562 mutex_unlock(&mdsc
->mutex
);
2563 mutex_lock(&s
->s_mutex
);
2564 mutex_lock(&mdsc
->mutex
);
2565 ceph_con_close(&s
->s_con
);
2566 mutex_unlock(&s
->s_mutex
);
2567 s
->s_state
= CEPH_MDS_SESSION_RESTARTING
;
2570 /* kick any requests waiting on the recovering mds */
2571 kick_requests(mdsc
, i
);
2572 } else if (oldstate
== newstate
) {
2573 continue; /* nothing new with this mds */
2579 if (s
->s_state
== CEPH_MDS_SESSION_RESTARTING
&&
2580 newstate
>= CEPH_MDS_STATE_RECONNECT
) {
2581 mutex_unlock(&mdsc
->mutex
);
2582 send_mds_reconnect(mdsc
, s
);
2583 mutex_lock(&mdsc
->mutex
);
2587 * kick request on any mds that has gone active.
2589 if (oldstate
< CEPH_MDS_STATE_ACTIVE
&&
2590 newstate
>= CEPH_MDS_STATE_ACTIVE
) {
2591 if (oldstate
!= CEPH_MDS_STATE_CREATING
&&
2592 oldstate
!= CEPH_MDS_STATE_STARTING
)
2593 pr_info("mds%d recovery completed\n", s
->s_mds
);
2594 kick_requests(mdsc
, i
);
2595 ceph_kick_flushing_caps(mdsc
, s
);
2596 wake_up_session_caps(s
, 1);
2600 for (i
= 0; i
< newmap
->m_max_mds
&& i
< mdsc
->max_sessions
; i
++) {
2601 s
= mdsc
->sessions
[i
];
2604 if (!ceph_mdsmap_is_laggy(newmap
, i
))
2606 if (s
->s_state
== CEPH_MDS_SESSION_OPEN
||
2607 s
->s_state
== CEPH_MDS_SESSION_HUNG
||
2608 s
->s_state
== CEPH_MDS_SESSION_CLOSING
) {
2609 dout(" connecting to export targets of laggy mds%d\n",
2611 __open_export_target_sessions(mdsc
, s
);
2623 * caller must hold session s_mutex, dentry->d_lock
2625 void __ceph_mdsc_drop_dentry_lease(struct dentry
*dentry
)
2627 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
2629 ceph_put_mds_session(di
->lease_session
);
2630 di
->lease_session
= NULL
;
2633 static void handle_lease(struct ceph_mds_client
*mdsc
,
2634 struct ceph_mds_session
*session
,
2635 struct ceph_msg
*msg
)
2637 struct super_block
*sb
= mdsc
->fsc
->sb
;
2638 struct inode
*inode
;
2639 struct ceph_inode_info
*ci
;
2640 struct dentry
*parent
, *dentry
;
2641 struct ceph_dentry_info
*di
;
2642 int mds
= session
->s_mds
;
2643 struct ceph_mds_lease
*h
= msg
->front
.iov_base
;
2645 struct ceph_vino vino
;
2650 dout("handle_lease from mds%d\n", mds
);
2653 if (msg
->front
.iov_len
< sizeof(*h
) + sizeof(u32
))
2655 vino
.ino
= le64_to_cpu(h
->ino
);
2656 vino
.snap
= CEPH_NOSNAP
;
2657 mask
= le16_to_cpu(h
->mask
);
2658 seq
= le32_to_cpu(h
->seq
);
2659 dname
.name
= (void *)h
+ sizeof(*h
) + sizeof(u32
);
2660 dname
.len
= msg
->front
.iov_len
- sizeof(*h
) - sizeof(u32
);
2661 if (dname
.len
!= get_unaligned_le32(h
+1))
2664 mutex_lock(&session
->s_mutex
);
2668 inode
= ceph_find_inode(sb
, vino
);
2669 dout("handle_lease %s, mask %d, ino %llx %p %.*s\n",
2670 ceph_lease_op_name(h
->action
), mask
, vino
.ino
, inode
,
2671 dname
.len
, dname
.name
);
2672 if (inode
== NULL
) {
2673 dout("handle_lease no inode %llx\n", vino
.ino
);
2676 ci
= ceph_inode(inode
);
2679 parent
= d_find_alias(inode
);
2681 dout("no parent dentry on inode %p\n", inode
);
2683 goto release
; /* hrm... */
2685 dname
.hash
= full_name_hash(dname
.name
, dname
.len
);
2686 dentry
= d_lookup(parent
, &dname
);
2691 spin_lock(&dentry
->d_lock
);
2692 di
= ceph_dentry(dentry
);
2693 switch (h
->action
) {
2694 case CEPH_MDS_LEASE_REVOKE
:
2695 if (di
&& di
->lease_session
== session
) {
2696 if (ceph_seq_cmp(di
->lease_seq
, seq
) > 0)
2697 h
->seq
= cpu_to_le32(di
->lease_seq
);
2698 __ceph_mdsc_drop_dentry_lease(dentry
);
2703 case CEPH_MDS_LEASE_RENEW
:
2704 if (di
&& di
->lease_session
== session
&&
2705 di
->lease_gen
== session
->s_cap_gen
&&
2706 di
->lease_renew_from
&&
2707 di
->lease_renew_after
== 0) {
2708 unsigned long duration
=
2709 le32_to_cpu(h
->duration_ms
) * HZ
/ 1000;
2711 di
->lease_seq
= seq
;
2712 dentry
->d_time
= di
->lease_renew_from
+ duration
;
2713 di
->lease_renew_after
= di
->lease_renew_from
+
2715 di
->lease_renew_from
= 0;
2719 spin_unlock(&dentry
->d_lock
);
2726 /* let's just reuse the same message */
2727 h
->action
= CEPH_MDS_LEASE_REVOKE_ACK
;
2729 ceph_con_send(&session
->s_con
, msg
);
2733 mutex_unlock(&session
->s_mutex
);
2737 pr_err("corrupt lease message\n");
2741 void ceph_mdsc_lease_send_msg(struct ceph_mds_session
*session
,
2742 struct inode
*inode
,
2743 struct dentry
*dentry
, char action
,
2746 struct ceph_msg
*msg
;
2747 struct ceph_mds_lease
*lease
;
2748 int len
= sizeof(*lease
) + sizeof(u32
);
2751 dout("lease_send_msg inode %p dentry %p %s to mds%d\n",
2752 inode
, dentry
, ceph_lease_op_name(action
), session
->s_mds
);
2753 dnamelen
= dentry
->d_name
.len
;
2756 msg
= ceph_msg_new(CEPH_MSG_CLIENT_LEASE
, len
, GFP_NOFS
);
2759 lease
= msg
->front
.iov_base
;
2760 lease
->action
= action
;
2761 lease
->mask
= cpu_to_le16(1);
2762 lease
->ino
= cpu_to_le64(ceph_vino(inode
).ino
);
2763 lease
->first
= lease
->last
= cpu_to_le64(ceph_vino(inode
).snap
);
2764 lease
->seq
= cpu_to_le32(seq
);
2765 put_unaligned_le32(dnamelen
, lease
+ 1);
2766 memcpy((void *)(lease
+ 1) + 4, dentry
->d_name
.name
, dnamelen
);
2769 * if this is a preemptive lease RELEASE, no need to
2770 * flush request stream, since the actual request will
2773 msg
->more_to_follow
= (action
== CEPH_MDS_LEASE_RELEASE
);
2775 ceph_con_send(&session
->s_con
, msg
);
2779 * Preemptively release a lease we expect to invalidate anyway.
2780 * Pass @inode always, @dentry is optional.
2782 void ceph_mdsc_lease_release(struct ceph_mds_client
*mdsc
, struct inode
*inode
,
2783 struct dentry
*dentry
, int mask
)
2785 struct ceph_dentry_info
*di
;
2786 struct ceph_mds_session
*session
;
2789 BUG_ON(inode
== NULL
);
2790 BUG_ON(dentry
== NULL
);
2793 /* is dentry lease valid? */
2794 spin_lock(&dentry
->d_lock
);
2795 di
= ceph_dentry(dentry
);
2796 if (!di
|| !di
->lease_session
||
2797 di
->lease_session
->s_mds
< 0 ||
2798 di
->lease_gen
!= di
->lease_session
->s_cap_gen
||
2799 !time_before(jiffies
, dentry
->d_time
)) {
2800 dout("lease_release inode %p dentry %p -- "
2802 inode
, dentry
, mask
);
2803 spin_unlock(&dentry
->d_lock
);
2807 /* we do have a lease on this dentry; note mds and seq */
2808 session
= ceph_get_mds_session(di
->lease_session
);
2809 seq
= di
->lease_seq
;
2810 __ceph_mdsc_drop_dentry_lease(dentry
);
2811 spin_unlock(&dentry
->d_lock
);
2813 dout("lease_release inode %p dentry %p mask %d to mds%d\n",
2814 inode
, dentry
, mask
, session
->s_mds
);
2815 ceph_mdsc_lease_send_msg(session
, inode
, dentry
,
2816 CEPH_MDS_LEASE_RELEASE
, seq
);
2817 ceph_put_mds_session(session
);
2821 * drop all leases (and dentry refs) in preparation for umount
2823 static void drop_leases(struct ceph_mds_client
*mdsc
)
2827 dout("drop_leases\n");
2828 mutex_lock(&mdsc
->mutex
);
2829 for (i
= 0; i
< mdsc
->max_sessions
; i
++) {
2830 struct ceph_mds_session
*s
= __ceph_lookup_mds_session(mdsc
, i
);
2833 mutex_unlock(&mdsc
->mutex
);
2834 mutex_lock(&s
->s_mutex
);
2835 mutex_unlock(&s
->s_mutex
);
2836 ceph_put_mds_session(s
);
2837 mutex_lock(&mdsc
->mutex
);
2839 mutex_unlock(&mdsc
->mutex
);
2845 * delayed work -- periodically trim expired leases, renew caps with mds
2847 static void schedule_delayed(struct ceph_mds_client
*mdsc
)
2850 unsigned hz
= round_jiffies_relative(HZ
* delay
);
2851 schedule_delayed_work(&mdsc
->delayed_work
, hz
);
2854 static void delayed_work(struct work_struct
*work
)
2857 struct ceph_mds_client
*mdsc
=
2858 container_of(work
, struct ceph_mds_client
, delayed_work
.work
);
2862 dout("mdsc delayed_work\n");
2863 ceph_check_delayed_caps(mdsc
);
2865 mutex_lock(&mdsc
->mutex
);
2866 renew_interval
= mdsc
->mdsmap
->m_session_timeout
>> 2;
2867 renew_caps
= time_after_eq(jiffies
, HZ
*renew_interval
+
2868 mdsc
->last_renew_caps
);
2870 mdsc
->last_renew_caps
= jiffies
;
2872 for (i
= 0; i
< mdsc
->max_sessions
; i
++) {
2873 struct ceph_mds_session
*s
= __ceph_lookup_mds_session(mdsc
, i
);
2876 if (s
->s_state
== CEPH_MDS_SESSION_CLOSING
) {
2877 dout("resending session close request for mds%d\n",
2879 request_close_session(mdsc
, s
);
2880 ceph_put_mds_session(s
);
2883 if (s
->s_ttl
&& time_after(jiffies
, s
->s_ttl
)) {
2884 if (s
->s_state
== CEPH_MDS_SESSION_OPEN
) {
2885 s
->s_state
= CEPH_MDS_SESSION_HUNG
;
2886 pr_info("mds%d hung\n", s
->s_mds
);
2889 if (s
->s_state
< CEPH_MDS_SESSION_OPEN
) {
2890 /* this mds is failed or recovering, just wait */
2891 ceph_put_mds_session(s
);
2894 mutex_unlock(&mdsc
->mutex
);
2896 mutex_lock(&s
->s_mutex
);
2898 send_renew_caps(mdsc
, s
);
2900 ceph_con_keepalive(&s
->s_con
);
2901 ceph_add_cap_releases(mdsc
, s
);
2902 if (s
->s_state
== CEPH_MDS_SESSION_OPEN
||
2903 s
->s_state
== CEPH_MDS_SESSION_HUNG
)
2904 ceph_send_cap_releases(mdsc
, s
);
2905 mutex_unlock(&s
->s_mutex
);
2906 ceph_put_mds_session(s
);
2908 mutex_lock(&mdsc
->mutex
);
2910 mutex_unlock(&mdsc
->mutex
);
2912 schedule_delayed(mdsc
);
2915 int ceph_mdsc_init(struct ceph_fs_client
*fsc
)
2918 struct ceph_mds_client
*mdsc
;
2920 mdsc
= kzalloc(sizeof(struct ceph_mds_client
), GFP_NOFS
);
2925 mutex_init(&mdsc
->mutex
);
2926 mdsc
->mdsmap
= kzalloc(sizeof(*mdsc
->mdsmap
), GFP_NOFS
);
2927 if (mdsc
->mdsmap
== NULL
)
2930 init_completion(&mdsc
->safe_umount_waiters
);
2931 init_waitqueue_head(&mdsc
->session_close_wq
);
2932 INIT_LIST_HEAD(&mdsc
->waiting_for_map
);
2933 mdsc
->sessions
= NULL
;
2934 mdsc
->max_sessions
= 0;
2936 init_rwsem(&mdsc
->snap_rwsem
);
2937 mdsc
->snap_realms
= RB_ROOT
;
2938 INIT_LIST_HEAD(&mdsc
->snap_empty
);
2939 spin_lock_init(&mdsc
->snap_empty_lock
);
2941 mdsc
->request_tree
= RB_ROOT
;
2942 INIT_DELAYED_WORK(&mdsc
->delayed_work
, delayed_work
);
2943 mdsc
->last_renew_caps
= jiffies
;
2944 INIT_LIST_HEAD(&mdsc
->cap_delay_list
);
2945 spin_lock_init(&mdsc
->cap_delay_lock
);
2946 INIT_LIST_HEAD(&mdsc
->snap_flush_list
);
2947 spin_lock_init(&mdsc
->snap_flush_lock
);
2948 mdsc
->cap_flush_seq
= 0;
2949 INIT_LIST_HEAD(&mdsc
->cap_dirty
);
2950 mdsc
->num_cap_flushing
= 0;
2951 spin_lock_init(&mdsc
->cap_dirty_lock
);
2952 init_waitqueue_head(&mdsc
->cap_flushing_wq
);
2953 spin_lock_init(&mdsc
->dentry_lru_lock
);
2954 INIT_LIST_HEAD(&mdsc
->dentry_lru
);
2956 ceph_caps_init(mdsc
);
2957 ceph_adjust_min_caps(mdsc
, fsc
->min_caps
);
2963 * Wait for safe replies on open mds requests. If we time out, drop
2964 * all requests from the tree to avoid dangling dentry refs.
2966 static void wait_requests(struct ceph_mds_client
*mdsc
)
2968 struct ceph_mds_request
*req
;
2969 struct ceph_fs_client
*fsc
= mdsc
->fsc
;
2971 mutex_lock(&mdsc
->mutex
);
2972 if (__get_oldest_req(mdsc
)) {
2973 mutex_unlock(&mdsc
->mutex
);
2975 dout("wait_requests waiting for requests\n");
2976 wait_for_completion_timeout(&mdsc
->safe_umount_waiters
,
2977 fsc
->client
->options
->mount_timeout
* HZ
);
2979 /* tear down remaining requests */
2980 mutex_lock(&mdsc
->mutex
);
2981 while ((req
= __get_oldest_req(mdsc
))) {
2982 dout("wait_requests timed out on tid %llu\n",
2984 __unregister_request(mdsc
, req
);
2987 mutex_unlock(&mdsc
->mutex
);
2988 dout("wait_requests done\n");
2992 * called before mount is ro, and before dentries are torn down.
2993 * (hmm, does this still race with new lookups?)
2995 void ceph_mdsc_pre_umount(struct ceph_mds_client
*mdsc
)
2997 dout("pre_umount\n");
3001 ceph_flush_dirty_caps(mdsc
);
3002 wait_requests(mdsc
);
3005 * wait for reply handlers to drop their request refs and
3006 * their inode/dcache refs
3012 * wait for all write mds requests to flush.
3014 static void wait_unsafe_requests(struct ceph_mds_client
*mdsc
, u64 want_tid
)
3016 struct ceph_mds_request
*req
= NULL
, *nextreq
;
3019 mutex_lock(&mdsc
->mutex
);
3020 dout("wait_unsafe_requests want %lld\n", want_tid
);
3022 req
= __get_oldest_req(mdsc
);
3023 while (req
&& req
->r_tid
<= want_tid
) {
3024 /* find next request */
3025 n
= rb_next(&req
->r_node
);
3027 nextreq
= rb_entry(n
, struct ceph_mds_request
, r_node
);
3030 if ((req
->r_op
& CEPH_MDS_OP_WRITE
)) {
3032 ceph_mdsc_get_request(req
);
3034 ceph_mdsc_get_request(nextreq
);
3035 mutex_unlock(&mdsc
->mutex
);
3036 dout("wait_unsafe_requests wait on %llu (want %llu)\n",
3037 req
->r_tid
, want_tid
);
3038 wait_for_completion(&req
->r_safe_completion
);
3039 mutex_lock(&mdsc
->mutex
);
3040 ceph_mdsc_put_request(req
);
3042 break; /* next dne before, so we're done! */
3043 if (RB_EMPTY_NODE(&nextreq
->r_node
)) {
3044 /* next request was removed from tree */
3045 ceph_mdsc_put_request(nextreq
);
3048 ceph_mdsc_put_request(nextreq
); /* won't go away */
3052 mutex_unlock(&mdsc
->mutex
);
3053 dout("wait_unsafe_requests done\n");
3056 void ceph_mdsc_sync(struct ceph_mds_client
*mdsc
)
3058 u64 want_tid
, want_flush
;
3060 if (mdsc
->fsc
->mount_state
== CEPH_MOUNT_SHUTDOWN
)
3064 mutex_lock(&mdsc
->mutex
);
3065 want_tid
= mdsc
->last_tid
;
3066 want_flush
= mdsc
->cap_flush_seq
;
3067 mutex_unlock(&mdsc
->mutex
);
3068 dout("sync want tid %lld flush_seq %lld\n", want_tid
, want_flush
);
3070 ceph_flush_dirty_caps(mdsc
);
3072 wait_unsafe_requests(mdsc
, want_tid
);
3073 wait_event(mdsc
->cap_flushing_wq
, check_cap_flush(mdsc
, want_flush
));
3077 * true if all sessions are closed, or we force unmount
3079 bool done_closing_sessions(struct ceph_mds_client
*mdsc
)
3083 if (mdsc
->fsc
->mount_state
== CEPH_MOUNT_SHUTDOWN
)
3086 mutex_lock(&mdsc
->mutex
);
3087 for (i
= 0; i
< mdsc
->max_sessions
; i
++)
3088 if (mdsc
->sessions
[i
])
3090 mutex_unlock(&mdsc
->mutex
);
3095 * called after sb is ro.
3097 void ceph_mdsc_close_sessions(struct ceph_mds_client
*mdsc
)
3099 struct ceph_mds_session
*session
;
3101 struct ceph_fs_client
*fsc
= mdsc
->fsc
;
3102 unsigned long timeout
= fsc
->client
->options
->mount_timeout
* HZ
;
3104 dout("close_sessions\n");
3106 /* close sessions */
3107 mutex_lock(&mdsc
->mutex
);
3108 for (i
= 0; i
< mdsc
->max_sessions
; i
++) {
3109 session
= __ceph_lookup_mds_session(mdsc
, i
);
3112 mutex_unlock(&mdsc
->mutex
);
3113 mutex_lock(&session
->s_mutex
);
3114 __close_session(mdsc
, session
);
3115 mutex_unlock(&session
->s_mutex
);
3116 ceph_put_mds_session(session
);
3117 mutex_lock(&mdsc
->mutex
);
3119 mutex_unlock(&mdsc
->mutex
);
3121 dout("waiting for sessions to close\n");
3122 wait_event_timeout(mdsc
->session_close_wq
, done_closing_sessions(mdsc
),
3125 /* tear down remaining sessions */
3126 mutex_lock(&mdsc
->mutex
);
3127 for (i
= 0; i
< mdsc
->max_sessions
; i
++) {
3128 if (mdsc
->sessions
[i
]) {
3129 session
= get_session(mdsc
->sessions
[i
]);
3130 __unregister_session(mdsc
, session
);
3131 mutex_unlock(&mdsc
->mutex
);
3132 mutex_lock(&session
->s_mutex
);
3133 remove_session_caps(session
);
3134 mutex_unlock(&session
->s_mutex
);
3135 ceph_put_mds_session(session
);
3136 mutex_lock(&mdsc
->mutex
);
3139 WARN_ON(!list_empty(&mdsc
->cap_delay_list
));
3140 mutex_unlock(&mdsc
->mutex
);
3142 ceph_cleanup_empty_realms(mdsc
);
3144 cancel_delayed_work_sync(&mdsc
->delayed_work
); /* cancel timer */
3149 static void ceph_mdsc_stop(struct ceph_mds_client
*mdsc
)
3152 cancel_delayed_work_sync(&mdsc
->delayed_work
); /* cancel timer */
3154 ceph_mdsmap_destroy(mdsc
->mdsmap
);
3155 kfree(mdsc
->sessions
);
3156 ceph_caps_finalize(mdsc
);
3159 void ceph_mdsc_destroy(struct ceph_fs_client
*fsc
)
3161 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
3163 ceph_mdsc_stop(mdsc
);
3170 * handle mds map update.
3172 void ceph_mdsc_handle_map(struct ceph_mds_client
*mdsc
, struct ceph_msg
*msg
)
3176 void *p
= msg
->front
.iov_base
;
3177 void *end
= p
+ msg
->front
.iov_len
;
3178 struct ceph_mdsmap
*newmap
, *oldmap
;
3179 struct ceph_fsid fsid
;
3182 ceph_decode_need(&p
, end
, sizeof(fsid
)+2*sizeof(u32
), bad
);
3183 ceph_decode_copy(&p
, &fsid
, sizeof(fsid
));
3184 if (ceph_check_fsid(mdsc
->fsc
->client
, &fsid
) < 0)
3186 epoch
= ceph_decode_32(&p
);
3187 maplen
= ceph_decode_32(&p
);
3188 dout("handle_map epoch %u len %d\n", epoch
, (int)maplen
);
3190 /* do we need it? */
3191 ceph_monc_got_mdsmap(&mdsc
->fsc
->client
->monc
, epoch
);
3192 mutex_lock(&mdsc
->mutex
);
3193 if (mdsc
->mdsmap
&& epoch
<= mdsc
->mdsmap
->m_epoch
) {
3194 dout("handle_map epoch %u <= our %u\n",
3195 epoch
, mdsc
->mdsmap
->m_epoch
);
3196 mutex_unlock(&mdsc
->mutex
);
3200 newmap
= ceph_mdsmap_decode(&p
, end
);
3201 if (IS_ERR(newmap
)) {
3202 err
= PTR_ERR(newmap
);
3206 /* swap into place */
3208 oldmap
= mdsc
->mdsmap
;
3209 mdsc
->mdsmap
= newmap
;
3210 check_new_map(mdsc
, newmap
, oldmap
);
3211 ceph_mdsmap_destroy(oldmap
);
3213 mdsc
->mdsmap
= newmap
; /* first mds map */
3215 mdsc
->fsc
->sb
->s_maxbytes
= mdsc
->mdsmap
->m_max_file_size
;
3217 __wake_requests(mdsc
, &mdsc
->waiting_for_map
);
3219 mutex_unlock(&mdsc
->mutex
);
3220 schedule_delayed(mdsc
);
3224 mutex_unlock(&mdsc
->mutex
);
3226 pr_err("error decoding mdsmap %d\n", err
);
3230 static struct ceph_connection
*con_get(struct ceph_connection
*con
)
3232 struct ceph_mds_session
*s
= con
->private;
3234 if (get_session(s
)) {
3235 dout("mdsc con_get %p ok (%d)\n", s
, atomic_read(&s
->s_ref
));
3238 dout("mdsc con_get %p FAIL\n", s
);
3242 static void con_put(struct ceph_connection
*con
)
3244 struct ceph_mds_session
*s
= con
->private;
3246 ceph_put_mds_session(s
);
3247 dout("mdsc con_put %p (%d)\n", s
, atomic_read(&s
->s_ref
));
3251 * if the client is unresponsive for long enough, the mds will kill
3252 * the session entirely.
3254 static void peer_reset(struct ceph_connection
*con
)
3256 struct ceph_mds_session
*s
= con
->private;
3257 struct ceph_mds_client
*mdsc
= s
->s_mdsc
;
3259 pr_warning("mds%d closed our session\n", s
->s_mds
);
3260 send_mds_reconnect(mdsc
, s
);
3263 static void dispatch(struct ceph_connection
*con
, struct ceph_msg
*msg
)
3265 struct ceph_mds_session
*s
= con
->private;
3266 struct ceph_mds_client
*mdsc
= s
->s_mdsc
;
3267 int type
= le16_to_cpu(msg
->hdr
.type
);
3269 mutex_lock(&mdsc
->mutex
);
3270 if (__verify_registered_session(mdsc
, s
) < 0) {
3271 mutex_unlock(&mdsc
->mutex
);
3274 mutex_unlock(&mdsc
->mutex
);
3277 case CEPH_MSG_MDS_MAP
:
3278 ceph_mdsc_handle_map(mdsc
, msg
);
3280 case CEPH_MSG_CLIENT_SESSION
:
3281 handle_session(s
, msg
);
3283 case CEPH_MSG_CLIENT_REPLY
:
3284 handle_reply(s
, msg
);
3286 case CEPH_MSG_CLIENT_REQUEST_FORWARD
:
3287 handle_forward(mdsc
, s
, msg
);
3289 case CEPH_MSG_CLIENT_CAPS
:
3290 ceph_handle_caps(s
, msg
);
3292 case CEPH_MSG_CLIENT_SNAP
:
3293 ceph_handle_snap(mdsc
, s
, msg
);
3295 case CEPH_MSG_CLIENT_LEASE
:
3296 handle_lease(mdsc
, s
, msg
);
3300 pr_err("received unknown message type %d %s\n", type
,
3301 ceph_msg_type_name(type
));
3310 static int get_authorizer(struct ceph_connection
*con
,
3311 void **buf
, int *len
, int *proto
,
3312 void **reply_buf
, int *reply_len
, int force_new
)
3314 struct ceph_mds_session
*s
= con
->private;
3315 struct ceph_mds_client
*mdsc
= s
->s_mdsc
;
3316 struct ceph_auth_client
*ac
= mdsc
->fsc
->client
->monc
.auth
;
3319 if (force_new
&& s
->s_authorizer
) {
3320 ac
->ops
->destroy_authorizer(ac
, s
->s_authorizer
);
3321 s
->s_authorizer
= NULL
;
3323 if (s
->s_authorizer
== NULL
) {
3324 if (ac
->ops
->create_authorizer
) {
3325 ret
= ac
->ops
->create_authorizer(
3326 ac
, CEPH_ENTITY_TYPE_MDS
,
3328 &s
->s_authorizer_buf
,
3329 &s
->s_authorizer_buf_len
,
3330 &s
->s_authorizer_reply_buf
,
3331 &s
->s_authorizer_reply_buf_len
);
3337 *proto
= ac
->protocol
;
3338 *buf
= s
->s_authorizer_buf
;
3339 *len
= s
->s_authorizer_buf_len
;
3340 *reply_buf
= s
->s_authorizer_reply_buf
;
3341 *reply_len
= s
->s_authorizer_reply_buf_len
;
3346 static int verify_authorizer_reply(struct ceph_connection
*con
, int len
)
3348 struct ceph_mds_session
*s
= con
->private;
3349 struct ceph_mds_client
*mdsc
= s
->s_mdsc
;
3350 struct ceph_auth_client
*ac
= mdsc
->fsc
->client
->monc
.auth
;
3352 return ac
->ops
->verify_authorizer_reply(ac
, s
->s_authorizer
, len
);
3355 static int invalidate_authorizer(struct ceph_connection
*con
)
3357 struct ceph_mds_session
*s
= con
->private;
3358 struct ceph_mds_client
*mdsc
= s
->s_mdsc
;
3359 struct ceph_auth_client
*ac
= mdsc
->fsc
->client
->monc
.auth
;
3361 if (ac
->ops
->invalidate_authorizer
)
3362 ac
->ops
->invalidate_authorizer(ac
, CEPH_ENTITY_TYPE_MDS
);
3364 return ceph_monc_validate_auth(&mdsc
->fsc
->client
->monc
);
3367 static const struct ceph_connection_operations mds_con_ops
= {
3370 .dispatch
= dispatch
,
3371 .get_authorizer
= get_authorizer
,
3372 .verify_authorizer_reply
= verify_authorizer_reply
,
3373 .invalidate_authorizer
= invalidate_authorizer
,
3374 .peer_reset
= peer_reset
,