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