Merge tag 'fsnotify_for_v4.20-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / fs / ceph / mds_client.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
2f2dc053 3
496e5955 4#include <linux/fs.h>
2f2dc053 5#include <linux/wait.h>
5a0e3ad6 6#include <linux/slab.h>
54008399 7#include <linux/gfp.h>
2f2dc053 8#include <linux/sched.h>
3d14c5d2
YS
9#include <linux/debugfs.h>
10#include <linux/seq_file.h>
3e0708b9 11#include <linux/ratelimit.h>
2f2dc053 12
2f2dc053 13#include "super.h"
3d14c5d2
YS
14#include "mds_client.h"
15
1fe60e51 16#include <linux/ceph/ceph_features.h>
3d14c5d2
YS
17#include <linux/ceph/messenger.h>
18#include <linux/ceph/decode.h>
19#include <linux/ceph/pagelist.h>
20#include <linux/ceph/auth.h>
21#include <linux/ceph/debugfs.h>
2f2dc053
SW
22
23/*
24 * A cluster of MDS (metadata server) daemons is responsible for
25 * managing the file system namespace (the directory hierarchy and
26 * inodes) and for coordinating shared access to storage. Metadata is
27 * partitioning hierarchically across a number of servers, and that
28 * partition varies over time as the cluster adjusts the distribution
29 * in order to balance load.
30 *
31 * The MDS client is primarily responsible to managing synchronous
32 * metadata requests for operations like open, unlink, and so forth.
33 * If there is a MDS failure, we find out about it when we (possibly
34 * request and) receive a new MDS map, and can resubmit affected
35 * requests.
36 *
37 * For the most part, though, we take advantage of a lossless
38 * communications channel to the MDS, and do not need to worry about
39 * timing out or resubmitting requests.
40 *
41 * We maintain a stateful "session" with each MDS we interact with.
42 * Within each session, we sent periodic heartbeat messages to ensure
43 * any capabilities or leases we have been issues remain valid. If
44 * the session times out and goes stale, our leases and capabilities
45 * are no longer valid.
46 */
47
20cb34ae 48struct ceph_reconnect_state {
44c99757 49 int nr_caps;
20cb34ae 50 struct ceph_pagelist *pagelist;
121f22a1 51 unsigned msg_version;
20cb34ae
SW
52};
53
2f2dc053
SW
54static void __wake_requests(struct ceph_mds_client *mdsc,
55 struct list_head *head);
56
9e32789f 57static const struct ceph_connection_operations mds_con_ops;
2f2dc053
SW
58
59
60/*
61 * mds reply parsing
62 */
63
64/*
65 * parse individual inode info
66 */
67static int parse_reply_info_in(void **p, void *end,
14303d20 68 struct ceph_mds_reply_info_in *info,
12b4629a 69 u64 features)
2f2dc053
SW
70{
71 int err = -EIO;
72
73 info->in = *p;
74 *p += sizeof(struct ceph_mds_reply_inode) +
75 sizeof(*info->in->fragtree.splits) *
76 le32_to_cpu(info->in->fragtree.nsplits);
77
78 ceph_decode_32_safe(p, end, info->symlink_len, bad);
79 ceph_decode_need(p, end, info->symlink_len, bad);
80 info->symlink = *p;
81 *p += info->symlink_len;
82
23c625ce
ID
83 ceph_decode_copy_safe(p, end, &info->dir_layout,
84 sizeof(info->dir_layout), bad);
2f2dc053
SW
85 ceph_decode_32_safe(p, end, info->xattr_len, bad);
86 ceph_decode_need(p, end, info->xattr_len, bad);
87 info->xattr_data = *p;
88 *p += info->xattr_len;
fb01d1f8
YZ
89
90 if (features & CEPH_FEATURE_MDS_INLINE_DATA) {
91 ceph_decode_64_safe(p, end, info->inline_version, bad);
92 ceph_decode_32_safe(p, end, info->inline_len, bad);
93 ceph_decode_need(p, end, info->inline_len, bad);
94 info->inline_data = *p;
95 *p += info->inline_len;
96 } else
97 info->inline_version = CEPH_INLINE_NONE;
98
fb18a575
LH
99 if (features & CEPH_FEATURE_MDS_QUOTA) {
100 u8 struct_v, struct_compat;
101 u32 struct_len;
102
103 /*
104 * both struct_v and struct_compat are expected to be >= 1
105 */
106 ceph_decode_8_safe(p, end, struct_v, bad);
107 ceph_decode_8_safe(p, end, struct_compat, bad);
108 if (!struct_v || !struct_compat)
109 goto bad;
110 ceph_decode_32_safe(p, end, struct_len, bad);
111 ceph_decode_need(p, end, struct_len, bad);
112 ceph_decode_64_safe(p, end, info->max_bytes, bad);
113 ceph_decode_64_safe(p, end, info->max_files, bad);
114 } else {
115 info->max_bytes = 0;
116 info->max_files = 0;
117 }
118
779fe0fb
YZ
119 info->pool_ns_len = 0;
120 info->pool_ns_data = NULL;
5ea5c5e0
YZ
121 if (features & CEPH_FEATURE_FS_FILE_LAYOUT_V2) {
122 ceph_decode_32_safe(p, end, info->pool_ns_len, bad);
779fe0fb
YZ
123 if (info->pool_ns_len > 0) {
124 ceph_decode_need(p, end, info->pool_ns_len, bad);
125 info->pool_ns_data = *p;
126 *p += info->pool_ns_len;
127 }
5ea5c5e0
YZ
128 }
129
2f2dc053
SW
130 return 0;
131bad:
132 return err;
133}
134
135/*
136 * parse a normal reply, which may contain a (dir+)dentry and/or a
137 * target inode.
138 */
139static int parse_reply_info_trace(void **p, void *end,
14303d20 140 struct ceph_mds_reply_info_parsed *info,
12b4629a 141 u64 features)
2f2dc053
SW
142{
143 int err;
144
145 if (info->head->is_dentry) {
14303d20 146 err = parse_reply_info_in(p, end, &info->diri, features);
2f2dc053
SW
147 if (err < 0)
148 goto out_bad;
149
150 if (unlikely(*p + sizeof(*info->dirfrag) > end))
151 goto bad;
152 info->dirfrag = *p;
153 *p += sizeof(*info->dirfrag) +
154 sizeof(u32)*le32_to_cpu(info->dirfrag->ndist);
155 if (unlikely(*p > end))
156 goto bad;
157
158 ceph_decode_32_safe(p, end, info->dname_len, bad);
159 ceph_decode_need(p, end, info->dname_len, bad);
160 info->dname = *p;
161 *p += info->dname_len;
162 info->dlease = *p;
163 *p += sizeof(*info->dlease);
164 }
165
166 if (info->head->is_target) {
14303d20 167 err = parse_reply_info_in(p, end, &info->targeti, features);
2f2dc053
SW
168 if (err < 0)
169 goto out_bad;
170 }
171
172 if (unlikely(*p != end))
173 goto bad;
174 return 0;
175
176bad:
177 err = -EIO;
178out_bad:
179 pr_err("problem parsing mds trace %d\n", err);
180 return err;
181}
182
183/*
184 * parse readdir results
185 */
186static int parse_reply_info_dir(void **p, void *end,
14303d20 187 struct ceph_mds_reply_info_parsed *info,
12b4629a 188 u64 features)
2f2dc053
SW
189{
190 u32 num, i = 0;
191 int err;
192
193 info->dir_dir = *p;
194 if (*p + sizeof(*info->dir_dir) > end)
195 goto bad;
196 *p += sizeof(*info->dir_dir) +
197 sizeof(u32)*le32_to_cpu(info->dir_dir->ndist);
198 if (*p > end)
199 goto bad;
200
201 ceph_decode_need(p, end, sizeof(num) + 2, bad);
c89136ea 202 num = ceph_decode_32(p);
956d39d6
YZ
203 {
204 u16 flags = ceph_decode_16(p);
205 info->dir_end = !!(flags & CEPH_READDIR_FRAG_END);
206 info->dir_complete = !!(flags & CEPH_READDIR_FRAG_COMPLETE);
f3c4ebe6 207 info->hash_order = !!(flags & CEPH_READDIR_HASH_ORDER);
79162547 208 info->offset_hash = !!(flags & CEPH_READDIR_OFFSET_HASH);
956d39d6 209 }
2f2dc053
SW
210 if (num == 0)
211 goto done;
212
2a5beea3
YZ
213 BUG_ON(!info->dir_entries);
214 if ((unsigned long)(info->dir_entries + num) >
215 (unsigned long)info->dir_entries + info->dir_buf_size) {
54008399
YZ
216 pr_err("dir contents are larger than expected\n");
217 WARN_ON(1);
218 goto bad;
219 }
2f2dc053 220
54008399 221 info->dir_nr = num;
2f2dc053 222 while (num) {
2a5beea3 223 struct ceph_mds_reply_dir_entry *rde = info->dir_entries + i;
2f2dc053
SW
224 /* dentry */
225 ceph_decode_need(p, end, sizeof(u32)*2, bad);
2a5beea3
YZ
226 rde->name_len = ceph_decode_32(p);
227 ceph_decode_need(p, end, rde->name_len, bad);
228 rde->name = *p;
229 *p += rde->name_len;
230 dout("parsed dir dname '%.*s'\n", rde->name_len, rde->name);
231 rde->lease = *p;
2f2dc053
SW
232 *p += sizeof(struct ceph_mds_reply_lease);
233
234 /* inode */
2a5beea3 235 err = parse_reply_info_in(p, end, &rde->inode, features);
2f2dc053
SW
236 if (err < 0)
237 goto out_bad;
8974eebd
YZ
238 /* ceph_readdir_prepopulate() will update it */
239 rde->offset = 0;
2f2dc053
SW
240 i++;
241 num--;
242 }
243
244done:
245 if (*p != end)
246 goto bad;
247 return 0;
248
249bad:
250 err = -EIO;
251out_bad:
252 pr_err("problem parsing dir contents %d\n", err);
253 return err;
254}
255
25933abd
HS
256/*
257 * parse fcntl F_GETLK results
258 */
259static int parse_reply_info_filelock(void **p, void *end,
14303d20 260 struct ceph_mds_reply_info_parsed *info,
12b4629a 261 u64 features)
25933abd
HS
262{
263 if (*p + sizeof(*info->filelock_reply) > end)
264 goto bad;
265
266 info->filelock_reply = *p;
267 *p += sizeof(*info->filelock_reply);
268
269 if (unlikely(*p != end))
270 goto bad;
271 return 0;
272
273bad:
274 return -EIO;
275}
276
6e8575fa
SL
277/*
278 * parse create results
279 */
280static int parse_reply_info_create(void **p, void *end,
281 struct ceph_mds_reply_info_parsed *info,
12b4629a 282 u64 features)
6e8575fa
SL
283{
284 if (features & CEPH_FEATURE_REPLY_CREATE_INODE) {
285 if (*p == end) {
286 info->has_create_ino = false;
287 } else {
288 info->has_create_ino = true;
289 info->ino = ceph_decode_64(p);
290 }
291 }
292
293 if (unlikely(*p != end))
294 goto bad;
295 return 0;
296
297bad:
298 return -EIO;
299}
300
25933abd
HS
301/*
302 * parse extra results
303 */
304static int parse_reply_info_extra(void **p, void *end,
14303d20 305 struct ceph_mds_reply_info_parsed *info,
12b4629a 306 u64 features)
25933abd 307{
6df8c9d8
JL
308 u32 op = le32_to_cpu(info->head->op);
309
310 if (op == CEPH_MDS_OP_GETFILELOCK)
14303d20 311 return parse_reply_info_filelock(p, end, info, features);
6df8c9d8 312 else if (op == CEPH_MDS_OP_READDIR || op == CEPH_MDS_OP_LSSNAP)
14303d20 313 return parse_reply_info_dir(p, end, info, features);
6df8c9d8 314 else if (op == CEPH_MDS_OP_CREATE)
6e8575fa
SL
315 return parse_reply_info_create(p, end, info, features);
316 else
317 return -EIO;
25933abd
HS
318}
319
2f2dc053
SW
320/*
321 * parse entire mds reply
322 */
323static int parse_reply_info(struct ceph_msg *msg,
14303d20 324 struct ceph_mds_reply_info_parsed *info,
12b4629a 325 u64 features)
2f2dc053
SW
326{
327 void *p, *end;
328 u32 len;
329 int err;
330
331 info->head = msg->front.iov_base;
332 p = msg->front.iov_base + sizeof(struct ceph_mds_reply_head);
333 end = p + msg->front.iov_len - sizeof(struct ceph_mds_reply_head);
334
335 /* trace */
336 ceph_decode_32_safe(&p, end, len, bad);
337 if (len > 0) {
32852a81 338 ceph_decode_need(&p, end, len, bad);
14303d20 339 err = parse_reply_info_trace(&p, p+len, info, features);
2f2dc053
SW
340 if (err < 0)
341 goto out_bad;
342 }
343
25933abd 344 /* extra */
2f2dc053
SW
345 ceph_decode_32_safe(&p, end, len, bad);
346 if (len > 0) {
32852a81 347 ceph_decode_need(&p, end, len, bad);
14303d20 348 err = parse_reply_info_extra(&p, p+len, info, features);
2f2dc053
SW
349 if (err < 0)
350 goto out_bad;
351 }
352
353 /* snap blob */
354 ceph_decode_32_safe(&p, end, len, bad);
355 info->snapblob_len = len;
356 info->snapblob = p;
357 p += len;
358
359 if (p != end)
360 goto bad;
361 return 0;
362
363bad:
364 err = -EIO;
365out_bad:
366 pr_err("mds parse_reply err %d\n", err);
367 return err;
368}
369
370static void destroy_reply_info(struct ceph_mds_reply_info_parsed *info)
371{
2a5beea3 372 if (!info->dir_entries)
54008399 373 return;
2a5beea3 374 free_pages((unsigned long)info->dir_entries, get_order(info->dir_buf_size));
2f2dc053
SW
375}
376
377
378/*
379 * sessions
380 */
a687ecaf 381const char *ceph_session_state_name(int s)
2f2dc053
SW
382{
383 switch (s) {
384 case CEPH_MDS_SESSION_NEW: return "new";
385 case CEPH_MDS_SESSION_OPENING: return "opening";
386 case CEPH_MDS_SESSION_OPEN: return "open";
387 case CEPH_MDS_SESSION_HUNG: return "hung";
388 case CEPH_MDS_SESSION_CLOSING: return "closing";
44ca18f2 389 case CEPH_MDS_SESSION_RESTARTING: return "restarting";
2f2dc053 390 case CEPH_MDS_SESSION_RECONNECTING: return "reconnecting";
fcff415c 391 case CEPH_MDS_SESSION_REJECTED: return "rejected";
2f2dc053
SW
392 default: return "???";
393 }
394}
395
396static struct ceph_mds_session *get_session(struct ceph_mds_session *s)
397{
3997c01d 398 if (refcount_inc_not_zero(&s->s_ref)) {
2f2dc053 399 dout("mdsc get_session %p %d -> %d\n", s,
3997c01d 400 refcount_read(&s->s_ref)-1, refcount_read(&s->s_ref));
2f2dc053
SW
401 return s;
402 } else {
4c069a58 403 dout("mdsc get_session %p 0 -- FAIL\n", s);
2f2dc053
SW
404 return NULL;
405 }
406}
407
408void ceph_put_mds_session(struct ceph_mds_session *s)
409{
410 dout("mdsc put_session %p %d -> %d\n", s,
3997c01d
ER
411 refcount_read(&s->s_ref), refcount_read(&s->s_ref)-1);
412 if (refcount_dec_and_test(&s->s_ref)) {
6c4a1915 413 if (s->s_auth.authorizer)
6c1ea260 414 ceph_auth_destroy_authorizer(s->s_auth.authorizer);
2f2dc053 415 kfree(s);
4e7a5dcd 416 }
2f2dc053
SW
417}
418
419/*
420 * called under mdsc->mutex
421 */
422struct ceph_mds_session *__ceph_lookup_mds_session(struct ceph_mds_client *mdsc,
423 int mds)
424{
425 struct ceph_mds_session *session;
426
d37b1d99 427 if (mds >= mdsc->max_sessions || !mdsc->sessions[mds])
2f2dc053
SW
428 return NULL;
429 session = mdsc->sessions[mds];
430 dout("lookup_mds_session %p %d\n", session,
3997c01d 431 refcount_read(&session->s_ref));
2f2dc053
SW
432 get_session(session);
433 return session;
434}
435
436static bool __have_session(struct ceph_mds_client *mdsc, int mds)
437{
98cfda81 438 if (mds >= mdsc->max_sessions || !mdsc->sessions[mds])
2f2dc053 439 return false;
98cfda81
CX
440 else
441 return true;
2f2dc053
SW
442}
443
2600d2dd
SW
444static int __verify_registered_session(struct ceph_mds_client *mdsc,
445 struct ceph_mds_session *s)
446{
447 if (s->s_mds >= mdsc->max_sessions ||
448 mdsc->sessions[s->s_mds] != s)
449 return -ENOENT;
450 return 0;
451}
452
2f2dc053
SW
453/*
454 * create+register a new session for given mds.
455 * called under mdsc->mutex.
456 */
457static struct ceph_mds_session *register_session(struct ceph_mds_client *mdsc,
458 int mds)
459{
460 struct ceph_mds_session *s;
461
76201b63 462 if (mds >= mdsc->mdsmap->m_num_mds)
c338c07c
NY
463 return ERR_PTR(-EINVAL);
464
2f2dc053 465 s = kzalloc(sizeof(*s), GFP_NOFS);
4736b009
DC
466 if (!s)
467 return ERR_PTR(-ENOMEM);
47474d0b
CX
468
469 if (mds >= mdsc->max_sessions) {
470 int newmax = 1 << get_count_order(mds + 1);
471 struct ceph_mds_session **sa;
472
473 dout("%s: realloc to %d\n", __func__, newmax);
474 sa = kcalloc(newmax, sizeof(void *), GFP_NOFS);
475 if (!sa)
476 goto fail_realloc;
477 if (mdsc->sessions) {
478 memcpy(sa, mdsc->sessions,
479 mdsc->max_sessions * sizeof(void *));
480 kfree(mdsc->sessions);
481 }
482 mdsc->sessions = sa;
483 mdsc->max_sessions = newmax;
484 }
485
486 dout("%s: mds%d\n", __func__, mds);
2f2dc053
SW
487 s->s_mdsc = mdsc;
488 s->s_mds = mds;
489 s->s_state = CEPH_MDS_SESSION_NEW;
490 s->s_ttl = 0;
491 s->s_seq = 0;
492 mutex_init(&s->s_mutex);
493
b7a9e5dd 494 ceph_con_init(&s->s_con, s, &mds_con_ops, &mdsc->fsc->client->msgr);
2f2dc053 495
d8fb02ab 496 spin_lock_init(&s->s_gen_ttl_lock);
2f2dc053 497 s->s_cap_gen = 0;
1ce208a6 498 s->s_cap_ttl = jiffies - 1;
d8fb02ab
AE
499
500 spin_lock_init(&s->s_cap_lock);
2f2dc053
SW
501 s->s_renew_requested = 0;
502 s->s_renew_seq = 0;
503 INIT_LIST_HEAD(&s->s_caps);
504 s->s_nr_caps = 0;
5dacf091 505 s->s_trim_caps = 0;
3997c01d 506 refcount_set(&s->s_ref, 1);
2f2dc053
SW
507 INIT_LIST_HEAD(&s->s_waiting);
508 INIT_LIST_HEAD(&s->s_unsafe);
509 s->s_num_cap_releases = 0;
99a9c273 510 s->s_cap_reconnect = 0;
7c1332b8 511 s->s_cap_iterator = NULL;
2f2dc053 512 INIT_LIST_HEAD(&s->s_cap_releases);
2f2dc053 513 INIT_LIST_HEAD(&s->s_cap_flushing);
2f2dc053 514
2f2dc053 515 mdsc->sessions[mds] = s;
86d8f67b 516 atomic_inc(&mdsc->num_sessions);
3997c01d 517 refcount_inc(&s->s_ref); /* one ref to sessions[], one to caller */
42ce56e5 518
b7a9e5dd
SW
519 ceph_con_open(&s->s_con, CEPH_ENTITY_TYPE_MDS, mds,
520 ceph_mdsmap_get_addr(mdsc->mdsmap, mds));
42ce56e5 521
2f2dc053 522 return s;
42ce56e5
SW
523
524fail_realloc:
525 kfree(s);
526 return ERR_PTR(-ENOMEM);
2f2dc053
SW
527}
528
529/*
530 * called under mdsc->mutex
531 */
2600d2dd 532static void __unregister_session(struct ceph_mds_client *mdsc,
42ce56e5 533 struct ceph_mds_session *s)
2f2dc053 534{
2600d2dd
SW
535 dout("__unregister_session mds%d %p\n", s->s_mds, s);
536 BUG_ON(mdsc->sessions[s->s_mds] != s);
42ce56e5
SW
537 mdsc->sessions[s->s_mds] = NULL;
538 ceph_con_close(&s->s_con);
539 ceph_put_mds_session(s);
86d8f67b 540 atomic_dec(&mdsc->num_sessions);
2f2dc053
SW
541}
542
543/*
544 * drop session refs in request.
545 *
546 * should be last request ref, or hold mdsc->mutex
547 */
548static void put_request_session(struct ceph_mds_request *req)
549{
550 if (req->r_session) {
551 ceph_put_mds_session(req->r_session);
552 req->r_session = NULL;
553 }
554}
555
153c8e6b 556void ceph_mdsc_release_request(struct kref *kref)
2f2dc053 557{
153c8e6b
SW
558 struct ceph_mds_request *req = container_of(kref,
559 struct ceph_mds_request,
560 r_kref);
54008399 561 destroy_reply_info(&req->r_reply_info);
153c8e6b
SW
562 if (req->r_request)
563 ceph_msg_put(req->r_request);
54008399 564 if (req->r_reply)
153c8e6b 565 ceph_msg_put(req->r_reply);
153c8e6b 566 if (req->r_inode) {
41b02e1f 567 ceph_put_cap_refs(ceph_inode(req->r_inode), CEPH_CAP_PIN);
153c8e6b
SW
568 iput(req->r_inode);
569 }
3dd69aab
JL
570 if (req->r_parent)
571 ceph_put_cap_refs(ceph_inode(req->r_parent), CEPH_CAP_PIN);
e96a650a 572 iput(req->r_target_inode);
153c8e6b
SW
573 if (req->r_dentry)
574 dput(req->r_dentry);
844d87c3
SW
575 if (req->r_old_dentry)
576 dput(req->r_old_dentry);
577 if (req->r_old_dentry_dir) {
41b02e1f
SW
578 /*
579 * track (and drop pins for) r_old_dentry_dir
580 * separately, since r_old_dentry's d_parent may have
581 * changed between the dir mutex being dropped and
582 * this request being freed.
583 */
584 ceph_put_cap_refs(ceph_inode(req->r_old_dentry_dir),
585 CEPH_CAP_PIN);
41b02e1f 586 iput(req->r_old_dentry_dir);
2f2dc053 587 }
153c8e6b
SW
588 kfree(req->r_path1);
589 kfree(req->r_path2);
25e6bae3
YZ
590 if (req->r_pagelist)
591 ceph_pagelist_release(req->r_pagelist);
153c8e6b 592 put_request_session(req);
37151668 593 ceph_unreserve_caps(req->r_mdsc, &req->r_caps_reservation);
153c8e6b 594 kfree(req);
2f2dc053
SW
595}
596
fcd00b68
ID
597DEFINE_RB_FUNCS(request, struct ceph_mds_request, r_tid, r_node)
598
2f2dc053
SW
599/*
600 * lookup session, bump ref if found.
601 *
602 * called under mdsc->mutex.
603 */
fcd00b68
ID
604static struct ceph_mds_request *
605lookup_get_request(struct ceph_mds_client *mdsc, u64 tid)
2f2dc053
SW
606{
607 struct ceph_mds_request *req;
44ca18f2 608
fcd00b68
ID
609 req = lookup_request(&mdsc->request_tree, tid);
610 if (req)
611 ceph_mdsc_get_request(req);
44ca18f2 612
fcd00b68 613 return req;
2f2dc053
SW
614}
615
616/*
617 * Register an in-flight request, and assign a tid. Link to directory
618 * are modifying (if any).
619 *
620 * Called under mdsc->mutex.
621 */
622static void __register_request(struct ceph_mds_client *mdsc,
623 struct ceph_mds_request *req,
624 struct inode *dir)
625{
e30ee581
ZZ
626 int ret = 0;
627
2f2dc053 628 req->r_tid = ++mdsc->last_tid;
e30ee581
ZZ
629 if (req->r_num_caps) {
630 ret = ceph_reserve_caps(mdsc, &req->r_caps_reservation,
631 req->r_num_caps);
632 if (ret < 0) {
633 pr_err("__register_request %p "
634 "failed to reserve caps: %d\n", req, ret);
635 /* set req->r_err to fail early from __do_request */
636 req->r_err = ret;
637 return;
638 }
639 }
2f2dc053
SW
640 dout("__register_request %p tid %lld\n", req, req->r_tid);
641 ceph_mdsc_get_request(req);
fcd00b68 642 insert_request(&mdsc->request_tree, req);
2f2dc053 643
cb4276cc
SW
644 req->r_uid = current_fsuid();
645 req->r_gid = current_fsgid();
646
e8a7b8b1
YZ
647 if (mdsc->oldest_tid == 0 && req->r_op != CEPH_MDS_OP_SETFILELOCK)
648 mdsc->oldest_tid = req->r_tid;
649
2f2dc053 650 if (dir) {
3b663780 651 ihold(dir);
2f2dc053 652 req->r_unsafe_dir = dir;
2f2dc053
SW
653 }
654}
655
656static void __unregister_request(struct ceph_mds_client *mdsc,
657 struct ceph_mds_request *req)
658{
659 dout("__unregister_request %p tid %lld\n", req, req->r_tid);
e8a7b8b1 660
df963ea8
JL
661 /* Never leave an unregistered request on an unsafe list! */
662 list_del_init(&req->r_unsafe_item);
663
e8a7b8b1
YZ
664 if (req->r_tid == mdsc->oldest_tid) {
665 struct rb_node *p = rb_next(&req->r_node);
666 mdsc->oldest_tid = 0;
667 while (p) {
668 struct ceph_mds_request *next_req =
669 rb_entry(p, struct ceph_mds_request, r_node);
670 if (next_req->r_op != CEPH_MDS_OP_SETFILELOCK) {
671 mdsc->oldest_tid = next_req->r_tid;
672 break;
673 }
674 p = rb_next(p);
675 }
676 }
677
fcd00b68 678 erase_request(&mdsc->request_tree, req);
2f2dc053 679
bc2de10d
JL
680 if (req->r_unsafe_dir &&
681 test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
2f2dc053 682 struct ceph_inode_info *ci = ceph_inode(req->r_unsafe_dir);
2f2dc053
SW
683 spin_lock(&ci->i_unsafe_lock);
684 list_del_init(&req->r_unsafe_dir_item);
685 spin_unlock(&ci->i_unsafe_lock);
4c06ace8 686 }
bc2de10d
JL
687 if (req->r_target_inode &&
688 test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
68cd5b4b
YZ
689 struct ceph_inode_info *ci = ceph_inode(req->r_target_inode);
690 spin_lock(&ci->i_unsafe_lock);
691 list_del_init(&req->r_unsafe_target_item);
692 spin_unlock(&ci->i_unsafe_lock);
693 }
3b663780 694
4c06ace8 695 if (req->r_unsafe_dir) {
3b663780
SW
696 iput(req->r_unsafe_dir);
697 req->r_unsafe_dir = NULL;
2f2dc053 698 }
94aa8ae1 699
fc55d2c9
YZ
700 complete_all(&req->r_safe_completion);
701
94aa8ae1 702 ceph_mdsc_put_request(req);
2f2dc053
SW
703}
704
30c71233
JL
705/*
706 * Walk back up the dentry tree until we hit a dentry representing a
707 * non-snapshot inode. We do this using the rcu_read_lock (which must be held
708 * when calling this) to ensure that the objects won't disappear while we're
709 * working with them. Once we hit a candidate dentry, we attempt to take a
710 * reference to it, and return that as the result.
711 */
f1075480
DC
712static struct inode *get_nonsnap_parent(struct dentry *dentry)
713{
714 struct inode *inode = NULL;
30c71233
JL
715
716 while (dentry && !IS_ROOT(dentry)) {
717 inode = d_inode_rcu(dentry);
718 if (!inode || ceph_snap(inode) == CEPH_NOSNAP)
719 break;
720 dentry = dentry->d_parent;
721 }
722 if (inode)
723 inode = igrab(inode);
724 return inode;
725}
726
2f2dc053
SW
727/*
728 * Choose mds to send request to next. If there is a hint set in the
729 * request (e.g., due to a prior forward hint from the mds), use that.
730 * Otherwise, consult frag tree and/or caps to identify the
731 * appropriate mds. If all else fails, choose randomly.
732 *
733 * Called under mdsc->mutex.
734 */
735static int __choose_mds(struct ceph_mds_client *mdsc,
736 struct ceph_mds_request *req)
737{
738 struct inode *inode;
739 struct ceph_inode_info *ci;
740 struct ceph_cap *cap;
741 int mode = req->r_direct_mode;
742 int mds = -1;
743 u32 hash = req->r_direct_hash;
bc2de10d 744 bool is_hash = test_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
2f2dc053
SW
745
746 /*
747 * is there a specific mds we should try? ignore hint if we have
748 * no session and the mds is not up (active or recovering).
749 */
750 if (req->r_resend_mds >= 0 &&
751 (__have_session(mdsc, req->r_resend_mds) ||
752 ceph_mdsmap_get_state(mdsc->mdsmap, req->r_resend_mds) > 0)) {
753 dout("choose_mds using resend_mds mds%d\n",
754 req->r_resend_mds);
755 return req->r_resend_mds;
756 }
757
758 if (mode == USE_RANDOM_MDS)
759 goto random;
760
761 inode = NULL;
762 if (req->r_inode) {
5d37ca14
YZ
763 if (ceph_snap(req->r_inode) != CEPH_SNAPDIR) {
764 inode = req->r_inode;
765 ihold(inode);
766 } else {
38f340cc
YZ
767 /* req->r_dentry is non-null for LSSNAP request */
768 rcu_read_lock();
769 inode = get_nonsnap_parent(req->r_dentry);
770 rcu_read_unlock();
771 dout("__choose_mds using snapdir's parent %p\n", inode);
5d37ca14 772 }
38f340cc 773 } else if (req->r_dentry) {
d79698da 774 /* ignore race with rename; old or new d_parent is okay */
30c71233
JL
775 struct dentry *parent;
776 struct inode *dir;
777
778 rcu_read_lock();
779 parent = req->r_dentry->d_parent;
3dd69aab 780 dir = req->r_parent ? : d_inode_rcu(parent);
eb6bb1c5 781
30c71233
JL
782 if (!dir || dir->i_sb != mdsc->fsc->sb) {
783 /* not this fs or parent went negative */
2b0143b5 784 inode = d_inode(req->r_dentry);
30c71233
JL
785 if (inode)
786 ihold(inode);
eb6bb1c5
SW
787 } else if (ceph_snap(dir) != CEPH_NOSNAP) {
788 /* direct snapped/virtual snapdir requests
789 * based on parent dir inode */
30c71233 790 inode = get_nonsnap_parent(parent);
eb6bb1c5 791 dout("__choose_mds using nonsnap parent %p\n", inode);
ca18bede 792 } else {
eb6bb1c5 793 /* dentry target */
2b0143b5 794 inode = d_inode(req->r_dentry);
ca18bede
YZ
795 if (!inode || mode == USE_AUTH_MDS) {
796 /* dir + name */
30c71233 797 inode = igrab(dir);
ca18bede
YZ
798 hash = ceph_dentry_hash(dir, req->r_dentry);
799 is_hash = true;
30c71233
JL
800 } else {
801 ihold(inode);
ca18bede 802 }
2f2dc053 803 }
30c71233 804 rcu_read_unlock();
2f2dc053 805 }
eb6bb1c5 806
2f2dc053
SW
807 dout("__choose_mds %p is_hash=%d (%d) mode %d\n", inode, (int)is_hash,
808 (int)hash, mode);
809 if (!inode)
810 goto random;
811 ci = ceph_inode(inode);
812
813 if (is_hash && S_ISDIR(inode->i_mode)) {
814 struct ceph_inode_frag frag;
815 int found;
816
817 ceph_choose_frag(ci, hash, &frag, &found);
818 if (found) {
819 if (mode == USE_ANY_MDS && frag.ndist > 0) {
820 u8 r;
821
822 /* choose a random replica */
823 get_random_bytes(&r, 1);
824 r %= frag.ndist;
825 mds = frag.dist[r];
826 dout("choose_mds %p %llx.%llx "
827 "frag %u mds%d (%d/%d)\n",
828 inode, ceph_vinop(inode),
d66bbd44 829 frag.frag, mds,
2f2dc053 830 (int)r, frag.ndist);
d66bbd44
SW
831 if (ceph_mdsmap_get_state(mdsc->mdsmap, mds) >=
832 CEPH_MDS_STATE_ACTIVE)
30c71233 833 goto out;
2f2dc053
SW
834 }
835
836 /* since this file/dir wasn't known to be
837 * replicated, then we want to look for the
838 * authoritative mds. */
839 mode = USE_AUTH_MDS;
840 if (frag.mds >= 0) {
841 /* choose auth mds */
842 mds = frag.mds;
843 dout("choose_mds %p %llx.%llx "
844 "frag %u mds%d (auth)\n",
845 inode, ceph_vinop(inode), frag.frag, mds);
d66bbd44
SW
846 if (ceph_mdsmap_get_state(mdsc->mdsmap, mds) >=
847 CEPH_MDS_STATE_ACTIVE)
30c71233 848 goto out;
2f2dc053
SW
849 }
850 }
851 }
852
be655596 853 spin_lock(&ci->i_ceph_lock);
2f2dc053
SW
854 cap = NULL;
855 if (mode == USE_AUTH_MDS)
856 cap = ci->i_auth_cap;
857 if (!cap && !RB_EMPTY_ROOT(&ci->i_caps))
858 cap = rb_entry(rb_first(&ci->i_caps), struct ceph_cap, ci_node);
859 if (!cap) {
be655596 860 spin_unlock(&ci->i_ceph_lock);
30c71233 861 iput(inode);
2f2dc053
SW
862 goto random;
863 }
864 mds = cap->session->s_mds;
865 dout("choose_mds %p %llx.%llx mds%d (%scap %p)\n",
866 inode, ceph_vinop(inode), mds,
867 cap == ci->i_auth_cap ? "auth " : "", cap);
be655596 868 spin_unlock(&ci->i_ceph_lock);
30c71233
JL
869out:
870 iput(inode);
2f2dc053
SW
871 return mds;
872
873random:
874 mds = ceph_mdsmap_get_random_mds(mdsc->mdsmap);
875 dout("choose_mds chose random mds%d\n", mds);
876 return mds;
877}
878
879
880/*
881 * session messages
882 */
883static struct ceph_msg *create_session_msg(u32 op, u64 seq)
884{
885 struct ceph_msg *msg;
886 struct ceph_mds_session_head *h;
887
b61c2763
SW
888 msg = ceph_msg_new(CEPH_MSG_CLIENT_SESSION, sizeof(*h), GFP_NOFS,
889 false);
a79832f2 890 if (!msg) {
2f2dc053 891 pr_err("create_session_msg ENOMEM creating msg\n");
a79832f2 892 return NULL;
2f2dc053
SW
893 }
894 h = msg->front.iov_base;
895 h->op = cpu_to_le32(op);
896 h->seq = cpu_to_le64(seq);
dbd0c8bf
JS
897
898 return msg;
899}
900
342ce182
YZ
901static void encode_supported_features(void **p, void *end)
902{
903 static const unsigned char bits[] = CEPHFS_FEATURES_CLIENT_SUPPORTED;
904 static const size_t count = ARRAY_SIZE(bits);
905
906 if (count > 0) {
907 size_t i;
908 size_t size = ((size_t)bits[count - 1] + 64) / 64 * 8;
909
910 BUG_ON(*p + 4 + size > end);
911 ceph_encode_32(p, size);
912 memset(*p, 0, size);
913 for (i = 0; i < count; i++)
914 ((unsigned char*)(*p))[i / 8] |= 1 << (bits[i] % 8);
915 *p += size;
916 } else {
917 BUG_ON(*p + 4 > end);
918 ceph_encode_32(p, 0);
919 }
920}
921
dbd0c8bf
JS
922/*
923 * session message, specialization for CEPH_SESSION_REQUEST_OPEN
924 * to include additional client metadata fields.
925 */
926static struct ceph_msg *create_session_open_msg(struct ceph_mds_client *mdsc, u64 seq)
927{
928 struct ceph_msg *msg;
929 struct ceph_mds_session_head *h;
930 int i = -1;
342ce182 931 int extra_bytes = 0;
dbd0c8bf
JS
932 int metadata_key_count = 0;
933 struct ceph_options *opt = mdsc->fsc->client->options;
3f384954 934 struct ceph_mount_options *fsopt = mdsc->fsc->mount_options;
342ce182 935 void *p, *end;
dbd0c8bf 936
a6a5ce4f 937 const char* metadata[][2] = {
717e6f28
YZ
938 {"hostname", mdsc->nodename},
939 {"kernel_version", init_utsname()->release},
3f384954
YZ
940 {"entity_id", opt->name ? : ""},
941 {"root", fsopt->server_path ? : "/"},
dbd0c8bf
JS
942 {NULL, NULL}
943 };
944
945 /* Calculate serialized length of metadata */
342ce182 946 extra_bytes = 4; /* map length */
d37b1d99 947 for (i = 0; metadata[i][0]; ++i) {
342ce182 948 extra_bytes += 8 + strlen(metadata[i][0]) +
dbd0c8bf
JS
949 strlen(metadata[i][1]);
950 metadata_key_count++;
951 }
342ce182
YZ
952 /* supported feature */
953 extra_bytes += 4 + 8;
dbd0c8bf
JS
954
955 /* Allocate the message */
342ce182 956 msg = ceph_msg_new(CEPH_MSG_CLIENT_SESSION, sizeof(*h) + extra_bytes,
dbd0c8bf
JS
957 GFP_NOFS, false);
958 if (!msg) {
959 pr_err("create_session_msg ENOMEM creating msg\n");
960 return NULL;
961 }
342ce182
YZ
962 p = msg->front.iov_base;
963 end = p + msg->front.iov_len;
964
965 h = p;
dbd0c8bf
JS
966 h->op = cpu_to_le32(CEPH_SESSION_REQUEST_OPEN);
967 h->seq = cpu_to_le64(seq);
968
969 /*
970 * Serialize client metadata into waiting buffer space, using
971 * the format that userspace expects for map<string, string>
7cfa0313
JS
972 *
973 * ClientSession messages with metadata are v2
dbd0c8bf 974 */
342ce182 975 msg->hdr.version = cpu_to_le16(3);
7cfa0313 976 msg->hdr.compat_version = cpu_to_le16(1);
dbd0c8bf
JS
977
978 /* The write pointer, following the session_head structure */
342ce182 979 p += sizeof(*h);
dbd0c8bf
JS
980
981 /* Number of entries in the map */
982 ceph_encode_32(&p, metadata_key_count);
983
984 /* Two length-prefixed strings for each entry in the map */
d37b1d99 985 for (i = 0; metadata[i][0]; ++i) {
dbd0c8bf
JS
986 size_t const key_len = strlen(metadata[i][0]);
987 size_t const val_len = strlen(metadata[i][1]);
988
989 ceph_encode_32(&p, key_len);
990 memcpy(p, metadata[i][0], key_len);
991 p += key_len;
992 ceph_encode_32(&p, val_len);
993 memcpy(p, metadata[i][1], val_len);
994 p += val_len;
995 }
996
342ce182
YZ
997 encode_supported_features(&p, end);
998 msg->front.iov_len = p - msg->front.iov_base;
999 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
1000
2f2dc053
SW
1001 return msg;
1002}
1003
1004/*
1005 * send session open request.
1006 *
1007 * called under mdsc->mutex
1008 */
1009static int __open_session(struct ceph_mds_client *mdsc,
1010 struct ceph_mds_session *session)
1011{
1012 struct ceph_msg *msg;
1013 int mstate;
1014 int mds = session->s_mds;
2f2dc053
SW
1015
1016 /* wait for mds to go active? */
1017 mstate = ceph_mdsmap_get_state(mdsc->mdsmap, mds);
1018 dout("open_session to mds%d (%s)\n", mds,
1019 ceph_mds_state_name(mstate));
1020 session->s_state = CEPH_MDS_SESSION_OPENING;
1021 session->s_renew_requested = jiffies;
1022
1023 /* send connect message */
dbd0c8bf 1024 msg = create_session_open_msg(mdsc, session->s_seq);
a79832f2
SW
1025 if (!msg)
1026 return -ENOMEM;
2f2dc053 1027 ceph_con_send(&session->s_con, msg);
2f2dc053
SW
1028 return 0;
1029}
1030
ed0552a1
SW
1031/*
1032 * open sessions for any export targets for the given mds
1033 *
1034 * called under mdsc->mutex
1035 */
5d72d13c
YZ
1036static struct ceph_mds_session *
1037__open_export_target_session(struct ceph_mds_client *mdsc, int target)
1038{
1039 struct ceph_mds_session *session;
1040
1041 session = __ceph_lookup_mds_session(mdsc, target);
1042 if (!session) {
1043 session = register_session(mdsc, target);
1044 if (IS_ERR(session))
1045 return session;
1046 }
1047 if (session->s_state == CEPH_MDS_SESSION_NEW ||
1048 session->s_state == CEPH_MDS_SESSION_CLOSING)
1049 __open_session(mdsc, session);
1050
1051 return session;
1052}
1053
1054struct ceph_mds_session *
1055ceph_mdsc_open_export_target_session(struct ceph_mds_client *mdsc, int target)
1056{
1057 struct ceph_mds_session *session;
1058
1059 dout("open_export_target_session to mds%d\n", target);
1060
1061 mutex_lock(&mdsc->mutex);
1062 session = __open_export_target_session(mdsc, target);
1063 mutex_unlock(&mdsc->mutex);
1064
1065 return session;
1066}
1067
ed0552a1
SW
1068static void __open_export_target_sessions(struct ceph_mds_client *mdsc,
1069 struct ceph_mds_session *session)
1070{
1071 struct ceph_mds_info *mi;
1072 struct ceph_mds_session *ts;
1073 int i, mds = session->s_mds;
ed0552a1 1074
76201b63 1075 if (mds >= mdsc->mdsmap->m_num_mds)
ed0552a1 1076 return;
5d72d13c 1077
ed0552a1
SW
1078 mi = &mdsc->mdsmap->m_info[mds];
1079 dout("open_export_target_sessions for mds%d (%d targets)\n",
1080 session->s_mds, mi->num_export_targets);
1081
1082 for (i = 0; i < mi->num_export_targets; i++) {
5d72d13c
YZ
1083 ts = __open_export_target_session(mdsc, mi->export_targets[i]);
1084 if (!IS_ERR(ts))
1085 ceph_put_mds_session(ts);
ed0552a1
SW
1086 }
1087}
1088
154f42c2
SW
1089void ceph_mdsc_open_export_target_sessions(struct ceph_mds_client *mdsc,
1090 struct ceph_mds_session *session)
1091{
1092 mutex_lock(&mdsc->mutex);
1093 __open_export_target_sessions(mdsc, session);
1094 mutex_unlock(&mdsc->mutex);
1095}
1096
2f2dc053
SW
1097/*
1098 * session caps
1099 */
1100
c8a96a31
JL
1101static void detach_cap_releases(struct ceph_mds_session *session,
1102 struct list_head *target)
2f2dc053 1103{
c8a96a31
JL
1104 lockdep_assert_held(&session->s_cap_lock);
1105
1106 list_splice_init(&session->s_cap_releases, target);
745a8e3b 1107 session->s_num_cap_releases = 0;
c8a96a31
JL
1108 dout("dispose_cap_releases mds%d\n", session->s_mds);
1109}
2f2dc053 1110
c8a96a31
JL
1111static void dispose_cap_releases(struct ceph_mds_client *mdsc,
1112 struct list_head *dispose)
1113{
1114 while (!list_empty(dispose)) {
745a8e3b
YZ
1115 struct ceph_cap *cap;
1116 /* zero out the in-progress message */
c8a96a31 1117 cap = list_first_entry(dispose, struct ceph_cap, session_caps);
745a8e3b
YZ
1118 list_del(&cap->session_caps);
1119 ceph_put_cap(mdsc, cap);
2f2dc053 1120 }
2f2dc053
SW
1121}
1122
1c841a96
YZ
1123static void cleanup_session_requests(struct ceph_mds_client *mdsc,
1124 struct ceph_mds_session *session)
1125{
1126 struct ceph_mds_request *req;
1127 struct rb_node *p;
1128
1129 dout("cleanup_session_requests mds%d\n", session->s_mds);
1130 mutex_lock(&mdsc->mutex);
1131 while (!list_empty(&session->s_unsafe)) {
1132 req = list_first_entry(&session->s_unsafe,
1133 struct ceph_mds_request, r_unsafe_item);
3e0708b9
YZ
1134 pr_warn_ratelimited(" dropping unsafe request %llu\n",
1135 req->r_tid);
1c841a96
YZ
1136 __unregister_request(mdsc, req);
1137 }
1138 /* zero r_attempts, so kick_requests() will re-send requests */
1139 p = rb_first(&mdsc->request_tree);
1140 while (p) {
1141 req = rb_entry(p, struct ceph_mds_request, r_node);
1142 p = rb_next(p);
1143 if (req->r_session &&
1144 req->r_session->s_mds == session->s_mds)
1145 req->r_attempts = 0;
1146 }
1147 mutex_unlock(&mdsc->mutex);
1148}
1149
2f2dc053 1150/*
f818a736
SW
1151 * Helper to safely iterate over all caps associated with a session, with
1152 * special care taken to handle a racing __ceph_remove_cap().
2f2dc053 1153 *
f818a736 1154 * Caller must hold session s_mutex.
2f2dc053
SW
1155 */
1156static int iterate_session_caps(struct ceph_mds_session *session,
1157 int (*cb)(struct inode *, struct ceph_cap *,
1158 void *), void *arg)
1159{
7c1332b8
SW
1160 struct list_head *p;
1161 struct ceph_cap *cap;
1162 struct inode *inode, *last_inode = NULL;
1163 struct ceph_cap *old_cap = NULL;
2f2dc053
SW
1164 int ret;
1165
1166 dout("iterate_session_caps %p mds%d\n", session, session->s_mds);
1167 spin_lock(&session->s_cap_lock);
7c1332b8
SW
1168 p = session->s_caps.next;
1169 while (p != &session->s_caps) {
1170 cap = list_entry(p, struct ceph_cap, session_caps);
2f2dc053 1171 inode = igrab(&cap->ci->vfs_inode);
7c1332b8
SW
1172 if (!inode) {
1173 p = p->next;
2f2dc053 1174 continue;
7c1332b8
SW
1175 }
1176 session->s_cap_iterator = cap;
2f2dc053 1177 spin_unlock(&session->s_cap_lock);
7c1332b8
SW
1178
1179 if (last_inode) {
1180 iput(last_inode);
1181 last_inode = NULL;
1182 }
1183 if (old_cap) {
37151668 1184 ceph_put_cap(session->s_mdsc, old_cap);
7c1332b8
SW
1185 old_cap = NULL;
1186 }
1187
2f2dc053 1188 ret = cb(inode, cap, arg);
7c1332b8
SW
1189 last_inode = inode;
1190
2f2dc053 1191 spin_lock(&session->s_cap_lock);
7c1332b8 1192 p = p->next;
d37b1d99 1193 if (!cap->ci) {
7c1332b8
SW
1194 dout("iterate_session_caps finishing cap %p removal\n",
1195 cap);
1196 BUG_ON(cap->session != session);
745a8e3b 1197 cap->session = NULL;
7c1332b8
SW
1198 list_del_init(&cap->session_caps);
1199 session->s_nr_caps--;
745a8e3b
YZ
1200 if (cap->queue_release) {
1201 list_add_tail(&cap->session_caps,
1202 &session->s_cap_releases);
1203 session->s_num_cap_releases++;
1204 } else {
1205 old_cap = cap; /* put_cap it w/o locks held */
1206 }
7c1332b8 1207 }
5dacf091
SW
1208 if (ret < 0)
1209 goto out;
2f2dc053 1210 }
5dacf091
SW
1211 ret = 0;
1212out:
7c1332b8 1213 session->s_cap_iterator = NULL;
2f2dc053 1214 spin_unlock(&session->s_cap_lock);
7c1332b8 1215
e96a650a 1216 iput(last_inode);
7c1332b8 1217 if (old_cap)
37151668 1218 ceph_put_cap(session->s_mdsc, old_cap);
7c1332b8 1219
5dacf091 1220 return ret;
2f2dc053
SW
1221}
1222
1223static int remove_session_caps_cb(struct inode *inode, struct ceph_cap *cap,
6c99f254 1224 void *arg)
2f2dc053 1225{
6c93df5d 1226 struct ceph_fs_client *fsc = (struct ceph_fs_client *)arg;
2f2dc053 1227 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 1228 LIST_HEAD(to_remove);
6c93df5d
YZ
1229 bool drop = false;
1230 bool invalidate = false;
6c99f254 1231
2f2dc053
SW
1232 dout("removing cap %p, ci is %p, inode is %p\n",
1233 cap, ci, &ci->vfs_inode);
be655596 1234 spin_lock(&ci->i_ceph_lock);
a096b09a 1235 __ceph_remove_cap(cap, false);
571ade33 1236 if (!ci->i_auth_cap) {
553adfd9 1237 struct ceph_cap_flush *cf;
6c93df5d 1238 struct ceph_mds_client *mdsc = fsc->mdsc;
6c99f254 1239
77310320
YZ
1240 ci->i_ceph_flags |= CEPH_I_CAP_DROPPED;
1241
6c93df5d 1242 if (ci->i_wrbuffer_ref > 0 &&
52953d55 1243 READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN)
6c93df5d
YZ
1244 invalidate = true;
1245
e4500b5e
YZ
1246 while (!list_empty(&ci->i_cap_flush_list)) {
1247 cf = list_first_entry(&ci->i_cap_flush_list,
1248 struct ceph_cap_flush, i_list);
8cdcc07d 1249 list_move(&cf->i_list, &to_remove);
553adfd9
YZ
1250 }
1251
6c99f254 1252 spin_lock(&mdsc->cap_dirty_lock);
8310b089 1253
e4500b5e
YZ
1254 list_for_each_entry(cf, &to_remove, i_list)
1255 list_del(&cf->g_list);
8310b089 1256
6c99f254 1257 if (!list_empty(&ci->i_dirty_item)) {
3e0708b9
YZ
1258 pr_warn_ratelimited(
1259 " dropping dirty %s state for %p %lld\n",
6c99f254
SW
1260 ceph_cap_string(ci->i_dirty_caps),
1261 inode, ceph_ino(inode));
1262 ci->i_dirty_caps = 0;
1263 list_del_init(&ci->i_dirty_item);
6c93df5d 1264 drop = true;
6c99f254
SW
1265 }
1266 if (!list_empty(&ci->i_flushing_item)) {
3e0708b9
YZ
1267 pr_warn_ratelimited(
1268 " dropping dirty+flushing %s state for %p %lld\n",
6c99f254
SW
1269 ceph_cap_string(ci->i_flushing_caps),
1270 inode, ceph_ino(inode));
1271 ci->i_flushing_caps = 0;
1272 list_del_init(&ci->i_flushing_item);
1273 mdsc->num_cap_flushing--;
6c93df5d 1274 drop = true;
6c99f254 1275 }
6c99f254 1276 spin_unlock(&mdsc->cap_dirty_lock);
553adfd9 1277
b3f8d68f
YZ
1278 if (atomic_read(&ci->i_filelock_ref) > 0) {
1279 /* make further file lock syscall return -EIO */
1280 ci->i_ceph_flags |= CEPH_I_ERROR_FILELOCK;
1281 pr_warn_ratelimited(" dropping file locks for %p %lld\n",
1282 inode, ceph_ino(inode));
1283 }
1284
f66fd9f0 1285 if (!ci->i_dirty_caps && ci->i_prealloc_cap_flush) {
e4500b5e 1286 list_add(&ci->i_prealloc_cap_flush->i_list, &to_remove);
f66fd9f0
YZ
1287 ci->i_prealloc_cap_flush = NULL;
1288 }
6c99f254 1289 }
be655596 1290 spin_unlock(&ci->i_ceph_lock);
553adfd9
YZ
1291 while (!list_empty(&to_remove)) {
1292 struct ceph_cap_flush *cf;
1293 cf = list_first_entry(&to_remove,
e4500b5e
YZ
1294 struct ceph_cap_flush, i_list);
1295 list_del(&cf->i_list);
f66fd9f0 1296 ceph_free_cap_flush(cf);
553adfd9 1297 }
77310320
YZ
1298
1299 wake_up_all(&ci->i_cap_wq);
6c93df5d
YZ
1300 if (invalidate)
1301 ceph_queue_invalidate(inode);
77310320 1302 if (drop)
6c99f254 1303 iput(inode);
2f2dc053
SW
1304 return 0;
1305}
1306
1307/*
1308 * caller must hold session s_mutex
1309 */
1310static void remove_session_caps(struct ceph_mds_session *session)
1311{
6c93df5d
YZ
1312 struct ceph_fs_client *fsc = session->s_mdsc->fsc;
1313 struct super_block *sb = fsc->sb;
c8a96a31
JL
1314 LIST_HEAD(dispose);
1315
2f2dc053 1316 dout("remove_session_caps on %p\n", session);
6c93df5d 1317 iterate_session_caps(session, remove_session_caps_cb, fsc);
6f60f889 1318
c8799fc4
YZ
1319 wake_up_all(&fsc->mdsc->cap_flushing_wq);
1320
6f60f889
YZ
1321 spin_lock(&session->s_cap_lock);
1322 if (session->s_nr_caps > 0) {
6f60f889
YZ
1323 struct inode *inode;
1324 struct ceph_cap *cap, *prev = NULL;
1325 struct ceph_vino vino;
1326 /*
1327 * iterate_session_caps() skips inodes that are being
1328 * deleted, we need to wait until deletions are complete.
1329 * __wait_on_freeing_inode() is designed for the job,
1330 * but it is not exported, so use lookup inode function
1331 * to access it.
1332 */
1333 while (!list_empty(&session->s_caps)) {
1334 cap = list_entry(session->s_caps.next,
1335 struct ceph_cap, session_caps);
1336 if (cap == prev)
1337 break;
1338 prev = cap;
1339 vino = cap->ci->i_vino;
1340 spin_unlock(&session->s_cap_lock);
1341
ed284c49 1342 inode = ceph_find_inode(sb, vino);
6f60f889
YZ
1343 iput(inode);
1344
1345 spin_lock(&session->s_cap_lock);
1346 }
1347 }
745a8e3b
YZ
1348
1349 // drop cap expires and unlock s_cap_lock
c8a96a31 1350 detach_cap_releases(session, &dispose);
6f60f889 1351
2f2dc053 1352 BUG_ON(session->s_nr_caps > 0);
6c99f254 1353 BUG_ON(!list_empty(&session->s_cap_flushing));
c8a96a31
JL
1354 spin_unlock(&session->s_cap_lock);
1355 dispose_cap_releases(session->s_mdsc, &dispose);
2f2dc053
SW
1356}
1357
1358/*
1359 * wake up any threads waiting on this session's caps. if the cap is
1360 * old (didn't get renewed on the client reconnect), remove it now.
1361 *
1362 * caller must hold s_mutex.
1363 */
1364static int wake_up_session_cb(struct inode *inode, struct ceph_cap *cap,
1365 void *arg)
1366{
0dc2570f
SW
1367 struct ceph_inode_info *ci = ceph_inode(inode);
1368
0dc2570f 1369 if (arg) {
be655596 1370 spin_lock(&ci->i_ceph_lock);
0dc2570f
SW
1371 ci->i_wanted_max_size = 0;
1372 ci->i_requested_max_size = 0;
be655596 1373 spin_unlock(&ci->i_ceph_lock);
0dc2570f 1374 }
e5360309 1375 wake_up_all(&ci->i_cap_wq);
2f2dc053
SW
1376 return 0;
1377}
1378
0dc2570f
SW
1379static void wake_up_session_caps(struct ceph_mds_session *session,
1380 int reconnect)
2f2dc053
SW
1381{
1382 dout("wake_up_session_caps %p mds%d\n", session, session->s_mds);
0dc2570f
SW
1383 iterate_session_caps(session, wake_up_session_cb,
1384 (void *)(unsigned long)reconnect);
2f2dc053
SW
1385}
1386
1387/*
1388 * Send periodic message to MDS renewing all currently held caps. The
1389 * ack will reset the expiration for all caps from this session.
1390 *
1391 * caller holds s_mutex
1392 */
1393static int send_renew_caps(struct ceph_mds_client *mdsc,
1394 struct ceph_mds_session *session)
1395{
1396 struct ceph_msg *msg;
1397 int state;
1398
1399 if (time_after_eq(jiffies, session->s_cap_ttl) &&
1400 time_after_eq(session->s_cap_ttl, session->s_renew_requested))
1401 pr_info("mds%d caps stale\n", session->s_mds);
e4cb4cb8 1402 session->s_renew_requested = jiffies;
2f2dc053
SW
1403
1404 /* do not try to renew caps until a recovering mds has reconnected
1405 * with its clients. */
1406 state = ceph_mdsmap_get_state(mdsc->mdsmap, session->s_mds);
1407 if (state < CEPH_MDS_STATE_RECONNECT) {
1408 dout("send_renew_caps ignoring mds%d (%s)\n",
1409 session->s_mds, ceph_mds_state_name(state));
1410 return 0;
1411 }
1412
1413 dout("send_renew_caps to mds%d (%s)\n", session->s_mds,
1414 ceph_mds_state_name(state));
2f2dc053
SW
1415 msg = create_session_msg(CEPH_SESSION_REQUEST_RENEWCAPS,
1416 ++session->s_renew_seq);
a79832f2
SW
1417 if (!msg)
1418 return -ENOMEM;
2f2dc053
SW
1419 ceph_con_send(&session->s_con, msg);
1420 return 0;
1421}
1422
186e4f7a
YZ
1423static int send_flushmsg_ack(struct ceph_mds_client *mdsc,
1424 struct ceph_mds_session *session, u64 seq)
1425{
1426 struct ceph_msg *msg;
1427
1428 dout("send_flushmsg_ack to mds%d (%s)s seq %lld\n",
a687ecaf 1429 session->s_mds, ceph_session_state_name(session->s_state), seq);
186e4f7a
YZ
1430 msg = create_session_msg(CEPH_SESSION_FLUSHMSG_ACK, seq);
1431 if (!msg)
1432 return -ENOMEM;
1433 ceph_con_send(&session->s_con, msg);
1434 return 0;
1435}
1436
1437
2f2dc053
SW
1438/*
1439 * Note new cap ttl, and any transition from stale -> not stale (fresh?).
0dc2570f
SW
1440 *
1441 * Called under session->s_mutex
2f2dc053
SW
1442 */
1443static void renewed_caps(struct ceph_mds_client *mdsc,
1444 struct ceph_mds_session *session, int is_renew)
1445{
1446 int was_stale;
1447 int wake = 0;
1448
1449 spin_lock(&session->s_cap_lock);
1ce208a6 1450 was_stale = is_renew && time_after_eq(jiffies, session->s_cap_ttl);
2f2dc053
SW
1451
1452 session->s_cap_ttl = session->s_renew_requested +
1453 mdsc->mdsmap->m_session_timeout*HZ;
1454
1455 if (was_stale) {
1456 if (time_before(jiffies, session->s_cap_ttl)) {
1457 pr_info("mds%d caps renewed\n", session->s_mds);
1458 wake = 1;
1459 } else {
1460 pr_info("mds%d caps still stale\n", session->s_mds);
1461 }
1462 }
1463 dout("renewed_caps mds%d ttl now %lu, was %s, now %s\n",
1464 session->s_mds, session->s_cap_ttl, was_stale ? "stale" : "fresh",
1465 time_before(jiffies, session->s_cap_ttl) ? "stale" : "fresh");
1466 spin_unlock(&session->s_cap_lock);
1467
1468 if (wake)
0dc2570f 1469 wake_up_session_caps(session, 0);
2f2dc053
SW
1470}
1471
1472/*
1473 * send a session close request
1474 */
1475static int request_close_session(struct ceph_mds_client *mdsc,
1476 struct ceph_mds_session *session)
1477{
1478 struct ceph_msg *msg;
2f2dc053
SW
1479
1480 dout("request_close_session mds%d state %s seq %lld\n",
a687ecaf 1481 session->s_mds, ceph_session_state_name(session->s_state),
2f2dc053
SW
1482 session->s_seq);
1483 msg = create_session_msg(CEPH_SESSION_REQUEST_CLOSE, session->s_seq);
a79832f2
SW
1484 if (!msg)
1485 return -ENOMEM;
1486 ceph_con_send(&session->s_con, msg);
fcff415c 1487 return 1;
2f2dc053
SW
1488}
1489
1490/*
1491 * Called with s_mutex held.
1492 */
1493static int __close_session(struct ceph_mds_client *mdsc,
1494 struct ceph_mds_session *session)
1495{
1496 if (session->s_state >= CEPH_MDS_SESSION_CLOSING)
1497 return 0;
1498 session->s_state = CEPH_MDS_SESSION_CLOSING;
1499 return request_close_session(mdsc, session);
1500}
1501
040d7860
YZ
1502static bool drop_negative_children(struct dentry *dentry)
1503{
1504 struct dentry *child;
1505 bool all_negative = true;
1506
1507 if (!d_is_dir(dentry))
1508 goto out;
1509
1510 spin_lock(&dentry->d_lock);
1511 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
1512 if (d_really_is_positive(child)) {
1513 all_negative = false;
1514 break;
1515 }
1516 }
1517 spin_unlock(&dentry->d_lock);
1518
1519 if (all_negative)
1520 shrink_dcache_parent(dentry);
1521out:
1522 return all_negative;
1523}
1524
2f2dc053
SW
1525/*
1526 * Trim old(er) caps.
1527 *
1528 * Because we can't cache an inode without one or more caps, we do
1529 * this indirectly: if a cap is unused, we prune its aliases, at which
1530 * point the inode will hopefully get dropped to.
1531 *
1532 * Yes, this is a bit sloppy. Our only real goal here is to respond to
1533 * memory pressure from the MDS, though, so it needn't be perfect.
1534 */
1535static int trim_caps_cb(struct inode *inode, struct ceph_cap *cap, void *arg)
1536{
1537 struct ceph_mds_session *session = arg;
1538 struct ceph_inode_info *ci = ceph_inode(inode);
979abfdd 1539 int used, wanted, oissued, mine;
2f2dc053
SW
1540
1541 if (session->s_trim_caps <= 0)
1542 return -1;
1543
be655596 1544 spin_lock(&ci->i_ceph_lock);
2f2dc053
SW
1545 mine = cap->issued | cap->implemented;
1546 used = __ceph_caps_used(ci);
979abfdd 1547 wanted = __ceph_caps_file_wanted(ci);
2f2dc053
SW
1548 oissued = __ceph_caps_issued_other(ci, cap);
1549
979abfdd 1550 dout("trim_caps_cb %p cap %p mine %s oissued %s used %s wanted %s\n",
2f2dc053 1551 inode, cap, ceph_cap_string(mine), ceph_cap_string(oissued),
979abfdd
YZ
1552 ceph_cap_string(used), ceph_cap_string(wanted));
1553 if (cap == ci->i_auth_cap) {
622f3e25
YZ
1554 if (ci->i_dirty_caps || ci->i_flushing_caps ||
1555 !list_empty(&ci->i_cap_snaps))
979abfdd
YZ
1556 goto out;
1557 if ((used | wanted) & CEPH_CAP_ANY_WR)
1558 goto out;
89aa5930
YZ
1559 /* Note: it's possible that i_filelock_ref becomes non-zero
1560 * after dropping auth caps. It doesn't hurt because reply
1561 * of lock mds request will re-add auth caps. */
1562 if (atomic_read(&ci->i_filelock_ref) > 0)
1563 goto out;
979abfdd 1564 }
5e804ac4
YZ
1565 /* The inode has cached pages, but it's no longer used.
1566 * we can safely drop it */
1567 if (wanted == 0 && used == CEPH_CAP_FILE_CACHE &&
1568 !(oissued & CEPH_CAP_FILE_CACHE)) {
1569 used = 0;
1570 oissued = 0;
1571 }
979abfdd 1572 if ((used | wanted) & ~oissued & mine)
2f2dc053
SW
1573 goto out; /* we need these caps */
1574
2f2dc053
SW
1575 if (oissued) {
1576 /* we aren't the only cap.. just remove us */
a096b09a 1577 __ceph_remove_cap(cap, true);
040d7860 1578 session->s_trim_caps--;
2f2dc053 1579 } else {
040d7860 1580 struct dentry *dentry;
5e804ac4 1581 /* try dropping referring dentries */
be655596 1582 spin_unlock(&ci->i_ceph_lock);
040d7860
YZ
1583 dentry = d_find_any_alias(inode);
1584 if (dentry && drop_negative_children(dentry)) {
1585 int count;
1586 dput(dentry);
1587 d_prune_aliases(inode);
1588 count = atomic_read(&inode->i_count);
1589 if (count == 1)
1590 session->s_trim_caps--;
1591 dout("trim_caps_cb %p cap %p pruned, count now %d\n",
1592 inode, cap, count);
1593 } else {
1594 dput(dentry);
1595 }
2f2dc053
SW
1596 return 0;
1597 }
1598
1599out:
be655596 1600 spin_unlock(&ci->i_ceph_lock);
2f2dc053
SW
1601 return 0;
1602}
1603
1604/*
1605 * Trim session cap count down to some max number.
1606 */
e30ee581
ZZ
1607int ceph_trim_caps(struct ceph_mds_client *mdsc,
1608 struct ceph_mds_session *session,
1609 int max_caps)
2f2dc053
SW
1610{
1611 int trim_caps = session->s_nr_caps - max_caps;
1612
1613 dout("trim_caps mds%d start: %d / %d, trim %d\n",
1614 session->s_mds, session->s_nr_caps, max_caps, trim_caps);
1615 if (trim_caps > 0) {
1616 session->s_trim_caps = trim_caps;
1617 iterate_session_caps(session, trim_caps_cb, session);
1618 dout("trim_caps mds%d done: %d / %d, trimmed %d\n",
1619 session->s_mds, session->s_nr_caps, max_caps,
1620 trim_caps - session->s_trim_caps);
5dacf091 1621 session->s_trim_caps = 0;
2f2dc053 1622 }
a56371d9 1623
a56371d9 1624 ceph_send_cap_releases(mdsc, session);
2f2dc053
SW
1625 return 0;
1626}
1627
8310b089
YZ
1628static int check_caps_flush(struct ceph_mds_client *mdsc,
1629 u64 want_flush_tid)
1630{
8310b089
YZ
1631 int ret = 1;
1632
1633 spin_lock(&mdsc->cap_dirty_lock);
e4500b5e
YZ
1634 if (!list_empty(&mdsc->cap_flush_list)) {
1635 struct ceph_cap_flush *cf =
1636 list_first_entry(&mdsc->cap_flush_list,
1637 struct ceph_cap_flush, g_list);
1638 if (cf->tid <= want_flush_tid) {
1639 dout("check_caps_flush still flushing tid "
1640 "%llu <= %llu\n", cf->tid, want_flush_tid);
1641 ret = 0;
1642 }
8310b089
YZ
1643 }
1644 spin_unlock(&mdsc->cap_dirty_lock);
1645 return ret;
d3383a8e
YZ
1646}
1647
2f2dc053
SW
1648/*
1649 * flush all dirty inode data to disk.
1650 *
8310b089 1651 * returns true if we've flushed through want_flush_tid
2f2dc053 1652 */
affbc19a 1653static void wait_caps_flush(struct ceph_mds_client *mdsc,
0e294387 1654 u64 want_flush_tid)
2f2dc053 1655{
0e294387 1656 dout("check_caps_flush want %llu\n", want_flush_tid);
8310b089
YZ
1657
1658 wait_event(mdsc->cap_flushing_wq,
1659 check_caps_flush(mdsc, want_flush_tid));
1660
1661 dout("check_caps_flush ok, flushed thru %llu\n", want_flush_tid);
2f2dc053
SW
1662}
1663
1664/*
1665 * called under s_mutex
1666 */
3d7ded4d
SW
1667void ceph_send_cap_releases(struct ceph_mds_client *mdsc,
1668 struct ceph_mds_session *session)
2f2dc053 1669{
745a8e3b
YZ
1670 struct ceph_msg *msg = NULL;
1671 struct ceph_mds_cap_release *head;
1672 struct ceph_mds_cap_item *item;
92475f05 1673 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
745a8e3b
YZ
1674 struct ceph_cap *cap;
1675 LIST_HEAD(tmp_list);
1676 int num_cap_releases;
92475f05
JL
1677 __le32 barrier, *cap_barrier;
1678
1679 down_read(&osdc->lock);
1680 barrier = cpu_to_le32(osdc->epoch_barrier);
1681 up_read(&osdc->lock);
2f2dc053 1682
0f8605f2 1683 spin_lock(&session->s_cap_lock);
745a8e3b
YZ
1684again:
1685 list_splice_init(&session->s_cap_releases, &tmp_list);
1686 num_cap_releases = session->s_num_cap_releases;
1687 session->s_num_cap_releases = 0;
2f2dc053 1688 spin_unlock(&session->s_cap_lock);
e01a5946 1689
745a8e3b
YZ
1690 while (!list_empty(&tmp_list)) {
1691 if (!msg) {
1692 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPRELEASE,
09cbfeaf 1693 PAGE_SIZE, GFP_NOFS, false);
745a8e3b
YZ
1694 if (!msg)
1695 goto out_err;
1696 head = msg->front.iov_base;
1697 head->num = cpu_to_le32(0);
1698 msg->front.iov_len = sizeof(*head);
92475f05
JL
1699
1700 msg->hdr.version = cpu_to_le16(2);
1701 msg->hdr.compat_version = cpu_to_le16(1);
745a8e3b 1702 }
92475f05 1703
745a8e3b
YZ
1704 cap = list_first_entry(&tmp_list, struct ceph_cap,
1705 session_caps);
1706 list_del(&cap->session_caps);
1707 num_cap_releases--;
e01a5946 1708
00bd8edb 1709 head = msg->front.iov_base;
745a8e3b
YZ
1710 le32_add_cpu(&head->num, 1);
1711 item = msg->front.iov_base + msg->front.iov_len;
1712 item->ino = cpu_to_le64(cap->cap_ino);
1713 item->cap_id = cpu_to_le64(cap->cap_id);
1714 item->migrate_seq = cpu_to_le32(cap->mseq);
1715 item->seq = cpu_to_le32(cap->issue_seq);
1716 msg->front.iov_len += sizeof(*item);
1717
1718 ceph_put_cap(mdsc, cap);
1719
1720 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
92475f05
JL
1721 // Append cap_barrier field
1722 cap_barrier = msg->front.iov_base + msg->front.iov_len;
1723 *cap_barrier = barrier;
1724 msg->front.iov_len += sizeof(*cap_barrier);
1725
745a8e3b
YZ
1726 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
1727 dout("send_cap_releases mds%d %p\n", session->s_mds, msg);
1728 ceph_con_send(&session->s_con, msg);
1729 msg = NULL;
1730 }
00bd8edb 1731 }
e01a5946 1732
745a8e3b 1733 BUG_ON(num_cap_releases != 0);
e01a5946 1734
745a8e3b
YZ
1735 spin_lock(&session->s_cap_lock);
1736 if (!list_empty(&session->s_cap_releases))
1737 goto again;
1738 spin_unlock(&session->s_cap_lock);
1739
1740 if (msg) {
92475f05
JL
1741 // Append cap_barrier field
1742 cap_barrier = msg->front.iov_base + msg->front.iov_len;
1743 *cap_barrier = barrier;
1744 msg->front.iov_len += sizeof(*cap_barrier);
1745
745a8e3b
YZ
1746 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
1747 dout("send_cap_releases mds%d %p\n", session->s_mds, msg);
1748 ceph_con_send(&session->s_con, msg);
e01a5946 1749 }
745a8e3b
YZ
1750 return;
1751out_err:
1752 pr_err("send_cap_releases mds%d, failed to allocate message\n",
1753 session->s_mds);
1754 spin_lock(&session->s_cap_lock);
1755 list_splice(&tmp_list, &session->s_cap_releases);
1756 session->s_num_cap_releases += num_cap_releases;
1757 spin_unlock(&session->s_cap_lock);
e01a5946
SW
1758}
1759
2f2dc053
SW
1760/*
1761 * requests
1762 */
1763
54008399
YZ
1764int ceph_alloc_readdir_reply_buffer(struct ceph_mds_request *req,
1765 struct inode *dir)
1766{
1767 struct ceph_inode_info *ci = ceph_inode(dir);
1768 struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
1769 struct ceph_mount_options *opt = req->r_mdsc->fsc->mount_options;
2a5beea3 1770 size_t size = sizeof(struct ceph_mds_reply_dir_entry);
54008399
YZ
1771 int order, num_entries;
1772
1773 spin_lock(&ci->i_ceph_lock);
1774 num_entries = ci->i_files + ci->i_subdirs;
1775 spin_unlock(&ci->i_ceph_lock);
1776 num_entries = max(num_entries, 1);
1777 num_entries = min(num_entries, opt->max_readdir);
1778
1779 order = get_order(size * num_entries);
1780 while (order >= 0) {
2a5beea3
YZ
1781 rinfo->dir_entries = (void*)__get_free_pages(GFP_KERNEL |
1782 __GFP_NOWARN,
1783 order);
1784 if (rinfo->dir_entries)
54008399
YZ
1785 break;
1786 order--;
1787 }
2a5beea3 1788 if (!rinfo->dir_entries)
54008399
YZ
1789 return -ENOMEM;
1790
1791 num_entries = (PAGE_SIZE << order) / size;
1792 num_entries = min(num_entries, opt->max_readdir);
1793
1794 rinfo->dir_buf_size = PAGE_SIZE << order;
1795 req->r_num_caps = num_entries + 1;
1796 req->r_args.readdir.max_entries = cpu_to_le32(num_entries);
1797 req->r_args.readdir.max_bytes = cpu_to_le32(opt->max_readdir_bytes);
1798 return 0;
1799}
1800
2f2dc053
SW
1801/*
1802 * Create an mds request.
1803 */
1804struct ceph_mds_request *
1805ceph_mdsc_create_request(struct ceph_mds_client *mdsc, int op, int mode)
1806{
1807 struct ceph_mds_request *req = kzalloc(sizeof(*req), GFP_NOFS);
63ecae7e 1808 struct timespec64 ts;
2f2dc053
SW
1809
1810 if (!req)
1811 return ERR_PTR(-ENOMEM);
1812
b4556396 1813 mutex_init(&req->r_fill_mutex);
37151668 1814 req->r_mdsc = mdsc;
2f2dc053
SW
1815 req->r_started = jiffies;
1816 req->r_resend_mds = -1;
1817 INIT_LIST_HEAD(&req->r_unsafe_dir_item);
68cd5b4b 1818 INIT_LIST_HEAD(&req->r_unsafe_target_item);
2f2dc053 1819 req->r_fmode = -1;
153c8e6b 1820 kref_init(&req->r_kref);
fcd00b68 1821 RB_CLEAR_NODE(&req->r_node);
2f2dc053
SW
1822 INIT_LIST_HEAD(&req->r_wait);
1823 init_completion(&req->r_completion);
1824 init_completion(&req->r_safe_completion);
1825 INIT_LIST_HEAD(&req->r_unsafe_item);
1826
63ecae7e 1827 ktime_get_coarse_real_ts64(&ts);
0ed1e90a 1828 req->r_stamp = timespec64_trunc(ts, mdsc->fsc->sb->s_time_gran);
b8e69066 1829
2f2dc053
SW
1830 req->r_op = op;
1831 req->r_direct_mode = mode;
1832 return req;
1833}
1834
1835/*
44ca18f2 1836 * return oldest (lowest) request, tid in request tree, 0 if none.
2f2dc053
SW
1837 *
1838 * called under mdsc->mutex.
1839 */
44ca18f2
SW
1840static struct ceph_mds_request *__get_oldest_req(struct ceph_mds_client *mdsc)
1841{
1842 if (RB_EMPTY_ROOT(&mdsc->request_tree))
1843 return NULL;
1844 return rb_entry(rb_first(&mdsc->request_tree),
1845 struct ceph_mds_request, r_node);
1846}
1847
e8a7b8b1 1848static inline u64 __get_oldest_tid(struct ceph_mds_client *mdsc)
2f2dc053 1849{
e8a7b8b1 1850 return mdsc->oldest_tid;
2f2dc053
SW
1851}
1852
1853/*
1854 * Build a dentry's path. Allocate on heap; caller must kfree. Based
1855 * on build_path_from_dentry in fs/cifs/dir.c.
1856 *
1857 * If @stop_on_nosnap, generate path relative to the first non-snapped
1858 * inode.
1859 *
1860 * Encode hidden .snap dirs as a double /, i.e.
1861 * foo/.snap/bar -> foo//bar
1862 */
1863char *ceph_mdsc_build_path(struct dentry *dentry, int *plen, u64 *base,
1864 int stop_on_nosnap)
1865{
1866 struct dentry *temp;
1867 char *path;
1868 int len, pos;
1b71fe2e 1869 unsigned seq;
2f2dc053 1870
d37b1d99 1871 if (!dentry)
2f2dc053
SW
1872 return ERR_PTR(-EINVAL);
1873
1874retry:
1875 len = 0;
1b71fe2e
AV
1876 seq = read_seqbegin(&rename_lock);
1877 rcu_read_lock();
2f2dc053 1878 for (temp = dentry; !IS_ROOT(temp);) {
2b0143b5 1879 struct inode *inode = d_inode(temp);
2f2dc053
SW
1880 if (inode && ceph_snap(inode) == CEPH_SNAPDIR)
1881 len++; /* slash only */
1882 else if (stop_on_nosnap && inode &&
1883 ceph_snap(inode) == CEPH_NOSNAP)
1884 break;
1885 else
1886 len += 1 + temp->d_name.len;
1887 temp = temp->d_parent;
2f2dc053 1888 }
1b71fe2e 1889 rcu_read_unlock();
2f2dc053
SW
1890 if (len)
1891 len--; /* no leading '/' */
1892
1893 path = kmalloc(len+1, GFP_NOFS);
d37b1d99 1894 if (!path)
2f2dc053
SW
1895 return ERR_PTR(-ENOMEM);
1896 pos = len;
1897 path[pos] = 0; /* trailing null */
1b71fe2e 1898 rcu_read_lock();
2f2dc053 1899 for (temp = dentry; !IS_ROOT(temp) && pos != 0; ) {
1b71fe2e 1900 struct inode *inode;
2f2dc053 1901
1b71fe2e 1902 spin_lock(&temp->d_lock);
2b0143b5 1903 inode = d_inode(temp);
2f2dc053 1904 if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
104648ad 1905 dout("build_path path+%d: %p SNAPDIR\n",
2f2dc053
SW
1906 pos, temp);
1907 } else if (stop_on_nosnap && inode &&
1908 ceph_snap(inode) == CEPH_NOSNAP) {
9d5a09e6 1909 spin_unlock(&temp->d_lock);
2f2dc053
SW
1910 break;
1911 } else {
1912 pos -= temp->d_name.len;
1b71fe2e
AV
1913 if (pos < 0) {
1914 spin_unlock(&temp->d_lock);
2f2dc053 1915 break;
1b71fe2e 1916 }
2f2dc053
SW
1917 strncpy(path + pos, temp->d_name.name,
1918 temp->d_name.len);
2f2dc053 1919 }
1b71fe2e 1920 spin_unlock(&temp->d_lock);
2f2dc053
SW
1921 if (pos)
1922 path[--pos] = '/';
1923 temp = temp->d_parent;
2f2dc053 1924 }
1b71fe2e
AV
1925 rcu_read_unlock();
1926 if (pos != 0 || read_seqretry(&rename_lock, seq)) {
104648ad 1927 pr_err("build_path did not end path lookup where "
2f2dc053
SW
1928 "expected, namelen is %d, pos is %d\n", len, pos);
1929 /* presumably this is only possible if racing with a
1930 rename of one of the parent directories (we can not
1931 lock the dentries above us to prevent this, but
1932 retrying should be harmless) */
1933 kfree(path);
1934 goto retry;
1935 }
1936
2b0143b5 1937 *base = ceph_ino(d_inode(temp));
2f2dc053 1938 *plen = len;
104648ad 1939 dout("build_path on %p %d built %llx '%.*s'\n",
84d08fa8 1940 dentry, d_count(dentry), *base, len, path);
2f2dc053
SW
1941 return path;
1942}
1943
fd36a717 1944static int build_dentry_path(struct dentry *dentry, struct inode *dir,
2f2dc053
SW
1945 const char **ppath, int *ppathlen, u64 *pino,
1946 int *pfreepath)
1947{
1948 char *path;
1949
c6b0b656 1950 rcu_read_lock();
fd36a717
JL
1951 if (!dir)
1952 dir = d_inode_rcu(dentry->d_parent);
c6b0b656
JL
1953 if (dir && ceph_snap(dir) == CEPH_NOSNAP) {
1954 *pino = ceph_ino(dir);
1955 rcu_read_unlock();
2f2dc053
SW
1956 *ppath = dentry->d_name.name;
1957 *ppathlen = dentry->d_name.len;
1958 return 0;
1959 }
c6b0b656 1960 rcu_read_unlock();
2f2dc053
SW
1961 path = ceph_mdsc_build_path(dentry, ppathlen, pino, 1);
1962 if (IS_ERR(path))
1963 return PTR_ERR(path);
1964 *ppath = path;
1965 *pfreepath = 1;
1966 return 0;
1967}
1968
1969static int build_inode_path(struct inode *inode,
1970 const char **ppath, int *ppathlen, u64 *pino,
1971 int *pfreepath)
1972{
1973 struct dentry *dentry;
1974 char *path;
1975
1976 if (ceph_snap(inode) == CEPH_NOSNAP) {
1977 *pino = ceph_ino(inode);
1978 *ppathlen = 0;
1979 return 0;
1980 }
1981 dentry = d_find_alias(inode);
1982 path = ceph_mdsc_build_path(dentry, ppathlen, pino, 1);
1983 dput(dentry);
1984 if (IS_ERR(path))
1985 return PTR_ERR(path);
1986 *ppath = path;
1987 *pfreepath = 1;
1988 return 0;
1989}
1990
1991/*
1992 * request arguments may be specified via an inode *, a dentry *, or
1993 * an explicit ino+path.
1994 */
1995static int set_request_path_attr(struct inode *rinode, struct dentry *rdentry,
fd36a717
JL
1996 struct inode *rdiri, const char *rpath,
1997 u64 rino, const char **ppath, int *pathlen,
2f2dc053
SW
1998 u64 *ino, int *freepath)
1999{
2000 int r = 0;
2001
2002 if (rinode) {
2003 r = build_inode_path(rinode, ppath, pathlen, ino, freepath);
2004 dout(" inode %p %llx.%llx\n", rinode, ceph_ino(rinode),
2005 ceph_snap(rinode));
2006 } else if (rdentry) {
fd36a717
JL
2007 r = build_dentry_path(rdentry, rdiri, ppath, pathlen, ino,
2008 freepath);
2f2dc053
SW
2009 dout(" dentry %p %llx/%.*s\n", rdentry, *ino, *pathlen,
2010 *ppath);
795858db 2011 } else if (rpath || rino) {
2f2dc053
SW
2012 *ino = rino;
2013 *ppath = rpath;
b000056a 2014 *pathlen = rpath ? strlen(rpath) : 0;
2f2dc053
SW
2015 dout(" path %.*s\n", *pathlen, rpath);
2016 }
2017
2018 return r;
2019}
2020
2021/*
2022 * called under mdsc->mutex
2023 */
2024static struct ceph_msg *create_request_message(struct ceph_mds_client *mdsc,
2025 struct ceph_mds_request *req,
6e6f0923 2026 int mds, bool drop_cap_releases)
2f2dc053
SW
2027{
2028 struct ceph_msg *msg;
2029 struct ceph_mds_request_head *head;
2030 const char *path1 = NULL;
2031 const char *path2 = NULL;
2032 u64 ino1 = 0, ino2 = 0;
2033 int pathlen1 = 0, pathlen2 = 0;
2034 int freepath1 = 0, freepath2 = 0;
2035 int len;
2036 u16 releases;
2037 void *p, *end;
2038 int ret;
2039
2040 ret = set_request_path_attr(req->r_inode, req->r_dentry,
3dd69aab 2041 req->r_parent, req->r_path1, req->r_ino1.ino,
2f2dc053
SW
2042 &path1, &pathlen1, &ino1, &freepath1);
2043 if (ret < 0) {
2044 msg = ERR_PTR(ret);
2045 goto out;
2046 }
2047
2048 ret = set_request_path_attr(NULL, req->r_old_dentry,
fd36a717 2049 req->r_old_dentry_dir,
2f2dc053
SW
2050 req->r_path2, req->r_ino2.ino,
2051 &path2, &pathlen2, &ino2, &freepath2);
2052 if (ret < 0) {
2053 msg = ERR_PTR(ret);
2054 goto out_free1;
2055 }
2056
2057 len = sizeof(*head) +
b8e69066 2058 pathlen1 + pathlen2 + 2*(1 + sizeof(u32) + sizeof(u64)) +
777d738a 2059 sizeof(struct ceph_timespec);
2f2dc053
SW
2060
2061 /* calculate (max) length for cap releases */
2062 len += sizeof(struct ceph_mds_request_release) *
2063 (!!req->r_inode_drop + !!req->r_dentry_drop +
2064 !!req->r_old_inode_drop + !!req->r_old_dentry_drop);
2065 if (req->r_dentry_drop)
2066 len += req->r_dentry->d_name.len;
2067 if (req->r_old_dentry_drop)
2068 len += req->r_old_dentry->d_name.len;
2069
0d9c1ab3 2070 msg = ceph_msg_new2(CEPH_MSG_CLIENT_REQUEST, len, 1, GFP_NOFS, false);
a79832f2
SW
2071 if (!msg) {
2072 msg = ERR_PTR(-ENOMEM);
2f2dc053 2073 goto out_free2;
a79832f2 2074 }
2f2dc053 2075
7cfa0313 2076 msg->hdr.version = cpu_to_le16(2);
6df058c0
SW
2077 msg->hdr.tid = cpu_to_le64(req->r_tid);
2078
2f2dc053
SW
2079 head = msg->front.iov_base;
2080 p = msg->front.iov_base + sizeof(*head);
2081 end = msg->front.iov_base + msg->front.iov_len;
2082
2083 head->mdsmap_epoch = cpu_to_le32(mdsc->mdsmap->m_epoch);
2084 head->op = cpu_to_le32(req->r_op);
ff3d0046
EB
2085 head->caller_uid = cpu_to_le32(from_kuid(&init_user_ns, req->r_uid));
2086 head->caller_gid = cpu_to_le32(from_kgid(&init_user_ns, req->r_gid));
2f2dc053
SW
2087 head->args = req->r_args;
2088
2089 ceph_encode_filepath(&p, end, ino1, path1);
2090 ceph_encode_filepath(&p, end, ino2, path2);
2091
e979cf50
SW
2092 /* make note of release offset, in case we need to replay */
2093 req->r_request_release_offset = p - msg->front.iov_base;
2094
2f2dc053
SW
2095 /* cap releases */
2096 releases = 0;
2097 if (req->r_inode_drop)
2098 releases += ceph_encode_inode_release(&p,
2b0143b5 2099 req->r_inode ? req->r_inode : d_inode(req->r_dentry),
2f2dc053
SW
2100 mds, req->r_inode_drop, req->r_inode_unless, 0);
2101 if (req->r_dentry_drop)
2102 releases += ceph_encode_dentry_release(&p, req->r_dentry,
3dd69aab 2103 req->r_parent, mds, req->r_dentry_drop,
ca6c8ae0 2104 req->r_dentry_unless);
2f2dc053
SW
2105 if (req->r_old_dentry_drop)
2106 releases += ceph_encode_dentry_release(&p, req->r_old_dentry,
ca6c8ae0
JL
2107 req->r_old_dentry_dir, mds,
2108 req->r_old_dentry_drop,
2109 req->r_old_dentry_unless);
2f2dc053
SW
2110 if (req->r_old_inode_drop)
2111 releases += ceph_encode_inode_release(&p,
2b0143b5 2112 d_inode(req->r_old_dentry),
2f2dc053 2113 mds, req->r_old_inode_drop, req->r_old_inode_unless, 0);
6e6f0923
YZ
2114
2115 if (drop_cap_releases) {
2116 releases = 0;
2117 p = msg->front.iov_base + req->r_request_release_offset;
2118 }
2119
2f2dc053
SW
2120 head->num_releases = cpu_to_le16(releases);
2121
b8e69066 2122 /* time stamp */
1f041a89
YZ
2123 {
2124 struct ceph_timespec ts;
0ed1e90a 2125 ceph_encode_timespec64(&ts, &req->r_stamp);
1f041a89
YZ
2126 ceph_encode_copy(&p, &ts, sizeof(ts));
2127 }
b8e69066 2128
2f2dc053
SW
2129 BUG_ON(p > end);
2130 msg->front.iov_len = p - msg->front.iov_base;
2131 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2132
25e6bae3
YZ
2133 if (req->r_pagelist) {
2134 struct ceph_pagelist *pagelist = req->r_pagelist;
25e6bae3
YZ
2135 ceph_msg_data_add_pagelist(msg, pagelist);
2136 msg->hdr.data_len = cpu_to_le32(pagelist->length);
2137 } else {
2138 msg->hdr.data_len = 0;
ebf18f47 2139 }
02afca6c 2140
2f2dc053
SW
2141 msg->hdr.data_off = cpu_to_le16(0);
2142
2143out_free2:
2144 if (freepath2)
2145 kfree((char *)path2);
2146out_free1:
2147 if (freepath1)
2148 kfree((char *)path1);
2149out:
2150 return msg;
2151}
2152
2153/*
2154 * called under mdsc->mutex if error, under no mutex if
2155 * success.
2156 */
2157static void complete_request(struct ceph_mds_client *mdsc,
2158 struct ceph_mds_request *req)
2159{
2160 if (req->r_callback)
2161 req->r_callback(mdsc, req);
2162 else
03066f23 2163 complete_all(&req->r_completion);
2f2dc053
SW
2164}
2165
2166/*
2167 * called under mdsc->mutex
2168 */
2169static int __prepare_send_request(struct ceph_mds_client *mdsc,
2170 struct ceph_mds_request *req,
6e6f0923 2171 int mds, bool drop_cap_releases)
2f2dc053
SW
2172{
2173 struct ceph_mds_request_head *rhead;
2174 struct ceph_msg *msg;
2175 int flags = 0;
2176
2f2dc053 2177 req->r_attempts++;
e55b71f8
GF
2178 if (req->r_inode) {
2179 struct ceph_cap *cap =
2180 ceph_get_cap_for_mds(ceph_inode(req->r_inode), mds);
2181
2182 if (cap)
2183 req->r_sent_on_mseq = cap->mseq;
2184 else
2185 req->r_sent_on_mseq = -1;
2186 }
2f2dc053
SW
2187 dout("prepare_send_request %p tid %lld %s (attempt %d)\n", req,
2188 req->r_tid, ceph_mds_op_name(req->r_op), req->r_attempts);
2189
bc2de10d 2190 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
c5c9a0bf 2191 void *p;
01a92f17
SW
2192 /*
2193 * Replay. Do not regenerate message (and rebuild
2194 * paths, etc.); just use the original message.
2195 * Rebuilding paths will break for renames because
2196 * d_move mangles the src name.
2197 */
2198 msg = req->r_request;
2199 rhead = msg->front.iov_base;
2200
2201 flags = le32_to_cpu(rhead->flags);
2202 flags |= CEPH_MDS_FLAG_REPLAY;
2203 rhead->flags = cpu_to_le32(flags);
2204
2205 if (req->r_target_inode)
2206 rhead->ino = cpu_to_le64(ceph_ino(req->r_target_inode));
2207
2208 rhead->num_retry = req->r_attempts - 1;
e979cf50
SW
2209
2210 /* remove cap/dentry releases from message */
2211 rhead->num_releases = 0;
c5c9a0bf
YZ
2212
2213 /* time stamp */
2214 p = msg->front.iov_base + req->r_request_release_offset;
1f041a89
YZ
2215 {
2216 struct ceph_timespec ts;
0ed1e90a 2217 ceph_encode_timespec64(&ts, &req->r_stamp);
1f041a89
YZ
2218 ceph_encode_copy(&p, &ts, sizeof(ts));
2219 }
c5c9a0bf
YZ
2220
2221 msg->front.iov_len = p - msg->front.iov_base;
2222 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
01a92f17
SW
2223 return 0;
2224 }
2225
2f2dc053
SW
2226 if (req->r_request) {
2227 ceph_msg_put(req->r_request);
2228 req->r_request = NULL;
2229 }
6e6f0923 2230 msg = create_request_message(mdsc, req, mds, drop_cap_releases);
2f2dc053 2231 if (IS_ERR(msg)) {
e1518c7c 2232 req->r_err = PTR_ERR(msg);
a79832f2 2233 return PTR_ERR(msg);
2f2dc053
SW
2234 }
2235 req->r_request = msg;
2236
2237 rhead = msg->front.iov_base;
2f2dc053 2238 rhead->oldest_client_tid = cpu_to_le64(__get_oldest_tid(mdsc));
bc2de10d 2239 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
2f2dc053 2240 flags |= CEPH_MDS_FLAG_REPLAY;
3dd69aab 2241 if (req->r_parent)
2f2dc053
SW
2242 flags |= CEPH_MDS_FLAG_WANT_DENTRY;
2243 rhead->flags = cpu_to_le32(flags);
2244 rhead->num_fwd = req->r_num_fwd;
2245 rhead->num_retry = req->r_attempts - 1;
01a92f17 2246 rhead->ino = 0;
2f2dc053 2247
3dd69aab 2248 dout(" r_parent = %p\n", req->r_parent);
2f2dc053
SW
2249 return 0;
2250}
2251
2252/*
2253 * send request, or put it on the appropriate wait list.
2254 */
d5548492 2255static void __do_request(struct ceph_mds_client *mdsc,
2f2dc053
SW
2256 struct ceph_mds_request *req)
2257{
2258 struct ceph_mds_session *session = NULL;
2259 int mds = -1;
48fec5d0 2260 int err = 0;
2f2dc053 2261
bc2de10d
JL
2262 if (req->r_err || test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags)) {
2263 if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags))
eb1b8af3 2264 __unregister_request(mdsc, req);
d5548492 2265 return;
eb1b8af3 2266 }
2f2dc053
SW
2267
2268 if (req->r_timeout &&
2269 time_after_eq(jiffies, req->r_started + req->r_timeout)) {
2270 dout("do_request timed out\n");
2271 err = -EIO;
2272 goto finish;
2273 }
52953d55 2274 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
48fec5d0
YZ
2275 dout("do_request forced umount\n");
2276 err = -EIO;
2277 goto finish;
2278 }
52953d55 2279 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_MOUNTING) {
e9e427f0
YZ
2280 if (mdsc->mdsmap_err) {
2281 err = mdsc->mdsmap_err;
2282 dout("do_request mdsmap err %d\n", err);
2283 goto finish;
2284 }
cc8e8342
YZ
2285 if (mdsc->mdsmap->m_epoch == 0) {
2286 dout("do_request no mdsmap, waiting for map\n");
2287 list_add(&req->r_wait, &mdsc->waiting_for_map);
d5548492 2288 return;
cc8e8342 2289 }
e9e427f0
YZ
2290 if (!(mdsc->fsc->mount_options->flags &
2291 CEPH_MOUNT_OPT_MOUNTWAIT) &&
2292 !ceph_mdsmap_is_cluster_available(mdsc->mdsmap)) {
2293 err = -ENOENT;
2294 pr_info("probably no mds server is up\n");
2295 goto finish;
2296 }
2297 }
2f2dc053 2298
dc69e2e9
SW
2299 put_request_session(req);
2300
2f2dc053
SW
2301 mds = __choose_mds(mdsc, req);
2302 if (mds < 0 ||
2303 ceph_mdsmap_get_state(mdsc->mdsmap, mds) < CEPH_MDS_STATE_ACTIVE) {
2304 dout("do_request no mds or not active, waiting for map\n");
2305 list_add(&req->r_wait, &mdsc->waiting_for_map);
d5548492 2306 return;
2f2dc053
SW
2307 }
2308
2309 /* get, open session */
2310 session = __ceph_lookup_mds_session(mdsc, mds);
9c423956 2311 if (!session) {
2f2dc053 2312 session = register_session(mdsc, mds);
9c423956
SW
2313 if (IS_ERR(session)) {
2314 err = PTR_ERR(session);
2315 goto finish;
2316 }
2317 }
dc69e2e9
SW
2318 req->r_session = get_session(session);
2319
2f2dc053 2320 dout("do_request mds%d session %p state %s\n", mds, session,
a687ecaf 2321 ceph_session_state_name(session->s_state));
2f2dc053
SW
2322 if (session->s_state != CEPH_MDS_SESSION_OPEN &&
2323 session->s_state != CEPH_MDS_SESSION_HUNG) {
fcff415c
YZ
2324 if (session->s_state == CEPH_MDS_SESSION_REJECTED) {
2325 err = -EACCES;
2326 goto out_session;
2327 }
2f2dc053
SW
2328 if (session->s_state == CEPH_MDS_SESSION_NEW ||
2329 session->s_state == CEPH_MDS_SESSION_CLOSING)
2330 __open_session(mdsc, session);
2331 list_add(&req->r_wait, &session->s_waiting);
2332 goto out_session;
2333 }
2334
2335 /* send request */
2f2dc053
SW
2336 req->r_resend_mds = -1; /* forget any previous mds hint */
2337
2338 if (req->r_request_started == 0) /* note request start time */
2339 req->r_request_started = jiffies;
2340
6e6f0923 2341 err = __prepare_send_request(mdsc, req, mds, false);
2f2dc053
SW
2342 if (!err) {
2343 ceph_msg_get(req->r_request);
2344 ceph_con_send(&session->s_con, req->r_request);
2345 }
2346
2347out_session:
2348 ceph_put_mds_session(session);
48fec5d0
YZ
2349finish:
2350 if (err) {
2351 dout("__do_request early error %d\n", err);
2352 req->r_err = err;
2353 complete_request(mdsc, req);
2354 __unregister_request(mdsc, req);
2355 }
d5548492 2356 return;
2f2dc053
SW
2357}
2358
2359/*
2360 * called under mdsc->mutex
2361 */
2362static void __wake_requests(struct ceph_mds_client *mdsc,
2363 struct list_head *head)
2364{
ed75ec2c
YZ
2365 struct ceph_mds_request *req;
2366 LIST_HEAD(tmp_list);
2367
2368 list_splice_init(head, &tmp_list);
2f2dc053 2369
ed75ec2c
YZ
2370 while (!list_empty(&tmp_list)) {
2371 req = list_entry(tmp_list.next,
2372 struct ceph_mds_request, r_wait);
2f2dc053 2373 list_del_init(&req->r_wait);
7971bd92 2374 dout(" wake request %p tid %llu\n", req, req->r_tid);
2f2dc053
SW
2375 __do_request(mdsc, req);
2376 }
2377}
2378
2379/*
2380 * Wake up threads with requests pending for @mds, so that they can
29790f26 2381 * resubmit their requests to a possibly different mds.
2f2dc053 2382 */
29790f26 2383static void kick_requests(struct ceph_mds_client *mdsc, int mds)
2f2dc053 2384{
44ca18f2 2385 struct ceph_mds_request *req;
282c1052 2386 struct rb_node *p = rb_first(&mdsc->request_tree);
2f2dc053
SW
2387
2388 dout("kick_requests mds%d\n", mds);
282c1052 2389 while (p) {
44ca18f2 2390 req = rb_entry(p, struct ceph_mds_request, r_node);
282c1052 2391 p = rb_next(p);
bc2de10d 2392 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
44ca18f2 2393 continue;
3de22be6
YZ
2394 if (req->r_attempts > 0)
2395 continue; /* only new requests */
44ca18f2
SW
2396 if (req->r_session &&
2397 req->r_session->s_mds == mds) {
2398 dout(" kicking tid %llu\n", req->r_tid);
03974e81 2399 list_del_init(&req->r_wait);
44ca18f2 2400 __do_request(mdsc, req);
2f2dc053
SW
2401 }
2402 }
2403}
2404
2405void ceph_mdsc_submit_request(struct ceph_mds_client *mdsc,
2406 struct ceph_mds_request *req)
2407{
2408 dout("submit_request on %p\n", req);
2409 mutex_lock(&mdsc->mutex);
2410 __register_request(mdsc, req, NULL);
2411 __do_request(mdsc, req);
2412 mutex_unlock(&mdsc->mutex);
2413}
2414
2415/*
2416 * Synchrously perform an mds request. Take care of all of the
2417 * session setup, forwarding, retry details.
2418 */
2419int ceph_mdsc_do_request(struct ceph_mds_client *mdsc,
2420 struct inode *dir,
2421 struct ceph_mds_request *req)
2422{
2423 int err;
2424
2425 dout("do_request on %p\n", req);
2426
3dd69aab 2427 /* take CAP_PIN refs for r_inode, r_parent, r_old_dentry */
2f2dc053
SW
2428 if (req->r_inode)
2429 ceph_get_cap_refs(ceph_inode(req->r_inode), CEPH_CAP_PIN);
3dd69aab
JL
2430 if (req->r_parent)
2431 ceph_get_cap_refs(ceph_inode(req->r_parent), CEPH_CAP_PIN);
844d87c3 2432 if (req->r_old_dentry_dir)
41b02e1f
SW
2433 ceph_get_cap_refs(ceph_inode(req->r_old_dentry_dir),
2434 CEPH_CAP_PIN);
2f2dc053
SW
2435
2436 /* issue */
2437 mutex_lock(&mdsc->mutex);
2438 __register_request(mdsc, req, dir);
2439 __do_request(mdsc, req);
2440
e1518c7c
SW
2441 if (req->r_err) {
2442 err = req->r_err;
e1518c7c 2443 goto out;
2f2dc053
SW
2444 }
2445
e1518c7c
SW
2446 /* wait */
2447 mutex_unlock(&mdsc->mutex);
2448 dout("do_request waiting\n");
5be73034 2449 if (!req->r_timeout && req->r_wait_for_completion) {
9280be24 2450 err = req->r_wait_for_completion(mdsc, req);
e1518c7c 2451 } else {
5be73034
ID
2452 long timeleft = wait_for_completion_killable_timeout(
2453 &req->r_completion,
2454 ceph_timeout_jiffies(req->r_timeout));
2455 if (timeleft > 0)
2456 err = 0;
2457 else if (!timeleft)
2458 err = -EIO; /* timed out */
2459 else
2460 err = timeleft; /* killed */
e1518c7c
SW
2461 }
2462 dout("do_request waited, got %d\n", err);
2463 mutex_lock(&mdsc->mutex);
5b1daecd 2464
e1518c7c 2465 /* only abort if we didn't race with a real reply */
bc2de10d 2466 if (test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags)) {
e1518c7c
SW
2467 err = le32_to_cpu(req->r_reply_info.head->result);
2468 } else if (err < 0) {
2469 dout("aborted request %lld with %d\n", req->r_tid, err);
b4556396
SW
2470
2471 /*
2472 * ensure we aren't running concurrently with
2473 * ceph_fill_trace or ceph_readdir_prepopulate, which
2474 * rely on locks (dir mutex) held by our caller.
2475 */
2476 mutex_lock(&req->r_fill_mutex);
e1518c7c 2477 req->r_err = err;
bc2de10d 2478 set_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags);
b4556396 2479 mutex_unlock(&req->r_fill_mutex);
5b1daecd 2480
3dd69aab 2481 if (req->r_parent &&
167c9e35
SW
2482 (req->r_op & CEPH_MDS_OP_WRITE))
2483 ceph_invalidate_dir_request(req);
2f2dc053 2484 } else {
e1518c7c 2485 err = req->r_err;
2f2dc053 2486 }
2f2dc053 2487
e1518c7c
SW
2488out:
2489 mutex_unlock(&mdsc->mutex);
2f2dc053
SW
2490 dout("do_request %p done, result %d\n", req, err);
2491 return err;
2492}
2493
167c9e35 2494/*
2f276c51 2495 * Invalidate dir's completeness, dentry lease state on an aborted MDS
167c9e35
SW
2496 * namespace request.
2497 */
2498void ceph_invalidate_dir_request(struct ceph_mds_request *req)
2499{
8d8f371c
YZ
2500 struct inode *dir = req->r_parent;
2501 struct inode *old_dir = req->r_old_dentry_dir;
167c9e35 2502
8d8f371c 2503 dout("invalidate_dir_request %p %p (complete, lease(s))\n", dir, old_dir);
167c9e35 2504
8d8f371c
YZ
2505 ceph_dir_clear_complete(dir);
2506 if (old_dir)
2507 ceph_dir_clear_complete(old_dir);
167c9e35
SW
2508 if (req->r_dentry)
2509 ceph_invalidate_dentry_lease(req->r_dentry);
2510 if (req->r_old_dentry)
2511 ceph_invalidate_dentry_lease(req->r_old_dentry);
2512}
2513
2f2dc053
SW
2514/*
2515 * Handle mds reply.
2516 *
2517 * We take the session mutex and parse and process the reply immediately.
2518 * This preserves the logical ordering of replies, capabilities, etc., sent
2519 * by the MDS as they are applied to our local cache.
2520 */
2521static void handle_reply(struct ceph_mds_session *session, struct ceph_msg *msg)
2522{
2523 struct ceph_mds_client *mdsc = session->s_mdsc;
2524 struct ceph_mds_request *req;
2525 struct ceph_mds_reply_head *head = msg->front.iov_base;
2526 struct ceph_mds_reply_info_parsed *rinfo; /* parsed reply info */
982d6011 2527 struct ceph_snap_realm *realm;
2f2dc053
SW
2528 u64 tid;
2529 int err, result;
2600d2dd 2530 int mds = session->s_mds;
2f2dc053 2531
2f2dc053
SW
2532 if (msg->front.iov_len < sizeof(*head)) {
2533 pr_err("mdsc_handle_reply got corrupt (short) reply\n");
9ec7cab1 2534 ceph_msg_dump(msg);
2f2dc053
SW
2535 return;
2536 }
2537
2538 /* get request, session */
6df058c0 2539 tid = le64_to_cpu(msg->hdr.tid);
2f2dc053 2540 mutex_lock(&mdsc->mutex);
fcd00b68 2541 req = lookup_get_request(mdsc, tid);
2f2dc053
SW
2542 if (!req) {
2543 dout("handle_reply on unknown tid %llu\n", tid);
2544 mutex_unlock(&mdsc->mutex);
2545 return;
2546 }
2547 dout("handle_reply %p\n", req);
2f2dc053
SW
2548
2549 /* correct session? */
d96d6049 2550 if (req->r_session != session) {
2f2dc053
SW
2551 pr_err("mdsc_handle_reply got %llu on session mds%d"
2552 " not mds%d\n", tid, session->s_mds,
2553 req->r_session ? req->r_session->s_mds : -1);
2554 mutex_unlock(&mdsc->mutex);
2555 goto out;
2556 }
2557
2558 /* dup? */
bc2de10d
JL
2559 if ((test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags) && !head->safe) ||
2560 (test_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags) && head->safe)) {
f3ae1b97 2561 pr_warn("got a dup %s reply on %llu from mds%d\n",
2f2dc053
SW
2562 head->safe ? "safe" : "unsafe", tid, mds);
2563 mutex_unlock(&mdsc->mutex);
2564 goto out;
2565 }
bc2de10d 2566 if (test_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags)) {
f3ae1b97 2567 pr_warn("got unsafe after safe on %llu from mds%d\n",
85792d0d
SW
2568 tid, mds);
2569 mutex_unlock(&mdsc->mutex);
2570 goto out;
2571 }
2f2dc053
SW
2572
2573 result = le32_to_cpu(head->result);
2574
2575 /*
e55b71f8
GF
2576 * Handle an ESTALE
2577 * if we're not talking to the authority, send to them
2578 * if the authority has changed while we weren't looking,
2579 * send to new authority
2580 * Otherwise we just have to return an ESTALE
2f2dc053
SW
2581 */
2582 if (result == -ESTALE) {
4c069a58 2583 dout("got ESTALE on request %llu\n", req->r_tid);
51da8e8c 2584 req->r_resend_mds = -1;
ca18bede 2585 if (req->r_direct_mode != USE_AUTH_MDS) {
4c069a58 2586 dout("not using auth, setting for that now\n");
e55b71f8 2587 req->r_direct_mode = USE_AUTH_MDS;
2f2dc053
SW
2588 __do_request(mdsc, req);
2589 mutex_unlock(&mdsc->mutex);
2590 goto out;
e55b71f8 2591 } else {
ca18bede
YZ
2592 int mds = __choose_mds(mdsc, req);
2593 if (mds >= 0 && mds != req->r_session->s_mds) {
4c069a58 2594 dout("but auth changed, so resending\n");
e55b71f8
GF
2595 __do_request(mdsc, req);
2596 mutex_unlock(&mdsc->mutex);
2597 goto out;
2598 }
2f2dc053 2599 }
4c069a58 2600 dout("have to return ESTALE on request %llu\n", req->r_tid);
2f2dc053
SW
2601 }
2602
e55b71f8 2603
2f2dc053 2604 if (head->safe) {
bc2de10d 2605 set_bit(CEPH_MDS_R_GOT_SAFE, &req->r_req_flags);
2f2dc053 2606 __unregister_request(mdsc, req);
2f2dc053 2607
bc2de10d 2608 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
2f2dc053
SW
2609 /*
2610 * We already handled the unsafe response, now do the
2611 * cleanup. No need to examine the response; the MDS
2612 * doesn't include any result info in the safe
2613 * response. And even if it did, there is nothing
2614 * useful we could do with a revised return value.
2615 */
2616 dout("got safe reply %llu, mds%d\n", tid, mds);
2f2dc053
SW
2617
2618 /* last unsafe request during umount? */
44ca18f2 2619 if (mdsc->stopping && !__get_oldest_req(mdsc))
03066f23 2620 complete_all(&mdsc->safe_umount_waiters);
2f2dc053
SW
2621 mutex_unlock(&mdsc->mutex);
2622 goto out;
2623 }
e1518c7c 2624 } else {
bc2de10d 2625 set_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags);
2f2dc053 2626 list_add_tail(&req->r_unsafe_item, &req->r_session->s_unsafe);
4c06ace8
YZ
2627 if (req->r_unsafe_dir) {
2628 struct ceph_inode_info *ci =
2629 ceph_inode(req->r_unsafe_dir);
2630 spin_lock(&ci->i_unsafe_lock);
2631 list_add_tail(&req->r_unsafe_dir_item,
2632 &ci->i_unsafe_dirops);
2633 spin_unlock(&ci->i_unsafe_lock);
2634 }
2f2dc053
SW
2635 }
2636
2637 dout("handle_reply tid %lld result %d\n", tid, result);
2638 rinfo = &req->r_reply_info;
14303d20 2639 err = parse_reply_info(msg, rinfo, session->s_con.peer_features);
2f2dc053
SW
2640 mutex_unlock(&mdsc->mutex);
2641
2642 mutex_lock(&session->s_mutex);
2643 if (err < 0) {
25933abd 2644 pr_err("mdsc_handle_reply got corrupt reply mds%d(tid:%lld)\n", mds, tid);
9ec7cab1 2645 ceph_msg_dump(msg);
2f2dc053
SW
2646 goto out_err;
2647 }
2648
2649 /* snap trace */
982d6011 2650 realm = NULL;
2f2dc053
SW
2651 if (rinfo->snapblob_len) {
2652 down_write(&mdsc->snap_rwsem);
2653 ceph_update_snap_trace(mdsc, rinfo->snapblob,
982d6011
YZ
2654 rinfo->snapblob + rinfo->snapblob_len,
2655 le32_to_cpu(head->op) == CEPH_MDS_OP_RMSNAP,
2656 &realm);
2f2dc053
SW
2657 downgrade_write(&mdsc->snap_rwsem);
2658 } else {
2659 down_read(&mdsc->snap_rwsem);
2660 }
2661
2662 /* insert trace into our cache */
b4556396 2663 mutex_lock(&req->r_fill_mutex);
315f2408 2664 current->journal_info = req;
f5a03b08 2665 err = ceph_fill_trace(mdsc->fsc->sb, req);
2f2dc053 2666 if (err == 0) {
6e8575fa 2667 if (result == 0 && (req->r_op == CEPH_MDS_OP_READDIR ||
81c6aea5 2668 req->r_op == CEPH_MDS_OP_LSSNAP))
2f2dc053 2669 ceph_readdir_prepopulate(req, req->r_session);
37151668 2670 ceph_unreserve_caps(mdsc, &req->r_caps_reservation);
2f2dc053 2671 }
315f2408 2672 current->journal_info = NULL;
b4556396 2673 mutex_unlock(&req->r_fill_mutex);
2f2dc053
SW
2674
2675 up_read(&mdsc->snap_rwsem);
982d6011
YZ
2676 if (realm)
2677 ceph_put_snap_realm(mdsc, realm);
68cd5b4b 2678
bc2de10d
JL
2679 if (err == 0 && req->r_target_inode &&
2680 test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags)) {
68cd5b4b
YZ
2681 struct ceph_inode_info *ci = ceph_inode(req->r_target_inode);
2682 spin_lock(&ci->i_unsafe_lock);
2683 list_add_tail(&req->r_unsafe_target_item, &ci->i_unsafe_iops);
2684 spin_unlock(&ci->i_unsafe_lock);
2685 }
2f2dc053 2686out_err:
e1518c7c 2687 mutex_lock(&mdsc->mutex);
bc2de10d 2688 if (!test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
e1518c7c
SW
2689 if (err) {
2690 req->r_err = err;
2691 } else {
5fdb1389 2692 req->r_reply = ceph_msg_get(msg);
bc2de10d 2693 set_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags);
e1518c7c 2694 }
2f2dc053 2695 } else {
e1518c7c 2696 dout("reply arrived after request %lld was aborted\n", tid);
2f2dc053 2697 }
e1518c7c 2698 mutex_unlock(&mdsc->mutex);
2f2dc053 2699
2f2dc053
SW
2700 mutex_unlock(&session->s_mutex);
2701
2702 /* kick calling process */
2703 complete_request(mdsc, req);
2704out:
2705 ceph_mdsc_put_request(req);
2706 return;
2707}
2708
2709
2710
2711/*
2712 * handle mds notification that our request has been forwarded.
2713 */
2600d2dd
SW
2714static void handle_forward(struct ceph_mds_client *mdsc,
2715 struct ceph_mds_session *session,
2716 struct ceph_msg *msg)
2f2dc053
SW
2717{
2718 struct ceph_mds_request *req;
a1ea787c 2719 u64 tid = le64_to_cpu(msg->hdr.tid);
2f2dc053
SW
2720 u32 next_mds;
2721 u32 fwd_seq;
2f2dc053
SW
2722 int err = -EINVAL;
2723 void *p = msg->front.iov_base;
2724 void *end = p + msg->front.iov_len;
2f2dc053 2725
a1ea787c 2726 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
c89136ea
SW
2727 next_mds = ceph_decode_32(&p);
2728 fwd_seq = ceph_decode_32(&p);
2f2dc053
SW
2729
2730 mutex_lock(&mdsc->mutex);
fcd00b68 2731 req = lookup_get_request(mdsc, tid);
2f2dc053 2732 if (!req) {
2a8e5e36 2733 dout("forward tid %llu to mds%d - req dne\n", tid, next_mds);
2f2dc053
SW
2734 goto out; /* dup reply? */
2735 }
2736
bc2de10d 2737 if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
2a8e5e36
SW
2738 dout("forward tid %llu aborted, unregistering\n", tid);
2739 __unregister_request(mdsc, req);
2740 } else if (fwd_seq <= req->r_num_fwd) {
2741 dout("forward tid %llu to mds%d - old seq %d <= %d\n",
2f2dc053
SW
2742 tid, next_mds, req->r_num_fwd, fwd_seq);
2743 } else {
2744 /* resend. forward race not possible; mds would drop */
2a8e5e36
SW
2745 dout("forward tid %llu to mds%d (we resend)\n", tid, next_mds);
2746 BUG_ON(req->r_err);
bc2de10d 2747 BUG_ON(test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags));
3de22be6 2748 req->r_attempts = 0;
2f2dc053
SW
2749 req->r_num_fwd = fwd_seq;
2750 req->r_resend_mds = next_mds;
2751 put_request_session(req);
2752 __do_request(mdsc, req);
2753 }
2754 ceph_mdsc_put_request(req);
2755out:
2756 mutex_unlock(&mdsc->mutex);
2757 return;
2758
2759bad:
2760 pr_err("mdsc_handle_forward decode error err=%d\n", err);
2761}
2762
2763/*
2764 * handle a mds session control message
2765 */
2766static void handle_session(struct ceph_mds_session *session,
2767 struct ceph_msg *msg)
2768{
2769 struct ceph_mds_client *mdsc = session->s_mdsc;
2770 u32 op;
2771 u64 seq;
2600d2dd 2772 int mds = session->s_mds;
2f2dc053
SW
2773 struct ceph_mds_session_head *h = msg->front.iov_base;
2774 int wake = 0;
2775
2f2dc053 2776 /* decode */
342ce182 2777 if (msg->front.iov_len < sizeof(*h))
2f2dc053
SW
2778 goto bad;
2779 op = le32_to_cpu(h->op);
2780 seq = le64_to_cpu(h->seq);
2781
2782 mutex_lock(&mdsc->mutex);
0a07fc8c
YZ
2783 if (op == CEPH_SESSION_CLOSE) {
2784 get_session(session);
2600d2dd 2785 __unregister_session(mdsc, session);
0a07fc8c 2786 }
2f2dc053
SW
2787 /* FIXME: this ttl calculation is generous */
2788 session->s_ttl = jiffies + HZ*mdsc->mdsmap->m_session_autoclose;
2789 mutex_unlock(&mdsc->mutex);
2790
2791 mutex_lock(&session->s_mutex);
2792
2793 dout("handle_session mds%d %s %p state %s seq %llu\n",
2794 mds, ceph_session_op_name(op), session,
a687ecaf 2795 ceph_session_state_name(session->s_state), seq);
2f2dc053
SW
2796
2797 if (session->s_state == CEPH_MDS_SESSION_HUNG) {
2798 session->s_state = CEPH_MDS_SESSION_OPEN;
2799 pr_info("mds%d came back\n", session->s_mds);
2800 }
2801
2802 switch (op) {
2803 case CEPH_SESSION_OPEN:
29790f26
SW
2804 if (session->s_state == CEPH_MDS_SESSION_RECONNECTING)
2805 pr_info("mds%d reconnect success\n", session->s_mds);
2f2dc053
SW
2806 session->s_state = CEPH_MDS_SESSION_OPEN;
2807 renewed_caps(mdsc, session, 0);
2808 wake = 1;
2809 if (mdsc->stopping)
2810 __close_session(mdsc, session);
2811 break;
2812
2813 case CEPH_SESSION_RENEWCAPS:
2814 if (session->s_renew_seq == seq)
2815 renewed_caps(mdsc, session, 1);
2816 break;
2817
2818 case CEPH_SESSION_CLOSE:
29790f26
SW
2819 if (session->s_state == CEPH_MDS_SESSION_RECONNECTING)
2820 pr_info("mds%d reconnect denied\n", session->s_mds);
1c841a96 2821 cleanup_session_requests(mdsc, session);
2f2dc053 2822 remove_session_caps(session);
656e4382 2823 wake = 2; /* for good measure */
f3c60c59 2824 wake_up_all(&mdsc->session_close_wq);
2f2dc053
SW
2825 break;
2826
2827 case CEPH_SESSION_STALE:
2828 pr_info("mds%d caps went stale, renewing\n",
2829 session->s_mds);
d8fb02ab 2830 spin_lock(&session->s_gen_ttl_lock);
2f2dc053 2831 session->s_cap_gen++;
1ce208a6 2832 session->s_cap_ttl = jiffies - 1;
d8fb02ab 2833 spin_unlock(&session->s_gen_ttl_lock);
2f2dc053
SW
2834 send_renew_caps(mdsc, session);
2835 break;
2836
2837 case CEPH_SESSION_RECALL_STATE:
e30ee581 2838 ceph_trim_caps(mdsc, session, le32_to_cpu(h->max_caps));
2f2dc053
SW
2839 break;
2840
186e4f7a
YZ
2841 case CEPH_SESSION_FLUSHMSG:
2842 send_flushmsg_ack(mdsc, session, seq);
2843 break;
2844
03f4fcb0
YZ
2845 case CEPH_SESSION_FORCE_RO:
2846 dout("force_session_readonly %p\n", session);
2847 spin_lock(&session->s_cap_lock);
2848 session->s_readonly = true;
2849 spin_unlock(&session->s_cap_lock);
2850 wake_up_session_caps(session, 0);
2851 break;
2852
fcff415c
YZ
2853 case CEPH_SESSION_REJECT:
2854 WARN_ON(session->s_state != CEPH_MDS_SESSION_OPENING);
2855 pr_info("mds%d rejected session\n", session->s_mds);
2856 session->s_state = CEPH_MDS_SESSION_REJECTED;
2857 cleanup_session_requests(mdsc, session);
2858 remove_session_caps(session);
2859 wake = 2; /* for good measure */
2860 break;
2861
2f2dc053
SW
2862 default:
2863 pr_err("mdsc_handle_session bad op %d mds%d\n", op, mds);
2864 WARN_ON(1);
2865 }
2866
2867 mutex_unlock(&session->s_mutex);
2868 if (wake) {
2869 mutex_lock(&mdsc->mutex);
2870 __wake_requests(mdsc, &session->s_waiting);
656e4382
YZ
2871 if (wake == 2)
2872 kick_requests(mdsc, mds);
2f2dc053
SW
2873 mutex_unlock(&mdsc->mutex);
2874 }
0a07fc8c
YZ
2875 if (op == CEPH_SESSION_CLOSE)
2876 ceph_put_mds_session(session);
2f2dc053
SW
2877 return;
2878
2879bad:
2880 pr_err("mdsc_handle_session corrupt message mds%d len %d\n", mds,
2881 (int)msg->front.iov_len);
9ec7cab1 2882 ceph_msg_dump(msg);
2f2dc053
SW
2883 return;
2884}
2885
2886
2887/*
2888 * called under session->mutex.
2889 */
2890static void replay_unsafe_requests(struct ceph_mds_client *mdsc,
2891 struct ceph_mds_session *session)
2892{
2893 struct ceph_mds_request *req, *nreq;
3de22be6 2894 struct rb_node *p;
2f2dc053
SW
2895 int err;
2896
2897 dout("replay_unsafe_requests mds%d\n", session->s_mds);
2898
2899 mutex_lock(&mdsc->mutex);
2900 list_for_each_entry_safe(req, nreq, &session->s_unsafe, r_unsafe_item) {
6e6f0923 2901 err = __prepare_send_request(mdsc, req, session->s_mds, true);
2f2dc053
SW
2902 if (!err) {
2903 ceph_msg_get(req->r_request);
2904 ceph_con_send(&session->s_con, req->r_request);
2905 }
2906 }
3de22be6
YZ
2907
2908 /*
2909 * also re-send old requests when MDS enters reconnect stage. So that MDS
2910 * can process completed request in clientreplay stage.
2911 */
2912 p = rb_first(&mdsc->request_tree);
2913 while (p) {
2914 req = rb_entry(p, struct ceph_mds_request, r_node);
2915 p = rb_next(p);
bc2de10d 2916 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
3de22be6
YZ
2917 continue;
2918 if (req->r_attempts == 0)
2919 continue; /* only old requests */
2920 if (req->r_session &&
2921 req->r_session->s_mds == session->s_mds) {
6e6f0923
YZ
2922 err = __prepare_send_request(mdsc, req,
2923 session->s_mds, true);
3de22be6
YZ
2924 if (!err) {
2925 ceph_msg_get(req->r_request);
2926 ceph_con_send(&session->s_con, req->r_request);
2927 }
2928 }
2929 }
2f2dc053
SW
2930 mutex_unlock(&mdsc->mutex);
2931}
2932
2933/*
2934 * Encode information about a cap for a reconnect with the MDS.
2935 */
2f2dc053
SW
2936static int encode_caps_cb(struct inode *inode, struct ceph_cap *cap,
2937 void *arg)
2938{
20cb34ae
SW
2939 union {
2940 struct ceph_mds_cap_reconnect v2;
2941 struct ceph_mds_cap_reconnect_v1 v1;
2942 } rec;
b3f8d68f 2943 struct ceph_inode_info *ci = cap->ci;
20cb34ae
SW
2944 struct ceph_reconnect_state *recon_state = arg;
2945 struct ceph_pagelist *pagelist = recon_state->pagelist;
2f2dc053
SW
2946 char *path;
2947 int pathlen, err;
2948 u64 pathbase;
3469ed0d 2949 u64 snap_follows;
2f2dc053
SW
2950 struct dentry *dentry;
2951
2f2dc053
SW
2952 dout(" adding %p ino %llx.%llx cap %p %lld %s\n",
2953 inode, ceph_vinop(inode), cap, cap->cap_id,
2954 ceph_cap_string(cap->issued));
93cea5be
SW
2955 err = ceph_pagelist_encode_64(pagelist, ceph_ino(inode));
2956 if (err)
2957 return err;
2f2dc053
SW
2958
2959 dentry = d_find_alias(inode);
2960 if (dentry) {
2961 path = ceph_mdsc_build_path(dentry, &pathlen, &pathbase, 0);
2962 if (IS_ERR(path)) {
2963 err = PTR_ERR(path);
e072f8aa 2964 goto out_dput;
2f2dc053
SW
2965 }
2966 } else {
2967 path = NULL;
2968 pathlen = 0;
4eacd4cb 2969 pathbase = 0;
2f2dc053 2970 }
2f2dc053 2971
be655596 2972 spin_lock(&ci->i_ceph_lock);
2f2dc053
SW
2973 cap->seq = 0; /* reset cap seq */
2974 cap->issue_seq = 0; /* and issue_seq */
667ca05c 2975 cap->mseq = 0; /* and migrate_seq */
99a9c273 2976 cap->cap_gen = cap->session->s_cap_gen;
20cb34ae 2977
121f22a1 2978 if (recon_state->msg_version >= 2) {
20cb34ae
SW
2979 rec.v2.cap_id = cpu_to_le64(cap->cap_id);
2980 rec.v2.wanted = cpu_to_le32(__ceph_caps_wanted(ci));
2981 rec.v2.issued = cpu_to_le32(cap->issued);
2982 rec.v2.snaprealm = cpu_to_le64(ci->i_snap_realm->ino);
2983 rec.v2.pathbase = cpu_to_le64(pathbase);
ec1dff25
JL
2984 rec.v2.flock_len = (__force __le32)
2985 ((ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK) ? 0 : 1);
20cb34ae
SW
2986 } else {
2987 rec.v1.cap_id = cpu_to_le64(cap->cap_id);
2988 rec.v1.wanted = cpu_to_le32(__ceph_caps_wanted(ci));
2989 rec.v1.issued = cpu_to_le32(cap->issued);
2990 rec.v1.size = cpu_to_le64(inode->i_size);
9bbeab41
AB
2991 ceph_encode_timespec64(&rec.v1.mtime, &inode->i_mtime);
2992 ceph_encode_timespec64(&rec.v1.atime, &inode->i_atime);
20cb34ae
SW
2993 rec.v1.snaprealm = cpu_to_le64(ci->i_snap_realm->ino);
2994 rec.v1.pathbase = cpu_to_le64(pathbase);
20cb34ae 2995 }
3469ed0d
YZ
2996
2997 if (list_empty(&ci->i_cap_snaps)) {
92776fd2 2998 snap_follows = ci->i_head_snapc ? ci->i_head_snapc->seq : 0;
3469ed0d
YZ
2999 } else {
3000 struct ceph_cap_snap *capsnap =
3001 list_first_entry(&ci->i_cap_snaps,
3002 struct ceph_cap_snap, ci_item);
3003 snap_follows = capsnap->follows;
20cb34ae 3004 }
be655596 3005 spin_unlock(&ci->i_ceph_lock);
2f2dc053 3006
121f22a1 3007 if (recon_state->msg_version >= 2) {
40819f6f 3008 int num_fcntl_locks, num_flock_locks;
4deb14a2 3009 struct ceph_filelock *flocks = NULL;
121f22a1
YZ
3010 size_t struct_len, total_len = 0;
3011 u8 struct_v = 0;
39be95e9
JS
3012
3013encode_again:
b3f8d68f
YZ
3014 if (rec.v2.flock_len) {
3015 ceph_count_locks(inode, &num_fcntl_locks, &num_flock_locks);
3016 } else {
3017 num_fcntl_locks = 0;
3018 num_flock_locks = 0;
3019 }
4deb14a2 3020 if (num_fcntl_locks + num_flock_locks > 0) {
6da2ec56
KC
3021 flocks = kmalloc_array(num_fcntl_locks + num_flock_locks,
3022 sizeof(struct ceph_filelock),
3023 GFP_NOFS);
4deb14a2
YZ
3024 if (!flocks) {
3025 err = -ENOMEM;
3026 goto out_free;
3027 }
3028 err = ceph_encode_locks_to_buffer(inode, flocks,
3029 num_fcntl_locks,
3030 num_flock_locks);
3031 if (err) {
3032 kfree(flocks);
3033 flocks = NULL;
3034 if (err == -ENOSPC)
3035 goto encode_again;
3036 goto out_free;
3037 }
3038 } else {
39be95e9 3039 kfree(flocks);
4deb14a2 3040 flocks = NULL;
39be95e9 3041 }
121f22a1
YZ
3042
3043 if (recon_state->msg_version >= 3) {
3044 /* version, compat_version and struct_len */
3045 total_len = 2 * sizeof(u8) + sizeof(u32);
3469ed0d 3046 struct_v = 2;
121f22a1 3047 }
39be95e9
JS
3048 /*
3049 * number of encoded locks is stable, so copy to pagelist
3050 */
121f22a1
YZ
3051 struct_len = 2 * sizeof(u32) +
3052 (num_fcntl_locks + num_flock_locks) *
3053 sizeof(struct ceph_filelock);
3054 rec.v2.flock_len = cpu_to_le32(struct_len);
3055
3056 struct_len += sizeof(rec.v2);
3057 struct_len += sizeof(u32) + pathlen;
3058
3469ed0d
YZ
3059 if (struct_v >= 2)
3060 struct_len += sizeof(u64); /* snap_follows */
3061
121f22a1
YZ
3062 total_len += struct_len;
3063 err = ceph_pagelist_reserve(pagelist, total_len);
3064
3065 if (!err) {
3066 if (recon_state->msg_version >= 3) {
3067 ceph_pagelist_encode_8(pagelist, struct_v);
3068 ceph_pagelist_encode_8(pagelist, 1);
3069 ceph_pagelist_encode_32(pagelist, struct_len);
3070 }
3071 ceph_pagelist_encode_string(pagelist, path, pathlen);
3072 ceph_pagelist_append(pagelist, &rec, sizeof(rec.v2));
3073 ceph_locks_to_pagelist(flocks, pagelist,
3074 num_fcntl_locks,
3075 num_flock_locks);
3469ed0d
YZ
3076 if (struct_v >= 2)
3077 ceph_pagelist_encode_64(pagelist, snap_follows);
121f22a1 3078 }
39be95e9 3079 kfree(flocks);
3612abbd 3080 } else {
121f22a1
YZ
3081 size_t size = sizeof(u32) + pathlen + sizeof(rec.v1);
3082 err = ceph_pagelist_reserve(pagelist, size);
3083 if (!err) {
3084 ceph_pagelist_encode_string(pagelist, path, pathlen);
3085 ceph_pagelist_append(pagelist, &rec, sizeof(rec.v1));
3086 }
40819f6f 3087 }
44c99757
YZ
3088
3089 recon_state->nr_caps++;
e072f8aa 3090out_free:
2f2dc053 3091 kfree(path);
e072f8aa 3092out_dput:
2f2dc053 3093 dput(dentry);
93cea5be 3094 return err;
2f2dc053
SW
3095}
3096
3097
3098/*
3099 * If an MDS fails and recovers, clients need to reconnect in order to
3100 * reestablish shared state. This includes all caps issued through
3101 * this session _and_ the snap_realm hierarchy. Because it's not
3102 * clear which snap realms the mds cares about, we send everything we
3103 * know about.. that ensures we'll then get any new info the
3104 * recovering MDS might have.
3105 *
3106 * This is a relatively heavyweight operation, but it's rare.
3107 *
3108 * called with mdsc->mutex held.
3109 */
34b6c855
SW
3110static void send_mds_reconnect(struct ceph_mds_client *mdsc,
3111 struct ceph_mds_session *session)
2f2dc053 3112{
2f2dc053 3113 struct ceph_msg *reply;
a105f00c 3114 struct rb_node *p;
34b6c855 3115 int mds = session->s_mds;
9abf82b8 3116 int err = -ENOMEM;
44c99757 3117 int s_nr_caps;
93cea5be 3118 struct ceph_pagelist *pagelist;
20cb34ae 3119 struct ceph_reconnect_state recon_state;
c8a96a31 3120 LIST_HEAD(dispose);
2f2dc053 3121
34b6c855 3122 pr_info("mds%d reconnect start\n", mds);
2f2dc053 3123
33165d47 3124 pagelist = ceph_pagelist_alloc(GFP_NOFS);
93cea5be
SW
3125 if (!pagelist)
3126 goto fail_nopagelist;
93cea5be 3127
0d9c1ab3 3128 reply = ceph_msg_new2(CEPH_MSG_CLIENT_RECONNECT, 0, 1, GFP_NOFS, false);
a79832f2 3129 if (!reply)
93cea5be 3130 goto fail_nomsg;
93cea5be 3131
34b6c855
SW
3132 mutex_lock(&session->s_mutex);
3133 session->s_state = CEPH_MDS_SESSION_RECONNECTING;
3134 session->s_seq = 0;
2f2dc053 3135
2f2dc053 3136 dout("session %p state %s\n", session,
a687ecaf 3137 ceph_session_state_name(session->s_state));
2f2dc053 3138
99a9c273
YZ
3139 spin_lock(&session->s_gen_ttl_lock);
3140 session->s_cap_gen++;
3141 spin_unlock(&session->s_gen_ttl_lock);
3142
3143 spin_lock(&session->s_cap_lock);
03f4fcb0
YZ
3144 /* don't know if session is readonly */
3145 session->s_readonly = 0;
99a9c273
YZ
3146 /*
3147 * notify __ceph_remove_cap() that we are composing cap reconnect.
3148 * If a cap get released before being added to the cap reconnect,
3149 * __ceph_remove_cap() should skip queuing cap release.
3150 */
3151 session->s_cap_reconnect = 1;
e01a5946 3152 /* drop old cap expires; we're about to reestablish that state */
c8a96a31
JL
3153 detach_cap_releases(session, &dispose);
3154 spin_unlock(&session->s_cap_lock);
3155 dispose_cap_releases(mdsc, &dispose);
e01a5946 3156
5d23371f 3157 /* trim unused caps to reduce MDS's cache rejoin time */
c0bd50e2
YZ
3158 if (mdsc->fsc->sb->s_root)
3159 shrink_dcache_parent(mdsc->fsc->sb->s_root);
5d23371f
YZ
3160
3161 ceph_con_close(&session->s_con);
3162 ceph_con_open(&session->s_con,
3163 CEPH_ENTITY_TYPE_MDS, mds,
3164 ceph_mdsmap_get_addr(mdsc->mdsmap, mds));
3165
3166 /* replay unsafe requests */
3167 replay_unsafe_requests(mdsc, session);
3168
3169 down_read(&mdsc->snap_rwsem);
3170
2f2dc053 3171 /* traverse this session's caps */
44c99757
YZ
3172 s_nr_caps = session->s_nr_caps;
3173 err = ceph_pagelist_encode_32(pagelist, s_nr_caps);
93cea5be
SW
3174 if (err)
3175 goto fail;
20cb34ae 3176
44c99757 3177 recon_state.nr_caps = 0;
20cb34ae 3178 recon_state.pagelist = pagelist;
121f22a1
YZ
3179 if (session->s_con.peer_features & CEPH_FEATURE_MDSENC)
3180 recon_state.msg_version = 3;
121f22a1 3181 else
23c625ce 3182 recon_state.msg_version = 2;
20cb34ae 3183 err = iterate_session_caps(session, encode_caps_cb, &recon_state);
2f2dc053 3184 if (err < 0)
9abf82b8 3185 goto fail;
2f2dc053 3186
99a9c273
YZ
3187 spin_lock(&session->s_cap_lock);
3188 session->s_cap_reconnect = 0;
3189 spin_unlock(&session->s_cap_lock);
3190
2f2dc053
SW
3191 /*
3192 * snaprealms. we provide mds with the ino, seq (version), and
3193 * parent for all of our realms. If the mds has any newer info,
3194 * it will tell us.
3195 */
a105f00c
SW
3196 for (p = rb_first(&mdsc->snap_realms); p; p = rb_next(p)) {
3197 struct ceph_snap_realm *realm =
3198 rb_entry(p, struct ceph_snap_realm, node);
93cea5be 3199 struct ceph_mds_snaprealm_reconnect sr_rec;
2f2dc053
SW
3200
3201 dout(" adding snap realm %llx seq %lld parent %llx\n",
3202 realm->ino, realm->seq, realm->parent_ino);
93cea5be
SW
3203 sr_rec.ino = cpu_to_le64(realm->ino);
3204 sr_rec.seq = cpu_to_le64(realm->seq);
3205 sr_rec.parent = cpu_to_le64(realm->parent_ino);
3206 err = ceph_pagelist_append(pagelist, &sr_rec, sizeof(sr_rec));
3207 if (err)
3208 goto fail;
2f2dc053 3209 }
2f2dc053 3210
121f22a1 3211 reply->hdr.version = cpu_to_le16(recon_state.msg_version);
44c99757
YZ
3212
3213 /* raced with cap release? */
3214 if (s_nr_caps != recon_state.nr_caps) {
3215 struct page *page = list_first_entry(&pagelist->head,
3216 struct page, lru);
3217 __le32 *addr = kmap_atomic(page);
3218 *addr = cpu_to_le32(recon_state.nr_caps);
3219 kunmap_atomic(addr);
ebf18f47 3220 }
44c99757
YZ
3221
3222 reply->hdr.data_len = cpu_to_le32(pagelist->length);
3223 ceph_msg_data_add_pagelist(reply, pagelist);
e548e9b9
YZ
3224
3225 ceph_early_kick_flushing_caps(mdsc, session);
3226
2f2dc053
SW
3227 ceph_con_send(&session->s_con, reply);
3228
9abf82b8
SW
3229 mutex_unlock(&session->s_mutex);
3230
3231 mutex_lock(&mdsc->mutex);
3232 __wake_requests(mdsc, &session->s_waiting);
3233 mutex_unlock(&mdsc->mutex);
3234
2f2dc053 3235 up_read(&mdsc->snap_rwsem);
89486833 3236 ceph_pagelist_release(pagelist);
2f2dc053
SW
3237 return;
3238
93cea5be 3239fail:
2f2dc053 3240 ceph_msg_put(reply);
9abf82b8
SW
3241 up_read(&mdsc->snap_rwsem);
3242 mutex_unlock(&session->s_mutex);
93cea5be
SW
3243fail_nomsg:
3244 ceph_pagelist_release(pagelist);
93cea5be 3245fail_nopagelist:
9abf82b8 3246 pr_err("error %d preparing reconnect for mds%d\n", err, mds);
9abf82b8 3247 return;
2f2dc053
SW
3248}
3249
3250
3251/*
3252 * compare old and new mdsmaps, kicking requests
3253 * and closing out old connections as necessary
3254 *
3255 * called under mdsc->mutex.
3256 */
3257static void check_new_map(struct ceph_mds_client *mdsc,
3258 struct ceph_mdsmap *newmap,
3259 struct ceph_mdsmap *oldmap)
3260{
3261 int i;
3262 int oldstate, newstate;
3263 struct ceph_mds_session *s;
3264
3265 dout("check_new_map new %u old %u\n",
3266 newmap->m_epoch, oldmap->m_epoch);
3267
76201b63 3268 for (i = 0; i < oldmap->m_num_mds && i < mdsc->max_sessions; i++) {
d37b1d99 3269 if (!mdsc->sessions[i])
2f2dc053
SW
3270 continue;
3271 s = mdsc->sessions[i];
3272 oldstate = ceph_mdsmap_get_state(oldmap, i);
3273 newstate = ceph_mdsmap_get_state(newmap, i);
3274
0deb01c9 3275 dout("check_new_map mds%d state %s%s -> %s%s (session %s)\n",
2f2dc053 3276 i, ceph_mds_state_name(oldstate),
0deb01c9 3277 ceph_mdsmap_is_laggy(oldmap, i) ? " (laggy)" : "",
2f2dc053 3278 ceph_mds_state_name(newstate),
0deb01c9 3279 ceph_mdsmap_is_laggy(newmap, i) ? " (laggy)" : "",
a687ecaf 3280 ceph_session_state_name(s->s_state));
2f2dc053 3281
76201b63 3282 if (i >= newmap->m_num_mds ||
3e8f43a0 3283 memcmp(ceph_mdsmap_get_addr(oldmap, i),
2f2dc053
SW
3284 ceph_mdsmap_get_addr(newmap, i),
3285 sizeof(struct ceph_entity_addr))) {
3286 if (s->s_state == CEPH_MDS_SESSION_OPENING) {
3287 /* the session never opened, just close it
3288 * out now */
0a07fc8c 3289 get_session(s);
2600d2dd 3290 __unregister_session(mdsc, s);
2f2dc053 3291 __wake_requests(mdsc, &s->s_waiting);
0a07fc8c 3292 ceph_put_mds_session(s);
2827528d
YZ
3293 } else if (i >= newmap->m_num_mds) {
3294 /* force close session for stopped mds */
3295 get_session(s);
2600d2dd 3296 __unregister_session(mdsc, s);
2827528d
YZ
3297 __wake_requests(mdsc, &s->s_waiting);
3298 kick_requests(mdsc, i);
3299 mutex_unlock(&mdsc->mutex);
3300
3301 mutex_lock(&s->s_mutex);
3302 cleanup_session_requests(mdsc, s);
3303 remove_session_caps(s);
3304 mutex_unlock(&s->s_mutex);
3305
3306 ceph_put_mds_session(s);
3307
3308 mutex_lock(&mdsc->mutex);
2f2dc053
SW
3309 } else {
3310 /* just close it */
3311 mutex_unlock(&mdsc->mutex);
3312 mutex_lock(&s->s_mutex);
3313 mutex_lock(&mdsc->mutex);
3314 ceph_con_close(&s->s_con);
3315 mutex_unlock(&s->s_mutex);
3316 s->s_state = CEPH_MDS_SESSION_RESTARTING;
3317 }
2f2dc053
SW
3318 } else if (oldstate == newstate) {
3319 continue; /* nothing new with this mds */
3320 }
3321
3322 /*
3323 * send reconnect?
3324 */
3325 if (s->s_state == CEPH_MDS_SESSION_RESTARTING &&
34b6c855
SW
3326 newstate >= CEPH_MDS_STATE_RECONNECT) {
3327 mutex_unlock(&mdsc->mutex);
3328 send_mds_reconnect(mdsc, s);
3329 mutex_lock(&mdsc->mutex);
3330 }
2f2dc053
SW
3331
3332 /*
29790f26 3333 * kick request on any mds that has gone active.
2f2dc053
SW
3334 */
3335 if (oldstate < CEPH_MDS_STATE_ACTIVE &&
3336 newstate >= CEPH_MDS_STATE_ACTIVE) {
29790f26
SW
3337 if (oldstate != CEPH_MDS_STATE_CREATING &&
3338 oldstate != CEPH_MDS_STATE_STARTING)
3339 pr_info("mds%d recovery completed\n", s->s_mds);
3340 kick_requests(mdsc, i);
2f2dc053 3341 ceph_kick_flushing_caps(mdsc, s);
0dc2570f 3342 wake_up_session_caps(s, 1);
2f2dc053
SW
3343 }
3344 }
cb170a22 3345
76201b63 3346 for (i = 0; i < newmap->m_num_mds && i < mdsc->max_sessions; i++) {
cb170a22
SW
3347 s = mdsc->sessions[i];
3348 if (!s)
3349 continue;
3350 if (!ceph_mdsmap_is_laggy(newmap, i))
3351 continue;
3352 if (s->s_state == CEPH_MDS_SESSION_OPEN ||
3353 s->s_state == CEPH_MDS_SESSION_HUNG ||
3354 s->s_state == CEPH_MDS_SESSION_CLOSING) {
3355 dout(" connecting to export targets of laggy mds%d\n",
3356 i);
3357 __open_export_target_sessions(mdsc, s);
3358 }
3359 }
2f2dc053
SW
3360}
3361
3362
3363
3364/*
3365 * leases
3366 */
3367
3368/*
3369 * caller must hold session s_mutex, dentry->d_lock
3370 */
3371void __ceph_mdsc_drop_dentry_lease(struct dentry *dentry)
3372{
3373 struct ceph_dentry_info *di = ceph_dentry(dentry);
3374
3375 ceph_put_mds_session(di->lease_session);
3376 di->lease_session = NULL;
3377}
3378
2600d2dd
SW
3379static void handle_lease(struct ceph_mds_client *mdsc,
3380 struct ceph_mds_session *session,
3381 struct ceph_msg *msg)
2f2dc053 3382{
3d14c5d2 3383 struct super_block *sb = mdsc->fsc->sb;
2f2dc053 3384 struct inode *inode;
2f2dc053
SW
3385 struct dentry *parent, *dentry;
3386 struct ceph_dentry_info *di;
2600d2dd 3387 int mds = session->s_mds;
2f2dc053 3388 struct ceph_mds_lease *h = msg->front.iov_base;
1e5ea23d 3389 u32 seq;
2f2dc053 3390 struct ceph_vino vino;
2f2dc053
SW
3391 struct qstr dname;
3392 int release = 0;
3393
2f2dc053
SW
3394 dout("handle_lease from mds%d\n", mds);
3395
3396 /* decode */
3397 if (msg->front.iov_len < sizeof(*h) + sizeof(u32))
3398 goto bad;
3399 vino.ino = le64_to_cpu(h->ino);
3400 vino.snap = CEPH_NOSNAP;
1e5ea23d 3401 seq = le32_to_cpu(h->seq);
0fcf6c02
YZ
3402 dname.len = get_unaligned_le32(h + 1);
3403 if (msg->front.iov_len < sizeof(*h) + sizeof(u32) + dname.len)
2f2dc053 3404 goto bad;
0fcf6c02 3405 dname.name = (void *)(h + 1) + sizeof(u32);
2f2dc053 3406
2f2dc053
SW
3407 /* lookup inode */
3408 inode = ceph_find_inode(sb, vino);
2f90b852
SW
3409 dout("handle_lease %s, ino %llx %p %.*s\n",
3410 ceph_lease_op_name(h->action), vino.ino, inode,
1e5ea23d 3411 dname.len, dname.name);
6cd3bcad
YZ
3412
3413 mutex_lock(&session->s_mutex);
3414 session->s_seq++;
3415
d37b1d99 3416 if (!inode) {
2f2dc053
SW
3417 dout("handle_lease no inode %llx\n", vino.ino);
3418 goto release;
3419 }
2f2dc053
SW
3420
3421 /* dentry */
3422 parent = d_find_alias(inode);
3423 if (!parent) {
3424 dout("no parent dentry on inode %p\n", inode);
3425 WARN_ON(1);
3426 goto release; /* hrm... */
3427 }
8387ff25 3428 dname.hash = full_name_hash(parent, dname.name, dname.len);
2f2dc053
SW
3429 dentry = d_lookup(parent, &dname);
3430 dput(parent);
3431 if (!dentry)
3432 goto release;
3433
3434 spin_lock(&dentry->d_lock);
3435 di = ceph_dentry(dentry);
3436 switch (h->action) {
3437 case CEPH_MDS_LEASE_REVOKE:
3d8eb7a9 3438 if (di->lease_session == session) {
1e5ea23d
SW
3439 if (ceph_seq_cmp(di->lease_seq, seq) > 0)
3440 h->seq = cpu_to_le32(di->lease_seq);
2f2dc053
SW
3441 __ceph_mdsc_drop_dentry_lease(dentry);
3442 }
3443 release = 1;
3444 break;
3445
3446 case CEPH_MDS_LEASE_RENEW:
3d8eb7a9 3447 if (di->lease_session == session &&
2f2dc053
SW
3448 di->lease_gen == session->s_cap_gen &&
3449 di->lease_renew_from &&
3450 di->lease_renew_after == 0) {
3451 unsigned long duration =
3563dbdd 3452 msecs_to_jiffies(le32_to_cpu(h->duration_ms));
2f2dc053 3453
1e5ea23d 3454 di->lease_seq = seq;
9b16f03c 3455 di->time = di->lease_renew_from + duration;
2f2dc053
SW
3456 di->lease_renew_after = di->lease_renew_from +
3457 (duration >> 1);
3458 di->lease_renew_from = 0;
3459 }
3460 break;
3461 }
3462 spin_unlock(&dentry->d_lock);
3463 dput(dentry);
3464
3465 if (!release)
3466 goto out;
3467
3468release:
3469 /* let's just reuse the same message */
3470 h->action = CEPH_MDS_LEASE_REVOKE_ACK;
3471 ceph_msg_get(msg);
3472 ceph_con_send(&session->s_con, msg);
3473
3474out:
3475 iput(inode);
3476 mutex_unlock(&session->s_mutex);
2f2dc053
SW
3477 return;
3478
3479bad:
3480 pr_err("corrupt lease message\n");
9ec7cab1 3481 ceph_msg_dump(msg);
2f2dc053
SW
3482}
3483
3484void ceph_mdsc_lease_send_msg(struct ceph_mds_session *session,
3485 struct inode *inode,
3486 struct dentry *dentry, char action,
3487 u32 seq)
3488{
3489 struct ceph_msg *msg;
3490 struct ceph_mds_lease *lease;
3491 int len = sizeof(*lease) + sizeof(u32);
3492 int dnamelen = 0;
3493
3494 dout("lease_send_msg inode %p dentry %p %s to mds%d\n",
3495 inode, dentry, ceph_lease_op_name(action), session->s_mds);
3496 dnamelen = dentry->d_name.len;
3497 len += dnamelen;
3498
b61c2763 3499 msg = ceph_msg_new(CEPH_MSG_CLIENT_LEASE, len, GFP_NOFS, false);
a79832f2 3500 if (!msg)
2f2dc053
SW
3501 return;
3502 lease = msg->front.iov_base;
3503 lease->action = action;
2f2dc053
SW
3504 lease->ino = cpu_to_le64(ceph_vino(inode).ino);
3505 lease->first = lease->last = cpu_to_le64(ceph_vino(inode).snap);
3506 lease->seq = cpu_to_le32(seq);
3507 put_unaligned_le32(dnamelen, lease + 1);
3508 memcpy((void *)(lease + 1) + 4, dentry->d_name.name, dnamelen);
3509
3510 /*
3511 * if this is a preemptive lease RELEASE, no need to
3512 * flush request stream, since the actual request will
3513 * soon follow.
3514 */
3515 msg->more_to_follow = (action == CEPH_MDS_LEASE_RELEASE);
3516
3517 ceph_con_send(&session->s_con, msg);
3518}
3519
2f2dc053 3520/*
7aac453a 3521 * lock unlock sessions, to wait ongoing session activities
2f2dc053 3522 */
7aac453a 3523static void lock_unlock_sessions(struct ceph_mds_client *mdsc)
2f2dc053
SW
3524{
3525 int i;
3526
2f2dc053
SW
3527 mutex_lock(&mdsc->mutex);
3528 for (i = 0; i < mdsc->max_sessions; i++) {
3529 struct ceph_mds_session *s = __ceph_lookup_mds_session(mdsc, i);
3530 if (!s)
3531 continue;
3532 mutex_unlock(&mdsc->mutex);
3533 mutex_lock(&s->s_mutex);
3534 mutex_unlock(&s->s_mutex);
3535 ceph_put_mds_session(s);
3536 mutex_lock(&mdsc->mutex);
3537 }
3538 mutex_unlock(&mdsc->mutex);
3539}
3540
3541
3542
3543/*
3544 * delayed work -- periodically trim expired leases, renew caps with mds
3545 */
3546static void schedule_delayed(struct ceph_mds_client *mdsc)
3547{
3548 int delay = 5;
3549 unsigned hz = round_jiffies_relative(HZ * delay);
3550 schedule_delayed_work(&mdsc->delayed_work, hz);
3551}
3552
3553static void delayed_work(struct work_struct *work)
3554{
3555 int i;
3556 struct ceph_mds_client *mdsc =
3557 container_of(work, struct ceph_mds_client, delayed_work.work);
3558 int renew_interval;
3559 int renew_caps;
3560
3561 dout("mdsc delayed_work\n");
afcdaea3 3562 ceph_check_delayed_caps(mdsc);
2f2dc053
SW
3563
3564 mutex_lock(&mdsc->mutex);
3565 renew_interval = mdsc->mdsmap->m_session_timeout >> 2;
3566 renew_caps = time_after_eq(jiffies, HZ*renew_interval +
3567 mdsc->last_renew_caps);
3568 if (renew_caps)
3569 mdsc->last_renew_caps = jiffies;
3570
3571 for (i = 0; i < mdsc->max_sessions; i++) {
3572 struct ceph_mds_session *s = __ceph_lookup_mds_session(mdsc, i);
d37b1d99 3573 if (!s)
2f2dc053
SW
3574 continue;
3575 if (s->s_state == CEPH_MDS_SESSION_CLOSING) {
3576 dout("resending session close request for mds%d\n",
3577 s->s_mds);
3578 request_close_session(mdsc, s);
3579 ceph_put_mds_session(s);
3580 continue;
3581 }
3582 if (s->s_ttl && time_after(jiffies, s->s_ttl)) {
3583 if (s->s_state == CEPH_MDS_SESSION_OPEN) {
3584 s->s_state = CEPH_MDS_SESSION_HUNG;
3585 pr_info("mds%d hung\n", s->s_mds);
3586 }
3587 }
3588 if (s->s_state < CEPH_MDS_SESSION_OPEN) {
3589 /* this mds is failed or recovering, just wait */
3590 ceph_put_mds_session(s);
3591 continue;
3592 }
3593 mutex_unlock(&mdsc->mutex);
3594
3595 mutex_lock(&s->s_mutex);
3596 if (renew_caps)
3597 send_renew_caps(mdsc, s);
3598 else
3599 ceph_con_keepalive(&s->s_con);
aab53dd9
SW
3600 if (s->s_state == CEPH_MDS_SESSION_OPEN ||
3601 s->s_state == CEPH_MDS_SESSION_HUNG)
3d7ded4d 3602 ceph_send_cap_releases(mdsc, s);
2f2dc053
SW
3603 mutex_unlock(&s->s_mutex);
3604 ceph_put_mds_session(s);
3605
3606 mutex_lock(&mdsc->mutex);
3607 }
3608 mutex_unlock(&mdsc->mutex);
3609
3610 schedule_delayed(mdsc);
3611}
3612
3d14c5d2 3613int ceph_mdsc_init(struct ceph_fs_client *fsc)
2f2dc053 3614
2f2dc053 3615{
3d14c5d2
YS
3616 struct ceph_mds_client *mdsc;
3617
3618 mdsc = kzalloc(sizeof(struct ceph_mds_client), GFP_NOFS);
3619 if (!mdsc)
3620 return -ENOMEM;
3621 mdsc->fsc = fsc;
2f2dc053
SW
3622 mutex_init(&mdsc->mutex);
3623 mdsc->mdsmap = kzalloc(sizeof(*mdsc->mdsmap), GFP_NOFS);
d37b1d99 3624 if (!mdsc->mdsmap) {
fb3101b6 3625 kfree(mdsc);
2d06eeb8 3626 return -ENOMEM;
fb3101b6 3627 }
2d06eeb8 3628
50c55aec 3629 fsc->mdsc = mdsc;
2f2dc053 3630 init_completion(&mdsc->safe_umount_waiters);
f3c60c59 3631 init_waitqueue_head(&mdsc->session_close_wq);
2f2dc053
SW
3632 INIT_LIST_HEAD(&mdsc->waiting_for_map);
3633 mdsc->sessions = NULL;
86d8f67b 3634 atomic_set(&mdsc->num_sessions, 0);
2f2dc053
SW
3635 mdsc->max_sessions = 0;
3636 mdsc->stopping = 0;
d557c48d 3637 atomic64_set(&mdsc->quotarealms_count, 0);
affbc19a 3638 mdsc->last_snap_seq = 0;
2f2dc053 3639 init_rwsem(&mdsc->snap_rwsem);
a105f00c 3640 mdsc->snap_realms = RB_ROOT;
2f2dc053
SW
3641 INIT_LIST_HEAD(&mdsc->snap_empty);
3642 spin_lock_init(&mdsc->snap_empty_lock);
3643 mdsc->last_tid = 0;
e8a7b8b1 3644 mdsc->oldest_tid = 0;
44ca18f2 3645 mdsc->request_tree = RB_ROOT;
2f2dc053
SW
3646 INIT_DELAYED_WORK(&mdsc->delayed_work, delayed_work);
3647 mdsc->last_renew_caps = jiffies;
3648 INIT_LIST_HEAD(&mdsc->cap_delay_list);
3649 spin_lock_init(&mdsc->cap_delay_lock);
3650 INIT_LIST_HEAD(&mdsc->snap_flush_list);
3651 spin_lock_init(&mdsc->snap_flush_lock);
553adfd9 3652 mdsc->last_cap_flush_tid = 1;
e4500b5e 3653 INIT_LIST_HEAD(&mdsc->cap_flush_list);
2f2dc053 3654 INIT_LIST_HEAD(&mdsc->cap_dirty);
db354052 3655 INIT_LIST_HEAD(&mdsc->cap_dirty_migrating);
2f2dc053
SW
3656 mdsc->num_cap_flushing = 0;
3657 spin_lock_init(&mdsc->cap_dirty_lock);
3658 init_waitqueue_head(&mdsc->cap_flushing_wq);
3659 spin_lock_init(&mdsc->dentry_lru_lock);
3660 INIT_LIST_HEAD(&mdsc->dentry_lru);
2d06eeb8 3661
37151668 3662 ceph_caps_init(mdsc);
3d14c5d2 3663 ceph_adjust_min_caps(mdsc, fsc->min_caps);
37151668 3664
10183a69
YZ
3665 init_rwsem(&mdsc->pool_perm_rwsem);
3666 mdsc->pool_perm_tree = RB_ROOT;
3667
dfeb84d4
YZ
3668 strscpy(mdsc->nodename, utsname()->nodename,
3669 sizeof(mdsc->nodename));
5f44f142 3670 return 0;
2f2dc053
SW
3671}
3672
3673/*
3674 * Wait for safe replies on open mds requests. If we time out, drop
3675 * all requests from the tree to avoid dangling dentry refs.
3676 */
3677static void wait_requests(struct ceph_mds_client *mdsc)
3678{
a319bf56 3679 struct ceph_options *opts = mdsc->fsc->client->options;
2f2dc053 3680 struct ceph_mds_request *req;
2f2dc053
SW
3681
3682 mutex_lock(&mdsc->mutex);
44ca18f2 3683 if (__get_oldest_req(mdsc)) {
2f2dc053 3684 mutex_unlock(&mdsc->mutex);
44ca18f2 3685
2f2dc053
SW
3686 dout("wait_requests waiting for requests\n");
3687 wait_for_completion_timeout(&mdsc->safe_umount_waiters,
a319bf56 3688 ceph_timeout_jiffies(opts->mount_timeout));
2f2dc053
SW
3689
3690 /* tear down remaining requests */
44ca18f2
SW
3691 mutex_lock(&mdsc->mutex);
3692 while ((req = __get_oldest_req(mdsc))) {
2f2dc053
SW
3693 dout("wait_requests timed out on tid %llu\n",
3694 req->r_tid);
44ca18f2 3695 __unregister_request(mdsc, req);
2f2dc053
SW
3696 }
3697 }
3698 mutex_unlock(&mdsc->mutex);
3699 dout("wait_requests done\n");
3700}
3701
3702/*
3703 * called before mount is ro, and before dentries are torn down.
3704 * (hmm, does this still race with new lookups?)
3705 */
3706void ceph_mdsc_pre_umount(struct ceph_mds_client *mdsc)
3707{
3708 dout("pre_umount\n");
3709 mdsc->stopping = 1;
3710
7aac453a 3711 lock_unlock_sessions(mdsc);
afcdaea3 3712 ceph_flush_dirty_caps(mdsc);
2f2dc053 3713 wait_requests(mdsc);
17c688c3
SW
3714
3715 /*
3716 * wait for reply handlers to drop their request refs and
3717 * their inode/dcache refs
3718 */
3719 ceph_msgr_flush();
2f2dc053
SW
3720}
3721
3722/*
3723 * wait for all write mds requests to flush.
3724 */
3725static void wait_unsafe_requests(struct ceph_mds_client *mdsc, u64 want_tid)
3726{
80fc7314 3727 struct ceph_mds_request *req = NULL, *nextreq;
44ca18f2 3728 struct rb_node *n;
2f2dc053
SW
3729
3730 mutex_lock(&mdsc->mutex);
3731 dout("wait_unsafe_requests want %lld\n", want_tid);
80fc7314 3732restart:
44ca18f2
SW
3733 req = __get_oldest_req(mdsc);
3734 while (req && req->r_tid <= want_tid) {
80fc7314
SW
3735 /* find next request */
3736 n = rb_next(&req->r_node);
3737 if (n)
3738 nextreq = rb_entry(n, struct ceph_mds_request, r_node);
3739 else
3740 nextreq = NULL;
e8a7b8b1
YZ
3741 if (req->r_op != CEPH_MDS_OP_SETFILELOCK &&
3742 (req->r_op & CEPH_MDS_OP_WRITE)) {
44ca18f2
SW
3743 /* write op */
3744 ceph_mdsc_get_request(req);
80fc7314
SW
3745 if (nextreq)
3746 ceph_mdsc_get_request(nextreq);
44ca18f2
SW
3747 mutex_unlock(&mdsc->mutex);
3748 dout("wait_unsafe_requests wait on %llu (want %llu)\n",
3749 req->r_tid, want_tid);
3750 wait_for_completion(&req->r_safe_completion);
3751 mutex_lock(&mdsc->mutex);
44ca18f2 3752 ceph_mdsc_put_request(req);
80fc7314
SW
3753 if (!nextreq)
3754 break; /* next dne before, so we're done! */
3755 if (RB_EMPTY_NODE(&nextreq->r_node)) {
3756 /* next request was removed from tree */
3757 ceph_mdsc_put_request(nextreq);
3758 goto restart;
3759 }
3760 ceph_mdsc_put_request(nextreq); /* won't go away */
44ca18f2 3761 }
80fc7314 3762 req = nextreq;
2f2dc053
SW
3763 }
3764 mutex_unlock(&mdsc->mutex);
3765 dout("wait_unsafe_requests done\n");
3766}
3767
3768void ceph_mdsc_sync(struct ceph_mds_client *mdsc)
3769{
0e294387 3770 u64 want_tid, want_flush;
2f2dc053 3771
52953d55 3772 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN)
56b7cf95
SW
3773 return;
3774
2f2dc053
SW
3775 dout("sync\n");
3776 mutex_lock(&mdsc->mutex);
3777 want_tid = mdsc->last_tid;
2f2dc053 3778 mutex_unlock(&mdsc->mutex);
2f2dc053 3779
afcdaea3 3780 ceph_flush_dirty_caps(mdsc);
d3383a8e 3781 spin_lock(&mdsc->cap_dirty_lock);
8310b089 3782 want_flush = mdsc->last_cap_flush_tid;
c8799fc4
YZ
3783 if (!list_empty(&mdsc->cap_flush_list)) {
3784 struct ceph_cap_flush *cf =
3785 list_last_entry(&mdsc->cap_flush_list,
3786 struct ceph_cap_flush, g_list);
3787 cf->wake = true;
3788 }
d3383a8e
YZ
3789 spin_unlock(&mdsc->cap_dirty_lock);
3790
0e294387
YZ
3791 dout("sync want tid %lld flush_seq %lld\n",
3792 want_tid, want_flush);
2f2dc053
SW
3793
3794 wait_unsafe_requests(mdsc, want_tid);
0e294387 3795 wait_caps_flush(mdsc, want_flush);
2f2dc053
SW
3796}
3797
f3c60c59
SW
3798/*
3799 * true if all sessions are closed, or we force unmount
3800 */
fcff415c 3801static bool done_closing_sessions(struct ceph_mds_client *mdsc, int skipped)
f3c60c59 3802{
52953d55 3803 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN)
f3c60c59 3804 return true;
fcff415c 3805 return atomic_read(&mdsc->num_sessions) <= skipped;
f3c60c59 3806}
2f2dc053
SW
3807
3808/*
3809 * called after sb is ro.
3810 */
3811void ceph_mdsc_close_sessions(struct ceph_mds_client *mdsc)
3812{
a319bf56 3813 struct ceph_options *opts = mdsc->fsc->client->options;
2f2dc053
SW
3814 struct ceph_mds_session *session;
3815 int i;
fcff415c 3816 int skipped = 0;
2f2dc053
SW
3817
3818 dout("close_sessions\n");
3819
2f2dc053 3820 /* close sessions */
f3c60c59
SW
3821 mutex_lock(&mdsc->mutex);
3822 for (i = 0; i < mdsc->max_sessions; i++) {
3823 session = __ceph_lookup_mds_session(mdsc, i);
3824 if (!session)
3825 continue;
2f2dc053 3826 mutex_unlock(&mdsc->mutex);
f3c60c59 3827 mutex_lock(&session->s_mutex);
fcff415c
YZ
3828 if (__close_session(mdsc, session) <= 0)
3829 skipped++;
f3c60c59
SW
3830 mutex_unlock(&session->s_mutex);
3831 ceph_put_mds_session(session);
2f2dc053
SW
3832 mutex_lock(&mdsc->mutex);
3833 }
f3c60c59
SW
3834 mutex_unlock(&mdsc->mutex);
3835
3836 dout("waiting for sessions to close\n");
fcff415c
YZ
3837 wait_event_timeout(mdsc->session_close_wq,
3838 done_closing_sessions(mdsc, skipped),
a319bf56 3839 ceph_timeout_jiffies(opts->mount_timeout));
2f2dc053
SW
3840
3841 /* tear down remaining sessions */
f3c60c59 3842 mutex_lock(&mdsc->mutex);
2f2dc053
SW
3843 for (i = 0; i < mdsc->max_sessions; i++) {
3844 if (mdsc->sessions[i]) {
3845 session = get_session(mdsc->sessions[i]);
2600d2dd 3846 __unregister_session(mdsc, session);
2f2dc053
SW
3847 mutex_unlock(&mdsc->mutex);
3848 mutex_lock(&session->s_mutex);
3849 remove_session_caps(session);
3850 mutex_unlock(&session->s_mutex);
3851 ceph_put_mds_session(session);
3852 mutex_lock(&mdsc->mutex);
3853 }
3854 }
2f2dc053 3855 WARN_ON(!list_empty(&mdsc->cap_delay_list));
2f2dc053
SW
3856 mutex_unlock(&mdsc->mutex);
3857
3858 ceph_cleanup_empty_realms(mdsc);
3859
3860 cancel_delayed_work_sync(&mdsc->delayed_work); /* cancel timer */
3861
3862 dout("stopped\n");
3863}
3864
48fec5d0
YZ
3865void ceph_mdsc_force_umount(struct ceph_mds_client *mdsc)
3866{
3867 struct ceph_mds_session *session;
3868 int mds;
3869
3870 dout("force umount\n");
3871
3872 mutex_lock(&mdsc->mutex);
3873 for (mds = 0; mds < mdsc->max_sessions; mds++) {
3874 session = __ceph_lookup_mds_session(mdsc, mds);
3875 if (!session)
3876 continue;
3877 mutex_unlock(&mdsc->mutex);
3878 mutex_lock(&session->s_mutex);
3879 __close_session(mdsc, session);
3880 if (session->s_state == CEPH_MDS_SESSION_CLOSING) {
3881 cleanup_session_requests(mdsc, session);
3882 remove_session_caps(session);
3883 }
3884 mutex_unlock(&session->s_mutex);
3885 ceph_put_mds_session(session);
3886 mutex_lock(&mdsc->mutex);
3887 kick_requests(mdsc, mds);
3888 }
3889 __wake_requests(mdsc, &mdsc->waiting_for_map);
3890 mutex_unlock(&mdsc->mutex);
3891}
3892
3d14c5d2 3893static void ceph_mdsc_stop(struct ceph_mds_client *mdsc)
2f2dc053
SW
3894{
3895 dout("stop\n");
3896 cancel_delayed_work_sync(&mdsc->delayed_work); /* cancel timer */
3897 if (mdsc->mdsmap)
3898 ceph_mdsmap_destroy(mdsc->mdsmap);
3899 kfree(mdsc->sessions);
37151668 3900 ceph_caps_finalize(mdsc);
10183a69 3901 ceph_pool_perm_destroy(mdsc);
2f2dc053
SW
3902}
3903
3d14c5d2
YS
3904void ceph_mdsc_destroy(struct ceph_fs_client *fsc)
3905{
3906 struct ceph_mds_client *mdsc = fsc->mdsc;
ef550f6f 3907 dout("mdsc_destroy %p\n", mdsc);
ef550f6f 3908
50c55aec
CX
3909 if (!mdsc)
3910 return;
3911
ef550f6f
SW
3912 /* flush out any connection work with references to us */
3913 ceph_msgr_flush();
3914
62a65f36
YZ
3915 ceph_mdsc_stop(mdsc);
3916
3d14c5d2
YS
3917 fsc->mdsc = NULL;
3918 kfree(mdsc);
ef550f6f 3919 dout("mdsc_destroy %p done\n", mdsc);
3d14c5d2
YS
3920}
3921
430afbad
YZ
3922void ceph_mdsc_handle_fsmap(struct ceph_mds_client *mdsc, struct ceph_msg *msg)
3923{
3924 struct ceph_fs_client *fsc = mdsc->fsc;
3925 const char *mds_namespace = fsc->mount_options->mds_namespace;
3926 void *p = msg->front.iov_base;
3927 void *end = p + msg->front.iov_len;
3928 u32 epoch;
3929 u32 map_len;
3930 u32 num_fs;
3931 u32 mount_fscid = (u32)-1;
3932 u8 struct_v, struct_cv;
3933 int err = -EINVAL;
3934
3935 ceph_decode_need(&p, end, sizeof(u32), bad);
3936 epoch = ceph_decode_32(&p);
3937
3938 dout("handle_fsmap epoch %u\n", epoch);
3939
3940 ceph_decode_need(&p, end, 2 + sizeof(u32), bad);
3941 struct_v = ceph_decode_8(&p);
3942 struct_cv = ceph_decode_8(&p);
3943 map_len = ceph_decode_32(&p);
3944
3945 ceph_decode_need(&p, end, sizeof(u32) * 3, bad);
3946 p += sizeof(u32) * 2; /* skip epoch and legacy_client_fscid */
3947
3948 num_fs = ceph_decode_32(&p);
3949 while (num_fs-- > 0) {
3950 void *info_p, *info_end;
3951 u32 info_len;
3952 u8 info_v, info_cv;
3953 u32 fscid, namelen;
3954
3955 ceph_decode_need(&p, end, 2 + sizeof(u32), bad);
3956 info_v = ceph_decode_8(&p);
3957 info_cv = ceph_decode_8(&p);
3958 info_len = ceph_decode_32(&p);
3959 ceph_decode_need(&p, end, info_len, bad);
3960 info_p = p;
3961 info_end = p + info_len;
3962 p = info_end;
3963
3964 ceph_decode_need(&info_p, info_end, sizeof(u32) * 2, bad);
3965 fscid = ceph_decode_32(&info_p);
3966 namelen = ceph_decode_32(&info_p);
3967 ceph_decode_need(&info_p, info_end, namelen, bad);
3968
3969 if (mds_namespace &&
3970 strlen(mds_namespace) == namelen &&
3971 !strncmp(mds_namespace, (char *)info_p, namelen)) {
3972 mount_fscid = fscid;
3973 break;
3974 }
3975 }
3976
3977 ceph_monc_got_map(&fsc->client->monc, CEPH_SUB_FSMAP, epoch);
3978 if (mount_fscid != (u32)-1) {
3979 fsc->client->monc.fs_cluster_id = mount_fscid;
3980 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
3981 0, true);
3982 ceph_monc_renew_subs(&fsc->client->monc);
3983 } else {
3984 err = -ENOENT;
3985 goto err_out;
3986 }
3987 return;
76bd6ec4 3988
430afbad
YZ
3989bad:
3990 pr_err("error decoding fsmap\n");
3991err_out:
3992 mutex_lock(&mdsc->mutex);
76bd6ec4 3993 mdsc->mdsmap_err = err;
430afbad
YZ
3994 __wake_requests(mdsc, &mdsc->waiting_for_map);
3995 mutex_unlock(&mdsc->mutex);
430afbad 3996}
2f2dc053
SW
3997
3998/*
3999 * handle mds map update.
4000 */
430afbad 4001void ceph_mdsc_handle_mdsmap(struct ceph_mds_client *mdsc, struct ceph_msg *msg)
2f2dc053
SW
4002{
4003 u32 epoch;
4004 u32 maplen;
4005 void *p = msg->front.iov_base;
4006 void *end = p + msg->front.iov_len;
4007 struct ceph_mdsmap *newmap, *oldmap;
4008 struct ceph_fsid fsid;
4009 int err = -EINVAL;
4010
4011 ceph_decode_need(&p, end, sizeof(fsid)+2*sizeof(u32), bad);
4012 ceph_decode_copy(&p, &fsid, sizeof(fsid));
3d14c5d2 4013 if (ceph_check_fsid(mdsc->fsc->client, &fsid) < 0)
0743304d 4014 return;
c89136ea
SW
4015 epoch = ceph_decode_32(&p);
4016 maplen = ceph_decode_32(&p);
2f2dc053
SW
4017 dout("handle_map epoch %u len %d\n", epoch, (int)maplen);
4018
4019 /* do we need it? */
2f2dc053
SW
4020 mutex_lock(&mdsc->mutex);
4021 if (mdsc->mdsmap && epoch <= mdsc->mdsmap->m_epoch) {
4022 dout("handle_map epoch %u <= our %u\n",
4023 epoch, mdsc->mdsmap->m_epoch);
4024 mutex_unlock(&mdsc->mutex);
4025 return;
4026 }
4027
4028 newmap = ceph_mdsmap_decode(&p, end);
4029 if (IS_ERR(newmap)) {
4030 err = PTR_ERR(newmap);
4031 goto bad_unlock;
4032 }
4033
4034 /* swap into place */
4035 if (mdsc->mdsmap) {
4036 oldmap = mdsc->mdsmap;
4037 mdsc->mdsmap = newmap;
4038 check_new_map(mdsc, newmap, oldmap);
4039 ceph_mdsmap_destroy(oldmap);
4040 } else {
4041 mdsc->mdsmap = newmap; /* first mds map */
4042 }
719784ba
CX
4043 mdsc->fsc->max_file_size = min((loff_t)mdsc->mdsmap->m_max_file_size,
4044 MAX_LFS_FILESIZE);
2f2dc053
SW
4045
4046 __wake_requests(mdsc, &mdsc->waiting_for_map);
82dcabad
ID
4047 ceph_monc_got_map(&mdsc->fsc->client->monc, CEPH_SUB_MDSMAP,
4048 mdsc->mdsmap->m_epoch);
2f2dc053
SW
4049
4050 mutex_unlock(&mdsc->mutex);
4051 schedule_delayed(mdsc);
4052 return;
4053
4054bad_unlock:
4055 mutex_unlock(&mdsc->mutex);
4056bad:
4057 pr_err("error decoding mdsmap %d\n", err);
4058 return;
4059}
4060
4061static struct ceph_connection *con_get(struct ceph_connection *con)
4062{
4063 struct ceph_mds_session *s = con->private;
4064
4065 if (get_session(s)) {
3997c01d 4066 dout("mdsc con_get %p ok (%d)\n", s, refcount_read(&s->s_ref));
2f2dc053
SW
4067 return con;
4068 }
4069 dout("mdsc con_get %p FAIL\n", s);
4070 return NULL;
4071}
4072
4073static void con_put(struct ceph_connection *con)
4074{
4075 struct ceph_mds_session *s = con->private;
4076
3997c01d 4077 dout("mdsc con_put %p (%d)\n", s, refcount_read(&s->s_ref) - 1);
2f2dc053
SW
4078 ceph_put_mds_session(s);
4079}
4080
4081/*
4082 * if the client is unresponsive for long enough, the mds will kill
4083 * the session entirely.
4084 */
4085static void peer_reset(struct ceph_connection *con)
4086{
4087 struct ceph_mds_session *s = con->private;
7e70f0ed 4088 struct ceph_mds_client *mdsc = s->s_mdsc;
2f2dc053 4089
f3ae1b97 4090 pr_warn("mds%d closed our session\n", s->s_mds);
7e70f0ed 4091 send_mds_reconnect(mdsc, s);
2f2dc053
SW
4092}
4093
4094static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
4095{
4096 struct ceph_mds_session *s = con->private;
4097 struct ceph_mds_client *mdsc = s->s_mdsc;
4098 int type = le16_to_cpu(msg->hdr.type);
4099
2600d2dd
SW
4100 mutex_lock(&mdsc->mutex);
4101 if (__verify_registered_session(mdsc, s) < 0) {
4102 mutex_unlock(&mdsc->mutex);
4103 goto out;
4104 }
4105 mutex_unlock(&mdsc->mutex);
4106
2f2dc053
SW
4107 switch (type) {
4108 case CEPH_MSG_MDS_MAP:
430afbad
YZ
4109 ceph_mdsc_handle_mdsmap(mdsc, msg);
4110 break;
4111 case CEPH_MSG_FS_MAP_USER:
4112 ceph_mdsc_handle_fsmap(mdsc, msg);
2f2dc053
SW
4113 break;
4114 case CEPH_MSG_CLIENT_SESSION:
4115 handle_session(s, msg);
4116 break;
4117 case CEPH_MSG_CLIENT_REPLY:
4118 handle_reply(s, msg);
4119 break;
4120 case CEPH_MSG_CLIENT_REQUEST_FORWARD:
2600d2dd 4121 handle_forward(mdsc, s, msg);
2f2dc053
SW
4122 break;
4123 case CEPH_MSG_CLIENT_CAPS:
4124 ceph_handle_caps(s, msg);
4125 break;
4126 case CEPH_MSG_CLIENT_SNAP:
2600d2dd 4127 ceph_handle_snap(mdsc, s, msg);
2f2dc053
SW
4128 break;
4129 case CEPH_MSG_CLIENT_LEASE:
2600d2dd 4130 handle_lease(mdsc, s, msg);
2f2dc053 4131 break;
fb18a575
LH
4132 case CEPH_MSG_CLIENT_QUOTA:
4133 ceph_handle_quota(mdsc, s, msg);
4134 break;
2f2dc053
SW
4135
4136 default:
4137 pr_err("received unknown message type %d %s\n", type,
4138 ceph_msg_type_name(type));
4139 }
2600d2dd 4140out:
2f2dc053
SW
4141 ceph_msg_put(msg);
4142}
4143
4e7a5dcd
SW
4144/*
4145 * authentication
4146 */
a3530df3
AE
4147
4148/*
4149 * Note: returned pointer is the address of a structure that's
4150 * managed separately. Caller must *not* attempt to free it.
4151 */
4152static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
8f43fb53 4153 int *proto, int force_new)
4e7a5dcd
SW
4154{
4155 struct ceph_mds_session *s = con->private;
4156 struct ceph_mds_client *mdsc = s->s_mdsc;
3d14c5d2 4157 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
74f1869f 4158 struct ceph_auth_handshake *auth = &s->s_auth;
4e7a5dcd 4159
74f1869f 4160 if (force_new && auth->authorizer) {
6c1ea260 4161 ceph_auth_destroy_authorizer(auth->authorizer);
74f1869f 4162 auth->authorizer = NULL;
4e7a5dcd 4163 }
27859f97
SW
4164 if (!auth->authorizer) {
4165 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_MDS,
4166 auth);
0bed9b5c
SW
4167 if (ret)
4168 return ERR_PTR(ret);
27859f97
SW
4169 } else {
4170 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_MDS,
4171 auth);
a255651d 4172 if (ret)
a3530df3 4173 return ERR_PTR(ret);
4e7a5dcd 4174 }
4e7a5dcd 4175 *proto = ac->protocol;
74f1869f 4176
a3530df3 4177 return auth;
4e7a5dcd
SW
4178}
4179
6daca13d
ID
4180static int add_authorizer_challenge(struct ceph_connection *con,
4181 void *challenge_buf, int challenge_buf_len)
4182{
4183 struct ceph_mds_session *s = con->private;
4184 struct ceph_mds_client *mdsc = s->s_mdsc;
4185 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
4186
4187 return ceph_auth_add_authorizer_challenge(ac, s->s_auth.authorizer,
4188 challenge_buf, challenge_buf_len);
4189}
4e7a5dcd 4190
0dde5848 4191static int verify_authorizer_reply(struct ceph_connection *con)
4e7a5dcd
SW
4192{
4193 struct ceph_mds_session *s = con->private;
4194 struct ceph_mds_client *mdsc = s->s_mdsc;
3d14c5d2 4195 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
4e7a5dcd 4196
0dde5848 4197 return ceph_auth_verify_authorizer_reply(ac, s->s_auth.authorizer);
4e7a5dcd
SW
4198}
4199
9bd2e6f8
SW
4200static int invalidate_authorizer(struct ceph_connection *con)
4201{
4202 struct ceph_mds_session *s = con->private;
4203 struct ceph_mds_client *mdsc = s->s_mdsc;
3d14c5d2 4204 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth;
9bd2e6f8 4205
27859f97 4206 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_MDS);
9bd2e6f8 4207
3d14c5d2 4208 return ceph_monc_validate_auth(&mdsc->fsc->client->monc);
9bd2e6f8
SW
4209}
4210
53ded495
AE
4211static struct ceph_msg *mds_alloc_msg(struct ceph_connection *con,
4212 struct ceph_msg_header *hdr, int *skip)
4213{
4214 struct ceph_msg *msg;
4215 int type = (int) le16_to_cpu(hdr->type);
4216 int front_len = (int) le32_to_cpu(hdr->front_len);
4217
4218 if (con->in_msg)
4219 return con->in_msg;
4220
4221 *skip = 0;
4222 msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
4223 if (!msg) {
4224 pr_err("unable to allocate msg type %d len %d\n",
4225 type, front_len);
4226 return NULL;
4227 }
53ded495
AE
4228
4229 return msg;
4230}
4231
79dbd1ba 4232static int mds_sign_message(struct ceph_msg *msg)
33d07337 4233{
79dbd1ba 4234 struct ceph_mds_session *s = msg->con->private;
33d07337 4235 struct ceph_auth_handshake *auth = &s->s_auth;
79dbd1ba 4236
33d07337
YZ
4237 return ceph_auth_sign_message(auth, msg);
4238}
4239
79dbd1ba 4240static int mds_check_message_signature(struct ceph_msg *msg)
33d07337 4241{
79dbd1ba 4242 struct ceph_mds_session *s = msg->con->private;
33d07337 4243 struct ceph_auth_handshake *auth = &s->s_auth;
79dbd1ba 4244
33d07337
YZ
4245 return ceph_auth_check_message_signature(auth, msg);
4246}
4247
9e32789f 4248static const struct ceph_connection_operations mds_con_ops = {
2f2dc053
SW
4249 .get = con_get,
4250 .put = con_put,
4251 .dispatch = dispatch,
4e7a5dcd 4252 .get_authorizer = get_authorizer,
6daca13d 4253 .add_authorizer_challenge = add_authorizer_challenge,
4e7a5dcd 4254 .verify_authorizer_reply = verify_authorizer_reply,
9bd2e6f8 4255 .invalidate_authorizer = invalidate_authorizer,
2f2dc053 4256 .peer_reset = peer_reset,
53ded495 4257 .alloc_msg = mds_alloc_msg,
79dbd1ba
ID
4258 .sign_message = mds_sign_message,
4259 .check_message_signature = mds_check_message_signature,
2f2dc053
SW
4260};
4261
2f2dc053 4262/* eof */