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