xref: /openbmc/linux/net/ceph/osd_client.c (revision 22d2cfdf)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/ceph/ceph_debug.h>
4 
5 #include <linux/module.h>
6 #include <linux/err.h>
7 #include <linux/highmem.h>
8 #include <linux/mm.h>
9 #include <linux/pagemap.h>
10 #include <linux/slab.h>
11 #include <linux/uaccess.h>
12 #ifdef CONFIG_BLOCK
13 #include <linux/bio.h>
14 #endif
15 
16 #include <linux/ceph/ceph_features.h>
17 #include <linux/ceph/libceph.h>
18 #include <linux/ceph/osd_client.h>
19 #include <linux/ceph/messenger.h>
20 #include <linux/ceph/decode.h>
21 #include <linux/ceph/auth.h>
22 #include <linux/ceph/pagelist.h>
23 #include <linux/ceph/striper.h>
24 
25 #define OSD_OPREPLY_FRONT_LEN	512
26 
27 static struct kmem_cache	*ceph_osd_request_cache;
28 
29 static const struct ceph_connection_operations osd_con_ops;
30 
31 /*
32  * Implement client access to distributed object storage cluster.
33  *
34  * All data objects are stored within a cluster/cloud of OSDs, or
35  * "object storage devices."  (Note that Ceph OSDs have _nothing_ to
36  * do with the T10 OSD extensions to SCSI.)  Ceph OSDs are simply
37  * remote daemons serving up and coordinating consistent and safe
38  * access to storage.
39  *
40  * Cluster membership and the mapping of data objects onto storage devices
41  * are described by the osd map.
42  *
43  * We keep track of pending OSD requests (read, write), resubmit
44  * requests to different OSDs when the cluster topology/data layout
45  * change, or retry the affected requests when the communications
46  * channel with an OSD is reset.
47  */
48 
49 static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req);
50 static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req);
51 static void link_linger(struct ceph_osd *osd,
52 			struct ceph_osd_linger_request *lreq);
53 static void unlink_linger(struct ceph_osd *osd,
54 			  struct ceph_osd_linger_request *lreq);
55 static void clear_backoffs(struct ceph_osd *osd);
56 
57 #if 1
58 static inline bool rwsem_is_wrlocked(struct rw_semaphore *sem)
59 {
60 	bool wrlocked = true;
61 
62 	if (unlikely(down_read_trylock(sem))) {
63 		wrlocked = false;
64 		up_read(sem);
65 	}
66 
67 	return wrlocked;
68 }
69 static inline void verify_osdc_locked(struct ceph_osd_client *osdc)
70 {
71 	WARN_ON(!rwsem_is_locked(&osdc->lock));
72 }
73 static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc)
74 {
75 	WARN_ON(!rwsem_is_wrlocked(&osdc->lock));
76 }
77 static inline void verify_osd_locked(struct ceph_osd *osd)
78 {
79 	struct ceph_osd_client *osdc = osd->o_osdc;
80 
81 	WARN_ON(!(mutex_is_locked(&osd->lock) &&
82 		  rwsem_is_locked(&osdc->lock)) &&
83 		!rwsem_is_wrlocked(&osdc->lock));
84 }
85 static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq)
86 {
87 	WARN_ON(!mutex_is_locked(&lreq->lock));
88 }
89 #else
90 static inline void verify_osdc_locked(struct ceph_osd_client *osdc) { }
91 static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc) { }
92 static inline void verify_osd_locked(struct ceph_osd *osd) { }
93 static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq) { }
94 #endif
95 
96 /*
97  * calculate the mapping of a file extent onto an object, and fill out the
98  * request accordingly.  shorten extent as necessary if it crosses an
99  * object boundary.
100  *
101  * fill osd op in request message.
102  */
103 static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
104 			u64 *objnum, u64 *objoff, u64 *objlen)
105 {
106 	u64 orig_len = *plen;
107 	u32 xlen;
108 
109 	/* object extent? */
110 	ceph_calc_file_object_mapping(layout, off, orig_len, objnum,
111 					  objoff, &xlen);
112 	*objlen = xlen;
113 	if (*objlen < orig_len) {
114 		*plen = *objlen;
115 		dout(" skipping last %llu, final file extent %llu~%llu\n",
116 		     orig_len - *plen, off, *plen);
117 	}
118 
119 	dout("calc_layout objnum=%llx %llu~%llu\n", *objnum, *objoff, *objlen);
120 	return 0;
121 }
122 
123 static void ceph_osd_data_init(struct ceph_osd_data *osd_data)
124 {
125 	memset(osd_data, 0, sizeof (*osd_data));
126 	osd_data->type = CEPH_OSD_DATA_TYPE_NONE;
127 }
128 
129 /*
130  * Consumes @pages if @own_pages is true.
131  */
132 static void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
133 			struct page **pages, u64 length, u32 alignment,
134 			bool pages_from_pool, bool own_pages)
135 {
136 	osd_data->type = CEPH_OSD_DATA_TYPE_PAGES;
137 	osd_data->pages = pages;
138 	osd_data->length = length;
139 	osd_data->alignment = alignment;
140 	osd_data->pages_from_pool = pages_from_pool;
141 	osd_data->own_pages = own_pages;
142 }
143 
144 /*
145  * Consumes a ref on @pagelist.
146  */
147 static void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
148 			struct ceph_pagelist *pagelist)
149 {
150 	osd_data->type = CEPH_OSD_DATA_TYPE_PAGELIST;
151 	osd_data->pagelist = pagelist;
152 }
153 
154 #ifdef CONFIG_BLOCK
155 static void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
156 				   struct ceph_bio_iter *bio_pos,
157 				   u32 bio_length)
158 {
159 	osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
160 	osd_data->bio_pos = *bio_pos;
161 	osd_data->bio_length = bio_length;
162 }
163 #endif /* CONFIG_BLOCK */
164 
165 static void ceph_osd_data_bvecs_init(struct ceph_osd_data *osd_data,
166 				     struct ceph_bvec_iter *bvec_pos,
167 				     u32 num_bvecs)
168 {
169 	osd_data->type = CEPH_OSD_DATA_TYPE_BVECS;
170 	osd_data->bvec_pos = *bvec_pos;
171 	osd_data->num_bvecs = num_bvecs;
172 }
173 
174 static struct ceph_osd_data *
175 osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which)
176 {
177 	BUG_ON(which >= osd_req->r_num_ops);
178 
179 	return &osd_req->r_ops[which].raw_data_in;
180 }
181 
182 struct ceph_osd_data *
183 osd_req_op_extent_osd_data(struct ceph_osd_request *osd_req,
184 			unsigned int which)
185 {
186 	return osd_req_op_data(osd_req, which, extent, osd_data);
187 }
188 EXPORT_SYMBOL(osd_req_op_extent_osd_data);
189 
190 void osd_req_op_raw_data_in_pages(struct ceph_osd_request *osd_req,
191 			unsigned int which, struct page **pages,
192 			u64 length, u32 alignment,
193 			bool pages_from_pool, bool own_pages)
194 {
195 	struct ceph_osd_data *osd_data;
196 
197 	osd_data = osd_req_op_raw_data_in(osd_req, which);
198 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
199 				pages_from_pool, own_pages);
200 }
201 EXPORT_SYMBOL(osd_req_op_raw_data_in_pages);
202 
203 void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *osd_req,
204 			unsigned int which, struct page **pages,
205 			u64 length, u32 alignment,
206 			bool pages_from_pool, bool own_pages)
207 {
208 	struct ceph_osd_data *osd_data;
209 
210 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
211 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
212 				pages_from_pool, own_pages);
213 }
214 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages);
215 
216 void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *osd_req,
217 			unsigned int which, struct ceph_pagelist *pagelist)
218 {
219 	struct ceph_osd_data *osd_data;
220 
221 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
222 	ceph_osd_data_pagelist_init(osd_data, pagelist);
223 }
224 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist);
225 
226 #ifdef CONFIG_BLOCK
227 void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
228 				    unsigned int which,
229 				    struct ceph_bio_iter *bio_pos,
230 				    u32 bio_length)
231 {
232 	struct ceph_osd_data *osd_data;
233 
234 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
235 	ceph_osd_data_bio_init(osd_data, bio_pos, bio_length);
236 }
237 EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio);
238 #endif /* CONFIG_BLOCK */
239 
240 void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
241 				      unsigned int which,
242 				      struct bio_vec *bvecs, u32 num_bvecs,
243 				      u32 bytes)
244 {
245 	struct ceph_osd_data *osd_data;
246 	struct ceph_bvec_iter it = {
247 		.bvecs = bvecs,
248 		.iter = { .bi_size = bytes },
249 	};
250 
251 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
252 	ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
253 }
254 EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvecs);
255 
256 void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
257 					 unsigned int which,
258 					 struct ceph_bvec_iter *bvec_pos)
259 {
260 	struct ceph_osd_data *osd_data;
261 
262 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
263 	ceph_osd_data_bvecs_init(osd_data, bvec_pos, 0);
264 }
265 EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvec_pos);
266 
267 static void osd_req_op_cls_request_info_pagelist(
268 			struct ceph_osd_request *osd_req,
269 			unsigned int which, struct ceph_pagelist *pagelist)
270 {
271 	struct ceph_osd_data *osd_data;
272 
273 	osd_data = osd_req_op_data(osd_req, which, cls, request_info);
274 	ceph_osd_data_pagelist_init(osd_data, pagelist);
275 }
276 
277 void osd_req_op_cls_request_data_pagelist(
278 			struct ceph_osd_request *osd_req,
279 			unsigned int which, struct ceph_pagelist *pagelist)
280 {
281 	struct ceph_osd_data *osd_data;
282 
283 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
284 	ceph_osd_data_pagelist_init(osd_data, pagelist);
285 	osd_req->r_ops[which].cls.indata_len += pagelist->length;
286 	osd_req->r_ops[which].indata_len += pagelist->length;
287 }
288 EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist);
289 
290 void osd_req_op_cls_request_data_pages(struct ceph_osd_request *osd_req,
291 			unsigned int which, struct page **pages, u64 length,
292 			u32 alignment, bool pages_from_pool, bool own_pages)
293 {
294 	struct ceph_osd_data *osd_data;
295 
296 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
297 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
298 				pages_from_pool, own_pages);
299 	osd_req->r_ops[which].cls.indata_len += length;
300 	osd_req->r_ops[which].indata_len += length;
301 }
302 EXPORT_SYMBOL(osd_req_op_cls_request_data_pages);
303 
304 void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
305 				       unsigned int which,
306 				       struct bio_vec *bvecs, u32 num_bvecs,
307 				       u32 bytes)
308 {
309 	struct ceph_osd_data *osd_data;
310 	struct ceph_bvec_iter it = {
311 		.bvecs = bvecs,
312 		.iter = { .bi_size = bytes },
313 	};
314 
315 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
316 	ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
317 	osd_req->r_ops[which].cls.indata_len += bytes;
318 	osd_req->r_ops[which].indata_len += bytes;
319 }
320 EXPORT_SYMBOL(osd_req_op_cls_request_data_bvecs);
321 
322 void osd_req_op_cls_response_data_pages(struct ceph_osd_request *osd_req,
323 			unsigned int which, struct page **pages, u64 length,
324 			u32 alignment, bool pages_from_pool, bool own_pages)
325 {
326 	struct ceph_osd_data *osd_data;
327 
328 	osd_data = osd_req_op_data(osd_req, which, cls, response_data);
329 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
330 				pages_from_pool, own_pages);
331 }
332 EXPORT_SYMBOL(osd_req_op_cls_response_data_pages);
333 
334 static u64 ceph_osd_data_length(struct ceph_osd_data *osd_data)
335 {
336 	switch (osd_data->type) {
337 	case CEPH_OSD_DATA_TYPE_NONE:
338 		return 0;
339 	case CEPH_OSD_DATA_TYPE_PAGES:
340 		return osd_data->length;
341 	case CEPH_OSD_DATA_TYPE_PAGELIST:
342 		return (u64)osd_data->pagelist->length;
343 #ifdef CONFIG_BLOCK
344 	case CEPH_OSD_DATA_TYPE_BIO:
345 		return (u64)osd_data->bio_length;
346 #endif /* CONFIG_BLOCK */
347 	case CEPH_OSD_DATA_TYPE_BVECS:
348 		return osd_data->bvec_pos.iter.bi_size;
349 	default:
350 		WARN(true, "unrecognized data type %d\n", (int)osd_data->type);
351 		return 0;
352 	}
353 }
354 
355 static void ceph_osd_data_release(struct ceph_osd_data *osd_data)
356 {
357 	if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES && osd_data->own_pages) {
358 		int num_pages;
359 
360 		num_pages = calc_pages_for((u64)osd_data->alignment,
361 						(u64)osd_data->length);
362 		ceph_release_page_vector(osd_data->pages, num_pages);
363 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
364 		ceph_pagelist_release(osd_data->pagelist);
365 	}
366 	ceph_osd_data_init(osd_data);
367 }
368 
369 static void osd_req_op_data_release(struct ceph_osd_request *osd_req,
370 			unsigned int which)
371 {
372 	struct ceph_osd_req_op *op;
373 
374 	BUG_ON(which >= osd_req->r_num_ops);
375 	op = &osd_req->r_ops[which];
376 
377 	switch (op->op) {
378 	case CEPH_OSD_OP_READ:
379 	case CEPH_OSD_OP_WRITE:
380 	case CEPH_OSD_OP_WRITEFULL:
381 		ceph_osd_data_release(&op->extent.osd_data);
382 		break;
383 	case CEPH_OSD_OP_CALL:
384 		ceph_osd_data_release(&op->cls.request_info);
385 		ceph_osd_data_release(&op->cls.request_data);
386 		ceph_osd_data_release(&op->cls.response_data);
387 		break;
388 	case CEPH_OSD_OP_SETXATTR:
389 	case CEPH_OSD_OP_CMPXATTR:
390 		ceph_osd_data_release(&op->xattr.osd_data);
391 		break;
392 	case CEPH_OSD_OP_STAT:
393 		ceph_osd_data_release(&op->raw_data_in);
394 		break;
395 	case CEPH_OSD_OP_NOTIFY_ACK:
396 		ceph_osd_data_release(&op->notify_ack.request_data);
397 		break;
398 	case CEPH_OSD_OP_NOTIFY:
399 		ceph_osd_data_release(&op->notify.request_data);
400 		ceph_osd_data_release(&op->notify.response_data);
401 		break;
402 	case CEPH_OSD_OP_LIST_WATCHERS:
403 		ceph_osd_data_release(&op->list_watchers.response_data);
404 		break;
405 	case CEPH_OSD_OP_COPY_FROM2:
406 		ceph_osd_data_release(&op->copy_from.osd_data);
407 		break;
408 	default:
409 		break;
410 	}
411 }
412 
413 /*
414  * Assumes @t is zero-initialized.
415  */
416 static void target_init(struct ceph_osd_request_target *t)
417 {
418 	ceph_oid_init(&t->base_oid);
419 	ceph_oloc_init(&t->base_oloc);
420 	ceph_oid_init(&t->target_oid);
421 	ceph_oloc_init(&t->target_oloc);
422 
423 	ceph_osds_init(&t->acting);
424 	ceph_osds_init(&t->up);
425 	t->size = -1;
426 	t->min_size = -1;
427 
428 	t->osd = CEPH_HOMELESS_OSD;
429 }
430 
431 static void target_copy(struct ceph_osd_request_target *dest,
432 			const struct ceph_osd_request_target *src)
433 {
434 	ceph_oid_copy(&dest->base_oid, &src->base_oid);
435 	ceph_oloc_copy(&dest->base_oloc, &src->base_oloc);
436 	ceph_oid_copy(&dest->target_oid, &src->target_oid);
437 	ceph_oloc_copy(&dest->target_oloc, &src->target_oloc);
438 
439 	dest->pgid = src->pgid; /* struct */
440 	dest->spgid = src->spgid; /* struct */
441 	dest->pg_num = src->pg_num;
442 	dest->pg_num_mask = src->pg_num_mask;
443 	ceph_osds_copy(&dest->acting, &src->acting);
444 	ceph_osds_copy(&dest->up, &src->up);
445 	dest->size = src->size;
446 	dest->min_size = src->min_size;
447 	dest->sort_bitwise = src->sort_bitwise;
448 
449 	dest->flags = src->flags;
450 	dest->paused = src->paused;
451 
452 	dest->epoch = src->epoch;
453 	dest->last_force_resend = src->last_force_resend;
454 
455 	dest->osd = src->osd;
456 }
457 
458 static void target_destroy(struct ceph_osd_request_target *t)
459 {
460 	ceph_oid_destroy(&t->base_oid);
461 	ceph_oloc_destroy(&t->base_oloc);
462 	ceph_oid_destroy(&t->target_oid);
463 	ceph_oloc_destroy(&t->target_oloc);
464 }
465 
466 /*
467  * requests
468  */
469 static void request_release_checks(struct ceph_osd_request *req)
470 {
471 	WARN_ON(!RB_EMPTY_NODE(&req->r_node));
472 	WARN_ON(!RB_EMPTY_NODE(&req->r_mc_node));
473 	WARN_ON(!list_empty(&req->r_private_item));
474 	WARN_ON(req->r_osd);
475 }
476 
477 static void ceph_osdc_release_request(struct kref *kref)
478 {
479 	struct ceph_osd_request *req = container_of(kref,
480 					    struct ceph_osd_request, r_kref);
481 	unsigned int which;
482 
483 	dout("%s %p (r_request %p r_reply %p)\n", __func__, req,
484 	     req->r_request, req->r_reply);
485 	request_release_checks(req);
486 
487 	if (req->r_request)
488 		ceph_msg_put(req->r_request);
489 	if (req->r_reply)
490 		ceph_msg_put(req->r_reply);
491 
492 	for (which = 0; which < req->r_num_ops; which++)
493 		osd_req_op_data_release(req, which);
494 
495 	target_destroy(&req->r_t);
496 	ceph_put_snap_context(req->r_snapc);
497 
498 	if (req->r_mempool)
499 		mempool_free(req, req->r_osdc->req_mempool);
500 	else if (req->r_num_ops <= CEPH_OSD_SLAB_OPS)
501 		kmem_cache_free(ceph_osd_request_cache, req);
502 	else
503 		kfree(req);
504 }
505 
506 void ceph_osdc_get_request(struct ceph_osd_request *req)
507 {
508 	dout("%s %p (was %d)\n", __func__, req,
509 	     kref_read(&req->r_kref));
510 	kref_get(&req->r_kref);
511 }
512 EXPORT_SYMBOL(ceph_osdc_get_request);
513 
514 void ceph_osdc_put_request(struct ceph_osd_request *req)
515 {
516 	if (req) {
517 		dout("%s %p (was %d)\n", __func__, req,
518 		     kref_read(&req->r_kref));
519 		kref_put(&req->r_kref, ceph_osdc_release_request);
520 	}
521 }
522 EXPORT_SYMBOL(ceph_osdc_put_request);
523 
524 static void request_init(struct ceph_osd_request *req)
525 {
526 	/* req only, each op is zeroed in _osd_req_op_init() */
527 	memset(req, 0, sizeof(*req));
528 
529 	kref_init(&req->r_kref);
530 	init_completion(&req->r_completion);
531 	RB_CLEAR_NODE(&req->r_node);
532 	RB_CLEAR_NODE(&req->r_mc_node);
533 	INIT_LIST_HEAD(&req->r_private_item);
534 
535 	target_init(&req->r_t);
536 }
537 
538 /*
539  * This is ugly, but it allows us to reuse linger registration and ping
540  * requests, keeping the structure of the code around send_linger{_ping}()
541  * reasonable.  Setting up a min_nr=2 mempool for each linger request
542  * and dealing with copying ops (this blasts req only, watch op remains
543  * intact) isn't any better.
544  */
545 static void request_reinit(struct ceph_osd_request *req)
546 {
547 	struct ceph_osd_client *osdc = req->r_osdc;
548 	bool mempool = req->r_mempool;
549 	unsigned int num_ops = req->r_num_ops;
550 	u64 snapid = req->r_snapid;
551 	struct ceph_snap_context *snapc = req->r_snapc;
552 	bool linger = req->r_linger;
553 	struct ceph_msg *request_msg = req->r_request;
554 	struct ceph_msg *reply_msg = req->r_reply;
555 
556 	dout("%s req %p\n", __func__, req);
557 	WARN_ON(kref_read(&req->r_kref) != 1);
558 	request_release_checks(req);
559 
560 	WARN_ON(kref_read(&request_msg->kref) != 1);
561 	WARN_ON(kref_read(&reply_msg->kref) != 1);
562 	target_destroy(&req->r_t);
563 
564 	request_init(req);
565 	req->r_osdc = osdc;
566 	req->r_mempool = mempool;
567 	req->r_num_ops = num_ops;
568 	req->r_snapid = snapid;
569 	req->r_snapc = snapc;
570 	req->r_linger = linger;
571 	req->r_request = request_msg;
572 	req->r_reply = reply_msg;
573 }
574 
575 struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
576 					       struct ceph_snap_context *snapc,
577 					       unsigned int num_ops,
578 					       bool use_mempool,
579 					       gfp_t gfp_flags)
580 {
581 	struct ceph_osd_request *req;
582 
583 	if (use_mempool) {
584 		BUG_ON(num_ops > CEPH_OSD_SLAB_OPS);
585 		req = mempool_alloc(osdc->req_mempool, gfp_flags);
586 	} else if (num_ops <= CEPH_OSD_SLAB_OPS) {
587 		req = kmem_cache_alloc(ceph_osd_request_cache, gfp_flags);
588 	} else {
589 		BUG_ON(num_ops > CEPH_OSD_MAX_OPS);
590 		req = kmalloc(struct_size(req, r_ops, num_ops), gfp_flags);
591 	}
592 	if (unlikely(!req))
593 		return NULL;
594 
595 	request_init(req);
596 	req->r_osdc = osdc;
597 	req->r_mempool = use_mempool;
598 	req->r_num_ops = num_ops;
599 	req->r_snapid = CEPH_NOSNAP;
600 	req->r_snapc = ceph_get_snap_context(snapc);
601 
602 	dout("%s req %p\n", __func__, req);
603 	return req;
604 }
605 EXPORT_SYMBOL(ceph_osdc_alloc_request);
606 
607 static int ceph_oloc_encoding_size(const struct ceph_object_locator *oloc)
608 {
609 	return 8 + 4 + 4 + 4 + (oloc->pool_ns ? oloc->pool_ns->len : 0);
610 }
611 
612 static int __ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp,
613 				      int num_request_data_items,
614 				      int num_reply_data_items)
615 {
616 	struct ceph_osd_client *osdc = req->r_osdc;
617 	struct ceph_msg *msg;
618 	int msg_size;
619 
620 	WARN_ON(req->r_request || req->r_reply);
621 	WARN_ON(ceph_oid_empty(&req->r_base_oid));
622 	WARN_ON(ceph_oloc_empty(&req->r_base_oloc));
623 
624 	/* create request message */
625 	msg_size = CEPH_ENCODING_START_BLK_LEN +
626 			CEPH_PGID_ENCODING_LEN + 1; /* spgid */
627 	msg_size += 4 + 4 + 4; /* hash, osdmap_epoch, flags */
628 	msg_size += CEPH_ENCODING_START_BLK_LEN +
629 			sizeof(struct ceph_osd_reqid); /* reqid */
630 	msg_size += sizeof(struct ceph_blkin_trace_info); /* trace */
631 	msg_size += 4 + sizeof(struct ceph_timespec); /* client_inc, mtime */
632 	msg_size += CEPH_ENCODING_START_BLK_LEN +
633 			ceph_oloc_encoding_size(&req->r_base_oloc); /* oloc */
634 	msg_size += 4 + req->r_base_oid.name_len; /* oid */
635 	msg_size += 2 + req->r_num_ops * sizeof(struct ceph_osd_op);
636 	msg_size += 8; /* snapid */
637 	msg_size += 8; /* snap_seq */
638 	msg_size += 4 + 8 * (req->r_snapc ? req->r_snapc->num_snaps : 0);
639 	msg_size += 4 + 8; /* retry_attempt, features */
640 
641 	if (req->r_mempool)
642 		msg = ceph_msgpool_get(&osdc->msgpool_op, msg_size,
643 				       num_request_data_items);
644 	else
645 		msg = ceph_msg_new2(CEPH_MSG_OSD_OP, msg_size,
646 				    num_request_data_items, gfp, true);
647 	if (!msg)
648 		return -ENOMEM;
649 
650 	memset(msg->front.iov_base, 0, msg->front.iov_len);
651 	req->r_request = msg;
652 
653 	/* create reply message */
654 	msg_size = OSD_OPREPLY_FRONT_LEN;
655 	msg_size += req->r_base_oid.name_len;
656 	msg_size += req->r_num_ops * sizeof(struct ceph_osd_op);
657 
658 	if (req->r_mempool)
659 		msg = ceph_msgpool_get(&osdc->msgpool_op_reply, msg_size,
660 				       num_reply_data_items);
661 	else
662 		msg = ceph_msg_new2(CEPH_MSG_OSD_OPREPLY, msg_size,
663 				    num_reply_data_items, gfp, true);
664 	if (!msg)
665 		return -ENOMEM;
666 
667 	req->r_reply = msg;
668 
669 	return 0;
670 }
671 
672 static bool osd_req_opcode_valid(u16 opcode)
673 {
674 	switch (opcode) {
675 #define GENERATE_CASE(op, opcode, str)	case CEPH_OSD_OP_##op: return true;
676 __CEPH_FORALL_OSD_OPS(GENERATE_CASE)
677 #undef GENERATE_CASE
678 	default:
679 		return false;
680 	}
681 }
682 
683 static void get_num_data_items(struct ceph_osd_request *req,
684 			       int *num_request_data_items,
685 			       int *num_reply_data_items)
686 {
687 	struct ceph_osd_req_op *op;
688 
689 	*num_request_data_items = 0;
690 	*num_reply_data_items = 0;
691 
692 	for (op = req->r_ops; op != &req->r_ops[req->r_num_ops]; op++) {
693 		switch (op->op) {
694 		/* request */
695 		case CEPH_OSD_OP_WRITE:
696 		case CEPH_OSD_OP_WRITEFULL:
697 		case CEPH_OSD_OP_SETXATTR:
698 		case CEPH_OSD_OP_CMPXATTR:
699 		case CEPH_OSD_OP_NOTIFY_ACK:
700 		case CEPH_OSD_OP_COPY_FROM2:
701 			*num_request_data_items += 1;
702 			break;
703 
704 		/* reply */
705 		case CEPH_OSD_OP_STAT:
706 		case CEPH_OSD_OP_READ:
707 		case CEPH_OSD_OP_LIST_WATCHERS:
708 			*num_reply_data_items += 1;
709 			break;
710 
711 		/* both */
712 		case CEPH_OSD_OP_NOTIFY:
713 			*num_request_data_items += 1;
714 			*num_reply_data_items += 1;
715 			break;
716 		case CEPH_OSD_OP_CALL:
717 			*num_request_data_items += 2;
718 			*num_reply_data_items += 1;
719 			break;
720 
721 		default:
722 			WARN_ON(!osd_req_opcode_valid(op->op));
723 			break;
724 		}
725 	}
726 }
727 
728 /*
729  * oid, oloc and OSD op opcode(s) must be filled in before this function
730  * is called.
731  */
732 int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp)
733 {
734 	int num_request_data_items, num_reply_data_items;
735 
736 	get_num_data_items(req, &num_request_data_items, &num_reply_data_items);
737 	return __ceph_osdc_alloc_messages(req, gfp, num_request_data_items,
738 					  num_reply_data_items);
739 }
740 EXPORT_SYMBOL(ceph_osdc_alloc_messages);
741 
742 /*
743  * This is an osd op init function for opcodes that have no data or
744  * other information associated with them.  It also serves as a
745  * common init routine for all the other init functions, below.
746  */
747 static struct ceph_osd_req_op *
748 _osd_req_op_init(struct ceph_osd_request *osd_req, unsigned int which,
749 		 u16 opcode, u32 flags)
750 {
751 	struct ceph_osd_req_op *op;
752 
753 	BUG_ON(which >= osd_req->r_num_ops);
754 	BUG_ON(!osd_req_opcode_valid(opcode));
755 
756 	op = &osd_req->r_ops[which];
757 	memset(op, 0, sizeof (*op));
758 	op->op = opcode;
759 	op->flags = flags;
760 
761 	return op;
762 }
763 
764 void osd_req_op_init(struct ceph_osd_request *osd_req,
765 		     unsigned int which, u16 opcode, u32 flags)
766 {
767 	(void)_osd_req_op_init(osd_req, which, opcode, flags);
768 }
769 EXPORT_SYMBOL(osd_req_op_init);
770 
771 void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
772 				unsigned int which, u16 opcode,
773 				u64 offset, u64 length,
774 				u64 truncate_size, u32 truncate_seq)
775 {
776 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
777 						      opcode, 0);
778 	size_t payload_len = 0;
779 
780 	BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
781 	       opcode != CEPH_OSD_OP_WRITEFULL && opcode != CEPH_OSD_OP_ZERO &&
782 	       opcode != CEPH_OSD_OP_TRUNCATE);
783 
784 	op->extent.offset = offset;
785 	op->extent.length = length;
786 	op->extent.truncate_size = truncate_size;
787 	op->extent.truncate_seq = truncate_seq;
788 	if (opcode == CEPH_OSD_OP_WRITE || opcode == CEPH_OSD_OP_WRITEFULL)
789 		payload_len += length;
790 
791 	op->indata_len = payload_len;
792 }
793 EXPORT_SYMBOL(osd_req_op_extent_init);
794 
795 void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
796 				unsigned int which, u64 length)
797 {
798 	struct ceph_osd_req_op *op;
799 	u64 previous;
800 
801 	BUG_ON(which >= osd_req->r_num_ops);
802 	op = &osd_req->r_ops[which];
803 	previous = op->extent.length;
804 
805 	if (length == previous)
806 		return;		/* Nothing to do */
807 	BUG_ON(length > previous);
808 
809 	op->extent.length = length;
810 	if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
811 		op->indata_len -= previous - length;
812 }
813 EXPORT_SYMBOL(osd_req_op_extent_update);
814 
815 void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
816 				unsigned int which, u64 offset_inc)
817 {
818 	struct ceph_osd_req_op *op, *prev_op;
819 
820 	BUG_ON(which + 1 >= osd_req->r_num_ops);
821 
822 	prev_op = &osd_req->r_ops[which];
823 	op = _osd_req_op_init(osd_req, which + 1, prev_op->op, prev_op->flags);
824 	/* dup previous one */
825 	op->indata_len = prev_op->indata_len;
826 	op->outdata_len = prev_op->outdata_len;
827 	op->extent = prev_op->extent;
828 	/* adjust offset */
829 	op->extent.offset += offset_inc;
830 	op->extent.length -= offset_inc;
831 
832 	if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
833 		op->indata_len -= offset_inc;
834 }
835 EXPORT_SYMBOL(osd_req_op_extent_dup_last);
836 
837 int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
838 			const char *class, const char *method)
839 {
840 	struct ceph_osd_req_op *op;
841 	struct ceph_pagelist *pagelist;
842 	size_t payload_len = 0;
843 	size_t size;
844 	int ret;
845 
846 	op = _osd_req_op_init(osd_req, which, CEPH_OSD_OP_CALL, 0);
847 
848 	pagelist = ceph_pagelist_alloc(GFP_NOFS);
849 	if (!pagelist)
850 		return -ENOMEM;
851 
852 	op->cls.class_name = class;
853 	size = strlen(class);
854 	BUG_ON(size > (size_t) U8_MAX);
855 	op->cls.class_len = size;
856 	ret = ceph_pagelist_append(pagelist, class, size);
857 	if (ret)
858 		goto err_pagelist_free;
859 	payload_len += size;
860 
861 	op->cls.method_name = method;
862 	size = strlen(method);
863 	BUG_ON(size > (size_t) U8_MAX);
864 	op->cls.method_len = size;
865 	ret = ceph_pagelist_append(pagelist, method, size);
866 	if (ret)
867 		goto err_pagelist_free;
868 	payload_len += size;
869 
870 	osd_req_op_cls_request_info_pagelist(osd_req, which, pagelist);
871 	op->indata_len = payload_len;
872 	return 0;
873 
874 err_pagelist_free:
875 	ceph_pagelist_release(pagelist);
876 	return ret;
877 }
878 EXPORT_SYMBOL(osd_req_op_cls_init);
879 
880 int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
881 			  u16 opcode, const char *name, const void *value,
882 			  size_t size, u8 cmp_op, u8 cmp_mode)
883 {
884 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
885 						      opcode, 0);
886 	struct ceph_pagelist *pagelist;
887 	size_t payload_len;
888 	int ret;
889 
890 	BUG_ON(opcode != CEPH_OSD_OP_SETXATTR && opcode != CEPH_OSD_OP_CMPXATTR);
891 
892 	pagelist = ceph_pagelist_alloc(GFP_NOFS);
893 	if (!pagelist)
894 		return -ENOMEM;
895 
896 	payload_len = strlen(name);
897 	op->xattr.name_len = payload_len;
898 	ret = ceph_pagelist_append(pagelist, name, payload_len);
899 	if (ret)
900 		goto err_pagelist_free;
901 
902 	op->xattr.value_len = size;
903 	ret = ceph_pagelist_append(pagelist, value, size);
904 	if (ret)
905 		goto err_pagelist_free;
906 	payload_len += size;
907 
908 	op->xattr.cmp_op = cmp_op;
909 	op->xattr.cmp_mode = cmp_mode;
910 
911 	ceph_osd_data_pagelist_init(&op->xattr.osd_data, pagelist);
912 	op->indata_len = payload_len;
913 	return 0;
914 
915 err_pagelist_free:
916 	ceph_pagelist_release(pagelist);
917 	return ret;
918 }
919 EXPORT_SYMBOL(osd_req_op_xattr_init);
920 
921 /*
922  * @watch_opcode: CEPH_OSD_WATCH_OP_*
923  */
924 static void osd_req_op_watch_init(struct ceph_osd_request *req, int which,
925 				  u64 cookie, u8 watch_opcode)
926 {
927 	struct ceph_osd_req_op *op;
928 
929 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_WATCH, 0);
930 	op->watch.cookie = cookie;
931 	op->watch.op = watch_opcode;
932 	op->watch.gen = 0;
933 }
934 
935 /*
936  * @flags: CEPH_OSD_OP_ALLOC_HINT_FLAG_*
937  */
938 void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
939 				unsigned int which,
940 				u64 expected_object_size,
941 				u64 expected_write_size,
942 				u32 flags)
943 {
944 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
945 						      CEPH_OSD_OP_SETALLOCHINT,
946 						      0);
947 
948 	op->alloc_hint.expected_object_size = expected_object_size;
949 	op->alloc_hint.expected_write_size = expected_write_size;
950 	op->alloc_hint.flags = flags;
951 
952 	/*
953 	 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
954 	 * not worth a feature bit.  Set FAILOK per-op flag to make
955 	 * sure older osds don't trip over an unsupported opcode.
956 	 */
957 	op->flags |= CEPH_OSD_OP_FLAG_FAILOK;
958 }
959 EXPORT_SYMBOL(osd_req_op_alloc_hint_init);
960 
961 static void ceph_osdc_msg_data_add(struct ceph_msg *msg,
962 				struct ceph_osd_data *osd_data)
963 {
964 	u64 length = ceph_osd_data_length(osd_data);
965 
966 	if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
967 		BUG_ON(length > (u64) SIZE_MAX);
968 		if (length)
969 			ceph_msg_data_add_pages(msg, osd_data->pages,
970 					length, osd_data->alignment, false);
971 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
972 		BUG_ON(!length);
973 		ceph_msg_data_add_pagelist(msg, osd_data->pagelist);
974 #ifdef CONFIG_BLOCK
975 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_BIO) {
976 		ceph_msg_data_add_bio(msg, &osd_data->bio_pos, length);
977 #endif
978 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_BVECS) {
979 		ceph_msg_data_add_bvecs(msg, &osd_data->bvec_pos);
980 	} else {
981 		BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_NONE);
982 	}
983 }
984 
985 static u32 osd_req_encode_op(struct ceph_osd_op *dst,
986 			     const struct ceph_osd_req_op *src)
987 {
988 	switch (src->op) {
989 	case CEPH_OSD_OP_STAT:
990 		break;
991 	case CEPH_OSD_OP_READ:
992 	case CEPH_OSD_OP_WRITE:
993 	case CEPH_OSD_OP_WRITEFULL:
994 	case CEPH_OSD_OP_ZERO:
995 	case CEPH_OSD_OP_TRUNCATE:
996 		dst->extent.offset = cpu_to_le64(src->extent.offset);
997 		dst->extent.length = cpu_to_le64(src->extent.length);
998 		dst->extent.truncate_size =
999 			cpu_to_le64(src->extent.truncate_size);
1000 		dst->extent.truncate_seq =
1001 			cpu_to_le32(src->extent.truncate_seq);
1002 		break;
1003 	case CEPH_OSD_OP_CALL:
1004 		dst->cls.class_len = src->cls.class_len;
1005 		dst->cls.method_len = src->cls.method_len;
1006 		dst->cls.indata_len = cpu_to_le32(src->cls.indata_len);
1007 		break;
1008 	case CEPH_OSD_OP_WATCH:
1009 		dst->watch.cookie = cpu_to_le64(src->watch.cookie);
1010 		dst->watch.ver = cpu_to_le64(0);
1011 		dst->watch.op = src->watch.op;
1012 		dst->watch.gen = cpu_to_le32(src->watch.gen);
1013 		break;
1014 	case CEPH_OSD_OP_NOTIFY_ACK:
1015 		break;
1016 	case CEPH_OSD_OP_NOTIFY:
1017 		dst->notify.cookie = cpu_to_le64(src->notify.cookie);
1018 		break;
1019 	case CEPH_OSD_OP_LIST_WATCHERS:
1020 		break;
1021 	case CEPH_OSD_OP_SETALLOCHINT:
1022 		dst->alloc_hint.expected_object_size =
1023 		    cpu_to_le64(src->alloc_hint.expected_object_size);
1024 		dst->alloc_hint.expected_write_size =
1025 		    cpu_to_le64(src->alloc_hint.expected_write_size);
1026 		dst->alloc_hint.flags = cpu_to_le32(src->alloc_hint.flags);
1027 		break;
1028 	case CEPH_OSD_OP_SETXATTR:
1029 	case CEPH_OSD_OP_CMPXATTR:
1030 		dst->xattr.name_len = cpu_to_le32(src->xattr.name_len);
1031 		dst->xattr.value_len = cpu_to_le32(src->xattr.value_len);
1032 		dst->xattr.cmp_op = src->xattr.cmp_op;
1033 		dst->xattr.cmp_mode = src->xattr.cmp_mode;
1034 		break;
1035 	case CEPH_OSD_OP_CREATE:
1036 	case CEPH_OSD_OP_DELETE:
1037 		break;
1038 	case CEPH_OSD_OP_COPY_FROM2:
1039 		dst->copy_from.snapid = cpu_to_le64(src->copy_from.snapid);
1040 		dst->copy_from.src_version =
1041 			cpu_to_le64(src->copy_from.src_version);
1042 		dst->copy_from.flags = src->copy_from.flags;
1043 		dst->copy_from.src_fadvise_flags =
1044 			cpu_to_le32(src->copy_from.src_fadvise_flags);
1045 		break;
1046 	default:
1047 		pr_err("unsupported osd opcode %s\n",
1048 			ceph_osd_op_name(src->op));
1049 		WARN_ON(1);
1050 
1051 		return 0;
1052 	}
1053 
1054 	dst->op = cpu_to_le16(src->op);
1055 	dst->flags = cpu_to_le32(src->flags);
1056 	dst->payload_len = cpu_to_le32(src->indata_len);
1057 
1058 	return src->indata_len;
1059 }
1060 
1061 /*
1062  * build new request AND message, calculate layout, and adjust file
1063  * extent as needed.
1064  *
1065  * if the file was recently truncated, we include information about its
1066  * old and new size so that the object can be updated appropriately.  (we
1067  * avoid synchronously deleting truncated objects because it's slow.)
1068  */
1069 struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
1070 					       struct ceph_file_layout *layout,
1071 					       struct ceph_vino vino,
1072 					       u64 off, u64 *plen,
1073 					       unsigned int which, int num_ops,
1074 					       int opcode, int flags,
1075 					       struct ceph_snap_context *snapc,
1076 					       u32 truncate_seq,
1077 					       u64 truncate_size,
1078 					       bool use_mempool)
1079 {
1080 	struct ceph_osd_request *req;
1081 	u64 objnum = 0;
1082 	u64 objoff = 0;
1083 	u64 objlen = 0;
1084 	int r;
1085 
1086 	BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
1087 	       opcode != CEPH_OSD_OP_ZERO && opcode != CEPH_OSD_OP_TRUNCATE &&
1088 	       opcode != CEPH_OSD_OP_CREATE && opcode != CEPH_OSD_OP_DELETE);
1089 
1090 	req = ceph_osdc_alloc_request(osdc, snapc, num_ops, use_mempool,
1091 					GFP_NOFS);
1092 	if (!req) {
1093 		r = -ENOMEM;
1094 		goto fail;
1095 	}
1096 
1097 	/* calculate max write size */
1098 	r = calc_layout(layout, off, plen, &objnum, &objoff, &objlen);
1099 	if (r)
1100 		goto fail;
1101 
1102 	if (opcode == CEPH_OSD_OP_CREATE || opcode == CEPH_OSD_OP_DELETE) {
1103 		osd_req_op_init(req, which, opcode, 0);
1104 	} else {
1105 		u32 object_size = layout->object_size;
1106 		u32 object_base = off - objoff;
1107 		if (!(truncate_seq == 1 && truncate_size == -1ULL)) {
1108 			if (truncate_size <= object_base) {
1109 				truncate_size = 0;
1110 			} else {
1111 				truncate_size -= object_base;
1112 				if (truncate_size > object_size)
1113 					truncate_size = object_size;
1114 			}
1115 		}
1116 		osd_req_op_extent_init(req, which, opcode, objoff, objlen,
1117 				       truncate_size, truncate_seq);
1118 	}
1119 
1120 	req->r_base_oloc.pool = layout->pool_id;
1121 	req->r_base_oloc.pool_ns = ceph_try_get_string(layout->pool_ns);
1122 	ceph_oid_printf(&req->r_base_oid, "%llx.%08llx", vino.ino, objnum);
1123 	req->r_flags = flags | osdc->client->options->read_from_replica;
1124 
1125 	req->r_snapid = vino.snap;
1126 	if (flags & CEPH_OSD_FLAG_WRITE)
1127 		req->r_data_offset = off;
1128 
1129 	if (num_ops > 1)
1130 		/*
1131 		 * This is a special case for ceph_writepages_start(), but it
1132 		 * also covers ceph_uninline_data().  If more multi-op request
1133 		 * use cases emerge, we will need a separate helper.
1134 		 */
1135 		r = __ceph_osdc_alloc_messages(req, GFP_NOFS, num_ops, 0);
1136 	else
1137 		r = ceph_osdc_alloc_messages(req, GFP_NOFS);
1138 	if (r)
1139 		goto fail;
1140 
1141 	return req;
1142 
1143 fail:
1144 	ceph_osdc_put_request(req);
1145 	return ERR_PTR(r);
1146 }
1147 EXPORT_SYMBOL(ceph_osdc_new_request);
1148 
1149 /*
1150  * We keep osd requests in an rbtree, sorted by ->r_tid.
1151  */
1152 DEFINE_RB_FUNCS(request, struct ceph_osd_request, r_tid, r_node)
1153 DEFINE_RB_FUNCS(request_mc, struct ceph_osd_request, r_tid, r_mc_node)
1154 
1155 /*
1156  * Call @fn on each OSD request as long as @fn returns 0.
1157  */
1158 static void for_each_request(struct ceph_osd_client *osdc,
1159 			int (*fn)(struct ceph_osd_request *req, void *arg),
1160 			void *arg)
1161 {
1162 	struct rb_node *n, *p;
1163 
1164 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
1165 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
1166 
1167 		for (p = rb_first(&osd->o_requests); p; ) {
1168 			struct ceph_osd_request *req =
1169 			    rb_entry(p, struct ceph_osd_request, r_node);
1170 
1171 			p = rb_next(p);
1172 			if (fn(req, arg))
1173 				return;
1174 		}
1175 	}
1176 
1177 	for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
1178 		struct ceph_osd_request *req =
1179 		    rb_entry(p, struct ceph_osd_request, r_node);
1180 
1181 		p = rb_next(p);
1182 		if (fn(req, arg))
1183 			return;
1184 	}
1185 }
1186 
1187 static bool osd_homeless(struct ceph_osd *osd)
1188 {
1189 	return osd->o_osd == CEPH_HOMELESS_OSD;
1190 }
1191 
1192 static bool osd_registered(struct ceph_osd *osd)
1193 {
1194 	verify_osdc_locked(osd->o_osdc);
1195 
1196 	return !RB_EMPTY_NODE(&osd->o_node);
1197 }
1198 
1199 /*
1200  * Assumes @osd is zero-initialized.
1201  */
1202 static void osd_init(struct ceph_osd *osd)
1203 {
1204 	refcount_set(&osd->o_ref, 1);
1205 	RB_CLEAR_NODE(&osd->o_node);
1206 	osd->o_requests = RB_ROOT;
1207 	osd->o_linger_requests = RB_ROOT;
1208 	osd->o_backoff_mappings = RB_ROOT;
1209 	osd->o_backoffs_by_id = RB_ROOT;
1210 	INIT_LIST_HEAD(&osd->o_osd_lru);
1211 	INIT_LIST_HEAD(&osd->o_keepalive_item);
1212 	osd->o_incarnation = 1;
1213 	mutex_init(&osd->lock);
1214 }
1215 
1216 static void osd_cleanup(struct ceph_osd *osd)
1217 {
1218 	WARN_ON(!RB_EMPTY_NODE(&osd->o_node));
1219 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
1220 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
1221 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoff_mappings));
1222 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoffs_by_id));
1223 	WARN_ON(!list_empty(&osd->o_osd_lru));
1224 	WARN_ON(!list_empty(&osd->o_keepalive_item));
1225 
1226 	if (osd->o_auth.authorizer) {
1227 		WARN_ON(osd_homeless(osd));
1228 		ceph_auth_destroy_authorizer(osd->o_auth.authorizer);
1229 	}
1230 }
1231 
1232 /*
1233  * Track open sessions with osds.
1234  */
1235 static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
1236 {
1237 	struct ceph_osd *osd;
1238 
1239 	WARN_ON(onum == CEPH_HOMELESS_OSD);
1240 
1241 	osd = kzalloc(sizeof(*osd), GFP_NOIO | __GFP_NOFAIL);
1242 	osd_init(osd);
1243 	osd->o_osdc = osdc;
1244 	osd->o_osd = onum;
1245 
1246 	ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
1247 
1248 	return osd;
1249 }
1250 
1251 static struct ceph_osd *get_osd(struct ceph_osd *osd)
1252 {
1253 	if (refcount_inc_not_zero(&osd->o_ref)) {
1254 		dout("get_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref)-1,
1255 		     refcount_read(&osd->o_ref));
1256 		return osd;
1257 	} else {
1258 		dout("get_osd %p FAIL\n", osd);
1259 		return NULL;
1260 	}
1261 }
1262 
1263 static void put_osd(struct ceph_osd *osd)
1264 {
1265 	dout("put_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref),
1266 	     refcount_read(&osd->o_ref) - 1);
1267 	if (refcount_dec_and_test(&osd->o_ref)) {
1268 		osd_cleanup(osd);
1269 		kfree(osd);
1270 	}
1271 }
1272 
1273 DEFINE_RB_FUNCS(osd, struct ceph_osd, o_osd, o_node)
1274 
1275 static void __move_osd_to_lru(struct ceph_osd *osd)
1276 {
1277 	struct ceph_osd_client *osdc = osd->o_osdc;
1278 
1279 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1280 	BUG_ON(!list_empty(&osd->o_osd_lru));
1281 
1282 	spin_lock(&osdc->osd_lru_lock);
1283 	list_add_tail(&osd->o_osd_lru, &osdc->osd_lru);
1284 	spin_unlock(&osdc->osd_lru_lock);
1285 
1286 	osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl;
1287 }
1288 
1289 static void maybe_move_osd_to_lru(struct ceph_osd *osd)
1290 {
1291 	if (RB_EMPTY_ROOT(&osd->o_requests) &&
1292 	    RB_EMPTY_ROOT(&osd->o_linger_requests))
1293 		__move_osd_to_lru(osd);
1294 }
1295 
1296 static void __remove_osd_from_lru(struct ceph_osd *osd)
1297 {
1298 	struct ceph_osd_client *osdc = osd->o_osdc;
1299 
1300 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1301 
1302 	spin_lock(&osdc->osd_lru_lock);
1303 	if (!list_empty(&osd->o_osd_lru))
1304 		list_del_init(&osd->o_osd_lru);
1305 	spin_unlock(&osdc->osd_lru_lock);
1306 }
1307 
1308 /*
1309  * Close the connection and assign any leftover requests to the
1310  * homeless session.
1311  */
1312 static void close_osd(struct ceph_osd *osd)
1313 {
1314 	struct ceph_osd_client *osdc = osd->o_osdc;
1315 	struct rb_node *n;
1316 
1317 	verify_osdc_wrlocked(osdc);
1318 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1319 
1320 	ceph_con_close(&osd->o_con);
1321 
1322 	for (n = rb_first(&osd->o_requests); n; ) {
1323 		struct ceph_osd_request *req =
1324 		    rb_entry(n, struct ceph_osd_request, r_node);
1325 
1326 		n = rb_next(n); /* unlink_request() */
1327 
1328 		dout(" reassigning req %p tid %llu\n", req, req->r_tid);
1329 		unlink_request(osd, req);
1330 		link_request(&osdc->homeless_osd, req);
1331 	}
1332 	for (n = rb_first(&osd->o_linger_requests); n; ) {
1333 		struct ceph_osd_linger_request *lreq =
1334 		    rb_entry(n, struct ceph_osd_linger_request, node);
1335 
1336 		n = rb_next(n); /* unlink_linger() */
1337 
1338 		dout(" reassigning lreq %p linger_id %llu\n", lreq,
1339 		     lreq->linger_id);
1340 		unlink_linger(osd, lreq);
1341 		link_linger(&osdc->homeless_osd, lreq);
1342 	}
1343 	clear_backoffs(osd);
1344 
1345 	__remove_osd_from_lru(osd);
1346 	erase_osd(&osdc->osds, osd);
1347 	put_osd(osd);
1348 }
1349 
1350 /*
1351  * reset osd connect
1352  */
1353 static int reopen_osd(struct ceph_osd *osd)
1354 {
1355 	struct ceph_entity_addr *peer_addr;
1356 
1357 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1358 
1359 	if (RB_EMPTY_ROOT(&osd->o_requests) &&
1360 	    RB_EMPTY_ROOT(&osd->o_linger_requests)) {
1361 		close_osd(osd);
1362 		return -ENODEV;
1363 	}
1364 
1365 	peer_addr = &osd->o_osdc->osdmap->osd_addr[osd->o_osd];
1366 	if (!memcmp(peer_addr, &osd->o_con.peer_addr, sizeof (*peer_addr)) &&
1367 			!ceph_con_opened(&osd->o_con)) {
1368 		struct rb_node *n;
1369 
1370 		dout("osd addr hasn't changed and connection never opened, "
1371 		     "letting msgr retry\n");
1372 		/* touch each r_stamp for handle_timeout()'s benfit */
1373 		for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
1374 			struct ceph_osd_request *req =
1375 			    rb_entry(n, struct ceph_osd_request, r_node);
1376 			req->r_stamp = jiffies;
1377 		}
1378 
1379 		return -EAGAIN;
1380 	}
1381 
1382 	ceph_con_close(&osd->o_con);
1383 	ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd, peer_addr);
1384 	osd->o_incarnation++;
1385 
1386 	return 0;
1387 }
1388 
1389 static struct ceph_osd *lookup_create_osd(struct ceph_osd_client *osdc, int o,
1390 					  bool wrlocked)
1391 {
1392 	struct ceph_osd *osd;
1393 
1394 	if (wrlocked)
1395 		verify_osdc_wrlocked(osdc);
1396 	else
1397 		verify_osdc_locked(osdc);
1398 
1399 	if (o != CEPH_HOMELESS_OSD)
1400 		osd = lookup_osd(&osdc->osds, o);
1401 	else
1402 		osd = &osdc->homeless_osd;
1403 	if (!osd) {
1404 		if (!wrlocked)
1405 			return ERR_PTR(-EAGAIN);
1406 
1407 		osd = create_osd(osdc, o);
1408 		insert_osd(&osdc->osds, osd);
1409 		ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd,
1410 			      &osdc->osdmap->osd_addr[osd->o_osd]);
1411 	}
1412 
1413 	dout("%s osdc %p osd%d -> osd %p\n", __func__, osdc, o, osd);
1414 	return osd;
1415 }
1416 
1417 /*
1418  * Create request <-> OSD session relation.
1419  *
1420  * @req has to be assigned a tid, @osd may be homeless.
1421  */
1422 static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req)
1423 {
1424 	verify_osd_locked(osd);
1425 	WARN_ON(!req->r_tid || req->r_osd);
1426 	dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
1427 	     req, req->r_tid);
1428 
1429 	if (!osd_homeless(osd))
1430 		__remove_osd_from_lru(osd);
1431 	else
1432 		atomic_inc(&osd->o_osdc->num_homeless);
1433 
1434 	get_osd(osd);
1435 	insert_request(&osd->o_requests, req);
1436 	req->r_osd = osd;
1437 }
1438 
1439 static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req)
1440 {
1441 	verify_osd_locked(osd);
1442 	WARN_ON(req->r_osd != osd);
1443 	dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
1444 	     req, req->r_tid);
1445 
1446 	req->r_osd = NULL;
1447 	erase_request(&osd->o_requests, req);
1448 	put_osd(osd);
1449 
1450 	if (!osd_homeless(osd))
1451 		maybe_move_osd_to_lru(osd);
1452 	else
1453 		atomic_dec(&osd->o_osdc->num_homeless);
1454 }
1455 
1456 static bool __pool_full(struct ceph_pg_pool_info *pi)
1457 {
1458 	return pi->flags & CEPH_POOL_FLAG_FULL;
1459 }
1460 
1461 static bool have_pool_full(struct ceph_osd_client *osdc)
1462 {
1463 	struct rb_node *n;
1464 
1465 	for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
1466 		struct ceph_pg_pool_info *pi =
1467 		    rb_entry(n, struct ceph_pg_pool_info, node);
1468 
1469 		if (__pool_full(pi))
1470 			return true;
1471 	}
1472 
1473 	return false;
1474 }
1475 
1476 static bool pool_full(struct ceph_osd_client *osdc, s64 pool_id)
1477 {
1478 	struct ceph_pg_pool_info *pi;
1479 
1480 	pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
1481 	if (!pi)
1482 		return false;
1483 
1484 	return __pool_full(pi);
1485 }
1486 
1487 /*
1488  * Returns whether a request should be blocked from being sent
1489  * based on the current osdmap and osd_client settings.
1490  */
1491 static bool target_should_be_paused(struct ceph_osd_client *osdc,
1492 				    const struct ceph_osd_request_target *t,
1493 				    struct ceph_pg_pool_info *pi)
1494 {
1495 	bool pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
1496 	bool pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
1497 		       ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
1498 		       __pool_full(pi);
1499 
1500 	WARN_ON(pi->id != t->target_oloc.pool);
1501 	return ((t->flags & CEPH_OSD_FLAG_READ) && pauserd) ||
1502 	       ((t->flags & CEPH_OSD_FLAG_WRITE) && pausewr) ||
1503 	       (osdc->osdmap->epoch < osdc->epoch_barrier);
1504 }
1505 
1506 static int pick_random_replica(const struct ceph_osds *acting)
1507 {
1508 	int i = prandom_u32() % acting->size;
1509 
1510 	dout("%s picked osd%d, primary osd%d\n", __func__,
1511 	     acting->osds[i], acting->primary);
1512 	return i;
1513 }
1514 
1515 /*
1516  * Picks the closest replica based on client's location given by
1517  * crush_location option.  Prefers the primary if the locality is
1518  * the same.
1519  */
1520 static int pick_closest_replica(struct ceph_osd_client *osdc,
1521 				const struct ceph_osds *acting)
1522 {
1523 	struct ceph_options *opt = osdc->client->options;
1524 	int best_i, best_locality;
1525 	int i = 0, locality;
1526 
1527 	do {
1528 		locality = ceph_get_crush_locality(osdc->osdmap,
1529 						   acting->osds[i],
1530 						   &opt->crush_locs);
1531 		if (i == 0 ||
1532 		    (locality >= 0 && best_locality < 0) ||
1533 		    (locality >= 0 && best_locality >= 0 &&
1534 		     locality < best_locality)) {
1535 			best_i = i;
1536 			best_locality = locality;
1537 		}
1538 	} while (++i < acting->size);
1539 
1540 	dout("%s picked osd%d with locality %d, primary osd%d\n", __func__,
1541 	     acting->osds[best_i], best_locality, acting->primary);
1542 	return best_i;
1543 }
1544 
1545 enum calc_target_result {
1546 	CALC_TARGET_NO_ACTION = 0,
1547 	CALC_TARGET_NEED_RESEND,
1548 	CALC_TARGET_POOL_DNE,
1549 };
1550 
1551 static enum calc_target_result calc_target(struct ceph_osd_client *osdc,
1552 					   struct ceph_osd_request_target *t,
1553 					   bool any_change)
1554 {
1555 	struct ceph_pg_pool_info *pi;
1556 	struct ceph_pg pgid, last_pgid;
1557 	struct ceph_osds up, acting;
1558 	bool is_read = t->flags & CEPH_OSD_FLAG_READ;
1559 	bool is_write = t->flags & CEPH_OSD_FLAG_WRITE;
1560 	bool force_resend = false;
1561 	bool unpaused = false;
1562 	bool legacy_change = false;
1563 	bool split = false;
1564 	bool sort_bitwise = ceph_osdmap_flag(osdc, CEPH_OSDMAP_SORTBITWISE);
1565 	bool recovery_deletes = ceph_osdmap_flag(osdc,
1566 						 CEPH_OSDMAP_RECOVERY_DELETES);
1567 	enum calc_target_result ct_res;
1568 
1569 	t->epoch = osdc->osdmap->epoch;
1570 	pi = ceph_pg_pool_by_id(osdc->osdmap, t->base_oloc.pool);
1571 	if (!pi) {
1572 		t->osd = CEPH_HOMELESS_OSD;
1573 		ct_res = CALC_TARGET_POOL_DNE;
1574 		goto out;
1575 	}
1576 
1577 	if (osdc->osdmap->epoch == pi->last_force_request_resend) {
1578 		if (t->last_force_resend < pi->last_force_request_resend) {
1579 			t->last_force_resend = pi->last_force_request_resend;
1580 			force_resend = true;
1581 		} else if (t->last_force_resend == 0) {
1582 			force_resend = true;
1583 		}
1584 	}
1585 
1586 	/* apply tiering */
1587 	ceph_oid_copy(&t->target_oid, &t->base_oid);
1588 	ceph_oloc_copy(&t->target_oloc, &t->base_oloc);
1589 	if ((t->flags & CEPH_OSD_FLAG_IGNORE_OVERLAY) == 0) {
1590 		if (is_read && pi->read_tier >= 0)
1591 			t->target_oloc.pool = pi->read_tier;
1592 		if (is_write && pi->write_tier >= 0)
1593 			t->target_oloc.pool = pi->write_tier;
1594 
1595 		pi = ceph_pg_pool_by_id(osdc->osdmap, t->target_oloc.pool);
1596 		if (!pi) {
1597 			t->osd = CEPH_HOMELESS_OSD;
1598 			ct_res = CALC_TARGET_POOL_DNE;
1599 			goto out;
1600 		}
1601 	}
1602 
1603 	__ceph_object_locator_to_pg(pi, &t->target_oid, &t->target_oloc, &pgid);
1604 	last_pgid.pool = pgid.pool;
1605 	last_pgid.seed = ceph_stable_mod(pgid.seed, t->pg_num, t->pg_num_mask);
1606 
1607 	ceph_pg_to_up_acting_osds(osdc->osdmap, pi, &pgid, &up, &acting);
1608 	if (any_change &&
1609 	    ceph_is_new_interval(&t->acting,
1610 				 &acting,
1611 				 &t->up,
1612 				 &up,
1613 				 t->size,
1614 				 pi->size,
1615 				 t->min_size,
1616 				 pi->min_size,
1617 				 t->pg_num,
1618 				 pi->pg_num,
1619 				 t->sort_bitwise,
1620 				 sort_bitwise,
1621 				 t->recovery_deletes,
1622 				 recovery_deletes,
1623 				 &last_pgid))
1624 		force_resend = true;
1625 
1626 	if (t->paused && !target_should_be_paused(osdc, t, pi)) {
1627 		t->paused = false;
1628 		unpaused = true;
1629 	}
1630 	legacy_change = ceph_pg_compare(&t->pgid, &pgid) ||
1631 			ceph_osds_changed(&t->acting, &acting,
1632 					  t->used_replica || any_change);
1633 	if (t->pg_num)
1634 		split = ceph_pg_is_split(&last_pgid, t->pg_num, pi->pg_num);
1635 
1636 	if (legacy_change || force_resend || split) {
1637 		t->pgid = pgid; /* struct */
1638 		ceph_pg_to_primary_shard(osdc->osdmap, pi, &pgid, &t->spgid);
1639 		ceph_osds_copy(&t->acting, &acting);
1640 		ceph_osds_copy(&t->up, &up);
1641 		t->size = pi->size;
1642 		t->min_size = pi->min_size;
1643 		t->pg_num = pi->pg_num;
1644 		t->pg_num_mask = pi->pg_num_mask;
1645 		t->sort_bitwise = sort_bitwise;
1646 		t->recovery_deletes = recovery_deletes;
1647 
1648 		if ((t->flags & (CEPH_OSD_FLAG_BALANCE_READS |
1649 				 CEPH_OSD_FLAG_LOCALIZE_READS)) &&
1650 		    !is_write && pi->type == CEPH_POOL_TYPE_REP &&
1651 		    acting.size > 1) {
1652 			int pos;
1653 
1654 			WARN_ON(!is_read || acting.osds[0] != acting.primary);
1655 			if (t->flags & CEPH_OSD_FLAG_BALANCE_READS) {
1656 				pos = pick_random_replica(&acting);
1657 			} else {
1658 				pos = pick_closest_replica(osdc, &acting);
1659 			}
1660 			t->osd = acting.osds[pos];
1661 			t->used_replica = pos > 0;
1662 		} else {
1663 			t->osd = acting.primary;
1664 			t->used_replica = false;
1665 		}
1666 	}
1667 
1668 	if (unpaused || legacy_change || force_resend || split)
1669 		ct_res = CALC_TARGET_NEED_RESEND;
1670 	else
1671 		ct_res = CALC_TARGET_NO_ACTION;
1672 
1673 out:
1674 	dout("%s t %p -> %d%d%d%d ct_res %d osd%d\n", __func__, t, unpaused,
1675 	     legacy_change, force_resend, split, ct_res, t->osd);
1676 	return ct_res;
1677 }
1678 
1679 static struct ceph_spg_mapping *alloc_spg_mapping(void)
1680 {
1681 	struct ceph_spg_mapping *spg;
1682 
1683 	spg = kmalloc(sizeof(*spg), GFP_NOIO);
1684 	if (!spg)
1685 		return NULL;
1686 
1687 	RB_CLEAR_NODE(&spg->node);
1688 	spg->backoffs = RB_ROOT;
1689 	return spg;
1690 }
1691 
1692 static void free_spg_mapping(struct ceph_spg_mapping *spg)
1693 {
1694 	WARN_ON(!RB_EMPTY_NODE(&spg->node));
1695 	WARN_ON(!RB_EMPTY_ROOT(&spg->backoffs));
1696 
1697 	kfree(spg);
1698 }
1699 
1700 /*
1701  * rbtree of ceph_spg_mapping for handling map<spg_t, ...>, similar to
1702  * ceph_pg_mapping.  Used to track OSD backoffs -- a backoff [range] is
1703  * defined only within a specific spgid; it does not pass anything to
1704  * children on split, or to another primary.
1705  */
1706 DEFINE_RB_FUNCS2(spg_mapping, struct ceph_spg_mapping, spgid, ceph_spg_compare,
1707 		 RB_BYPTR, const struct ceph_spg *, node)
1708 
1709 static u64 hoid_get_bitwise_key(const struct ceph_hobject_id *hoid)
1710 {
1711 	return hoid->is_max ? 0x100000000ull : hoid->hash_reverse_bits;
1712 }
1713 
1714 static void hoid_get_effective_key(const struct ceph_hobject_id *hoid,
1715 				   void **pkey, size_t *pkey_len)
1716 {
1717 	if (hoid->key_len) {
1718 		*pkey = hoid->key;
1719 		*pkey_len = hoid->key_len;
1720 	} else {
1721 		*pkey = hoid->oid;
1722 		*pkey_len = hoid->oid_len;
1723 	}
1724 }
1725 
1726 static int compare_names(const void *name1, size_t name1_len,
1727 			 const void *name2, size_t name2_len)
1728 {
1729 	int ret;
1730 
1731 	ret = memcmp(name1, name2, min(name1_len, name2_len));
1732 	if (!ret) {
1733 		if (name1_len < name2_len)
1734 			ret = -1;
1735 		else if (name1_len > name2_len)
1736 			ret = 1;
1737 	}
1738 	return ret;
1739 }
1740 
1741 static int hoid_compare(const struct ceph_hobject_id *lhs,
1742 			const struct ceph_hobject_id *rhs)
1743 {
1744 	void *effective_key1, *effective_key2;
1745 	size_t effective_key1_len, effective_key2_len;
1746 	int ret;
1747 
1748 	if (lhs->is_max < rhs->is_max)
1749 		return -1;
1750 	if (lhs->is_max > rhs->is_max)
1751 		return 1;
1752 
1753 	if (lhs->pool < rhs->pool)
1754 		return -1;
1755 	if (lhs->pool > rhs->pool)
1756 		return 1;
1757 
1758 	if (hoid_get_bitwise_key(lhs) < hoid_get_bitwise_key(rhs))
1759 		return -1;
1760 	if (hoid_get_bitwise_key(lhs) > hoid_get_bitwise_key(rhs))
1761 		return 1;
1762 
1763 	ret = compare_names(lhs->nspace, lhs->nspace_len,
1764 			    rhs->nspace, rhs->nspace_len);
1765 	if (ret)
1766 		return ret;
1767 
1768 	hoid_get_effective_key(lhs, &effective_key1, &effective_key1_len);
1769 	hoid_get_effective_key(rhs, &effective_key2, &effective_key2_len);
1770 	ret = compare_names(effective_key1, effective_key1_len,
1771 			    effective_key2, effective_key2_len);
1772 	if (ret)
1773 		return ret;
1774 
1775 	ret = compare_names(lhs->oid, lhs->oid_len, rhs->oid, rhs->oid_len);
1776 	if (ret)
1777 		return ret;
1778 
1779 	if (lhs->snapid < rhs->snapid)
1780 		return -1;
1781 	if (lhs->snapid > rhs->snapid)
1782 		return 1;
1783 
1784 	return 0;
1785 }
1786 
1787 /*
1788  * For decoding ->begin and ->end of MOSDBackoff only -- no MIN/MAX
1789  * compat stuff here.
1790  *
1791  * Assumes @hoid is zero-initialized.
1792  */
1793 static int decode_hoid(void **p, void *end, struct ceph_hobject_id *hoid)
1794 {
1795 	u8 struct_v;
1796 	u32 struct_len;
1797 	int ret;
1798 
1799 	ret = ceph_start_decoding(p, end, 4, "hobject_t", &struct_v,
1800 				  &struct_len);
1801 	if (ret)
1802 		return ret;
1803 
1804 	if (struct_v < 4) {
1805 		pr_err("got struct_v %d < 4 of hobject_t\n", struct_v);
1806 		goto e_inval;
1807 	}
1808 
1809 	hoid->key = ceph_extract_encoded_string(p, end, &hoid->key_len,
1810 						GFP_NOIO);
1811 	if (IS_ERR(hoid->key)) {
1812 		ret = PTR_ERR(hoid->key);
1813 		hoid->key = NULL;
1814 		return ret;
1815 	}
1816 
1817 	hoid->oid = ceph_extract_encoded_string(p, end, &hoid->oid_len,
1818 						GFP_NOIO);
1819 	if (IS_ERR(hoid->oid)) {
1820 		ret = PTR_ERR(hoid->oid);
1821 		hoid->oid = NULL;
1822 		return ret;
1823 	}
1824 
1825 	ceph_decode_64_safe(p, end, hoid->snapid, e_inval);
1826 	ceph_decode_32_safe(p, end, hoid->hash, e_inval);
1827 	ceph_decode_8_safe(p, end, hoid->is_max, e_inval);
1828 
1829 	hoid->nspace = ceph_extract_encoded_string(p, end, &hoid->nspace_len,
1830 						   GFP_NOIO);
1831 	if (IS_ERR(hoid->nspace)) {
1832 		ret = PTR_ERR(hoid->nspace);
1833 		hoid->nspace = NULL;
1834 		return ret;
1835 	}
1836 
1837 	ceph_decode_64_safe(p, end, hoid->pool, e_inval);
1838 
1839 	ceph_hoid_build_hash_cache(hoid);
1840 	return 0;
1841 
1842 e_inval:
1843 	return -EINVAL;
1844 }
1845 
1846 static int hoid_encoding_size(const struct ceph_hobject_id *hoid)
1847 {
1848 	return 8 + 4 + 1 + 8 + /* snapid, hash, is_max, pool */
1849 	       4 + hoid->key_len + 4 + hoid->oid_len + 4 + hoid->nspace_len;
1850 }
1851 
1852 static void encode_hoid(void **p, void *end, const struct ceph_hobject_id *hoid)
1853 {
1854 	ceph_start_encoding(p, 4, 3, hoid_encoding_size(hoid));
1855 	ceph_encode_string(p, end, hoid->key, hoid->key_len);
1856 	ceph_encode_string(p, end, hoid->oid, hoid->oid_len);
1857 	ceph_encode_64(p, hoid->snapid);
1858 	ceph_encode_32(p, hoid->hash);
1859 	ceph_encode_8(p, hoid->is_max);
1860 	ceph_encode_string(p, end, hoid->nspace, hoid->nspace_len);
1861 	ceph_encode_64(p, hoid->pool);
1862 }
1863 
1864 static void free_hoid(struct ceph_hobject_id *hoid)
1865 {
1866 	if (hoid) {
1867 		kfree(hoid->key);
1868 		kfree(hoid->oid);
1869 		kfree(hoid->nspace);
1870 		kfree(hoid);
1871 	}
1872 }
1873 
1874 static struct ceph_osd_backoff *alloc_backoff(void)
1875 {
1876 	struct ceph_osd_backoff *backoff;
1877 
1878 	backoff = kzalloc(sizeof(*backoff), GFP_NOIO);
1879 	if (!backoff)
1880 		return NULL;
1881 
1882 	RB_CLEAR_NODE(&backoff->spg_node);
1883 	RB_CLEAR_NODE(&backoff->id_node);
1884 	return backoff;
1885 }
1886 
1887 static void free_backoff(struct ceph_osd_backoff *backoff)
1888 {
1889 	WARN_ON(!RB_EMPTY_NODE(&backoff->spg_node));
1890 	WARN_ON(!RB_EMPTY_NODE(&backoff->id_node));
1891 
1892 	free_hoid(backoff->begin);
1893 	free_hoid(backoff->end);
1894 	kfree(backoff);
1895 }
1896 
1897 /*
1898  * Within a specific spgid, backoffs are managed by ->begin hoid.
1899  */
1900 DEFINE_RB_INSDEL_FUNCS2(backoff, struct ceph_osd_backoff, begin, hoid_compare,
1901 			RB_BYVAL, spg_node);
1902 
1903 static struct ceph_osd_backoff *lookup_containing_backoff(struct rb_root *root,
1904 					    const struct ceph_hobject_id *hoid)
1905 {
1906 	struct rb_node *n = root->rb_node;
1907 
1908 	while (n) {
1909 		struct ceph_osd_backoff *cur =
1910 		    rb_entry(n, struct ceph_osd_backoff, spg_node);
1911 		int cmp;
1912 
1913 		cmp = hoid_compare(hoid, cur->begin);
1914 		if (cmp < 0) {
1915 			n = n->rb_left;
1916 		} else if (cmp > 0) {
1917 			if (hoid_compare(hoid, cur->end) < 0)
1918 				return cur;
1919 
1920 			n = n->rb_right;
1921 		} else {
1922 			return cur;
1923 		}
1924 	}
1925 
1926 	return NULL;
1927 }
1928 
1929 /*
1930  * Each backoff has a unique id within its OSD session.
1931  */
1932 DEFINE_RB_FUNCS(backoff_by_id, struct ceph_osd_backoff, id, id_node)
1933 
1934 static void clear_backoffs(struct ceph_osd *osd)
1935 {
1936 	while (!RB_EMPTY_ROOT(&osd->o_backoff_mappings)) {
1937 		struct ceph_spg_mapping *spg =
1938 		    rb_entry(rb_first(&osd->o_backoff_mappings),
1939 			     struct ceph_spg_mapping, node);
1940 
1941 		while (!RB_EMPTY_ROOT(&spg->backoffs)) {
1942 			struct ceph_osd_backoff *backoff =
1943 			    rb_entry(rb_first(&spg->backoffs),
1944 				     struct ceph_osd_backoff, spg_node);
1945 
1946 			erase_backoff(&spg->backoffs, backoff);
1947 			erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
1948 			free_backoff(backoff);
1949 		}
1950 		erase_spg_mapping(&osd->o_backoff_mappings, spg);
1951 		free_spg_mapping(spg);
1952 	}
1953 }
1954 
1955 /*
1956  * Set up a temporary, non-owning view into @t.
1957  */
1958 static void hoid_fill_from_target(struct ceph_hobject_id *hoid,
1959 				  const struct ceph_osd_request_target *t)
1960 {
1961 	hoid->key = NULL;
1962 	hoid->key_len = 0;
1963 	hoid->oid = t->target_oid.name;
1964 	hoid->oid_len = t->target_oid.name_len;
1965 	hoid->snapid = CEPH_NOSNAP;
1966 	hoid->hash = t->pgid.seed;
1967 	hoid->is_max = false;
1968 	if (t->target_oloc.pool_ns) {
1969 		hoid->nspace = t->target_oloc.pool_ns->str;
1970 		hoid->nspace_len = t->target_oloc.pool_ns->len;
1971 	} else {
1972 		hoid->nspace = NULL;
1973 		hoid->nspace_len = 0;
1974 	}
1975 	hoid->pool = t->target_oloc.pool;
1976 	ceph_hoid_build_hash_cache(hoid);
1977 }
1978 
1979 static bool should_plug_request(struct ceph_osd_request *req)
1980 {
1981 	struct ceph_osd *osd = req->r_osd;
1982 	struct ceph_spg_mapping *spg;
1983 	struct ceph_osd_backoff *backoff;
1984 	struct ceph_hobject_id hoid;
1985 
1986 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &req->r_t.spgid);
1987 	if (!spg)
1988 		return false;
1989 
1990 	hoid_fill_from_target(&hoid, &req->r_t);
1991 	backoff = lookup_containing_backoff(&spg->backoffs, &hoid);
1992 	if (!backoff)
1993 		return false;
1994 
1995 	dout("%s req %p tid %llu backoff osd%d spgid %llu.%xs%d id %llu\n",
1996 	     __func__, req, req->r_tid, osd->o_osd, backoff->spgid.pgid.pool,
1997 	     backoff->spgid.pgid.seed, backoff->spgid.shard, backoff->id);
1998 	return true;
1999 }
2000 
2001 /*
2002  * Keep get_num_data_items() in sync with this function.
2003  */
2004 static void setup_request_data(struct ceph_osd_request *req)
2005 {
2006 	struct ceph_msg *request_msg = req->r_request;
2007 	struct ceph_msg *reply_msg = req->r_reply;
2008 	struct ceph_osd_req_op *op;
2009 
2010 	if (req->r_request->num_data_items || req->r_reply->num_data_items)
2011 		return;
2012 
2013 	WARN_ON(request_msg->data_length || reply_msg->data_length);
2014 	for (op = req->r_ops; op != &req->r_ops[req->r_num_ops]; op++) {
2015 		switch (op->op) {
2016 		/* request */
2017 		case CEPH_OSD_OP_WRITE:
2018 		case CEPH_OSD_OP_WRITEFULL:
2019 			WARN_ON(op->indata_len != op->extent.length);
2020 			ceph_osdc_msg_data_add(request_msg,
2021 					       &op->extent.osd_data);
2022 			break;
2023 		case CEPH_OSD_OP_SETXATTR:
2024 		case CEPH_OSD_OP_CMPXATTR:
2025 			WARN_ON(op->indata_len != op->xattr.name_len +
2026 						  op->xattr.value_len);
2027 			ceph_osdc_msg_data_add(request_msg,
2028 					       &op->xattr.osd_data);
2029 			break;
2030 		case CEPH_OSD_OP_NOTIFY_ACK:
2031 			ceph_osdc_msg_data_add(request_msg,
2032 					       &op->notify_ack.request_data);
2033 			break;
2034 		case CEPH_OSD_OP_COPY_FROM2:
2035 			ceph_osdc_msg_data_add(request_msg,
2036 					       &op->copy_from.osd_data);
2037 			break;
2038 
2039 		/* reply */
2040 		case CEPH_OSD_OP_STAT:
2041 			ceph_osdc_msg_data_add(reply_msg,
2042 					       &op->raw_data_in);
2043 			break;
2044 		case CEPH_OSD_OP_READ:
2045 			ceph_osdc_msg_data_add(reply_msg,
2046 					       &op->extent.osd_data);
2047 			break;
2048 		case CEPH_OSD_OP_LIST_WATCHERS:
2049 			ceph_osdc_msg_data_add(reply_msg,
2050 					       &op->list_watchers.response_data);
2051 			break;
2052 
2053 		/* both */
2054 		case CEPH_OSD_OP_CALL:
2055 			WARN_ON(op->indata_len != op->cls.class_len +
2056 						  op->cls.method_len +
2057 						  op->cls.indata_len);
2058 			ceph_osdc_msg_data_add(request_msg,
2059 					       &op->cls.request_info);
2060 			/* optional, can be NONE */
2061 			ceph_osdc_msg_data_add(request_msg,
2062 					       &op->cls.request_data);
2063 			/* optional, can be NONE */
2064 			ceph_osdc_msg_data_add(reply_msg,
2065 					       &op->cls.response_data);
2066 			break;
2067 		case CEPH_OSD_OP_NOTIFY:
2068 			ceph_osdc_msg_data_add(request_msg,
2069 					       &op->notify.request_data);
2070 			ceph_osdc_msg_data_add(reply_msg,
2071 					       &op->notify.response_data);
2072 			break;
2073 		}
2074 	}
2075 }
2076 
2077 static void encode_pgid(void **p, const struct ceph_pg *pgid)
2078 {
2079 	ceph_encode_8(p, 1);
2080 	ceph_encode_64(p, pgid->pool);
2081 	ceph_encode_32(p, pgid->seed);
2082 	ceph_encode_32(p, -1); /* preferred */
2083 }
2084 
2085 static void encode_spgid(void **p, const struct ceph_spg *spgid)
2086 {
2087 	ceph_start_encoding(p, 1, 1, CEPH_PGID_ENCODING_LEN + 1);
2088 	encode_pgid(p, &spgid->pgid);
2089 	ceph_encode_8(p, spgid->shard);
2090 }
2091 
2092 static void encode_oloc(void **p, void *end,
2093 			const struct ceph_object_locator *oloc)
2094 {
2095 	ceph_start_encoding(p, 5, 4, ceph_oloc_encoding_size(oloc));
2096 	ceph_encode_64(p, oloc->pool);
2097 	ceph_encode_32(p, -1); /* preferred */
2098 	ceph_encode_32(p, 0);  /* key len */
2099 	if (oloc->pool_ns)
2100 		ceph_encode_string(p, end, oloc->pool_ns->str,
2101 				   oloc->pool_ns->len);
2102 	else
2103 		ceph_encode_32(p, 0);
2104 }
2105 
2106 static void encode_request_partial(struct ceph_osd_request *req,
2107 				   struct ceph_msg *msg)
2108 {
2109 	void *p = msg->front.iov_base;
2110 	void *const end = p + msg->front_alloc_len;
2111 	u32 data_len = 0;
2112 	int i;
2113 
2114 	if (req->r_flags & CEPH_OSD_FLAG_WRITE) {
2115 		/* snapshots aren't writeable */
2116 		WARN_ON(req->r_snapid != CEPH_NOSNAP);
2117 	} else {
2118 		WARN_ON(req->r_mtime.tv_sec || req->r_mtime.tv_nsec ||
2119 			req->r_data_offset || req->r_snapc);
2120 	}
2121 
2122 	setup_request_data(req);
2123 
2124 	encode_spgid(&p, &req->r_t.spgid); /* actual spg */
2125 	ceph_encode_32(&p, req->r_t.pgid.seed); /* raw hash */
2126 	ceph_encode_32(&p, req->r_osdc->osdmap->epoch);
2127 	ceph_encode_32(&p, req->r_flags);
2128 
2129 	/* reqid */
2130 	ceph_start_encoding(&p, 2, 2, sizeof(struct ceph_osd_reqid));
2131 	memset(p, 0, sizeof(struct ceph_osd_reqid));
2132 	p += sizeof(struct ceph_osd_reqid);
2133 
2134 	/* trace */
2135 	memset(p, 0, sizeof(struct ceph_blkin_trace_info));
2136 	p += sizeof(struct ceph_blkin_trace_info);
2137 
2138 	ceph_encode_32(&p, 0); /* client_inc, always 0 */
2139 	ceph_encode_timespec64(p, &req->r_mtime);
2140 	p += sizeof(struct ceph_timespec);
2141 
2142 	encode_oloc(&p, end, &req->r_t.target_oloc);
2143 	ceph_encode_string(&p, end, req->r_t.target_oid.name,
2144 			   req->r_t.target_oid.name_len);
2145 
2146 	/* ops, can imply data */
2147 	ceph_encode_16(&p, req->r_num_ops);
2148 	for (i = 0; i < req->r_num_ops; i++) {
2149 		data_len += osd_req_encode_op(p, &req->r_ops[i]);
2150 		p += sizeof(struct ceph_osd_op);
2151 	}
2152 
2153 	ceph_encode_64(&p, req->r_snapid); /* snapid */
2154 	if (req->r_snapc) {
2155 		ceph_encode_64(&p, req->r_snapc->seq);
2156 		ceph_encode_32(&p, req->r_snapc->num_snaps);
2157 		for (i = 0; i < req->r_snapc->num_snaps; i++)
2158 			ceph_encode_64(&p, req->r_snapc->snaps[i]);
2159 	} else {
2160 		ceph_encode_64(&p, 0); /* snap_seq */
2161 		ceph_encode_32(&p, 0); /* snaps len */
2162 	}
2163 
2164 	ceph_encode_32(&p, req->r_attempts); /* retry_attempt */
2165 	BUG_ON(p > end - 8); /* space for features */
2166 
2167 	msg->hdr.version = cpu_to_le16(8); /* MOSDOp v8 */
2168 	/* front_len is finalized in encode_request_finish() */
2169 	msg->front.iov_len = p - msg->front.iov_base;
2170 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2171 	msg->hdr.data_len = cpu_to_le32(data_len);
2172 	/*
2173 	 * The header "data_off" is a hint to the receiver allowing it
2174 	 * to align received data into its buffers such that there's no
2175 	 * need to re-copy it before writing it to disk (direct I/O).
2176 	 */
2177 	msg->hdr.data_off = cpu_to_le16(req->r_data_offset);
2178 
2179 	dout("%s req %p msg %p oid %s oid_len %d\n", __func__, req, msg,
2180 	     req->r_t.target_oid.name, req->r_t.target_oid.name_len);
2181 }
2182 
2183 static void encode_request_finish(struct ceph_msg *msg)
2184 {
2185 	void *p = msg->front.iov_base;
2186 	void *const partial_end = p + msg->front.iov_len;
2187 	void *const end = p + msg->front_alloc_len;
2188 
2189 	if (CEPH_HAVE_FEATURE(msg->con->peer_features, RESEND_ON_SPLIT)) {
2190 		/* luminous OSD -- encode features and be done */
2191 		p = partial_end;
2192 		ceph_encode_64(&p, msg->con->peer_features);
2193 	} else {
2194 		struct {
2195 			char spgid[CEPH_ENCODING_START_BLK_LEN +
2196 				   CEPH_PGID_ENCODING_LEN + 1];
2197 			__le32 hash;
2198 			__le32 epoch;
2199 			__le32 flags;
2200 			char reqid[CEPH_ENCODING_START_BLK_LEN +
2201 				   sizeof(struct ceph_osd_reqid)];
2202 			char trace[sizeof(struct ceph_blkin_trace_info)];
2203 			__le32 client_inc;
2204 			struct ceph_timespec mtime;
2205 		} __packed head;
2206 		struct ceph_pg pgid;
2207 		void *oloc, *oid, *tail;
2208 		int oloc_len, oid_len, tail_len;
2209 		int len;
2210 
2211 		/*
2212 		 * Pre-luminous OSD -- reencode v8 into v4 using @head
2213 		 * as a temporary buffer.  Encode the raw PG; the rest
2214 		 * is just a matter of moving oloc, oid and tail blobs
2215 		 * around.
2216 		 */
2217 		memcpy(&head, p, sizeof(head));
2218 		p += sizeof(head);
2219 
2220 		oloc = p;
2221 		p += CEPH_ENCODING_START_BLK_LEN;
2222 		pgid.pool = ceph_decode_64(&p);
2223 		p += 4 + 4; /* preferred, key len */
2224 		len = ceph_decode_32(&p);
2225 		p += len;   /* nspace */
2226 		oloc_len = p - oloc;
2227 
2228 		oid = p;
2229 		len = ceph_decode_32(&p);
2230 		p += len;
2231 		oid_len = p - oid;
2232 
2233 		tail = p;
2234 		tail_len = partial_end - p;
2235 
2236 		p = msg->front.iov_base;
2237 		ceph_encode_copy(&p, &head.client_inc, sizeof(head.client_inc));
2238 		ceph_encode_copy(&p, &head.epoch, sizeof(head.epoch));
2239 		ceph_encode_copy(&p, &head.flags, sizeof(head.flags));
2240 		ceph_encode_copy(&p, &head.mtime, sizeof(head.mtime));
2241 
2242 		/* reassert_version */
2243 		memset(p, 0, sizeof(struct ceph_eversion));
2244 		p += sizeof(struct ceph_eversion);
2245 
2246 		BUG_ON(p >= oloc);
2247 		memmove(p, oloc, oloc_len);
2248 		p += oloc_len;
2249 
2250 		pgid.seed = le32_to_cpu(head.hash);
2251 		encode_pgid(&p, &pgid); /* raw pg */
2252 
2253 		BUG_ON(p >= oid);
2254 		memmove(p, oid, oid_len);
2255 		p += oid_len;
2256 
2257 		/* tail -- ops, snapid, snapc, retry_attempt */
2258 		BUG_ON(p >= tail);
2259 		memmove(p, tail, tail_len);
2260 		p += tail_len;
2261 
2262 		msg->hdr.version = cpu_to_le16(4); /* MOSDOp v4 */
2263 	}
2264 
2265 	BUG_ON(p > end);
2266 	msg->front.iov_len = p - msg->front.iov_base;
2267 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2268 
2269 	dout("%s msg %p tid %llu %u+%u+%u v%d\n", __func__, msg,
2270 	     le64_to_cpu(msg->hdr.tid), le32_to_cpu(msg->hdr.front_len),
2271 	     le32_to_cpu(msg->hdr.middle_len), le32_to_cpu(msg->hdr.data_len),
2272 	     le16_to_cpu(msg->hdr.version));
2273 }
2274 
2275 /*
2276  * @req has to be assigned a tid and registered.
2277  */
2278 static void send_request(struct ceph_osd_request *req)
2279 {
2280 	struct ceph_osd *osd = req->r_osd;
2281 
2282 	verify_osd_locked(osd);
2283 	WARN_ON(osd->o_osd != req->r_t.osd);
2284 
2285 	/* backoff? */
2286 	if (should_plug_request(req))
2287 		return;
2288 
2289 	/*
2290 	 * We may have a previously queued request message hanging
2291 	 * around.  Cancel it to avoid corrupting the msgr.
2292 	 */
2293 	if (req->r_sent)
2294 		ceph_msg_revoke(req->r_request);
2295 
2296 	req->r_flags |= CEPH_OSD_FLAG_KNOWN_REDIR;
2297 	if (req->r_attempts)
2298 		req->r_flags |= CEPH_OSD_FLAG_RETRY;
2299 	else
2300 		WARN_ON(req->r_flags & CEPH_OSD_FLAG_RETRY);
2301 
2302 	encode_request_partial(req, req->r_request);
2303 
2304 	dout("%s req %p tid %llu to pgid %llu.%x spgid %llu.%xs%d osd%d e%u flags 0x%x attempt %d\n",
2305 	     __func__, req, req->r_tid, req->r_t.pgid.pool, req->r_t.pgid.seed,
2306 	     req->r_t.spgid.pgid.pool, req->r_t.spgid.pgid.seed,
2307 	     req->r_t.spgid.shard, osd->o_osd, req->r_t.epoch, req->r_flags,
2308 	     req->r_attempts);
2309 
2310 	req->r_t.paused = false;
2311 	req->r_stamp = jiffies;
2312 	req->r_attempts++;
2313 
2314 	req->r_sent = osd->o_incarnation;
2315 	req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
2316 	ceph_con_send(&osd->o_con, ceph_msg_get(req->r_request));
2317 }
2318 
2319 static void maybe_request_map(struct ceph_osd_client *osdc)
2320 {
2321 	bool continuous = false;
2322 
2323 	verify_osdc_locked(osdc);
2324 	WARN_ON(!osdc->osdmap->epoch);
2325 
2326 	if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2327 	    ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD) ||
2328 	    ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
2329 		dout("%s osdc %p continuous\n", __func__, osdc);
2330 		continuous = true;
2331 	} else {
2332 		dout("%s osdc %p onetime\n", __func__, osdc);
2333 	}
2334 
2335 	if (ceph_monc_want_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
2336 			       osdc->osdmap->epoch + 1, continuous))
2337 		ceph_monc_renew_subs(&osdc->client->monc);
2338 }
2339 
2340 static void complete_request(struct ceph_osd_request *req, int err);
2341 static void send_map_check(struct ceph_osd_request *req);
2342 
2343 static void __submit_request(struct ceph_osd_request *req, bool wrlocked)
2344 {
2345 	struct ceph_osd_client *osdc = req->r_osdc;
2346 	struct ceph_osd *osd;
2347 	enum calc_target_result ct_res;
2348 	int err = 0;
2349 	bool need_send = false;
2350 	bool promoted = false;
2351 
2352 	WARN_ON(req->r_tid);
2353 	dout("%s req %p wrlocked %d\n", __func__, req, wrlocked);
2354 
2355 again:
2356 	ct_res = calc_target(osdc, &req->r_t, false);
2357 	if (ct_res == CALC_TARGET_POOL_DNE && !wrlocked)
2358 		goto promote;
2359 
2360 	osd = lookup_create_osd(osdc, req->r_t.osd, wrlocked);
2361 	if (IS_ERR(osd)) {
2362 		WARN_ON(PTR_ERR(osd) != -EAGAIN || wrlocked);
2363 		goto promote;
2364 	}
2365 
2366 	if (osdc->abort_err) {
2367 		dout("req %p abort_err %d\n", req, osdc->abort_err);
2368 		err = osdc->abort_err;
2369 	} else if (osdc->osdmap->epoch < osdc->epoch_barrier) {
2370 		dout("req %p epoch %u barrier %u\n", req, osdc->osdmap->epoch,
2371 		     osdc->epoch_barrier);
2372 		req->r_t.paused = true;
2373 		maybe_request_map(osdc);
2374 	} else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2375 		   ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
2376 		dout("req %p pausewr\n", req);
2377 		req->r_t.paused = true;
2378 		maybe_request_map(osdc);
2379 	} else if ((req->r_flags & CEPH_OSD_FLAG_READ) &&
2380 		   ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
2381 		dout("req %p pauserd\n", req);
2382 		req->r_t.paused = true;
2383 		maybe_request_map(osdc);
2384 	} else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2385 		   !(req->r_flags & (CEPH_OSD_FLAG_FULL_TRY |
2386 				     CEPH_OSD_FLAG_FULL_FORCE)) &&
2387 		   (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2388 		    pool_full(osdc, req->r_t.base_oloc.pool))) {
2389 		dout("req %p full/pool_full\n", req);
2390 		if (ceph_test_opt(osdc->client, ABORT_ON_FULL)) {
2391 			err = -ENOSPC;
2392 		} else {
2393 			pr_warn_ratelimited("FULL or reached pool quota\n");
2394 			req->r_t.paused = true;
2395 			maybe_request_map(osdc);
2396 		}
2397 	} else if (!osd_homeless(osd)) {
2398 		need_send = true;
2399 	} else {
2400 		maybe_request_map(osdc);
2401 	}
2402 
2403 	mutex_lock(&osd->lock);
2404 	/*
2405 	 * Assign the tid atomically with send_request() to protect
2406 	 * multiple writes to the same object from racing with each
2407 	 * other, resulting in out of order ops on the OSDs.
2408 	 */
2409 	req->r_tid = atomic64_inc_return(&osdc->last_tid);
2410 	link_request(osd, req);
2411 	if (need_send)
2412 		send_request(req);
2413 	else if (err)
2414 		complete_request(req, err);
2415 	mutex_unlock(&osd->lock);
2416 
2417 	if (!err && ct_res == CALC_TARGET_POOL_DNE)
2418 		send_map_check(req);
2419 
2420 	if (promoted)
2421 		downgrade_write(&osdc->lock);
2422 	return;
2423 
2424 promote:
2425 	up_read(&osdc->lock);
2426 	down_write(&osdc->lock);
2427 	wrlocked = true;
2428 	promoted = true;
2429 	goto again;
2430 }
2431 
2432 static void account_request(struct ceph_osd_request *req)
2433 {
2434 	WARN_ON(req->r_flags & (CEPH_OSD_FLAG_ACK | CEPH_OSD_FLAG_ONDISK));
2435 	WARN_ON(!(req->r_flags & (CEPH_OSD_FLAG_READ | CEPH_OSD_FLAG_WRITE)));
2436 
2437 	req->r_flags |= CEPH_OSD_FLAG_ONDISK;
2438 	atomic_inc(&req->r_osdc->num_requests);
2439 
2440 	req->r_start_stamp = jiffies;
2441 	req->r_start_latency = ktime_get();
2442 }
2443 
2444 static void submit_request(struct ceph_osd_request *req, bool wrlocked)
2445 {
2446 	ceph_osdc_get_request(req);
2447 	account_request(req);
2448 	__submit_request(req, wrlocked);
2449 }
2450 
2451 static void finish_request(struct ceph_osd_request *req)
2452 {
2453 	struct ceph_osd_client *osdc = req->r_osdc;
2454 
2455 	WARN_ON(lookup_request_mc(&osdc->map_checks, req->r_tid));
2456 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
2457 
2458 	req->r_end_latency = ktime_get();
2459 
2460 	if (req->r_osd)
2461 		unlink_request(req->r_osd, req);
2462 	atomic_dec(&osdc->num_requests);
2463 
2464 	/*
2465 	 * If an OSD has failed or returned and a request has been sent
2466 	 * twice, it's possible to get a reply and end up here while the
2467 	 * request message is queued for delivery.  We will ignore the
2468 	 * reply, so not a big deal, but better to try and catch it.
2469 	 */
2470 	ceph_msg_revoke(req->r_request);
2471 	ceph_msg_revoke_incoming(req->r_reply);
2472 }
2473 
2474 static void __complete_request(struct ceph_osd_request *req)
2475 {
2476 	dout("%s req %p tid %llu cb %ps result %d\n", __func__, req,
2477 	     req->r_tid, req->r_callback, req->r_result);
2478 
2479 	if (req->r_callback)
2480 		req->r_callback(req);
2481 	complete_all(&req->r_completion);
2482 	ceph_osdc_put_request(req);
2483 }
2484 
2485 static void complete_request_workfn(struct work_struct *work)
2486 {
2487 	struct ceph_osd_request *req =
2488 	    container_of(work, struct ceph_osd_request, r_complete_work);
2489 
2490 	__complete_request(req);
2491 }
2492 
2493 /*
2494  * This is open-coded in handle_reply().
2495  */
2496 static void complete_request(struct ceph_osd_request *req, int err)
2497 {
2498 	dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
2499 
2500 	req->r_result = err;
2501 	finish_request(req);
2502 
2503 	INIT_WORK(&req->r_complete_work, complete_request_workfn);
2504 	queue_work(req->r_osdc->completion_wq, &req->r_complete_work);
2505 }
2506 
2507 static void cancel_map_check(struct ceph_osd_request *req)
2508 {
2509 	struct ceph_osd_client *osdc = req->r_osdc;
2510 	struct ceph_osd_request *lookup_req;
2511 
2512 	verify_osdc_wrlocked(osdc);
2513 
2514 	lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
2515 	if (!lookup_req)
2516 		return;
2517 
2518 	WARN_ON(lookup_req != req);
2519 	erase_request_mc(&osdc->map_checks, req);
2520 	ceph_osdc_put_request(req);
2521 }
2522 
2523 static void cancel_request(struct ceph_osd_request *req)
2524 {
2525 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
2526 
2527 	cancel_map_check(req);
2528 	finish_request(req);
2529 	complete_all(&req->r_completion);
2530 	ceph_osdc_put_request(req);
2531 }
2532 
2533 static void abort_request(struct ceph_osd_request *req, int err)
2534 {
2535 	dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
2536 
2537 	cancel_map_check(req);
2538 	complete_request(req, err);
2539 }
2540 
2541 static int abort_fn(struct ceph_osd_request *req, void *arg)
2542 {
2543 	int err = *(int *)arg;
2544 
2545 	abort_request(req, err);
2546 	return 0; /* continue iteration */
2547 }
2548 
2549 /*
2550  * Abort all in-flight requests with @err and arrange for all future
2551  * requests to be failed immediately.
2552  */
2553 void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err)
2554 {
2555 	dout("%s osdc %p err %d\n", __func__, osdc, err);
2556 	down_write(&osdc->lock);
2557 	for_each_request(osdc, abort_fn, &err);
2558 	osdc->abort_err = err;
2559 	up_write(&osdc->lock);
2560 }
2561 EXPORT_SYMBOL(ceph_osdc_abort_requests);
2562 
2563 void ceph_osdc_clear_abort_err(struct ceph_osd_client *osdc)
2564 {
2565 	down_write(&osdc->lock);
2566 	osdc->abort_err = 0;
2567 	up_write(&osdc->lock);
2568 }
2569 EXPORT_SYMBOL(ceph_osdc_clear_abort_err);
2570 
2571 static void update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
2572 {
2573 	if (likely(eb > osdc->epoch_barrier)) {
2574 		dout("updating epoch_barrier from %u to %u\n",
2575 				osdc->epoch_barrier, eb);
2576 		osdc->epoch_barrier = eb;
2577 		/* Request map if we're not to the barrier yet */
2578 		if (eb > osdc->osdmap->epoch)
2579 			maybe_request_map(osdc);
2580 	}
2581 }
2582 
2583 void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
2584 {
2585 	down_read(&osdc->lock);
2586 	if (unlikely(eb > osdc->epoch_barrier)) {
2587 		up_read(&osdc->lock);
2588 		down_write(&osdc->lock);
2589 		update_epoch_barrier(osdc, eb);
2590 		up_write(&osdc->lock);
2591 	} else {
2592 		up_read(&osdc->lock);
2593 	}
2594 }
2595 EXPORT_SYMBOL(ceph_osdc_update_epoch_barrier);
2596 
2597 /*
2598  * We can end up releasing caps as a result of abort_request().
2599  * In that case, we probably want to ensure that the cap release message
2600  * has an updated epoch barrier in it, so set the epoch barrier prior to
2601  * aborting the first request.
2602  */
2603 static int abort_on_full_fn(struct ceph_osd_request *req, void *arg)
2604 {
2605 	struct ceph_osd_client *osdc = req->r_osdc;
2606 	bool *victims = arg;
2607 
2608 	if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2609 	    (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2610 	     pool_full(osdc, req->r_t.base_oloc.pool))) {
2611 		if (!*victims) {
2612 			update_epoch_barrier(osdc, osdc->osdmap->epoch);
2613 			*victims = true;
2614 		}
2615 		abort_request(req, -ENOSPC);
2616 	}
2617 
2618 	return 0; /* continue iteration */
2619 }
2620 
2621 /*
2622  * Drop all pending requests that are stalled waiting on a full condition to
2623  * clear, and complete them with ENOSPC as the return code. Set the
2624  * osdc->epoch_barrier to the latest map epoch that we've seen if any were
2625  * cancelled.
2626  */
2627 static void ceph_osdc_abort_on_full(struct ceph_osd_client *osdc)
2628 {
2629 	bool victims = false;
2630 
2631 	if (ceph_test_opt(osdc->client, ABORT_ON_FULL) &&
2632 	    (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) || have_pool_full(osdc)))
2633 		for_each_request(osdc, abort_on_full_fn, &victims);
2634 }
2635 
2636 static void check_pool_dne(struct ceph_osd_request *req)
2637 {
2638 	struct ceph_osd_client *osdc = req->r_osdc;
2639 	struct ceph_osdmap *map = osdc->osdmap;
2640 
2641 	verify_osdc_wrlocked(osdc);
2642 	WARN_ON(!map->epoch);
2643 
2644 	if (req->r_attempts) {
2645 		/*
2646 		 * We sent a request earlier, which means that
2647 		 * previously the pool existed, and now it does not
2648 		 * (i.e., it was deleted).
2649 		 */
2650 		req->r_map_dne_bound = map->epoch;
2651 		dout("%s req %p tid %llu pool disappeared\n", __func__, req,
2652 		     req->r_tid);
2653 	} else {
2654 		dout("%s req %p tid %llu map_dne_bound %u have %u\n", __func__,
2655 		     req, req->r_tid, req->r_map_dne_bound, map->epoch);
2656 	}
2657 
2658 	if (req->r_map_dne_bound) {
2659 		if (map->epoch >= req->r_map_dne_bound) {
2660 			/* we had a new enough map */
2661 			pr_info_ratelimited("tid %llu pool does not exist\n",
2662 					    req->r_tid);
2663 			complete_request(req, -ENOENT);
2664 		}
2665 	} else {
2666 		send_map_check(req);
2667 	}
2668 }
2669 
2670 static void map_check_cb(struct ceph_mon_generic_request *greq)
2671 {
2672 	struct ceph_osd_client *osdc = &greq->monc->client->osdc;
2673 	struct ceph_osd_request *req;
2674 	u64 tid = greq->private_data;
2675 
2676 	WARN_ON(greq->result || !greq->u.newest);
2677 
2678 	down_write(&osdc->lock);
2679 	req = lookup_request_mc(&osdc->map_checks, tid);
2680 	if (!req) {
2681 		dout("%s tid %llu dne\n", __func__, tid);
2682 		goto out_unlock;
2683 	}
2684 
2685 	dout("%s req %p tid %llu map_dne_bound %u newest %llu\n", __func__,
2686 	     req, req->r_tid, req->r_map_dne_bound, greq->u.newest);
2687 	if (!req->r_map_dne_bound)
2688 		req->r_map_dne_bound = greq->u.newest;
2689 	erase_request_mc(&osdc->map_checks, req);
2690 	check_pool_dne(req);
2691 
2692 	ceph_osdc_put_request(req);
2693 out_unlock:
2694 	up_write(&osdc->lock);
2695 }
2696 
2697 static void send_map_check(struct ceph_osd_request *req)
2698 {
2699 	struct ceph_osd_client *osdc = req->r_osdc;
2700 	struct ceph_osd_request *lookup_req;
2701 	int ret;
2702 
2703 	verify_osdc_wrlocked(osdc);
2704 
2705 	lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
2706 	if (lookup_req) {
2707 		WARN_ON(lookup_req != req);
2708 		return;
2709 	}
2710 
2711 	ceph_osdc_get_request(req);
2712 	insert_request_mc(&osdc->map_checks, req);
2713 	ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
2714 					  map_check_cb, req->r_tid);
2715 	WARN_ON(ret);
2716 }
2717 
2718 /*
2719  * lingering requests, watch/notify v2 infrastructure
2720  */
2721 static void linger_release(struct kref *kref)
2722 {
2723 	struct ceph_osd_linger_request *lreq =
2724 	    container_of(kref, struct ceph_osd_linger_request, kref);
2725 
2726 	dout("%s lreq %p reg_req %p ping_req %p\n", __func__, lreq,
2727 	     lreq->reg_req, lreq->ping_req);
2728 	WARN_ON(!RB_EMPTY_NODE(&lreq->node));
2729 	WARN_ON(!RB_EMPTY_NODE(&lreq->osdc_node));
2730 	WARN_ON(!RB_EMPTY_NODE(&lreq->mc_node));
2731 	WARN_ON(!list_empty(&lreq->scan_item));
2732 	WARN_ON(!list_empty(&lreq->pending_lworks));
2733 	WARN_ON(lreq->osd);
2734 
2735 	if (lreq->reg_req)
2736 		ceph_osdc_put_request(lreq->reg_req);
2737 	if (lreq->ping_req)
2738 		ceph_osdc_put_request(lreq->ping_req);
2739 	target_destroy(&lreq->t);
2740 	kfree(lreq);
2741 }
2742 
2743 static void linger_put(struct ceph_osd_linger_request *lreq)
2744 {
2745 	if (lreq)
2746 		kref_put(&lreq->kref, linger_release);
2747 }
2748 
2749 static struct ceph_osd_linger_request *
2750 linger_get(struct ceph_osd_linger_request *lreq)
2751 {
2752 	kref_get(&lreq->kref);
2753 	return lreq;
2754 }
2755 
2756 static struct ceph_osd_linger_request *
2757 linger_alloc(struct ceph_osd_client *osdc)
2758 {
2759 	struct ceph_osd_linger_request *lreq;
2760 
2761 	lreq = kzalloc(sizeof(*lreq), GFP_NOIO);
2762 	if (!lreq)
2763 		return NULL;
2764 
2765 	kref_init(&lreq->kref);
2766 	mutex_init(&lreq->lock);
2767 	RB_CLEAR_NODE(&lreq->node);
2768 	RB_CLEAR_NODE(&lreq->osdc_node);
2769 	RB_CLEAR_NODE(&lreq->mc_node);
2770 	INIT_LIST_HEAD(&lreq->scan_item);
2771 	INIT_LIST_HEAD(&lreq->pending_lworks);
2772 	init_completion(&lreq->reg_commit_wait);
2773 	init_completion(&lreq->notify_finish_wait);
2774 
2775 	lreq->osdc = osdc;
2776 	target_init(&lreq->t);
2777 
2778 	dout("%s lreq %p\n", __func__, lreq);
2779 	return lreq;
2780 }
2781 
2782 DEFINE_RB_INSDEL_FUNCS(linger, struct ceph_osd_linger_request, linger_id, node)
2783 DEFINE_RB_FUNCS(linger_osdc, struct ceph_osd_linger_request, linger_id, osdc_node)
2784 DEFINE_RB_FUNCS(linger_mc, struct ceph_osd_linger_request, linger_id, mc_node)
2785 
2786 /*
2787  * Create linger request <-> OSD session relation.
2788  *
2789  * @lreq has to be registered, @osd may be homeless.
2790  */
2791 static void link_linger(struct ceph_osd *osd,
2792 			struct ceph_osd_linger_request *lreq)
2793 {
2794 	verify_osd_locked(osd);
2795 	WARN_ON(!lreq->linger_id || lreq->osd);
2796 	dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2797 	     osd->o_osd, lreq, lreq->linger_id);
2798 
2799 	if (!osd_homeless(osd))
2800 		__remove_osd_from_lru(osd);
2801 	else
2802 		atomic_inc(&osd->o_osdc->num_homeless);
2803 
2804 	get_osd(osd);
2805 	insert_linger(&osd->o_linger_requests, lreq);
2806 	lreq->osd = osd;
2807 }
2808 
2809 static void unlink_linger(struct ceph_osd *osd,
2810 			  struct ceph_osd_linger_request *lreq)
2811 {
2812 	verify_osd_locked(osd);
2813 	WARN_ON(lreq->osd != osd);
2814 	dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2815 	     osd->o_osd, lreq, lreq->linger_id);
2816 
2817 	lreq->osd = NULL;
2818 	erase_linger(&osd->o_linger_requests, lreq);
2819 	put_osd(osd);
2820 
2821 	if (!osd_homeless(osd))
2822 		maybe_move_osd_to_lru(osd);
2823 	else
2824 		atomic_dec(&osd->o_osdc->num_homeless);
2825 }
2826 
2827 static bool __linger_registered(struct ceph_osd_linger_request *lreq)
2828 {
2829 	verify_osdc_locked(lreq->osdc);
2830 
2831 	return !RB_EMPTY_NODE(&lreq->osdc_node);
2832 }
2833 
2834 static bool linger_registered(struct ceph_osd_linger_request *lreq)
2835 {
2836 	struct ceph_osd_client *osdc = lreq->osdc;
2837 	bool registered;
2838 
2839 	down_read(&osdc->lock);
2840 	registered = __linger_registered(lreq);
2841 	up_read(&osdc->lock);
2842 
2843 	return registered;
2844 }
2845 
2846 static void linger_register(struct ceph_osd_linger_request *lreq)
2847 {
2848 	struct ceph_osd_client *osdc = lreq->osdc;
2849 
2850 	verify_osdc_wrlocked(osdc);
2851 	WARN_ON(lreq->linger_id);
2852 
2853 	linger_get(lreq);
2854 	lreq->linger_id = ++osdc->last_linger_id;
2855 	insert_linger_osdc(&osdc->linger_requests, lreq);
2856 }
2857 
2858 static void linger_unregister(struct ceph_osd_linger_request *lreq)
2859 {
2860 	struct ceph_osd_client *osdc = lreq->osdc;
2861 
2862 	verify_osdc_wrlocked(osdc);
2863 
2864 	erase_linger_osdc(&osdc->linger_requests, lreq);
2865 	linger_put(lreq);
2866 }
2867 
2868 static void cancel_linger_request(struct ceph_osd_request *req)
2869 {
2870 	struct ceph_osd_linger_request *lreq = req->r_priv;
2871 
2872 	WARN_ON(!req->r_linger);
2873 	cancel_request(req);
2874 	linger_put(lreq);
2875 }
2876 
2877 struct linger_work {
2878 	struct work_struct work;
2879 	struct ceph_osd_linger_request *lreq;
2880 	struct list_head pending_item;
2881 	unsigned long queued_stamp;
2882 
2883 	union {
2884 		struct {
2885 			u64 notify_id;
2886 			u64 notifier_id;
2887 			void *payload; /* points into @msg front */
2888 			size_t payload_len;
2889 
2890 			struct ceph_msg *msg; /* for ceph_msg_put() */
2891 		} notify;
2892 		struct {
2893 			int err;
2894 		} error;
2895 	};
2896 };
2897 
2898 static struct linger_work *lwork_alloc(struct ceph_osd_linger_request *lreq,
2899 				       work_func_t workfn)
2900 {
2901 	struct linger_work *lwork;
2902 
2903 	lwork = kzalloc(sizeof(*lwork), GFP_NOIO);
2904 	if (!lwork)
2905 		return NULL;
2906 
2907 	INIT_WORK(&lwork->work, workfn);
2908 	INIT_LIST_HEAD(&lwork->pending_item);
2909 	lwork->lreq = linger_get(lreq);
2910 
2911 	return lwork;
2912 }
2913 
2914 static void lwork_free(struct linger_work *lwork)
2915 {
2916 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2917 
2918 	mutex_lock(&lreq->lock);
2919 	list_del(&lwork->pending_item);
2920 	mutex_unlock(&lreq->lock);
2921 
2922 	linger_put(lreq);
2923 	kfree(lwork);
2924 }
2925 
2926 static void lwork_queue(struct linger_work *lwork)
2927 {
2928 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2929 	struct ceph_osd_client *osdc = lreq->osdc;
2930 
2931 	verify_lreq_locked(lreq);
2932 	WARN_ON(!list_empty(&lwork->pending_item));
2933 
2934 	lwork->queued_stamp = jiffies;
2935 	list_add_tail(&lwork->pending_item, &lreq->pending_lworks);
2936 	queue_work(osdc->notify_wq, &lwork->work);
2937 }
2938 
2939 static void do_watch_notify(struct work_struct *w)
2940 {
2941 	struct linger_work *lwork = container_of(w, struct linger_work, work);
2942 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2943 
2944 	if (!linger_registered(lreq)) {
2945 		dout("%s lreq %p not registered\n", __func__, lreq);
2946 		goto out;
2947 	}
2948 
2949 	WARN_ON(!lreq->is_watch);
2950 	dout("%s lreq %p notify_id %llu notifier_id %llu payload_len %zu\n",
2951 	     __func__, lreq, lwork->notify.notify_id, lwork->notify.notifier_id,
2952 	     lwork->notify.payload_len);
2953 	lreq->wcb(lreq->data, lwork->notify.notify_id, lreq->linger_id,
2954 		  lwork->notify.notifier_id, lwork->notify.payload,
2955 		  lwork->notify.payload_len);
2956 
2957 out:
2958 	ceph_msg_put(lwork->notify.msg);
2959 	lwork_free(lwork);
2960 }
2961 
2962 static void do_watch_error(struct work_struct *w)
2963 {
2964 	struct linger_work *lwork = container_of(w, struct linger_work, work);
2965 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2966 
2967 	if (!linger_registered(lreq)) {
2968 		dout("%s lreq %p not registered\n", __func__, lreq);
2969 		goto out;
2970 	}
2971 
2972 	dout("%s lreq %p err %d\n", __func__, lreq, lwork->error.err);
2973 	lreq->errcb(lreq->data, lreq->linger_id, lwork->error.err);
2974 
2975 out:
2976 	lwork_free(lwork);
2977 }
2978 
2979 static void queue_watch_error(struct ceph_osd_linger_request *lreq)
2980 {
2981 	struct linger_work *lwork;
2982 
2983 	lwork = lwork_alloc(lreq, do_watch_error);
2984 	if (!lwork) {
2985 		pr_err("failed to allocate error-lwork\n");
2986 		return;
2987 	}
2988 
2989 	lwork->error.err = lreq->last_error;
2990 	lwork_queue(lwork);
2991 }
2992 
2993 static void linger_reg_commit_complete(struct ceph_osd_linger_request *lreq,
2994 				       int result)
2995 {
2996 	if (!completion_done(&lreq->reg_commit_wait)) {
2997 		lreq->reg_commit_error = (result <= 0 ? result : 0);
2998 		complete_all(&lreq->reg_commit_wait);
2999 	}
3000 }
3001 
3002 static void linger_commit_cb(struct ceph_osd_request *req)
3003 {
3004 	struct ceph_osd_linger_request *lreq = req->r_priv;
3005 
3006 	mutex_lock(&lreq->lock);
3007 	dout("%s lreq %p linger_id %llu result %d\n", __func__, lreq,
3008 	     lreq->linger_id, req->r_result);
3009 	linger_reg_commit_complete(lreq, req->r_result);
3010 	lreq->committed = true;
3011 
3012 	if (!lreq->is_watch) {
3013 		struct ceph_osd_data *osd_data =
3014 		    osd_req_op_data(req, 0, notify, response_data);
3015 		void *p = page_address(osd_data->pages[0]);
3016 
3017 		WARN_ON(req->r_ops[0].op != CEPH_OSD_OP_NOTIFY ||
3018 			osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
3019 
3020 		/* make note of the notify_id */
3021 		if (req->r_ops[0].outdata_len >= sizeof(u64)) {
3022 			lreq->notify_id = ceph_decode_64(&p);
3023 			dout("lreq %p notify_id %llu\n", lreq,
3024 			     lreq->notify_id);
3025 		} else {
3026 			dout("lreq %p no notify_id\n", lreq);
3027 		}
3028 	}
3029 
3030 	mutex_unlock(&lreq->lock);
3031 	linger_put(lreq);
3032 }
3033 
3034 static int normalize_watch_error(int err)
3035 {
3036 	/*
3037 	 * Translate ENOENT -> ENOTCONN so that a delete->disconnection
3038 	 * notification and a failure to reconnect because we raced with
3039 	 * the delete appear the same to the user.
3040 	 */
3041 	if (err == -ENOENT)
3042 		err = -ENOTCONN;
3043 
3044 	return err;
3045 }
3046 
3047 static void linger_reconnect_cb(struct ceph_osd_request *req)
3048 {
3049 	struct ceph_osd_linger_request *lreq = req->r_priv;
3050 
3051 	mutex_lock(&lreq->lock);
3052 	dout("%s lreq %p linger_id %llu result %d last_error %d\n", __func__,
3053 	     lreq, lreq->linger_id, req->r_result, lreq->last_error);
3054 	if (req->r_result < 0) {
3055 		if (!lreq->last_error) {
3056 			lreq->last_error = normalize_watch_error(req->r_result);
3057 			queue_watch_error(lreq);
3058 		}
3059 	}
3060 
3061 	mutex_unlock(&lreq->lock);
3062 	linger_put(lreq);
3063 }
3064 
3065 static void send_linger(struct ceph_osd_linger_request *lreq)
3066 {
3067 	struct ceph_osd_request *req = lreq->reg_req;
3068 	struct ceph_osd_req_op *op = &req->r_ops[0];
3069 
3070 	verify_osdc_wrlocked(req->r_osdc);
3071 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3072 
3073 	if (req->r_osd)
3074 		cancel_linger_request(req);
3075 
3076 	request_reinit(req);
3077 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
3078 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
3079 	req->r_flags = lreq->t.flags;
3080 	req->r_mtime = lreq->mtime;
3081 
3082 	mutex_lock(&lreq->lock);
3083 	if (lreq->is_watch && lreq->committed) {
3084 		WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
3085 			op->watch.cookie != lreq->linger_id);
3086 		op->watch.op = CEPH_OSD_WATCH_OP_RECONNECT;
3087 		op->watch.gen = ++lreq->register_gen;
3088 		dout("lreq %p reconnect register_gen %u\n", lreq,
3089 		     op->watch.gen);
3090 		req->r_callback = linger_reconnect_cb;
3091 	} else {
3092 		if (!lreq->is_watch)
3093 			lreq->notify_id = 0;
3094 		else
3095 			WARN_ON(op->watch.op != CEPH_OSD_WATCH_OP_WATCH);
3096 		dout("lreq %p register\n", lreq);
3097 		req->r_callback = linger_commit_cb;
3098 	}
3099 	mutex_unlock(&lreq->lock);
3100 
3101 	req->r_priv = linger_get(lreq);
3102 	req->r_linger = true;
3103 
3104 	submit_request(req, true);
3105 }
3106 
3107 static void linger_ping_cb(struct ceph_osd_request *req)
3108 {
3109 	struct ceph_osd_linger_request *lreq = req->r_priv;
3110 
3111 	mutex_lock(&lreq->lock);
3112 	dout("%s lreq %p linger_id %llu result %d ping_sent %lu last_error %d\n",
3113 	     __func__, lreq, lreq->linger_id, req->r_result, lreq->ping_sent,
3114 	     lreq->last_error);
3115 	if (lreq->register_gen == req->r_ops[0].watch.gen) {
3116 		if (!req->r_result) {
3117 			lreq->watch_valid_thru = lreq->ping_sent;
3118 		} else if (!lreq->last_error) {
3119 			lreq->last_error = normalize_watch_error(req->r_result);
3120 			queue_watch_error(lreq);
3121 		}
3122 	} else {
3123 		dout("lreq %p register_gen %u ignoring old pong %u\n", lreq,
3124 		     lreq->register_gen, req->r_ops[0].watch.gen);
3125 	}
3126 
3127 	mutex_unlock(&lreq->lock);
3128 	linger_put(lreq);
3129 }
3130 
3131 static void send_linger_ping(struct ceph_osd_linger_request *lreq)
3132 {
3133 	struct ceph_osd_client *osdc = lreq->osdc;
3134 	struct ceph_osd_request *req = lreq->ping_req;
3135 	struct ceph_osd_req_op *op = &req->r_ops[0];
3136 
3137 	if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
3138 		dout("%s PAUSERD\n", __func__);
3139 		return;
3140 	}
3141 
3142 	lreq->ping_sent = jiffies;
3143 	dout("%s lreq %p linger_id %llu ping_sent %lu register_gen %u\n",
3144 	     __func__, lreq, lreq->linger_id, lreq->ping_sent,
3145 	     lreq->register_gen);
3146 
3147 	if (req->r_osd)
3148 		cancel_linger_request(req);
3149 
3150 	request_reinit(req);
3151 	target_copy(&req->r_t, &lreq->t);
3152 
3153 	WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
3154 		op->watch.cookie != lreq->linger_id ||
3155 		op->watch.op != CEPH_OSD_WATCH_OP_PING);
3156 	op->watch.gen = lreq->register_gen;
3157 	req->r_callback = linger_ping_cb;
3158 	req->r_priv = linger_get(lreq);
3159 	req->r_linger = true;
3160 
3161 	ceph_osdc_get_request(req);
3162 	account_request(req);
3163 	req->r_tid = atomic64_inc_return(&osdc->last_tid);
3164 	link_request(lreq->osd, req);
3165 	send_request(req);
3166 }
3167 
3168 static void linger_submit(struct ceph_osd_linger_request *lreq)
3169 {
3170 	struct ceph_osd_client *osdc = lreq->osdc;
3171 	struct ceph_osd *osd;
3172 
3173 	down_write(&osdc->lock);
3174 	linger_register(lreq);
3175 	if (lreq->is_watch) {
3176 		lreq->reg_req->r_ops[0].watch.cookie = lreq->linger_id;
3177 		lreq->ping_req->r_ops[0].watch.cookie = lreq->linger_id;
3178 	} else {
3179 		lreq->reg_req->r_ops[0].notify.cookie = lreq->linger_id;
3180 	}
3181 
3182 	calc_target(osdc, &lreq->t, false);
3183 	osd = lookup_create_osd(osdc, lreq->t.osd, true);
3184 	link_linger(osd, lreq);
3185 
3186 	send_linger(lreq);
3187 	up_write(&osdc->lock);
3188 }
3189 
3190 static void cancel_linger_map_check(struct ceph_osd_linger_request *lreq)
3191 {
3192 	struct ceph_osd_client *osdc = lreq->osdc;
3193 	struct ceph_osd_linger_request *lookup_lreq;
3194 
3195 	verify_osdc_wrlocked(osdc);
3196 
3197 	lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
3198 				       lreq->linger_id);
3199 	if (!lookup_lreq)
3200 		return;
3201 
3202 	WARN_ON(lookup_lreq != lreq);
3203 	erase_linger_mc(&osdc->linger_map_checks, lreq);
3204 	linger_put(lreq);
3205 }
3206 
3207 /*
3208  * @lreq has to be both registered and linked.
3209  */
3210 static void __linger_cancel(struct ceph_osd_linger_request *lreq)
3211 {
3212 	if (lreq->is_watch && lreq->ping_req->r_osd)
3213 		cancel_linger_request(lreq->ping_req);
3214 	if (lreq->reg_req->r_osd)
3215 		cancel_linger_request(lreq->reg_req);
3216 	cancel_linger_map_check(lreq);
3217 	unlink_linger(lreq->osd, lreq);
3218 	linger_unregister(lreq);
3219 }
3220 
3221 static void linger_cancel(struct ceph_osd_linger_request *lreq)
3222 {
3223 	struct ceph_osd_client *osdc = lreq->osdc;
3224 
3225 	down_write(&osdc->lock);
3226 	if (__linger_registered(lreq))
3227 		__linger_cancel(lreq);
3228 	up_write(&osdc->lock);
3229 }
3230 
3231 static void send_linger_map_check(struct ceph_osd_linger_request *lreq);
3232 
3233 static void check_linger_pool_dne(struct ceph_osd_linger_request *lreq)
3234 {
3235 	struct ceph_osd_client *osdc = lreq->osdc;
3236 	struct ceph_osdmap *map = osdc->osdmap;
3237 
3238 	verify_osdc_wrlocked(osdc);
3239 	WARN_ON(!map->epoch);
3240 
3241 	if (lreq->register_gen) {
3242 		lreq->map_dne_bound = map->epoch;
3243 		dout("%s lreq %p linger_id %llu pool disappeared\n", __func__,
3244 		     lreq, lreq->linger_id);
3245 	} else {
3246 		dout("%s lreq %p linger_id %llu map_dne_bound %u have %u\n",
3247 		     __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
3248 		     map->epoch);
3249 	}
3250 
3251 	if (lreq->map_dne_bound) {
3252 		if (map->epoch >= lreq->map_dne_bound) {
3253 			/* we had a new enough map */
3254 			pr_info("linger_id %llu pool does not exist\n",
3255 				lreq->linger_id);
3256 			linger_reg_commit_complete(lreq, -ENOENT);
3257 			__linger_cancel(lreq);
3258 		}
3259 	} else {
3260 		send_linger_map_check(lreq);
3261 	}
3262 }
3263 
3264 static void linger_map_check_cb(struct ceph_mon_generic_request *greq)
3265 {
3266 	struct ceph_osd_client *osdc = &greq->monc->client->osdc;
3267 	struct ceph_osd_linger_request *lreq;
3268 	u64 linger_id = greq->private_data;
3269 
3270 	WARN_ON(greq->result || !greq->u.newest);
3271 
3272 	down_write(&osdc->lock);
3273 	lreq = lookup_linger_mc(&osdc->linger_map_checks, linger_id);
3274 	if (!lreq) {
3275 		dout("%s linger_id %llu dne\n", __func__, linger_id);
3276 		goto out_unlock;
3277 	}
3278 
3279 	dout("%s lreq %p linger_id %llu map_dne_bound %u newest %llu\n",
3280 	     __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
3281 	     greq->u.newest);
3282 	if (!lreq->map_dne_bound)
3283 		lreq->map_dne_bound = greq->u.newest;
3284 	erase_linger_mc(&osdc->linger_map_checks, lreq);
3285 	check_linger_pool_dne(lreq);
3286 
3287 	linger_put(lreq);
3288 out_unlock:
3289 	up_write(&osdc->lock);
3290 }
3291 
3292 static void send_linger_map_check(struct ceph_osd_linger_request *lreq)
3293 {
3294 	struct ceph_osd_client *osdc = lreq->osdc;
3295 	struct ceph_osd_linger_request *lookup_lreq;
3296 	int ret;
3297 
3298 	verify_osdc_wrlocked(osdc);
3299 
3300 	lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
3301 				       lreq->linger_id);
3302 	if (lookup_lreq) {
3303 		WARN_ON(lookup_lreq != lreq);
3304 		return;
3305 	}
3306 
3307 	linger_get(lreq);
3308 	insert_linger_mc(&osdc->linger_map_checks, lreq);
3309 	ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
3310 					  linger_map_check_cb, lreq->linger_id);
3311 	WARN_ON(ret);
3312 }
3313 
3314 static int linger_reg_commit_wait(struct ceph_osd_linger_request *lreq)
3315 {
3316 	int ret;
3317 
3318 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3319 	ret = wait_for_completion_interruptible(&lreq->reg_commit_wait);
3320 	return ret ?: lreq->reg_commit_error;
3321 }
3322 
3323 static int linger_notify_finish_wait(struct ceph_osd_linger_request *lreq)
3324 {
3325 	int ret;
3326 
3327 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3328 	ret = wait_for_completion_interruptible(&lreq->notify_finish_wait);
3329 	return ret ?: lreq->notify_finish_error;
3330 }
3331 
3332 /*
3333  * Timeout callback, called every N seconds.  When 1 or more OSD
3334  * requests has been active for more than N seconds, we send a keepalive
3335  * (tag + timestamp) to its OSD to ensure any communications channel
3336  * reset is detected.
3337  */
3338 static void handle_timeout(struct work_struct *work)
3339 {
3340 	struct ceph_osd_client *osdc =
3341 		container_of(work, struct ceph_osd_client, timeout_work.work);
3342 	struct ceph_options *opts = osdc->client->options;
3343 	unsigned long cutoff = jiffies - opts->osd_keepalive_timeout;
3344 	unsigned long expiry_cutoff = jiffies - opts->osd_request_timeout;
3345 	LIST_HEAD(slow_osds);
3346 	struct rb_node *n, *p;
3347 
3348 	dout("%s osdc %p\n", __func__, osdc);
3349 	down_write(&osdc->lock);
3350 
3351 	/*
3352 	 * ping osds that are a bit slow.  this ensures that if there
3353 	 * is a break in the TCP connection we will notice, and reopen
3354 	 * a connection with that osd (from the fault callback).
3355 	 */
3356 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
3357 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
3358 		bool found = false;
3359 
3360 		for (p = rb_first(&osd->o_requests); p; ) {
3361 			struct ceph_osd_request *req =
3362 			    rb_entry(p, struct ceph_osd_request, r_node);
3363 
3364 			p = rb_next(p); /* abort_request() */
3365 
3366 			if (time_before(req->r_stamp, cutoff)) {
3367 				dout(" req %p tid %llu on osd%d is laggy\n",
3368 				     req, req->r_tid, osd->o_osd);
3369 				found = true;
3370 			}
3371 			if (opts->osd_request_timeout &&
3372 			    time_before(req->r_start_stamp, expiry_cutoff)) {
3373 				pr_err_ratelimited("tid %llu on osd%d timeout\n",
3374 				       req->r_tid, osd->o_osd);
3375 				abort_request(req, -ETIMEDOUT);
3376 			}
3377 		}
3378 		for (p = rb_first(&osd->o_linger_requests); p; p = rb_next(p)) {
3379 			struct ceph_osd_linger_request *lreq =
3380 			    rb_entry(p, struct ceph_osd_linger_request, node);
3381 
3382 			dout(" lreq %p linger_id %llu is served by osd%d\n",
3383 			     lreq, lreq->linger_id, osd->o_osd);
3384 			found = true;
3385 
3386 			mutex_lock(&lreq->lock);
3387 			if (lreq->is_watch && lreq->committed && !lreq->last_error)
3388 				send_linger_ping(lreq);
3389 			mutex_unlock(&lreq->lock);
3390 		}
3391 
3392 		if (found)
3393 			list_move_tail(&osd->o_keepalive_item, &slow_osds);
3394 	}
3395 
3396 	if (opts->osd_request_timeout) {
3397 		for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
3398 			struct ceph_osd_request *req =
3399 			    rb_entry(p, struct ceph_osd_request, r_node);
3400 
3401 			p = rb_next(p); /* abort_request() */
3402 
3403 			if (time_before(req->r_start_stamp, expiry_cutoff)) {
3404 				pr_err_ratelimited("tid %llu on osd%d timeout\n",
3405 				       req->r_tid, osdc->homeless_osd.o_osd);
3406 				abort_request(req, -ETIMEDOUT);
3407 			}
3408 		}
3409 	}
3410 
3411 	if (atomic_read(&osdc->num_homeless) || !list_empty(&slow_osds))
3412 		maybe_request_map(osdc);
3413 
3414 	while (!list_empty(&slow_osds)) {
3415 		struct ceph_osd *osd = list_first_entry(&slow_osds,
3416 							struct ceph_osd,
3417 							o_keepalive_item);
3418 		list_del_init(&osd->o_keepalive_item);
3419 		ceph_con_keepalive(&osd->o_con);
3420 	}
3421 
3422 	up_write(&osdc->lock);
3423 	schedule_delayed_work(&osdc->timeout_work,
3424 			      osdc->client->options->osd_keepalive_timeout);
3425 }
3426 
3427 static void handle_osds_timeout(struct work_struct *work)
3428 {
3429 	struct ceph_osd_client *osdc =
3430 		container_of(work, struct ceph_osd_client,
3431 			     osds_timeout_work.work);
3432 	unsigned long delay = osdc->client->options->osd_idle_ttl / 4;
3433 	struct ceph_osd *osd, *nosd;
3434 
3435 	dout("%s osdc %p\n", __func__, osdc);
3436 	down_write(&osdc->lock);
3437 	list_for_each_entry_safe(osd, nosd, &osdc->osd_lru, o_osd_lru) {
3438 		if (time_before(jiffies, osd->lru_ttl))
3439 			break;
3440 
3441 		WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
3442 		WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
3443 		close_osd(osd);
3444 	}
3445 
3446 	up_write(&osdc->lock);
3447 	schedule_delayed_work(&osdc->osds_timeout_work,
3448 			      round_jiffies_relative(delay));
3449 }
3450 
3451 static int ceph_oloc_decode(void **p, void *end,
3452 			    struct ceph_object_locator *oloc)
3453 {
3454 	u8 struct_v, struct_cv;
3455 	u32 len;
3456 	void *struct_end;
3457 	int ret = 0;
3458 
3459 	ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3460 	struct_v = ceph_decode_8(p);
3461 	struct_cv = ceph_decode_8(p);
3462 	if (struct_v < 3) {
3463 		pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
3464 			struct_v, struct_cv);
3465 		goto e_inval;
3466 	}
3467 	if (struct_cv > 6) {
3468 		pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
3469 			struct_v, struct_cv);
3470 		goto e_inval;
3471 	}
3472 	len = ceph_decode_32(p);
3473 	ceph_decode_need(p, end, len, e_inval);
3474 	struct_end = *p + len;
3475 
3476 	oloc->pool = ceph_decode_64(p);
3477 	*p += 4; /* skip preferred */
3478 
3479 	len = ceph_decode_32(p);
3480 	if (len > 0) {
3481 		pr_warn("ceph_object_locator::key is set\n");
3482 		goto e_inval;
3483 	}
3484 
3485 	if (struct_v >= 5) {
3486 		bool changed = false;
3487 
3488 		len = ceph_decode_32(p);
3489 		if (len > 0) {
3490 			ceph_decode_need(p, end, len, e_inval);
3491 			if (!oloc->pool_ns ||
3492 			    ceph_compare_string(oloc->pool_ns, *p, len))
3493 				changed = true;
3494 			*p += len;
3495 		} else {
3496 			if (oloc->pool_ns)
3497 				changed = true;
3498 		}
3499 		if (changed) {
3500 			/* redirect changes namespace */
3501 			pr_warn("ceph_object_locator::nspace is changed\n");
3502 			goto e_inval;
3503 		}
3504 	}
3505 
3506 	if (struct_v >= 6) {
3507 		s64 hash = ceph_decode_64(p);
3508 		if (hash != -1) {
3509 			pr_warn("ceph_object_locator::hash is set\n");
3510 			goto e_inval;
3511 		}
3512 	}
3513 
3514 	/* skip the rest */
3515 	*p = struct_end;
3516 out:
3517 	return ret;
3518 
3519 e_inval:
3520 	ret = -EINVAL;
3521 	goto out;
3522 }
3523 
3524 static int ceph_redirect_decode(void **p, void *end,
3525 				struct ceph_request_redirect *redir)
3526 {
3527 	u8 struct_v, struct_cv;
3528 	u32 len;
3529 	void *struct_end;
3530 	int ret;
3531 
3532 	ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3533 	struct_v = ceph_decode_8(p);
3534 	struct_cv = ceph_decode_8(p);
3535 	if (struct_cv > 1) {
3536 		pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
3537 			struct_v, struct_cv);
3538 		goto e_inval;
3539 	}
3540 	len = ceph_decode_32(p);
3541 	ceph_decode_need(p, end, len, e_inval);
3542 	struct_end = *p + len;
3543 
3544 	ret = ceph_oloc_decode(p, end, &redir->oloc);
3545 	if (ret)
3546 		goto out;
3547 
3548 	len = ceph_decode_32(p);
3549 	if (len > 0) {
3550 		pr_warn("ceph_request_redirect::object_name is set\n");
3551 		goto e_inval;
3552 	}
3553 
3554 	/* skip the rest */
3555 	*p = struct_end;
3556 out:
3557 	return ret;
3558 
3559 e_inval:
3560 	ret = -EINVAL;
3561 	goto out;
3562 }
3563 
3564 struct MOSDOpReply {
3565 	struct ceph_pg pgid;
3566 	u64 flags;
3567 	int result;
3568 	u32 epoch;
3569 	int num_ops;
3570 	u32 outdata_len[CEPH_OSD_MAX_OPS];
3571 	s32 rval[CEPH_OSD_MAX_OPS];
3572 	int retry_attempt;
3573 	struct ceph_eversion replay_version;
3574 	u64 user_version;
3575 	struct ceph_request_redirect redirect;
3576 };
3577 
3578 static int decode_MOSDOpReply(const struct ceph_msg *msg, struct MOSDOpReply *m)
3579 {
3580 	void *p = msg->front.iov_base;
3581 	void *const end = p + msg->front.iov_len;
3582 	u16 version = le16_to_cpu(msg->hdr.version);
3583 	struct ceph_eversion bad_replay_version;
3584 	u8 decode_redir;
3585 	u32 len;
3586 	int ret;
3587 	int i;
3588 
3589 	ceph_decode_32_safe(&p, end, len, e_inval);
3590 	ceph_decode_need(&p, end, len, e_inval);
3591 	p += len; /* skip oid */
3592 
3593 	ret = ceph_decode_pgid(&p, end, &m->pgid);
3594 	if (ret)
3595 		return ret;
3596 
3597 	ceph_decode_64_safe(&p, end, m->flags, e_inval);
3598 	ceph_decode_32_safe(&p, end, m->result, e_inval);
3599 	ceph_decode_need(&p, end, sizeof(bad_replay_version), e_inval);
3600 	memcpy(&bad_replay_version, p, sizeof(bad_replay_version));
3601 	p += sizeof(bad_replay_version);
3602 	ceph_decode_32_safe(&p, end, m->epoch, e_inval);
3603 
3604 	ceph_decode_32_safe(&p, end, m->num_ops, e_inval);
3605 	if (m->num_ops > ARRAY_SIZE(m->outdata_len))
3606 		goto e_inval;
3607 
3608 	ceph_decode_need(&p, end, m->num_ops * sizeof(struct ceph_osd_op),
3609 			 e_inval);
3610 	for (i = 0; i < m->num_ops; i++) {
3611 		struct ceph_osd_op *op = p;
3612 
3613 		m->outdata_len[i] = le32_to_cpu(op->payload_len);
3614 		p += sizeof(*op);
3615 	}
3616 
3617 	ceph_decode_32_safe(&p, end, m->retry_attempt, e_inval);
3618 	for (i = 0; i < m->num_ops; i++)
3619 		ceph_decode_32_safe(&p, end, m->rval[i], e_inval);
3620 
3621 	if (version >= 5) {
3622 		ceph_decode_need(&p, end, sizeof(m->replay_version), e_inval);
3623 		memcpy(&m->replay_version, p, sizeof(m->replay_version));
3624 		p += sizeof(m->replay_version);
3625 		ceph_decode_64_safe(&p, end, m->user_version, e_inval);
3626 	} else {
3627 		m->replay_version = bad_replay_version; /* struct */
3628 		m->user_version = le64_to_cpu(m->replay_version.version);
3629 	}
3630 
3631 	if (version >= 6) {
3632 		if (version >= 7)
3633 			ceph_decode_8_safe(&p, end, decode_redir, e_inval);
3634 		else
3635 			decode_redir = 1;
3636 	} else {
3637 		decode_redir = 0;
3638 	}
3639 
3640 	if (decode_redir) {
3641 		ret = ceph_redirect_decode(&p, end, &m->redirect);
3642 		if (ret)
3643 			return ret;
3644 	} else {
3645 		ceph_oloc_init(&m->redirect.oloc);
3646 	}
3647 
3648 	return 0;
3649 
3650 e_inval:
3651 	return -EINVAL;
3652 }
3653 
3654 /*
3655  * Handle MOSDOpReply.  Set ->r_result and call the callback if it is
3656  * specified.
3657  */
3658 static void handle_reply(struct ceph_osd *osd, struct ceph_msg *msg)
3659 {
3660 	struct ceph_osd_client *osdc = osd->o_osdc;
3661 	struct ceph_osd_request *req;
3662 	struct MOSDOpReply m;
3663 	u64 tid = le64_to_cpu(msg->hdr.tid);
3664 	u32 data_len = 0;
3665 	int ret;
3666 	int i;
3667 
3668 	dout("%s msg %p tid %llu\n", __func__, msg, tid);
3669 
3670 	down_read(&osdc->lock);
3671 	if (!osd_registered(osd)) {
3672 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
3673 		goto out_unlock_osdc;
3674 	}
3675 	WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
3676 
3677 	mutex_lock(&osd->lock);
3678 	req = lookup_request(&osd->o_requests, tid);
3679 	if (!req) {
3680 		dout("%s osd%d tid %llu unknown\n", __func__, osd->o_osd, tid);
3681 		goto out_unlock_session;
3682 	}
3683 
3684 	m.redirect.oloc.pool_ns = req->r_t.target_oloc.pool_ns;
3685 	ret = decode_MOSDOpReply(msg, &m);
3686 	m.redirect.oloc.pool_ns = NULL;
3687 	if (ret) {
3688 		pr_err("failed to decode MOSDOpReply for tid %llu: %d\n",
3689 		       req->r_tid, ret);
3690 		ceph_msg_dump(msg);
3691 		goto fail_request;
3692 	}
3693 	dout("%s req %p tid %llu flags 0x%llx pgid %llu.%x epoch %u attempt %d v %u'%llu uv %llu\n",
3694 	     __func__, req, req->r_tid, m.flags, m.pgid.pool, m.pgid.seed,
3695 	     m.epoch, m.retry_attempt, le32_to_cpu(m.replay_version.epoch),
3696 	     le64_to_cpu(m.replay_version.version), m.user_version);
3697 
3698 	if (m.retry_attempt >= 0) {
3699 		if (m.retry_attempt != req->r_attempts - 1) {
3700 			dout("req %p tid %llu retry_attempt %d != %d, ignoring\n",
3701 			     req, req->r_tid, m.retry_attempt,
3702 			     req->r_attempts - 1);
3703 			goto out_unlock_session;
3704 		}
3705 	} else {
3706 		WARN_ON(1); /* MOSDOpReply v4 is assumed */
3707 	}
3708 
3709 	if (!ceph_oloc_empty(&m.redirect.oloc)) {
3710 		dout("req %p tid %llu redirect pool %lld\n", req, req->r_tid,
3711 		     m.redirect.oloc.pool);
3712 		unlink_request(osd, req);
3713 		mutex_unlock(&osd->lock);
3714 
3715 		/*
3716 		 * Not ceph_oloc_copy() - changing pool_ns is not
3717 		 * supported.
3718 		 */
3719 		req->r_t.target_oloc.pool = m.redirect.oloc.pool;
3720 		req->r_flags |= CEPH_OSD_FLAG_REDIRECTED |
3721 				CEPH_OSD_FLAG_IGNORE_OVERLAY |
3722 				CEPH_OSD_FLAG_IGNORE_CACHE;
3723 		req->r_tid = 0;
3724 		__submit_request(req, false);
3725 		goto out_unlock_osdc;
3726 	}
3727 
3728 	if (m.result == -EAGAIN) {
3729 		dout("req %p tid %llu EAGAIN\n", req, req->r_tid);
3730 		unlink_request(osd, req);
3731 		mutex_unlock(&osd->lock);
3732 
3733 		/*
3734 		 * The object is missing on the replica or not (yet)
3735 		 * readable.  Clear pgid to force a resend to the primary
3736 		 * via legacy_change.
3737 		 */
3738 		req->r_t.pgid.pool = 0;
3739 		req->r_t.pgid.seed = 0;
3740 		WARN_ON(!req->r_t.used_replica);
3741 		req->r_flags &= ~(CEPH_OSD_FLAG_BALANCE_READS |
3742 				  CEPH_OSD_FLAG_LOCALIZE_READS);
3743 		req->r_tid = 0;
3744 		__submit_request(req, false);
3745 		goto out_unlock_osdc;
3746 	}
3747 
3748 	if (m.num_ops != req->r_num_ops) {
3749 		pr_err("num_ops %d != %d for tid %llu\n", m.num_ops,
3750 		       req->r_num_ops, req->r_tid);
3751 		goto fail_request;
3752 	}
3753 	for (i = 0; i < req->r_num_ops; i++) {
3754 		dout(" req %p tid %llu op %d rval %d len %u\n", req,
3755 		     req->r_tid, i, m.rval[i], m.outdata_len[i]);
3756 		req->r_ops[i].rval = m.rval[i];
3757 		req->r_ops[i].outdata_len = m.outdata_len[i];
3758 		data_len += m.outdata_len[i];
3759 	}
3760 	if (data_len != le32_to_cpu(msg->hdr.data_len)) {
3761 		pr_err("sum of lens %u != %u for tid %llu\n", data_len,
3762 		       le32_to_cpu(msg->hdr.data_len), req->r_tid);
3763 		goto fail_request;
3764 	}
3765 	dout("%s req %p tid %llu result %d data_len %u\n", __func__,
3766 	     req, req->r_tid, m.result, data_len);
3767 
3768 	/*
3769 	 * Since we only ever request ONDISK, we should only ever get
3770 	 * one (type of) reply back.
3771 	 */
3772 	WARN_ON(!(m.flags & CEPH_OSD_FLAG_ONDISK));
3773 	req->r_result = m.result ?: data_len;
3774 	finish_request(req);
3775 	mutex_unlock(&osd->lock);
3776 	up_read(&osdc->lock);
3777 
3778 	__complete_request(req);
3779 	return;
3780 
3781 fail_request:
3782 	complete_request(req, -EIO);
3783 out_unlock_session:
3784 	mutex_unlock(&osd->lock);
3785 out_unlock_osdc:
3786 	up_read(&osdc->lock);
3787 }
3788 
3789 static void set_pool_was_full(struct ceph_osd_client *osdc)
3790 {
3791 	struct rb_node *n;
3792 
3793 	for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
3794 		struct ceph_pg_pool_info *pi =
3795 		    rb_entry(n, struct ceph_pg_pool_info, node);
3796 
3797 		pi->was_full = __pool_full(pi);
3798 	}
3799 }
3800 
3801 static bool pool_cleared_full(struct ceph_osd_client *osdc, s64 pool_id)
3802 {
3803 	struct ceph_pg_pool_info *pi;
3804 
3805 	pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
3806 	if (!pi)
3807 		return false;
3808 
3809 	return pi->was_full && !__pool_full(pi);
3810 }
3811 
3812 static enum calc_target_result
3813 recalc_linger_target(struct ceph_osd_linger_request *lreq)
3814 {
3815 	struct ceph_osd_client *osdc = lreq->osdc;
3816 	enum calc_target_result ct_res;
3817 
3818 	ct_res = calc_target(osdc, &lreq->t, true);
3819 	if (ct_res == CALC_TARGET_NEED_RESEND) {
3820 		struct ceph_osd *osd;
3821 
3822 		osd = lookup_create_osd(osdc, lreq->t.osd, true);
3823 		if (osd != lreq->osd) {
3824 			unlink_linger(lreq->osd, lreq);
3825 			link_linger(osd, lreq);
3826 		}
3827 	}
3828 
3829 	return ct_res;
3830 }
3831 
3832 /*
3833  * Requeue requests whose mapping to an OSD has changed.
3834  */
3835 static void scan_requests(struct ceph_osd *osd,
3836 			  bool force_resend,
3837 			  bool cleared_full,
3838 			  bool check_pool_cleared_full,
3839 			  struct rb_root *need_resend,
3840 			  struct list_head *need_resend_linger)
3841 {
3842 	struct ceph_osd_client *osdc = osd->o_osdc;
3843 	struct rb_node *n;
3844 	bool force_resend_writes;
3845 
3846 	for (n = rb_first(&osd->o_linger_requests); n; ) {
3847 		struct ceph_osd_linger_request *lreq =
3848 		    rb_entry(n, struct ceph_osd_linger_request, node);
3849 		enum calc_target_result ct_res;
3850 
3851 		n = rb_next(n); /* recalc_linger_target() */
3852 
3853 		dout("%s lreq %p linger_id %llu\n", __func__, lreq,
3854 		     lreq->linger_id);
3855 		ct_res = recalc_linger_target(lreq);
3856 		switch (ct_res) {
3857 		case CALC_TARGET_NO_ACTION:
3858 			force_resend_writes = cleared_full ||
3859 			    (check_pool_cleared_full &&
3860 			     pool_cleared_full(osdc, lreq->t.base_oloc.pool));
3861 			if (!force_resend && !force_resend_writes)
3862 				break;
3863 
3864 			/* fall through */
3865 		case CALC_TARGET_NEED_RESEND:
3866 			cancel_linger_map_check(lreq);
3867 			/*
3868 			 * scan_requests() for the previous epoch(s)
3869 			 * may have already added it to the list, since
3870 			 * it's not unlinked here.
3871 			 */
3872 			if (list_empty(&lreq->scan_item))
3873 				list_add_tail(&lreq->scan_item, need_resend_linger);
3874 			break;
3875 		case CALC_TARGET_POOL_DNE:
3876 			list_del_init(&lreq->scan_item);
3877 			check_linger_pool_dne(lreq);
3878 			break;
3879 		}
3880 	}
3881 
3882 	for (n = rb_first(&osd->o_requests); n; ) {
3883 		struct ceph_osd_request *req =
3884 		    rb_entry(n, struct ceph_osd_request, r_node);
3885 		enum calc_target_result ct_res;
3886 
3887 		n = rb_next(n); /* unlink_request(), check_pool_dne() */
3888 
3889 		dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
3890 		ct_res = calc_target(osdc, &req->r_t, false);
3891 		switch (ct_res) {
3892 		case CALC_TARGET_NO_ACTION:
3893 			force_resend_writes = cleared_full ||
3894 			    (check_pool_cleared_full &&
3895 			     pool_cleared_full(osdc, req->r_t.base_oloc.pool));
3896 			if (!force_resend &&
3897 			    (!(req->r_flags & CEPH_OSD_FLAG_WRITE) ||
3898 			     !force_resend_writes))
3899 				break;
3900 
3901 			/* fall through */
3902 		case CALC_TARGET_NEED_RESEND:
3903 			cancel_map_check(req);
3904 			unlink_request(osd, req);
3905 			insert_request(need_resend, req);
3906 			break;
3907 		case CALC_TARGET_POOL_DNE:
3908 			check_pool_dne(req);
3909 			break;
3910 		}
3911 	}
3912 }
3913 
3914 static int handle_one_map(struct ceph_osd_client *osdc,
3915 			  void *p, void *end, bool incremental,
3916 			  struct rb_root *need_resend,
3917 			  struct list_head *need_resend_linger)
3918 {
3919 	struct ceph_osdmap *newmap;
3920 	struct rb_node *n;
3921 	bool skipped_map = false;
3922 	bool was_full;
3923 
3924 	was_full = ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
3925 	set_pool_was_full(osdc);
3926 
3927 	if (incremental)
3928 		newmap = osdmap_apply_incremental(&p, end, osdc->osdmap);
3929 	else
3930 		newmap = ceph_osdmap_decode(&p, end);
3931 	if (IS_ERR(newmap))
3932 		return PTR_ERR(newmap);
3933 
3934 	if (newmap != osdc->osdmap) {
3935 		/*
3936 		 * Preserve ->was_full before destroying the old map.
3937 		 * For pools that weren't in the old map, ->was_full
3938 		 * should be false.
3939 		 */
3940 		for (n = rb_first(&newmap->pg_pools); n; n = rb_next(n)) {
3941 			struct ceph_pg_pool_info *pi =
3942 			    rb_entry(n, struct ceph_pg_pool_info, node);
3943 			struct ceph_pg_pool_info *old_pi;
3944 
3945 			old_pi = ceph_pg_pool_by_id(osdc->osdmap, pi->id);
3946 			if (old_pi)
3947 				pi->was_full = old_pi->was_full;
3948 			else
3949 				WARN_ON(pi->was_full);
3950 		}
3951 
3952 		if (osdc->osdmap->epoch &&
3953 		    osdc->osdmap->epoch + 1 < newmap->epoch) {
3954 			WARN_ON(incremental);
3955 			skipped_map = true;
3956 		}
3957 
3958 		ceph_osdmap_destroy(osdc->osdmap);
3959 		osdc->osdmap = newmap;
3960 	}
3961 
3962 	was_full &= !ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
3963 	scan_requests(&osdc->homeless_osd, skipped_map, was_full, true,
3964 		      need_resend, need_resend_linger);
3965 
3966 	for (n = rb_first(&osdc->osds); n; ) {
3967 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
3968 
3969 		n = rb_next(n); /* close_osd() */
3970 
3971 		scan_requests(osd, skipped_map, was_full, true, need_resend,
3972 			      need_resend_linger);
3973 		if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
3974 		    memcmp(&osd->o_con.peer_addr,
3975 			   ceph_osd_addr(osdc->osdmap, osd->o_osd),
3976 			   sizeof(struct ceph_entity_addr)))
3977 			close_osd(osd);
3978 	}
3979 
3980 	return 0;
3981 }
3982 
3983 static void kick_requests(struct ceph_osd_client *osdc,
3984 			  struct rb_root *need_resend,
3985 			  struct list_head *need_resend_linger)
3986 {
3987 	struct ceph_osd_linger_request *lreq, *nlreq;
3988 	enum calc_target_result ct_res;
3989 	struct rb_node *n;
3990 
3991 	/* make sure need_resend targets reflect latest map */
3992 	for (n = rb_first(need_resend); n; ) {
3993 		struct ceph_osd_request *req =
3994 		    rb_entry(n, struct ceph_osd_request, r_node);
3995 
3996 		n = rb_next(n);
3997 
3998 		if (req->r_t.epoch < osdc->osdmap->epoch) {
3999 			ct_res = calc_target(osdc, &req->r_t, false);
4000 			if (ct_res == CALC_TARGET_POOL_DNE) {
4001 				erase_request(need_resend, req);
4002 				check_pool_dne(req);
4003 			}
4004 		}
4005 	}
4006 
4007 	for (n = rb_first(need_resend); n; ) {
4008 		struct ceph_osd_request *req =
4009 		    rb_entry(n, struct ceph_osd_request, r_node);
4010 		struct ceph_osd *osd;
4011 
4012 		n = rb_next(n);
4013 		erase_request(need_resend, req); /* before link_request() */
4014 
4015 		osd = lookup_create_osd(osdc, req->r_t.osd, true);
4016 		link_request(osd, req);
4017 		if (!req->r_linger) {
4018 			if (!osd_homeless(osd) && !req->r_t.paused)
4019 				send_request(req);
4020 		} else {
4021 			cancel_linger_request(req);
4022 		}
4023 	}
4024 
4025 	list_for_each_entry_safe(lreq, nlreq, need_resend_linger, scan_item) {
4026 		if (!osd_homeless(lreq->osd))
4027 			send_linger(lreq);
4028 
4029 		list_del_init(&lreq->scan_item);
4030 	}
4031 }
4032 
4033 /*
4034  * Process updated osd map.
4035  *
4036  * The message contains any number of incremental and full maps, normally
4037  * indicating some sort of topology change in the cluster.  Kick requests
4038  * off to different OSDs as needed.
4039  */
4040 void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
4041 {
4042 	void *p = msg->front.iov_base;
4043 	void *const end = p + msg->front.iov_len;
4044 	u32 nr_maps, maplen;
4045 	u32 epoch;
4046 	struct ceph_fsid fsid;
4047 	struct rb_root need_resend = RB_ROOT;
4048 	LIST_HEAD(need_resend_linger);
4049 	bool handled_incremental = false;
4050 	bool was_pauserd, was_pausewr;
4051 	bool pauserd, pausewr;
4052 	int err;
4053 
4054 	dout("%s have %u\n", __func__, osdc->osdmap->epoch);
4055 	down_write(&osdc->lock);
4056 
4057 	/* verify fsid */
4058 	ceph_decode_need(&p, end, sizeof(fsid), bad);
4059 	ceph_decode_copy(&p, &fsid, sizeof(fsid));
4060 	if (ceph_check_fsid(osdc->client, &fsid) < 0)
4061 		goto bad;
4062 
4063 	was_pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
4064 	was_pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
4065 		      ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
4066 		      have_pool_full(osdc);
4067 
4068 	/* incremental maps */
4069 	ceph_decode_32_safe(&p, end, nr_maps, bad);
4070 	dout(" %d inc maps\n", nr_maps);
4071 	while (nr_maps > 0) {
4072 		ceph_decode_need(&p, end, 2*sizeof(u32), bad);
4073 		epoch = ceph_decode_32(&p);
4074 		maplen = ceph_decode_32(&p);
4075 		ceph_decode_need(&p, end, maplen, bad);
4076 		if (osdc->osdmap->epoch &&
4077 		    osdc->osdmap->epoch + 1 == epoch) {
4078 			dout("applying incremental map %u len %d\n",
4079 			     epoch, maplen);
4080 			err = handle_one_map(osdc, p, p + maplen, true,
4081 					     &need_resend, &need_resend_linger);
4082 			if (err)
4083 				goto bad;
4084 			handled_incremental = true;
4085 		} else {
4086 			dout("ignoring incremental map %u len %d\n",
4087 			     epoch, maplen);
4088 		}
4089 		p += maplen;
4090 		nr_maps--;
4091 	}
4092 	if (handled_incremental)
4093 		goto done;
4094 
4095 	/* full maps */
4096 	ceph_decode_32_safe(&p, end, nr_maps, bad);
4097 	dout(" %d full maps\n", nr_maps);
4098 	while (nr_maps) {
4099 		ceph_decode_need(&p, end, 2*sizeof(u32), bad);
4100 		epoch = ceph_decode_32(&p);
4101 		maplen = ceph_decode_32(&p);
4102 		ceph_decode_need(&p, end, maplen, bad);
4103 		if (nr_maps > 1) {
4104 			dout("skipping non-latest full map %u len %d\n",
4105 			     epoch, maplen);
4106 		} else if (osdc->osdmap->epoch >= epoch) {
4107 			dout("skipping full map %u len %d, "
4108 			     "older than our %u\n", epoch, maplen,
4109 			     osdc->osdmap->epoch);
4110 		} else {
4111 			dout("taking full map %u len %d\n", epoch, maplen);
4112 			err = handle_one_map(osdc, p, p + maplen, false,
4113 					     &need_resend, &need_resend_linger);
4114 			if (err)
4115 				goto bad;
4116 		}
4117 		p += maplen;
4118 		nr_maps--;
4119 	}
4120 
4121 done:
4122 	/*
4123 	 * subscribe to subsequent osdmap updates if full to ensure
4124 	 * we find out when we are no longer full and stop returning
4125 	 * ENOSPC.
4126 	 */
4127 	pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
4128 	pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
4129 		  ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
4130 		  have_pool_full(osdc);
4131 	if (was_pauserd || was_pausewr || pauserd || pausewr ||
4132 	    osdc->osdmap->epoch < osdc->epoch_barrier)
4133 		maybe_request_map(osdc);
4134 
4135 	kick_requests(osdc, &need_resend, &need_resend_linger);
4136 
4137 	ceph_osdc_abort_on_full(osdc);
4138 	ceph_monc_got_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
4139 			  osdc->osdmap->epoch);
4140 	up_write(&osdc->lock);
4141 	wake_up_all(&osdc->client->auth_wq);
4142 	return;
4143 
4144 bad:
4145 	pr_err("osdc handle_map corrupt msg\n");
4146 	ceph_msg_dump(msg);
4147 	up_write(&osdc->lock);
4148 }
4149 
4150 /*
4151  * Resubmit requests pending on the given osd.
4152  */
4153 static void kick_osd_requests(struct ceph_osd *osd)
4154 {
4155 	struct rb_node *n;
4156 
4157 	clear_backoffs(osd);
4158 
4159 	for (n = rb_first(&osd->o_requests); n; ) {
4160 		struct ceph_osd_request *req =
4161 		    rb_entry(n, struct ceph_osd_request, r_node);
4162 
4163 		n = rb_next(n); /* cancel_linger_request() */
4164 
4165 		if (!req->r_linger) {
4166 			if (!req->r_t.paused)
4167 				send_request(req);
4168 		} else {
4169 			cancel_linger_request(req);
4170 		}
4171 	}
4172 	for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) {
4173 		struct ceph_osd_linger_request *lreq =
4174 		    rb_entry(n, struct ceph_osd_linger_request, node);
4175 
4176 		send_linger(lreq);
4177 	}
4178 }
4179 
4180 /*
4181  * If the osd connection drops, we need to resubmit all requests.
4182  */
4183 static void osd_fault(struct ceph_connection *con)
4184 {
4185 	struct ceph_osd *osd = con->private;
4186 	struct ceph_osd_client *osdc = osd->o_osdc;
4187 
4188 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
4189 
4190 	down_write(&osdc->lock);
4191 	if (!osd_registered(osd)) {
4192 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
4193 		goto out_unlock;
4194 	}
4195 
4196 	if (!reopen_osd(osd))
4197 		kick_osd_requests(osd);
4198 	maybe_request_map(osdc);
4199 
4200 out_unlock:
4201 	up_write(&osdc->lock);
4202 }
4203 
4204 struct MOSDBackoff {
4205 	struct ceph_spg spgid;
4206 	u32 map_epoch;
4207 	u8 op;
4208 	u64 id;
4209 	struct ceph_hobject_id *begin;
4210 	struct ceph_hobject_id *end;
4211 };
4212 
4213 static int decode_MOSDBackoff(const struct ceph_msg *msg, struct MOSDBackoff *m)
4214 {
4215 	void *p = msg->front.iov_base;
4216 	void *const end = p + msg->front.iov_len;
4217 	u8 struct_v;
4218 	u32 struct_len;
4219 	int ret;
4220 
4221 	ret = ceph_start_decoding(&p, end, 1, "spg_t", &struct_v, &struct_len);
4222 	if (ret)
4223 		return ret;
4224 
4225 	ret = ceph_decode_pgid(&p, end, &m->spgid.pgid);
4226 	if (ret)
4227 		return ret;
4228 
4229 	ceph_decode_8_safe(&p, end, m->spgid.shard, e_inval);
4230 	ceph_decode_32_safe(&p, end, m->map_epoch, e_inval);
4231 	ceph_decode_8_safe(&p, end, m->op, e_inval);
4232 	ceph_decode_64_safe(&p, end, m->id, e_inval);
4233 
4234 	m->begin = kzalloc(sizeof(*m->begin), GFP_NOIO);
4235 	if (!m->begin)
4236 		return -ENOMEM;
4237 
4238 	ret = decode_hoid(&p, end, m->begin);
4239 	if (ret) {
4240 		free_hoid(m->begin);
4241 		return ret;
4242 	}
4243 
4244 	m->end = kzalloc(sizeof(*m->end), GFP_NOIO);
4245 	if (!m->end) {
4246 		free_hoid(m->begin);
4247 		return -ENOMEM;
4248 	}
4249 
4250 	ret = decode_hoid(&p, end, m->end);
4251 	if (ret) {
4252 		free_hoid(m->begin);
4253 		free_hoid(m->end);
4254 		return ret;
4255 	}
4256 
4257 	return 0;
4258 
4259 e_inval:
4260 	return -EINVAL;
4261 }
4262 
4263 static struct ceph_msg *create_backoff_message(
4264 				const struct ceph_osd_backoff *backoff,
4265 				u32 map_epoch)
4266 {
4267 	struct ceph_msg *msg;
4268 	void *p, *end;
4269 	int msg_size;
4270 
4271 	msg_size = CEPH_ENCODING_START_BLK_LEN +
4272 			CEPH_PGID_ENCODING_LEN + 1; /* spgid */
4273 	msg_size += 4 + 1 + 8; /* map_epoch, op, id */
4274 	msg_size += CEPH_ENCODING_START_BLK_LEN +
4275 			hoid_encoding_size(backoff->begin);
4276 	msg_size += CEPH_ENCODING_START_BLK_LEN +
4277 			hoid_encoding_size(backoff->end);
4278 
4279 	msg = ceph_msg_new(CEPH_MSG_OSD_BACKOFF, msg_size, GFP_NOIO, true);
4280 	if (!msg)
4281 		return NULL;
4282 
4283 	p = msg->front.iov_base;
4284 	end = p + msg->front_alloc_len;
4285 
4286 	encode_spgid(&p, &backoff->spgid);
4287 	ceph_encode_32(&p, map_epoch);
4288 	ceph_encode_8(&p, CEPH_OSD_BACKOFF_OP_ACK_BLOCK);
4289 	ceph_encode_64(&p, backoff->id);
4290 	encode_hoid(&p, end, backoff->begin);
4291 	encode_hoid(&p, end, backoff->end);
4292 	BUG_ON(p != end);
4293 
4294 	msg->front.iov_len = p - msg->front.iov_base;
4295 	msg->hdr.version = cpu_to_le16(1); /* MOSDBackoff v1 */
4296 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
4297 
4298 	return msg;
4299 }
4300 
4301 static void handle_backoff_block(struct ceph_osd *osd, struct MOSDBackoff *m)
4302 {
4303 	struct ceph_spg_mapping *spg;
4304 	struct ceph_osd_backoff *backoff;
4305 	struct ceph_msg *msg;
4306 
4307 	dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4308 	     m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4309 
4310 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &m->spgid);
4311 	if (!spg) {
4312 		spg = alloc_spg_mapping();
4313 		if (!spg) {
4314 			pr_err("%s failed to allocate spg\n", __func__);
4315 			return;
4316 		}
4317 		spg->spgid = m->spgid; /* struct */
4318 		insert_spg_mapping(&osd->o_backoff_mappings, spg);
4319 	}
4320 
4321 	backoff = alloc_backoff();
4322 	if (!backoff) {
4323 		pr_err("%s failed to allocate backoff\n", __func__);
4324 		return;
4325 	}
4326 	backoff->spgid = m->spgid; /* struct */
4327 	backoff->id = m->id;
4328 	backoff->begin = m->begin;
4329 	m->begin = NULL; /* backoff now owns this */
4330 	backoff->end = m->end;
4331 	m->end = NULL;   /* ditto */
4332 
4333 	insert_backoff(&spg->backoffs, backoff);
4334 	insert_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4335 
4336 	/*
4337 	 * Ack with original backoff's epoch so that the OSD can
4338 	 * discard this if there was a PG split.
4339 	 */
4340 	msg = create_backoff_message(backoff, m->map_epoch);
4341 	if (!msg) {
4342 		pr_err("%s failed to allocate msg\n", __func__);
4343 		return;
4344 	}
4345 	ceph_con_send(&osd->o_con, msg);
4346 }
4347 
4348 static bool target_contained_by(const struct ceph_osd_request_target *t,
4349 				const struct ceph_hobject_id *begin,
4350 				const struct ceph_hobject_id *end)
4351 {
4352 	struct ceph_hobject_id hoid;
4353 	int cmp;
4354 
4355 	hoid_fill_from_target(&hoid, t);
4356 	cmp = hoid_compare(&hoid, begin);
4357 	return !cmp || (cmp > 0 && hoid_compare(&hoid, end) < 0);
4358 }
4359 
4360 static void handle_backoff_unblock(struct ceph_osd *osd,
4361 				   const struct MOSDBackoff *m)
4362 {
4363 	struct ceph_spg_mapping *spg;
4364 	struct ceph_osd_backoff *backoff;
4365 	struct rb_node *n;
4366 
4367 	dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4368 	     m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4369 
4370 	backoff = lookup_backoff_by_id(&osd->o_backoffs_by_id, m->id);
4371 	if (!backoff) {
4372 		pr_err("%s osd%d spgid %llu.%xs%d id %llu backoff dne\n",
4373 		       __func__, osd->o_osd, m->spgid.pgid.pool,
4374 		       m->spgid.pgid.seed, m->spgid.shard, m->id);
4375 		return;
4376 	}
4377 
4378 	if (hoid_compare(backoff->begin, m->begin) &&
4379 	    hoid_compare(backoff->end, m->end)) {
4380 		pr_err("%s osd%d spgid %llu.%xs%d id %llu bad range?\n",
4381 		       __func__, osd->o_osd, m->spgid.pgid.pool,
4382 		       m->spgid.pgid.seed, m->spgid.shard, m->id);
4383 		/* unblock it anyway... */
4384 	}
4385 
4386 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &backoff->spgid);
4387 	BUG_ON(!spg);
4388 
4389 	erase_backoff(&spg->backoffs, backoff);
4390 	erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4391 	free_backoff(backoff);
4392 
4393 	if (RB_EMPTY_ROOT(&spg->backoffs)) {
4394 		erase_spg_mapping(&osd->o_backoff_mappings, spg);
4395 		free_spg_mapping(spg);
4396 	}
4397 
4398 	for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
4399 		struct ceph_osd_request *req =
4400 		    rb_entry(n, struct ceph_osd_request, r_node);
4401 
4402 		if (!ceph_spg_compare(&req->r_t.spgid, &m->spgid)) {
4403 			/*
4404 			 * Match against @m, not @backoff -- the PG may
4405 			 * have split on the OSD.
4406 			 */
4407 			if (target_contained_by(&req->r_t, m->begin, m->end)) {
4408 				/*
4409 				 * If no other installed backoff applies,
4410 				 * resend.
4411 				 */
4412 				send_request(req);
4413 			}
4414 		}
4415 	}
4416 }
4417 
4418 static void handle_backoff(struct ceph_osd *osd, struct ceph_msg *msg)
4419 {
4420 	struct ceph_osd_client *osdc = osd->o_osdc;
4421 	struct MOSDBackoff m;
4422 	int ret;
4423 
4424 	down_read(&osdc->lock);
4425 	if (!osd_registered(osd)) {
4426 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
4427 		up_read(&osdc->lock);
4428 		return;
4429 	}
4430 	WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
4431 
4432 	mutex_lock(&osd->lock);
4433 	ret = decode_MOSDBackoff(msg, &m);
4434 	if (ret) {
4435 		pr_err("failed to decode MOSDBackoff: %d\n", ret);
4436 		ceph_msg_dump(msg);
4437 		goto out_unlock;
4438 	}
4439 
4440 	switch (m.op) {
4441 	case CEPH_OSD_BACKOFF_OP_BLOCK:
4442 		handle_backoff_block(osd, &m);
4443 		break;
4444 	case CEPH_OSD_BACKOFF_OP_UNBLOCK:
4445 		handle_backoff_unblock(osd, &m);
4446 		break;
4447 	default:
4448 		pr_err("%s osd%d unknown op %d\n", __func__, osd->o_osd, m.op);
4449 	}
4450 
4451 	free_hoid(m.begin);
4452 	free_hoid(m.end);
4453 
4454 out_unlock:
4455 	mutex_unlock(&osd->lock);
4456 	up_read(&osdc->lock);
4457 }
4458 
4459 /*
4460  * Process osd watch notifications
4461  */
4462 static void handle_watch_notify(struct ceph_osd_client *osdc,
4463 				struct ceph_msg *msg)
4464 {
4465 	void *p = msg->front.iov_base;
4466 	void *const end = p + msg->front.iov_len;
4467 	struct ceph_osd_linger_request *lreq;
4468 	struct linger_work *lwork;
4469 	u8 proto_ver, opcode;
4470 	u64 cookie, notify_id;
4471 	u64 notifier_id = 0;
4472 	s32 return_code = 0;
4473 	void *payload = NULL;
4474 	u32 payload_len = 0;
4475 
4476 	ceph_decode_8_safe(&p, end, proto_ver, bad);
4477 	ceph_decode_8_safe(&p, end, opcode, bad);
4478 	ceph_decode_64_safe(&p, end, cookie, bad);
4479 	p += 8; /* skip ver */
4480 	ceph_decode_64_safe(&p, end, notify_id, bad);
4481 
4482 	if (proto_ver >= 1) {
4483 		ceph_decode_32_safe(&p, end, payload_len, bad);
4484 		ceph_decode_need(&p, end, payload_len, bad);
4485 		payload = p;
4486 		p += payload_len;
4487 	}
4488 
4489 	if (le16_to_cpu(msg->hdr.version) >= 2)
4490 		ceph_decode_32_safe(&p, end, return_code, bad);
4491 
4492 	if (le16_to_cpu(msg->hdr.version) >= 3)
4493 		ceph_decode_64_safe(&p, end, notifier_id, bad);
4494 
4495 	down_read(&osdc->lock);
4496 	lreq = lookup_linger_osdc(&osdc->linger_requests, cookie);
4497 	if (!lreq) {
4498 		dout("%s opcode %d cookie %llu dne\n", __func__, opcode,
4499 		     cookie);
4500 		goto out_unlock_osdc;
4501 	}
4502 
4503 	mutex_lock(&lreq->lock);
4504 	dout("%s opcode %d cookie %llu lreq %p is_watch %d\n", __func__,
4505 	     opcode, cookie, lreq, lreq->is_watch);
4506 	if (opcode == CEPH_WATCH_EVENT_DISCONNECT) {
4507 		if (!lreq->last_error) {
4508 			lreq->last_error = -ENOTCONN;
4509 			queue_watch_error(lreq);
4510 		}
4511 	} else if (!lreq->is_watch) {
4512 		/* CEPH_WATCH_EVENT_NOTIFY_COMPLETE */
4513 		if (lreq->notify_id && lreq->notify_id != notify_id) {
4514 			dout("lreq %p notify_id %llu != %llu, ignoring\n", lreq,
4515 			     lreq->notify_id, notify_id);
4516 		} else if (!completion_done(&lreq->notify_finish_wait)) {
4517 			struct ceph_msg_data *data =
4518 			    msg->num_data_items ? &msg->data[0] : NULL;
4519 
4520 			if (data) {
4521 				if (lreq->preply_pages) {
4522 					WARN_ON(data->type !=
4523 							CEPH_MSG_DATA_PAGES);
4524 					*lreq->preply_pages = data->pages;
4525 					*lreq->preply_len = data->length;
4526 					data->own_pages = false;
4527 				}
4528 			}
4529 			lreq->notify_finish_error = return_code;
4530 			complete_all(&lreq->notify_finish_wait);
4531 		}
4532 	} else {
4533 		/* CEPH_WATCH_EVENT_NOTIFY */
4534 		lwork = lwork_alloc(lreq, do_watch_notify);
4535 		if (!lwork) {
4536 			pr_err("failed to allocate notify-lwork\n");
4537 			goto out_unlock_lreq;
4538 		}
4539 
4540 		lwork->notify.notify_id = notify_id;
4541 		lwork->notify.notifier_id = notifier_id;
4542 		lwork->notify.payload = payload;
4543 		lwork->notify.payload_len = payload_len;
4544 		lwork->notify.msg = ceph_msg_get(msg);
4545 		lwork_queue(lwork);
4546 	}
4547 
4548 out_unlock_lreq:
4549 	mutex_unlock(&lreq->lock);
4550 out_unlock_osdc:
4551 	up_read(&osdc->lock);
4552 	return;
4553 
4554 bad:
4555 	pr_err("osdc handle_watch_notify corrupt msg\n");
4556 }
4557 
4558 /*
4559  * Register request, send initial attempt.
4560  */
4561 int ceph_osdc_start_request(struct ceph_osd_client *osdc,
4562 			    struct ceph_osd_request *req,
4563 			    bool nofail)
4564 {
4565 	down_read(&osdc->lock);
4566 	submit_request(req, false);
4567 	up_read(&osdc->lock);
4568 
4569 	return 0;
4570 }
4571 EXPORT_SYMBOL(ceph_osdc_start_request);
4572 
4573 /*
4574  * Unregister a registered request.  The request is not completed:
4575  * ->r_result isn't set and __complete_request() isn't called.
4576  */
4577 void ceph_osdc_cancel_request(struct ceph_osd_request *req)
4578 {
4579 	struct ceph_osd_client *osdc = req->r_osdc;
4580 
4581 	down_write(&osdc->lock);
4582 	if (req->r_osd)
4583 		cancel_request(req);
4584 	up_write(&osdc->lock);
4585 }
4586 EXPORT_SYMBOL(ceph_osdc_cancel_request);
4587 
4588 /*
4589  * @timeout: in jiffies, 0 means "wait forever"
4590  */
4591 static int wait_request_timeout(struct ceph_osd_request *req,
4592 				unsigned long timeout)
4593 {
4594 	long left;
4595 
4596 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
4597 	left = wait_for_completion_killable_timeout(&req->r_completion,
4598 						ceph_timeout_jiffies(timeout));
4599 	if (left <= 0) {
4600 		left = left ?: -ETIMEDOUT;
4601 		ceph_osdc_cancel_request(req);
4602 	} else {
4603 		left = req->r_result; /* completed */
4604 	}
4605 
4606 	return left;
4607 }
4608 
4609 /*
4610  * wait for a request to complete
4611  */
4612 int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
4613 			   struct ceph_osd_request *req)
4614 {
4615 	return wait_request_timeout(req, 0);
4616 }
4617 EXPORT_SYMBOL(ceph_osdc_wait_request);
4618 
4619 /*
4620  * sync - wait for all in-flight requests to flush.  avoid starvation.
4621  */
4622 void ceph_osdc_sync(struct ceph_osd_client *osdc)
4623 {
4624 	struct rb_node *n, *p;
4625 	u64 last_tid = atomic64_read(&osdc->last_tid);
4626 
4627 again:
4628 	down_read(&osdc->lock);
4629 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
4630 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
4631 
4632 		mutex_lock(&osd->lock);
4633 		for (p = rb_first(&osd->o_requests); p; p = rb_next(p)) {
4634 			struct ceph_osd_request *req =
4635 			    rb_entry(p, struct ceph_osd_request, r_node);
4636 
4637 			if (req->r_tid > last_tid)
4638 				break;
4639 
4640 			if (!(req->r_flags & CEPH_OSD_FLAG_WRITE))
4641 				continue;
4642 
4643 			ceph_osdc_get_request(req);
4644 			mutex_unlock(&osd->lock);
4645 			up_read(&osdc->lock);
4646 			dout("%s waiting on req %p tid %llu last_tid %llu\n",
4647 			     __func__, req, req->r_tid, last_tid);
4648 			wait_for_completion(&req->r_completion);
4649 			ceph_osdc_put_request(req);
4650 			goto again;
4651 		}
4652 
4653 		mutex_unlock(&osd->lock);
4654 	}
4655 
4656 	up_read(&osdc->lock);
4657 	dout("%s done last_tid %llu\n", __func__, last_tid);
4658 }
4659 EXPORT_SYMBOL(ceph_osdc_sync);
4660 
4661 static struct ceph_osd_request *
4662 alloc_linger_request(struct ceph_osd_linger_request *lreq)
4663 {
4664 	struct ceph_osd_request *req;
4665 
4666 	req = ceph_osdc_alloc_request(lreq->osdc, NULL, 1, false, GFP_NOIO);
4667 	if (!req)
4668 		return NULL;
4669 
4670 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4671 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
4672 	return req;
4673 }
4674 
4675 static struct ceph_osd_request *
4676 alloc_watch_request(struct ceph_osd_linger_request *lreq, u8 watch_opcode)
4677 {
4678 	struct ceph_osd_request *req;
4679 
4680 	req = alloc_linger_request(lreq);
4681 	if (!req)
4682 		return NULL;
4683 
4684 	/*
4685 	 * Pass 0 for cookie because we don't know it yet, it will be
4686 	 * filled in by linger_submit().
4687 	 */
4688 	osd_req_op_watch_init(req, 0, 0, watch_opcode);
4689 
4690 	if (ceph_osdc_alloc_messages(req, GFP_NOIO)) {
4691 		ceph_osdc_put_request(req);
4692 		return NULL;
4693 	}
4694 
4695 	return req;
4696 }
4697 
4698 /*
4699  * Returns a handle, caller owns a ref.
4700  */
4701 struct ceph_osd_linger_request *
4702 ceph_osdc_watch(struct ceph_osd_client *osdc,
4703 		struct ceph_object_id *oid,
4704 		struct ceph_object_locator *oloc,
4705 		rados_watchcb2_t wcb,
4706 		rados_watcherrcb_t errcb,
4707 		void *data)
4708 {
4709 	struct ceph_osd_linger_request *lreq;
4710 	int ret;
4711 
4712 	lreq = linger_alloc(osdc);
4713 	if (!lreq)
4714 		return ERR_PTR(-ENOMEM);
4715 
4716 	lreq->is_watch = true;
4717 	lreq->wcb = wcb;
4718 	lreq->errcb = errcb;
4719 	lreq->data = data;
4720 	lreq->watch_valid_thru = jiffies;
4721 
4722 	ceph_oid_copy(&lreq->t.base_oid, oid);
4723 	ceph_oloc_copy(&lreq->t.base_oloc, oloc);
4724 	lreq->t.flags = CEPH_OSD_FLAG_WRITE;
4725 	ktime_get_real_ts64(&lreq->mtime);
4726 
4727 	lreq->reg_req = alloc_watch_request(lreq, CEPH_OSD_WATCH_OP_WATCH);
4728 	if (!lreq->reg_req) {
4729 		ret = -ENOMEM;
4730 		goto err_put_lreq;
4731 	}
4732 
4733 	lreq->ping_req = alloc_watch_request(lreq, CEPH_OSD_WATCH_OP_PING);
4734 	if (!lreq->ping_req) {
4735 		ret = -ENOMEM;
4736 		goto err_put_lreq;
4737 	}
4738 
4739 	linger_submit(lreq);
4740 	ret = linger_reg_commit_wait(lreq);
4741 	if (ret) {
4742 		linger_cancel(lreq);
4743 		goto err_put_lreq;
4744 	}
4745 
4746 	return lreq;
4747 
4748 err_put_lreq:
4749 	linger_put(lreq);
4750 	return ERR_PTR(ret);
4751 }
4752 EXPORT_SYMBOL(ceph_osdc_watch);
4753 
4754 /*
4755  * Releases a ref.
4756  *
4757  * Times out after mount_timeout to preserve rbd unmap behaviour
4758  * introduced in 2894e1d76974 ("rbd: timeout watch teardown on unmap
4759  * with mount_timeout").
4760  */
4761 int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
4762 		      struct ceph_osd_linger_request *lreq)
4763 {
4764 	struct ceph_options *opts = osdc->client->options;
4765 	struct ceph_osd_request *req;
4766 	int ret;
4767 
4768 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4769 	if (!req)
4770 		return -ENOMEM;
4771 
4772 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4773 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
4774 	req->r_flags = CEPH_OSD_FLAG_WRITE;
4775 	ktime_get_real_ts64(&req->r_mtime);
4776 	osd_req_op_watch_init(req, 0, lreq->linger_id,
4777 			      CEPH_OSD_WATCH_OP_UNWATCH);
4778 
4779 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4780 	if (ret)
4781 		goto out_put_req;
4782 
4783 	ceph_osdc_start_request(osdc, req, false);
4784 	linger_cancel(lreq);
4785 	linger_put(lreq);
4786 	ret = wait_request_timeout(req, opts->mount_timeout);
4787 
4788 out_put_req:
4789 	ceph_osdc_put_request(req);
4790 	return ret;
4791 }
4792 EXPORT_SYMBOL(ceph_osdc_unwatch);
4793 
4794 static int osd_req_op_notify_ack_init(struct ceph_osd_request *req, int which,
4795 				      u64 notify_id, u64 cookie, void *payload,
4796 				      u32 payload_len)
4797 {
4798 	struct ceph_osd_req_op *op;
4799 	struct ceph_pagelist *pl;
4800 	int ret;
4801 
4802 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY_ACK, 0);
4803 
4804 	pl = ceph_pagelist_alloc(GFP_NOIO);
4805 	if (!pl)
4806 		return -ENOMEM;
4807 
4808 	ret = ceph_pagelist_encode_64(pl, notify_id);
4809 	ret |= ceph_pagelist_encode_64(pl, cookie);
4810 	if (payload) {
4811 		ret |= ceph_pagelist_encode_32(pl, payload_len);
4812 		ret |= ceph_pagelist_append(pl, payload, payload_len);
4813 	} else {
4814 		ret |= ceph_pagelist_encode_32(pl, 0);
4815 	}
4816 	if (ret) {
4817 		ceph_pagelist_release(pl);
4818 		return -ENOMEM;
4819 	}
4820 
4821 	ceph_osd_data_pagelist_init(&op->notify_ack.request_data, pl);
4822 	op->indata_len = pl->length;
4823 	return 0;
4824 }
4825 
4826 int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
4827 			 struct ceph_object_id *oid,
4828 			 struct ceph_object_locator *oloc,
4829 			 u64 notify_id,
4830 			 u64 cookie,
4831 			 void *payload,
4832 			 u32 payload_len)
4833 {
4834 	struct ceph_osd_request *req;
4835 	int ret;
4836 
4837 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4838 	if (!req)
4839 		return -ENOMEM;
4840 
4841 	ceph_oid_copy(&req->r_base_oid, oid);
4842 	ceph_oloc_copy(&req->r_base_oloc, oloc);
4843 	req->r_flags = CEPH_OSD_FLAG_READ;
4844 
4845 	ret = osd_req_op_notify_ack_init(req, 0, notify_id, cookie, payload,
4846 					 payload_len);
4847 	if (ret)
4848 		goto out_put_req;
4849 
4850 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4851 	if (ret)
4852 		goto out_put_req;
4853 
4854 	ceph_osdc_start_request(osdc, req, false);
4855 	ret = ceph_osdc_wait_request(osdc, req);
4856 
4857 out_put_req:
4858 	ceph_osdc_put_request(req);
4859 	return ret;
4860 }
4861 EXPORT_SYMBOL(ceph_osdc_notify_ack);
4862 
4863 static int osd_req_op_notify_init(struct ceph_osd_request *req, int which,
4864 				  u64 cookie, u32 prot_ver, u32 timeout,
4865 				  void *payload, u32 payload_len)
4866 {
4867 	struct ceph_osd_req_op *op;
4868 	struct ceph_pagelist *pl;
4869 	int ret;
4870 
4871 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY, 0);
4872 	op->notify.cookie = cookie;
4873 
4874 	pl = ceph_pagelist_alloc(GFP_NOIO);
4875 	if (!pl)
4876 		return -ENOMEM;
4877 
4878 	ret = ceph_pagelist_encode_32(pl, 1); /* prot_ver */
4879 	ret |= ceph_pagelist_encode_32(pl, timeout);
4880 	ret |= ceph_pagelist_encode_32(pl, payload_len);
4881 	ret |= ceph_pagelist_append(pl, payload, payload_len);
4882 	if (ret) {
4883 		ceph_pagelist_release(pl);
4884 		return -ENOMEM;
4885 	}
4886 
4887 	ceph_osd_data_pagelist_init(&op->notify.request_data, pl);
4888 	op->indata_len = pl->length;
4889 	return 0;
4890 }
4891 
4892 /*
4893  * @timeout: in seconds
4894  *
4895  * @preply_{pages,len} are initialized both on success and error.
4896  * The caller is responsible for:
4897  *
4898  *     ceph_release_page_vector(reply_pages, calc_pages_for(0, reply_len))
4899  */
4900 int ceph_osdc_notify(struct ceph_osd_client *osdc,
4901 		     struct ceph_object_id *oid,
4902 		     struct ceph_object_locator *oloc,
4903 		     void *payload,
4904 		     u32 payload_len,
4905 		     u32 timeout,
4906 		     struct page ***preply_pages,
4907 		     size_t *preply_len)
4908 {
4909 	struct ceph_osd_linger_request *lreq;
4910 	struct page **pages;
4911 	int ret;
4912 
4913 	WARN_ON(!timeout);
4914 	if (preply_pages) {
4915 		*preply_pages = NULL;
4916 		*preply_len = 0;
4917 	}
4918 
4919 	lreq = linger_alloc(osdc);
4920 	if (!lreq)
4921 		return -ENOMEM;
4922 
4923 	lreq->preply_pages = preply_pages;
4924 	lreq->preply_len = preply_len;
4925 
4926 	ceph_oid_copy(&lreq->t.base_oid, oid);
4927 	ceph_oloc_copy(&lreq->t.base_oloc, oloc);
4928 	lreq->t.flags = CEPH_OSD_FLAG_READ;
4929 
4930 	lreq->reg_req = alloc_linger_request(lreq);
4931 	if (!lreq->reg_req) {
4932 		ret = -ENOMEM;
4933 		goto out_put_lreq;
4934 	}
4935 
4936 	/*
4937 	 * Pass 0 for cookie because we don't know it yet, it will be
4938 	 * filled in by linger_submit().
4939 	 */
4940 	ret = osd_req_op_notify_init(lreq->reg_req, 0, 0, 1, timeout,
4941 				     payload, payload_len);
4942 	if (ret)
4943 		goto out_put_lreq;
4944 
4945 	/* for notify_id */
4946 	pages = ceph_alloc_page_vector(1, GFP_NOIO);
4947 	if (IS_ERR(pages)) {
4948 		ret = PTR_ERR(pages);
4949 		goto out_put_lreq;
4950 	}
4951 	ceph_osd_data_pages_init(osd_req_op_data(lreq->reg_req, 0, notify,
4952 						 response_data),
4953 				 pages, PAGE_SIZE, 0, false, true);
4954 
4955 	ret = ceph_osdc_alloc_messages(lreq->reg_req, GFP_NOIO);
4956 	if (ret)
4957 		goto out_put_lreq;
4958 
4959 	linger_submit(lreq);
4960 	ret = linger_reg_commit_wait(lreq);
4961 	if (!ret)
4962 		ret = linger_notify_finish_wait(lreq);
4963 	else
4964 		dout("lreq %p failed to initiate notify %d\n", lreq, ret);
4965 
4966 	linger_cancel(lreq);
4967 out_put_lreq:
4968 	linger_put(lreq);
4969 	return ret;
4970 }
4971 EXPORT_SYMBOL(ceph_osdc_notify);
4972 
4973 /*
4974  * Return the number of milliseconds since the watch was last
4975  * confirmed, or an error.  If there is an error, the watch is no
4976  * longer valid, and should be destroyed with ceph_osdc_unwatch().
4977  */
4978 int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
4979 			  struct ceph_osd_linger_request *lreq)
4980 {
4981 	unsigned long stamp, age;
4982 	int ret;
4983 
4984 	down_read(&osdc->lock);
4985 	mutex_lock(&lreq->lock);
4986 	stamp = lreq->watch_valid_thru;
4987 	if (!list_empty(&lreq->pending_lworks)) {
4988 		struct linger_work *lwork =
4989 		    list_first_entry(&lreq->pending_lworks,
4990 				     struct linger_work,
4991 				     pending_item);
4992 
4993 		if (time_before(lwork->queued_stamp, stamp))
4994 			stamp = lwork->queued_stamp;
4995 	}
4996 	age = jiffies - stamp;
4997 	dout("%s lreq %p linger_id %llu age %lu last_error %d\n", __func__,
4998 	     lreq, lreq->linger_id, age, lreq->last_error);
4999 	/* we are truncating to msecs, so return a safe upper bound */
5000 	ret = lreq->last_error ?: 1 + jiffies_to_msecs(age);
5001 
5002 	mutex_unlock(&lreq->lock);
5003 	up_read(&osdc->lock);
5004 	return ret;
5005 }
5006 
5007 static int decode_watcher(void **p, void *end, struct ceph_watch_item *item)
5008 {
5009 	u8 struct_v;
5010 	u32 struct_len;
5011 	int ret;
5012 
5013 	ret = ceph_start_decoding(p, end, 2, "watch_item_t",
5014 				  &struct_v, &struct_len);
5015 	if (ret)
5016 		goto bad;
5017 
5018 	ret = -EINVAL;
5019 	ceph_decode_copy_safe(p, end, &item->name, sizeof(item->name), bad);
5020 	ceph_decode_64_safe(p, end, item->cookie, bad);
5021 	ceph_decode_skip_32(p, end, bad); /* skip timeout seconds */
5022 
5023 	if (struct_v >= 2) {
5024 		ret = ceph_decode_entity_addr(p, end, &item->addr);
5025 		if (ret)
5026 			goto bad;
5027 	} else {
5028 		ret = 0;
5029 	}
5030 
5031 	dout("%s %s%llu cookie %llu addr %s\n", __func__,
5032 	     ENTITY_NAME(item->name), item->cookie,
5033 	     ceph_pr_addr(&item->addr));
5034 bad:
5035 	return ret;
5036 }
5037 
5038 static int decode_watchers(void **p, void *end,
5039 			   struct ceph_watch_item **watchers,
5040 			   u32 *num_watchers)
5041 {
5042 	u8 struct_v;
5043 	u32 struct_len;
5044 	int i;
5045 	int ret;
5046 
5047 	ret = ceph_start_decoding(p, end, 1, "obj_list_watch_response_t",
5048 				  &struct_v, &struct_len);
5049 	if (ret)
5050 		return ret;
5051 
5052 	*num_watchers = ceph_decode_32(p);
5053 	*watchers = kcalloc(*num_watchers, sizeof(**watchers), GFP_NOIO);
5054 	if (!*watchers)
5055 		return -ENOMEM;
5056 
5057 	for (i = 0; i < *num_watchers; i++) {
5058 		ret = decode_watcher(p, end, *watchers + i);
5059 		if (ret) {
5060 			kfree(*watchers);
5061 			return ret;
5062 		}
5063 	}
5064 
5065 	return 0;
5066 }
5067 
5068 /*
5069  * On success, the caller is responsible for:
5070  *
5071  *     kfree(watchers);
5072  */
5073 int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
5074 			    struct ceph_object_id *oid,
5075 			    struct ceph_object_locator *oloc,
5076 			    struct ceph_watch_item **watchers,
5077 			    u32 *num_watchers)
5078 {
5079 	struct ceph_osd_request *req;
5080 	struct page **pages;
5081 	int ret;
5082 
5083 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
5084 	if (!req)
5085 		return -ENOMEM;
5086 
5087 	ceph_oid_copy(&req->r_base_oid, oid);
5088 	ceph_oloc_copy(&req->r_base_oloc, oloc);
5089 	req->r_flags = CEPH_OSD_FLAG_READ;
5090 
5091 	pages = ceph_alloc_page_vector(1, GFP_NOIO);
5092 	if (IS_ERR(pages)) {
5093 		ret = PTR_ERR(pages);
5094 		goto out_put_req;
5095 	}
5096 
5097 	osd_req_op_init(req, 0, CEPH_OSD_OP_LIST_WATCHERS, 0);
5098 	ceph_osd_data_pages_init(osd_req_op_data(req, 0, list_watchers,
5099 						 response_data),
5100 				 pages, PAGE_SIZE, 0, false, true);
5101 
5102 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
5103 	if (ret)
5104 		goto out_put_req;
5105 
5106 	ceph_osdc_start_request(osdc, req, false);
5107 	ret = ceph_osdc_wait_request(osdc, req);
5108 	if (ret >= 0) {
5109 		void *p = page_address(pages[0]);
5110 		void *const end = p + req->r_ops[0].outdata_len;
5111 
5112 		ret = decode_watchers(&p, end, watchers, num_watchers);
5113 	}
5114 
5115 out_put_req:
5116 	ceph_osdc_put_request(req);
5117 	return ret;
5118 }
5119 EXPORT_SYMBOL(ceph_osdc_list_watchers);
5120 
5121 /*
5122  * Call all pending notify callbacks - for use after a watch is
5123  * unregistered, to make sure no more callbacks for it will be invoked
5124  */
5125 void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
5126 {
5127 	dout("%s osdc %p\n", __func__, osdc);
5128 	flush_workqueue(osdc->notify_wq);
5129 }
5130 EXPORT_SYMBOL(ceph_osdc_flush_notifies);
5131 
5132 void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc)
5133 {
5134 	down_read(&osdc->lock);
5135 	maybe_request_map(osdc);
5136 	up_read(&osdc->lock);
5137 }
5138 EXPORT_SYMBOL(ceph_osdc_maybe_request_map);
5139 
5140 /*
5141  * Execute an OSD class method on an object.
5142  *
5143  * @flags: CEPH_OSD_FLAG_*
5144  * @resp_len: in/out param for reply length
5145  */
5146 int ceph_osdc_call(struct ceph_osd_client *osdc,
5147 		   struct ceph_object_id *oid,
5148 		   struct ceph_object_locator *oloc,
5149 		   const char *class, const char *method,
5150 		   unsigned int flags,
5151 		   struct page *req_page, size_t req_len,
5152 		   struct page **resp_pages, size_t *resp_len)
5153 {
5154 	struct ceph_osd_request *req;
5155 	int ret;
5156 
5157 	if (req_len > PAGE_SIZE)
5158 		return -E2BIG;
5159 
5160 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
5161 	if (!req)
5162 		return -ENOMEM;
5163 
5164 	ceph_oid_copy(&req->r_base_oid, oid);
5165 	ceph_oloc_copy(&req->r_base_oloc, oloc);
5166 	req->r_flags = flags;
5167 
5168 	ret = osd_req_op_cls_init(req, 0, class, method);
5169 	if (ret)
5170 		goto out_put_req;
5171 
5172 	if (req_page)
5173 		osd_req_op_cls_request_data_pages(req, 0, &req_page, req_len,
5174 						  0, false, false);
5175 	if (resp_pages)
5176 		osd_req_op_cls_response_data_pages(req, 0, resp_pages,
5177 						   *resp_len, 0, false, false);
5178 
5179 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
5180 	if (ret)
5181 		goto out_put_req;
5182 
5183 	ceph_osdc_start_request(osdc, req, false);
5184 	ret = ceph_osdc_wait_request(osdc, req);
5185 	if (ret >= 0) {
5186 		ret = req->r_ops[0].rval;
5187 		if (resp_pages)
5188 			*resp_len = req->r_ops[0].outdata_len;
5189 	}
5190 
5191 out_put_req:
5192 	ceph_osdc_put_request(req);
5193 	return ret;
5194 }
5195 EXPORT_SYMBOL(ceph_osdc_call);
5196 
5197 /*
5198  * reset all osd connections
5199  */
5200 void ceph_osdc_reopen_osds(struct ceph_osd_client *osdc)
5201 {
5202 	struct rb_node *n;
5203 
5204 	down_write(&osdc->lock);
5205 	for (n = rb_first(&osdc->osds); n; ) {
5206 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
5207 
5208 		n = rb_next(n);
5209 		if (!reopen_osd(osd))
5210 			kick_osd_requests(osd);
5211 	}
5212 	up_write(&osdc->lock);
5213 }
5214 
5215 /*
5216  * init, shutdown
5217  */
5218 int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
5219 {
5220 	int err;
5221 
5222 	dout("init\n");
5223 	osdc->client = client;
5224 	init_rwsem(&osdc->lock);
5225 	osdc->osds = RB_ROOT;
5226 	INIT_LIST_HEAD(&osdc->osd_lru);
5227 	spin_lock_init(&osdc->osd_lru_lock);
5228 	osd_init(&osdc->homeless_osd);
5229 	osdc->homeless_osd.o_osdc = osdc;
5230 	osdc->homeless_osd.o_osd = CEPH_HOMELESS_OSD;
5231 	osdc->last_linger_id = CEPH_LINGER_ID_START;
5232 	osdc->linger_requests = RB_ROOT;
5233 	osdc->map_checks = RB_ROOT;
5234 	osdc->linger_map_checks = RB_ROOT;
5235 	INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
5236 	INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
5237 
5238 	err = -ENOMEM;
5239 	osdc->osdmap = ceph_osdmap_alloc();
5240 	if (!osdc->osdmap)
5241 		goto out;
5242 
5243 	osdc->req_mempool = mempool_create_slab_pool(10,
5244 						     ceph_osd_request_cache);
5245 	if (!osdc->req_mempool)
5246 		goto out_map;
5247 
5248 	err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
5249 				PAGE_SIZE, CEPH_OSD_SLAB_OPS, 10, "osd_op");
5250 	if (err < 0)
5251 		goto out_mempool;
5252 	err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
5253 				PAGE_SIZE, CEPH_OSD_SLAB_OPS, 10,
5254 				"osd_op_reply");
5255 	if (err < 0)
5256 		goto out_msgpool;
5257 
5258 	err = -ENOMEM;
5259 	osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
5260 	if (!osdc->notify_wq)
5261 		goto out_msgpool_reply;
5262 
5263 	osdc->completion_wq = create_singlethread_workqueue("ceph-completion");
5264 	if (!osdc->completion_wq)
5265 		goto out_notify_wq;
5266 
5267 	schedule_delayed_work(&osdc->timeout_work,
5268 			      osdc->client->options->osd_keepalive_timeout);
5269 	schedule_delayed_work(&osdc->osds_timeout_work,
5270 	    round_jiffies_relative(osdc->client->options->osd_idle_ttl));
5271 
5272 	return 0;
5273 
5274 out_notify_wq:
5275 	destroy_workqueue(osdc->notify_wq);
5276 out_msgpool_reply:
5277 	ceph_msgpool_destroy(&osdc->msgpool_op_reply);
5278 out_msgpool:
5279 	ceph_msgpool_destroy(&osdc->msgpool_op);
5280 out_mempool:
5281 	mempool_destroy(osdc->req_mempool);
5282 out_map:
5283 	ceph_osdmap_destroy(osdc->osdmap);
5284 out:
5285 	return err;
5286 }
5287 
5288 void ceph_osdc_stop(struct ceph_osd_client *osdc)
5289 {
5290 	destroy_workqueue(osdc->completion_wq);
5291 	destroy_workqueue(osdc->notify_wq);
5292 	cancel_delayed_work_sync(&osdc->timeout_work);
5293 	cancel_delayed_work_sync(&osdc->osds_timeout_work);
5294 
5295 	down_write(&osdc->lock);
5296 	while (!RB_EMPTY_ROOT(&osdc->osds)) {
5297 		struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds),
5298 						struct ceph_osd, o_node);
5299 		close_osd(osd);
5300 	}
5301 	up_write(&osdc->lock);
5302 	WARN_ON(refcount_read(&osdc->homeless_osd.o_ref) != 1);
5303 	osd_cleanup(&osdc->homeless_osd);
5304 
5305 	WARN_ON(!list_empty(&osdc->osd_lru));
5306 	WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_requests));
5307 	WARN_ON(!RB_EMPTY_ROOT(&osdc->map_checks));
5308 	WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_map_checks));
5309 	WARN_ON(atomic_read(&osdc->num_requests));
5310 	WARN_ON(atomic_read(&osdc->num_homeless));
5311 
5312 	ceph_osdmap_destroy(osdc->osdmap);
5313 	mempool_destroy(osdc->req_mempool);
5314 	ceph_msgpool_destroy(&osdc->msgpool_op);
5315 	ceph_msgpool_destroy(&osdc->msgpool_op_reply);
5316 }
5317 
5318 static int osd_req_op_copy_from_init(struct ceph_osd_request *req,
5319 				     u64 src_snapid, u64 src_version,
5320 				     struct ceph_object_id *src_oid,
5321 				     struct ceph_object_locator *src_oloc,
5322 				     u32 src_fadvise_flags,
5323 				     u32 dst_fadvise_flags,
5324 				     u32 truncate_seq, u64 truncate_size,
5325 				     u8 copy_from_flags)
5326 {
5327 	struct ceph_osd_req_op *op;
5328 	struct page **pages;
5329 	void *p, *end;
5330 
5331 	pages = ceph_alloc_page_vector(1, GFP_KERNEL);
5332 	if (IS_ERR(pages))
5333 		return PTR_ERR(pages);
5334 
5335 	op = _osd_req_op_init(req, 0, CEPH_OSD_OP_COPY_FROM2,
5336 			      dst_fadvise_flags);
5337 	op->copy_from.snapid = src_snapid;
5338 	op->copy_from.src_version = src_version;
5339 	op->copy_from.flags = copy_from_flags;
5340 	op->copy_from.src_fadvise_flags = src_fadvise_flags;
5341 
5342 	p = page_address(pages[0]);
5343 	end = p + PAGE_SIZE;
5344 	ceph_encode_string(&p, end, src_oid->name, src_oid->name_len);
5345 	encode_oloc(&p, end, src_oloc);
5346 	ceph_encode_32(&p, truncate_seq);
5347 	ceph_encode_64(&p, truncate_size);
5348 	op->indata_len = PAGE_SIZE - (end - p);
5349 
5350 	ceph_osd_data_pages_init(&op->copy_from.osd_data, pages,
5351 				 op->indata_len, 0, false, true);
5352 	return 0;
5353 }
5354 
5355 int ceph_osdc_copy_from(struct ceph_osd_client *osdc,
5356 			u64 src_snapid, u64 src_version,
5357 			struct ceph_object_id *src_oid,
5358 			struct ceph_object_locator *src_oloc,
5359 			u32 src_fadvise_flags,
5360 			struct ceph_object_id *dst_oid,
5361 			struct ceph_object_locator *dst_oloc,
5362 			u32 dst_fadvise_flags,
5363 			u32 truncate_seq, u64 truncate_size,
5364 			u8 copy_from_flags)
5365 {
5366 	struct ceph_osd_request *req;
5367 	int ret;
5368 
5369 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_KERNEL);
5370 	if (!req)
5371 		return -ENOMEM;
5372 
5373 	req->r_flags = CEPH_OSD_FLAG_WRITE;
5374 
5375 	ceph_oloc_copy(&req->r_t.base_oloc, dst_oloc);
5376 	ceph_oid_copy(&req->r_t.base_oid, dst_oid);
5377 
5378 	ret = osd_req_op_copy_from_init(req, src_snapid, src_version, src_oid,
5379 					src_oloc, src_fadvise_flags,
5380 					dst_fadvise_flags, truncate_seq,
5381 					truncate_size, copy_from_flags);
5382 	if (ret)
5383 		goto out;
5384 
5385 	ret = ceph_osdc_alloc_messages(req, GFP_KERNEL);
5386 	if (ret)
5387 		goto out;
5388 
5389 	ceph_osdc_start_request(osdc, req, false);
5390 	ret = ceph_osdc_wait_request(osdc, req);
5391 
5392 out:
5393 	ceph_osdc_put_request(req);
5394 	return ret;
5395 }
5396 EXPORT_SYMBOL(ceph_osdc_copy_from);
5397 
5398 int __init ceph_osdc_setup(void)
5399 {
5400 	size_t size = sizeof(struct ceph_osd_request) +
5401 	    CEPH_OSD_SLAB_OPS * sizeof(struct ceph_osd_req_op);
5402 
5403 	BUG_ON(ceph_osd_request_cache);
5404 	ceph_osd_request_cache = kmem_cache_create("ceph_osd_request", size,
5405 						   0, 0, NULL);
5406 
5407 	return ceph_osd_request_cache ? 0 : -ENOMEM;
5408 }
5409 
5410 void ceph_osdc_cleanup(void)
5411 {
5412 	BUG_ON(!ceph_osd_request_cache);
5413 	kmem_cache_destroy(ceph_osd_request_cache);
5414 	ceph_osd_request_cache = NULL;
5415 }
5416 
5417 /*
5418  * handle incoming message
5419  */
5420 static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
5421 {
5422 	struct ceph_osd *osd = con->private;
5423 	struct ceph_osd_client *osdc = osd->o_osdc;
5424 	int type = le16_to_cpu(msg->hdr.type);
5425 
5426 	switch (type) {
5427 	case CEPH_MSG_OSD_MAP:
5428 		ceph_osdc_handle_map(osdc, msg);
5429 		break;
5430 	case CEPH_MSG_OSD_OPREPLY:
5431 		handle_reply(osd, msg);
5432 		break;
5433 	case CEPH_MSG_OSD_BACKOFF:
5434 		handle_backoff(osd, msg);
5435 		break;
5436 	case CEPH_MSG_WATCH_NOTIFY:
5437 		handle_watch_notify(osdc, msg);
5438 		break;
5439 
5440 	default:
5441 		pr_err("received unknown message type %d %s\n", type,
5442 		       ceph_msg_type_name(type));
5443 	}
5444 
5445 	ceph_msg_put(msg);
5446 }
5447 
5448 /*
5449  * Lookup and return message for incoming reply.  Don't try to do
5450  * anything about a larger than preallocated data portion of the
5451  * message at the moment - for now, just skip the message.
5452  */
5453 static struct ceph_msg *get_reply(struct ceph_connection *con,
5454 				  struct ceph_msg_header *hdr,
5455 				  int *skip)
5456 {
5457 	struct ceph_osd *osd = con->private;
5458 	struct ceph_osd_client *osdc = osd->o_osdc;
5459 	struct ceph_msg *m = NULL;
5460 	struct ceph_osd_request *req;
5461 	int front_len = le32_to_cpu(hdr->front_len);
5462 	int data_len = le32_to_cpu(hdr->data_len);
5463 	u64 tid = le64_to_cpu(hdr->tid);
5464 
5465 	down_read(&osdc->lock);
5466 	if (!osd_registered(osd)) {
5467 		dout("%s osd%d unknown, skipping\n", __func__, osd->o_osd);
5468 		*skip = 1;
5469 		goto out_unlock_osdc;
5470 	}
5471 	WARN_ON(osd->o_osd != le64_to_cpu(hdr->src.num));
5472 
5473 	mutex_lock(&osd->lock);
5474 	req = lookup_request(&osd->o_requests, tid);
5475 	if (!req) {
5476 		dout("%s osd%d tid %llu unknown, skipping\n", __func__,
5477 		     osd->o_osd, tid);
5478 		*skip = 1;
5479 		goto out_unlock_session;
5480 	}
5481 
5482 	ceph_msg_revoke_incoming(req->r_reply);
5483 
5484 	if (front_len > req->r_reply->front_alloc_len) {
5485 		pr_warn("%s osd%d tid %llu front %d > preallocated %d\n",
5486 			__func__, osd->o_osd, req->r_tid, front_len,
5487 			req->r_reply->front_alloc_len);
5488 		m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS,
5489 				 false);
5490 		if (!m)
5491 			goto out_unlock_session;
5492 		ceph_msg_put(req->r_reply);
5493 		req->r_reply = m;
5494 	}
5495 
5496 	if (data_len > req->r_reply->data_length) {
5497 		pr_warn("%s osd%d tid %llu data %d > preallocated %zu, skipping\n",
5498 			__func__, osd->o_osd, req->r_tid, data_len,
5499 			req->r_reply->data_length);
5500 		m = NULL;
5501 		*skip = 1;
5502 		goto out_unlock_session;
5503 	}
5504 
5505 	m = ceph_msg_get(req->r_reply);
5506 	dout("get_reply tid %lld %p\n", tid, m);
5507 
5508 out_unlock_session:
5509 	mutex_unlock(&osd->lock);
5510 out_unlock_osdc:
5511 	up_read(&osdc->lock);
5512 	return m;
5513 }
5514 
5515 static struct ceph_msg *alloc_msg_with_page_vector(struct ceph_msg_header *hdr)
5516 {
5517 	struct ceph_msg *m;
5518 	int type = le16_to_cpu(hdr->type);
5519 	u32 front_len = le32_to_cpu(hdr->front_len);
5520 	u32 data_len = le32_to_cpu(hdr->data_len);
5521 
5522 	m = ceph_msg_new2(type, front_len, 1, GFP_NOIO, false);
5523 	if (!m)
5524 		return NULL;
5525 
5526 	if (data_len) {
5527 		struct page **pages;
5528 
5529 		pages = ceph_alloc_page_vector(calc_pages_for(0, data_len),
5530 					       GFP_NOIO);
5531 		if (IS_ERR(pages)) {
5532 			ceph_msg_put(m);
5533 			return NULL;
5534 		}
5535 
5536 		ceph_msg_data_add_pages(m, pages, data_len, 0, true);
5537 	}
5538 
5539 	return m;
5540 }
5541 
5542 static struct ceph_msg *alloc_msg(struct ceph_connection *con,
5543 				  struct ceph_msg_header *hdr,
5544 				  int *skip)
5545 {
5546 	struct ceph_osd *osd = con->private;
5547 	int type = le16_to_cpu(hdr->type);
5548 
5549 	*skip = 0;
5550 	switch (type) {
5551 	case CEPH_MSG_OSD_MAP:
5552 	case CEPH_MSG_OSD_BACKOFF:
5553 	case CEPH_MSG_WATCH_NOTIFY:
5554 		return alloc_msg_with_page_vector(hdr);
5555 	case CEPH_MSG_OSD_OPREPLY:
5556 		return get_reply(con, hdr, skip);
5557 	default:
5558 		pr_warn("%s osd%d unknown msg type %d, skipping\n", __func__,
5559 			osd->o_osd, type);
5560 		*skip = 1;
5561 		return NULL;
5562 	}
5563 }
5564 
5565 /*
5566  * Wrappers to refcount containing ceph_osd struct
5567  */
5568 static struct ceph_connection *get_osd_con(struct ceph_connection *con)
5569 {
5570 	struct ceph_osd *osd = con->private;
5571 	if (get_osd(osd))
5572 		return con;
5573 	return NULL;
5574 }
5575 
5576 static void put_osd_con(struct ceph_connection *con)
5577 {
5578 	struct ceph_osd *osd = con->private;
5579 	put_osd(osd);
5580 }
5581 
5582 /*
5583  * authentication
5584  */
5585 /*
5586  * Note: returned pointer is the address of a structure that's
5587  * managed separately.  Caller must *not* attempt to free it.
5588  */
5589 static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
5590 					int *proto, int force_new)
5591 {
5592 	struct ceph_osd *o = con->private;
5593 	struct ceph_osd_client *osdc = o->o_osdc;
5594 	struct ceph_auth_client *ac = osdc->client->monc.auth;
5595 	struct ceph_auth_handshake *auth = &o->o_auth;
5596 
5597 	if (force_new && auth->authorizer) {
5598 		ceph_auth_destroy_authorizer(auth->authorizer);
5599 		auth->authorizer = NULL;
5600 	}
5601 	if (!auth->authorizer) {
5602 		int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
5603 						      auth);
5604 		if (ret)
5605 			return ERR_PTR(ret);
5606 	} else {
5607 		int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
5608 						     auth);
5609 		if (ret)
5610 			return ERR_PTR(ret);
5611 	}
5612 	*proto = ac->protocol;
5613 
5614 	return auth;
5615 }
5616 
5617 static int add_authorizer_challenge(struct ceph_connection *con,
5618 				    void *challenge_buf, int challenge_buf_len)
5619 {
5620 	struct ceph_osd *o = con->private;
5621 	struct ceph_osd_client *osdc = o->o_osdc;
5622 	struct ceph_auth_client *ac = osdc->client->monc.auth;
5623 
5624 	return ceph_auth_add_authorizer_challenge(ac, o->o_auth.authorizer,
5625 					    challenge_buf, challenge_buf_len);
5626 }
5627 
5628 static int verify_authorizer_reply(struct ceph_connection *con)
5629 {
5630 	struct ceph_osd *o = con->private;
5631 	struct ceph_osd_client *osdc = o->o_osdc;
5632 	struct ceph_auth_client *ac = osdc->client->monc.auth;
5633 
5634 	return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer);
5635 }
5636 
5637 static int invalidate_authorizer(struct ceph_connection *con)
5638 {
5639 	struct ceph_osd *o = con->private;
5640 	struct ceph_osd_client *osdc = o->o_osdc;
5641 	struct ceph_auth_client *ac = osdc->client->monc.auth;
5642 
5643 	ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
5644 	return ceph_monc_validate_auth(&osdc->client->monc);
5645 }
5646 
5647 static void osd_reencode_message(struct ceph_msg *msg)
5648 {
5649 	int type = le16_to_cpu(msg->hdr.type);
5650 
5651 	if (type == CEPH_MSG_OSD_OP)
5652 		encode_request_finish(msg);
5653 }
5654 
5655 static int osd_sign_message(struct ceph_msg *msg)
5656 {
5657 	struct ceph_osd *o = msg->con->private;
5658 	struct ceph_auth_handshake *auth = &o->o_auth;
5659 
5660 	return ceph_auth_sign_message(auth, msg);
5661 }
5662 
5663 static int osd_check_message_signature(struct ceph_msg *msg)
5664 {
5665 	struct ceph_osd *o = msg->con->private;
5666 	struct ceph_auth_handshake *auth = &o->o_auth;
5667 
5668 	return ceph_auth_check_message_signature(auth, msg);
5669 }
5670 
5671 static const struct ceph_connection_operations osd_con_ops = {
5672 	.get = get_osd_con,
5673 	.put = put_osd_con,
5674 	.dispatch = dispatch,
5675 	.get_authorizer = get_authorizer,
5676 	.add_authorizer_challenge = add_authorizer_challenge,
5677 	.verify_authorizer_reply = verify_authorizer_reply,
5678 	.invalidate_authorizer = invalidate_authorizer,
5679 	.alloc_msg = alloc_msg,
5680 	.reencode_message = osd_reencode_message,
5681 	.sign_message = osd_sign_message,
5682 	.check_message_signature = osd_check_message_signature,
5683 	.fault = osd_fault,
5684 };
5685