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