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