xref: /openbmc/linux/net/ceph/osd_client.c (revision 6daca13d)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2a4ce40a9SAlex Elder 
33d14c5d2SYehuda Sadeh #include <linux/ceph/ceph_debug.h>
43d14c5d2SYehuda Sadeh 
53d14c5d2SYehuda Sadeh #include <linux/module.h>
63d14c5d2SYehuda Sadeh #include <linux/err.h>
73d14c5d2SYehuda Sadeh #include <linux/highmem.h>
83d14c5d2SYehuda Sadeh #include <linux/mm.h>
93d14c5d2SYehuda Sadeh #include <linux/pagemap.h>
103d14c5d2SYehuda Sadeh #include <linux/slab.h>
113d14c5d2SYehuda Sadeh #include <linux/uaccess.h>
123d14c5d2SYehuda Sadeh #ifdef CONFIG_BLOCK
133d14c5d2SYehuda Sadeh #include <linux/bio.h>
143d14c5d2SYehuda Sadeh #endif
153d14c5d2SYehuda Sadeh 
168cb441c0SIlya Dryomov #include <linux/ceph/ceph_features.h>
173d14c5d2SYehuda Sadeh #include <linux/ceph/libceph.h>
183d14c5d2SYehuda Sadeh #include <linux/ceph/osd_client.h>
193d14c5d2SYehuda Sadeh #include <linux/ceph/messenger.h>
203d14c5d2SYehuda Sadeh #include <linux/ceph/decode.h>
213d14c5d2SYehuda Sadeh #include <linux/ceph/auth.h>
223d14c5d2SYehuda Sadeh #include <linux/ceph/pagelist.h>
2308c1ac50SIlya Dryomov #include <linux/ceph/striper.h>
243d14c5d2SYehuda Sadeh 
253d14c5d2SYehuda Sadeh #define OSD_OPREPLY_FRONT_LEN	512
263d14c5d2SYehuda Sadeh 
275522ae0bSAlex Elder static struct kmem_cache	*ceph_osd_request_cache;
285522ae0bSAlex Elder 
293d14c5d2SYehuda Sadeh static const struct ceph_connection_operations osd_con_ops;
303d14c5d2SYehuda Sadeh 
313d14c5d2SYehuda Sadeh /*
323d14c5d2SYehuda Sadeh  * Implement client access to distributed object storage cluster.
333d14c5d2SYehuda Sadeh  *
343d14c5d2SYehuda Sadeh  * All data objects are stored within a cluster/cloud of OSDs, or
353d14c5d2SYehuda Sadeh  * "object storage devices."  (Note that Ceph OSDs have _nothing_ to
363d14c5d2SYehuda Sadeh  * do with the T10 OSD extensions to SCSI.)  Ceph OSDs are simply
373d14c5d2SYehuda Sadeh  * remote daemons serving up and coordinating consistent and safe
383d14c5d2SYehuda Sadeh  * access to storage.
393d14c5d2SYehuda Sadeh  *
403d14c5d2SYehuda Sadeh  * Cluster membership and the mapping of data objects onto storage devices
413d14c5d2SYehuda Sadeh  * are described by the osd map.
423d14c5d2SYehuda Sadeh  *
433d14c5d2SYehuda Sadeh  * We keep track of pending OSD requests (read, write), resubmit
443d14c5d2SYehuda Sadeh  * requests to different OSDs when the cluster topology/data layout
453d14c5d2SYehuda Sadeh  * change, or retry the affected requests when the communications
463d14c5d2SYehuda Sadeh  * channel with an OSD is reset.
473d14c5d2SYehuda Sadeh  */
483d14c5d2SYehuda Sadeh 
495aea3dcdSIlya Dryomov static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req);
505aea3dcdSIlya Dryomov static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req);
51922dab61SIlya Dryomov static void link_linger(struct ceph_osd *osd,
52922dab61SIlya Dryomov 			struct ceph_osd_linger_request *lreq);
53922dab61SIlya Dryomov static void unlink_linger(struct ceph_osd *osd,
54922dab61SIlya Dryomov 			  struct ceph_osd_linger_request *lreq);
55a02a946dSIlya Dryomov static void clear_backoffs(struct ceph_osd *osd);
565aea3dcdSIlya Dryomov 
575aea3dcdSIlya Dryomov #if 1
585aea3dcdSIlya Dryomov static inline bool rwsem_is_wrlocked(struct rw_semaphore *sem)
595aea3dcdSIlya Dryomov {
605aea3dcdSIlya Dryomov 	bool wrlocked = true;
615aea3dcdSIlya Dryomov 
625aea3dcdSIlya Dryomov 	if (unlikely(down_read_trylock(sem))) {
635aea3dcdSIlya Dryomov 		wrlocked = false;
645aea3dcdSIlya Dryomov 		up_read(sem);
655aea3dcdSIlya Dryomov 	}
665aea3dcdSIlya Dryomov 
675aea3dcdSIlya Dryomov 	return wrlocked;
685aea3dcdSIlya Dryomov }
695aea3dcdSIlya Dryomov static inline void verify_osdc_locked(struct ceph_osd_client *osdc)
705aea3dcdSIlya Dryomov {
715aea3dcdSIlya Dryomov 	WARN_ON(!rwsem_is_locked(&osdc->lock));
725aea3dcdSIlya Dryomov }
735aea3dcdSIlya Dryomov static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc)
745aea3dcdSIlya Dryomov {
755aea3dcdSIlya Dryomov 	WARN_ON(!rwsem_is_wrlocked(&osdc->lock));
765aea3dcdSIlya Dryomov }
775aea3dcdSIlya Dryomov static inline void verify_osd_locked(struct ceph_osd *osd)
785aea3dcdSIlya Dryomov {
795aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
805aea3dcdSIlya Dryomov 
815aea3dcdSIlya Dryomov 	WARN_ON(!(mutex_is_locked(&osd->lock) &&
825aea3dcdSIlya Dryomov 		  rwsem_is_locked(&osdc->lock)) &&
835aea3dcdSIlya Dryomov 		!rwsem_is_wrlocked(&osdc->lock));
845aea3dcdSIlya Dryomov }
85922dab61SIlya Dryomov static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq)
86922dab61SIlya Dryomov {
87922dab61SIlya Dryomov 	WARN_ON(!mutex_is_locked(&lreq->lock));
88922dab61SIlya Dryomov }
895aea3dcdSIlya Dryomov #else
905aea3dcdSIlya Dryomov static inline void verify_osdc_locked(struct ceph_osd_client *osdc) { }
915aea3dcdSIlya Dryomov static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc) { }
925aea3dcdSIlya Dryomov static inline void verify_osd_locked(struct ceph_osd *osd) { }
93922dab61SIlya Dryomov static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq) { }
945aea3dcdSIlya Dryomov #endif
955aea3dcdSIlya Dryomov 
963d14c5d2SYehuda Sadeh /*
973d14c5d2SYehuda Sadeh  * calculate the mapping of a file extent onto an object, and fill out the
983d14c5d2SYehuda Sadeh  * request accordingly.  shorten extent as necessary if it crosses an
993d14c5d2SYehuda Sadeh  * object boundary.
1003d14c5d2SYehuda Sadeh  *
1013d14c5d2SYehuda Sadeh  * fill osd op in request message.
1023d14c5d2SYehuda Sadeh  */
103dbe0fc41SAlex Elder static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
104a19dadfbSAlex Elder 			u64 *objnum, u64 *objoff, u64 *objlen)
1053d14c5d2SYehuda Sadeh {
10660e56f13SAlex Elder 	u64 orig_len = *plen;
107dccbf080SIlya Dryomov 	u32 xlen;
1083d14c5d2SYehuda Sadeh 
10960e56f13SAlex Elder 	/* object extent? */
110dccbf080SIlya Dryomov 	ceph_calc_file_object_mapping(layout, off, orig_len, objnum,
111dccbf080SIlya Dryomov 					  objoff, &xlen);
112dccbf080SIlya Dryomov 	*objlen = xlen;
11375d1c941SAlex Elder 	if (*objlen < orig_len) {
11475d1c941SAlex Elder 		*plen = *objlen;
11560e56f13SAlex Elder 		dout(" skipping last %llu, final file extent %llu~%llu\n",
11660e56f13SAlex Elder 		     orig_len - *plen, off, *plen);
11760e56f13SAlex Elder 	}
11860e56f13SAlex Elder 
11975d1c941SAlex Elder 	dout("calc_layout objnum=%llx %llu~%llu\n", *objnum, *objoff, *objlen);
1203ff5f385SAlex Elder 	return 0;
1213d14c5d2SYehuda Sadeh }
1223d14c5d2SYehuda Sadeh 
123c54d47bfSAlex Elder static void ceph_osd_data_init(struct ceph_osd_data *osd_data)
124c54d47bfSAlex Elder {
125c54d47bfSAlex Elder 	memset(osd_data, 0, sizeof (*osd_data));
126c54d47bfSAlex Elder 	osd_data->type = CEPH_OSD_DATA_TYPE_NONE;
127c54d47bfSAlex Elder }
128c54d47bfSAlex Elder 
129a4ce40a9SAlex Elder static void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
13043bfe5deSAlex Elder 			struct page **pages, u64 length, u32 alignment,
13143bfe5deSAlex Elder 			bool pages_from_pool, bool own_pages)
13243bfe5deSAlex Elder {
13343bfe5deSAlex Elder 	osd_data->type = CEPH_OSD_DATA_TYPE_PAGES;
13443bfe5deSAlex Elder 	osd_data->pages = pages;
13543bfe5deSAlex Elder 	osd_data->length = length;
13643bfe5deSAlex Elder 	osd_data->alignment = alignment;
13743bfe5deSAlex Elder 	osd_data->pages_from_pool = pages_from_pool;
13843bfe5deSAlex Elder 	osd_data->own_pages = own_pages;
13943bfe5deSAlex Elder }
14043bfe5deSAlex Elder 
141a4ce40a9SAlex Elder static void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
14243bfe5deSAlex Elder 			struct ceph_pagelist *pagelist)
14343bfe5deSAlex Elder {
14443bfe5deSAlex Elder 	osd_data->type = CEPH_OSD_DATA_TYPE_PAGELIST;
14543bfe5deSAlex Elder 	osd_data->pagelist = pagelist;
14643bfe5deSAlex Elder }
14743bfe5deSAlex Elder 
14843bfe5deSAlex Elder #ifdef CONFIG_BLOCK
149a4ce40a9SAlex Elder static void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
1505359a17dSIlya Dryomov 				   struct ceph_bio_iter *bio_pos,
1515359a17dSIlya Dryomov 				   u32 bio_length)
15243bfe5deSAlex Elder {
15343bfe5deSAlex Elder 	osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
1545359a17dSIlya Dryomov 	osd_data->bio_pos = *bio_pos;
15543bfe5deSAlex Elder 	osd_data->bio_length = bio_length;
15643bfe5deSAlex Elder }
15743bfe5deSAlex Elder #endif /* CONFIG_BLOCK */
15843bfe5deSAlex Elder 
159b9e281c2SIlya Dryomov static void ceph_osd_data_bvecs_init(struct ceph_osd_data *osd_data,
1600010f705SIlya Dryomov 				     struct ceph_bvec_iter *bvec_pos,
1610010f705SIlya Dryomov 				     u32 num_bvecs)
162b9e281c2SIlya Dryomov {
163b9e281c2SIlya Dryomov 	osd_data->type = CEPH_OSD_DATA_TYPE_BVECS;
164b9e281c2SIlya Dryomov 	osd_data->bvec_pos = *bvec_pos;
1650010f705SIlya Dryomov 	osd_data->num_bvecs = num_bvecs;
166b9e281c2SIlya Dryomov }
167b9e281c2SIlya Dryomov 
168863c7eb5SAlex Elder #define osd_req_op_data(oreq, whch, typ, fld)				\
169863c7eb5SAlex Elder ({									\
1708a703a38SIoana Ciornei 	struct ceph_osd_request *__oreq = (oreq);			\
1718a703a38SIoana Ciornei 	unsigned int __whch = (whch);					\
1728a703a38SIoana Ciornei 	BUG_ON(__whch >= __oreq->r_num_ops);				\
1738a703a38SIoana Ciornei 	&__oreq->r_ops[__whch].typ.fld;					\
174863c7eb5SAlex Elder })
175863c7eb5SAlex Elder 
17649719778SAlex Elder static struct ceph_osd_data *
17749719778SAlex Elder osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which)
17849719778SAlex Elder {
17949719778SAlex Elder 	BUG_ON(which >= osd_req->r_num_ops);
18049719778SAlex Elder 
18149719778SAlex Elder 	return &osd_req->r_ops[which].raw_data_in;
18249719778SAlex Elder }
18349719778SAlex Elder 
184a4ce40a9SAlex Elder struct ceph_osd_data *
185a4ce40a9SAlex Elder osd_req_op_extent_osd_data(struct ceph_osd_request *osd_req,
186406e2c9fSAlex Elder 			unsigned int which)
187a4ce40a9SAlex Elder {
188863c7eb5SAlex Elder 	return osd_req_op_data(osd_req, which, extent, osd_data);
189a4ce40a9SAlex Elder }
190a4ce40a9SAlex Elder EXPORT_SYMBOL(osd_req_op_extent_osd_data);
191a4ce40a9SAlex Elder 
19249719778SAlex Elder void osd_req_op_raw_data_in_pages(struct ceph_osd_request *osd_req,
19349719778SAlex Elder 			unsigned int which, struct page **pages,
19449719778SAlex Elder 			u64 length, u32 alignment,
19549719778SAlex Elder 			bool pages_from_pool, bool own_pages)
19649719778SAlex Elder {
19749719778SAlex Elder 	struct ceph_osd_data *osd_data;
19849719778SAlex Elder 
19949719778SAlex Elder 	osd_data = osd_req_op_raw_data_in(osd_req, which);
20049719778SAlex Elder 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
20149719778SAlex Elder 				pages_from_pool, own_pages);
20249719778SAlex Elder }
20349719778SAlex Elder EXPORT_SYMBOL(osd_req_op_raw_data_in_pages);
20449719778SAlex Elder 
205a4ce40a9SAlex Elder void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *osd_req,
206406e2c9fSAlex Elder 			unsigned int which, struct page **pages,
207406e2c9fSAlex Elder 			u64 length, u32 alignment,
208a4ce40a9SAlex Elder 			bool pages_from_pool, bool own_pages)
209a4ce40a9SAlex Elder {
210a4ce40a9SAlex Elder 	struct ceph_osd_data *osd_data;
211a4ce40a9SAlex Elder 
212863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
213a4ce40a9SAlex Elder 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
214a4ce40a9SAlex Elder 				pages_from_pool, own_pages);
215a4ce40a9SAlex Elder }
216a4ce40a9SAlex Elder EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages);
217a4ce40a9SAlex Elder 
218a4ce40a9SAlex Elder void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *osd_req,
219406e2c9fSAlex Elder 			unsigned int which, struct ceph_pagelist *pagelist)
220a4ce40a9SAlex Elder {
221a4ce40a9SAlex Elder 	struct ceph_osd_data *osd_data;
222a4ce40a9SAlex Elder 
223863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
224a4ce40a9SAlex Elder 	ceph_osd_data_pagelist_init(osd_data, pagelist);
225a4ce40a9SAlex Elder }
226a4ce40a9SAlex Elder EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist);
227a4ce40a9SAlex Elder 
228a4ce40a9SAlex Elder #ifdef CONFIG_BLOCK
229a4ce40a9SAlex Elder void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
2305359a17dSIlya Dryomov 				    unsigned int which,
2315359a17dSIlya Dryomov 				    struct ceph_bio_iter *bio_pos,
2325359a17dSIlya Dryomov 				    u32 bio_length)
233a4ce40a9SAlex Elder {
234a4ce40a9SAlex Elder 	struct ceph_osd_data *osd_data;
235863c7eb5SAlex Elder 
236863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
2375359a17dSIlya Dryomov 	ceph_osd_data_bio_init(osd_data, bio_pos, bio_length);
238a4ce40a9SAlex Elder }
239a4ce40a9SAlex Elder EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio);
240a4ce40a9SAlex Elder #endif /* CONFIG_BLOCK */
241a4ce40a9SAlex Elder 
2420010f705SIlya Dryomov void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
2430010f705SIlya Dryomov 				      unsigned int which,
2440010f705SIlya Dryomov 				      struct bio_vec *bvecs, u32 num_bvecs,
2450010f705SIlya Dryomov 				      u32 bytes)
2460010f705SIlya Dryomov {
2470010f705SIlya Dryomov 	struct ceph_osd_data *osd_data;
2480010f705SIlya Dryomov 	struct ceph_bvec_iter it = {
2490010f705SIlya Dryomov 		.bvecs = bvecs,
2500010f705SIlya Dryomov 		.iter = { .bi_size = bytes },
2510010f705SIlya Dryomov 	};
2520010f705SIlya Dryomov 
2530010f705SIlya Dryomov 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
2540010f705SIlya Dryomov 	ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
2550010f705SIlya Dryomov }
2560010f705SIlya Dryomov EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvecs);
2570010f705SIlya Dryomov 
258b9e281c2SIlya Dryomov void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
259b9e281c2SIlya Dryomov 					 unsigned int which,
260b9e281c2SIlya Dryomov 					 struct ceph_bvec_iter *bvec_pos)
261b9e281c2SIlya Dryomov {
262b9e281c2SIlya Dryomov 	struct ceph_osd_data *osd_data;
263b9e281c2SIlya Dryomov 
264b9e281c2SIlya Dryomov 	osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
2650010f705SIlya Dryomov 	ceph_osd_data_bvecs_init(osd_data, bvec_pos, 0);
266b9e281c2SIlya Dryomov }
267b9e281c2SIlya Dryomov EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvec_pos);
268b9e281c2SIlya Dryomov 
269a4ce40a9SAlex Elder static void osd_req_op_cls_request_info_pagelist(
270a4ce40a9SAlex Elder 			struct ceph_osd_request *osd_req,
271a4ce40a9SAlex Elder 			unsigned int which, struct ceph_pagelist *pagelist)
272a4ce40a9SAlex Elder {
273a4ce40a9SAlex Elder 	struct ceph_osd_data *osd_data;
274a4ce40a9SAlex Elder 
275863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, cls, request_info);
276a4ce40a9SAlex Elder 	ceph_osd_data_pagelist_init(osd_data, pagelist);
277a4ce40a9SAlex Elder }
278a4ce40a9SAlex Elder 
27904017e29SAlex Elder void osd_req_op_cls_request_data_pagelist(
28004017e29SAlex Elder 			struct ceph_osd_request *osd_req,
28104017e29SAlex Elder 			unsigned int which, struct ceph_pagelist *pagelist)
28204017e29SAlex Elder {
28304017e29SAlex Elder 	struct ceph_osd_data *osd_data;
28404017e29SAlex Elder 
285863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
28604017e29SAlex Elder 	ceph_osd_data_pagelist_init(osd_data, pagelist);
287bb873b53SIlya Dryomov 	osd_req->r_ops[which].cls.indata_len += pagelist->length;
288bb873b53SIlya Dryomov 	osd_req->r_ops[which].indata_len += pagelist->length;
28904017e29SAlex Elder }
29004017e29SAlex Elder EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist);
29104017e29SAlex Elder 
2926c57b554SAlex Elder void osd_req_op_cls_request_data_pages(struct ceph_osd_request *osd_req,
2936c57b554SAlex Elder 			unsigned int which, struct page **pages, u64 length,
2946c57b554SAlex Elder 			u32 alignment, bool pages_from_pool, bool own_pages)
2956c57b554SAlex Elder {
2966c57b554SAlex Elder 	struct ceph_osd_data *osd_data;
2976c57b554SAlex Elder 
2986c57b554SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
2996c57b554SAlex Elder 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
3006c57b554SAlex Elder 				pages_from_pool, own_pages);
301bb873b53SIlya Dryomov 	osd_req->r_ops[which].cls.indata_len += length;
302bb873b53SIlya Dryomov 	osd_req->r_ops[which].indata_len += length;
3036c57b554SAlex Elder }
3046c57b554SAlex Elder EXPORT_SYMBOL(osd_req_op_cls_request_data_pages);
3056c57b554SAlex Elder 
306b9e281c2SIlya Dryomov void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
307b9e281c2SIlya Dryomov 				       unsigned int which,
3080010f705SIlya Dryomov 				       struct bio_vec *bvecs, u32 num_bvecs,
3090010f705SIlya Dryomov 				       u32 bytes)
310b9e281c2SIlya Dryomov {
311b9e281c2SIlya Dryomov 	struct ceph_osd_data *osd_data;
312b9e281c2SIlya Dryomov 	struct ceph_bvec_iter it = {
313b9e281c2SIlya Dryomov 		.bvecs = bvecs,
314b9e281c2SIlya Dryomov 		.iter = { .bi_size = bytes },
315b9e281c2SIlya Dryomov 	};
316b9e281c2SIlya Dryomov 
317b9e281c2SIlya Dryomov 	osd_data = osd_req_op_data(osd_req, which, cls, request_data);
3180010f705SIlya Dryomov 	ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
319b9e281c2SIlya Dryomov 	osd_req->r_ops[which].cls.indata_len += bytes;
320b9e281c2SIlya Dryomov 	osd_req->r_ops[which].indata_len += bytes;
321b9e281c2SIlya Dryomov }
322b9e281c2SIlya Dryomov EXPORT_SYMBOL(osd_req_op_cls_request_data_bvecs);
323b9e281c2SIlya Dryomov 
324a4ce40a9SAlex Elder void osd_req_op_cls_response_data_pages(struct ceph_osd_request *osd_req,
325a4ce40a9SAlex Elder 			unsigned int which, struct page **pages, u64 length,
326a4ce40a9SAlex Elder 			u32 alignment, bool pages_from_pool, bool own_pages)
327a4ce40a9SAlex Elder {
328a4ce40a9SAlex Elder 	struct ceph_osd_data *osd_data;
329a4ce40a9SAlex Elder 
330863c7eb5SAlex Elder 	osd_data = osd_req_op_data(osd_req, which, cls, response_data);
331a4ce40a9SAlex Elder 	ceph_osd_data_pages_init(osd_data, pages, length, alignment,
332a4ce40a9SAlex Elder 				pages_from_pool, own_pages);
333a4ce40a9SAlex Elder }
334a4ce40a9SAlex Elder EXPORT_SYMBOL(osd_req_op_cls_response_data_pages);
335a4ce40a9SAlex Elder 
33623c08a9cSAlex Elder static u64 ceph_osd_data_length(struct ceph_osd_data *osd_data)
33723c08a9cSAlex Elder {
33823c08a9cSAlex Elder 	switch (osd_data->type) {
33923c08a9cSAlex Elder 	case CEPH_OSD_DATA_TYPE_NONE:
34023c08a9cSAlex Elder 		return 0;
34123c08a9cSAlex Elder 	case CEPH_OSD_DATA_TYPE_PAGES:
34223c08a9cSAlex Elder 		return osd_data->length;
34323c08a9cSAlex Elder 	case CEPH_OSD_DATA_TYPE_PAGELIST:
34423c08a9cSAlex Elder 		return (u64)osd_data->pagelist->length;
34523c08a9cSAlex Elder #ifdef CONFIG_BLOCK
34623c08a9cSAlex Elder 	case CEPH_OSD_DATA_TYPE_BIO:
34723c08a9cSAlex Elder 		return (u64)osd_data->bio_length;
34823c08a9cSAlex Elder #endif /* CONFIG_BLOCK */
349b9e281c2SIlya Dryomov 	case CEPH_OSD_DATA_TYPE_BVECS:
350b9e281c2SIlya Dryomov 		return osd_data->bvec_pos.iter.bi_size;
35123c08a9cSAlex Elder 	default:
35223c08a9cSAlex Elder 		WARN(true, "unrecognized data type %d\n", (int)osd_data->type);
35323c08a9cSAlex Elder 		return 0;
35423c08a9cSAlex Elder 	}
35523c08a9cSAlex Elder }
35623c08a9cSAlex Elder 
357c54d47bfSAlex Elder static void ceph_osd_data_release(struct ceph_osd_data *osd_data)
358c54d47bfSAlex Elder {
3595476492fSAlex Elder 	if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES && osd_data->own_pages) {
360c54d47bfSAlex Elder 		int num_pages;
361c54d47bfSAlex Elder 
362c54d47bfSAlex Elder 		num_pages = calc_pages_for((u64)osd_data->alignment,
363c54d47bfSAlex Elder 						(u64)osd_data->length);
364c54d47bfSAlex Elder 		ceph_release_page_vector(osd_data->pages, num_pages);
365c54d47bfSAlex Elder 	}
3665476492fSAlex Elder 	ceph_osd_data_init(osd_data);
3675476492fSAlex Elder }
3685476492fSAlex Elder 
3695476492fSAlex Elder static void osd_req_op_data_release(struct ceph_osd_request *osd_req,
3705476492fSAlex Elder 			unsigned int which)
3715476492fSAlex Elder {
3725476492fSAlex Elder 	struct ceph_osd_req_op *op;
3735476492fSAlex Elder 
3745476492fSAlex Elder 	BUG_ON(which >= osd_req->r_num_ops);
3755476492fSAlex Elder 	op = &osd_req->r_ops[which];
3765476492fSAlex Elder 
3775476492fSAlex Elder 	switch (op->op) {
3785476492fSAlex Elder 	case CEPH_OSD_OP_READ:
3795476492fSAlex Elder 	case CEPH_OSD_OP_WRITE:
380e30b7577SIlya Dryomov 	case CEPH_OSD_OP_WRITEFULL:
3815476492fSAlex Elder 		ceph_osd_data_release(&op->extent.osd_data);
3825476492fSAlex Elder 		break;
3835476492fSAlex Elder 	case CEPH_OSD_OP_CALL:
3845476492fSAlex Elder 		ceph_osd_data_release(&op->cls.request_info);
38504017e29SAlex Elder 		ceph_osd_data_release(&op->cls.request_data);
3865476492fSAlex Elder 		ceph_osd_data_release(&op->cls.response_data);
3875476492fSAlex Elder 		break;
388d74b50beSYan, Zheng 	case CEPH_OSD_OP_SETXATTR:
389d74b50beSYan, Zheng 	case CEPH_OSD_OP_CMPXATTR:
390d74b50beSYan, Zheng 		ceph_osd_data_release(&op->xattr.osd_data);
391d74b50beSYan, Zheng 		break;
39266ba609fSYan, Zheng 	case CEPH_OSD_OP_STAT:
39366ba609fSYan, Zheng 		ceph_osd_data_release(&op->raw_data_in);
39466ba609fSYan, Zheng 		break;
395922dab61SIlya Dryomov 	case CEPH_OSD_OP_NOTIFY_ACK:
396922dab61SIlya Dryomov 		ceph_osd_data_release(&op->notify_ack.request_data);
397922dab61SIlya Dryomov 		break;
39819079203SIlya Dryomov 	case CEPH_OSD_OP_NOTIFY:
39919079203SIlya Dryomov 		ceph_osd_data_release(&op->notify.request_data);
40019079203SIlya Dryomov 		ceph_osd_data_release(&op->notify.response_data);
40119079203SIlya Dryomov 		break;
402a4ed38d7SDouglas Fuller 	case CEPH_OSD_OP_LIST_WATCHERS:
403a4ed38d7SDouglas Fuller 		ceph_osd_data_release(&op->list_watchers.response_data);
404a4ed38d7SDouglas Fuller 		break;
4055476492fSAlex Elder 	default:
4065476492fSAlex Elder 		break;
4075476492fSAlex Elder 	}
408c54d47bfSAlex Elder }
409c54d47bfSAlex Elder 
4103d14c5d2SYehuda Sadeh /*
41163244fa1SIlya Dryomov  * Assumes @t is zero-initialized.
41263244fa1SIlya Dryomov  */
41363244fa1SIlya Dryomov static void target_init(struct ceph_osd_request_target *t)
41463244fa1SIlya Dryomov {
41563244fa1SIlya Dryomov 	ceph_oid_init(&t->base_oid);
41663244fa1SIlya Dryomov 	ceph_oloc_init(&t->base_oloc);
41763244fa1SIlya Dryomov 	ceph_oid_init(&t->target_oid);
41863244fa1SIlya Dryomov 	ceph_oloc_init(&t->target_oloc);
41963244fa1SIlya Dryomov 
42063244fa1SIlya Dryomov 	ceph_osds_init(&t->acting);
42163244fa1SIlya Dryomov 	ceph_osds_init(&t->up);
42263244fa1SIlya Dryomov 	t->size = -1;
42363244fa1SIlya Dryomov 	t->min_size = -1;
42463244fa1SIlya Dryomov 
42563244fa1SIlya Dryomov 	t->osd = CEPH_HOMELESS_OSD;
42663244fa1SIlya Dryomov }
42763244fa1SIlya Dryomov 
428922dab61SIlya Dryomov static void target_copy(struct ceph_osd_request_target *dest,
429922dab61SIlya Dryomov 			const struct ceph_osd_request_target *src)
430922dab61SIlya Dryomov {
431922dab61SIlya Dryomov 	ceph_oid_copy(&dest->base_oid, &src->base_oid);
432922dab61SIlya Dryomov 	ceph_oloc_copy(&dest->base_oloc, &src->base_oloc);
433922dab61SIlya Dryomov 	ceph_oid_copy(&dest->target_oid, &src->target_oid);
434922dab61SIlya Dryomov 	ceph_oloc_copy(&dest->target_oloc, &src->target_oloc);
435922dab61SIlya Dryomov 
436922dab61SIlya Dryomov 	dest->pgid = src->pgid; /* struct */
437dc98ff72SIlya Dryomov 	dest->spgid = src->spgid; /* struct */
438922dab61SIlya Dryomov 	dest->pg_num = src->pg_num;
439922dab61SIlya Dryomov 	dest->pg_num_mask = src->pg_num_mask;
440922dab61SIlya Dryomov 	ceph_osds_copy(&dest->acting, &src->acting);
441922dab61SIlya Dryomov 	ceph_osds_copy(&dest->up, &src->up);
442922dab61SIlya Dryomov 	dest->size = src->size;
443922dab61SIlya Dryomov 	dest->min_size = src->min_size;
444922dab61SIlya Dryomov 	dest->sort_bitwise = src->sort_bitwise;
445922dab61SIlya Dryomov 
446922dab61SIlya Dryomov 	dest->flags = src->flags;
447922dab61SIlya Dryomov 	dest->paused = src->paused;
448922dab61SIlya Dryomov 
44904c7d789SIlya Dryomov 	dest->epoch = src->epoch;
450dc93e0e2SIlya Dryomov 	dest->last_force_resend = src->last_force_resend;
451dc93e0e2SIlya Dryomov 
452922dab61SIlya Dryomov 	dest->osd = src->osd;
453922dab61SIlya Dryomov }
454922dab61SIlya Dryomov 
45563244fa1SIlya Dryomov static void target_destroy(struct ceph_osd_request_target *t)
45663244fa1SIlya Dryomov {
45763244fa1SIlya Dryomov 	ceph_oid_destroy(&t->base_oid);
45830c156d9SYan, Zheng 	ceph_oloc_destroy(&t->base_oloc);
45963244fa1SIlya Dryomov 	ceph_oid_destroy(&t->target_oid);
46030c156d9SYan, Zheng 	ceph_oloc_destroy(&t->target_oloc);
46163244fa1SIlya Dryomov }
46263244fa1SIlya Dryomov 
46363244fa1SIlya Dryomov /*
4643d14c5d2SYehuda Sadeh  * requests
4653d14c5d2SYehuda Sadeh  */
4663540bfdbSIlya Dryomov static void request_release_checks(struct ceph_osd_request *req)
4673540bfdbSIlya Dryomov {
4683540bfdbSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&req->r_node));
4694609245eSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&req->r_mc_node));
4703540bfdbSIlya Dryomov 	WARN_ON(!list_empty(&req->r_unsafe_item));
4713540bfdbSIlya Dryomov 	WARN_ON(req->r_osd);
4723540bfdbSIlya Dryomov }
4733540bfdbSIlya Dryomov 
4749e94af20SIlya Dryomov static void ceph_osdc_release_request(struct kref *kref)
4753d14c5d2SYehuda Sadeh {
4769e94af20SIlya Dryomov 	struct ceph_osd_request *req = container_of(kref,
4779e94af20SIlya Dryomov 					    struct ceph_osd_request, r_kref);
4785476492fSAlex Elder 	unsigned int which;
4793d14c5d2SYehuda Sadeh 
4809e94af20SIlya Dryomov 	dout("%s %p (r_request %p r_reply %p)\n", __func__, req,
4819e94af20SIlya Dryomov 	     req->r_request, req->r_reply);
4823540bfdbSIlya Dryomov 	request_release_checks(req);
4839e94af20SIlya Dryomov 
4843d14c5d2SYehuda Sadeh 	if (req->r_request)
4853d14c5d2SYehuda Sadeh 		ceph_msg_put(req->r_request);
4865aea3dcdSIlya Dryomov 	if (req->r_reply)
487ab8cb34aSAlex Elder 		ceph_msg_put(req->r_reply);
4880fff87ecSAlex Elder 
4895476492fSAlex Elder 	for (which = 0; which < req->r_num_ops; which++)
4905476492fSAlex Elder 		osd_req_op_data_release(req, which);
4910fff87ecSAlex Elder 
492a66dd383SIlya Dryomov 	target_destroy(&req->r_t);
4933d14c5d2SYehuda Sadeh 	ceph_put_snap_context(req->r_snapc);
494d30291b9SIlya Dryomov 
4953d14c5d2SYehuda Sadeh 	if (req->r_mempool)
4963d14c5d2SYehuda Sadeh 		mempool_free(req, req->r_osdc->req_mempool);
4973f1af42aSIlya Dryomov 	else if (req->r_num_ops <= CEPH_OSD_SLAB_OPS)
4985522ae0bSAlex Elder 		kmem_cache_free(ceph_osd_request_cache, req);
4993f1af42aSIlya Dryomov 	else
5003f1af42aSIlya Dryomov 		kfree(req);
5013d14c5d2SYehuda Sadeh }
5029e94af20SIlya Dryomov 
5039e94af20SIlya Dryomov void ceph_osdc_get_request(struct ceph_osd_request *req)
5049e94af20SIlya Dryomov {
5059e94af20SIlya Dryomov 	dout("%s %p (was %d)\n", __func__, req,
5062c935bc5SPeter Zijlstra 	     kref_read(&req->r_kref));
5079e94af20SIlya Dryomov 	kref_get(&req->r_kref);
5089e94af20SIlya Dryomov }
5099e94af20SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_get_request);
5109e94af20SIlya Dryomov 
5119e94af20SIlya Dryomov void ceph_osdc_put_request(struct ceph_osd_request *req)
5129e94af20SIlya Dryomov {
5133ed97d63SIlya Dryomov 	if (req) {
5149e94af20SIlya Dryomov 		dout("%s %p (was %d)\n", __func__, req,
5152c935bc5SPeter Zijlstra 		     kref_read(&req->r_kref));
5169e94af20SIlya Dryomov 		kref_put(&req->r_kref, ceph_osdc_release_request);
5179e94af20SIlya Dryomov 	}
5183ed97d63SIlya Dryomov }
5199e94af20SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_put_request);
5203d14c5d2SYehuda Sadeh 
5213540bfdbSIlya Dryomov static void request_init(struct ceph_osd_request *req)
5223540bfdbSIlya Dryomov {
5233540bfdbSIlya Dryomov 	/* req only, each op is zeroed in _osd_req_op_init() */
5243540bfdbSIlya Dryomov 	memset(req, 0, sizeof(*req));
5253540bfdbSIlya Dryomov 
5263540bfdbSIlya Dryomov 	kref_init(&req->r_kref);
5273540bfdbSIlya Dryomov 	init_completion(&req->r_completion);
5283540bfdbSIlya Dryomov 	RB_CLEAR_NODE(&req->r_node);
5294609245eSIlya Dryomov 	RB_CLEAR_NODE(&req->r_mc_node);
5303540bfdbSIlya Dryomov 	INIT_LIST_HEAD(&req->r_unsafe_item);
5313540bfdbSIlya Dryomov 
5323540bfdbSIlya Dryomov 	target_init(&req->r_t);
5333540bfdbSIlya Dryomov }
5343540bfdbSIlya Dryomov 
535922dab61SIlya Dryomov /*
536922dab61SIlya Dryomov  * This is ugly, but it allows us to reuse linger registration and ping
537922dab61SIlya Dryomov  * requests, keeping the structure of the code around send_linger{_ping}()
538922dab61SIlya Dryomov  * reasonable.  Setting up a min_nr=2 mempool for each linger request
539922dab61SIlya Dryomov  * and dealing with copying ops (this blasts req only, watch op remains
540922dab61SIlya Dryomov  * intact) isn't any better.
541922dab61SIlya Dryomov  */
542922dab61SIlya Dryomov static void request_reinit(struct ceph_osd_request *req)
543922dab61SIlya Dryomov {
544922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
545922dab61SIlya Dryomov 	bool mempool = req->r_mempool;
546922dab61SIlya Dryomov 	unsigned int num_ops = req->r_num_ops;
547922dab61SIlya Dryomov 	u64 snapid = req->r_snapid;
548922dab61SIlya Dryomov 	struct ceph_snap_context *snapc = req->r_snapc;
549922dab61SIlya Dryomov 	bool linger = req->r_linger;
550922dab61SIlya Dryomov 	struct ceph_msg *request_msg = req->r_request;
551922dab61SIlya Dryomov 	struct ceph_msg *reply_msg = req->r_reply;
552922dab61SIlya Dryomov 
553922dab61SIlya Dryomov 	dout("%s req %p\n", __func__, req);
5542c935bc5SPeter Zijlstra 	WARN_ON(kref_read(&req->r_kref) != 1);
555922dab61SIlya Dryomov 	request_release_checks(req);
556922dab61SIlya Dryomov 
5572c935bc5SPeter Zijlstra 	WARN_ON(kref_read(&request_msg->kref) != 1);
5582c935bc5SPeter Zijlstra 	WARN_ON(kref_read(&reply_msg->kref) != 1);
559922dab61SIlya Dryomov 	target_destroy(&req->r_t);
560922dab61SIlya Dryomov 
561922dab61SIlya Dryomov 	request_init(req);
562922dab61SIlya Dryomov 	req->r_osdc = osdc;
563922dab61SIlya Dryomov 	req->r_mempool = mempool;
564922dab61SIlya Dryomov 	req->r_num_ops = num_ops;
565922dab61SIlya Dryomov 	req->r_snapid = snapid;
566922dab61SIlya Dryomov 	req->r_snapc = snapc;
567922dab61SIlya Dryomov 	req->r_linger = linger;
568922dab61SIlya Dryomov 	req->r_request = request_msg;
569922dab61SIlya Dryomov 	req->r_reply = reply_msg;
570922dab61SIlya Dryomov }
571922dab61SIlya Dryomov 
5723d14c5d2SYehuda Sadeh struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
5733d14c5d2SYehuda Sadeh 					       struct ceph_snap_context *snapc,
5741b83bef2SSage Weil 					       unsigned int num_ops,
5753d14c5d2SYehuda Sadeh 					       bool use_mempool,
57654a54007SAlex Elder 					       gfp_t gfp_flags)
5773d14c5d2SYehuda Sadeh {
5783d14c5d2SYehuda Sadeh 	struct ceph_osd_request *req;
5793d14c5d2SYehuda Sadeh 
5803d14c5d2SYehuda Sadeh 	if (use_mempool) {
5813f1af42aSIlya Dryomov 		BUG_ON(num_ops > CEPH_OSD_SLAB_OPS);
5823d14c5d2SYehuda Sadeh 		req = mempool_alloc(osdc->req_mempool, gfp_flags);
5833f1af42aSIlya Dryomov 	} else if (num_ops <= CEPH_OSD_SLAB_OPS) {
5843f1af42aSIlya Dryomov 		req = kmem_cache_alloc(ceph_osd_request_cache, gfp_flags);
5853d14c5d2SYehuda Sadeh 	} else {
5863f1af42aSIlya Dryomov 		BUG_ON(num_ops > CEPH_OSD_MAX_OPS);
587acafe7e3SKees Cook 		req = kmalloc(struct_size(req, r_ops, num_ops), gfp_flags);
5883d14c5d2SYehuda Sadeh 	}
5893f1af42aSIlya Dryomov 	if (unlikely(!req))
5903d14c5d2SYehuda Sadeh 		return NULL;
5913d14c5d2SYehuda Sadeh 
5923540bfdbSIlya Dryomov 	request_init(req);
5933d14c5d2SYehuda Sadeh 	req->r_osdc = osdc;
5943d14c5d2SYehuda Sadeh 	req->r_mempool = use_mempool;
59579528734SAlex Elder 	req->r_num_ops = num_ops;
59684127282SIlya Dryomov 	req->r_snapid = CEPH_NOSNAP;
59784127282SIlya Dryomov 	req->r_snapc = ceph_get_snap_context(snapc);
5983d14c5d2SYehuda Sadeh 
59913d1ad16SIlya Dryomov 	dout("%s req %p\n", __func__, req);
60013d1ad16SIlya Dryomov 	return req;
6013f1af42aSIlya Dryomov }
60213d1ad16SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_alloc_request);
6033f1af42aSIlya Dryomov 
6042e59ffd1SIlya Dryomov static int ceph_oloc_encoding_size(const struct ceph_object_locator *oloc)
60530c156d9SYan, Zheng {
60630c156d9SYan, Zheng 	return 8 + 4 + 4 + 4 + (oloc->pool_ns ? oloc->pool_ns->len : 0);
60730c156d9SYan, Zheng }
60830c156d9SYan, Zheng 
60913d1ad16SIlya Dryomov int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp)
61013d1ad16SIlya Dryomov {
61113d1ad16SIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
61213d1ad16SIlya Dryomov 	struct ceph_msg *msg;
61313d1ad16SIlya Dryomov 	int msg_size;
6143d14c5d2SYehuda Sadeh 
615d30291b9SIlya Dryomov 	WARN_ON(ceph_oid_empty(&req->r_base_oid));
61630c156d9SYan, Zheng 	WARN_ON(ceph_oloc_empty(&req->r_base_oloc));
617d30291b9SIlya Dryomov 
61813d1ad16SIlya Dryomov 	/* create request message */
6198cb441c0SIlya Dryomov 	msg_size = CEPH_ENCODING_START_BLK_LEN +
6208cb441c0SIlya Dryomov 			CEPH_PGID_ENCODING_LEN + 1; /* spgid */
6218cb441c0SIlya Dryomov 	msg_size += 4 + 4 + 4; /* hash, osdmap_epoch, flags */
6228cb441c0SIlya Dryomov 	msg_size += CEPH_ENCODING_START_BLK_LEN +
6238cb441c0SIlya Dryomov 			sizeof(struct ceph_osd_reqid); /* reqid */
6248cb441c0SIlya Dryomov 	msg_size += sizeof(struct ceph_blkin_trace_info); /* trace */
6258cb441c0SIlya Dryomov 	msg_size += 4 + sizeof(struct ceph_timespec); /* client_inc, mtime */
62630c156d9SYan, Zheng 	msg_size += CEPH_ENCODING_START_BLK_LEN +
62730c156d9SYan, Zheng 			ceph_oloc_encoding_size(&req->r_base_oloc); /* oloc */
62813d1ad16SIlya Dryomov 	msg_size += 4 + req->r_base_oid.name_len; /* oid */
62913d1ad16SIlya Dryomov 	msg_size += 2 + req->r_num_ops * sizeof(struct ceph_osd_op);
630ae458f5aSIlya Dryomov 	msg_size += 8; /* snapid */
631ae458f5aSIlya Dryomov 	msg_size += 8; /* snap_seq */
63213d1ad16SIlya Dryomov 	msg_size += 4 + 8 * (req->r_snapc ? req->r_snapc->num_snaps : 0);
6338cb441c0SIlya Dryomov 	msg_size += 4 + 8; /* retry_attempt, features */
634ae458f5aSIlya Dryomov 
63513d1ad16SIlya Dryomov 	if (req->r_mempool)
6363d14c5d2SYehuda Sadeh 		msg = ceph_msgpool_get(&osdc->msgpool_op, 0);
6373d14c5d2SYehuda Sadeh 	else
63813d1ad16SIlya Dryomov 		msg = ceph_msg_new(CEPH_MSG_OSD_OP, msg_size, gfp, true);
63913d1ad16SIlya Dryomov 	if (!msg)
64013d1ad16SIlya Dryomov 		return -ENOMEM;
6413d14c5d2SYehuda Sadeh 
6423d14c5d2SYehuda Sadeh 	memset(msg->front.iov_base, 0, msg->front.iov_len);
6433d14c5d2SYehuda Sadeh 	req->r_request = msg;
6443d14c5d2SYehuda Sadeh 
64513d1ad16SIlya Dryomov 	/* create reply message */
64613d1ad16SIlya Dryomov 	msg_size = OSD_OPREPLY_FRONT_LEN;
647711da55dSIlya Dryomov 	msg_size += req->r_base_oid.name_len;
648711da55dSIlya Dryomov 	msg_size += req->r_num_ops * sizeof(struct ceph_osd_op);
64913d1ad16SIlya Dryomov 
65013d1ad16SIlya Dryomov 	if (req->r_mempool)
65113d1ad16SIlya Dryomov 		msg = ceph_msgpool_get(&osdc->msgpool_op_reply, 0);
65213d1ad16SIlya Dryomov 	else
65313d1ad16SIlya Dryomov 		msg = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, msg_size, gfp, true);
65413d1ad16SIlya Dryomov 	if (!msg)
65513d1ad16SIlya Dryomov 		return -ENOMEM;
65613d1ad16SIlya Dryomov 
65713d1ad16SIlya Dryomov 	req->r_reply = msg;
65813d1ad16SIlya Dryomov 
65913d1ad16SIlya Dryomov 	return 0;
66013d1ad16SIlya Dryomov }
66113d1ad16SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_alloc_messages);
6623d14c5d2SYehuda Sadeh 
663a8dd0a37SAlex Elder static bool osd_req_opcode_valid(u16 opcode)
664a8dd0a37SAlex Elder {
665a8dd0a37SAlex Elder 	switch (opcode) {
66670b5bfa3SIlya Dryomov #define GENERATE_CASE(op, opcode, str)	case CEPH_OSD_OP_##op: return true;
66770b5bfa3SIlya Dryomov __CEPH_FORALL_OSD_OPS(GENERATE_CASE)
66870b5bfa3SIlya Dryomov #undef GENERATE_CASE
669a8dd0a37SAlex Elder 	default:
670a8dd0a37SAlex Elder 		return false;
671a8dd0a37SAlex Elder 	}
672a8dd0a37SAlex Elder }
673a8dd0a37SAlex Elder 
67433803f33SAlex Elder /*
67533803f33SAlex Elder  * This is an osd op init function for opcodes that have no data or
67633803f33SAlex Elder  * other information associated with them.  It also serves as a
67733803f33SAlex Elder  * common init routine for all the other init functions, below.
67833803f33SAlex Elder  */
679c99d2d4aSAlex Elder static struct ceph_osd_req_op *
68049719778SAlex Elder _osd_req_op_init(struct ceph_osd_request *osd_req, unsigned int which,
681144cba14SYan, Zheng 		 u16 opcode, u32 flags)
68233803f33SAlex Elder {
683c99d2d4aSAlex Elder 	struct ceph_osd_req_op *op;
684c99d2d4aSAlex Elder 
685c99d2d4aSAlex Elder 	BUG_ON(which >= osd_req->r_num_ops);
68633803f33SAlex Elder 	BUG_ON(!osd_req_opcode_valid(opcode));
68733803f33SAlex Elder 
688c99d2d4aSAlex Elder 	op = &osd_req->r_ops[which];
68933803f33SAlex Elder 	memset(op, 0, sizeof (*op));
69033803f33SAlex Elder 	op->op = opcode;
691144cba14SYan, Zheng 	op->flags = flags;
692c99d2d4aSAlex Elder 
693c99d2d4aSAlex Elder 	return op;
69433803f33SAlex Elder }
69533803f33SAlex Elder 
69649719778SAlex Elder void osd_req_op_init(struct ceph_osd_request *osd_req,
697144cba14SYan, Zheng 		     unsigned int which, u16 opcode, u32 flags)
69849719778SAlex Elder {
699144cba14SYan, Zheng 	(void)_osd_req_op_init(osd_req, which, opcode, flags);
70049719778SAlex Elder }
70149719778SAlex Elder EXPORT_SYMBOL(osd_req_op_init);
70249719778SAlex Elder 
703c99d2d4aSAlex Elder void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
704c99d2d4aSAlex Elder 				unsigned int which, u16 opcode,
70533803f33SAlex Elder 				u64 offset, u64 length,
70633803f33SAlex Elder 				u64 truncate_size, u32 truncate_seq)
70733803f33SAlex Elder {
708144cba14SYan, Zheng 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
709144cba14SYan, Zheng 						      opcode, 0);
71033803f33SAlex Elder 	size_t payload_len = 0;
71133803f33SAlex Elder 
712ad7a60deSLi Wang 	BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
713e30b7577SIlya Dryomov 	       opcode != CEPH_OSD_OP_WRITEFULL && opcode != CEPH_OSD_OP_ZERO &&
714e30b7577SIlya Dryomov 	       opcode != CEPH_OSD_OP_TRUNCATE);
71533803f33SAlex Elder 
71633803f33SAlex Elder 	op->extent.offset = offset;
71733803f33SAlex Elder 	op->extent.length = length;
71833803f33SAlex Elder 	op->extent.truncate_size = truncate_size;
71933803f33SAlex Elder 	op->extent.truncate_seq = truncate_seq;
720e30b7577SIlya Dryomov 	if (opcode == CEPH_OSD_OP_WRITE || opcode == CEPH_OSD_OP_WRITEFULL)
72133803f33SAlex Elder 		payload_len += length;
72233803f33SAlex Elder 
723de2aa102SIlya Dryomov 	op->indata_len = payload_len;
72433803f33SAlex Elder }
72533803f33SAlex Elder EXPORT_SYMBOL(osd_req_op_extent_init);
72633803f33SAlex Elder 
727c99d2d4aSAlex Elder void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
728c99d2d4aSAlex Elder 				unsigned int which, u64 length)
729e5975c7cSAlex Elder {
730c99d2d4aSAlex Elder 	struct ceph_osd_req_op *op;
731c99d2d4aSAlex Elder 	u64 previous;
732c99d2d4aSAlex Elder 
733c99d2d4aSAlex Elder 	BUG_ON(which >= osd_req->r_num_ops);
734c99d2d4aSAlex Elder 	op = &osd_req->r_ops[which];
735c99d2d4aSAlex Elder 	previous = op->extent.length;
736e5975c7cSAlex Elder 
737e5975c7cSAlex Elder 	if (length == previous)
738e5975c7cSAlex Elder 		return;		/* Nothing to do */
739e5975c7cSAlex Elder 	BUG_ON(length > previous);
740e5975c7cSAlex Elder 
741e5975c7cSAlex Elder 	op->extent.length = length;
742d641df81SYan, Zheng 	if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
743de2aa102SIlya Dryomov 		op->indata_len -= previous - length;
744e5975c7cSAlex Elder }
745e5975c7cSAlex Elder EXPORT_SYMBOL(osd_req_op_extent_update);
746e5975c7cSAlex Elder 
7472c63f49aSYan, Zheng void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
7482c63f49aSYan, Zheng 				unsigned int which, u64 offset_inc)
7492c63f49aSYan, Zheng {
7502c63f49aSYan, Zheng 	struct ceph_osd_req_op *op, *prev_op;
7512c63f49aSYan, Zheng 
7522c63f49aSYan, Zheng 	BUG_ON(which + 1 >= osd_req->r_num_ops);
7532c63f49aSYan, Zheng 
7542c63f49aSYan, Zheng 	prev_op = &osd_req->r_ops[which];
7552c63f49aSYan, Zheng 	op = _osd_req_op_init(osd_req, which + 1, prev_op->op, prev_op->flags);
7562c63f49aSYan, Zheng 	/* dup previous one */
7572c63f49aSYan, Zheng 	op->indata_len = prev_op->indata_len;
7582c63f49aSYan, Zheng 	op->outdata_len = prev_op->outdata_len;
7592c63f49aSYan, Zheng 	op->extent = prev_op->extent;
7602c63f49aSYan, Zheng 	/* adjust offset */
7612c63f49aSYan, Zheng 	op->extent.offset += offset_inc;
7622c63f49aSYan, Zheng 	op->extent.length -= offset_inc;
7632c63f49aSYan, Zheng 
7642c63f49aSYan, Zheng 	if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
7652c63f49aSYan, Zheng 		op->indata_len -= offset_inc;
7662c63f49aSYan, Zheng }
7672c63f49aSYan, Zheng EXPORT_SYMBOL(osd_req_op_extent_dup_last);
7682c63f49aSYan, Zheng 
769fe943d50SChengguang Xu int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
77004017e29SAlex Elder 			u16 opcode, const char *class, const char *method)
77133803f33SAlex Elder {
772144cba14SYan, Zheng 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
773144cba14SYan, Zheng 						      opcode, 0);
7745f562df5SAlex Elder 	struct ceph_pagelist *pagelist;
77533803f33SAlex Elder 	size_t payload_len = 0;
77633803f33SAlex Elder 	size_t size;
77733803f33SAlex Elder 
77833803f33SAlex Elder 	BUG_ON(opcode != CEPH_OSD_OP_CALL);
77933803f33SAlex Elder 
7805f562df5SAlex Elder 	pagelist = kmalloc(sizeof (*pagelist), GFP_NOFS);
781fe943d50SChengguang Xu 	if (!pagelist)
782fe943d50SChengguang Xu 		return -ENOMEM;
783fe943d50SChengguang Xu 
7845f562df5SAlex Elder 	ceph_pagelist_init(pagelist);
7855f562df5SAlex Elder 
78633803f33SAlex Elder 	op->cls.class_name = class;
78733803f33SAlex Elder 	size = strlen(class);
78833803f33SAlex Elder 	BUG_ON(size > (size_t) U8_MAX);
78933803f33SAlex Elder 	op->cls.class_len = size;
7905f562df5SAlex Elder 	ceph_pagelist_append(pagelist, class, size);
79133803f33SAlex Elder 	payload_len += size;
79233803f33SAlex Elder 
79333803f33SAlex Elder 	op->cls.method_name = method;
79433803f33SAlex Elder 	size = strlen(method);
79533803f33SAlex Elder 	BUG_ON(size > (size_t) U8_MAX);
79633803f33SAlex Elder 	op->cls.method_len = size;
7975f562df5SAlex Elder 	ceph_pagelist_append(pagelist, method, size);
79833803f33SAlex Elder 	payload_len += size;
79933803f33SAlex Elder 
800a4ce40a9SAlex Elder 	osd_req_op_cls_request_info_pagelist(osd_req, which, pagelist);
8015f562df5SAlex Elder 
802de2aa102SIlya Dryomov 	op->indata_len = payload_len;
803fe943d50SChengguang Xu 	return 0;
80433803f33SAlex Elder }
80533803f33SAlex Elder EXPORT_SYMBOL(osd_req_op_cls_init);
8068c042b0dSAlex Elder 
807d74b50beSYan, Zheng int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
808d74b50beSYan, Zheng 			  u16 opcode, const char *name, const void *value,
809d74b50beSYan, Zheng 			  size_t size, u8 cmp_op, u8 cmp_mode)
810d74b50beSYan, Zheng {
811144cba14SYan, Zheng 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
812144cba14SYan, Zheng 						      opcode, 0);
813d74b50beSYan, Zheng 	struct ceph_pagelist *pagelist;
814d74b50beSYan, Zheng 	size_t payload_len;
815d74b50beSYan, Zheng 
816d74b50beSYan, Zheng 	BUG_ON(opcode != CEPH_OSD_OP_SETXATTR && opcode != CEPH_OSD_OP_CMPXATTR);
817d74b50beSYan, Zheng 
818d74b50beSYan, Zheng 	pagelist = kmalloc(sizeof(*pagelist), GFP_NOFS);
819d74b50beSYan, Zheng 	if (!pagelist)
820d74b50beSYan, Zheng 		return -ENOMEM;
821d74b50beSYan, Zheng 
822d74b50beSYan, Zheng 	ceph_pagelist_init(pagelist);
823d74b50beSYan, Zheng 
824d74b50beSYan, Zheng 	payload_len = strlen(name);
825d74b50beSYan, Zheng 	op->xattr.name_len = payload_len;
826d74b50beSYan, Zheng 	ceph_pagelist_append(pagelist, name, payload_len);
827d74b50beSYan, Zheng 
828d74b50beSYan, Zheng 	op->xattr.value_len = size;
829d74b50beSYan, Zheng 	ceph_pagelist_append(pagelist, value, size);
830d74b50beSYan, Zheng 	payload_len += size;
831d74b50beSYan, Zheng 
832d74b50beSYan, Zheng 	op->xattr.cmp_op = cmp_op;
833d74b50beSYan, Zheng 	op->xattr.cmp_mode = cmp_mode;
834d74b50beSYan, Zheng 
835d74b50beSYan, Zheng 	ceph_osd_data_pagelist_init(&op->xattr.osd_data, pagelist);
836de2aa102SIlya Dryomov 	op->indata_len = payload_len;
837d74b50beSYan, Zheng 	return 0;
838d74b50beSYan, Zheng }
839d74b50beSYan, Zheng EXPORT_SYMBOL(osd_req_op_xattr_init);
840d74b50beSYan, Zheng 
841922dab61SIlya Dryomov /*
842922dab61SIlya Dryomov  * @watch_opcode: CEPH_OSD_WATCH_OP_*
843922dab61SIlya Dryomov  */
844922dab61SIlya Dryomov static void osd_req_op_watch_init(struct ceph_osd_request *req, int which,
845922dab61SIlya Dryomov 				  u64 cookie, u8 watch_opcode)
84633803f33SAlex Elder {
847922dab61SIlya Dryomov 	struct ceph_osd_req_op *op;
84833803f33SAlex Elder 
849922dab61SIlya Dryomov 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_WATCH, 0);
85033803f33SAlex Elder 	op->watch.cookie = cookie;
851922dab61SIlya Dryomov 	op->watch.op = watch_opcode;
852922dab61SIlya Dryomov 	op->watch.gen = 0;
85333803f33SAlex Elder }
85433803f33SAlex Elder 
855c647b8a8SIlya Dryomov void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
856c647b8a8SIlya Dryomov 				unsigned int which,
857c647b8a8SIlya Dryomov 				u64 expected_object_size,
858c647b8a8SIlya Dryomov 				u64 expected_write_size)
859c647b8a8SIlya Dryomov {
860c647b8a8SIlya Dryomov 	struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
861144cba14SYan, Zheng 						      CEPH_OSD_OP_SETALLOCHINT,
862144cba14SYan, Zheng 						      0);
863c647b8a8SIlya Dryomov 
864c647b8a8SIlya Dryomov 	op->alloc_hint.expected_object_size = expected_object_size;
865c647b8a8SIlya Dryomov 	op->alloc_hint.expected_write_size = expected_write_size;
866c647b8a8SIlya Dryomov 
867c647b8a8SIlya Dryomov 	/*
868c647b8a8SIlya Dryomov 	 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
869c647b8a8SIlya Dryomov 	 * not worth a feature bit.  Set FAILOK per-op flag to make
870c647b8a8SIlya Dryomov 	 * sure older osds don't trip over an unsupported opcode.
871c647b8a8SIlya Dryomov 	 */
872c647b8a8SIlya Dryomov 	op->flags |= CEPH_OSD_OP_FLAG_FAILOK;
873c647b8a8SIlya Dryomov }
874c647b8a8SIlya Dryomov EXPORT_SYMBOL(osd_req_op_alloc_hint_init);
875c647b8a8SIlya Dryomov 
87690af3602SAlex Elder static void ceph_osdc_msg_data_add(struct ceph_msg *msg,
877ec9123c5SAlex Elder 				struct ceph_osd_data *osd_data)
878ec9123c5SAlex Elder {
879ec9123c5SAlex Elder 	u64 length = ceph_osd_data_length(osd_data);
880ec9123c5SAlex Elder 
881ec9123c5SAlex Elder 	if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
882ec9123c5SAlex Elder 		BUG_ON(length > (u64) SIZE_MAX);
883ec9123c5SAlex Elder 		if (length)
88490af3602SAlex Elder 			ceph_msg_data_add_pages(msg, osd_data->pages,
885ec9123c5SAlex Elder 					length, osd_data->alignment);
886ec9123c5SAlex Elder 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
887ec9123c5SAlex Elder 		BUG_ON(!length);
88890af3602SAlex Elder 		ceph_msg_data_add_pagelist(msg, osd_data->pagelist);
889ec9123c5SAlex Elder #ifdef CONFIG_BLOCK
890ec9123c5SAlex Elder 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_BIO) {
8915359a17dSIlya Dryomov 		ceph_msg_data_add_bio(msg, &osd_data->bio_pos, length);
892ec9123c5SAlex Elder #endif
893b9e281c2SIlya Dryomov 	} else if (osd_data->type == CEPH_OSD_DATA_TYPE_BVECS) {
894b9e281c2SIlya Dryomov 		ceph_msg_data_add_bvecs(msg, &osd_data->bvec_pos);
895ec9123c5SAlex Elder 	} else {
896ec9123c5SAlex Elder 		BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_NONE);
897ec9123c5SAlex Elder 	}
898ec9123c5SAlex Elder }
899ec9123c5SAlex Elder 
900bb873b53SIlya Dryomov static u32 osd_req_encode_op(struct ceph_osd_op *dst,
901bb873b53SIlya Dryomov 			     const struct ceph_osd_req_op *src)
9023d14c5d2SYehuda Sadeh {
903a8dd0a37SAlex Elder 	if (WARN_ON(!osd_req_opcode_valid(src->op))) {
904a8dd0a37SAlex Elder 		pr_err("unrecognized osd opcode %d\n", src->op);
905a8dd0a37SAlex Elder 
906a8dd0a37SAlex Elder 		return 0;
907a8dd0a37SAlex Elder 	}
9083d14c5d2SYehuda Sadeh 
909065a68f9SAlex Elder 	switch (src->op) {
910fbfab539SAlex Elder 	case CEPH_OSD_OP_STAT:
911fbfab539SAlex Elder 		break;
9123d14c5d2SYehuda Sadeh 	case CEPH_OSD_OP_READ:
9133d14c5d2SYehuda Sadeh 	case CEPH_OSD_OP_WRITE:
914e30b7577SIlya Dryomov 	case CEPH_OSD_OP_WRITEFULL:
915ad7a60deSLi Wang 	case CEPH_OSD_OP_ZERO:
916ad7a60deSLi Wang 	case CEPH_OSD_OP_TRUNCATE:
917175face2SAlex Elder 		dst->extent.offset = cpu_to_le64(src->extent.offset);
918175face2SAlex Elder 		dst->extent.length = cpu_to_le64(src->extent.length);
9193d14c5d2SYehuda Sadeh 		dst->extent.truncate_size =
9203d14c5d2SYehuda Sadeh 			cpu_to_le64(src->extent.truncate_size);
9213d14c5d2SYehuda Sadeh 		dst->extent.truncate_seq =
9223d14c5d2SYehuda Sadeh 			cpu_to_le32(src->extent.truncate_seq);
9233d14c5d2SYehuda Sadeh 		break;
9243d14c5d2SYehuda Sadeh 	case CEPH_OSD_OP_CALL:
9253d14c5d2SYehuda Sadeh 		dst->cls.class_len = src->cls.class_len;
9263d14c5d2SYehuda Sadeh 		dst->cls.method_len = src->cls.method_len;
927bb873b53SIlya Dryomov 		dst->cls.indata_len = cpu_to_le32(src->cls.indata_len);
9283d14c5d2SYehuda Sadeh 		break;
929a40c4f10SYehuda Sadeh 	case CEPH_OSD_OP_WATCH:
930a40c4f10SYehuda Sadeh 		dst->watch.cookie = cpu_to_le64(src->watch.cookie);
931922dab61SIlya Dryomov 		dst->watch.ver = cpu_to_le64(0);
932922dab61SIlya Dryomov 		dst->watch.op = src->watch.op;
933922dab61SIlya Dryomov 		dst->watch.gen = cpu_to_le32(src->watch.gen);
934922dab61SIlya Dryomov 		break;
935922dab61SIlya Dryomov 	case CEPH_OSD_OP_NOTIFY_ACK:
936a40c4f10SYehuda Sadeh 		break;
93719079203SIlya Dryomov 	case CEPH_OSD_OP_NOTIFY:
93819079203SIlya Dryomov 		dst->notify.cookie = cpu_to_le64(src->notify.cookie);
93919079203SIlya Dryomov 		break;
940a4ed38d7SDouglas Fuller 	case CEPH_OSD_OP_LIST_WATCHERS:
941a4ed38d7SDouglas Fuller 		break;
942c647b8a8SIlya Dryomov 	case CEPH_OSD_OP_SETALLOCHINT:
943c647b8a8SIlya Dryomov 		dst->alloc_hint.expected_object_size =
944c647b8a8SIlya Dryomov 		    cpu_to_le64(src->alloc_hint.expected_object_size);
945c647b8a8SIlya Dryomov 		dst->alloc_hint.expected_write_size =
946c647b8a8SIlya Dryomov 		    cpu_to_le64(src->alloc_hint.expected_write_size);
947c647b8a8SIlya Dryomov 		break;
948d74b50beSYan, Zheng 	case CEPH_OSD_OP_SETXATTR:
949d74b50beSYan, Zheng 	case CEPH_OSD_OP_CMPXATTR:
950d74b50beSYan, Zheng 		dst->xattr.name_len = cpu_to_le32(src->xattr.name_len);
951d74b50beSYan, Zheng 		dst->xattr.value_len = cpu_to_le32(src->xattr.value_len);
952d74b50beSYan, Zheng 		dst->xattr.cmp_op = src->xattr.cmp_op;
953d74b50beSYan, Zheng 		dst->xattr.cmp_mode = src->xattr.cmp_mode;
954d74b50beSYan, Zheng 		break;
955864e9197SYan, Zheng 	case CEPH_OSD_OP_CREATE:
956864e9197SYan, Zheng 	case CEPH_OSD_OP_DELETE:
957864e9197SYan, Zheng 		break;
9583d14c5d2SYehuda Sadeh 	default:
9594c46459cSAlex Elder 		pr_err("unsupported osd opcode %s\n",
9608f63ca2dSAlex Elder 			ceph_osd_op_name(src->op));
9614c46459cSAlex Elder 		WARN_ON(1);
962a8dd0a37SAlex Elder 
963a8dd0a37SAlex Elder 		return 0;
9643d14c5d2SYehuda Sadeh 	}
9657b25bf5fSIlya Dryomov 
966a8dd0a37SAlex Elder 	dst->op = cpu_to_le16(src->op);
9677b25bf5fSIlya Dryomov 	dst->flags = cpu_to_le32(src->flags);
968de2aa102SIlya Dryomov 	dst->payload_len = cpu_to_le32(src->indata_len);
969175face2SAlex Elder 
970bb873b53SIlya Dryomov 	return src->indata_len;
9713d14c5d2SYehuda Sadeh }
9723d14c5d2SYehuda Sadeh 
9733d14c5d2SYehuda Sadeh /*
9743d14c5d2SYehuda Sadeh  * build new request AND message, calculate layout, and adjust file
9753d14c5d2SYehuda Sadeh  * extent as needed.
9763d14c5d2SYehuda Sadeh  *
9773d14c5d2SYehuda Sadeh  * if the file was recently truncated, we include information about its
9783d14c5d2SYehuda Sadeh  * old and new size so that the object can be updated appropriately.  (we
9793d14c5d2SYehuda Sadeh  * avoid synchronously deleting truncated objects because it's slow.)
9803d14c5d2SYehuda Sadeh  */
9813d14c5d2SYehuda Sadeh struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
9823d14c5d2SYehuda Sadeh 					       struct ceph_file_layout *layout,
9833d14c5d2SYehuda Sadeh 					       struct ceph_vino vino,
984715e4cd4SYan, Zheng 					       u64 off, u64 *plen,
985715e4cd4SYan, Zheng 					       unsigned int which, int num_ops,
9863d14c5d2SYehuda Sadeh 					       int opcode, int flags,
9873d14c5d2SYehuda Sadeh 					       struct ceph_snap_context *snapc,
9883d14c5d2SYehuda Sadeh 					       u32 truncate_seq,
9893d14c5d2SYehuda Sadeh 					       u64 truncate_size,
990153e5167SAlex Elder 					       bool use_mempool)
9913d14c5d2SYehuda Sadeh {
9923d14c5d2SYehuda Sadeh 	struct ceph_osd_request *req;
99375d1c941SAlex Elder 	u64 objnum = 0;
99475d1c941SAlex Elder 	u64 objoff = 0;
99575d1c941SAlex Elder 	u64 objlen = 0;
9966816282dSSage Weil 	int r;
9973d14c5d2SYehuda Sadeh 
998ad7a60deSLi Wang 	BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
999864e9197SYan, Zheng 	       opcode != CEPH_OSD_OP_ZERO && opcode != CEPH_OSD_OP_TRUNCATE &&
1000864e9197SYan, Zheng 	       opcode != CEPH_OSD_OP_CREATE && opcode != CEPH_OSD_OP_DELETE);
10013d14c5d2SYehuda Sadeh 
1002acead002SAlex Elder 	req = ceph_osdc_alloc_request(osdc, snapc, num_ops, use_mempool,
1003ae7ca4a3SAlex Elder 					GFP_NOFS);
100413d1ad16SIlya Dryomov 	if (!req) {
100513d1ad16SIlya Dryomov 		r = -ENOMEM;
100613d1ad16SIlya Dryomov 		goto fail;
100713d1ad16SIlya Dryomov 	}
100879528734SAlex Elder 
10093d14c5d2SYehuda Sadeh 	/* calculate max write size */
1010a19dadfbSAlex Elder 	r = calc_layout(layout, off, plen, &objnum, &objoff, &objlen);
101113d1ad16SIlya Dryomov 	if (r)
101213d1ad16SIlya Dryomov 		goto fail;
1013a19dadfbSAlex Elder 
1014864e9197SYan, Zheng 	if (opcode == CEPH_OSD_OP_CREATE || opcode == CEPH_OSD_OP_DELETE) {
1015144cba14SYan, Zheng 		osd_req_op_init(req, which, opcode, 0);
1016864e9197SYan, Zheng 	} else {
10177627151eSYan, Zheng 		u32 object_size = layout->object_size;
1018864e9197SYan, Zheng 		u32 object_base = off - objoff;
1019ccca4e37SYan, Zheng 		if (!(truncate_seq == 1 && truncate_size == -1ULL)) {
1020d18d1e28SAlex Elder 			if (truncate_size <= object_base) {
1021d18d1e28SAlex Elder 				truncate_size = 0;
1022d18d1e28SAlex Elder 			} else {
1023d18d1e28SAlex Elder 				truncate_size -= object_base;
1024d18d1e28SAlex Elder 				if (truncate_size > object_size)
1025d18d1e28SAlex Elder 					truncate_size = object_size;
1026d18d1e28SAlex Elder 			}
1027ccca4e37SYan, Zheng 		}
1028715e4cd4SYan, Zheng 		osd_req_op_extent_init(req, which, opcode, objoff, objlen,
1029b0270324SAlex Elder 				       truncate_size, truncate_seq);
1030864e9197SYan, Zheng 	}
1031d18d1e28SAlex Elder 
1032bb873b53SIlya Dryomov 	req->r_flags = flags;
10337627151eSYan, Zheng 	req->r_base_oloc.pool = layout->pool_id;
103430c156d9SYan, Zheng 	req->r_base_oloc.pool_ns = ceph_try_get_string(layout->pool_ns);
1035d30291b9SIlya Dryomov 	ceph_oid_printf(&req->r_base_oid, "%llx.%08llx", vino.ino, objnum);
1036dbe0fc41SAlex Elder 
1037bb873b53SIlya Dryomov 	req->r_snapid = vino.snap;
1038bb873b53SIlya Dryomov 	if (flags & CEPH_OSD_FLAG_WRITE)
1039bb873b53SIlya Dryomov 		req->r_data_offset = off;
1040bb873b53SIlya Dryomov 
104113d1ad16SIlya Dryomov 	r = ceph_osdc_alloc_messages(req, GFP_NOFS);
104213d1ad16SIlya Dryomov 	if (r)
104313d1ad16SIlya Dryomov 		goto fail;
104413d1ad16SIlya Dryomov 
10453d14c5d2SYehuda Sadeh 	return req;
104613d1ad16SIlya Dryomov 
104713d1ad16SIlya Dryomov fail:
104813d1ad16SIlya Dryomov 	ceph_osdc_put_request(req);
104913d1ad16SIlya Dryomov 	return ERR_PTR(r);
10503d14c5d2SYehuda Sadeh }
10513d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_new_request);
10523d14c5d2SYehuda Sadeh 
10533d14c5d2SYehuda Sadeh /*
10543d14c5d2SYehuda Sadeh  * We keep osd requests in an rbtree, sorted by ->r_tid.
10553d14c5d2SYehuda Sadeh  */
1056fcd00b68SIlya Dryomov DEFINE_RB_FUNCS(request, struct ceph_osd_request, r_tid, r_node)
10574609245eSIlya Dryomov DEFINE_RB_FUNCS(request_mc, struct ceph_osd_request, r_tid, r_mc_node)
10583d14c5d2SYehuda Sadeh 
105966850df5SIlya Dryomov /*
106066850df5SIlya Dryomov  * Call @fn on each OSD request as long as @fn returns 0.
106166850df5SIlya Dryomov  */
106266850df5SIlya Dryomov static void for_each_request(struct ceph_osd_client *osdc,
106366850df5SIlya Dryomov 			int (*fn)(struct ceph_osd_request *req, void *arg),
106466850df5SIlya Dryomov 			void *arg)
106566850df5SIlya Dryomov {
106666850df5SIlya Dryomov 	struct rb_node *n, *p;
106766850df5SIlya Dryomov 
106866850df5SIlya Dryomov 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
106966850df5SIlya Dryomov 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
107066850df5SIlya Dryomov 
107166850df5SIlya Dryomov 		for (p = rb_first(&osd->o_requests); p; ) {
107266850df5SIlya Dryomov 			struct ceph_osd_request *req =
107366850df5SIlya Dryomov 			    rb_entry(p, struct ceph_osd_request, r_node);
107466850df5SIlya Dryomov 
107566850df5SIlya Dryomov 			p = rb_next(p);
107666850df5SIlya Dryomov 			if (fn(req, arg))
107766850df5SIlya Dryomov 				return;
107866850df5SIlya Dryomov 		}
107966850df5SIlya Dryomov 	}
108066850df5SIlya Dryomov 
108166850df5SIlya Dryomov 	for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
108266850df5SIlya Dryomov 		struct ceph_osd_request *req =
108366850df5SIlya Dryomov 		    rb_entry(p, struct ceph_osd_request, r_node);
108466850df5SIlya Dryomov 
108566850df5SIlya Dryomov 		p = rb_next(p);
108666850df5SIlya Dryomov 		if (fn(req, arg))
108766850df5SIlya Dryomov 			return;
108866850df5SIlya Dryomov 	}
108966850df5SIlya Dryomov }
109066850df5SIlya Dryomov 
10910247a0cfSIlya Dryomov static bool osd_homeless(struct ceph_osd *osd)
10920247a0cfSIlya Dryomov {
10930247a0cfSIlya Dryomov 	return osd->o_osd == CEPH_HOMELESS_OSD;
10940247a0cfSIlya Dryomov }
10950247a0cfSIlya Dryomov 
10965aea3dcdSIlya Dryomov static bool osd_registered(struct ceph_osd *osd)
10973d14c5d2SYehuda Sadeh {
10985aea3dcdSIlya Dryomov 	verify_osdc_locked(osd->o_osdc);
10993d14c5d2SYehuda Sadeh 
11005aea3dcdSIlya Dryomov 	return !RB_EMPTY_NODE(&osd->o_node);
11013d14c5d2SYehuda Sadeh }
11023d14c5d2SYehuda Sadeh 
11033d14c5d2SYehuda Sadeh /*
11040247a0cfSIlya Dryomov  * Assumes @osd is zero-initialized.
11050247a0cfSIlya Dryomov  */
11060247a0cfSIlya Dryomov static void osd_init(struct ceph_osd *osd)
11070247a0cfSIlya Dryomov {
110802113a0fSElena Reshetova 	refcount_set(&osd->o_ref, 1);
11090247a0cfSIlya Dryomov 	RB_CLEAR_NODE(&osd->o_node);
11105aea3dcdSIlya Dryomov 	osd->o_requests = RB_ROOT;
1111922dab61SIlya Dryomov 	osd->o_linger_requests = RB_ROOT;
1112a02a946dSIlya Dryomov 	osd->o_backoff_mappings = RB_ROOT;
1113a02a946dSIlya Dryomov 	osd->o_backoffs_by_id = RB_ROOT;
11140247a0cfSIlya Dryomov 	INIT_LIST_HEAD(&osd->o_osd_lru);
11150247a0cfSIlya Dryomov 	INIT_LIST_HEAD(&osd->o_keepalive_item);
11160247a0cfSIlya Dryomov 	osd->o_incarnation = 1;
11175aea3dcdSIlya Dryomov 	mutex_init(&osd->lock);
11180247a0cfSIlya Dryomov }
11190247a0cfSIlya Dryomov 
11200247a0cfSIlya Dryomov static void osd_cleanup(struct ceph_osd *osd)
11210247a0cfSIlya Dryomov {
11220247a0cfSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&osd->o_node));
11235aea3dcdSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
1124922dab61SIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
1125a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoff_mappings));
1126a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoffs_by_id));
11270247a0cfSIlya Dryomov 	WARN_ON(!list_empty(&osd->o_osd_lru));
11280247a0cfSIlya Dryomov 	WARN_ON(!list_empty(&osd->o_keepalive_item));
11290247a0cfSIlya Dryomov 
11300247a0cfSIlya Dryomov 	if (osd->o_auth.authorizer) {
11310247a0cfSIlya Dryomov 		WARN_ON(osd_homeless(osd));
11320247a0cfSIlya Dryomov 		ceph_auth_destroy_authorizer(osd->o_auth.authorizer);
11330247a0cfSIlya Dryomov 	}
11340247a0cfSIlya Dryomov }
11350247a0cfSIlya Dryomov 
11360247a0cfSIlya Dryomov /*
11373d14c5d2SYehuda Sadeh  * Track open sessions with osds.
11383d14c5d2SYehuda Sadeh  */
1139e10006f8SAlex Elder static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
11403d14c5d2SYehuda Sadeh {
11413d14c5d2SYehuda Sadeh 	struct ceph_osd *osd;
11423d14c5d2SYehuda Sadeh 
11430247a0cfSIlya Dryomov 	WARN_ON(onum == CEPH_HOMELESS_OSD);
11440247a0cfSIlya Dryomov 
11457a28f59bSIlya Dryomov 	osd = kzalloc(sizeof(*osd), GFP_NOIO | __GFP_NOFAIL);
11460247a0cfSIlya Dryomov 	osd_init(osd);
11473d14c5d2SYehuda Sadeh 	osd->o_osdc = osdc;
1148e10006f8SAlex Elder 	osd->o_osd = onum;
11493d14c5d2SYehuda Sadeh 
1150b7a9e5ddSSage Weil 	ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
11513d14c5d2SYehuda Sadeh 
11523d14c5d2SYehuda Sadeh 	return osd;
11533d14c5d2SYehuda Sadeh }
11543d14c5d2SYehuda Sadeh 
11553d14c5d2SYehuda Sadeh static struct ceph_osd *get_osd(struct ceph_osd *osd)
11563d14c5d2SYehuda Sadeh {
115702113a0fSElena Reshetova 	if (refcount_inc_not_zero(&osd->o_ref)) {
115802113a0fSElena Reshetova 		dout("get_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref)-1,
115902113a0fSElena Reshetova 		     refcount_read(&osd->o_ref));
11603d14c5d2SYehuda Sadeh 		return osd;
11613d14c5d2SYehuda Sadeh 	} else {
11623d14c5d2SYehuda Sadeh 		dout("get_osd %p FAIL\n", osd);
11633d14c5d2SYehuda Sadeh 		return NULL;
11643d14c5d2SYehuda Sadeh 	}
11653d14c5d2SYehuda Sadeh }
11663d14c5d2SYehuda Sadeh 
11673d14c5d2SYehuda Sadeh static void put_osd(struct ceph_osd *osd)
11683d14c5d2SYehuda Sadeh {
116902113a0fSElena Reshetova 	dout("put_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref),
117002113a0fSElena Reshetova 	     refcount_read(&osd->o_ref) - 1);
117102113a0fSElena Reshetova 	if (refcount_dec_and_test(&osd->o_ref)) {
11720247a0cfSIlya Dryomov 		osd_cleanup(osd);
11733d14c5d2SYehuda Sadeh 		kfree(osd);
11743d14c5d2SYehuda Sadeh 	}
11753d14c5d2SYehuda Sadeh }
11763d14c5d2SYehuda Sadeh 
1177fcd00b68SIlya Dryomov DEFINE_RB_FUNCS(osd, struct ceph_osd, o_osd, o_node)
1178fcd00b68SIlya Dryomov 
11799dd2845cSIlya Dryomov static void __move_osd_to_lru(struct ceph_osd *osd)
11803d14c5d2SYehuda Sadeh {
11819dd2845cSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
11829dd2845cSIlya Dryomov 
11839dd2845cSIlya Dryomov 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
11843d14c5d2SYehuda Sadeh 	BUG_ON(!list_empty(&osd->o_osd_lru));
1185bbf37ec3SIlya Dryomov 
11869dd2845cSIlya Dryomov 	spin_lock(&osdc->osd_lru_lock);
11873d14c5d2SYehuda Sadeh 	list_add_tail(&osd->o_osd_lru, &osdc->osd_lru);
11889dd2845cSIlya Dryomov 	spin_unlock(&osdc->osd_lru_lock);
11899dd2845cSIlya Dryomov 
1190a319bf56SIlya Dryomov 	osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl;
11913d14c5d2SYehuda Sadeh }
11923d14c5d2SYehuda Sadeh 
11939dd2845cSIlya Dryomov static void maybe_move_osd_to_lru(struct ceph_osd *osd)
1194bbf37ec3SIlya Dryomov {
11955aea3dcdSIlya Dryomov 	if (RB_EMPTY_ROOT(&osd->o_requests) &&
1196922dab61SIlya Dryomov 	    RB_EMPTY_ROOT(&osd->o_linger_requests))
11979dd2845cSIlya Dryomov 		__move_osd_to_lru(osd);
1198bbf37ec3SIlya Dryomov }
1199bbf37ec3SIlya Dryomov 
12003d14c5d2SYehuda Sadeh static void __remove_osd_from_lru(struct ceph_osd *osd)
12013d14c5d2SYehuda Sadeh {
12029dd2845cSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
12039dd2845cSIlya Dryomov 
12049dd2845cSIlya Dryomov 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
12059dd2845cSIlya Dryomov 
12069dd2845cSIlya Dryomov 	spin_lock(&osdc->osd_lru_lock);
12073d14c5d2SYehuda Sadeh 	if (!list_empty(&osd->o_osd_lru))
12083d14c5d2SYehuda Sadeh 		list_del_init(&osd->o_osd_lru);
12099dd2845cSIlya Dryomov 	spin_unlock(&osdc->osd_lru_lock);
12103d14c5d2SYehuda Sadeh }
12113d14c5d2SYehuda Sadeh 
12123d14c5d2SYehuda Sadeh /*
12135aea3dcdSIlya Dryomov  * Close the connection and assign any leftover requests to the
12145aea3dcdSIlya Dryomov  * homeless session.
12155aea3dcdSIlya Dryomov  */
12165aea3dcdSIlya Dryomov static void close_osd(struct ceph_osd *osd)
12175aea3dcdSIlya Dryomov {
12185aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
12195aea3dcdSIlya Dryomov 	struct rb_node *n;
12205aea3dcdSIlya Dryomov 
12215aea3dcdSIlya Dryomov 	verify_osdc_wrlocked(osdc);
12225aea3dcdSIlya Dryomov 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
12235aea3dcdSIlya Dryomov 
12245aea3dcdSIlya Dryomov 	ceph_con_close(&osd->o_con);
12255aea3dcdSIlya Dryomov 
12265aea3dcdSIlya Dryomov 	for (n = rb_first(&osd->o_requests); n; ) {
12275aea3dcdSIlya Dryomov 		struct ceph_osd_request *req =
12285aea3dcdSIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
12295aea3dcdSIlya Dryomov 
12305aea3dcdSIlya Dryomov 		n = rb_next(n); /* unlink_request() */
12315aea3dcdSIlya Dryomov 
12325aea3dcdSIlya Dryomov 		dout(" reassigning req %p tid %llu\n", req, req->r_tid);
12335aea3dcdSIlya Dryomov 		unlink_request(osd, req);
12345aea3dcdSIlya Dryomov 		link_request(&osdc->homeless_osd, req);
12355aea3dcdSIlya Dryomov 	}
1236922dab61SIlya Dryomov 	for (n = rb_first(&osd->o_linger_requests); n; ) {
1237922dab61SIlya Dryomov 		struct ceph_osd_linger_request *lreq =
1238922dab61SIlya Dryomov 		    rb_entry(n, struct ceph_osd_linger_request, node);
1239922dab61SIlya Dryomov 
1240922dab61SIlya Dryomov 		n = rb_next(n); /* unlink_linger() */
1241922dab61SIlya Dryomov 
1242922dab61SIlya Dryomov 		dout(" reassigning lreq %p linger_id %llu\n", lreq,
1243922dab61SIlya Dryomov 		     lreq->linger_id);
1244922dab61SIlya Dryomov 		unlink_linger(osd, lreq);
1245922dab61SIlya Dryomov 		link_linger(&osdc->homeless_osd, lreq);
1246922dab61SIlya Dryomov 	}
1247a02a946dSIlya Dryomov 	clear_backoffs(osd);
12485aea3dcdSIlya Dryomov 
12495aea3dcdSIlya Dryomov 	__remove_osd_from_lru(osd);
12505aea3dcdSIlya Dryomov 	erase_osd(&osdc->osds, osd);
12515aea3dcdSIlya Dryomov 	put_osd(osd);
12525aea3dcdSIlya Dryomov }
12535aea3dcdSIlya Dryomov 
12545aea3dcdSIlya Dryomov /*
12553d14c5d2SYehuda Sadeh  * reset osd connect
12563d14c5d2SYehuda Sadeh  */
12575aea3dcdSIlya Dryomov static int reopen_osd(struct ceph_osd *osd)
12583d14c5d2SYehuda Sadeh {
1259c3acb181SAlex Elder 	struct ceph_entity_addr *peer_addr;
12603d14c5d2SYehuda Sadeh 
12615aea3dcdSIlya Dryomov 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
12625aea3dcdSIlya Dryomov 
12635aea3dcdSIlya Dryomov 	if (RB_EMPTY_ROOT(&osd->o_requests) &&
1264922dab61SIlya Dryomov 	    RB_EMPTY_ROOT(&osd->o_linger_requests)) {
12655aea3dcdSIlya Dryomov 		close_osd(osd);
1266c3acb181SAlex Elder 		return -ENODEV;
1267c3acb181SAlex Elder 	}
1268c3acb181SAlex Elder 
12695aea3dcdSIlya Dryomov 	peer_addr = &osd->o_osdc->osdmap->osd_addr[osd->o_osd];
1270c3acb181SAlex Elder 	if (!memcmp(peer_addr, &osd->o_con.peer_addr, sizeof (*peer_addr)) &&
12713d14c5d2SYehuda Sadeh 			!ceph_con_opened(&osd->o_con)) {
12725aea3dcdSIlya Dryomov 		struct rb_node *n;
1273c3acb181SAlex Elder 
12743d14c5d2SYehuda Sadeh 		dout("osd addr hasn't changed and connection never opened, "
12750b4af2e8SIlya Dryomov 		     "letting msgr retry\n");
12763d14c5d2SYehuda Sadeh 		/* touch each r_stamp for handle_timeout()'s benfit */
12775aea3dcdSIlya Dryomov 		for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
12785aea3dcdSIlya Dryomov 			struct ceph_osd_request *req =
12795aea3dcdSIlya Dryomov 			    rb_entry(n, struct ceph_osd_request, r_node);
12803d14c5d2SYehuda Sadeh 			req->r_stamp = jiffies;
12815aea3dcdSIlya Dryomov 		}
1282c3acb181SAlex Elder 
1283c3acb181SAlex Elder 		return -EAGAIN;
12843d14c5d2SYehuda Sadeh 	}
1285c3acb181SAlex Elder 
1286c3acb181SAlex Elder 	ceph_con_close(&osd->o_con);
1287c3acb181SAlex Elder 	ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd, peer_addr);
1288c3acb181SAlex Elder 	osd->o_incarnation++;
1289c3acb181SAlex Elder 
1290c3acb181SAlex Elder 	return 0;
12913d14c5d2SYehuda Sadeh }
12923d14c5d2SYehuda Sadeh 
12935aea3dcdSIlya Dryomov static struct ceph_osd *lookup_create_osd(struct ceph_osd_client *osdc, int o,
12945aea3dcdSIlya Dryomov 					  bool wrlocked)
12953d14c5d2SYehuda Sadeh {
12965aea3dcdSIlya Dryomov 	struct ceph_osd *osd;
12975aea3dcdSIlya Dryomov 
12985aea3dcdSIlya Dryomov 	if (wrlocked)
12995aea3dcdSIlya Dryomov 		verify_osdc_wrlocked(osdc);
13005aea3dcdSIlya Dryomov 	else
13015aea3dcdSIlya Dryomov 		verify_osdc_locked(osdc);
13025aea3dcdSIlya Dryomov 
13035aea3dcdSIlya Dryomov 	if (o != CEPH_HOMELESS_OSD)
13045aea3dcdSIlya Dryomov 		osd = lookup_osd(&osdc->osds, o);
13055aea3dcdSIlya Dryomov 	else
13065aea3dcdSIlya Dryomov 		osd = &osdc->homeless_osd;
13075aea3dcdSIlya Dryomov 	if (!osd) {
13085aea3dcdSIlya Dryomov 		if (!wrlocked)
13095aea3dcdSIlya Dryomov 			return ERR_PTR(-EAGAIN);
13105aea3dcdSIlya Dryomov 
13115aea3dcdSIlya Dryomov 		osd = create_osd(osdc, o);
13125aea3dcdSIlya Dryomov 		insert_osd(&osdc->osds, osd);
13135aea3dcdSIlya Dryomov 		ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd,
13145aea3dcdSIlya Dryomov 			      &osdc->osdmap->osd_addr[osd->o_osd]);
13155aea3dcdSIlya Dryomov 	}
13165aea3dcdSIlya Dryomov 
13175aea3dcdSIlya Dryomov 	dout("%s osdc %p osd%d -> osd %p\n", __func__, osdc, o, osd);
13185aea3dcdSIlya Dryomov 	return osd;
1319a40c4f10SYehuda Sadeh }
1320a40c4f10SYehuda Sadeh 
13213d14c5d2SYehuda Sadeh /*
13225aea3dcdSIlya Dryomov  * Create request <-> OSD session relation.
13235aea3dcdSIlya Dryomov  *
13245aea3dcdSIlya Dryomov  * @req has to be assigned a tid, @osd may be homeless.
13253d14c5d2SYehuda Sadeh  */
13265aea3dcdSIlya Dryomov static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req)
13273d14c5d2SYehuda Sadeh {
13285aea3dcdSIlya Dryomov 	verify_osd_locked(osd);
13295aea3dcdSIlya Dryomov 	WARN_ON(!req->r_tid || req->r_osd);
13305aea3dcdSIlya Dryomov 	dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
133135f9f8a0SSage Weil 	     req, req->r_tid);
13325aea3dcdSIlya Dryomov 
13335aea3dcdSIlya Dryomov 	if (!osd_homeless(osd))
13345aea3dcdSIlya Dryomov 		__remove_osd_from_lru(osd);
13355aea3dcdSIlya Dryomov 	else
13365aea3dcdSIlya Dryomov 		atomic_inc(&osd->o_osdc->num_homeless);
13375aea3dcdSIlya Dryomov 
13385aea3dcdSIlya Dryomov 	get_osd(osd);
13395aea3dcdSIlya Dryomov 	insert_request(&osd->o_requests, req);
13405aea3dcdSIlya Dryomov 	req->r_osd = osd;
134135f9f8a0SSage Weil }
134235f9f8a0SSage Weil 
13435aea3dcdSIlya Dryomov static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req)
13443d14c5d2SYehuda Sadeh {
13455aea3dcdSIlya Dryomov 	verify_osd_locked(osd);
13465aea3dcdSIlya Dryomov 	WARN_ON(req->r_osd != osd);
13475aea3dcdSIlya Dryomov 	dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
13485aea3dcdSIlya Dryomov 	     req, req->r_tid);
13495aea3dcdSIlya Dryomov 
13505aea3dcdSIlya Dryomov 	req->r_osd = NULL;
13515aea3dcdSIlya Dryomov 	erase_request(&osd->o_requests, req);
13525aea3dcdSIlya Dryomov 	put_osd(osd);
13535aea3dcdSIlya Dryomov 
13545aea3dcdSIlya Dryomov 	if (!osd_homeless(osd))
13555aea3dcdSIlya Dryomov 		maybe_move_osd_to_lru(osd);
13565aea3dcdSIlya Dryomov 	else
13575aea3dcdSIlya Dryomov 		atomic_dec(&osd->o_osdc->num_homeless);
13583d14c5d2SYehuda Sadeh }
13593d14c5d2SYehuda Sadeh 
136063244fa1SIlya Dryomov static bool __pool_full(struct ceph_pg_pool_info *pi)
136163244fa1SIlya Dryomov {
136263244fa1SIlya Dryomov 	return pi->flags & CEPH_POOL_FLAG_FULL;
136363244fa1SIlya Dryomov }
136463244fa1SIlya Dryomov 
136542c1b124SIlya Dryomov static bool have_pool_full(struct ceph_osd_client *osdc)
136642c1b124SIlya Dryomov {
136742c1b124SIlya Dryomov 	struct rb_node *n;
136842c1b124SIlya Dryomov 
136942c1b124SIlya Dryomov 	for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
137042c1b124SIlya Dryomov 		struct ceph_pg_pool_info *pi =
137142c1b124SIlya Dryomov 		    rb_entry(n, struct ceph_pg_pool_info, node);
137242c1b124SIlya Dryomov 
137342c1b124SIlya Dryomov 		if (__pool_full(pi))
137442c1b124SIlya Dryomov 			return true;
137542c1b124SIlya Dryomov 	}
137642c1b124SIlya Dryomov 
137742c1b124SIlya Dryomov 	return false;
137842c1b124SIlya Dryomov }
137942c1b124SIlya Dryomov 
13805aea3dcdSIlya Dryomov static bool pool_full(struct ceph_osd_client *osdc, s64 pool_id)
13815aea3dcdSIlya Dryomov {
13825aea3dcdSIlya Dryomov 	struct ceph_pg_pool_info *pi;
13835aea3dcdSIlya Dryomov 
13845aea3dcdSIlya Dryomov 	pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
13855aea3dcdSIlya Dryomov 	if (!pi)
13865aea3dcdSIlya Dryomov 		return false;
13875aea3dcdSIlya Dryomov 
13885aea3dcdSIlya Dryomov 	return __pool_full(pi);
13895aea3dcdSIlya Dryomov }
13905aea3dcdSIlya Dryomov 
13913d14c5d2SYehuda Sadeh /*
1392d29adb34SJosh Durgin  * Returns whether a request should be blocked from being sent
1393d29adb34SJosh Durgin  * based on the current osdmap and osd_client settings.
1394d29adb34SJosh Durgin  */
139563244fa1SIlya Dryomov static bool target_should_be_paused(struct ceph_osd_client *osdc,
139663244fa1SIlya Dryomov 				    const struct ceph_osd_request_target *t,
139763244fa1SIlya Dryomov 				    struct ceph_pg_pool_info *pi)
139863244fa1SIlya Dryomov {
1399b7ec35b3SIlya Dryomov 	bool pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
1400b7ec35b3SIlya Dryomov 	bool pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
1401b7ec35b3SIlya Dryomov 		       ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
140263244fa1SIlya Dryomov 		       __pool_full(pi);
140363244fa1SIlya Dryomov 
14046d637a54SIlya Dryomov 	WARN_ON(pi->id != t->target_oloc.pool);
140558eb7932SJeff Layton 	return ((t->flags & CEPH_OSD_FLAG_READ) && pauserd) ||
140658eb7932SJeff Layton 	       ((t->flags & CEPH_OSD_FLAG_WRITE) && pausewr) ||
140758eb7932SJeff Layton 	       (osdc->osdmap->epoch < osdc->epoch_barrier);
140863244fa1SIlya Dryomov }
140963244fa1SIlya Dryomov 
141063244fa1SIlya Dryomov enum calc_target_result {
141163244fa1SIlya Dryomov 	CALC_TARGET_NO_ACTION = 0,
141263244fa1SIlya Dryomov 	CALC_TARGET_NEED_RESEND,
141363244fa1SIlya Dryomov 	CALC_TARGET_POOL_DNE,
141463244fa1SIlya Dryomov };
141563244fa1SIlya Dryomov 
141663244fa1SIlya Dryomov static enum calc_target_result calc_target(struct ceph_osd_client *osdc,
141763244fa1SIlya Dryomov 					   struct ceph_osd_request_target *t,
14187de030d6SIlya Dryomov 					   struct ceph_connection *con,
141963244fa1SIlya Dryomov 					   bool any_change)
142063244fa1SIlya Dryomov {
142163244fa1SIlya Dryomov 	struct ceph_pg_pool_info *pi;
142263244fa1SIlya Dryomov 	struct ceph_pg pgid, last_pgid;
142363244fa1SIlya Dryomov 	struct ceph_osds up, acting;
142463244fa1SIlya Dryomov 	bool force_resend = false;
142584ed45dfSIlya Dryomov 	bool unpaused = false;
142684ed45dfSIlya Dryomov 	bool legacy_change;
14277de030d6SIlya Dryomov 	bool split = false;
1428b7ec35b3SIlya Dryomov 	bool sort_bitwise = ceph_osdmap_flag(osdc, CEPH_OSDMAP_SORTBITWISE);
1429ae78dd81SIlya Dryomov 	bool recovery_deletes = ceph_osdmap_flag(osdc,
1430ae78dd81SIlya Dryomov 						 CEPH_OSDMAP_RECOVERY_DELETES);
143163244fa1SIlya Dryomov 	enum calc_target_result ct_res;
143263244fa1SIlya Dryomov 
143304c7d789SIlya Dryomov 	t->epoch = osdc->osdmap->epoch;
143463244fa1SIlya Dryomov 	pi = ceph_pg_pool_by_id(osdc->osdmap, t->base_oloc.pool);
143563244fa1SIlya Dryomov 	if (!pi) {
143663244fa1SIlya Dryomov 		t->osd = CEPH_HOMELESS_OSD;
143763244fa1SIlya Dryomov 		ct_res = CALC_TARGET_POOL_DNE;
143863244fa1SIlya Dryomov 		goto out;
143963244fa1SIlya Dryomov 	}
144063244fa1SIlya Dryomov 
144163244fa1SIlya Dryomov 	if (osdc->osdmap->epoch == pi->last_force_request_resend) {
1442dc93e0e2SIlya Dryomov 		if (t->last_force_resend < pi->last_force_request_resend) {
1443dc93e0e2SIlya Dryomov 			t->last_force_resend = pi->last_force_request_resend;
144463244fa1SIlya Dryomov 			force_resend = true;
1445dc93e0e2SIlya Dryomov 		} else if (t->last_force_resend == 0) {
144663244fa1SIlya Dryomov 			force_resend = true;
144763244fa1SIlya Dryomov 		}
144863244fa1SIlya Dryomov 	}
144963244fa1SIlya Dryomov 
1450db098ec4SIlya Dryomov 	/* apply tiering */
1451db098ec4SIlya Dryomov 	ceph_oid_copy(&t->target_oid, &t->base_oid);
1452db098ec4SIlya Dryomov 	ceph_oloc_copy(&t->target_oloc, &t->base_oloc);
1453db098ec4SIlya Dryomov 	if ((t->flags & CEPH_OSD_FLAG_IGNORE_OVERLAY) == 0) {
145463244fa1SIlya Dryomov 		if (t->flags & CEPH_OSD_FLAG_READ && pi->read_tier >= 0)
145563244fa1SIlya Dryomov 			t->target_oloc.pool = pi->read_tier;
145663244fa1SIlya Dryomov 		if (t->flags & CEPH_OSD_FLAG_WRITE && pi->write_tier >= 0)
145763244fa1SIlya Dryomov 			t->target_oloc.pool = pi->write_tier;
14586d637a54SIlya Dryomov 
14596d637a54SIlya Dryomov 		pi = ceph_pg_pool_by_id(osdc->osdmap, t->target_oloc.pool);
14606d637a54SIlya Dryomov 		if (!pi) {
14616d637a54SIlya Dryomov 			t->osd = CEPH_HOMELESS_OSD;
14626d637a54SIlya Dryomov 			ct_res = CALC_TARGET_POOL_DNE;
14636d637a54SIlya Dryomov 			goto out;
14646d637a54SIlya Dryomov 		}
146563244fa1SIlya Dryomov 	}
146663244fa1SIlya Dryomov 
1467a86f009fSIlya Dryomov 	__ceph_object_locator_to_pg(pi, &t->target_oid, &t->target_oloc, &pgid);
146863244fa1SIlya Dryomov 	last_pgid.pool = pgid.pool;
146963244fa1SIlya Dryomov 	last_pgid.seed = ceph_stable_mod(pgid.seed, t->pg_num, t->pg_num_mask);
147063244fa1SIlya Dryomov 
1471df28152dSIlya Dryomov 	ceph_pg_to_up_acting_osds(osdc->osdmap, pi, &pgid, &up, &acting);
147263244fa1SIlya Dryomov 	if (any_change &&
147363244fa1SIlya Dryomov 	    ceph_is_new_interval(&t->acting,
147463244fa1SIlya Dryomov 				 &acting,
147563244fa1SIlya Dryomov 				 &t->up,
147663244fa1SIlya Dryomov 				 &up,
147763244fa1SIlya Dryomov 				 t->size,
147863244fa1SIlya Dryomov 				 pi->size,
147963244fa1SIlya Dryomov 				 t->min_size,
148063244fa1SIlya Dryomov 				 pi->min_size,
148163244fa1SIlya Dryomov 				 t->pg_num,
148263244fa1SIlya Dryomov 				 pi->pg_num,
148363244fa1SIlya Dryomov 				 t->sort_bitwise,
148463244fa1SIlya Dryomov 				 sort_bitwise,
1485ae78dd81SIlya Dryomov 				 t->recovery_deletes,
1486ae78dd81SIlya Dryomov 				 recovery_deletes,
148763244fa1SIlya Dryomov 				 &last_pgid))
148863244fa1SIlya Dryomov 		force_resend = true;
148963244fa1SIlya Dryomov 
149063244fa1SIlya Dryomov 	if (t->paused && !target_should_be_paused(osdc, t, pi)) {
149163244fa1SIlya Dryomov 		t->paused = false;
149284ed45dfSIlya Dryomov 		unpaused = true;
149363244fa1SIlya Dryomov 	}
149484ed45dfSIlya Dryomov 	legacy_change = ceph_pg_compare(&t->pgid, &pgid) ||
149584ed45dfSIlya Dryomov 			ceph_osds_changed(&t->acting, &acting, any_change);
14967de030d6SIlya Dryomov 	if (t->pg_num)
14977de030d6SIlya Dryomov 		split = ceph_pg_is_split(&last_pgid, t->pg_num, pi->pg_num);
149863244fa1SIlya Dryomov 
14997de030d6SIlya Dryomov 	if (legacy_change || force_resend || split) {
150063244fa1SIlya Dryomov 		t->pgid = pgid; /* struct */
1501df28152dSIlya Dryomov 		ceph_pg_to_primary_shard(osdc->osdmap, pi, &pgid, &t->spgid);
150263244fa1SIlya Dryomov 		ceph_osds_copy(&t->acting, &acting);
150363244fa1SIlya Dryomov 		ceph_osds_copy(&t->up, &up);
150463244fa1SIlya Dryomov 		t->size = pi->size;
150563244fa1SIlya Dryomov 		t->min_size = pi->min_size;
150663244fa1SIlya Dryomov 		t->pg_num = pi->pg_num;
150763244fa1SIlya Dryomov 		t->pg_num_mask = pi->pg_num_mask;
150863244fa1SIlya Dryomov 		t->sort_bitwise = sort_bitwise;
1509ae78dd81SIlya Dryomov 		t->recovery_deletes = recovery_deletes;
151063244fa1SIlya Dryomov 
151163244fa1SIlya Dryomov 		t->osd = acting.primary;
151263244fa1SIlya Dryomov 	}
151363244fa1SIlya Dryomov 
15147de030d6SIlya Dryomov 	if (unpaused || legacy_change || force_resend ||
15157de030d6SIlya Dryomov 	    (split && con && CEPH_HAVE_FEATURE(con->peer_features,
15167de030d6SIlya Dryomov 					       RESEND_ON_SPLIT)))
151784ed45dfSIlya Dryomov 		ct_res = CALC_TARGET_NEED_RESEND;
151884ed45dfSIlya Dryomov 	else
151984ed45dfSIlya Dryomov 		ct_res = CALC_TARGET_NO_ACTION;
152084ed45dfSIlya Dryomov 
152163244fa1SIlya Dryomov out:
152263244fa1SIlya Dryomov 	dout("%s t %p -> ct_res %d osd %d\n", __func__, t, ct_res, t->osd);
152363244fa1SIlya Dryomov 	return ct_res;
152463244fa1SIlya Dryomov }
152563244fa1SIlya Dryomov 
1526a02a946dSIlya Dryomov static struct ceph_spg_mapping *alloc_spg_mapping(void)
1527a02a946dSIlya Dryomov {
1528a02a946dSIlya Dryomov 	struct ceph_spg_mapping *spg;
1529a02a946dSIlya Dryomov 
1530a02a946dSIlya Dryomov 	spg = kmalloc(sizeof(*spg), GFP_NOIO);
1531a02a946dSIlya Dryomov 	if (!spg)
1532a02a946dSIlya Dryomov 		return NULL;
1533a02a946dSIlya Dryomov 
1534a02a946dSIlya Dryomov 	RB_CLEAR_NODE(&spg->node);
1535a02a946dSIlya Dryomov 	spg->backoffs = RB_ROOT;
1536a02a946dSIlya Dryomov 	return spg;
1537a02a946dSIlya Dryomov }
1538a02a946dSIlya Dryomov 
1539a02a946dSIlya Dryomov static void free_spg_mapping(struct ceph_spg_mapping *spg)
1540a02a946dSIlya Dryomov {
1541a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&spg->node));
1542a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&spg->backoffs));
1543a02a946dSIlya Dryomov 
1544a02a946dSIlya Dryomov 	kfree(spg);
1545a02a946dSIlya Dryomov }
1546a02a946dSIlya Dryomov 
1547a02a946dSIlya Dryomov /*
1548a02a946dSIlya Dryomov  * rbtree of ceph_spg_mapping for handling map<spg_t, ...>, similar to
1549a02a946dSIlya Dryomov  * ceph_pg_mapping.  Used to track OSD backoffs -- a backoff [range] is
1550a02a946dSIlya Dryomov  * defined only within a specific spgid; it does not pass anything to
1551a02a946dSIlya Dryomov  * children on split, or to another primary.
1552a02a946dSIlya Dryomov  */
1553a02a946dSIlya Dryomov DEFINE_RB_FUNCS2(spg_mapping, struct ceph_spg_mapping, spgid, ceph_spg_compare,
1554a02a946dSIlya Dryomov 		 RB_BYPTR, const struct ceph_spg *, node)
1555a02a946dSIlya Dryomov 
1556a02a946dSIlya Dryomov static u64 hoid_get_bitwise_key(const struct ceph_hobject_id *hoid)
1557a02a946dSIlya Dryomov {
1558a02a946dSIlya Dryomov 	return hoid->is_max ? 0x100000000ull : hoid->hash_reverse_bits;
1559a02a946dSIlya Dryomov }
1560a02a946dSIlya Dryomov 
1561a02a946dSIlya Dryomov static void hoid_get_effective_key(const struct ceph_hobject_id *hoid,
1562a02a946dSIlya Dryomov 				   void **pkey, size_t *pkey_len)
1563a02a946dSIlya Dryomov {
1564a02a946dSIlya Dryomov 	if (hoid->key_len) {
1565a02a946dSIlya Dryomov 		*pkey = hoid->key;
1566a02a946dSIlya Dryomov 		*pkey_len = hoid->key_len;
1567a02a946dSIlya Dryomov 	} else {
1568a02a946dSIlya Dryomov 		*pkey = hoid->oid;
1569a02a946dSIlya Dryomov 		*pkey_len = hoid->oid_len;
1570a02a946dSIlya Dryomov 	}
1571a02a946dSIlya Dryomov }
1572a02a946dSIlya Dryomov 
1573a02a946dSIlya Dryomov static int compare_names(const void *name1, size_t name1_len,
1574a02a946dSIlya Dryomov 			 const void *name2, size_t name2_len)
1575a02a946dSIlya Dryomov {
1576a02a946dSIlya Dryomov 	int ret;
1577a02a946dSIlya Dryomov 
1578a02a946dSIlya Dryomov 	ret = memcmp(name1, name2, min(name1_len, name2_len));
1579a02a946dSIlya Dryomov 	if (!ret) {
1580a02a946dSIlya Dryomov 		if (name1_len < name2_len)
1581a02a946dSIlya Dryomov 			ret = -1;
1582a02a946dSIlya Dryomov 		else if (name1_len > name2_len)
1583a02a946dSIlya Dryomov 			ret = 1;
1584a02a946dSIlya Dryomov 	}
1585a02a946dSIlya Dryomov 	return ret;
1586a02a946dSIlya Dryomov }
1587a02a946dSIlya Dryomov 
1588a02a946dSIlya Dryomov static int hoid_compare(const struct ceph_hobject_id *lhs,
1589a02a946dSIlya Dryomov 			const struct ceph_hobject_id *rhs)
1590a02a946dSIlya Dryomov {
1591a02a946dSIlya Dryomov 	void *effective_key1, *effective_key2;
1592a02a946dSIlya Dryomov 	size_t effective_key1_len, effective_key2_len;
1593a02a946dSIlya Dryomov 	int ret;
1594a02a946dSIlya Dryomov 
1595a02a946dSIlya Dryomov 	if (lhs->is_max < rhs->is_max)
1596a02a946dSIlya Dryomov 		return -1;
1597a02a946dSIlya Dryomov 	if (lhs->is_max > rhs->is_max)
1598a02a946dSIlya Dryomov 		return 1;
1599a02a946dSIlya Dryomov 
1600a02a946dSIlya Dryomov 	if (lhs->pool < rhs->pool)
1601a02a946dSIlya Dryomov 		return -1;
1602a02a946dSIlya Dryomov 	if (lhs->pool > rhs->pool)
1603a02a946dSIlya Dryomov 		return 1;
1604a02a946dSIlya Dryomov 
1605a02a946dSIlya Dryomov 	if (hoid_get_bitwise_key(lhs) < hoid_get_bitwise_key(rhs))
1606a02a946dSIlya Dryomov 		return -1;
1607a02a946dSIlya Dryomov 	if (hoid_get_bitwise_key(lhs) > hoid_get_bitwise_key(rhs))
1608a02a946dSIlya Dryomov 		return 1;
1609a02a946dSIlya Dryomov 
1610a02a946dSIlya Dryomov 	ret = compare_names(lhs->nspace, lhs->nspace_len,
1611a02a946dSIlya Dryomov 			    rhs->nspace, rhs->nspace_len);
1612a02a946dSIlya Dryomov 	if (ret)
1613a02a946dSIlya Dryomov 		return ret;
1614a02a946dSIlya Dryomov 
1615a02a946dSIlya Dryomov 	hoid_get_effective_key(lhs, &effective_key1, &effective_key1_len);
1616a02a946dSIlya Dryomov 	hoid_get_effective_key(rhs, &effective_key2, &effective_key2_len);
1617a02a946dSIlya Dryomov 	ret = compare_names(effective_key1, effective_key1_len,
1618a02a946dSIlya Dryomov 			    effective_key2, effective_key2_len);
1619a02a946dSIlya Dryomov 	if (ret)
1620a02a946dSIlya Dryomov 		return ret;
1621a02a946dSIlya Dryomov 
1622a02a946dSIlya Dryomov 	ret = compare_names(lhs->oid, lhs->oid_len, rhs->oid, rhs->oid_len);
1623a02a946dSIlya Dryomov 	if (ret)
1624a02a946dSIlya Dryomov 		return ret;
1625a02a946dSIlya Dryomov 
1626a02a946dSIlya Dryomov 	if (lhs->snapid < rhs->snapid)
1627a02a946dSIlya Dryomov 		return -1;
1628a02a946dSIlya Dryomov 	if (lhs->snapid > rhs->snapid)
1629a02a946dSIlya Dryomov 		return 1;
1630a02a946dSIlya Dryomov 
1631a02a946dSIlya Dryomov 	return 0;
1632a02a946dSIlya Dryomov }
1633a02a946dSIlya Dryomov 
1634a02a946dSIlya Dryomov /*
1635a02a946dSIlya Dryomov  * For decoding ->begin and ->end of MOSDBackoff only -- no MIN/MAX
1636a02a946dSIlya Dryomov  * compat stuff here.
1637a02a946dSIlya Dryomov  *
1638a02a946dSIlya Dryomov  * Assumes @hoid is zero-initialized.
1639a02a946dSIlya Dryomov  */
1640a02a946dSIlya Dryomov static int decode_hoid(void **p, void *end, struct ceph_hobject_id *hoid)
1641a02a946dSIlya Dryomov {
1642a02a946dSIlya Dryomov 	u8 struct_v;
1643a02a946dSIlya Dryomov 	u32 struct_len;
1644a02a946dSIlya Dryomov 	int ret;
1645a02a946dSIlya Dryomov 
1646a02a946dSIlya Dryomov 	ret = ceph_start_decoding(p, end, 4, "hobject_t", &struct_v,
1647a02a946dSIlya Dryomov 				  &struct_len);
1648a02a946dSIlya Dryomov 	if (ret)
1649a02a946dSIlya Dryomov 		return ret;
1650a02a946dSIlya Dryomov 
1651a02a946dSIlya Dryomov 	if (struct_v < 4) {
1652a02a946dSIlya Dryomov 		pr_err("got struct_v %d < 4 of hobject_t\n", struct_v);
1653a02a946dSIlya Dryomov 		goto e_inval;
1654a02a946dSIlya Dryomov 	}
1655a02a946dSIlya Dryomov 
1656a02a946dSIlya Dryomov 	hoid->key = ceph_extract_encoded_string(p, end, &hoid->key_len,
1657a02a946dSIlya Dryomov 						GFP_NOIO);
1658a02a946dSIlya Dryomov 	if (IS_ERR(hoid->key)) {
1659a02a946dSIlya Dryomov 		ret = PTR_ERR(hoid->key);
1660a02a946dSIlya Dryomov 		hoid->key = NULL;
1661a02a946dSIlya Dryomov 		return ret;
1662a02a946dSIlya Dryomov 	}
1663a02a946dSIlya Dryomov 
1664a02a946dSIlya Dryomov 	hoid->oid = ceph_extract_encoded_string(p, end, &hoid->oid_len,
1665a02a946dSIlya Dryomov 						GFP_NOIO);
1666a02a946dSIlya Dryomov 	if (IS_ERR(hoid->oid)) {
1667a02a946dSIlya Dryomov 		ret = PTR_ERR(hoid->oid);
1668a02a946dSIlya Dryomov 		hoid->oid = NULL;
1669a02a946dSIlya Dryomov 		return ret;
1670a02a946dSIlya Dryomov 	}
1671a02a946dSIlya Dryomov 
1672a02a946dSIlya Dryomov 	ceph_decode_64_safe(p, end, hoid->snapid, e_inval);
1673a02a946dSIlya Dryomov 	ceph_decode_32_safe(p, end, hoid->hash, e_inval);
1674a02a946dSIlya Dryomov 	ceph_decode_8_safe(p, end, hoid->is_max, e_inval);
1675a02a946dSIlya Dryomov 
1676a02a946dSIlya Dryomov 	hoid->nspace = ceph_extract_encoded_string(p, end, &hoid->nspace_len,
1677a02a946dSIlya Dryomov 						   GFP_NOIO);
1678a02a946dSIlya Dryomov 	if (IS_ERR(hoid->nspace)) {
1679a02a946dSIlya Dryomov 		ret = PTR_ERR(hoid->nspace);
1680a02a946dSIlya Dryomov 		hoid->nspace = NULL;
1681a02a946dSIlya Dryomov 		return ret;
1682a02a946dSIlya Dryomov 	}
1683a02a946dSIlya Dryomov 
1684a02a946dSIlya Dryomov 	ceph_decode_64_safe(p, end, hoid->pool, e_inval);
1685a02a946dSIlya Dryomov 
1686a02a946dSIlya Dryomov 	ceph_hoid_build_hash_cache(hoid);
1687a02a946dSIlya Dryomov 	return 0;
1688a02a946dSIlya Dryomov 
1689a02a946dSIlya Dryomov e_inval:
1690a02a946dSIlya Dryomov 	return -EINVAL;
1691a02a946dSIlya Dryomov }
1692a02a946dSIlya Dryomov 
1693a02a946dSIlya Dryomov static int hoid_encoding_size(const struct ceph_hobject_id *hoid)
1694a02a946dSIlya Dryomov {
1695a02a946dSIlya Dryomov 	return 8 + 4 + 1 + 8 + /* snapid, hash, is_max, pool */
1696a02a946dSIlya Dryomov 	       4 + hoid->key_len + 4 + hoid->oid_len + 4 + hoid->nspace_len;
1697a02a946dSIlya Dryomov }
1698a02a946dSIlya Dryomov 
1699a02a946dSIlya Dryomov static void encode_hoid(void **p, void *end, const struct ceph_hobject_id *hoid)
1700a02a946dSIlya Dryomov {
1701a02a946dSIlya Dryomov 	ceph_start_encoding(p, 4, 3, hoid_encoding_size(hoid));
1702a02a946dSIlya Dryomov 	ceph_encode_string(p, end, hoid->key, hoid->key_len);
1703a02a946dSIlya Dryomov 	ceph_encode_string(p, end, hoid->oid, hoid->oid_len);
1704a02a946dSIlya Dryomov 	ceph_encode_64(p, hoid->snapid);
1705a02a946dSIlya Dryomov 	ceph_encode_32(p, hoid->hash);
1706a02a946dSIlya Dryomov 	ceph_encode_8(p, hoid->is_max);
1707a02a946dSIlya Dryomov 	ceph_encode_string(p, end, hoid->nspace, hoid->nspace_len);
1708a02a946dSIlya Dryomov 	ceph_encode_64(p, hoid->pool);
1709a02a946dSIlya Dryomov }
1710a02a946dSIlya Dryomov 
1711a02a946dSIlya Dryomov static void free_hoid(struct ceph_hobject_id *hoid)
1712a02a946dSIlya Dryomov {
1713a02a946dSIlya Dryomov 	if (hoid) {
1714a02a946dSIlya Dryomov 		kfree(hoid->key);
1715a02a946dSIlya Dryomov 		kfree(hoid->oid);
1716a02a946dSIlya Dryomov 		kfree(hoid->nspace);
1717a02a946dSIlya Dryomov 		kfree(hoid);
1718a02a946dSIlya Dryomov 	}
1719a02a946dSIlya Dryomov }
1720a02a946dSIlya Dryomov 
1721a02a946dSIlya Dryomov static struct ceph_osd_backoff *alloc_backoff(void)
1722a02a946dSIlya Dryomov {
1723a02a946dSIlya Dryomov 	struct ceph_osd_backoff *backoff;
1724a02a946dSIlya Dryomov 
1725a02a946dSIlya Dryomov 	backoff = kzalloc(sizeof(*backoff), GFP_NOIO);
1726a02a946dSIlya Dryomov 	if (!backoff)
1727a02a946dSIlya Dryomov 		return NULL;
1728a02a946dSIlya Dryomov 
1729a02a946dSIlya Dryomov 	RB_CLEAR_NODE(&backoff->spg_node);
1730a02a946dSIlya Dryomov 	RB_CLEAR_NODE(&backoff->id_node);
1731a02a946dSIlya Dryomov 	return backoff;
1732a02a946dSIlya Dryomov }
1733a02a946dSIlya Dryomov 
1734a02a946dSIlya Dryomov static void free_backoff(struct ceph_osd_backoff *backoff)
1735a02a946dSIlya Dryomov {
1736a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&backoff->spg_node));
1737a02a946dSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&backoff->id_node));
1738a02a946dSIlya Dryomov 
1739a02a946dSIlya Dryomov 	free_hoid(backoff->begin);
1740a02a946dSIlya Dryomov 	free_hoid(backoff->end);
1741a02a946dSIlya Dryomov 	kfree(backoff);
1742a02a946dSIlya Dryomov }
1743a02a946dSIlya Dryomov 
1744a02a946dSIlya Dryomov /*
1745a02a946dSIlya Dryomov  * Within a specific spgid, backoffs are managed by ->begin hoid.
1746a02a946dSIlya Dryomov  */
1747a02a946dSIlya Dryomov DEFINE_RB_INSDEL_FUNCS2(backoff, struct ceph_osd_backoff, begin, hoid_compare,
1748a02a946dSIlya Dryomov 			RB_BYVAL, spg_node);
1749a02a946dSIlya Dryomov 
1750a02a946dSIlya Dryomov static struct ceph_osd_backoff *lookup_containing_backoff(struct rb_root *root,
1751a02a946dSIlya Dryomov 					    const struct ceph_hobject_id *hoid)
1752a02a946dSIlya Dryomov {
1753a02a946dSIlya Dryomov 	struct rb_node *n = root->rb_node;
1754a02a946dSIlya Dryomov 
1755a02a946dSIlya Dryomov 	while (n) {
1756a02a946dSIlya Dryomov 		struct ceph_osd_backoff *cur =
1757a02a946dSIlya Dryomov 		    rb_entry(n, struct ceph_osd_backoff, spg_node);
1758a02a946dSIlya Dryomov 		int cmp;
1759a02a946dSIlya Dryomov 
1760a02a946dSIlya Dryomov 		cmp = hoid_compare(hoid, cur->begin);
1761a02a946dSIlya Dryomov 		if (cmp < 0) {
1762a02a946dSIlya Dryomov 			n = n->rb_left;
1763a02a946dSIlya Dryomov 		} else if (cmp > 0) {
1764a02a946dSIlya Dryomov 			if (hoid_compare(hoid, cur->end) < 0)
1765a02a946dSIlya Dryomov 				return cur;
1766a02a946dSIlya Dryomov 
1767a02a946dSIlya Dryomov 			n = n->rb_right;
1768a02a946dSIlya Dryomov 		} else {
1769a02a946dSIlya Dryomov 			return cur;
1770a02a946dSIlya Dryomov 		}
1771a02a946dSIlya Dryomov 	}
1772a02a946dSIlya Dryomov 
1773a02a946dSIlya Dryomov 	return NULL;
1774a02a946dSIlya Dryomov }
1775a02a946dSIlya Dryomov 
1776a02a946dSIlya Dryomov /*
1777a02a946dSIlya Dryomov  * Each backoff has a unique id within its OSD session.
1778a02a946dSIlya Dryomov  */
1779a02a946dSIlya Dryomov DEFINE_RB_FUNCS(backoff_by_id, struct ceph_osd_backoff, id, id_node)
1780a02a946dSIlya Dryomov 
1781a02a946dSIlya Dryomov static void clear_backoffs(struct ceph_osd *osd)
1782a02a946dSIlya Dryomov {
1783a02a946dSIlya Dryomov 	while (!RB_EMPTY_ROOT(&osd->o_backoff_mappings)) {
1784a02a946dSIlya Dryomov 		struct ceph_spg_mapping *spg =
1785a02a946dSIlya Dryomov 		    rb_entry(rb_first(&osd->o_backoff_mappings),
1786a02a946dSIlya Dryomov 			     struct ceph_spg_mapping, node);
1787a02a946dSIlya Dryomov 
1788a02a946dSIlya Dryomov 		while (!RB_EMPTY_ROOT(&spg->backoffs)) {
1789a02a946dSIlya Dryomov 			struct ceph_osd_backoff *backoff =
1790a02a946dSIlya Dryomov 			    rb_entry(rb_first(&spg->backoffs),
1791a02a946dSIlya Dryomov 				     struct ceph_osd_backoff, spg_node);
1792a02a946dSIlya Dryomov 
1793a02a946dSIlya Dryomov 			erase_backoff(&spg->backoffs, backoff);
1794a02a946dSIlya Dryomov 			erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
1795a02a946dSIlya Dryomov 			free_backoff(backoff);
1796a02a946dSIlya Dryomov 		}
1797a02a946dSIlya Dryomov 		erase_spg_mapping(&osd->o_backoff_mappings, spg);
1798a02a946dSIlya Dryomov 		free_spg_mapping(spg);
1799a02a946dSIlya Dryomov 	}
1800a02a946dSIlya Dryomov }
1801a02a946dSIlya Dryomov 
1802a02a946dSIlya Dryomov /*
1803a02a946dSIlya Dryomov  * Set up a temporary, non-owning view into @t.
1804a02a946dSIlya Dryomov  */
1805a02a946dSIlya Dryomov static void hoid_fill_from_target(struct ceph_hobject_id *hoid,
1806a02a946dSIlya Dryomov 				  const struct ceph_osd_request_target *t)
1807a02a946dSIlya Dryomov {
1808a02a946dSIlya Dryomov 	hoid->key = NULL;
1809a02a946dSIlya Dryomov 	hoid->key_len = 0;
1810a02a946dSIlya Dryomov 	hoid->oid = t->target_oid.name;
1811a02a946dSIlya Dryomov 	hoid->oid_len = t->target_oid.name_len;
1812a02a946dSIlya Dryomov 	hoid->snapid = CEPH_NOSNAP;
1813a02a946dSIlya Dryomov 	hoid->hash = t->pgid.seed;
1814a02a946dSIlya Dryomov 	hoid->is_max = false;
1815a02a946dSIlya Dryomov 	if (t->target_oloc.pool_ns) {
1816a02a946dSIlya Dryomov 		hoid->nspace = t->target_oloc.pool_ns->str;
1817a02a946dSIlya Dryomov 		hoid->nspace_len = t->target_oloc.pool_ns->len;
1818a02a946dSIlya Dryomov 	} else {
1819a02a946dSIlya Dryomov 		hoid->nspace = NULL;
1820a02a946dSIlya Dryomov 		hoid->nspace_len = 0;
1821a02a946dSIlya Dryomov 	}
1822a02a946dSIlya Dryomov 	hoid->pool = t->target_oloc.pool;
1823a02a946dSIlya Dryomov 	ceph_hoid_build_hash_cache(hoid);
1824a02a946dSIlya Dryomov }
1825a02a946dSIlya Dryomov 
1826a02a946dSIlya Dryomov static bool should_plug_request(struct ceph_osd_request *req)
1827a02a946dSIlya Dryomov {
1828a02a946dSIlya Dryomov 	struct ceph_osd *osd = req->r_osd;
1829a02a946dSIlya Dryomov 	struct ceph_spg_mapping *spg;
1830a02a946dSIlya Dryomov 	struct ceph_osd_backoff *backoff;
1831a02a946dSIlya Dryomov 	struct ceph_hobject_id hoid;
1832a02a946dSIlya Dryomov 
1833a02a946dSIlya Dryomov 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &req->r_t.spgid);
1834a02a946dSIlya Dryomov 	if (!spg)
1835a02a946dSIlya Dryomov 		return false;
1836a02a946dSIlya Dryomov 
1837a02a946dSIlya Dryomov 	hoid_fill_from_target(&hoid, &req->r_t);
1838a02a946dSIlya Dryomov 	backoff = lookup_containing_backoff(&spg->backoffs, &hoid);
1839a02a946dSIlya Dryomov 	if (!backoff)
1840a02a946dSIlya Dryomov 		return false;
1841a02a946dSIlya Dryomov 
1842a02a946dSIlya Dryomov 	dout("%s req %p tid %llu backoff osd%d spgid %llu.%xs%d id %llu\n",
1843a02a946dSIlya Dryomov 	     __func__, req, req->r_tid, osd->o_osd, backoff->spgid.pgid.pool,
1844a02a946dSIlya Dryomov 	     backoff->spgid.pgid.seed, backoff->spgid.shard, backoff->id);
1845a02a946dSIlya Dryomov 	return true;
1846a02a946dSIlya Dryomov }
1847a02a946dSIlya Dryomov 
1848bb873b53SIlya Dryomov static void setup_request_data(struct ceph_osd_request *req,
1849bb873b53SIlya Dryomov 			       struct ceph_msg *msg)
18503d14c5d2SYehuda Sadeh {
1851bb873b53SIlya Dryomov 	u32 data_len = 0;
1852bb873b53SIlya Dryomov 	int i;
18533d14c5d2SYehuda Sadeh 
1854bb873b53SIlya Dryomov 	if (!list_empty(&msg->data))
1855bb873b53SIlya Dryomov 		return;
18563d14c5d2SYehuda Sadeh 
1857bb873b53SIlya Dryomov 	WARN_ON(msg->data_length);
1858bb873b53SIlya Dryomov 	for (i = 0; i < req->r_num_ops; i++) {
1859bb873b53SIlya Dryomov 		struct ceph_osd_req_op *op = &req->r_ops[i];
1860bb873b53SIlya Dryomov 
1861bb873b53SIlya Dryomov 		switch (op->op) {
1862bb873b53SIlya Dryomov 		/* request */
1863bb873b53SIlya Dryomov 		case CEPH_OSD_OP_WRITE:
1864bb873b53SIlya Dryomov 		case CEPH_OSD_OP_WRITEFULL:
1865bb873b53SIlya Dryomov 			WARN_ON(op->indata_len != op->extent.length);
1866bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(msg, &op->extent.osd_data);
1867bb873b53SIlya Dryomov 			break;
1868bb873b53SIlya Dryomov 		case CEPH_OSD_OP_SETXATTR:
1869bb873b53SIlya Dryomov 		case CEPH_OSD_OP_CMPXATTR:
1870bb873b53SIlya Dryomov 			WARN_ON(op->indata_len != op->xattr.name_len +
1871bb873b53SIlya Dryomov 						  op->xattr.value_len);
1872bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(msg, &op->xattr.osd_data);
1873bb873b53SIlya Dryomov 			break;
1874922dab61SIlya Dryomov 		case CEPH_OSD_OP_NOTIFY_ACK:
1875922dab61SIlya Dryomov 			ceph_osdc_msg_data_add(msg,
1876922dab61SIlya Dryomov 					       &op->notify_ack.request_data);
1877922dab61SIlya Dryomov 			break;
1878bb873b53SIlya Dryomov 
1879bb873b53SIlya Dryomov 		/* reply */
1880bb873b53SIlya Dryomov 		case CEPH_OSD_OP_STAT:
1881bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(req->r_reply,
1882bb873b53SIlya Dryomov 					       &op->raw_data_in);
1883bb873b53SIlya Dryomov 			break;
1884bb873b53SIlya Dryomov 		case CEPH_OSD_OP_READ:
1885bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(req->r_reply,
1886bb873b53SIlya Dryomov 					       &op->extent.osd_data);
1887bb873b53SIlya Dryomov 			break;
1888a4ed38d7SDouglas Fuller 		case CEPH_OSD_OP_LIST_WATCHERS:
1889a4ed38d7SDouglas Fuller 			ceph_osdc_msg_data_add(req->r_reply,
1890a4ed38d7SDouglas Fuller 					       &op->list_watchers.response_data);
1891a4ed38d7SDouglas Fuller 			break;
1892bb873b53SIlya Dryomov 
1893bb873b53SIlya Dryomov 		/* both */
1894bb873b53SIlya Dryomov 		case CEPH_OSD_OP_CALL:
1895bb873b53SIlya Dryomov 			WARN_ON(op->indata_len != op->cls.class_len +
1896bb873b53SIlya Dryomov 						  op->cls.method_len +
1897bb873b53SIlya Dryomov 						  op->cls.indata_len);
1898bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(msg, &op->cls.request_info);
1899bb873b53SIlya Dryomov 			/* optional, can be NONE */
1900bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(msg, &op->cls.request_data);
1901bb873b53SIlya Dryomov 			/* optional, can be NONE */
1902bb873b53SIlya Dryomov 			ceph_osdc_msg_data_add(req->r_reply,
1903bb873b53SIlya Dryomov 					       &op->cls.response_data);
1904bb873b53SIlya Dryomov 			break;
190519079203SIlya Dryomov 		case CEPH_OSD_OP_NOTIFY:
190619079203SIlya Dryomov 			ceph_osdc_msg_data_add(msg,
190719079203SIlya Dryomov 					       &op->notify.request_data);
190819079203SIlya Dryomov 			ceph_osdc_msg_data_add(req->r_reply,
190919079203SIlya Dryomov 					       &op->notify.response_data);
191019079203SIlya Dryomov 			break;
1911bb873b53SIlya Dryomov 		}
1912bb873b53SIlya Dryomov 
1913bb873b53SIlya Dryomov 		data_len += op->indata_len;
1914bb873b53SIlya Dryomov 	}
1915bb873b53SIlya Dryomov 
1916bb873b53SIlya Dryomov 	WARN_ON(data_len != msg->data_length);
1917bb873b53SIlya Dryomov }
1918bb873b53SIlya Dryomov 
19192e59ffd1SIlya Dryomov static void encode_pgid(void **p, const struct ceph_pg *pgid)
19202e59ffd1SIlya Dryomov {
19212e59ffd1SIlya Dryomov 	ceph_encode_8(p, 1);
19222e59ffd1SIlya Dryomov 	ceph_encode_64(p, pgid->pool);
19232e59ffd1SIlya Dryomov 	ceph_encode_32(p, pgid->seed);
19242e59ffd1SIlya Dryomov 	ceph_encode_32(p, -1); /* preferred */
19252e59ffd1SIlya Dryomov }
19262e59ffd1SIlya Dryomov 
19278cb441c0SIlya Dryomov static void encode_spgid(void **p, const struct ceph_spg *spgid)
19288cb441c0SIlya Dryomov {
19298cb441c0SIlya Dryomov 	ceph_start_encoding(p, 1, 1, CEPH_PGID_ENCODING_LEN + 1);
19308cb441c0SIlya Dryomov 	encode_pgid(p, &spgid->pgid);
19318cb441c0SIlya Dryomov 	ceph_encode_8(p, spgid->shard);
19328cb441c0SIlya Dryomov }
19338cb441c0SIlya Dryomov 
19342e59ffd1SIlya Dryomov static void encode_oloc(void **p, void *end,
19352e59ffd1SIlya Dryomov 			const struct ceph_object_locator *oloc)
19362e59ffd1SIlya Dryomov {
19372e59ffd1SIlya Dryomov 	ceph_start_encoding(p, 5, 4, ceph_oloc_encoding_size(oloc));
19382e59ffd1SIlya Dryomov 	ceph_encode_64(p, oloc->pool);
19392e59ffd1SIlya Dryomov 	ceph_encode_32(p, -1); /* preferred */
19402e59ffd1SIlya Dryomov 	ceph_encode_32(p, 0);  /* key len */
19412e59ffd1SIlya Dryomov 	if (oloc->pool_ns)
19422e59ffd1SIlya Dryomov 		ceph_encode_string(p, end, oloc->pool_ns->str,
19432e59ffd1SIlya Dryomov 				   oloc->pool_ns->len);
19442e59ffd1SIlya Dryomov 	else
19452e59ffd1SIlya Dryomov 		ceph_encode_32(p, 0);
19462e59ffd1SIlya Dryomov }
19472e59ffd1SIlya Dryomov 
19488cb441c0SIlya Dryomov static void encode_request_partial(struct ceph_osd_request *req,
19498cb441c0SIlya Dryomov 				   struct ceph_msg *msg)
1950bb873b53SIlya Dryomov {
1951bb873b53SIlya Dryomov 	void *p = msg->front.iov_base;
1952bb873b53SIlya Dryomov 	void *const end = p + msg->front_alloc_len;
1953bb873b53SIlya Dryomov 	u32 data_len = 0;
1954bb873b53SIlya Dryomov 	int i;
1955bb873b53SIlya Dryomov 
1956bb873b53SIlya Dryomov 	if (req->r_flags & CEPH_OSD_FLAG_WRITE) {
1957bb873b53SIlya Dryomov 		/* snapshots aren't writeable */
1958bb873b53SIlya Dryomov 		WARN_ON(req->r_snapid != CEPH_NOSNAP);
1959bb873b53SIlya Dryomov 	} else {
1960bb873b53SIlya Dryomov 		WARN_ON(req->r_mtime.tv_sec || req->r_mtime.tv_nsec ||
1961bb873b53SIlya Dryomov 			req->r_data_offset || req->r_snapc);
1962bb873b53SIlya Dryomov 	}
1963bb873b53SIlya Dryomov 
1964bb873b53SIlya Dryomov 	setup_request_data(req, msg);
1965bb873b53SIlya Dryomov 
19668cb441c0SIlya Dryomov 	encode_spgid(&p, &req->r_t.spgid); /* actual spg */
19678cb441c0SIlya Dryomov 	ceph_encode_32(&p, req->r_t.pgid.seed); /* raw hash */
1968bb873b53SIlya Dryomov 	ceph_encode_32(&p, req->r_osdc->osdmap->epoch);
1969bb873b53SIlya Dryomov 	ceph_encode_32(&p, req->r_flags);
19708cb441c0SIlya Dryomov 
19718cb441c0SIlya Dryomov 	/* reqid */
19728cb441c0SIlya Dryomov 	ceph_start_encoding(&p, 2, 2, sizeof(struct ceph_osd_reqid));
19738cb441c0SIlya Dryomov 	memset(p, 0, sizeof(struct ceph_osd_reqid));
19748cb441c0SIlya Dryomov 	p += sizeof(struct ceph_osd_reqid);
19758cb441c0SIlya Dryomov 
19768cb441c0SIlya Dryomov 	/* trace */
19778cb441c0SIlya Dryomov 	memset(p, 0, sizeof(struct ceph_blkin_trace_info));
19788cb441c0SIlya Dryomov 	p += sizeof(struct ceph_blkin_trace_info);
19798cb441c0SIlya Dryomov 
19808cb441c0SIlya Dryomov 	ceph_encode_32(&p, 0); /* client_inc, always 0 */
1981fac02ddfSArnd Bergmann 	ceph_encode_timespec64(p, &req->r_mtime);
1982bb873b53SIlya Dryomov 	p += sizeof(struct ceph_timespec);
1983aa26d662SJeff Layton 
19842e59ffd1SIlya Dryomov 	encode_oloc(&p, end, &req->r_t.target_oloc);
19852e59ffd1SIlya Dryomov 	ceph_encode_string(&p, end, req->r_t.target_oid.name,
19862e59ffd1SIlya Dryomov 			   req->r_t.target_oid.name_len);
1987bb873b53SIlya Dryomov 
1988bb873b53SIlya Dryomov 	/* ops, can imply data */
1989bb873b53SIlya Dryomov 	ceph_encode_16(&p, req->r_num_ops);
1990bb873b53SIlya Dryomov 	for (i = 0; i < req->r_num_ops; i++) {
1991bb873b53SIlya Dryomov 		data_len += osd_req_encode_op(p, &req->r_ops[i]);
1992bb873b53SIlya Dryomov 		p += sizeof(struct ceph_osd_op);
1993bb873b53SIlya Dryomov 	}
1994bb873b53SIlya Dryomov 
1995bb873b53SIlya Dryomov 	ceph_encode_64(&p, req->r_snapid); /* snapid */
1996bb873b53SIlya Dryomov 	if (req->r_snapc) {
1997bb873b53SIlya Dryomov 		ceph_encode_64(&p, req->r_snapc->seq);
1998bb873b53SIlya Dryomov 		ceph_encode_32(&p, req->r_snapc->num_snaps);
1999bb873b53SIlya Dryomov 		for (i = 0; i < req->r_snapc->num_snaps; i++)
2000bb873b53SIlya Dryomov 			ceph_encode_64(&p, req->r_snapc->snaps[i]);
2001bb873b53SIlya Dryomov 	} else {
2002bb873b53SIlya Dryomov 		ceph_encode_64(&p, 0); /* snap_seq */
2003bb873b53SIlya Dryomov 		ceph_encode_32(&p, 0); /* snaps len */
2004bb873b53SIlya Dryomov 	}
2005bb873b53SIlya Dryomov 
2006bb873b53SIlya Dryomov 	ceph_encode_32(&p, req->r_attempts); /* retry_attempt */
2007986e8989SIlya Dryomov 	BUG_ON(p > end - 8); /* space for features */
2008bb873b53SIlya Dryomov 
20098cb441c0SIlya Dryomov 	msg->hdr.version = cpu_to_le16(8); /* MOSDOp v8 */
20108cb441c0SIlya Dryomov 	/* front_len is finalized in encode_request_finish() */
2011986e8989SIlya Dryomov 	msg->front.iov_len = p - msg->front.iov_base;
2012986e8989SIlya Dryomov 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2013bb873b53SIlya Dryomov 	msg->hdr.data_len = cpu_to_le32(data_len);
2014bb873b53SIlya Dryomov 	/*
2015bb873b53SIlya Dryomov 	 * The header "data_off" is a hint to the receiver allowing it
2016bb873b53SIlya Dryomov 	 * to align received data into its buffers such that there's no
2017bb873b53SIlya Dryomov 	 * need to re-copy it before writing it to disk (direct I/O).
2018bb873b53SIlya Dryomov 	 */
2019bb873b53SIlya Dryomov 	msg->hdr.data_off = cpu_to_le16(req->r_data_offset);
2020bb873b53SIlya Dryomov 
20218cb441c0SIlya Dryomov 	dout("%s req %p msg %p oid %s oid_len %d\n", __func__, req, msg,
20228cb441c0SIlya Dryomov 	     req->r_t.target_oid.name, req->r_t.target_oid.name_len);
20238cb441c0SIlya Dryomov }
20248cb441c0SIlya Dryomov 
20258cb441c0SIlya Dryomov static void encode_request_finish(struct ceph_msg *msg)
20268cb441c0SIlya Dryomov {
20278cb441c0SIlya Dryomov 	void *p = msg->front.iov_base;
2028986e8989SIlya Dryomov 	void *const partial_end = p + msg->front.iov_len;
20298cb441c0SIlya Dryomov 	void *const end = p + msg->front_alloc_len;
20308cb441c0SIlya Dryomov 
20318cb441c0SIlya Dryomov 	if (CEPH_HAVE_FEATURE(msg->con->peer_features, RESEND_ON_SPLIT)) {
20328cb441c0SIlya Dryomov 		/* luminous OSD -- encode features and be done */
2033986e8989SIlya Dryomov 		p = partial_end;
20348cb441c0SIlya Dryomov 		ceph_encode_64(&p, msg->con->peer_features);
20358cb441c0SIlya Dryomov 	} else {
20368cb441c0SIlya Dryomov 		struct {
20378cb441c0SIlya Dryomov 			char spgid[CEPH_ENCODING_START_BLK_LEN +
20388cb441c0SIlya Dryomov 				   CEPH_PGID_ENCODING_LEN + 1];
20398cb441c0SIlya Dryomov 			__le32 hash;
20408cb441c0SIlya Dryomov 			__le32 epoch;
20418cb441c0SIlya Dryomov 			__le32 flags;
20428cb441c0SIlya Dryomov 			char reqid[CEPH_ENCODING_START_BLK_LEN +
20438cb441c0SIlya Dryomov 				   sizeof(struct ceph_osd_reqid)];
20448cb441c0SIlya Dryomov 			char trace[sizeof(struct ceph_blkin_trace_info)];
20458cb441c0SIlya Dryomov 			__le32 client_inc;
20468cb441c0SIlya Dryomov 			struct ceph_timespec mtime;
20478cb441c0SIlya Dryomov 		} __packed head;
20488cb441c0SIlya Dryomov 		struct ceph_pg pgid;
20498cb441c0SIlya Dryomov 		void *oloc, *oid, *tail;
20508cb441c0SIlya Dryomov 		int oloc_len, oid_len, tail_len;
20518cb441c0SIlya Dryomov 		int len;
20528cb441c0SIlya Dryomov 
20538cb441c0SIlya Dryomov 		/*
20548cb441c0SIlya Dryomov 		 * Pre-luminous OSD -- reencode v8 into v4 using @head
20558cb441c0SIlya Dryomov 		 * as a temporary buffer.  Encode the raw PG; the rest
20568cb441c0SIlya Dryomov 		 * is just a matter of moving oloc, oid and tail blobs
20578cb441c0SIlya Dryomov 		 * around.
20588cb441c0SIlya Dryomov 		 */
20598cb441c0SIlya Dryomov 		memcpy(&head, p, sizeof(head));
20608cb441c0SIlya Dryomov 		p += sizeof(head);
20618cb441c0SIlya Dryomov 
20628cb441c0SIlya Dryomov 		oloc = p;
20638cb441c0SIlya Dryomov 		p += CEPH_ENCODING_START_BLK_LEN;
20648cb441c0SIlya Dryomov 		pgid.pool = ceph_decode_64(&p);
20658cb441c0SIlya Dryomov 		p += 4 + 4; /* preferred, key len */
20668cb441c0SIlya Dryomov 		len = ceph_decode_32(&p);
20678cb441c0SIlya Dryomov 		p += len;   /* nspace */
20688cb441c0SIlya Dryomov 		oloc_len = p - oloc;
20698cb441c0SIlya Dryomov 
20708cb441c0SIlya Dryomov 		oid = p;
20718cb441c0SIlya Dryomov 		len = ceph_decode_32(&p);
20728cb441c0SIlya Dryomov 		p += len;
20738cb441c0SIlya Dryomov 		oid_len = p - oid;
20748cb441c0SIlya Dryomov 
20758cb441c0SIlya Dryomov 		tail = p;
2076986e8989SIlya Dryomov 		tail_len = partial_end - p;
20778cb441c0SIlya Dryomov 
20788cb441c0SIlya Dryomov 		p = msg->front.iov_base;
20798cb441c0SIlya Dryomov 		ceph_encode_copy(&p, &head.client_inc, sizeof(head.client_inc));
20808cb441c0SIlya Dryomov 		ceph_encode_copy(&p, &head.epoch, sizeof(head.epoch));
20818cb441c0SIlya Dryomov 		ceph_encode_copy(&p, &head.flags, sizeof(head.flags));
20828cb441c0SIlya Dryomov 		ceph_encode_copy(&p, &head.mtime, sizeof(head.mtime));
20838cb441c0SIlya Dryomov 
20848cb441c0SIlya Dryomov 		/* reassert_version */
20858cb441c0SIlya Dryomov 		memset(p, 0, sizeof(struct ceph_eversion));
20868cb441c0SIlya Dryomov 		p += sizeof(struct ceph_eversion);
20878cb441c0SIlya Dryomov 
20888cb441c0SIlya Dryomov 		BUG_ON(p >= oloc);
20898cb441c0SIlya Dryomov 		memmove(p, oloc, oloc_len);
20908cb441c0SIlya Dryomov 		p += oloc_len;
20918cb441c0SIlya Dryomov 
20928cb441c0SIlya Dryomov 		pgid.seed = le32_to_cpu(head.hash);
20938cb441c0SIlya Dryomov 		encode_pgid(&p, &pgid); /* raw pg */
20948cb441c0SIlya Dryomov 
20958cb441c0SIlya Dryomov 		BUG_ON(p >= oid);
20968cb441c0SIlya Dryomov 		memmove(p, oid, oid_len);
20978cb441c0SIlya Dryomov 		p += oid_len;
20988cb441c0SIlya Dryomov 
20998cb441c0SIlya Dryomov 		/* tail -- ops, snapid, snapc, retry_attempt */
21008cb441c0SIlya Dryomov 		BUG_ON(p >= tail);
21018cb441c0SIlya Dryomov 		memmove(p, tail, tail_len);
21028cb441c0SIlya Dryomov 		p += tail_len;
21038cb441c0SIlya Dryomov 
21048cb441c0SIlya Dryomov 		msg->hdr.version = cpu_to_le16(4); /* MOSDOp v4 */
21058cb441c0SIlya Dryomov 	}
21068cb441c0SIlya Dryomov 
21078cb441c0SIlya Dryomov 	BUG_ON(p > end);
21088cb441c0SIlya Dryomov 	msg->front.iov_len = p - msg->front.iov_base;
21098cb441c0SIlya Dryomov 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
21108cb441c0SIlya Dryomov 
21118cb441c0SIlya Dryomov 	dout("%s msg %p tid %llu %u+%u+%u v%d\n", __func__, msg,
21128cb441c0SIlya Dryomov 	     le64_to_cpu(msg->hdr.tid), le32_to_cpu(msg->hdr.front_len),
21138cb441c0SIlya Dryomov 	     le32_to_cpu(msg->hdr.middle_len), le32_to_cpu(msg->hdr.data_len),
21148cb441c0SIlya Dryomov 	     le16_to_cpu(msg->hdr.version));
2115bb873b53SIlya Dryomov }
2116bb873b53SIlya Dryomov 
2117bb873b53SIlya Dryomov /*
2118bb873b53SIlya Dryomov  * @req has to be assigned a tid and registered.
2119bb873b53SIlya Dryomov  */
2120bb873b53SIlya Dryomov static void send_request(struct ceph_osd_request *req)
2121bb873b53SIlya Dryomov {
2122bb873b53SIlya Dryomov 	struct ceph_osd *osd = req->r_osd;
2123bb873b53SIlya Dryomov 
21245aea3dcdSIlya Dryomov 	verify_osd_locked(osd);
2125bb873b53SIlya Dryomov 	WARN_ON(osd->o_osd != req->r_t.osd);
2126bb873b53SIlya Dryomov 
2127a02a946dSIlya Dryomov 	/* backoff? */
2128a02a946dSIlya Dryomov 	if (should_plug_request(req))
2129a02a946dSIlya Dryomov 		return;
2130a02a946dSIlya Dryomov 
21315aea3dcdSIlya Dryomov 	/*
21325aea3dcdSIlya Dryomov 	 * We may have a previously queued request message hanging
21335aea3dcdSIlya Dryomov 	 * around.  Cancel it to avoid corrupting the msgr.
21345aea3dcdSIlya Dryomov 	 */
21355aea3dcdSIlya Dryomov 	if (req->r_sent)
21365aea3dcdSIlya Dryomov 		ceph_msg_revoke(req->r_request);
21375aea3dcdSIlya Dryomov 
2138bb873b53SIlya Dryomov 	req->r_flags |= CEPH_OSD_FLAG_KNOWN_REDIR;
2139bb873b53SIlya Dryomov 	if (req->r_attempts)
2140bb873b53SIlya Dryomov 		req->r_flags |= CEPH_OSD_FLAG_RETRY;
2141bb873b53SIlya Dryomov 	else
2142bb873b53SIlya Dryomov 		WARN_ON(req->r_flags & CEPH_OSD_FLAG_RETRY);
2143bb873b53SIlya Dryomov 
21448cb441c0SIlya Dryomov 	encode_request_partial(req, req->r_request);
2145bb873b53SIlya Dryomov 
214604c7d789SIlya Dryomov 	dout("%s req %p tid %llu to pgid %llu.%x spgid %llu.%xs%d osd%d e%u flags 0x%x attempt %d\n",
2147bb873b53SIlya Dryomov 	     __func__, req, req->r_tid, req->r_t.pgid.pool, req->r_t.pgid.seed,
2148dc98ff72SIlya Dryomov 	     req->r_t.spgid.pgid.pool, req->r_t.spgid.pgid.seed,
214904c7d789SIlya Dryomov 	     req->r_t.spgid.shard, osd->o_osd, req->r_t.epoch, req->r_flags,
215004c7d789SIlya Dryomov 	     req->r_attempts);
2151bb873b53SIlya Dryomov 
2152bb873b53SIlya Dryomov 	req->r_t.paused = false;
21533d14c5d2SYehuda Sadeh 	req->r_stamp = jiffies;
2154bb873b53SIlya Dryomov 	req->r_attempts++;
21553d14c5d2SYehuda Sadeh 
2156bb873b53SIlya Dryomov 	req->r_sent = osd->o_incarnation;
2157bb873b53SIlya Dryomov 	req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
2158bb873b53SIlya Dryomov 	ceph_con_send(&osd->o_con, ceph_msg_get(req->r_request));
21593d14c5d2SYehuda Sadeh }
21603d14c5d2SYehuda Sadeh 
216142c1b124SIlya Dryomov static void maybe_request_map(struct ceph_osd_client *osdc)
216242c1b124SIlya Dryomov {
216342c1b124SIlya Dryomov 	bool continuous = false;
216442c1b124SIlya Dryomov 
21655aea3dcdSIlya Dryomov 	verify_osdc_locked(osdc);
216642c1b124SIlya Dryomov 	WARN_ON(!osdc->osdmap->epoch);
216742c1b124SIlya Dryomov 
2168b7ec35b3SIlya Dryomov 	if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2169b7ec35b3SIlya Dryomov 	    ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD) ||
2170b7ec35b3SIlya Dryomov 	    ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
217142c1b124SIlya Dryomov 		dout("%s osdc %p continuous\n", __func__, osdc);
217242c1b124SIlya Dryomov 		continuous = true;
217342c1b124SIlya Dryomov 	} else {
217442c1b124SIlya Dryomov 		dout("%s osdc %p onetime\n", __func__, osdc);
217542c1b124SIlya Dryomov 	}
217642c1b124SIlya Dryomov 
217742c1b124SIlya Dryomov 	if (ceph_monc_want_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
217842c1b124SIlya Dryomov 			       osdc->osdmap->epoch + 1, continuous))
217942c1b124SIlya Dryomov 		ceph_monc_renew_subs(&osdc->client->monc);
218042c1b124SIlya Dryomov }
218142c1b124SIlya Dryomov 
2182a1f4020aSJeff Layton static void complete_request(struct ceph_osd_request *req, int err);
21834609245eSIlya Dryomov static void send_map_check(struct ceph_osd_request *req);
21844609245eSIlya Dryomov 
21855aea3dcdSIlya Dryomov static void __submit_request(struct ceph_osd_request *req, bool wrlocked)
21860bbfdfe8SIlya Dryomov {
21875aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
21885aea3dcdSIlya Dryomov 	struct ceph_osd *osd;
21894609245eSIlya Dryomov 	enum calc_target_result ct_res;
219066850df5SIlya Dryomov 	int err = 0;
21915aea3dcdSIlya Dryomov 	bool need_send = false;
21925aea3dcdSIlya Dryomov 	bool promoted = false;
21930bbfdfe8SIlya Dryomov 
2194b18b9550SIlya Dryomov 	WARN_ON(req->r_tid);
21955aea3dcdSIlya Dryomov 	dout("%s req %p wrlocked %d\n", __func__, req, wrlocked);
21965aea3dcdSIlya Dryomov 
21975aea3dcdSIlya Dryomov again:
21987de030d6SIlya Dryomov 	ct_res = calc_target(osdc, &req->r_t, NULL, false);
21994609245eSIlya Dryomov 	if (ct_res == CALC_TARGET_POOL_DNE && !wrlocked)
22004609245eSIlya Dryomov 		goto promote;
22014609245eSIlya Dryomov 
22025aea3dcdSIlya Dryomov 	osd = lookup_create_osd(osdc, req->r_t.osd, wrlocked);
22035aea3dcdSIlya Dryomov 	if (IS_ERR(osd)) {
22045aea3dcdSIlya Dryomov 		WARN_ON(PTR_ERR(osd) != -EAGAIN || wrlocked);
22055aea3dcdSIlya Dryomov 		goto promote;
22065aea3dcdSIlya Dryomov 	}
22075aea3dcdSIlya Dryomov 
220866850df5SIlya Dryomov 	if (osdc->abort_err) {
220966850df5SIlya Dryomov 		dout("req %p abort_err %d\n", req, osdc->abort_err);
221066850df5SIlya Dryomov 		err = osdc->abort_err;
221166850df5SIlya Dryomov 	} else if (osdc->osdmap->epoch < osdc->epoch_barrier) {
221258eb7932SJeff Layton 		dout("req %p epoch %u barrier %u\n", req, osdc->osdmap->epoch,
221358eb7932SJeff Layton 		     osdc->epoch_barrier);
221458eb7932SJeff Layton 		req->r_t.paused = true;
221558eb7932SJeff Layton 		maybe_request_map(osdc);
221658eb7932SJeff Layton 	} else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2217b7ec35b3SIlya Dryomov 		   ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
22185aea3dcdSIlya Dryomov 		dout("req %p pausewr\n", req);
22195aea3dcdSIlya Dryomov 		req->r_t.paused = true;
22205aea3dcdSIlya Dryomov 		maybe_request_map(osdc);
22215aea3dcdSIlya Dryomov 	} else if ((req->r_flags & CEPH_OSD_FLAG_READ) &&
2222b7ec35b3SIlya Dryomov 		   ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
22235aea3dcdSIlya Dryomov 		dout("req %p pauserd\n", req);
22245aea3dcdSIlya Dryomov 		req->r_t.paused = true;
22255aea3dcdSIlya Dryomov 		maybe_request_map(osdc);
22265aea3dcdSIlya Dryomov 	} else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
22275aea3dcdSIlya Dryomov 		   !(req->r_flags & (CEPH_OSD_FLAG_FULL_TRY |
22285aea3dcdSIlya Dryomov 				     CEPH_OSD_FLAG_FULL_FORCE)) &&
2229b7ec35b3SIlya Dryomov 		   (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
22305aea3dcdSIlya Dryomov 		    pool_full(osdc, req->r_t.base_oloc.pool))) {
22315aea3dcdSIlya Dryomov 		dout("req %p full/pool_full\n", req);
2232c843d13cSIlya Dryomov 		if (osdc->abort_on_full) {
223329e87820SIlya Dryomov 			err = -ENOSPC;
223429e87820SIlya Dryomov 		} else {
22355aea3dcdSIlya Dryomov 			pr_warn_ratelimited("FULL or reached pool quota\n");
22365aea3dcdSIlya Dryomov 			req->r_t.paused = true;
22375aea3dcdSIlya Dryomov 			maybe_request_map(osdc);
223829e87820SIlya Dryomov 		}
22395aea3dcdSIlya Dryomov 	} else if (!osd_homeless(osd)) {
22405aea3dcdSIlya Dryomov 		need_send = true;
22410bbfdfe8SIlya Dryomov 	} else {
22425aea3dcdSIlya Dryomov 		maybe_request_map(osdc);
22430bbfdfe8SIlya Dryomov 	}
22440bbfdfe8SIlya Dryomov 
22455aea3dcdSIlya Dryomov 	mutex_lock(&osd->lock);
22465aea3dcdSIlya Dryomov 	/*
22475aea3dcdSIlya Dryomov 	 * Assign the tid atomically with send_request() to protect
22485aea3dcdSIlya Dryomov 	 * multiple writes to the same object from racing with each
22495aea3dcdSIlya Dryomov 	 * other, resulting in out of order ops on the OSDs.
22505aea3dcdSIlya Dryomov 	 */
22515aea3dcdSIlya Dryomov 	req->r_tid = atomic64_inc_return(&osdc->last_tid);
22525aea3dcdSIlya Dryomov 	link_request(osd, req);
22535aea3dcdSIlya Dryomov 	if (need_send)
22545aea3dcdSIlya Dryomov 		send_request(req);
225566850df5SIlya Dryomov 	else if (err)
225666850df5SIlya Dryomov 		complete_request(req, err);
22575aea3dcdSIlya Dryomov 	mutex_unlock(&osd->lock);
22585aea3dcdSIlya Dryomov 
22596001567cSIlya Dryomov 	if (!err && ct_res == CALC_TARGET_POOL_DNE)
22604609245eSIlya Dryomov 		send_map_check(req);
22614609245eSIlya Dryomov 
22625aea3dcdSIlya Dryomov 	if (promoted)
22635aea3dcdSIlya Dryomov 		downgrade_write(&osdc->lock);
22645aea3dcdSIlya Dryomov 	return;
22655aea3dcdSIlya Dryomov 
22665aea3dcdSIlya Dryomov promote:
22675aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
22685aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
22695aea3dcdSIlya Dryomov 	wrlocked = true;
22705aea3dcdSIlya Dryomov 	promoted = true;
22715aea3dcdSIlya Dryomov 	goto again;
22720bbfdfe8SIlya Dryomov }
22730bbfdfe8SIlya Dryomov 
22745aea3dcdSIlya Dryomov static void account_request(struct ceph_osd_request *req)
22755aea3dcdSIlya Dryomov {
227654ea0046SIlya Dryomov 	WARN_ON(req->r_flags & (CEPH_OSD_FLAG_ACK | CEPH_OSD_FLAG_ONDISK));
2277b18b9550SIlya Dryomov 	WARN_ON(!(req->r_flags & (CEPH_OSD_FLAG_READ | CEPH_OSD_FLAG_WRITE)));
22785aea3dcdSIlya Dryomov 
2279b18b9550SIlya Dryomov 	req->r_flags |= CEPH_OSD_FLAG_ONDISK;
22805aea3dcdSIlya Dryomov 	atomic_inc(&req->r_osdc->num_requests);
22817cc5e38fSIlya Dryomov 
22827cc5e38fSIlya Dryomov 	req->r_start_stamp = jiffies;
22835aea3dcdSIlya Dryomov }
22845aea3dcdSIlya Dryomov 
22855aea3dcdSIlya Dryomov static void submit_request(struct ceph_osd_request *req, bool wrlocked)
22865aea3dcdSIlya Dryomov {
22875aea3dcdSIlya Dryomov 	ceph_osdc_get_request(req);
22885aea3dcdSIlya Dryomov 	account_request(req);
22895aea3dcdSIlya Dryomov 	__submit_request(req, wrlocked);
22905aea3dcdSIlya Dryomov }
22915aea3dcdSIlya Dryomov 
229245ee2c1dSIlya Dryomov static void finish_request(struct ceph_osd_request *req)
22935aea3dcdSIlya Dryomov {
22945aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
22955aea3dcdSIlya Dryomov 
22964609245eSIlya Dryomov 	WARN_ON(lookup_request_mc(&osdc->map_checks, req->r_tid));
229704c7d789SIlya Dryomov 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
229804c7d789SIlya Dryomov 
229904c7d789SIlya Dryomov 	if (req->r_osd)
230004c7d789SIlya Dryomov 		unlink_request(req->r_osd, req);
23015aea3dcdSIlya Dryomov 	atomic_dec(&osdc->num_requests);
23025aea3dcdSIlya Dryomov 
23035aea3dcdSIlya Dryomov 	/*
23045aea3dcdSIlya Dryomov 	 * If an OSD has failed or returned and a request has been sent
23055aea3dcdSIlya Dryomov 	 * twice, it's possible to get a reply and end up here while the
23065aea3dcdSIlya Dryomov 	 * request message is queued for delivery.  We will ignore the
23075aea3dcdSIlya Dryomov 	 * reply, so not a big deal, but better to try and catch it.
23085aea3dcdSIlya Dryomov 	 */
23095aea3dcdSIlya Dryomov 	ceph_msg_revoke(req->r_request);
23105aea3dcdSIlya Dryomov 	ceph_msg_revoke_incoming(req->r_reply);
23115aea3dcdSIlya Dryomov }
23125aea3dcdSIlya Dryomov 
2313fe5da05eSIlya Dryomov static void __complete_request(struct ceph_osd_request *req)
2314fe5da05eSIlya Dryomov {
2315b18b9550SIlya Dryomov 	dout("%s req %p tid %llu cb %pf result %d\n", __func__, req,
2316b18b9550SIlya Dryomov 	     req->r_tid, req->r_callback, req->r_result);
231726df726bSIlya Dryomov 
231826df726bSIlya Dryomov 	if (req->r_callback)
2319fe5da05eSIlya Dryomov 		req->r_callback(req);
232026df726bSIlya Dryomov 	complete_all(&req->r_completion);
232126df726bSIlya Dryomov 	ceph_osdc_put_request(req);
2322b18b9550SIlya Dryomov }
2323fe5da05eSIlya Dryomov 
232488bc1922SIlya Dryomov static void complete_request_workfn(struct work_struct *work)
232588bc1922SIlya Dryomov {
232688bc1922SIlya Dryomov 	struct ceph_osd_request *req =
232788bc1922SIlya Dryomov 	    container_of(work, struct ceph_osd_request, r_complete_work);
232888bc1922SIlya Dryomov 
232988bc1922SIlya Dryomov 	__complete_request(req);
23300bbfdfe8SIlya Dryomov }
23310bbfdfe8SIlya Dryomov 
23324609245eSIlya Dryomov /*
2333b18b9550SIlya Dryomov  * This is open-coded in handle_reply().
23344609245eSIlya Dryomov  */
23354609245eSIlya Dryomov static void complete_request(struct ceph_osd_request *req, int err)
23364609245eSIlya Dryomov {
23374609245eSIlya Dryomov 	dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
23384609245eSIlya Dryomov 
23394609245eSIlya Dryomov 	req->r_result = err;
234045ee2c1dSIlya Dryomov 	finish_request(req);
234188bc1922SIlya Dryomov 
234288bc1922SIlya Dryomov 	INIT_WORK(&req->r_complete_work, complete_request_workfn);
234388bc1922SIlya Dryomov 	queue_work(req->r_osdc->completion_wq, &req->r_complete_work);
23444609245eSIlya Dryomov }
23454609245eSIlya Dryomov 
23464609245eSIlya Dryomov static void cancel_map_check(struct ceph_osd_request *req)
23474609245eSIlya Dryomov {
23484609245eSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
23494609245eSIlya Dryomov 	struct ceph_osd_request *lookup_req;
23504609245eSIlya Dryomov 
23514609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
23524609245eSIlya Dryomov 
23534609245eSIlya Dryomov 	lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
23544609245eSIlya Dryomov 	if (!lookup_req)
23554609245eSIlya Dryomov 		return;
23564609245eSIlya Dryomov 
23574609245eSIlya Dryomov 	WARN_ON(lookup_req != req);
23584609245eSIlya Dryomov 	erase_request_mc(&osdc->map_checks, req);
23594609245eSIlya Dryomov 	ceph_osdc_put_request(req);
23604609245eSIlya Dryomov }
23614609245eSIlya Dryomov 
23625aea3dcdSIlya Dryomov static void cancel_request(struct ceph_osd_request *req)
23635aea3dcdSIlya Dryomov {
23645aea3dcdSIlya Dryomov 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
23655aea3dcdSIlya Dryomov 
23664609245eSIlya Dryomov 	cancel_map_check(req);
236745ee2c1dSIlya Dryomov 	finish_request(req);
2368b18b9550SIlya Dryomov 	complete_all(&req->r_completion);
2369c297eb42SIlya Dryomov 	ceph_osdc_put_request(req);
23705aea3dcdSIlya Dryomov }
23715aea3dcdSIlya Dryomov 
23727cc5e38fSIlya Dryomov static void abort_request(struct ceph_osd_request *req, int err)
23737cc5e38fSIlya Dryomov {
23747cc5e38fSIlya Dryomov 	dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
23757cc5e38fSIlya Dryomov 
23767cc5e38fSIlya Dryomov 	cancel_map_check(req);
23777cc5e38fSIlya Dryomov 	complete_request(req, err);
23787cc5e38fSIlya Dryomov }
23797cc5e38fSIlya Dryomov 
238066850df5SIlya Dryomov static int abort_fn(struct ceph_osd_request *req, void *arg)
238166850df5SIlya Dryomov {
238266850df5SIlya Dryomov 	int err = *(int *)arg;
238366850df5SIlya Dryomov 
238466850df5SIlya Dryomov 	abort_request(req, err);
238566850df5SIlya Dryomov 	return 0; /* continue iteration */
238666850df5SIlya Dryomov }
238766850df5SIlya Dryomov 
238866850df5SIlya Dryomov /*
238966850df5SIlya Dryomov  * Abort all in-flight requests with @err and arrange for all future
239066850df5SIlya Dryomov  * requests to be failed immediately.
239166850df5SIlya Dryomov  */
239266850df5SIlya Dryomov void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err)
239366850df5SIlya Dryomov {
239466850df5SIlya Dryomov 	dout("%s osdc %p err %d\n", __func__, osdc, err);
239566850df5SIlya Dryomov 	down_write(&osdc->lock);
239666850df5SIlya Dryomov 	for_each_request(osdc, abort_fn, &err);
239766850df5SIlya Dryomov 	osdc->abort_err = err;
239866850df5SIlya Dryomov 	up_write(&osdc->lock);
239966850df5SIlya Dryomov }
240066850df5SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_abort_requests);
240166850df5SIlya Dryomov 
240258eb7932SJeff Layton static void update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
240358eb7932SJeff Layton {
240458eb7932SJeff Layton 	if (likely(eb > osdc->epoch_barrier)) {
240558eb7932SJeff Layton 		dout("updating epoch_barrier from %u to %u\n",
240658eb7932SJeff Layton 				osdc->epoch_barrier, eb);
240758eb7932SJeff Layton 		osdc->epoch_barrier = eb;
240858eb7932SJeff Layton 		/* Request map if we're not to the barrier yet */
240958eb7932SJeff Layton 		if (eb > osdc->osdmap->epoch)
241058eb7932SJeff Layton 			maybe_request_map(osdc);
241158eb7932SJeff Layton 	}
241258eb7932SJeff Layton }
241358eb7932SJeff Layton 
241458eb7932SJeff Layton void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
241558eb7932SJeff Layton {
241658eb7932SJeff Layton 	down_read(&osdc->lock);
241758eb7932SJeff Layton 	if (unlikely(eb > osdc->epoch_barrier)) {
241858eb7932SJeff Layton 		up_read(&osdc->lock);
241958eb7932SJeff Layton 		down_write(&osdc->lock);
242058eb7932SJeff Layton 		update_epoch_barrier(osdc, eb);
242158eb7932SJeff Layton 		up_write(&osdc->lock);
242258eb7932SJeff Layton 	} else {
242358eb7932SJeff Layton 		up_read(&osdc->lock);
242458eb7932SJeff Layton 	}
242558eb7932SJeff Layton }
242658eb7932SJeff Layton EXPORT_SYMBOL(ceph_osdc_update_epoch_barrier);
242758eb7932SJeff Layton 
2428fc36d0a4SJeff Layton /*
24294eea0fefSIlya Dryomov  * We can end up releasing caps as a result of abort_request().
24304eea0fefSIlya Dryomov  * In that case, we probably want to ensure that the cap release message
24314eea0fefSIlya Dryomov  * has an updated epoch barrier in it, so set the epoch barrier prior to
24324eea0fefSIlya Dryomov  * aborting the first request.
24334eea0fefSIlya Dryomov  */
24344eea0fefSIlya Dryomov static int abort_on_full_fn(struct ceph_osd_request *req, void *arg)
24354eea0fefSIlya Dryomov {
24364eea0fefSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
24374eea0fefSIlya Dryomov 	bool *victims = arg;
24384eea0fefSIlya Dryomov 
2439c843d13cSIlya Dryomov 	if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
24404eea0fefSIlya Dryomov 	    (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2441690f951dSIlya Dryomov 	     pool_full(osdc, req->r_t.base_oloc.pool))) {
24424eea0fefSIlya Dryomov 		if (!*victims) {
24434eea0fefSIlya Dryomov 			update_epoch_barrier(osdc, osdc->osdmap->epoch);
24444eea0fefSIlya Dryomov 			*victims = true;
24454eea0fefSIlya Dryomov 		}
24464eea0fefSIlya Dryomov 		abort_request(req, -ENOSPC);
24474eea0fefSIlya Dryomov 	}
24484eea0fefSIlya Dryomov 
24494eea0fefSIlya Dryomov 	return 0; /* continue iteration */
24504eea0fefSIlya Dryomov }
24514eea0fefSIlya Dryomov 
24524eea0fefSIlya Dryomov /*
2453fc36d0a4SJeff Layton  * Drop all pending requests that are stalled waiting on a full condition to
245458eb7932SJeff Layton  * clear, and complete them with ENOSPC as the return code. Set the
245558eb7932SJeff Layton  * osdc->epoch_barrier to the latest map epoch that we've seen if any were
245658eb7932SJeff Layton  * cancelled.
2457fc36d0a4SJeff Layton  */
2458fc36d0a4SJeff Layton static void ceph_osdc_abort_on_full(struct ceph_osd_client *osdc)
2459fc36d0a4SJeff Layton {
246058eb7932SJeff Layton 	bool victims = false;
2461fc36d0a4SJeff Layton 
2462c843d13cSIlya Dryomov 	if (osdc->abort_on_full &&
2463c843d13cSIlya Dryomov 	    (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) || have_pool_full(osdc)))
24644eea0fefSIlya Dryomov 		for_each_request(osdc, abort_on_full_fn, &victims);
2465fc36d0a4SJeff Layton }
2466fc36d0a4SJeff Layton 
24674609245eSIlya Dryomov static void check_pool_dne(struct ceph_osd_request *req)
24684609245eSIlya Dryomov {
24694609245eSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
24704609245eSIlya Dryomov 	struct ceph_osdmap *map = osdc->osdmap;
24714609245eSIlya Dryomov 
24724609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
24734609245eSIlya Dryomov 	WARN_ON(!map->epoch);
24744609245eSIlya Dryomov 
24754609245eSIlya Dryomov 	if (req->r_attempts) {
24764609245eSIlya Dryomov 		/*
24774609245eSIlya Dryomov 		 * We sent a request earlier, which means that
24784609245eSIlya Dryomov 		 * previously the pool existed, and now it does not
24794609245eSIlya Dryomov 		 * (i.e., it was deleted).
24804609245eSIlya Dryomov 		 */
24814609245eSIlya Dryomov 		req->r_map_dne_bound = map->epoch;
24824609245eSIlya Dryomov 		dout("%s req %p tid %llu pool disappeared\n", __func__, req,
24834609245eSIlya Dryomov 		     req->r_tid);
24844609245eSIlya Dryomov 	} else {
24854609245eSIlya Dryomov 		dout("%s req %p tid %llu map_dne_bound %u have %u\n", __func__,
24864609245eSIlya Dryomov 		     req, req->r_tid, req->r_map_dne_bound, map->epoch);
24874609245eSIlya Dryomov 	}
24884609245eSIlya Dryomov 
24894609245eSIlya Dryomov 	if (req->r_map_dne_bound) {
24904609245eSIlya Dryomov 		if (map->epoch >= req->r_map_dne_bound) {
24914609245eSIlya Dryomov 			/* we had a new enough map */
24924609245eSIlya Dryomov 			pr_info_ratelimited("tid %llu pool does not exist\n",
24934609245eSIlya Dryomov 					    req->r_tid);
24944609245eSIlya Dryomov 			complete_request(req, -ENOENT);
24954609245eSIlya Dryomov 		}
24964609245eSIlya Dryomov 	} else {
24974609245eSIlya Dryomov 		send_map_check(req);
24984609245eSIlya Dryomov 	}
24994609245eSIlya Dryomov }
25004609245eSIlya Dryomov 
25014609245eSIlya Dryomov static void map_check_cb(struct ceph_mon_generic_request *greq)
25024609245eSIlya Dryomov {
25034609245eSIlya Dryomov 	struct ceph_osd_client *osdc = &greq->monc->client->osdc;
25044609245eSIlya Dryomov 	struct ceph_osd_request *req;
25054609245eSIlya Dryomov 	u64 tid = greq->private_data;
25064609245eSIlya Dryomov 
25074609245eSIlya Dryomov 	WARN_ON(greq->result || !greq->u.newest);
25084609245eSIlya Dryomov 
25094609245eSIlya Dryomov 	down_write(&osdc->lock);
25104609245eSIlya Dryomov 	req = lookup_request_mc(&osdc->map_checks, tid);
25114609245eSIlya Dryomov 	if (!req) {
25124609245eSIlya Dryomov 		dout("%s tid %llu dne\n", __func__, tid);
25134609245eSIlya Dryomov 		goto out_unlock;
25144609245eSIlya Dryomov 	}
25154609245eSIlya Dryomov 
25164609245eSIlya Dryomov 	dout("%s req %p tid %llu map_dne_bound %u newest %llu\n", __func__,
25174609245eSIlya Dryomov 	     req, req->r_tid, req->r_map_dne_bound, greq->u.newest);
25184609245eSIlya Dryomov 	if (!req->r_map_dne_bound)
25194609245eSIlya Dryomov 		req->r_map_dne_bound = greq->u.newest;
25204609245eSIlya Dryomov 	erase_request_mc(&osdc->map_checks, req);
25214609245eSIlya Dryomov 	check_pool_dne(req);
25224609245eSIlya Dryomov 
25234609245eSIlya Dryomov 	ceph_osdc_put_request(req);
25244609245eSIlya Dryomov out_unlock:
25254609245eSIlya Dryomov 	up_write(&osdc->lock);
25264609245eSIlya Dryomov }
25274609245eSIlya Dryomov 
25284609245eSIlya Dryomov static void send_map_check(struct ceph_osd_request *req)
25294609245eSIlya Dryomov {
25304609245eSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
25314609245eSIlya Dryomov 	struct ceph_osd_request *lookup_req;
25324609245eSIlya Dryomov 	int ret;
25334609245eSIlya Dryomov 
25344609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
25354609245eSIlya Dryomov 
25364609245eSIlya Dryomov 	lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
25374609245eSIlya Dryomov 	if (lookup_req) {
25384609245eSIlya Dryomov 		WARN_ON(lookup_req != req);
25394609245eSIlya Dryomov 		return;
25404609245eSIlya Dryomov 	}
25414609245eSIlya Dryomov 
25424609245eSIlya Dryomov 	ceph_osdc_get_request(req);
25434609245eSIlya Dryomov 	insert_request_mc(&osdc->map_checks, req);
25444609245eSIlya Dryomov 	ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
25454609245eSIlya Dryomov 					  map_check_cb, req->r_tid);
25464609245eSIlya Dryomov 	WARN_ON(ret);
25474609245eSIlya Dryomov }
25484609245eSIlya Dryomov 
25490bbfdfe8SIlya Dryomov /*
2550922dab61SIlya Dryomov  * lingering requests, watch/notify v2 infrastructure
2551922dab61SIlya Dryomov  */
2552922dab61SIlya Dryomov static void linger_release(struct kref *kref)
2553922dab61SIlya Dryomov {
2554922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq =
2555922dab61SIlya Dryomov 	    container_of(kref, struct ceph_osd_linger_request, kref);
2556922dab61SIlya Dryomov 
2557922dab61SIlya Dryomov 	dout("%s lreq %p reg_req %p ping_req %p\n", __func__, lreq,
2558922dab61SIlya Dryomov 	     lreq->reg_req, lreq->ping_req);
2559922dab61SIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&lreq->node));
2560922dab61SIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&lreq->osdc_node));
25614609245eSIlya Dryomov 	WARN_ON(!RB_EMPTY_NODE(&lreq->mc_node));
2562922dab61SIlya Dryomov 	WARN_ON(!list_empty(&lreq->scan_item));
2563b07d3c4bSIlya Dryomov 	WARN_ON(!list_empty(&lreq->pending_lworks));
2564922dab61SIlya Dryomov 	WARN_ON(lreq->osd);
2565922dab61SIlya Dryomov 
2566922dab61SIlya Dryomov 	if (lreq->reg_req)
2567922dab61SIlya Dryomov 		ceph_osdc_put_request(lreq->reg_req);
2568922dab61SIlya Dryomov 	if (lreq->ping_req)
2569922dab61SIlya Dryomov 		ceph_osdc_put_request(lreq->ping_req);
2570922dab61SIlya Dryomov 	target_destroy(&lreq->t);
2571922dab61SIlya Dryomov 	kfree(lreq);
2572922dab61SIlya Dryomov }
2573922dab61SIlya Dryomov 
2574922dab61SIlya Dryomov static void linger_put(struct ceph_osd_linger_request *lreq)
2575922dab61SIlya Dryomov {
2576922dab61SIlya Dryomov 	if (lreq)
2577922dab61SIlya Dryomov 		kref_put(&lreq->kref, linger_release);
2578922dab61SIlya Dryomov }
2579922dab61SIlya Dryomov 
2580922dab61SIlya Dryomov static struct ceph_osd_linger_request *
2581922dab61SIlya Dryomov linger_get(struct ceph_osd_linger_request *lreq)
2582922dab61SIlya Dryomov {
2583922dab61SIlya Dryomov 	kref_get(&lreq->kref);
2584922dab61SIlya Dryomov 	return lreq;
2585922dab61SIlya Dryomov }
2586922dab61SIlya Dryomov 
2587922dab61SIlya Dryomov static struct ceph_osd_linger_request *
2588922dab61SIlya Dryomov linger_alloc(struct ceph_osd_client *osdc)
2589922dab61SIlya Dryomov {
2590922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq;
2591922dab61SIlya Dryomov 
2592922dab61SIlya Dryomov 	lreq = kzalloc(sizeof(*lreq), GFP_NOIO);
2593922dab61SIlya Dryomov 	if (!lreq)
2594922dab61SIlya Dryomov 		return NULL;
2595922dab61SIlya Dryomov 
2596922dab61SIlya Dryomov 	kref_init(&lreq->kref);
2597922dab61SIlya Dryomov 	mutex_init(&lreq->lock);
2598922dab61SIlya Dryomov 	RB_CLEAR_NODE(&lreq->node);
2599922dab61SIlya Dryomov 	RB_CLEAR_NODE(&lreq->osdc_node);
26004609245eSIlya Dryomov 	RB_CLEAR_NODE(&lreq->mc_node);
2601922dab61SIlya Dryomov 	INIT_LIST_HEAD(&lreq->scan_item);
2602b07d3c4bSIlya Dryomov 	INIT_LIST_HEAD(&lreq->pending_lworks);
2603922dab61SIlya Dryomov 	init_completion(&lreq->reg_commit_wait);
260419079203SIlya Dryomov 	init_completion(&lreq->notify_finish_wait);
2605922dab61SIlya Dryomov 
2606922dab61SIlya Dryomov 	lreq->osdc = osdc;
2607922dab61SIlya Dryomov 	target_init(&lreq->t);
2608922dab61SIlya Dryomov 
2609922dab61SIlya Dryomov 	dout("%s lreq %p\n", __func__, lreq);
2610922dab61SIlya Dryomov 	return lreq;
2611922dab61SIlya Dryomov }
2612922dab61SIlya Dryomov 
2613922dab61SIlya Dryomov DEFINE_RB_INSDEL_FUNCS(linger, struct ceph_osd_linger_request, linger_id, node)
2614922dab61SIlya Dryomov DEFINE_RB_FUNCS(linger_osdc, struct ceph_osd_linger_request, linger_id, osdc_node)
26154609245eSIlya Dryomov DEFINE_RB_FUNCS(linger_mc, struct ceph_osd_linger_request, linger_id, mc_node)
2616922dab61SIlya Dryomov 
2617922dab61SIlya Dryomov /*
2618922dab61SIlya Dryomov  * Create linger request <-> OSD session relation.
2619922dab61SIlya Dryomov  *
2620922dab61SIlya Dryomov  * @lreq has to be registered, @osd may be homeless.
2621922dab61SIlya Dryomov  */
2622922dab61SIlya Dryomov static void link_linger(struct ceph_osd *osd,
2623922dab61SIlya Dryomov 			struct ceph_osd_linger_request *lreq)
2624922dab61SIlya Dryomov {
2625922dab61SIlya Dryomov 	verify_osd_locked(osd);
2626922dab61SIlya Dryomov 	WARN_ON(!lreq->linger_id || lreq->osd);
2627922dab61SIlya Dryomov 	dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2628922dab61SIlya Dryomov 	     osd->o_osd, lreq, lreq->linger_id);
2629922dab61SIlya Dryomov 
2630922dab61SIlya Dryomov 	if (!osd_homeless(osd))
2631922dab61SIlya Dryomov 		__remove_osd_from_lru(osd);
2632922dab61SIlya Dryomov 	else
2633922dab61SIlya Dryomov 		atomic_inc(&osd->o_osdc->num_homeless);
2634922dab61SIlya Dryomov 
2635922dab61SIlya Dryomov 	get_osd(osd);
2636922dab61SIlya Dryomov 	insert_linger(&osd->o_linger_requests, lreq);
2637922dab61SIlya Dryomov 	lreq->osd = osd;
2638922dab61SIlya Dryomov }
2639922dab61SIlya Dryomov 
2640922dab61SIlya Dryomov static void unlink_linger(struct ceph_osd *osd,
2641922dab61SIlya Dryomov 			  struct ceph_osd_linger_request *lreq)
2642922dab61SIlya Dryomov {
2643922dab61SIlya Dryomov 	verify_osd_locked(osd);
2644922dab61SIlya Dryomov 	WARN_ON(lreq->osd != osd);
2645922dab61SIlya Dryomov 	dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2646922dab61SIlya Dryomov 	     osd->o_osd, lreq, lreq->linger_id);
2647922dab61SIlya Dryomov 
2648922dab61SIlya Dryomov 	lreq->osd = NULL;
2649922dab61SIlya Dryomov 	erase_linger(&osd->o_linger_requests, lreq);
2650922dab61SIlya Dryomov 	put_osd(osd);
2651922dab61SIlya Dryomov 
2652922dab61SIlya Dryomov 	if (!osd_homeless(osd))
2653922dab61SIlya Dryomov 		maybe_move_osd_to_lru(osd);
2654922dab61SIlya Dryomov 	else
2655922dab61SIlya Dryomov 		atomic_dec(&osd->o_osdc->num_homeless);
2656922dab61SIlya Dryomov }
2657922dab61SIlya Dryomov 
2658922dab61SIlya Dryomov static bool __linger_registered(struct ceph_osd_linger_request *lreq)
2659922dab61SIlya Dryomov {
2660922dab61SIlya Dryomov 	verify_osdc_locked(lreq->osdc);
2661922dab61SIlya Dryomov 
2662922dab61SIlya Dryomov 	return !RB_EMPTY_NODE(&lreq->osdc_node);
2663922dab61SIlya Dryomov }
2664922dab61SIlya Dryomov 
2665922dab61SIlya Dryomov static bool linger_registered(struct ceph_osd_linger_request *lreq)
2666922dab61SIlya Dryomov {
2667922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
2668922dab61SIlya Dryomov 	bool registered;
2669922dab61SIlya Dryomov 
2670922dab61SIlya Dryomov 	down_read(&osdc->lock);
2671922dab61SIlya Dryomov 	registered = __linger_registered(lreq);
2672922dab61SIlya Dryomov 	up_read(&osdc->lock);
2673922dab61SIlya Dryomov 
2674922dab61SIlya Dryomov 	return registered;
2675922dab61SIlya Dryomov }
2676922dab61SIlya Dryomov 
2677922dab61SIlya Dryomov static void linger_register(struct ceph_osd_linger_request *lreq)
2678922dab61SIlya Dryomov {
2679922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
2680922dab61SIlya Dryomov 
2681922dab61SIlya Dryomov 	verify_osdc_wrlocked(osdc);
2682922dab61SIlya Dryomov 	WARN_ON(lreq->linger_id);
2683922dab61SIlya Dryomov 
2684922dab61SIlya Dryomov 	linger_get(lreq);
2685922dab61SIlya Dryomov 	lreq->linger_id = ++osdc->last_linger_id;
2686922dab61SIlya Dryomov 	insert_linger_osdc(&osdc->linger_requests, lreq);
2687922dab61SIlya Dryomov }
2688922dab61SIlya Dryomov 
2689922dab61SIlya Dryomov static void linger_unregister(struct ceph_osd_linger_request *lreq)
2690922dab61SIlya Dryomov {
2691922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
2692922dab61SIlya Dryomov 
2693922dab61SIlya Dryomov 	verify_osdc_wrlocked(osdc);
2694922dab61SIlya Dryomov 
2695922dab61SIlya Dryomov 	erase_linger_osdc(&osdc->linger_requests, lreq);
2696922dab61SIlya Dryomov 	linger_put(lreq);
2697922dab61SIlya Dryomov }
2698922dab61SIlya Dryomov 
2699922dab61SIlya Dryomov static void cancel_linger_request(struct ceph_osd_request *req)
2700922dab61SIlya Dryomov {
2701922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = req->r_priv;
2702922dab61SIlya Dryomov 
2703922dab61SIlya Dryomov 	WARN_ON(!req->r_linger);
2704922dab61SIlya Dryomov 	cancel_request(req);
2705922dab61SIlya Dryomov 	linger_put(lreq);
2706922dab61SIlya Dryomov }
2707922dab61SIlya Dryomov 
2708922dab61SIlya Dryomov struct linger_work {
2709922dab61SIlya Dryomov 	struct work_struct work;
2710922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq;
2711b07d3c4bSIlya Dryomov 	struct list_head pending_item;
2712b07d3c4bSIlya Dryomov 	unsigned long queued_stamp;
2713922dab61SIlya Dryomov 
2714922dab61SIlya Dryomov 	union {
2715922dab61SIlya Dryomov 		struct {
2716922dab61SIlya Dryomov 			u64 notify_id;
2717922dab61SIlya Dryomov 			u64 notifier_id;
2718922dab61SIlya Dryomov 			void *payload; /* points into @msg front */
2719922dab61SIlya Dryomov 			size_t payload_len;
2720922dab61SIlya Dryomov 
2721922dab61SIlya Dryomov 			struct ceph_msg *msg; /* for ceph_msg_put() */
2722922dab61SIlya Dryomov 		} notify;
2723922dab61SIlya Dryomov 		struct {
2724922dab61SIlya Dryomov 			int err;
2725922dab61SIlya Dryomov 		} error;
2726922dab61SIlya Dryomov 	};
2727922dab61SIlya Dryomov };
2728922dab61SIlya Dryomov 
2729922dab61SIlya Dryomov static struct linger_work *lwork_alloc(struct ceph_osd_linger_request *lreq,
2730922dab61SIlya Dryomov 				       work_func_t workfn)
2731922dab61SIlya Dryomov {
2732922dab61SIlya Dryomov 	struct linger_work *lwork;
2733922dab61SIlya Dryomov 
2734922dab61SIlya Dryomov 	lwork = kzalloc(sizeof(*lwork), GFP_NOIO);
2735922dab61SIlya Dryomov 	if (!lwork)
2736922dab61SIlya Dryomov 		return NULL;
2737922dab61SIlya Dryomov 
2738922dab61SIlya Dryomov 	INIT_WORK(&lwork->work, workfn);
2739b07d3c4bSIlya Dryomov 	INIT_LIST_HEAD(&lwork->pending_item);
2740922dab61SIlya Dryomov 	lwork->lreq = linger_get(lreq);
2741922dab61SIlya Dryomov 
2742922dab61SIlya Dryomov 	return lwork;
2743922dab61SIlya Dryomov }
2744922dab61SIlya Dryomov 
2745922dab61SIlya Dryomov static void lwork_free(struct linger_work *lwork)
2746922dab61SIlya Dryomov {
2747922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2748922dab61SIlya Dryomov 
2749b07d3c4bSIlya Dryomov 	mutex_lock(&lreq->lock);
2750b07d3c4bSIlya Dryomov 	list_del(&lwork->pending_item);
2751b07d3c4bSIlya Dryomov 	mutex_unlock(&lreq->lock);
2752b07d3c4bSIlya Dryomov 
2753922dab61SIlya Dryomov 	linger_put(lreq);
2754922dab61SIlya Dryomov 	kfree(lwork);
2755922dab61SIlya Dryomov }
2756922dab61SIlya Dryomov 
2757922dab61SIlya Dryomov static void lwork_queue(struct linger_work *lwork)
2758922dab61SIlya Dryomov {
2759922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2760922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
2761922dab61SIlya Dryomov 
2762922dab61SIlya Dryomov 	verify_lreq_locked(lreq);
2763b07d3c4bSIlya Dryomov 	WARN_ON(!list_empty(&lwork->pending_item));
2764b07d3c4bSIlya Dryomov 
2765b07d3c4bSIlya Dryomov 	lwork->queued_stamp = jiffies;
2766b07d3c4bSIlya Dryomov 	list_add_tail(&lwork->pending_item, &lreq->pending_lworks);
2767922dab61SIlya Dryomov 	queue_work(osdc->notify_wq, &lwork->work);
2768922dab61SIlya Dryomov }
2769922dab61SIlya Dryomov 
2770922dab61SIlya Dryomov static void do_watch_notify(struct work_struct *w)
2771922dab61SIlya Dryomov {
2772922dab61SIlya Dryomov 	struct linger_work *lwork = container_of(w, struct linger_work, work);
2773922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2774922dab61SIlya Dryomov 
2775922dab61SIlya Dryomov 	if (!linger_registered(lreq)) {
2776922dab61SIlya Dryomov 		dout("%s lreq %p not registered\n", __func__, lreq);
2777922dab61SIlya Dryomov 		goto out;
2778922dab61SIlya Dryomov 	}
2779922dab61SIlya Dryomov 
278019079203SIlya Dryomov 	WARN_ON(!lreq->is_watch);
2781922dab61SIlya Dryomov 	dout("%s lreq %p notify_id %llu notifier_id %llu payload_len %zu\n",
2782922dab61SIlya Dryomov 	     __func__, lreq, lwork->notify.notify_id, lwork->notify.notifier_id,
2783922dab61SIlya Dryomov 	     lwork->notify.payload_len);
2784922dab61SIlya Dryomov 	lreq->wcb(lreq->data, lwork->notify.notify_id, lreq->linger_id,
2785922dab61SIlya Dryomov 		  lwork->notify.notifier_id, lwork->notify.payload,
2786922dab61SIlya Dryomov 		  lwork->notify.payload_len);
2787922dab61SIlya Dryomov 
2788922dab61SIlya Dryomov out:
2789922dab61SIlya Dryomov 	ceph_msg_put(lwork->notify.msg);
2790922dab61SIlya Dryomov 	lwork_free(lwork);
2791922dab61SIlya Dryomov }
2792922dab61SIlya Dryomov 
2793922dab61SIlya Dryomov static void do_watch_error(struct work_struct *w)
2794922dab61SIlya Dryomov {
2795922dab61SIlya Dryomov 	struct linger_work *lwork = container_of(w, struct linger_work, work);
2796922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = lwork->lreq;
2797922dab61SIlya Dryomov 
2798922dab61SIlya Dryomov 	if (!linger_registered(lreq)) {
2799922dab61SIlya Dryomov 		dout("%s lreq %p not registered\n", __func__, lreq);
2800922dab61SIlya Dryomov 		goto out;
2801922dab61SIlya Dryomov 	}
2802922dab61SIlya Dryomov 
2803922dab61SIlya Dryomov 	dout("%s lreq %p err %d\n", __func__, lreq, lwork->error.err);
2804922dab61SIlya Dryomov 	lreq->errcb(lreq->data, lreq->linger_id, lwork->error.err);
2805922dab61SIlya Dryomov 
2806922dab61SIlya Dryomov out:
2807922dab61SIlya Dryomov 	lwork_free(lwork);
2808922dab61SIlya Dryomov }
2809922dab61SIlya Dryomov 
2810922dab61SIlya Dryomov static void queue_watch_error(struct ceph_osd_linger_request *lreq)
2811922dab61SIlya Dryomov {
2812922dab61SIlya Dryomov 	struct linger_work *lwork;
2813922dab61SIlya Dryomov 
2814922dab61SIlya Dryomov 	lwork = lwork_alloc(lreq, do_watch_error);
2815922dab61SIlya Dryomov 	if (!lwork) {
2816922dab61SIlya Dryomov 		pr_err("failed to allocate error-lwork\n");
2817922dab61SIlya Dryomov 		return;
2818922dab61SIlya Dryomov 	}
2819922dab61SIlya Dryomov 
2820922dab61SIlya Dryomov 	lwork->error.err = lreq->last_error;
2821922dab61SIlya Dryomov 	lwork_queue(lwork);
2822922dab61SIlya Dryomov }
2823922dab61SIlya Dryomov 
2824922dab61SIlya Dryomov static void linger_reg_commit_complete(struct ceph_osd_linger_request *lreq,
2825922dab61SIlya Dryomov 				       int result)
2826922dab61SIlya Dryomov {
2827922dab61SIlya Dryomov 	if (!completion_done(&lreq->reg_commit_wait)) {
2828922dab61SIlya Dryomov 		lreq->reg_commit_error = (result <= 0 ? result : 0);
2829922dab61SIlya Dryomov 		complete_all(&lreq->reg_commit_wait);
2830922dab61SIlya Dryomov 	}
2831922dab61SIlya Dryomov }
2832922dab61SIlya Dryomov 
2833922dab61SIlya Dryomov static void linger_commit_cb(struct ceph_osd_request *req)
2834922dab61SIlya Dryomov {
2835922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = req->r_priv;
2836922dab61SIlya Dryomov 
2837922dab61SIlya Dryomov 	mutex_lock(&lreq->lock);
2838922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu result %d\n", __func__, lreq,
2839922dab61SIlya Dryomov 	     lreq->linger_id, req->r_result);
2840922dab61SIlya Dryomov 	linger_reg_commit_complete(lreq, req->r_result);
2841922dab61SIlya Dryomov 	lreq->committed = true;
2842922dab61SIlya Dryomov 
284319079203SIlya Dryomov 	if (!lreq->is_watch) {
284419079203SIlya Dryomov 		struct ceph_osd_data *osd_data =
284519079203SIlya Dryomov 		    osd_req_op_data(req, 0, notify, response_data);
284619079203SIlya Dryomov 		void *p = page_address(osd_data->pages[0]);
284719079203SIlya Dryomov 
284819079203SIlya Dryomov 		WARN_ON(req->r_ops[0].op != CEPH_OSD_OP_NOTIFY ||
284919079203SIlya Dryomov 			osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
285019079203SIlya Dryomov 
285119079203SIlya Dryomov 		/* make note of the notify_id */
285219079203SIlya Dryomov 		if (req->r_ops[0].outdata_len >= sizeof(u64)) {
285319079203SIlya Dryomov 			lreq->notify_id = ceph_decode_64(&p);
285419079203SIlya Dryomov 			dout("lreq %p notify_id %llu\n", lreq,
285519079203SIlya Dryomov 			     lreq->notify_id);
285619079203SIlya Dryomov 		} else {
285719079203SIlya Dryomov 			dout("lreq %p no notify_id\n", lreq);
285819079203SIlya Dryomov 		}
285919079203SIlya Dryomov 	}
286019079203SIlya Dryomov 
2861922dab61SIlya Dryomov 	mutex_unlock(&lreq->lock);
2862922dab61SIlya Dryomov 	linger_put(lreq);
2863922dab61SIlya Dryomov }
2864922dab61SIlya Dryomov 
2865922dab61SIlya Dryomov static int normalize_watch_error(int err)
2866922dab61SIlya Dryomov {
2867922dab61SIlya Dryomov 	/*
2868922dab61SIlya Dryomov 	 * Translate ENOENT -> ENOTCONN so that a delete->disconnection
2869922dab61SIlya Dryomov 	 * notification and a failure to reconnect because we raced with
2870922dab61SIlya Dryomov 	 * the delete appear the same to the user.
2871922dab61SIlya Dryomov 	 */
2872922dab61SIlya Dryomov 	if (err == -ENOENT)
2873922dab61SIlya Dryomov 		err = -ENOTCONN;
2874922dab61SIlya Dryomov 
2875922dab61SIlya Dryomov 	return err;
2876922dab61SIlya Dryomov }
2877922dab61SIlya Dryomov 
2878922dab61SIlya Dryomov static void linger_reconnect_cb(struct ceph_osd_request *req)
2879922dab61SIlya Dryomov {
2880922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = req->r_priv;
2881922dab61SIlya Dryomov 
2882922dab61SIlya Dryomov 	mutex_lock(&lreq->lock);
2883922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu result %d last_error %d\n", __func__,
2884922dab61SIlya Dryomov 	     lreq, lreq->linger_id, req->r_result, lreq->last_error);
2885922dab61SIlya Dryomov 	if (req->r_result < 0) {
2886922dab61SIlya Dryomov 		if (!lreq->last_error) {
2887922dab61SIlya Dryomov 			lreq->last_error = normalize_watch_error(req->r_result);
2888922dab61SIlya Dryomov 			queue_watch_error(lreq);
2889922dab61SIlya Dryomov 		}
2890922dab61SIlya Dryomov 	}
2891922dab61SIlya Dryomov 
2892922dab61SIlya Dryomov 	mutex_unlock(&lreq->lock);
2893922dab61SIlya Dryomov 	linger_put(lreq);
2894922dab61SIlya Dryomov }
2895922dab61SIlya Dryomov 
2896922dab61SIlya Dryomov static void send_linger(struct ceph_osd_linger_request *lreq)
2897922dab61SIlya Dryomov {
2898922dab61SIlya Dryomov 	struct ceph_osd_request *req = lreq->reg_req;
2899922dab61SIlya Dryomov 	struct ceph_osd_req_op *op = &req->r_ops[0];
2900922dab61SIlya Dryomov 
2901922dab61SIlya Dryomov 	verify_osdc_wrlocked(req->r_osdc);
2902922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
2903922dab61SIlya Dryomov 
2904922dab61SIlya Dryomov 	if (req->r_osd)
2905922dab61SIlya Dryomov 		cancel_linger_request(req);
2906922dab61SIlya Dryomov 
2907922dab61SIlya Dryomov 	request_reinit(req);
2908922dab61SIlya Dryomov 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
2909922dab61SIlya Dryomov 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
2910922dab61SIlya Dryomov 	req->r_flags = lreq->t.flags;
2911922dab61SIlya Dryomov 	req->r_mtime = lreq->mtime;
2912922dab61SIlya Dryomov 
2913922dab61SIlya Dryomov 	mutex_lock(&lreq->lock);
291419079203SIlya Dryomov 	if (lreq->is_watch && lreq->committed) {
2915922dab61SIlya Dryomov 		WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
2916922dab61SIlya Dryomov 			op->watch.cookie != lreq->linger_id);
2917922dab61SIlya Dryomov 		op->watch.op = CEPH_OSD_WATCH_OP_RECONNECT;
2918922dab61SIlya Dryomov 		op->watch.gen = ++lreq->register_gen;
2919922dab61SIlya Dryomov 		dout("lreq %p reconnect register_gen %u\n", lreq,
2920922dab61SIlya Dryomov 		     op->watch.gen);
2921922dab61SIlya Dryomov 		req->r_callback = linger_reconnect_cb;
2922922dab61SIlya Dryomov 	} else {
292319079203SIlya Dryomov 		if (!lreq->is_watch)
292419079203SIlya Dryomov 			lreq->notify_id = 0;
292519079203SIlya Dryomov 		else
2926922dab61SIlya Dryomov 			WARN_ON(op->watch.op != CEPH_OSD_WATCH_OP_WATCH);
2927922dab61SIlya Dryomov 		dout("lreq %p register\n", lreq);
2928922dab61SIlya Dryomov 		req->r_callback = linger_commit_cb;
2929922dab61SIlya Dryomov 	}
2930922dab61SIlya Dryomov 	mutex_unlock(&lreq->lock);
2931922dab61SIlya Dryomov 
2932922dab61SIlya Dryomov 	req->r_priv = linger_get(lreq);
2933922dab61SIlya Dryomov 	req->r_linger = true;
2934922dab61SIlya Dryomov 
2935922dab61SIlya Dryomov 	submit_request(req, true);
2936922dab61SIlya Dryomov }
2937922dab61SIlya Dryomov 
2938922dab61SIlya Dryomov static void linger_ping_cb(struct ceph_osd_request *req)
2939922dab61SIlya Dryomov {
2940922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq = req->r_priv;
2941922dab61SIlya Dryomov 
2942922dab61SIlya Dryomov 	mutex_lock(&lreq->lock);
2943922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu result %d ping_sent %lu last_error %d\n",
2944922dab61SIlya Dryomov 	     __func__, lreq, lreq->linger_id, req->r_result, lreq->ping_sent,
2945922dab61SIlya Dryomov 	     lreq->last_error);
2946922dab61SIlya Dryomov 	if (lreq->register_gen == req->r_ops[0].watch.gen) {
2947b07d3c4bSIlya Dryomov 		if (!req->r_result) {
2948b07d3c4bSIlya Dryomov 			lreq->watch_valid_thru = lreq->ping_sent;
2949b07d3c4bSIlya Dryomov 		} else if (!lreq->last_error) {
2950922dab61SIlya Dryomov 			lreq->last_error = normalize_watch_error(req->r_result);
2951922dab61SIlya Dryomov 			queue_watch_error(lreq);
2952922dab61SIlya Dryomov 		}
2953922dab61SIlya Dryomov 	} else {
2954922dab61SIlya Dryomov 		dout("lreq %p register_gen %u ignoring old pong %u\n", lreq,
2955922dab61SIlya Dryomov 		     lreq->register_gen, req->r_ops[0].watch.gen);
2956922dab61SIlya Dryomov 	}
2957922dab61SIlya Dryomov 
2958922dab61SIlya Dryomov 	mutex_unlock(&lreq->lock);
2959922dab61SIlya Dryomov 	linger_put(lreq);
2960922dab61SIlya Dryomov }
2961922dab61SIlya Dryomov 
2962922dab61SIlya Dryomov static void send_linger_ping(struct ceph_osd_linger_request *lreq)
2963922dab61SIlya Dryomov {
2964922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
2965922dab61SIlya Dryomov 	struct ceph_osd_request *req = lreq->ping_req;
2966922dab61SIlya Dryomov 	struct ceph_osd_req_op *op = &req->r_ops[0];
2967922dab61SIlya Dryomov 
2968b7ec35b3SIlya Dryomov 	if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
2969922dab61SIlya Dryomov 		dout("%s PAUSERD\n", __func__);
2970922dab61SIlya Dryomov 		return;
2971922dab61SIlya Dryomov 	}
2972922dab61SIlya Dryomov 
2973922dab61SIlya Dryomov 	lreq->ping_sent = jiffies;
2974922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu ping_sent %lu register_gen %u\n",
2975922dab61SIlya Dryomov 	     __func__, lreq, lreq->linger_id, lreq->ping_sent,
2976922dab61SIlya Dryomov 	     lreq->register_gen);
2977922dab61SIlya Dryomov 
2978922dab61SIlya Dryomov 	if (req->r_osd)
2979922dab61SIlya Dryomov 		cancel_linger_request(req);
2980922dab61SIlya Dryomov 
2981922dab61SIlya Dryomov 	request_reinit(req);
2982922dab61SIlya Dryomov 	target_copy(&req->r_t, &lreq->t);
2983922dab61SIlya Dryomov 
2984922dab61SIlya Dryomov 	WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
2985922dab61SIlya Dryomov 		op->watch.cookie != lreq->linger_id ||
2986922dab61SIlya Dryomov 		op->watch.op != CEPH_OSD_WATCH_OP_PING);
2987922dab61SIlya Dryomov 	op->watch.gen = lreq->register_gen;
2988922dab61SIlya Dryomov 	req->r_callback = linger_ping_cb;
2989922dab61SIlya Dryomov 	req->r_priv = linger_get(lreq);
2990922dab61SIlya Dryomov 	req->r_linger = true;
2991922dab61SIlya Dryomov 
2992922dab61SIlya Dryomov 	ceph_osdc_get_request(req);
2993922dab61SIlya Dryomov 	account_request(req);
2994922dab61SIlya Dryomov 	req->r_tid = atomic64_inc_return(&osdc->last_tid);
2995922dab61SIlya Dryomov 	link_request(lreq->osd, req);
2996922dab61SIlya Dryomov 	send_request(req);
2997922dab61SIlya Dryomov }
2998922dab61SIlya Dryomov 
2999922dab61SIlya Dryomov static void linger_submit(struct ceph_osd_linger_request *lreq)
3000922dab61SIlya Dryomov {
3001922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
3002922dab61SIlya Dryomov 	struct ceph_osd *osd;
3003922dab61SIlya Dryomov 
30047de030d6SIlya Dryomov 	calc_target(osdc, &lreq->t, NULL, false);
3005922dab61SIlya Dryomov 	osd = lookup_create_osd(osdc, lreq->t.osd, true);
3006922dab61SIlya Dryomov 	link_linger(osd, lreq);
3007922dab61SIlya Dryomov 
3008922dab61SIlya Dryomov 	send_linger(lreq);
3009922dab61SIlya Dryomov }
3010922dab61SIlya Dryomov 
30114609245eSIlya Dryomov static void cancel_linger_map_check(struct ceph_osd_linger_request *lreq)
30124609245eSIlya Dryomov {
30134609245eSIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
30144609245eSIlya Dryomov 	struct ceph_osd_linger_request *lookup_lreq;
30154609245eSIlya Dryomov 
30164609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
30174609245eSIlya Dryomov 
30184609245eSIlya Dryomov 	lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
30194609245eSIlya Dryomov 				       lreq->linger_id);
30204609245eSIlya Dryomov 	if (!lookup_lreq)
30214609245eSIlya Dryomov 		return;
30224609245eSIlya Dryomov 
30234609245eSIlya Dryomov 	WARN_ON(lookup_lreq != lreq);
30244609245eSIlya Dryomov 	erase_linger_mc(&osdc->linger_map_checks, lreq);
30254609245eSIlya Dryomov 	linger_put(lreq);
30264609245eSIlya Dryomov }
30274609245eSIlya Dryomov 
3028922dab61SIlya Dryomov /*
3029922dab61SIlya Dryomov  * @lreq has to be both registered and linked.
3030922dab61SIlya Dryomov  */
3031922dab61SIlya Dryomov static void __linger_cancel(struct ceph_osd_linger_request *lreq)
3032922dab61SIlya Dryomov {
303319079203SIlya Dryomov 	if (lreq->is_watch && lreq->ping_req->r_osd)
3034922dab61SIlya Dryomov 		cancel_linger_request(lreq->ping_req);
3035922dab61SIlya Dryomov 	if (lreq->reg_req->r_osd)
3036922dab61SIlya Dryomov 		cancel_linger_request(lreq->reg_req);
30374609245eSIlya Dryomov 	cancel_linger_map_check(lreq);
3038922dab61SIlya Dryomov 	unlink_linger(lreq->osd, lreq);
3039922dab61SIlya Dryomov 	linger_unregister(lreq);
3040922dab61SIlya Dryomov }
3041922dab61SIlya Dryomov 
3042922dab61SIlya Dryomov static void linger_cancel(struct ceph_osd_linger_request *lreq)
3043922dab61SIlya Dryomov {
3044922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
3045922dab61SIlya Dryomov 
3046922dab61SIlya Dryomov 	down_write(&osdc->lock);
3047922dab61SIlya Dryomov 	if (__linger_registered(lreq))
3048922dab61SIlya Dryomov 		__linger_cancel(lreq);
3049922dab61SIlya Dryomov 	up_write(&osdc->lock);
3050922dab61SIlya Dryomov }
3051922dab61SIlya Dryomov 
30524609245eSIlya Dryomov static void send_linger_map_check(struct ceph_osd_linger_request *lreq);
30534609245eSIlya Dryomov 
30544609245eSIlya Dryomov static void check_linger_pool_dne(struct ceph_osd_linger_request *lreq)
30554609245eSIlya Dryomov {
30564609245eSIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
30574609245eSIlya Dryomov 	struct ceph_osdmap *map = osdc->osdmap;
30584609245eSIlya Dryomov 
30594609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
30604609245eSIlya Dryomov 	WARN_ON(!map->epoch);
30614609245eSIlya Dryomov 
30624609245eSIlya Dryomov 	if (lreq->register_gen) {
30634609245eSIlya Dryomov 		lreq->map_dne_bound = map->epoch;
30644609245eSIlya Dryomov 		dout("%s lreq %p linger_id %llu pool disappeared\n", __func__,
30654609245eSIlya Dryomov 		     lreq, lreq->linger_id);
30664609245eSIlya Dryomov 	} else {
30674609245eSIlya Dryomov 		dout("%s lreq %p linger_id %llu map_dne_bound %u have %u\n",
30684609245eSIlya Dryomov 		     __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
30694609245eSIlya Dryomov 		     map->epoch);
30704609245eSIlya Dryomov 	}
30714609245eSIlya Dryomov 
30724609245eSIlya Dryomov 	if (lreq->map_dne_bound) {
30734609245eSIlya Dryomov 		if (map->epoch >= lreq->map_dne_bound) {
30744609245eSIlya Dryomov 			/* we had a new enough map */
30754609245eSIlya Dryomov 			pr_info("linger_id %llu pool does not exist\n",
30764609245eSIlya Dryomov 				lreq->linger_id);
30774609245eSIlya Dryomov 			linger_reg_commit_complete(lreq, -ENOENT);
30784609245eSIlya Dryomov 			__linger_cancel(lreq);
30794609245eSIlya Dryomov 		}
30804609245eSIlya Dryomov 	} else {
30814609245eSIlya Dryomov 		send_linger_map_check(lreq);
30824609245eSIlya Dryomov 	}
30834609245eSIlya Dryomov }
30844609245eSIlya Dryomov 
30854609245eSIlya Dryomov static void linger_map_check_cb(struct ceph_mon_generic_request *greq)
30864609245eSIlya Dryomov {
30874609245eSIlya Dryomov 	struct ceph_osd_client *osdc = &greq->monc->client->osdc;
30884609245eSIlya Dryomov 	struct ceph_osd_linger_request *lreq;
30894609245eSIlya Dryomov 	u64 linger_id = greq->private_data;
30904609245eSIlya Dryomov 
30914609245eSIlya Dryomov 	WARN_ON(greq->result || !greq->u.newest);
30924609245eSIlya Dryomov 
30934609245eSIlya Dryomov 	down_write(&osdc->lock);
30944609245eSIlya Dryomov 	lreq = lookup_linger_mc(&osdc->linger_map_checks, linger_id);
30954609245eSIlya Dryomov 	if (!lreq) {
30964609245eSIlya Dryomov 		dout("%s linger_id %llu dne\n", __func__, linger_id);
30974609245eSIlya Dryomov 		goto out_unlock;
30984609245eSIlya Dryomov 	}
30994609245eSIlya Dryomov 
31004609245eSIlya Dryomov 	dout("%s lreq %p linger_id %llu map_dne_bound %u newest %llu\n",
31014609245eSIlya Dryomov 	     __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
31024609245eSIlya Dryomov 	     greq->u.newest);
31034609245eSIlya Dryomov 	if (!lreq->map_dne_bound)
31044609245eSIlya Dryomov 		lreq->map_dne_bound = greq->u.newest;
31054609245eSIlya Dryomov 	erase_linger_mc(&osdc->linger_map_checks, lreq);
31064609245eSIlya Dryomov 	check_linger_pool_dne(lreq);
31074609245eSIlya Dryomov 
31084609245eSIlya Dryomov 	linger_put(lreq);
31094609245eSIlya Dryomov out_unlock:
31104609245eSIlya Dryomov 	up_write(&osdc->lock);
31114609245eSIlya Dryomov }
31124609245eSIlya Dryomov 
31134609245eSIlya Dryomov static void send_linger_map_check(struct ceph_osd_linger_request *lreq)
31144609245eSIlya Dryomov {
31154609245eSIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
31164609245eSIlya Dryomov 	struct ceph_osd_linger_request *lookup_lreq;
31174609245eSIlya Dryomov 	int ret;
31184609245eSIlya Dryomov 
31194609245eSIlya Dryomov 	verify_osdc_wrlocked(osdc);
31204609245eSIlya Dryomov 
31214609245eSIlya Dryomov 	lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
31224609245eSIlya Dryomov 				       lreq->linger_id);
31234609245eSIlya Dryomov 	if (lookup_lreq) {
31244609245eSIlya Dryomov 		WARN_ON(lookup_lreq != lreq);
31254609245eSIlya Dryomov 		return;
31264609245eSIlya Dryomov 	}
31274609245eSIlya Dryomov 
31284609245eSIlya Dryomov 	linger_get(lreq);
31294609245eSIlya Dryomov 	insert_linger_mc(&osdc->linger_map_checks, lreq);
31304609245eSIlya Dryomov 	ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
31314609245eSIlya Dryomov 					  linger_map_check_cb, lreq->linger_id);
31324609245eSIlya Dryomov 	WARN_ON(ret);
31334609245eSIlya Dryomov }
31344609245eSIlya Dryomov 
3135922dab61SIlya Dryomov static int linger_reg_commit_wait(struct ceph_osd_linger_request *lreq)
3136922dab61SIlya Dryomov {
3137922dab61SIlya Dryomov 	int ret;
3138922dab61SIlya Dryomov 
3139922dab61SIlya Dryomov 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3140922dab61SIlya Dryomov 	ret = wait_for_completion_interruptible(&lreq->reg_commit_wait);
3141922dab61SIlya Dryomov 	return ret ?: lreq->reg_commit_error;
3142922dab61SIlya Dryomov }
3143922dab61SIlya Dryomov 
314419079203SIlya Dryomov static int linger_notify_finish_wait(struct ceph_osd_linger_request *lreq)
314519079203SIlya Dryomov {
314619079203SIlya Dryomov 	int ret;
314719079203SIlya Dryomov 
314819079203SIlya Dryomov 	dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
314919079203SIlya Dryomov 	ret = wait_for_completion_interruptible(&lreq->notify_finish_wait);
315019079203SIlya Dryomov 	return ret ?: lreq->notify_finish_error;
315119079203SIlya Dryomov }
315219079203SIlya Dryomov 
3153922dab61SIlya Dryomov /*
3154fbca9635SIlya Dryomov  * Timeout callback, called every N seconds.  When 1 or more OSD
3155fbca9635SIlya Dryomov  * requests has been active for more than N seconds, we send a keepalive
3156fbca9635SIlya Dryomov  * (tag + timestamp) to its OSD to ensure any communications channel
3157fbca9635SIlya Dryomov  * reset is detected.
31583d14c5d2SYehuda Sadeh  */
31593d14c5d2SYehuda Sadeh static void handle_timeout(struct work_struct *work)
31603d14c5d2SYehuda Sadeh {
31613d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc =
31623d14c5d2SYehuda Sadeh 		container_of(work, struct ceph_osd_client, timeout_work.work);
3163a319bf56SIlya Dryomov 	struct ceph_options *opts = osdc->client->options;
31645aea3dcdSIlya Dryomov 	unsigned long cutoff = jiffies - opts->osd_keepalive_timeout;
31657cc5e38fSIlya Dryomov 	unsigned long expiry_cutoff = jiffies - opts->osd_request_timeout;
31665aea3dcdSIlya Dryomov 	LIST_HEAD(slow_osds);
31675aea3dcdSIlya Dryomov 	struct rb_node *n, *p;
31683d14c5d2SYehuda Sadeh 
31695aea3dcdSIlya Dryomov 	dout("%s osdc %p\n", __func__, osdc);
31705aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
31713d14c5d2SYehuda Sadeh 
31723d14c5d2SYehuda Sadeh 	/*
31733d14c5d2SYehuda Sadeh 	 * ping osds that are a bit slow.  this ensures that if there
31743d14c5d2SYehuda Sadeh 	 * is a break in the TCP connection we will notice, and reopen
31753d14c5d2SYehuda Sadeh 	 * a connection with that osd (from the fault callback).
31763d14c5d2SYehuda Sadeh 	 */
31775aea3dcdSIlya Dryomov 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
31785aea3dcdSIlya Dryomov 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
31795aea3dcdSIlya Dryomov 		bool found = false;
31803d14c5d2SYehuda Sadeh 
31817cc5e38fSIlya Dryomov 		for (p = rb_first(&osd->o_requests); p; ) {
31825aea3dcdSIlya Dryomov 			struct ceph_osd_request *req =
31835aea3dcdSIlya Dryomov 			    rb_entry(p, struct ceph_osd_request, r_node);
31845aea3dcdSIlya Dryomov 
31857cc5e38fSIlya Dryomov 			p = rb_next(p); /* abort_request() */
31867cc5e38fSIlya Dryomov 
31875aea3dcdSIlya Dryomov 			if (time_before(req->r_stamp, cutoff)) {
31885aea3dcdSIlya Dryomov 				dout(" req %p tid %llu on osd%d is laggy\n",
31895aea3dcdSIlya Dryomov 				     req, req->r_tid, osd->o_osd);
31905aea3dcdSIlya Dryomov 				found = true;
31915aea3dcdSIlya Dryomov 			}
31927cc5e38fSIlya Dryomov 			if (opts->osd_request_timeout &&
31937cc5e38fSIlya Dryomov 			    time_before(req->r_start_stamp, expiry_cutoff)) {
31947cc5e38fSIlya Dryomov 				pr_err_ratelimited("tid %llu on osd%d timeout\n",
31957cc5e38fSIlya Dryomov 				       req->r_tid, osd->o_osd);
31967cc5e38fSIlya Dryomov 				abort_request(req, -ETIMEDOUT);
31977cc5e38fSIlya Dryomov 			}
31985aea3dcdSIlya Dryomov 		}
3199922dab61SIlya Dryomov 		for (p = rb_first(&osd->o_linger_requests); p; p = rb_next(p)) {
3200922dab61SIlya Dryomov 			struct ceph_osd_linger_request *lreq =
3201922dab61SIlya Dryomov 			    rb_entry(p, struct ceph_osd_linger_request, node);
3202922dab61SIlya Dryomov 
3203922dab61SIlya Dryomov 			dout(" lreq %p linger_id %llu is served by osd%d\n",
3204922dab61SIlya Dryomov 			     lreq, lreq->linger_id, osd->o_osd);
3205922dab61SIlya Dryomov 			found = true;
3206922dab61SIlya Dryomov 
3207922dab61SIlya Dryomov 			mutex_lock(&lreq->lock);
320819079203SIlya Dryomov 			if (lreq->is_watch && lreq->committed && !lreq->last_error)
3209922dab61SIlya Dryomov 				send_linger_ping(lreq);
3210922dab61SIlya Dryomov 			mutex_unlock(&lreq->lock);
3211922dab61SIlya Dryomov 		}
32125aea3dcdSIlya Dryomov 
32135aea3dcdSIlya Dryomov 		if (found)
32143d14c5d2SYehuda Sadeh 			list_move_tail(&osd->o_keepalive_item, &slow_osds);
32153d14c5d2SYehuda Sadeh 	}
32165aea3dcdSIlya Dryomov 
32177cc5e38fSIlya Dryomov 	if (opts->osd_request_timeout) {
32187cc5e38fSIlya Dryomov 		for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
32197cc5e38fSIlya Dryomov 			struct ceph_osd_request *req =
32207cc5e38fSIlya Dryomov 			    rb_entry(p, struct ceph_osd_request, r_node);
32217cc5e38fSIlya Dryomov 
32227cc5e38fSIlya Dryomov 			p = rb_next(p); /* abort_request() */
32237cc5e38fSIlya Dryomov 
32247cc5e38fSIlya Dryomov 			if (time_before(req->r_start_stamp, expiry_cutoff)) {
32257cc5e38fSIlya Dryomov 				pr_err_ratelimited("tid %llu on osd%d timeout\n",
32267cc5e38fSIlya Dryomov 				       req->r_tid, osdc->homeless_osd.o_osd);
32277cc5e38fSIlya Dryomov 				abort_request(req, -ETIMEDOUT);
32287cc5e38fSIlya Dryomov 			}
32297cc5e38fSIlya Dryomov 		}
32307cc5e38fSIlya Dryomov 	}
32317cc5e38fSIlya Dryomov 
32325aea3dcdSIlya Dryomov 	if (atomic_read(&osdc->num_homeless) || !list_empty(&slow_osds))
32335aea3dcdSIlya Dryomov 		maybe_request_map(osdc);
32345aea3dcdSIlya Dryomov 
32353d14c5d2SYehuda Sadeh 	while (!list_empty(&slow_osds)) {
32365aea3dcdSIlya Dryomov 		struct ceph_osd *osd = list_first_entry(&slow_osds,
32375aea3dcdSIlya Dryomov 							struct ceph_osd,
32383d14c5d2SYehuda Sadeh 							o_keepalive_item);
32393d14c5d2SYehuda Sadeh 		list_del_init(&osd->o_keepalive_item);
32403d14c5d2SYehuda Sadeh 		ceph_con_keepalive(&osd->o_con);
32413d14c5d2SYehuda Sadeh 	}
32423d14c5d2SYehuda Sadeh 
32435aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
3244fbca9635SIlya Dryomov 	schedule_delayed_work(&osdc->timeout_work,
3245fbca9635SIlya Dryomov 			      osdc->client->options->osd_keepalive_timeout);
32463d14c5d2SYehuda Sadeh }
32473d14c5d2SYehuda Sadeh 
32483d14c5d2SYehuda Sadeh static void handle_osds_timeout(struct work_struct *work)
32493d14c5d2SYehuda Sadeh {
32503d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc =
32513d14c5d2SYehuda Sadeh 		container_of(work, struct ceph_osd_client,
32523d14c5d2SYehuda Sadeh 			     osds_timeout_work.work);
3253a319bf56SIlya Dryomov 	unsigned long delay = osdc->client->options->osd_idle_ttl / 4;
325442a2c09fSIlya Dryomov 	struct ceph_osd *osd, *nosd;
32553d14c5d2SYehuda Sadeh 
325642a2c09fSIlya Dryomov 	dout("%s osdc %p\n", __func__, osdc);
32575aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
325842a2c09fSIlya Dryomov 	list_for_each_entry_safe(osd, nosd, &osdc->osd_lru, o_osd_lru) {
325942a2c09fSIlya Dryomov 		if (time_before(jiffies, osd->lru_ttl))
326042a2c09fSIlya Dryomov 			break;
326142a2c09fSIlya Dryomov 
32625aea3dcdSIlya Dryomov 		WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
3263922dab61SIlya Dryomov 		WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
32645aea3dcdSIlya Dryomov 		close_osd(osd);
326542a2c09fSIlya Dryomov 	}
326642a2c09fSIlya Dryomov 
32675aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
32683d14c5d2SYehuda Sadeh 	schedule_delayed_work(&osdc->osds_timeout_work,
32693d14c5d2SYehuda Sadeh 			      round_jiffies_relative(delay));
32703d14c5d2SYehuda Sadeh }
32713d14c5d2SYehuda Sadeh 
3272205ee118SIlya Dryomov static int ceph_oloc_decode(void **p, void *end,
3273205ee118SIlya Dryomov 			    struct ceph_object_locator *oloc)
3274205ee118SIlya Dryomov {
3275205ee118SIlya Dryomov 	u8 struct_v, struct_cv;
3276205ee118SIlya Dryomov 	u32 len;
3277205ee118SIlya Dryomov 	void *struct_end;
3278205ee118SIlya Dryomov 	int ret = 0;
3279205ee118SIlya Dryomov 
3280205ee118SIlya Dryomov 	ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3281205ee118SIlya Dryomov 	struct_v = ceph_decode_8(p);
3282205ee118SIlya Dryomov 	struct_cv = ceph_decode_8(p);
3283205ee118SIlya Dryomov 	if (struct_v < 3) {
3284205ee118SIlya Dryomov 		pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
3285205ee118SIlya Dryomov 			struct_v, struct_cv);
3286205ee118SIlya Dryomov 		goto e_inval;
3287205ee118SIlya Dryomov 	}
3288205ee118SIlya Dryomov 	if (struct_cv > 6) {
3289205ee118SIlya Dryomov 		pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
3290205ee118SIlya Dryomov 			struct_v, struct_cv);
3291205ee118SIlya Dryomov 		goto e_inval;
3292205ee118SIlya Dryomov 	}
3293205ee118SIlya Dryomov 	len = ceph_decode_32(p);
3294205ee118SIlya Dryomov 	ceph_decode_need(p, end, len, e_inval);
3295205ee118SIlya Dryomov 	struct_end = *p + len;
3296205ee118SIlya Dryomov 
3297205ee118SIlya Dryomov 	oloc->pool = ceph_decode_64(p);
3298205ee118SIlya Dryomov 	*p += 4; /* skip preferred */
3299205ee118SIlya Dryomov 
3300205ee118SIlya Dryomov 	len = ceph_decode_32(p);
3301205ee118SIlya Dryomov 	if (len > 0) {
3302205ee118SIlya Dryomov 		pr_warn("ceph_object_locator::key is set\n");
3303205ee118SIlya Dryomov 		goto e_inval;
3304205ee118SIlya Dryomov 	}
3305205ee118SIlya Dryomov 
3306205ee118SIlya Dryomov 	if (struct_v >= 5) {
3307cd08e0a2SYan, Zheng 		bool changed = false;
3308cd08e0a2SYan, Zheng 
3309205ee118SIlya Dryomov 		len = ceph_decode_32(p);
3310205ee118SIlya Dryomov 		if (len > 0) {
331130c156d9SYan, Zheng 			ceph_decode_need(p, end, len, e_inval);
3312cd08e0a2SYan, Zheng 			if (!oloc->pool_ns ||
3313cd08e0a2SYan, Zheng 			    ceph_compare_string(oloc->pool_ns, *p, len))
3314cd08e0a2SYan, Zheng 				changed = true;
331530c156d9SYan, Zheng 			*p += len;
3316cd08e0a2SYan, Zheng 		} else {
3317cd08e0a2SYan, Zheng 			if (oloc->pool_ns)
3318cd08e0a2SYan, Zheng 				changed = true;
3319cd08e0a2SYan, Zheng 		}
3320cd08e0a2SYan, Zheng 		if (changed) {
3321cd08e0a2SYan, Zheng 			/* redirect changes namespace */
3322cd08e0a2SYan, Zheng 			pr_warn("ceph_object_locator::nspace is changed\n");
3323cd08e0a2SYan, Zheng 			goto e_inval;
3324205ee118SIlya Dryomov 		}
3325205ee118SIlya Dryomov 	}
3326205ee118SIlya Dryomov 
3327205ee118SIlya Dryomov 	if (struct_v >= 6) {
3328205ee118SIlya Dryomov 		s64 hash = ceph_decode_64(p);
3329205ee118SIlya Dryomov 		if (hash != -1) {
3330205ee118SIlya Dryomov 			pr_warn("ceph_object_locator::hash is set\n");
3331205ee118SIlya Dryomov 			goto e_inval;
3332205ee118SIlya Dryomov 		}
3333205ee118SIlya Dryomov 	}
3334205ee118SIlya Dryomov 
3335205ee118SIlya Dryomov 	/* skip the rest */
3336205ee118SIlya Dryomov 	*p = struct_end;
3337205ee118SIlya Dryomov out:
3338205ee118SIlya Dryomov 	return ret;
3339205ee118SIlya Dryomov 
3340205ee118SIlya Dryomov e_inval:
3341205ee118SIlya Dryomov 	ret = -EINVAL;
3342205ee118SIlya Dryomov 	goto out;
3343205ee118SIlya Dryomov }
3344205ee118SIlya Dryomov 
3345205ee118SIlya Dryomov static int ceph_redirect_decode(void **p, void *end,
3346205ee118SIlya Dryomov 				struct ceph_request_redirect *redir)
3347205ee118SIlya Dryomov {
3348205ee118SIlya Dryomov 	u8 struct_v, struct_cv;
3349205ee118SIlya Dryomov 	u32 len;
3350205ee118SIlya Dryomov 	void *struct_end;
3351205ee118SIlya Dryomov 	int ret;
3352205ee118SIlya Dryomov 
3353205ee118SIlya Dryomov 	ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3354205ee118SIlya Dryomov 	struct_v = ceph_decode_8(p);
3355205ee118SIlya Dryomov 	struct_cv = ceph_decode_8(p);
3356205ee118SIlya Dryomov 	if (struct_cv > 1) {
3357205ee118SIlya Dryomov 		pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
3358205ee118SIlya Dryomov 			struct_v, struct_cv);
3359205ee118SIlya Dryomov 		goto e_inval;
3360205ee118SIlya Dryomov 	}
3361205ee118SIlya Dryomov 	len = ceph_decode_32(p);
3362205ee118SIlya Dryomov 	ceph_decode_need(p, end, len, e_inval);
3363205ee118SIlya Dryomov 	struct_end = *p + len;
3364205ee118SIlya Dryomov 
3365205ee118SIlya Dryomov 	ret = ceph_oloc_decode(p, end, &redir->oloc);
3366205ee118SIlya Dryomov 	if (ret)
3367205ee118SIlya Dryomov 		goto out;
3368205ee118SIlya Dryomov 
3369205ee118SIlya Dryomov 	len = ceph_decode_32(p);
3370205ee118SIlya Dryomov 	if (len > 0) {
3371205ee118SIlya Dryomov 		pr_warn("ceph_request_redirect::object_name is set\n");
3372205ee118SIlya Dryomov 		goto e_inval;
3373205ee118SIlya Dryomov 	}
3374205ee118SIlya Dryomov 
3375205ee118SIlya Dryomov 	len = ceph_decode_32(p);
3376205ee118SIlya Dryomov 	*p += len; /* skip osd_instructions */
3377205ee118SIlya Dryomov 
3378205ee118SIlya Dryomov 	/* skip the rest */
3379205ee118SIlya Dryomov 	*p = struct_end;
3380205ee118SIlya Dryomov out:
3381205ee118SIlya Dryomov 	return ret;
3382205ee118SIlya Dryomov 
3383205ee118SIlya Dryomov e_inval:
3384205ee118SIlya Dryomov 	ret = -EINVAL;
3385205ee118SIlya Dryomov 	goto out;
3386205ee118SIlya Dryomov }
3387205ee118SIlya Dryomov 
3388fe5da05eSIlya Dryomov struct MOSDOpReply {
3389fe5da05eSIlya Dryomov 	struct ceph_pg pgid;
3390fe5da05eSIlya Dryomov 	u64 flags;
3391fe5da05eSIlya Dryomov 	int result;
3392fe5da05eSIlya Dryomov 	u32 epoch;
3393fe5da05eSIlya Dryomov 	int num_ops;
3394fe5da05eSIlya Dryomov 	u32 outdata_len[CEPH_OSD_MAX_OPS];
3395fe5da05eSIlya Dryomov 	s32 rval[CEPH_OSD_MAX_OPS];
3396fe5da05eSIlya Dryomov 	int retry_attempt;
3397fe5da05eSIlya Dryomov 	struct ceph_eversion replay_version;
3398fe5da05eSIlya Dryomov 	u64 user_version;
3399fe5da05eSIlya Dryomov 	struct ceph_request_redirect redirect;
3400fe5da05eSIlya Dryomov };
340125845472SSage Weil 
3402fe5da05eSIlya Dryomov static int decode_MOSDOpReply(const struct ceph_msg *msg, struct MOSDOpReply *m)
34033d14c5d2SYehuda Sadeh {
3404fe5da05eSIlya Dryomov 	void *p = msg->front.iov_base;
3405fe5da05eSIlya Dryomov 	void *const end = p + msg->front.iov_len;
3406fe5da05eSIlya Dryomov 	u16 version = le16_to_cpu(msg->hdr.version);
3407fe5da05eSIlya Dryomov 	struct ceph_eversion bad_replay_version;
3408b0b31a8fSIlya Dryomov 	u8 decode_redir;
3409fe5da05eSIlya Dryomov 	u32 len;
3410fe5da05eSIlya Dryomov 	int ret;
3411fe5da05eSIlya Dryomov 	int i;
34123d14c5d2SYehuda Sadeh 
3413fe5da05eSIlya Dryomov 	ceph_decode_32_safe(&p, end, len, e_inval);
3414fe5da05eSIlya Dryomov 	ceph_decode_need(&p, end, len, e_inval);
3415fe5da05eSIlya Dryomov 	p += len; /* skip oid */
34161b83bef2SSage Weil 
3417fe5da05eSIlya Dryomov 	ret = ceph_decode_pgid(&p, end, &m->pgid);
3418fe5da05eSIlya Dryomov 	if (ret)
3419fe5da05eSIlya Dryomov 		return ret;
34201b83bef2SSage Weil 
3421fe5da05eSIlya Dryomov 	ceph_decode_64_safe(&p, end, m->flags, e_inval);
3422fe5da05eSIlya Dryomov 	ceph_decode_32_safe(&p, end, m->result, e_inval);
3423fe5da05eSIlya Dryomov 	ceph_decode_need(&p, end, sizeof(bad_replay_version), e_inval);
3424fe5da05eSIlya Dryomov 	memcpy(&bad_replay_version, p, sizeof(bad_replay_version));
3425fe5da05eSIlya Dryomov 	p += sizeof(bad_replay_version);
3426fe5da05eSIlya Dryomov 	ceph_decode_32_safe(&p, end, m->epoch, e_inval);
34271b83bef2SSage Weil 
3428fe5da05eSIlya Dryomov 	ceph_decode_32_safe(&p, end, m->num_ops, e_inval);
3429fe5da05eSIlya Dryomov 	if (m->num_ops > ARRAY_SIZE(m->outdata_len))
3430fe5da05eSIlya Dryomov 		goto e_inval;
34311b83bef2SSage Weil 
3432fe5da05eSIlya Dryomov 	ceph_decode_need(&p, end, m->num_ops * sizeof(struct ceph_osd_op),
3433fe5da05eSIlya Dryomov 			 e_inval);
3434fe5da05eSIlya Dryomov 	for (i = 0; i < m->num_ops; i++) {
34351b83bef2SSage Weil 		struct ceph_osd_op *op = p;
34361b83bef2SSage Weil 
3437fe5da05eSIlya Dryomov 		m->outdata_len[i] = le32_to_cpu(op->payload_len);
34381b83bef2SSage Weil 		p += sizeof(*op);
34391b83bef2SSage Weil 	}
3440fe5da05eSIlya Dryomov 
3441fe5da05eSIlya Dryomov 	ceph_decode_32_safe(&p, end, m->retry_attempt, e_inval);
3442fe5da05eSIlya Dryomov 	for (i = 0; i < m->num_ops; i++)
3443fe5da05eSIlya Dryomov 		ceph_decode_32_safe(&p, end, m->rval[i], e_inval);
3444fe5da05eSIlya Dryomov 
3445fe5da05eSIlya Dryomov 	if (version >= 5) {
3446fe5da05eSIlya Dryomov 		ceph_decode_need(&p, end, sizeof(m->replay_version), e_inval);
3447fe5da05eSIlya Dryomov 		memcpy(&m->replay_version, p, sizeof(m->replay_version));
3448fe5da05eSIlya Dryomov 		p += sizeof(m->replay_version);
3449fe5da05eSIlya Dryomov 		ceph_decode_64_safe(&p, end, m->user_version, e_inval);
3450fe5da05eSIlya Dryomov 	} else {
3451fe5da05eSIlya Dryomov 		m->replay_version = bad_replay_version; /* struct */
3452fe5da05eSIlya Dryomov 		m->user_version = le64_to_cpu(m->replay_version.version);
34531b83bef2SSage Weil 	}
34541b83bef2SSage Weil 
3455fe5da05eSIlya Dryomov 	if (version >= 6) {
3456fe5da05eSIlya Dryomov 		if (version >= 7)
3457fe5da05eSIlya Dryomov 			ceph_decode_8_safe(&p, end, decode_redir, e_inval);
3458b0b31a8fSIlya Dryomov 		else
3459b0b31a8fSIlya Dryomov 			decode_redir = 1;
3460b0b31a8fSIlya Dryomov 	} else {
3461b0b31a8fSIlya Dryomov 		decode_redir = 0;
3462b0b31a8fSIlya Dryomov 	}
3463b0b31a8fSIlya Dryomov 
3464b0b31a8fSIlya Dryomov 	if (decode_redir) {
3465fe5da05eSIlya Dryomov 		ret = ceph_redirect_decode(&p, end, &m->redirect);
3466fe5da05eSIlya Dryomov 		if (ret)
3467fe5da05eSIlya Dryomov 			return ret;
3468205ee118SIlya Dryomov 	} else {
3469fe5da05eSIlya Dryomov 		ceph_oloc_init(&m->redirect.oloc);
3470205ee118SIlya Dryomov 	}
3471205ee118SIlya Dryomov 
3472fe5da05eSIlya Dryomov 	return 0;
3473205ee118SIlya Dryomov 
3474fe5da05eSIlya Dryomov e_inval:
3475fe5da05eSIlya Dryomov 	return -EINVAL;
3476fe5da05eSIlya Dryomov }
3477fe5da05eSIlya Dryomov 
3478fe5da05eSIlya Dryomov /*
3479b18b9550SIlya Dryomov  * Handle MOSDOpReply.  Set ->r_result and call the callback if it is
3480b18b9550SIlya Dryomov  * specified.
3481fe5da05eSIlya Dryomov  */
34825aea3dcdSIlya Dryomov static void handle_reply(struct ceph_osd *osd, struct ceph_msg *msg)
3483fe5da05eSIlya Dryomov {
34845aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
3485fe5da05eSIlya Dryomov 	struct ceph_osd_request *req;
3486fe5da05eSIlya Dryomov 	struct MOSDOpReply m;
3487fe5da05eSIlya Dryomov 	u64 tid = le64_to_cpu(msg->hdr.tid);
3488fe5da05eSIlya Dryomov 	u32 data_len = 0;
3489fe5da05eSIlya Dryomov 	int ret;
3490fe5da05eSIlya Dryomov 	int i;
3491fe5da05eSIlya Dryomov 
3492fe5da05eSIlya Dryomov 	dout("%s msg %p tid %llu\n", __func__, msg, tid);
3493fe5da05eSIlya Dryomov 
34945aea3dcdSIlya Dryomov 	down_read(&osdc->lock);
34955aea3dcdSIlya Dryomov 	if (!osd_registered(osd)) {
34965aea3dcdSIlya Dryomov 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
34975aea3dcdSIlya Dryomov 		goto out_unlock_osdc;
3498fe5da05eSIlya Dryomov 	}
34995aea3dcdSIlya Dryomov 	WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
35005aea3dcdSIlya Dryomov 
35015aea3dcdSIlya Dryomov 	mutex_lock(&osd->lock);
35025aea3dcdSIlya Dryomov 	req = lookup_request(&osd->o_requests, tid);
35035aea3dcdSIlya Dryomov 	if (!req) {
35045aea3dcdSIlya Dryomov 		dout("%s osd%d tid %llu unknown\n", __func__, osd->o_osd, tid);
35055aea3dcdSIlya Dryomov 		goto out_unlock_session;
35065aea3dcdSIlya Dryomov 	}
3507fe5da05eSIlya Dryomov 
3508cd08e0a2SYan, Zheng 	m.redirect.oloc.pool_ns = req->r_t.target_oloc.pool_ns;
3509fe5da05eSIlya Dryomov 	ret = decode_MOSDOpReply(msg, &m);
3510cd08e0a2SYan, Zheng 	m.redirect.oloc.pool_ns = NULL;
3511fe5da05eSIlya Dryomov 	if (ret) {
3512fe5da05eSIlya Dryomov 		pr_err("failed to decode MOSDOpReply for tid %llu: %d\n",
3513fe5da05eSIlya Dryomov 		       req->r_tid, ret);
3514fe5da05eSIlya Dryomov 		ceph_msg_dump(msg);
3515fe5da05eSIlya Dryomov 		goto fail_request;
3516fe5da05eSIlya Dryomov 	}
3517fe5da05eSIlya Dryomov 	dout("%s req %p tid %llu flags 0x%llx pgid %llu.%x epoch %u attempt %d v %u'%llu uv %llu\n",
3518fe5da05eSIlya Dryomov 	     __func__, req, req->r_tid, m.flags, m.pgid.pool, m.pgid.seed,
3519fe5da05eSIlya Dryomov 	     m.epoch, m.retry_attempt, le32_to_cpu(m.replay_version.epoch),
3520fe5da05eSIlya Dryomov 	     le64_to_cpu(m.replay_version.version), m.user_version);
3521fe5da05eSIlya Dryomov 
3522fe5da05eSIlya Dryomov 	if (m.retry_attempt >= 0) {
3523fe5da05eSIlya Dryomov 		if (m.retry_attempt != req->r_attempts - 1) {
3524fe5da05eSIlya Dryomov 			dout("req %p tid %llu retry_attempt %d != %d, ignoring\n",
3525fe5da05eSIlya Dryomov 			     req, req->r_tid, m.retry_attempt,
3526fe5da05eSIlya Dryomov 			     req->r_attempts - 1);
35275aea3dcdSIlya Dryomov 			goto out_unlock_session;
3528fe5da05eSIlya Dryomov 		}
3529fe5da05eSIlya Dryomov 	} else {
3530fe5da05eSIlya Dryomov 		WARN_ON(1); /* MOSDOpReply v4 is assumed */
3531fe5da05eSIlya Dryomov 	}
3532fe5da05eSIlya Dryomov 
3533fe5da05eSIlya Dryomov 	if (!ceph_oloc_empty(&m.redirect.oloc)) {
3534fe5da05eSIlya Dryomov 		dout("req %p tid %llu redirect pool %lld\n", req, req->r_tid,
3535fe5da05eSIlya Dryomov 		     m.redirect.oloc.pool);
35365aea3dcdSIlya Dryomov 		unlink_request(osd, req);
35375aea3dcdSIlya Dryomov 		mutex_unlock(&osd->lock);
3538205ee118SIlya Dryomov 
353930c156d9SYan, Zheng 		/*
354030c156d9SYan, Zheng 		 * Not ceph_oloc_copy() - changing pool_ns is not
354130c156d9SYan, Zheng 		 * supported.
354230c156d9SYan, Zheng 		 */
354330c156d9SYan, Zheng 		req->r_t.target_oloc.pool = m.redirect.oloc.pool;
35445aea3dcdSIlya Dryomov 		req->r_flags |= CEPH_OSD_FLAG_REDIRECTED;
35455aea3dcdSIlya Dryomov 		req->r_tid = 0;
35465aea3dcdSIlya Dryomov 		__submit_request(req, false);
35475aea3dcdSIlya Dryomov 		goto out_unlock_osdc;
3548205ee118SIlya Dryomov 	}
3549205ee118SIlya Dryomov 
3550fe5da05eSIlya Dryomov 	if (m.num_ops != req->r_num_ops) {
3551fe5da05eSIlya Dryomov 		pr_err("num_ops %d != %d for tid %llu\n", m.num_ops,
3552fe5da05eSIlya Dryomov 		       req->r_num_ops, req->r_tid);
3553fe5da05eSIlya Dryomov 		goto fail_request;
3554fe5da05eSIlya Dryomov 	}
3555fe5da05eSIlya Dryomov 	for (i = 0; i < req->r_num_ops; i++) {
3556fe5da05eSIlya Dryomov 		dout(" req %p tid %llu op %d rval %d len %u\n", req,
3557fe5da05eSIlya Dryomov 		     req->r_tid, i, m.rval[i], m.outdata_len[i]);
3558fe5da05eSIlya Dryomov 		req->r_ops[i].rval = m.rval[i];
3559fe5da05eSIlya Dryomov 		req->r_ops[i].outdata_len = m.outdata_len[i];
3560fe5da05eSIlya Dryomov 		data_len += m.outdata_len[i];
3561fe5da05eSIlya Dryomov 	}
3562fe5da05eSIlya Dryomov 	if (data_len != le32_to_cpu(msg->hdr.data_len)) {
3563fe5da05eSIlya Dryomov 		pr_err("sum of lens %u != %u for tid %llu\n", data_len,
3564fe5da05eSIlya Dryomov 		       le32_to_cpu(msg->hdr.data_len), req->r_tid);
3565fe5da05eSIlya Dryomov 		goto fail_request;
3566fe5da05eSIlya Dryomov 	}
3567b18b9550SIlya Dryomov 	dout("%s req %p tid %llu result %d data_len %u\n", __func__,
3568b18b9550SIlya Dryomov 	     req, req->r_tid, m.result, data_len);
35693d14c5d2SYehuda Sadeh 
3570b18b9550SIlya Dryomov 	/*
3571b18b9550SIlya Dryomov 	 * Since we only ever request ONDISK, we should only ever get
3572b18b9550SIlya Dryomov 	 * one (type of) reply back.
3573b18b9550SIlya Dryomov 	 */
3574b18b9550SIlya Dryomov 	WARN_ON(!(m.flags & CEPH_OSD_FLAG_ONDISK));
3575fe5da05eSIlya Dryomov 	req->r_result = m.result ?: data_len;
357645ee2c1dSIlya Dryomov 	finish_request(req);
35775aea3dcdSIlya Dryomov 	mutex_unlock(&osd->lock);
35785aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
35793d14c5d2SYehuda Sadeh 
3580fe5da05eSIlya Dryomov 	__complete_request(req);
35813d14c5d2SYehuda Sadeh 	return;
3582fe5da05eSIlya Dryomov 
3583fe5da05eSIlya Dryomov fail_request:
35844609245eSIlya Dryomov 	complete_request(req, -EIO);
35855aea3dcdSIlya Dryomov out_unlock_session:
35865aea3dcdSIlya Dryomov 	mutex_unlock(&osd->lock);
35875aea3dcdSIlya Dryomov out_unlock_osdc:
35885aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
35893d14c5d2SYehuda Sadeh }
35903d14c5d2SYehuda Sadeh 
359142c1b124SIlya Dryomov static void set_pool_was_full(struct ceph_osd_client *osdc)
359242c1b124SIlya Dryomov {
359342c1b124SIlya Dryomov 	struct rb_node *n;
359442c1b124SIlya Dryomov 
359542c1b124SIlya Dryomov 	for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
359642c1b124SIlya Dryomov 		struct ceph_pg_pool_info *pi =
359742c1b124SIlya Dryomov 		    rb_entry(n, struct ceph_pg_pool_info, node);
359842c1b124SIlya Dryomov 
359942c1b124SIlya Dryomov 		pi->was_full = __pool_full(pi);
360042c1b124SIlya Dryomov 	}
360142c1b124SIlya Dryomov }
360242c1b124SIlya Dryomov 
36035aea3dcdSIlya Dryomov static bool pool_cleared_full(struct ceph_osd_client *osdc, s64 pool_id)
36043d14c5d2SYehuda Sadeh {
36055aea3dcdSIlya Dryomov 	struct ceph_pg_pool_info *pi;
36063d14c5d2SYehuda Sadeh 
36075aea3dcdSIlya Dryomov 	pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
36085aea3dcdSIlya Dryomov 	if (!pi)
36095aea3dcdSIlya Dryomov 		return false;
36103d14c5d2SYehuda Sadeh 
36115aea3dcdSIlya Dryomov 	return pi->was_full && !__pool_full(pi);
36123d14c5d2SYehuda Sadeh }
36133d14c5d2SYehuda Sadeh 
3614922dab61SIlya Dryomov static enum calc_target_result
3615922dab61SIlya Dryomov recalc_linger_target(struct ceph_osd_linger_request *lreq)
3616922dab61SIlya Dryomov {
3617922dab61SIlya Dryomov 	struct ceph_osd_client *osdc = lreq->osdc;
3618922dab61SIlya Dryomov 	enum calc_target_result ct_res;
3619922dab61SIlya Dryomov 
36207de030d6SIlya Dryomov 	ct_res = calc_target(osdc, &lreq->t, NULL, true);
3621922dab61SIlya Dryomov 	if (ct_res == CALC_TARGET_NEED_RESEND) {
3622922dab61SIlya Dryomov 		struct ceph_osd *osd;
3623922dab61SIlya Dryomov 
3624922dab61SIlya Dryomov 		osd = lookup_create_osd(osdc, lreq->t.osd, true);
3625922dab61SIlya Dryomov 		if (osd != lreq->osd) {
3626922dab61SIlya Dryomov 			unlink_linger(lreq->osd, lreq);
3627922dab61SIlya Dryomov 			link_linger(osd, lreq);
3628922dab61SIlya Dryomov 		}
3629922dab61SIlya Dryomov 	}
3630922dab61SIlya Dryomov 
3631922dab61SIlya Dryomov 	return ct_res;
3632922dab61SIlya Dryomov }
3633922dab61SIlya Dryomov 
36343d14c5d2SYehuda Sadeh /*
36355aea3dcdSIlya Dryomov  * Requeue requests whose mapping to an OSD has changed.
36363d14c5d2SYehuda Sadeh  */
36375aea3dcdSIlya Dryomov static void scan_requests(struct ceph_osd *osd,
36385aea3dcdSIlya Dryomov 			  bool force_resend,
36395aea3dcdSIlya Dryomov 			  bool cleared_full,
36405aea3dcdSIlya Dryomov 			  bool check_pool_cleared_full,
36415aea3dcdSIlya Dryomov 			  struct rb_root *need_resend,
36425aea3dcdSIlya Dryomov 			  struct list_head *need_resend_linger)
36433d14c5d2SYehuda Sadeh {
36445aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
36455aea3dcdSIlya Dryomov 	struct rb_node *n;
36465aea3dcdSIlya Dryomov 	bool force_resend_writes;
36473d14c5d2SYehuda Sadeh 
3648922dab61SIlya Dryomov 	for (n = rb_first(&osd->o_linger_requests); n; ) {
3649922dab61SIlya Dryomov 		struct ceph_osd_linger_request *lreq =
3650922dab61SIlya Dryomov 		    rb_entry(n, struct ceph_osd_linger_request, node);
3651922dab61SIlya Dryomov 		enum calc_target_result ct_res;
3652922dab61SIlya Dryomov 
3653922dab61SIlya Dryomov 		n = rb_next(n); /* recalc_linger_target() */
3654922dab61SIlya Dryomov 
3655922dab61SIlya Dryomov 		dout("%s lreq %p linger_id %llu\n", __func__, lreq,
3656922dab61SIlya Dryomov 		     lreq->linger_id);
3657922dab61SIlya Dryomov 		ct_res = recalc_linger_target(lreq);
3658922dab61SIlya Dryomov 		switch (ct_res) {
3659922dab61SIlya Dryomov 		case CALC_TARGET_NO_ACTION:
3660922dab61SIlya Dryomov 			force_resend_writes = cleared_full ||
3661922dab61SIlya Dryomov 			    (check_pool_cleared_full &&
3662922dab61SIlya Dryomov 			     pool_cleared_full(osdc, lreq->t.base_oloc.pool));
3663922dab61SIlya Dryomov 			if (!force_resend && !force_resend_writes)
3664922dab61SIlya Dryomov 				break;
3665922dab61SIlya Dryomov 
3666922dab61SIlya Dryomov 			/* fall through */
3667922dab61SIlya Dryomov 		case CALC_TARGET_NEED_RESEND:
36684609245eSIlya Dryomov 			cancel_linger_map_check(lreq);
3669922dab61SIlya Dryomov 			/*
3670922dab61SIlya Dryomov 			 * scan_requests() for the previous epoch(s)
3671922dab61SIlya Dryomov 			 * may have already added it to the list, since
3672922dab61SIlya Dryomov 			 * it's not unlinked here.
3673922dab61SIlya Dryomov 			 */
3674922dab61SIlya Dryomov 			if (list_empty(&lreq->scan_item))
3675922dab61SIlya Dryomov 				list_add_tail(&lreq->scan_item, need_resend_linger);
3676922dab61SIlya Dryomov 			break;
3677922dab61SIlya Dryomov 		case CALC_TARGET_POOL_DNE:
3678a10bcb19SIlya Dryomov 			list_del_init(&lreq->scan_item);
36794609245eSIlya Dryomov 			check_linger_pool_dne(lreq);
3680922dab61SIlya Dryomov 			break;
3681922dab61SIlya Dryomov 		}
3682922dab61SIlya Dryomov 	}
3683922dab61SIlya Dryomov 
36845aea3dcdSIlya Dryomov 	for (n = rb_first(&osd->o_requests); n; ) {
36855aea3dcdSIlya Dryomov 		struct ceph_osd_request *req =
36865aea3dcdSIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
36875aea3dcdSIlya Dryomov 		enum calc_target_result ct_res;
3688ab60b16dSAlex Elder 
36894609245eSIlya Dryomov 		n = rb_next(n); /* unlink_request(), check_pool_dne() */
3690ab60b16dSAlex Elder 
36915aea3dcdSIlya Dryomov 		dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
36927de030d6SIlya Dryomov 		ct_res = calc_target(osdc, &req->r_t, &req->r_osd->o_con,
36937de030d6SIlya Dryomov 				     false);
36945aea3dcdSIlya Dryomov 		switch (ct_res) {
36955aea3dcdSIlya Dryomov 		case CALC_TARGET_NO_ACTION:
36965aea3dcdSIlya Dryomov 			force_resend_writes = cleared_full ||
36975aea3dcdSIlya Dryomov 			    (check_pool_cleared_full &&
36985aea3dcdSIlya Dryomov 			     pool_cleared_full(osdc, req->r_t.base_oloc.pool));
36995aea3dcdSIlya Dryomov 			if (!force_resend &&
37005aea3dcdSIlya Dryomov 			    (!(req->r_flags & CEPH_OSD_FLAG_WRITE) ||
37015aea3dcdSIlya Dryomov 			     !force_resend_writes))
37025aea3dcdSIlya Dryomov 				break;
3703a40c4f10SYehuda Sadeh 
37045aea3dcdSIlya Dryomov 			/* fall through */
37055aea3dcdSIlya Dryomov 		case CALC_TARGET_NEED_RESEND:
37064609245eSIlya Dryomov 			cancel_map_check(req);
37075aea3dcdSIlya Dryomov 			unlink_request(osd, req);
37085aea3dcdSIlya Dryomov 			insert_request(need_resend, req);
37095aea3dcdSIlya Dryomov 			break;
37105aea3dcdSIlya Dryomov 		case CALC_TARGET_POOL_DNE:
37114609245eSIlya Dryomov 			check_pool_dne(req);
37125aea3dcdSIlya Dryomov 			break;
3713a40c4f10SYehuda Sadeh 		}
37143d14c5d2SYehuda Sadeh 	}
37153d14c5d2SYehuda Sadeh }
37166f6c7006SSage Weil 
371742c1b124SIlya Dryomov static int handle_one_map(struct ceph_osd_client *osdc,
37185aea3dcdSIlya Dryomov 			  void *p, void *end, bool incremental,
37195aea3dcdSIlya Dryomov 			  struct rb_root *need_resend,
37205aea3dcdSIlya Dryomov 			  struct list_head *need_resend_linger)
372142c1b124SIlya Dryomov {
372242c1b124SIlya Dryomov 	struct ceph_osdmap *newmap;
372342c1b124SIlya Dryomov 	struct rb_node *n;
372442c1b124SIlya Dryomov 	bool skipped_map = false;
372542c1b124SIlya Dryomov 	bool was_full;
372642c1b124SIlya Dryomov 
3727b7ec35b3SIlya Dryomov 	was_full = ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
372842c1b124SIlya Dryomov 	set_pool_was_full(osdc);
372942c1b124SIlya Dryomov 
373042c1b124SIlya Dryomov 	if (incremental)
373142c1b124SIlya Dryomov 		newmap = osdmap_apply_incremental(&p, end, osdc->osdmap);
373242c1b124SIlya Dryomov 	else
373342c1b124SIlya Dryomov 		newmap = ceph_osdmap_decode(&p, end);
373442c1b124SIlya Dryomov 	if (IS_ERR(newmap))
373542c1b124SIlya Dryomov 		return PTR_ERR(newmap);
373642c1b124SIlya Dryomov 
373742c1b124SIlya Dryomov 	if (newmap != osdc->osdmap) {
373842c1b124SIlya Dryomov 		/*
373942c1b124SIlya Dryomov 		 * Preserve ->was_full before destroying the old map.
374042c1b124SIlya Dryomov 		 * For pools that weren't in the old map, ->was_full
374142c1b124SIlya Dryomov 		 * should be false.
374242c1b124SIlya Dryomov 		 */
374342c1b124SIlya Dryomov 		for (n = rb_first(&newmap->pg_pools); n; n = rb_next(n)) {
374442c1b124SIlya Dryomov 			struct ceph_pg_pool_info *pi =
374542c1b124SIlya Dryomov 			    rb_entry(n, struct ceph_pg_pool_info, node);
374642c1b124SIlya Dryomov 			struct ceph_pg_pool_info *old_pi;
374742c1b124SIlya Dryomov 
374842c1b124SIlya Dryomov 			old_pi = ceph_pg_pool_by_id(osdc->osdmap, pi->id);
374942c1b124SIlya Dryomov 			if (old_pi)
375042c1b124SIlya Dryomov 				pi->was_full = old_pi->was_full;
375142c1b124SIlya Dryomov 			else
375242c1b124SIlya Dryomov 				WARN_ON(pi->was_full);
375342c1b124SIlya Dryomov 		}
375442c1b124SIlya Dryomov 
375542c1b124SIlya Dryomov 		if (osdc->osdmap->epoch &&
375642c1b124SIlya Dryomov 		    osdc->osdmap->epoch + 1 < newmap->epoch) {
375742c1b124SIlya Dryomov 			WARN_ON(incremental);
375842c1b124SIlya Dryomov 			skipped_map = true;
375942c1b124SIlya Dryomov 		}
376042c1b124SIlya Dryomov 
376142c1b124SIlya Dryomov 		ceph_osdmap_destroy(osdc->osdmap);
376242c1b124SIlya Dryomov 		osdc->osdmap = newmap;
376342c1b124SIlya Dryomov 	}
376442c1b124SIlya Dryomov 
3765b7ec35b3SIlya Dryomov 	was_full &= !ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
37665aea3dcdSIlya Dryomov 	scan_requests(&osdc->homeless_osd, skipped_map, was_full, true,
37675aea3dcdSIlya Dryomov 		      need_resend, need_resend_linger);
37685aea3dcdSIlya Dryomov 
37695aea3dcdSIlya Dryomov 	for (n = rb_first(&osdc->osds); n; ) {
37705aea3dcdSIlya Dryomov 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
37715aea3dcdSIlya Dryomov 
37725aea3dcdSIlya Dryomov 		n = rb_next(n); /* close_osd() */
37735aea3dcdSIlya Dryomov 
37745aea3dcdSIlya Dryomov 		scan_requests(osd, skipped_map, was_full, true, need_resend,
37755aea3dcdSIlya Dryomov 			      need_resend_linger);
37765aea3dcdSIlya Dryomov 		if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
37775aea3dcdSIlya Dryomov 		    memcmp(&osd->o_con.peer_addr,
37785aea3dcdSIlya Dryomov 			   ceph_osd_addr(osdc->osdmap, osd->o_osd),
37795aea3dcdSIlya Dryomov 			   sizeof(struct ceph_entity_addr)))
37805aea3dcdSIlya Dryomov 			close_osd(osd);
37815aea3dcdSIlya Dryomov 	}
378242c1b124SIlya Dryomov 
378342c1b124SIlya Dryomov 	return 0;
378442c1b124SIlya Dryomov }
37856f6c7006SSage Weil 
37865aea3dcdSIlya Dryomov static void kick_requests(struct ceph_osd_client *osdc,
37875aea3dcdSIlya Dryomov 			  struct rb_root *need_resend,
37885aea3dcdSIlya Dryomov 			  struct list_head *need_resend_linger)
37895aea3dcdSIlya Dryomov {
3790922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq, *nlreq;
379104c7d789SIlya Dryomov 	enum calc_target_result ct_res;
37925aea3dcdSIlya Dryomov 	struct rb_node *n;
37935aea3dcdSIlya Dryomov 
379404c7d789SIlya Dryomov 	/* make sure need_resend targets reflect latest map */
379504c7d789SIlya Dryomov 	for (n = rb_first(need_resend); n; ) {
379604c7d789SIlya Dryomov 		struct ceph_osd_request *req =
379704c7d789SIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
379804c7d789SIlya Dryomov 
379904c7d789SIlya Dryomov 		n = rb_next(n);
380004c7d789SIlya Dryomov 
380104c7d789SIlya Dryomov 		if (req->r_t.epoch < osdc->osdmap->epoch) {
380204c7d789SIlya Dryomov 			ct_res = calc_target(osdc, &req->r_t, NULL, false);
380304c7d789SIlya Dryomov 			if (ct_res == CALC_TARGET_POOL_DNE) {
380404c7d789SIlya Dryomov 				erase_request(need_resend, req);
380504c7d789SIlya Dryomov 				check_pool_dne(req);
380604c7d789SIlya Dryomov 			}
380704c7d789SIlya Dryomov 		}
380804c7d789SIlya Dryomov 	}
380904c7d789SIlya Dryomov 
38105aea3dcdSIlya Dryomov 	for (n = rb_first(need_resend); n; ) {
38115aea3dcdSIlya Dryomov 		struct ceph_osd_request *req =
38125aea3dcdSIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
38135aea3dcdSIlya Dryomov 		struct ceph_osd *osd;
38145aea3dcdSIlya Dryomov 
38155aea3dcdSIlya Dryomov 		n = rb_next(n);
38165aea3dcdSIlya Dryomov 		erase_request(need_resend, req); /* before link_request() */
38175aea3dcdSIlya Dryomov 
38185aea3dcdSIlya Dryomov 		osd = lookup_create_osd(osdc, req->r_t.osd, true);
38195aea3dcdSIlya Dryomov 		link_request(osd, req);
38205aea3dcdSIlya Dryomov 		if (!req->r_linger) {
38215aea3dcdSIlya Dryomov 			if (!osd_homeless(osd) && !req->r_t.paused)
38225aea3dcdSIlya Dryomov 				send_request(req);
3823922dab61SIlya Dryomov 		} else {
3824922dab61SIlya Dryomov 			cancel_linger_request(req);
38255aea3dcdSIlya Dryomov 		}
38265aea3dcdSIlya Dryomov 	}
3827922dab61SIlya Dryomov 
3828922dab61SIlya Dryomov 	list_for_each_entry_safe(lreq, nlreq, need_resend_linger, scan_item) {
3829922dab61SIlya Dryomov 		if (!osd_homeless(lreq->osd))
3830922dab61SIlya Dryomov 			send_linger(lreq);
3831922dab61SIlya Dryomov 
3832922dab61SIlya Dryomov 		list_del_init(&lreq->scan_item);
3833922dab61SIlya Dryomov 	}
38345aea3dcdSIlya Dryomov }
38355aea3dcdSIlya Dryomov 
38363d14c5d2SYehuda Sadeh /*
38373d14c5d2SYehuda Sadeh  * Process updated osd map.
38383d14c5d2SYehuda Sadeh  *
38393d14c5d2SYehuda Sadeh  * The message contains any number of incremental and full maps, normally
38403d14c5d2SYehuda Sadeh  * indicating some sort of topology change in the cluster.  Kick requests
38413d14c5d2SYehuda Sadeh  * off to different OSDs as needed.
38423d14c5d2SYehuda Sadeh  */
38433d14c5d2SYehuda Sadeh void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
38443d14c5d2SYehuda Sadeh {
384542c1b124SIlya Dryomov 	void *p = msg->front.iov_base;
384642c1b124SIlya Dryomov 	void *const end = p + msg->front.iov_len;
38473d14c5d2SYehuda Sadeh 	u32 nr_maps, maplen;
38483d14c5d2SYehuda Sadeh 	u32 epoch;
38493d14c5d2SYehuda Sadeh 	struct ceph_fsid fsid;
38505aea3dcdSIlya Dryomov 	struct rb_root need_resend = RB_ROOT;
38515aea3dcdSIlya Dryomov 	LIST_HEAD(need_resend_linger);
385242c1b124SIlya Dryomov 	bool handled_incremental = false;
385342c1b124SIlya Dryomov 	bool was_pauserd, was_pausewr;
385442c1b124SIlya Dryomov 	bool pauserd, pausewr;
385542c1b124SIlya Dryomov 	int err;
38563d14c5d2SYehuda Sadeh 
385742c1b124SIlya Dryomov 	dout("%s have %u\n", __func__, osdc->osdmap->epoch);
38585aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
38593d14c5d2SYehuda Sadeh 
38603d14c5d2SYehuda Sadeh 	/* verify fsid */
38613d14c5d2SYehuda Sadeh 	ceph_decode_need(&p, end, sizeof(fsid), bad);
38623d14c5d2SYehuda Sadeh 	ceph_decode_copy(&p, &fsid, sizeof(fsid));
38633d14c5d2SYehuda Sadeh 	if (ceph_check_fsid(osdc->client, &fsid) < 0)
386442c1b124SIlya Dryomov 		goto bad;
38653d14c5d2SYehuda Sadeh 
3866b7ec35b3SIlya Dryomov 	was_pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
3867b7ec35b3SIlya Dryomov 	was_pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
3868b7ec35b3SIlya Dryomov 		      ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
386942c1b124SIlya Dryomov 		      have_pool_full(osdc);
38709a1ea2dbSJosh Durgin 
38713d14c5d2SYehuda Sadeh 	/* incremental maps */
38723d14c5d2SYehuda Sadeh 	ceph_decode_32_safe(&p, end, nr_maps, bad);
38733d14c5d2SYehuda Sadeh 	dout(" %d inc maps\n", nr_maps);
38743d14c5d2SYehuda Sadeh 	while (nr_maps > 0) {
38753d14c5d2SYehuda Sadeh 		ceph_decode_need(&p, end, 2*sizeof(u32), bad);
38763d14c5d2SYehuda Sadeh 		epoch = ceph_decode_32(&p);
38773d14c5d2SYehuda Sadeh 		maplen = ceph_decode_32(&p);
38783d14c5d2SYehuda Sadeh 		ceph_decode_need(&p, end, maplen, bad);
387942c1b124SIlya Dryomov 		if (osdc->osdmap->epoch &&
388042c1b124SIlya Dryomov 		    osdc->osdmap->epoch + 1 == epoch) {
38813d14c5d2SYehuda Sadeh 			dout("applying incremental map %u len %d\n",
38823d14c5d2SYehuda Sadeh 			     epoch, maplen);
38835aea3dcdSIlya Dryomov 			err = handle_one_map(osdc, p, p + maplen, true,
38845aea3dcdSIlya Dryomov 					     &need_resend, &need_resend_linger);
388542c1b124SIlya Dryomov 			if (err)
38863d14c5d2SYehuda Sadeh 				goto bad;
388742c1b124SIlya Dryomov 			handled_incremental = true;
38883d14c5d2SYehuda Sadeh 		} else {
38893d14c5d2SYehuda Sadeh 			dout("ignoring incremental map %u len %d\n",
38903d14c5d2SYehuda Sadeh 			     epoch, maplen);
38913d14c5d2SYehuda Sadeh 		}
389242c1b124SIlya Dryomov 		p += maplen;
38933d14c5d2SYehuda Sadeh 		nr_maps--;
38943d14c5d2SYehuda Sadeh 	}
389542c1b124SIlya Dryomov 	if (handled_incremental)
38963d14c5d2SYehuda Sadeh 		goto done;
38973d14c5d2SYehuda Sadeh 
38983d14c5d2SYehuda Sadeh 	/* full maps */
38993d14c5d2SYehuda Sadeh 	ceph_decode_32_safe(&p, end, nr_maps, bad);
39003d14c5d2SYehuda Sadeh 	dout(" %d full maps\n", nr_maps);
39013d14c5d2SYehuda Sadeh 	while (nr_maps) {
39023d14c5d2SYehuda Sadeh 		ceph_decode_need(&p, end, 2*sizeof(u32), bad);
39033d14c5d2SYehuda Sadeh 		epoch = ceph_decode_32(&p);
39043d14c5d2SYehuda Sadeh 		maplen = ceph_decode_32(&p);
39053d14c5d2SYehuda Sadeh 		ceph_decode_need(&p, end, maplen, bad);
39063d14c5d2SYehuda Sadeh 		if (nr_maps > 1) {
39073d14c5d2SYehuda Sadeh 			dout("skipping non-latest full map %u len %d\n",
39083d14c5d2SYehuda Sadeh 			     epoch, maplen);
3909e5253a7bSIlya Dryomov 		} else if (osdc->osdmap->epoch >= epoch) {
39103d14c5d2SYehuda Sadeh 			dout("skipping full map %u len %d, "
39113d14c5d2SYehuda Sadeh 			     "older than our %u\n", epoch, maplen,
39123d14c5d2SYehuda Sadeh 			     osdc->osdmap->epoch);
39133d14c5d2SYehuda Sadeh 		} else {
39143d14c5d2SYehuda Sadeh 			dout("taking full map %u len %d\n", epoch, maplen);
39155aea3dcdSIlya Dryomov 			err = handle_one_map(osdc, p, p + maplen, false,
39165aea3dcdSIlya Dryomov 					     &need_resend, &need_resend_linger);
391742c1b124SIlya Dryomov 			if (err)
39183d14c5d2SYehuda Sadeh 				goto bad;
39193d14c5d2SYehuda Sadeh 		}
39203d14c5d2SYehuda Sadeh 		p += maplen;
39213d14c5d2SYehuda Sadeh 		nr_maps--;
39223d14c5d2SYehuda Sadeh 	}
39233d14c5d2SYehuda Sadeh 
39243d14c5d2SYehuda Sadeh done:
3925cd634fb6SSage Weil 	/*
3926cd634fb6SSage Weil 	 * subscribe to subsequent osdmap updates if full to ensure
3927cd634fb6SSage Weil 	 * we find out when we are no longer full and stop returning
3928cd634fb6SSage Weil 	 * ENOSPC.
3929cd634fb6SSage Weil 	 */
3930b7ec35b3SIlya Dryomov 	pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
3931b7ec35b3SIlya Dryomov 	pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
3932b7ec35b3SIlya Dryomov 		  ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
393342c1b124SIlya Dryomov 		  have_pool_full(osdc);
393458eb7932SJeff Layton 	if (was_pauserd || was_pausewr || pauserd || pausewr ||
393558eb7932SJeff Layton 	    osdc->osdmap->epoch < osdc->epoch_barrier)
393642c1b124SIlya Dryomov 		maybe_request_map(osdc);
3937cd634fb6SSage Weil 
39385aea3dcdSIlya Dryomov 	kick_requests(osdc, &need_resend, &need_resend_linger);
393942c1b124SIlya Dryomov 
3940fc36d0a4SJeff Layton 	ceph_osdc_abort_on_full(osdc);
394142c1b124SIlya Dryomov 	ceph_monc_got_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
394242c1b124SIlya Dryomov 			  osdc->osdmap->epoch);
39435aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
39443d14c5d2SYehuda Sadeh 	wake_up_all(&osdc->client->auth_wq);
39453d14c5d2SYehuda Sadeh 	return;
39463d14c5d2SYehuda Sadeh 
39473d14c5d2SYehuda Sadeh bad:
39483d14c5d2SYehuda Sadeh 	pr_err("osdc handle_map corrupt msg\n");
39493d14c5d2SYehuda Sadeh 	ceph_msg_dump(msg);
39505aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
39515aea3dcdSIlya Dryomov }
39525aea3dcdSIlya Dryomov 
39535aea3dcdSIlya Dryomov /*
39545aea3dcdSIlya Dryomov  * Resubmit requests pending on the given osd.
39555aea3dcdSIlya Dryomov  */
39565aea3dcdSIlya Dryomov static void kick_osd_requests(struct ceph_osd *osd)
39575aea3dcdSIlya Dryomov {
39585aea3dcdSIlya Dryomov 	struct rb_node *n;
39595aea3dcdSIlya Dryomov 
3960a02a946dSIlya Dryomov 	clear_backoffs(osd);
3961a02a946dSIlya Dryomov 
3962922dab61SIlya Dryomov 	for (n = rb_first(&osd->o_requests); n; ) {
39635aea3dcdSIlya Dryomov 		struct ceph_osd_request *req =
39645aea3dcdSIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
39655aea3dcdSIlya Dryomov 
3966922dab61SIlya Dryomov 		n = rb_next(n); /* cancel_linger_request() */
3967922dab61SIlya Dryomov 
39685aea3dcdSIlya Dryomov 		if (!req->r_linger) {
39695aea3dcdSIlya Dryomov 			if (!req->r_t.paused)
39705aea3dcdSIlya Dryomov 				send_request(req);
3971922dab61SIlya Dryomov 		} else {
3972922dab61SIlya Dryomov 			cancel_linger_request(req);
39735aea3dcdSIlya Dryomov 		}
39745aea3dcdSIlya Dryomov 	}
3975922dab61SIlya Dryomov 	for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) {
3976922dab61SIlya Dryomov 		struct ceph_osd_linger_request *lreq =
3977922dab61SIlya Dryomov 		    rb_entry(n, struct ceph_osd_linger_request, node);
3978922dab61SIlya Dryomov 
3979922dab61SIlya Dryomov 		send_linger(lreq);
3980922dab61SIlya Dryomov 	}
39815aea3dcdSIlya Dryomov }
39825aea3dcdSIlya Dryomov 
39835aea3dcdSIlya Dryomov /*
39845aea3dcdSIlya Dryomov  * If the osd connection drops, we need to resubmit all requests.
39855aea3dcdSIlya Dryomov  */
39865aea3dcdSIlya Dryomov static void osd_fault(struct ceph_connection *con)
39875aea3dcdSIlya Dryomov {
39885aea3dcdSIlya Dryomov 	struct ceph_osd *osd = con->private;
39895aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
39905aea3dcdSIlya Dryomov 
39915aea3dcdSIlya Dryomov 	dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
39925aea3dcdSIlya Dryomov 
39935aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
39945aea3dcdSIlya Dryomov 	if (!osd_registered(osd)) {
39955aea3dcdSIlya Dryomov 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
39965aea3dcdSIlya Dryomov 		goto out_unlock;
39975aea3dcdSIlya Dryomov 	}
39985aea3dcdSIlya Dryomov 
39995aea3dcdSIlya Dryomov 	if (!reopen_osd(osd))
40005aea3dcdSIlya Dryomov 		kick_osd_requests(osd);
40015aea3dcdSIlya Dryomov 	maybe_request_map(osdc);
40025aea3dcdSIlya Dryomov 
40035aea3dcdSIlya Dryomov out_unlock:
40045aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
40053d14c5d2SYehuda Sadeh }
40063d14c5d2SYehuda Sadeh 
4007a02a946dSIlya Dryomov struct MOSDBackoff {
4008a02a946dSIlya Dryomov 	struct ceph_spg spgid;
4009a02a946dSIlya Dryomov 	u32 map_epoch;
4010a02a946dSIlya Dryomov 	u8 op;
4011a02a946dSIlya Dryomov 	u64 id;
4012a02a946dSIlya Dryomov 	struct ceph_hobject_id *begin;
4013a02a946dSIlya Dryomov 	struct ceph_hobject_id *end;
4014a02a946dSIlya Dryomov };
4015a02a946dSIlya Dryomov 
4016a02a946dSIlya Dryomov static int decode_MOSDBackoff(const struct ceph_msg *msg, struct MOSDBackoff *m)
4017a02a946dSIlya Dryomov {
4018a02a946dSIlya Dryomov 	void *p = msg->front.iov_base;
4019a02a946dSIlya Dryomov 	void *const end = p + msg->front.iov_len;
4020a02a946dSIlya Dryomov 	u8 struct_v;
4021a02a946dSIlya Dryomov 	u32 struct_len;
4022a02a946dSIlya Dryomov 	int ret;
4023a02a946dSIlya Dryomov 
4024a02a946dSIlya Dryomov 	ret = ceph_start_decoding(&p, end, 1, "spg_t", &struct_v, &struct_len);
4025a02a946dSIlya Dryomov 	if (ret)
4026a02a946dSIlya Dryomov 		return ret;
4027a02a946dSIlya Dryomov 
4028a02a946dSIlya Dryomov 	ret = ceph_decode_pgid(&p, end, &m->spgid.pgid);
4029a02a946dSIlya Dryomov 	if (ret)
4030a02a946dSIlya Dryomov 		return ret;
4031a02a946dSIlya Dryomov 
4032a02a946dSIlya Dryomov 	ceph_decode_8_safe(&p, end, m->spgid.shard, e_inval);
4033a02a946dSIlya Dryomov 	ceph_decode_32_safe(&p, end, m->map_epoch, e_inval);
4034a02a946dSIlya Dryomov 	ceph_decode_8_safe(&p, end, m->op, e_inval);
4035a02a946dSIlya Dryomov 	ceph_decode_64_safe(&p, end, m->id, e_inval);
4036a02a946dSIlya Dryomov 
4037a02a946dSIlya Dryomov 	m->begin = kzalloc(sizeof(*m->begin), GFP_NOIO);
4038a02a946dSIlya Dryomov 	if (!m->begin)
4039a02a946dSIlya Dryomov 		return -ENOMEM;
4040a02a946dSIlya Dryomov 
4041a02a946dSIlya Dryomov 	ret = decode_hoid(&p, end, m->begin);
4042a02a946dSIlya Dryomov 	if (ret) {
4043a02a946dSIlya Dryomov 		free_hoid(m->begin);
4044a02a946dSIlya Dryomov 		return ret;
4045a02a946dSIlya Dryomov 	}
4046a02a946dSIlya Dryomov 
4047a02a946dSIlya Dryomov 	m->end = kzalloc(sizeof(*m->end), GFP_NOIO);
4048a02a946dSIlya Dryomov 	if (!m->end) {
4049a02a946dSIlya Dryomov 		free_hoid(m->begin);
4050a02a946dSIlya Dryomov 		return -ENOMEM;
4051a02a946dSIlya Dryomov 	}
4052a02a946dSIlya Dryomov 
4053a02a946dSIlya Dryomov 	ret = decode_hoid(&p, end, m->end);
4054a02a946dSIlya Dryomov 	if (ret) {
4055a02a946dSIlya Dryomov 		free_hoid(m->begin);
4056a02a946dSIlya Dryomov 		free_hoid(m->end);
4057a02a946dSIlya Dryomov 		return ret;
4058a02a946dSIlya Dryomov 	}
4059a02a946dSIlya Dryomov 
4060a02a946dSIlya Dryomov 	return 0;
4061a02a946dSIlya Dryomov 
4062a02a946dSIlya Dryomov e_inval:
4063a02a946dSIlya Dryomov 	return -EINVAL;
4064a02a946dSIlya Dryomov }
4065a02a946dSIlya Dryomov 
4066a02a946dSIlya Dryomov static struct ceph_msg *create_backoff_message(
4067a02a946dSIlya Dryomov 				const struct ceph_osd_backoff *backoff,
4068a02a946dSIlya Dryomov 				u32 map_epoch)
4069a02a946dSIlya Dryomov {
4070a02a946dSIlya Dryomov 	struct ceph_msg *msg;
4071a02a946dSIlya Dryomov 	void *p, *end;
4072a02a946dSIlya Dryomov 	int msg_size;
4073a02a946dSIlya Dryomov 
4074a02a946dSIlya Dryomov 	msg_size = CEPH_ENCODING_START_BLK_LEN +
4075a02a946dSIlya Dryomov 			CEPH_PGID_ENCODING_LEN + 1; /* spgid */
4076a02a946dSIlya Dryomov 	msg_size += 4 + 1 + 8; /* map_epoch, op, id */
4077a02a946dSIlya Dryomov 	msg_size += CEPH_ENCODING_START_BLK_LEN +
4078a02a946dSIlya Dryomov 			hoid_encoding_size(backoff->begin);
4079a02a946dSIlya Dryomov 	msg_size += CEPH_ENCODING_START_BLK_LEN +
4080a02a946dSIlya Dryomov 			hoid_encoding_size(backoff->end);
4081a02a946dSIlya Dryomov 
4082a02a946dSIlya Dryomov 	msg = ceph_msg_new(CEPH_MSG_OSD_BACKOFF, msg_size, GFP_NOIO, true);
4083a02a946dSIlya Dryomov 	if (!msg)
4084a02a946dSIlya Dryomov 		return NULL;
4085a02a946dSIlya Dryomov 
4086a02a946dSIlya Dryomov 	p = msg->front.iov_base;
4087a02a946dSIlya Dryomov 	end = p + msg->front_alloc_len;
4088a02a946dSIlya Dryomov 
4089a02a946dSIlya Dryomov 	encode_spgid(&p, &backoff->spgid);
4090a02a946dSIlya Dryomov 	ceph_encode_32(&p, map_epoch);
4091a02a946dSIlya Dryomov 	ceph_encode_8(&p, CEPH_OSD_BACKOFF_OP_ACK_BLOCK);
4092a02a946dSIlya Dryomov 	ceph_encode_64(&p, backoff->id);
4093a02a946dSIlya Dryomov 	encode_hoid(&p, end, backoff->begin);
4094a02a946dSIlya Dryomov 	encode_hoid(&p, end, backoff->end);
4095a02a946dSIlya Dryomov 	BUG_ON(p != end);
4096a02a946dSIlya Dryomov 
4097a02a946dSIlya Dryomov 	msg->front.iov_len = p - msg->front.iov_base;
4098a02a946dSIlya Dryomov 	msg->hdr.version = cpu_to_le16(1); /* MOSDBackoff v1 */
4099a02a946dSIlya Dryomov 	msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
4100a02a946dSIlya Dryomov 
4101a02a946dSIlya Dryomov 	return msg;
4102a02a946dSIlya Dryomov }
4103a02a946dSIlya Dryomov 
4104a02a946dSIlya Dryomov static void handle_backoff_block(struct ceph_osd *osd, struct MOSDBackoff *m)
4105a02a946dSIlya Dryomov {
4106a02a946dSIlya Dryomov 	struct ceph_spg_mapping *spg;
4107a02a946dSIlya Dryomov 	struct ceph_osd_backoff *backoff;
4108a02a946dSIlya Dryomov 	struct ceph_msg *msg;
4109a02a946dSIlya Dryomov 
4110a02a946dSIlya Dryomov 	dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4111a02a946dSIlya Dryomov 	     m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4112a02a946dSIlya Dryomov 
4113a02a946dSIlya Dryomov 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &m->spgid);
4114a02a946dSIlya Dryomov 	if (!spg) {
4115a02a946dSIlya Dryomov 		spg = alloc_spg_mapping();
4116a02a946dSIlya Dryomov 		if (!spg) {
4117a02a946dSIlya Dryomov 			pr_err("%s failed to allocate spg\n", __func__);
4118a02a946dSIlya Dryomov 			return;
4119a02a946dSIlya Dryomov 		}
4120a02a946dSIlya Dryomov 		spg->spgid = m->spgid; /* struct */
4121a02a946dSIlya Dryomov 		insert_spg_mapping(&osd->o_backoff_mappings, spg);
4122a02a946dSIlya Dryomov 	}
4123a02a946dSIlya Dryomov 
4124a02a946dSIlya Dryomov 	backoff = alloc_backoff();
4125a02a946dSIlya Dryomov 	if (!backoff) {
4126a02a946dSIlya Dryomov 		pr_err("%s failed to allocate backoff\n", __func__);
4127a02a946dSIlya Dryomov 		return;
4128a02a946dSIlya Dryomov 	}
4129a02a946dSIlya Dryomov 	backoff->spgid = m->spgid; /* struct */
4130a02a946dSIlya Dryomov 	backoff->id = m->id;
4131a02a946dSIlya Dryomov 	backoff->begin = m->begin;
4132a02a946dSIlya Dryomov 	m->begin = NULL; /* backoff now owns this */
4133a02a946dSIlya Dryomov 	backoff->end = m->end;
4134a02a946dSIlya Dryomov 	m->end = NULL;   /* ditto */
4135a02a946dSIlya Dryomov 
4136a02a946dSIlya Dryomov 	insert_backoff(&spg->backoffs, backoff);
4137a02a946dSIlya Dryomov 	insert_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4138a02a946dSIlya Dryomov 
4139a02a946dSIlya Dryomov 	/*
4140a02a946dSIlya Dryomov 	 * Ack with original backoff's epoch so that the OSD can
4141a02a946dSIlya Dryomov 	 * discard this if there was a PG split.
4142a02a946dSIlya Dryomov 	 */
4143a02a946dSIlya Dryomov 	msg = create_backoff_message(backoff, m->map_epoch);
4144a02a946dSIlya Dryomov 	if (!msg) {
4145a02a946dSIlya Dryomov 		pr_err("%s failed to allocate msg\n", __func__);
4146a02a946dSIlya Dryomov 		return;
4147a02a946dSIlya Dryomov 	}
4148a02a946dSIlya Dryomov 	ceph_con_send(&osd->o_con, msg);
4149a02a946dSIlya Dryomov }
4150a02a946dSIlya Dryomov 
4151a02a946dSIlya Dryomov static bool target_contained_by(const struct ceph_osd_request_target *t,
4152a02a946dSIlya Dryomov 				const struct ceph_hobject_id *begin,
4153a02a946dSIlya Dryomov 				const struct ceph_hobject_id *end)
4154a02a946dSIlya Dryomov {
4155a02a946dSIlya Dryomov 	struct ceph_hobject_id hoid;
4156a02a946dSIlya Dryomov 	int cmp;
4157a02a946dSIlya Dryomov 
4158a02a946dSIlya Dryomov 	hoid_fill_from_target(&hoid, t);
4159a02a946dSIlya Dryomov 	cmp = hoid_compare(&hoid, begin);
4160a02a946dSIlya Dryomov 	return !cmp || (cmp > 0 && hoid_compare(&hoid, end) < 0);
4161a02a946dSIlya Dryomov }
4162a02a946dSIlya Dryomov 
4163a02a946dSIlya Dryomov static void handle_backoff_unblock(struct ceph_osd *osd,
4164a02a946dSIlya Dryomov 				   const struct MOSDBackoff *m)
4165a02a946dSIlya Dryomov {
4166a02a946dSIlya Dryomov 	struct ceph_spg_mapping *spg;
4167a02a946dSIlya Dryomov 	struct ceph_osd_backoff *backoff;
4168a02a946dSIlya Dryomov 	struct rb_node *n;
4169a02a946dSIlya Dryomov 
4170a02a946dSIlya Dryomov 	dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4171a02a946dSIlya Dryomov 	     m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4172a02a946dSIlya Dryomov 
4173a02a946dSIlya Dryomov 	backoff = lookup_backoff_by_id(&osd->o_backoffs_by_id, m->id);
4174a02a946dSIlya Dryomov 	if (!backoff) {
4175a02a946dSIlya Dryomov 		pr_err("%s osd%d spgid %llu.%xs%d id %llu backoff dne\n",
4176a02a946dSIlya Dryomov 		       __func__, osd->o_osd, m->spgid.pgid.pool,
4177a02a946dSIlya Dryomov 		       m->spgid.pgid.seed, m->spgid.shard, m->id);
4178a02a946dSIlya Dryomov 		return;
4179a02a946dSIlya Dryomov 	}
4180a02a946dSIlya Dryomov 
4181a02a946dSIlya Dryomov 	if (hoid_compare(backoff->begin, m->begin) &&
4182a02a946dSIlya Dryomov 	    hoid_compare(backoff->end, m->end)) {
4183a02a946dSIlya Dryomov 		pr_err("%s osd%d spgid %llu.%xs%d id %llu bad range?\n",
4184a02a946dSIlya Dryomov 		       __func__, osd->o_osd, m->spgid.pgid.pool,
4185a02a946dSIlya Dryomov 		       m->spgid.pgid.seed, m->spgid.shard, m->id);
4186a02a946dSIlya Dryomov 		/* unblock it anyway... */
4187a02a946dSIlya Dryomov 	}
4188a02a946dSIlya Dryomov 
4189a02a946dSIlya Dryomov 	spg = lookup_spg_mapping(&osd->o_backoff_mappings, &backoff->spgid);
4190a02a946dSIlya Dryomov 	BUG_ON(!spg);
4191a02a946dSIlya Dryomov 
4192a02a946dSIlya Dryomov 	erase_backoff(&spg->backoffs, backoff);
4193a02a946dSIlya Dryomov 	erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4194a02a946dSIlya Dryomov 	free_backoff(backoff);
4195a02a946dSIlya Dryomov 
4196a02a946dSIlya Dryomov 	if (RB_EMPTY_ROOT(&spg->backoffs)) {
4197a02a946dSIlya Dryomov 		erase_spg_mapping(&osd->o_backoff_mappings, spg);
4198a02a946dSIlya Dryomov 		free_spg_mapping(spg);
4199a02a946dSIlya Dryomov 	}
4200a02a946dSIlya Dryomov 
4201a02a946dSIlya Dryomov 	for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
4202a02a946dSIlya Dryomov 		struct ceph_osd_request *req =
4203a02a946dSIlya Dryomov 		    rb_entry(n, struct ceph_osd_request, r_node);
4204a02a946dSIlya Dryomov 
4205a02a946dSIlya Dryomov 		if (!ceph_spg_compare(&req->r_t.spgid, &m->spgid)) {
4206a02a946dSIlya Dryomov 			/*
4207a02a946dSIlya Dryomov 			 * Match against @m, not @backoff -- the PG may
4208a02a946dSIlya Dryomov 			 * have split on the OSD.
4209a02a946dSIlya Dryomov 			 */
4210a02a946dSIlya Dryomov 			if (target_contained_by(&req->r_t, m->begin, m->end)) {
4211a02a946dSIlya Dryomov 				/*
4212a02a946dSIlya Dryomov 				 * If no other installed backoff applies,
4213a02a946dSIlya Dryomov 				 * resend.
4214a02a946dSIlya Dryomov 				 */
4215a02a946dSIlya Dryomov 				send_request(req);
4216a02a946dSIlya Dryomov 			}
4217a02a946dSIlya Dryomov 		}
4218a02a946dSIlya Dryomov 	}
4219a02a946dSIlya Dryomov }
4220a02a946dSIlya Dryomov 
4221a02a946dSIlya Dryomov static void handle_backoff(struct ceph_osd *osd, struct ceph_msg *msg)
4222a02a946dSIlya Dryomov {
4223a02a946dSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
4224a02a946dSIlya Dryomov 	struct MOSDBackoff m;
4225a02a946dSIlya Dryomov 	int ret;
4226a02a946dSIlya Dryomov 
4227a02a946dSIlya Dryomov 	down_read(&osdc->lock);
4228a02a946dSIlya Dryomov 	if (!osd_registered(osd)) {
4229a02a946dSIlya Dryomov 		dout("%s osd%d unknown\n", __func__, osd->o_osd);
4230a02a946dSIlya Dryomov 		up_read(&osdc->lock);
4231a02a946dSIlya Dryomov 		return;
4232a02a946dSIlya Dryomov 	}
4233a02a946dSIlya Dryomov 	WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
4234a02a946dSIlya Dryomov 
4235a02a946dSIlya Dryomov 	mutex_lock(&osd->lock);
4236a02a946dSIlya Dryomov 	ret = decode_MOSDBackoff(msg, &m);
4237a02a946dSIlya Dryomov 	if (ret) {
4238a02a946dSIlya Dryomov 		pr_err("failed to decode MOSDBackoff: %d\n", ret);
4239a02a946dSIlya Dryomov 		ceph_msg_dump(msg);
4240a02a946dSIlya Dryomov 		goto out_unlock;
4241a02a946dSIlya Dryomov 	}
4242a02a946dSIlya Dryomov 
4243a02a946dSIlya Dryomov 	switch (m.op) {
4244a02a946dSIlya Dryomov 	case CEPH_OSD_BACKOFF_OP_BLOCK:
4245a02a946dSIlya Dryomov 		handle_backoff_block(osd, &m);
4246a02a946dSIlya Dryomov 		break;
4247a02a946dSIlya Dryomov 	case CEPH_OSD_BACKOFF_OP_UNBLOCK:
4248a02a946dSIlya Dryomov 		handle_backoff_unblock(osd, &m);
4249a02a946dSIlya Dryomov 		break;
4250a02a946dSIlya Dryomov 	default:
4251a02a946dSIlya Dryomov 		pr_err("%s osd%d unknown op %d\n", __func__, osd->o_osd, m.op);
4252a02a946dSIlya Dryomov 	}
4253a02a946dSIlya Dryomov 
4254a02a946dSIlya Dryomov 	free_hoid(m.begin);
4255a02a946dSIlya Dryomov 	free_hoid(m.end);
4256a02a946dSIlya Dryomov 
4257a02a946dSIlya Dryomov out_unlock:
4258a02a946dSIlya Dryomov 	mutex_unlock(&osd->lock);
4259a02a946dSIlya Dryomov 	up_read(&osdc->lock);
4260a02a946dSIlya Dryomov }
4261a02a946dSIlya Dryomov 
42623d14c5d2SYehuda Sadeh /*
4263a40c4f10SYehuda Sadeh  * Process osd watch notifications
4264a40c4f10SYehuda Sadeh  */
42653c663bbdSAlex Elder static void handle_watch_notify(struct ceph_osd_client *osdc,
42663c663bbdSAlex Elder 				struct ceph_msg *msg)
4267a40c4f10SYehuda Sadeh {
4268922dab61SIlya Dryomov 	void *p = msg->front.iov_base;
4269922dab61SIlya Dryomov 	void *const end = p + msg->front.iov_len;
4270922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq;
4271922dab61SIlya Dryomov 	struct linger_work *lwork;
4272922dab61SIlya Dryomov 	u8 proto_ver, opcode;
4273922dab61SIlya Dryomov 	u64 cookie, notify_id;
4274922dab61SIlya Dryomov 	u64 notifier_id = 0;
427519079203SIlya Dryomov 	s32 return_code = 0;
4276922dab61SIlya Dryomov 	void *payload = NULL;
4277922dab61SIlya Dryomov 	u32 payload_len = 0;
4278a40c4f10SYehuda Sadeh 
4279a40c4f10SYehuda Sadeh 	ceph_decode_8_safe(&p, end, proto_ver, bad);
4280a40c4f10SYehuda Sadeh 	ceph_decode_8_safe(&p, end, opcode, bad);
4281a40c4f10SYehuda Sadeh 	ceph_decode_64_safe(&p, end, cookie, bad);
4282922dab61SIlya Dryomov 	p += 8; /* skip ver */
4283a40c4f10SYehuda Sadeh 	ceph_decode_64_safe(&p, end, notify_id, bad);
4284a40c4f10SYehuda Sadeh 
4285922dab61SIlya Dryomov 	if (proto_ver >= 1) {
4286922dab61SIlya Dryomov 		ceph_decode_32_safe(&p, end, payload_len, bad);
4287922dab61SIlya Dryomov 		ceph_decode_need(&p, end, payload_len, bad);
4288922dab61SIlya Dryomov 		payload = p;
4289922dab61SIlya Dryomov 		p += payload_len;
4290a40c4f10SYehuda Sadeh 	}
4291a40c4f10SYehuda Sadeh 
4292922dab61SIlya Dryomov 	if (le16_to_cpu(msg->hdr.version) >= 2)
429319079203SIlya Dryomov 		ceph_decode_32_safe(&p, end, return_code, bad);
4294922dab61SIlya Dryomov 
4295922dab61SIlya Dryomov 	if (le16_to_cpu(msg->hdr.version) >= 3)
4296922dab61SIlya Dryomov 		ceph_decode_64_safe(&p, end, notifier_id, bad);
4297922dab61SIlya Dryomov 
4298922dab61SIlya Dryomov 	down_read(&osdc->lock);
4299922dab61SIlya Dryomov 	lreq = lookup_linger_osdc(&osdc->linger_requests, cookie);
4300922dab61SIlya Dryomov 	if (!lreq) {
4301922dab61SIlya Dryomov 		dout("%s opcode %d cookie %llu dne\n", __func__, opcode,
4302922dab61SIlya Dryomov 		     cookie);
4303922dab61SIlya Dryomov 		goto out_unlock_osdc;
4304922dab61SIlya Dryomov 	}
4305922dab61SIlya Dryomov 
4306922dab61SIlya Dryomov 	mutex_lock(&lreq->lock);
430719079203SIlya Dryomov 	dout("%s opcode %d cookie %llu lreq %p is_watch %d\n", __func__,
430819079203SIlya Dryomov 	     opcode, cookie, lreq, lreq->is_watch);
4309922dab61SIlya Dryomov 	if (opcode == CEPH_WATCH_EVENT_DISCONNECT) {
4310922dab61SIlya Dryomov 		if (!lreq->last_error) {
4311922dab61SIlya Dryomov 			lreq->last_error = -ENOTCONN;
4312922dab61SIlya Dryomov 			queue_watch_error(lreq);
4313922dab61SIlya Dryomov 		}
431419079203SIlya Dryomov 	} else if (!lreq->is_watch) {
431519079203SIlya Dryomov 		/* CEPH_WATCH_EVENT_NOTIFY_COMPLETE */
431619079203SIlya Dryomov 		if (lreq->notify_id && lreq->notify_id != notify_id) {
431719079203SIlya Dryomov 			dout("lreq %p notify_id %llu != %llu, ignoring\n", lreq,
431819079203SIlya Dryomov 			     lreq->notify_id, notify_id);
431919079203SIlya Dryomov 		} else if (!completion_done(&lreq->notify_finish_wait)) {
432019079203SIlya Dryomov 			struct ceph_msg_data *data =
432119079203SIlya Dryomov 			    list_first_entry_or_null(&msg->data,
432219079203SIlya Dryomov 						     struct ceph_msg_data,
432319079203SIlya Dryomov 						     links);
432419079203SIlya Dryomov 
432519079203SIlya Dryomov 			if (data) {
432619079203SIlya Dryomov 				if (lreq->preply_pages) {
432719079203SIlya Dryomov 					WARN_ON(data->type !=
432819079203SIlya Dryomov 							CEPH_MSG_DATA_PAGES);
432919079203SIlya Dryomov 					*lreq->preply_pages = data->pages;
433019079203SIlya Dryomov 					*lreq->preply_len = data->length;
433119079203SIlya Dryomov 				} else {
433219079203SIlya Dryomov 					ceph_release_page_vector(data->pages,
433319079203SIlya Dryomov 					       calc_pages_for(0, data->length));
433419079203SIlya Dryomov 				}
433519079203SIlya Dryomov 			}
433619079203SIlya Dryomov 			lreq->notify_finish_error = return_code;
433719079203SIlya Dryomov 			complete_all(&lreq->notify_finish_wait);
433819079203SIlya Dryomov 		}
4339922dab61SIlya Dryomov 	} else {
4340922dab61SIlya Dryomov 		/* CEPH_WATCH_EVENT_NOTIFY */
4341922dab61SIlya Dryomov 		lwork = lwork_alloc(lreq, do_watch_notify);
4342922dab61SIlya Dryomov 		if (!lwork) {
4343922dab61SIlya Dryomov 			pr_err("failed to allocate notify-lwork\n");
4344922dab61SIlya Dryomov 			goto out_unlock_lreq;
4345922dab61SIlya Dryomov 		}
4346922dab61SIlya Dryomov 
4347922dab61SIlya Dryomov 		lwork->notify.notify_id = notify_id;
4348922dab61SIlya Dryomov 		lwork->notify.notifier_id = notifier_id;
4349922dab61SIlya Dryomov 		lwork->notify.payload = payload;
4350922dab61SIlya Dryomov 		lwork->notify.payload_len = payload_len;
4351922dab61SIlya Dryomov 		lwork->notify.msg = ceph_msg_get(msg);
4352922dab61SIlya Dryomov 		lwork_queue(lwork);
4353922dab61SIlya Dryomov 	}
4354922dab61SIlya Dryomov 
4355922dab61SIlya Dryomov out_unlock_lreq:
4356922dab61SIlya Dryomov 	mutex_unlock(&lreq->lock);
4357922dab61SIlya Dryomov out_unlock_osdc:
4358922dab61SIlya Dryomov 	up_read(&osdc->lock);
4359a40c4f10SYehuda Sadeh 	return;
4360a40c4f10SYehuda Sadeh 
4361a40c4f10SYehuda Sadeh bad:
4362a40c4f10SYehuda Sadeh 	pr_err("osdc handle_watch_notify corrupt msg\n");
4363a40c4f10SYehuda Sadeh }
4364a40c4f10SYehuda Sadeh 
4365a40c4f10SYehuda Sadeh /*
43663d14c5d2SYehuda Sadeh  * Register request, send initial attempt.
43673d14c5d2SYehuda Sadeh  */
43683d14c5d2SYehuda Sadeh int ceph_osdc_start_request(struct ceph_osd_client *osdc,
43693d14c5d2SYehuda Sadeh 			    struct ceph_osd_request *req,
43703d14c5d2SYehuda Sadeh 			    bool nofail)
43713d14c5d2SYehuda Sadeh {
43725aea3dcdSIlya Dryomov 	down_read(&osdc->lock);
43735aea3dcdSIlya Dryomov 	submit_request(req, false);
43745aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
43753d14c5d2SYehuda Sadeh 
43765aea3dcdSIlya Dryomov 	return 0;
43773d14c5d2SYehuda Sadeh }
43783d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_start_request);
43793d14c5d2SYehuda Sadeh 
43803d14c5d2SYehuda Sadeh /*
4381c297eb42SIlya Dryomov  * Unregister a registered request.  The request is not completed:
4382c297eb42SIlya Dryomov  * ->r_result isn't set and __complete_request() isn't called.
4383c9f9b93dSIlya Dryomov  */
4384c9f9b93dSIlya Dryomov void ceph_osdc_cancel_request(struct ceph_osd_request *req)
4385c9f9b93dSIlya Dryomov {
4386c9f9b93dSIlya Dryomov 	struct ceph_osd_client *osdc = req->r_osdc;
4387c9f9b93dSIlya Dryomov 
43885aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
43895aea3dcdSIlya Dryomov 	if (req->r_osd)
43905aea3dcdSIlya Dryomov 		cancel_request(req);
43915aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
4392c9f9b93dSIlya Dryomov }
4393c9f9b93dSIlya Dryomov EXPORT_SYMBOL(ceph_osdc_cancel_request);
4394c9f9b93dSIlya Dryomov 
4395c9f9b93dSIlya Dryomov /*
439642b06965SIlya Dryomov  * @timeout: in jiffies, 0 means "wait forever"
439742b06965SIlya Dryomov  */
439842b06965SIlya Dryomov static int wait_request_timeout(struct ceph_osd_request *req,
439942b06965SIlya Dryomov 				unsigned long timeout)
440042b06965SIlya Dryomov {
440142b06965SIlya Dryomov 	long left;
440242b06965SIlya Dryomov 
440342b06965SIlya Dryomov 	dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
44040e76abf2SYan, Zheng 	left = wait_for_completion_killable_timeout(&req->r_completion,
440542b06965SIlya Dryomov 						ceph_timeout_jiffies(timeout));
440642b06965SIlya Dryomov 	if (left <= 0) {
440742b06965SIlya Dryomov 		left = left ?: -ETIMEDOUT;
440842b06965SIlya Dryomov 		ceph_osdc_cancel_request(req);
440942b06965SIlya Dryomov 	} else {
441042b06965SIlya Dryomov 		left = req->r_result; /* completed */
441142b06965SIlya Dryomov 	}
441242b06965SIlya Dryomov 
441342b06965SIlya Dryomov 	return left;
441442b06965SIlya Dryomov }
441542b06965SIlya Dryomov 
441642b06965SIlya Dryomov /*
44173d14c5d2SYehuda Sadeh  * wait for a request to complete
44183d14c5d2SYehuda Sadeh  */
44193d14c5d2SYehuda Sadeh int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
44203d14c5d2SYehuda Sadeh 			   struct ceph_osd_request *req)
44213d14c5d2SYehuda Sadeh {
442242b06965SIlya Dryomov 	return wait_request_timeout(req, 0);
44233d14c5d2SYehuda Sadeh }
44243d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_wait_request);
44253d14c5d2SYehuda Sadeh 
44263d14c5d2SYehuda Sadeh /*
44273d14c5d2SYehuda Sadeh  * sync - wait for all in-flight requests to flush.  avoid starvation.
44283d14c5d2SYehuda Sadeh  */
44293d14c5d2SYehuda Sadeh void ceph_osdc_sync(struct ceph_osd_client *osdc)
44303d14c5d2SYehuda Sadeh {
44315aea3dcdSIlya Dryomov 	struct rb_node *n, *p;
44325aea3dcdSIlya Dryomov 	u64 last_tid = atomic64_read(&osdc->last_tid);
44333d14c5d2SYehuda Sadeh 
44345aea3dcdSIlya Dryomov again:
44355aea3dcdSIlya Dryomov 	down_read(&osdc->lock);
44365aea3dcdSIlya Dryomov 	for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
44375aea3dcdSIlya Dryomov 		struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
44385aea3dcdSIlya Dryomov 
44395aea3dcdSIlya Dryomov 		mutex_lock(&osd->lock);
44405aea3dcdSIlya Dryomov 		for (p = rb_first(&osd->o_requests); p; p = rb_next(p)) {
44415aea3dcdSIlya Dryomov 			struct ceph_osd_request *req =
44425aea3dcdSIlya Dryomov 			    rb_entry(p, struct ceph_osd_request, r_node);
44435aea3dcdSIlya Dryomov 
44443d14c5d2SYehuda Sadeh 			if (req->r_tid > last_tid)
44453d14c5d2SYehuda Sadeh 				break;
44463d14c5d2SYehuda Sadeh 
44475aea3dcdSIlya Dryomov 			if (!(req->r_flags & CEPH_OSD_FLAG_WRITE))
44483d14c5d2SYehuda Sadeh 				continue;
44493d14c5d2SYehuda Sadeh 
44503d14c5d2SYehuda Sadeh 			ceph_osdc_get_request(req);
44515aea3dcdSIlya Dryomov 			mutex_unlock(&osd->lock);
44525aea3dcdSIlya Dryomov 			up_read(&osdc->lock);
44535aea3dcdSIlya Dryomov 			dout("%s waiting on req %p tid %llu last_tid %llu\n",
44545aea3dcdSIlya Dryomov 			     __func__, req, req->r_tid, last_tid);
4455b18b9550SIlya Dryomov 			wait_for_completion(&req->r_completion);
44563d14c5d2SYehuda Sadeh 			ceph_osdc_put_request(req);
44575aea3dcdSIlya Dryomov 			goto again;
44583d14c5d2SYehuda Sadeh 		}
44595aea3dcdSIlya Dryomov 
44605aea3dcdSIlya Dryomov 		mutex_unlock(&osd->lock);
44615aea3dcdSIlya Dryomov 	}
44625aea3dcdSIlya Dryomov 
44635aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
44645aea3dcdSIlya Dryomov 	dout("%s done last_tid %llu\n", __func__, last_tid);
44653d14c5d2SYehuda Sadeh }
44663d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_sync);
44673d14c5d2SYehuda Sadeh 
4468922dab61SIlya Dryomov static struct ceph_osd_request *
4469922dab61SIlya Dryomov alloc_linger_request(struct ceph_osd_linger_request *lreq)
4470922dab61SIlya Dryomov {
4471922dab61SIlya Dryomov 	struct ceph_osd_request *req;
4472922dab61SIlya Dryomov 
4473922dab61SIlya Dryomov 	req = ceph_osdc_alloc_request(lreq->osdc, NULL, 1, false, GFP_NOIO);
4474922dab61SIlya Dryomov 	if (!req)
4475922dab61SIlya Dryomov 		return NULL;
4476922dab61SIlya Dryomov 
4477922dab61SIlya Dryomov 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4478922dab61SIlya Dryomov 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
4479922dab61SIlya Dryomov 
4480922dab61SIlya Dryomov 	if (ceph_osdc_alloc_messages(req, GFP_NOIO)) {
4481922dab61SIlya Dryomov 		ceph_osdc_put_request(req);
4482922dab61SIlya Dryomov 		return NULL;
4483922dab61SIlya Dryomov 	}
4484922dab61SIlya Dryomov 
4485922dab61SIlya Dryomov 	return req;
4486922dab61SIlya Dryomov }
4487922dab61SIlya Dryomov 
4488922dab61SIlya Dryomov /*
4489922dab61SIlya Dryomov  * Returns a handle, caller owns a ref.
4490922dab61SIlya Dryomov  */
4491922dab61SIlya Dryomov struct ceph_osd_linger_request *
4492922dab61SIlya Dryomov ceph_osdc_watch(struct ceph_osd_client *osdc,
4493922dab61SIlya Dryomov 		struct ceph_object_id *oid,
4494922dab61SIlya Dryomov 		struct ceph_object_locator *oloc,
4495922dab61SIlya Dryomov 		rados_watchcb2_t wcb,
4496922dab61SIlya Dryomov 		rados_watcherrcb_t errcb,
4497922dab61SIlya Dryomov 		void *data)
4498922dab61SIlya Dryomov {
4499922dab61SIlya Dryomov 	struct ceph_osd_linger_request *lreq;
4500922dab61SIlya Dryomov 	int ret;
4501922dab61SIlya Dryomov 
4502922dab61SIlya Dryomov 	lreq = linger_alloc(osdc);
4503922dab61SIlya Dryomov 	if (!lreq)
4504922dab61SIlya Dryomov 		return ERR_PTR(-ENOMEM);
4505922dab61SIlya Dryomov 
450619079203SIlya Dryomov 	lreq->is_watch = true;
4507922dab61SIlya Dryomov 	lreq->wcb = wcb;
4508922dab61SIlya Dryomov 	lreq->errcb = errcb;
4509922dab61SIlya Dryomov 	lreq->data = data;
4510b07d3c4bSIlya Dryomov 	lreq->watch_valid_thru = jiffies;
4511922dab61SIlya Dryomov 
4512922dab61SIlya Dryomov 	ceph_oid_copy(&lreq->t.base_oid, oid);
4513922dab61SIlya Dryomov 	ceph_oloc_copy(&lreq->t.base_oloc, oloc);
451454ea0046SIlya Dryomov 	lreq->t.flags = CEPH_OSD_FLAG_WRITE;
4515fac02ddfSArnd Bergmann 	ktime_get_real_ts64(&lreq->mtime);
4516922dab61SIlya Dryomov 
4517922dab61SIlya Dryomov 	lreq->reg_req = alloc_linger_request(lreq);
4518922dab61SIlya Dryomov 	if (!lreq->reg_req) {
4519922dab61SIlya Dryomov 		ret = -ENOMEM;
4520922dab61SIlya Dryomov 		goto err_put_lreq;
4521922dab61SIlya Dryomov 	}
4522922dab61SIlya Dryomov 
4523922dab61SIlya Dryomov 	lreq->ping_req = alloc_linger_request(lreq);
4524922dab61SIlya Dryomov 	if (!lreq->ping_req) {
4525922dab61SIlya Dryomov 		ret = -ENOMEM;
4526922dab61SIlya Dryomov 		goto err_put_lreq;
4527922dab61SIlya Dryomov 	}
4528922dab61SIlya Dryomov 
4529922dab61SIlya Dryomov 	down_write(&osdc->lock);
4530922dab61SIlya Dryomov 	linger_register(lreq); /* before osd_req_op_* */
4531922dab61SIlya Dryomov 	osd_req_op_watch_init(lreq->reg_req, 0, lreq->linger_id,
4532922dab61SIlya Dryomov 			      CEPH_OSD_WATCH_OP_WATCH);
4533922dab61SIlya Dryomov 	osd_req_op_watch_init(lreq->ping_req, 0, lreq->linger_id,
4534922dab61SIlya Dryomov 			      CEPH_OSD_WATCH_OP_PING);
4535922dab61SIlya Dryomov 	linger_submit(lreq);
4536922dab61SIlya Dryomov 	up_write(&osdc->lock);
4537922dab61SIlya Dryomov 
4538922dab61SIlya Dryomov 	ret = linger_reg_commit_wait(lreq);
4539922dab61SIlya Dryomov 	if (ret) {
4540922dab61SIlya Dryomov 		linger_cancel(lreq);
4541922dab61SIlya Dryomov 		goto err_put_lreq;
4542922dab61SIlya Dryomov 	}
4543922dab61SIlya Dryomov 
4544922dab61SIlya Dryomov 	return lreq;
4545922dab61SIlya Dryomov 
4546922dab61SIlya Dryomov err_put_lreq:
4547922dab61SIlya Dryomov 	linger_put(lreq);
4548922dab61SIlya Dryomov 	return ERR_PTR(ret);
4549922dab61SIlya Dryomov }
4550922dab61SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_watch);
4551922dab61SIlya Dryomov 
4552922dab61SIlya Dryomov /*
4553922dab61SIlya Dryomov  * Releases a ref.
4554922dab61SIlya Dryomov  *
4555922dab61SIlya Dryomov  * Times out after mount_timeout to preserve rbd unmap behaviour
4556922dab61SIlya Dryomov  * introduced in 2894e1d76974 ("rbd: timeout watch teardown on unmap
4557922dab61SIlya Dryomov  * with mount_timeout").
4558922dab61SIlya Dryomov  */
4559922dab61SIlya Dryomov int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
4560922dab61SIlya Dryomov 		      struct ceph_osd_linger_request *lreq)
4561922dab61SIlya Dryomov {
4562922dab61SIlya Dryomov 	struct ceph_options *opts = osdc->client->options;
4563922dab61SIlya Dryomov 	struct ceph_osd_request *req;
4564922dab61SIlya Dryomov 	int ret;
4565922dab61SIlya Dryomov 
4566922dab61SIlya Dryomov 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4567922dab61SIlya Dryomov 	if (!req)
4568922dab61SIlya Dryomov 		return -ENOMEM;
4569922dab61SIlya Dryomov 
4570922dab61SIlya Dryomov 	ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4571922dab61SIlya Dryomov 	ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
457254ea0046SIlya Dryomov 	req->r_flags = CEPH_OSD_FLAG_WRITE;
4573fac02ddfSArnd Bergmann 	ktime_get_real_ts64(&req->r_mtime);
4574922dab61SIlya Dryomov 	osd_req_op_watch_init(req, 0, lreq->linger_id,
4575922dab61SIlya Dryomov 			      CEPH_OSD_WATCH_OP_UNWATCH);
4576922dab61SIlya Dryomov 
4577922dab61SIlya Dryomov 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4578922dab61SIlya Dryomov 	if (ret)
4579922dab61SIlya Dryomov 		goto out_put_req;
4580922dab61SIlya Dryomov 
4581922dab61SIlya Dryomov 	ceph_osdc_start_request(osdc, req, false);
4582922dab61SIlya Dryomov 	linger_cancel(lreq);
4583922dab61SIlya Dryomov 	linger_put(lreq);
4584922dab61SIlya Dryomov 	ret = wait_request_timeout(req, opts->mount_timeout);
4585922dab61SIlya Dryomov 
4586922dab61SIlya Dryomov out_put_req:
4587922dab61SIlya Dryomov 	ceph_osdc_put_request(req);
4588922dab61SIlya Dryomov 	return ret;
4589922dab61SIlya Dryomov }
4590922dab61SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_unwatch);
4591922dab61SIlya Dryomov 
4592922dab61SIlya Dryomov static int osd_req_op_notify_ack_init(struct ceph_osd_request *req, int which,
4593922dab61SIlya Dryomov 				      u64 notify_id, u64 cookie, void *payload,
45946d54228fSIlya Dryomov 				      u32 payload_len)
4595922dab61SIlya Dryomov {
4596922dab61SIlya Dryomov 	struct ceph_osd_req_op *op;
4597922dab61SIlya Dryomov 	struct ceph_pagelist *pl;
4598922dab61SIlya Dryomov 	int ret;
4599922dab61SIlya Dryomov 
4600922dab61SIlya Dryomov 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY_ACK, 0);
4601922dab61SIlya Dryomov 
4602922dab61SIlya Dryomov 	pl = kmalloc(sizeof(*pl), GFP_NOIO);
4603922dab61SIlya Dryomov 	if (!pl)
4604922dab61SIlya Dryomov 		return -ENOMEM;
4605922dab61SIlya Dryomov 
4606922dab61SIlya Dryomov 	ceph_pagelist_init(pl);
4607922dab61SIlya Dryomov 	ret = ceph_pagelist_encode_64(pl, notify_id);
4608922dab61SIlya Dryomov 	ret |= ceph_pagelist_encode_64(pl, cookie);
4609922dab61SIlya Dryomov 	if (payload) {
4610922dab61SIlya Dryomov 		ret |= ceph_pagelist_encode_32(pl, payload_len);
4611922dab61SIlya Dryomov 		ret |= ceph_pagelist_append(pl, payload, payload_len);
4612922dab61SIlya Dryomov 	} else {
4613922dab61SIlya Dryomov 		ret |= ceph_pagelist_encode_32(pl, 0);
4614922dab61SIlya Dryomov 	}
4615922dab61SIlya Dryomov 	if (ret) {
4616922dab61SIlya Dryomov 		ceph_pagelist_release(pl);
4617922dab61SIlya Dryomov 		return -ENOMEM;
4618922dab61SIlya Dryomov 	}
4619922dab61SIlya Dryomov 
4620922dab61SIlya Dryomov 	ceph_osd_data_pagelist_init(&op->notify_ack.request_data, pl);
4621922dab61SIlya Dryomov 	op->indata_len = pl->length;
4622922dab61SIlya Dryomov 	return 0;
4623922dab61SIlya Dryomov }
4624922dab61SIlya Dryomov 
4625922dab61SIlya Dryomov int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
4626922dab61SIlya Dryomov 			 struct ceph_object_id *oid,
4627922dab61SIlya Dryomov 			 struct ceph_object_locator *oloc,
4628922dab61SIlya Dryomov 			 u64 notify_id,
4629922dab61SIlya Dryomov 			 u64 cookie,
4630922dab61SIlya Dryomov 			 void *payload,
46316d54228fSIlya Dryomov 			 u32 payload_len)
4632922dab61SIlya Dryomov {
4633922dab61SIlya Dryomov 	struct ceph_osd_request *req;
4634922dab61SIlya Dryomov 	int ret;
4635922dab61SIlya Dryomov 
4636922dab61SIlya Dryomov 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4637922dab61SIlya Dryomov 	if (!req)
4638922dab61SIlya Dryomov 		return -ENOMEM;
4639922dab61SIlya Dryomov 
4640922dab61SIlya Dryomov 	ceph_oid_copy(&req->r_base_oid, oid);
4641922dab61SIlya Dryomov 	ceph_oloc_copy(&req->r_base_oloc, oloc);
4642922dab61SIlya Dryomov 	req->r_flags = CEPH_OSD_FLAG_READ;
4643922dab61SIlya Dryomov 
4644922dab61SIlya Dryomov 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4645922dab61SIlya Dryomov 	if (ret)
4646922dab61SIlya Dryomov 		goto out_put_req;
4647922dab61SIlya Dryomov 
4648922dab61SIlya Dryomov 	ret = osd_req_op_notify_ack_init(req, 0, notify_id, cookie, payload,
4649922dab61SIlya Dryomov 					 payload_len);
4650922dab61SIlya Dryomov 	if (ret)
4651922dab61SIlya Dryomov 		goto out_put_req;
4652922dab61SIlya Dryomov 
4653922dab61SIlya Dryomov 	ceph_osdc_start_request(osdc, req, false);
4654922dab61SIlya Dryomov 	ret = ceph_osdc_wait_request(osdc, req);
4655922dab61SIlya Dryomov 
4656922dab61SIlya Dryomov out_put_req:
4657922dab61SIlya Dryomov 	ceph_osdc_put_request(req);
4658922dab61SIlya Dryomov 	return ret;
4659922dab61SIlya Dryomov }
4660922dab61SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_notify_ack);
4661922dab61SIlya Dryomov 
466219079203SIlya Dryomov static int osd_req_op_notify_init(struct ceph_osd_request *req, int which,
466319079203SIlya Dryomov 				  u64 cookie, u32 prot_ver, u32 timeout,
46646d54228fSIlya Dryomov 				  void *payload, u32 payload_len)
466519079203SIlya Dryomov {
466619079203SIlya Dryomov 	struct ceph_osd_req_op *op;
466719079203SIlya Dryomov 	struct ceph_pagelist *pl;
466819079203SIlya Dryomov 	int ret;
466919079203SIlya Dryomov 
467019079203SIlya Dryomov 	op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY, 0);
467119079203SIlya Dryomov 	op->notify.cookie = cookie;
467219079203SIlya Dryomov 
467319079203SIlya Dryomov 	pl = kmalloc(sizeof(*pl), GFP_NOIO);
467419079203SIlya Dryomov 	if (!pl)
467519079203SIlya Dryomov 		return -ENOMEM;
467619079203SIlya Dryomov 
467719079203SIlya Dryomov 	ceph_pagelist_init(pl);
467819079203SIlya Dryomov 	ret = ceph_pagelist_encode_32(pl, 1); /* prot_ver */
467919079203SIlya Dryomov 	ret |= ceph_pagelist_encode_32(pl, timeout);
468019079203SIlya Dryomov 	ret |= ceph_pagelist_encode_32(pl, payload_len);
468119079203SIlya Dryomov 	ret |= ceph_pagelist_append(pl, payload, payload_len);
468219079203SIlya Dryomov 	if (ret) {
468319079203SIlya Dryomov 		ceph_pagelist_release(pl);
468419079203SIlya Dryomov 		return -ENOMEM;
468519079203SIlya Dryomov 	}
468619079203SIlya Dryomov 
468719079203SIlya Dryomov 	ceph_osd_data_pagelist_init(&op->notify.request_data, pl);
468819079203SIlya Dryomov 	op->indata_len = pl->length;
468919079203SIlya Dryomov 	return 0;
469019079203SIlya Dryomov }
469119079203SIlya Dryomov 
469219079203SIlya Dryomov /*
469319079203SIlya Dryomov  * @timeout: in seconds
469419079203SIlya Dryomov  *
469519079203SIlya Dryomov  * @preply_{pages,len} are initialized both on success and error.
469619079203SIlya Dryomov  * The caller is responsible for:
469719079203SIlya Dryomov  *
469819079203SIlya Dryomov  *     ceph_release_page_vector(reply_pages, calc_pages_for(0, reply_len))
469919079203SIlya Dryomov  */
470019079203SIlya Dryomov int ceph_osdc_notify(struct ceph_osd_client *osdc,
470119079203SIlya Dryomov 		     struct ceph_object_id *oid,
470219079203SIlya Dryomov 		     struct ceph_object_locator *oloc,
470319079203SIlya Dryomov 		     void *payload,
47046d54228fSIlya Dryomov 		     u32 payload_len,
470519079203SIlya Dryomov 		     u32 timeout,
470619079203SIlya Dryomov 		     struct page ***preply_pages,
470719079203SIlya Dryomov 		     size_t *preply_len)
470819079203SIlya Dryomov {
470919079203SIlya Dryomov 	struct ceph_osd_linger_request *lreq;
471019079203SIlya Dryomov 	struct page **pages;
471119079203SIlya Dryomov 	int ret;
471219079203SIlya Dryomov 
471319079203SIlya Dryomov 	WARN_ON(!timeout);
471419079203SIlya Dryomov 	if (preply_pages) {
471519079203SIlya Dryomov 		*preply_pages = NULL;
471619079203SIlya Dryomov 		*preply_len = 0;
471719079203SIlya Dryomov 	}
471819079203SIlya Dryomov 
471919079203SIlya Dryomov 	lreq = linger_alloc(osdc);
472019079203SIlya Dryomov 	if (!lreq)
472119079203SIlya Dryomov 		return -ENOMEM;
472219079203SIlya Dryomov 
472319079203SIlya Dryomov 	lreq->preply_pages = preply_pages;
472419079203SIlya Dryomov 	lreq->preply_len = preply_len;
472519079203SIlya Dryomov 
472619079203SIlya Dryomov 	ceph_oid_copy(&lreq->t.base_oid, oid);
472719079203SIlya Dryomov 	ceph_oloc_copy(&lreq->t.base_oloc, oloc);
472819079203SIlya Dryomov 	lreq->t.flags = CEPH_OSD_FLAG_READ;
472919079203SIlya Dryomov 
473019079203SIlya Dryomov 	lreq->reg_req = alloc_linger_request(lreq);
473119079203SIlya Dryomov 	if (!lreq->reg_req) {
473219079203SIlya Dryomov 		ret = -ENOMEM;
473319079203SIlya Dryomov 		goto out_put_lreq;
473419079203SIlya Dryomov 	}
473519079203SIlya Dryomov 
473619079203SIlya Dryomov 	/* for notify_id */
473719079203SIlya Dryomov 	pages = ceph_alloc_page_vector(1, GFP_NOIO);
473819079203SIlya Dryomov 	if (IS_ERR(pages)) {
473919079203SIlya Dryomov 		ret = PTR_ERR(pages);
474019079203SIlya Dryomov 		goto out_put_lreq;
474119079203SIlya Dryomov 	}
474219079203SIlya Dryomov 
474319079203SIlya Dryomov 	down_write(&osdc->lock);
474419079203SIlya Dryomov 	linger_register(lreq); /* before osd_req_op_* */
474519079203SIlya Dryomov 	ret = osd_req_op_notify_init(lreq->reg_req, 0, lreq->linger_id, 1,
474619079203SIlya Dryomov 				     timeout, payload, payload_len);
474719079203SIlya Dryomov 	if (ret) {
474819079203SIlya Dryomov 		linger_unregister(lreq);
474919079203SIlya Dryomov 		up_write(&osdc->lock);
475019079203SIlya Dryomov 		ceph_release_page_vector(pages, 1);
475119079203SIlya Dryomov 		goto out_put_lreq;
475219079203SIlya Dryomov 	}
475319079203SIlya Dryomov 	ceph_osd_data_pages_init(osd_req_op_data(lreq->reg_req, 0, notify,
475419079203SIlya Dryomov 						 response_data),
475519079203SIlya Dryomov 				 pages, PAGE_SIZE, 0, false, true);
475619079203SIlya Dryomov 	linger_submit(lreq);
475719079203SIlya Dryomov 	up_write(&osdc->lock);
475819079203SIlya Dryomov 
475919079203SIlya Dryomov 	ret = linger_reg_commit_wait(lreq);
476019079203SIlya Dryomov 	if (!ret)
476119079203SIlya Dryomov 		ret = linger_notify_finish_wait(lreq);
476219079203SIlya Dryomov 	else
476319079203SIlya Dryomov 		dout("lreq %p failed to initiate notify %d\n", lreq, ret);
476419079203SIlya Dryomov 
476519079203SIlya Dryomov 	linger_cancel(lreq);
476619079203SIlya Dryomov out_put_lreq:
476719079203SIlya Dryomov 	linger_put(lreq);
476819079203SIlya Dryomov 	return ret;
476919079203SIlya Dryomov }
477019079203SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_notify);
477119079203SIlya Dryomov 
47723d14c5d2SYehuda Sadeh /*
4773b07d3c4bSIlya Dryomov  * Return the number of milliseconds since the watch was last
4774b07d3c4bSIlya Dryomov  * confirmed, or an error.  If there is an error, the watch is no
4775b07d3c4bSIlya Dryomov  * longer valid, and should be destroyed with ceph_osdc_unwatch().
4776b07d3c4bSIlya Dryomov  */
4777b07d3c4bSIlya Dryomov int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
4778b07d3c4bSIlya Dryomov 			  struct ceph_osd_linger_request *lreq)
4779b07d3c4bSIlya Dryomov {
4780b07d3c4bSIlya Dryomov 	unsigned long stamp, age;
4781b07d3c4bSIlya Dryomov 	int ret;
4782b07d3c4bSIlya Dryomov 
4783b07d3c4bSIlya Dryomov 	down_read(&osdc->lock);
4784b07d3c4bSIlya Dryomov 	mutex_lock(&lreq->lock);
4785b07d3c4bSIlya Dryomov 	stamp = lreq->watch_valid_thru;
4786b07d3c4bSIlya Dryomov 	if (!list_empty(&lreq->pending_lworks)) {
4787b07d3c4bSIlya Dryomov 		struct linger_work *lwork =
4788b07d3c4bSIlya Dryomov 		    list_first_entry(&lreq->pending_lworks,
4789b07d3c4bSIlya Dryomov 				     struct linger_work,
4790b07d3c4bSIlya Dryomov 				     pending_item);
4791b07d3c4bSIlya Dryomov 
4792b07d3c4bSIlya Dryomov 		if (time_before(lwork->queued_stamp, stamp))
4793b07d3c4bSIlya Dryomov 			stamp = lwork->queued_stamp;
4794b07d3c4bSIlya Dryomov 	}
4795b07d3c4bSIlya Dryomov 	age = jiffies - stamp;
4796b07d3c4bSIlya Dryomov 	dout("%s lreq %p linger_id %llu age %lu last_error %d\n", __func__,
4797b07d3c4bSIlya Dryomov 	     lreq, lreq->linger_id, age, lreq->last_error);
4798b07d3c4bSIlya Dryomov 	/* we are truncating to msecs, so return a safe upper bound */
4799b07d3c4bSIlya Dryomov 	ret = lreq->last_error ?: 1 + jiffies_to_msecs(age);
4800b07d3c4bSIlya Dryomov 
4801b07d3c4bSIlya Dryomov 	mutex_unlock(&lreq->lock);
4802b07d3c4bSIlya Dryomov 	up_read(&osdc->lock);
4803b07d3c4bSIlya Dryomov 	return ret;
4804b07d3c4bSIlya Dryomov }
4805b07d3c4bSIlya Dryomov 
4806a4ed38d7SDouglas Fuller static int decode_watcher(void **p, void *end, struct ceph_watch_item *item)
4807a4ed38d7SDouglas Fuller {
4808a4ed38d7SDouglas Fuller 	u8 struct_v;
4809a4ed38d7SDouglas Fuller 	u32 struct_len;
4810a4ed38d7SDouglas Fuller 	int ret;
4811a4ed38d7SDouglas Fuller 
4812a4ed38d7SDouglas Fuller 	ret = ceph_start_decoding(p, end, 2, "watch_item_t",
4813a4ed38d7SDouglas Fuller 				  &struct_v, &struct_len);
4814a4ed38d7SDouglas Fuller 	if (ret)
4815a4ed38d7SDouglas Fuller 		return ret;
4816a4ed38d7SDouglas Fuller 
4817a4ed38d7SDouglas Fuller 	ceph_decode_copy(p, &item->name, sizeof(item->name));
4818a4ed38d7SDouglas Fuller 	item->cookie = ceph_decode_64(p);
4819a4ed38d7SDouglas Fuller 	*p += 4; /* skip timeout_seconds */
4820a4ed38d7SDouglas Fuller 	if (struct_v >= 2) {
4821a4ed38d7SDouglas Fuller 		ceph_decode_copy(p, &item->addr, sizeof(item->addr));
4822a4ed38d7SDouglas Fuller 		ceph_decode_addr(&item->addr);
4823a4ed38d7SDouglas Fuller 	}
4824a4ed38d7SDouglas Fuller 
4825a4ed38d7SDouglas Fuller 	dout("%s %s%llu cookie %llu addr %s\n", __func__,
4826a4ed38d7SDouglas Fuller 	     ENTITY_NAME(item->name), item->cookie,
4827a4ed38d7SDouglas Fuller 	     ceph_pr_addr(&item->addr.in_addr));
4828a4ed38d7SDouglas Fuller 	return 0;
4829a4ed38d7SDouglas Fuller }
4830a4ed38d7SDouglas Fuller 
4831a4ed38d7SDouglas Fuller static int decode_watchers(void **p, void *end,
4832a4ed38d7SDouglas Fuller 			   struct ceph_watch_item **watchers,
4833a4ed38d7SDouglas Fuller 			   u32 *num_watchers)
4834a4ed38d7SDouglas Fuller {
4835a4ed38d7SDouglas Fuller 	u8 struct_v;
4836a4ed38d7SDouglas Fuller 	u32 struct_len;
4837a4ed38d7SDouglas Fuller 	int i;
4838a4ed38d7SDouglas Fuller 	int ret;
4839a4ed38d7SDouglas Fuller 
4840a4ed38d7SDouglas Fuller 	ret = ceph_start_decoding(p, end, 1, "obj_list_watch_response_t",
4841a4ed38d7SDouglas Fuller 				  &struct_v, &struct_len);
4842a4ed38d7SDouglas Fuller 	if (ret)
4843a4ed38d7SDouglas Fuller 		return ret;
4844a4ed38d7SDouglas Fuller 
4845a4ed38d7SDouglas Fuller 	*num_watchers = ceph_decode_32(p);
4846a4ed38d7SDouglas Fuller 	*watchers = kcalloc(*num_watchers, sizeof(**watchers), GFP_NOIO);
4847a4ed38d7SDouglas Fuller 	if (!*watchers)
4848a4ed38d7SDouglas Fuller 		return -ENOMEM;
4849a4ed38d7SDouglas Fuller 
4850a4ed38d7SDouglas Fuller 	for (i = 0; i < *num_watchers; i++) {
4851a4ed38d7SDouglas Fuller 		ret = decode_watcher(p, end, *watchers + i);
4852a4ed38d7SDouglas Fuller 		if (ret) {
4853a4ed38d7SDouglas Fuller 			kfree(*watchers);
4854a4ed38d7SDouglas Fuller 			return ret;
4855a4ed38d7SDouglas Fuller 		}
4856a4ed38d7SDouglas Fuller 	}
4857a4ed38d7SDouglas Fuller 
4858a4ed38d7SDouglas Fuller 	return 0;
4859a4ed38d7SDouglas Fuller }
4860a4ed38d7SDouglas Fuller 
4861a4ed38d7SDouglas Fuller /*
4862a4ed38d7SDouglas Fuller  * On success, the caller is responsible for:
4863a4ed38d7SDouglas Fuller  *
4864a4ed38d7SDouglas Fuller  *     kfree(watchers);
4865a4ed38d7SDouglas Fuller  */
4866a4ed38d7SDouglas Fuller int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
4867a4ed38d7SDouglas Fuller 			    struct ceph_object_id *oid,
4868a4ed38d7SDouglas Fuller 			    struct ceph_object_locator *oloc,
4869a4ed38d7SDouglas Fuller 			    struct ceph_watch_item **watchers,
4870a4ed38d7SDouglas Fuller 			    u32 *num_watchers)
4871a4ed38d7SDouglas Fuller {
4872a4ed38d7SDouglas Fuller 	struct ceph_osd_request *req;
4873a4ed38d7SDouglas Fuller 	struct page **pages;
4874a4ed38d7SDouglas Fuller 	int ret;
4875a4ed38d7SDouglas Fuller 
4876a4ed38d7SDouglas Fuller 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4877a4ed38d7SDouglas Fuller 	if (!req)
4878a4ed38d7SDouglas Fuller 		return -ENOMEM;
4879a4ed38d7SDouglas Fuller 
4880a4ed38d7SDouglas Fuller 	ceph_oid_copy(&req->r_base_oid, oid);
4881a4ed38d7SDouglas Fuller 	ceph_oloc_copy(&req->r_base_oloc, oloc);
4882a4ed38d7SDouglas Fuller 	req->r_flags = CEPH_OSD_FLAG_READ;
4883a4ed38d7SDouglas Fuller 
4884a4ed38d7SDouglas Fuller 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4885a4ed38d7SDouglas Fuller 	if (ret)
4886a4ed38d7SDouglas Fuller 		goto out_put_req;
4887a4ed38d7SDouglas Fuller 
4888a4ed38d7SDouglas Fuller 	pages = ceph_alloc_page_vector(1, GFP_NOIO);
4889a4ed38d7SDouglas Fuller 	if (IS_ERR(pages)) {
4890a4ed38d7SDouglas Fuller 		ret = PTR_ERR(pages);
4891a4ed38d7SDouglas Fuller 		goto out_put_req;
4892a4ed38d7SDouglas Fuller 	}
4893a4ed38d7SDouglas Fuller 
4894a4ed38d7SDouglas Fuller 	osd_req_op_init(req, 0, CEPH_OSD_OP_LIST_WATCHERS, 0);
4895a4ed38d7SDouglas Fuller 	ceph_osd_data_pages_init(osd_req_op_data(req, 0, list_watchers,
4896a4ed38d7SDouglas Fuller 						 response_data),
4897a4ed38d7SDouglas Fuller 				 pages, PAGE_SIZE, 0, false, true);
4898a4ed38d7SDouglas Fuller 
4899a4ed38d7SDouglas Fuller 	ceph_osdc_start_request(osdc, req, false);
4900a4ed38d7SDouglas Fuller 	ret = ceph_osdc_wait_request(osdc, req);
4901a4ed38d7SDouglas Fuller 	if (ret >= 0) {
4902a4ed38d7SDouglas Fuller 		void *p = page_address(pages[0]);
4903a4ed38d7SDouglas Fuller 		void *const end = p + req->r_ops[0].outdata_len;
4904a4ed38d7SDouglas Fuller 
4905a4ed38d7SDouglas Fuller 		ret = decode_watchers(&p, end, watchers, num_watchers);
4906a4ed38d7SDouglas Fuller 	}
4907a4ed38d7SDouglas Fuller 
4908a4ed38d7SDouglas Fuller out_put_req:
4909a4ed38d7SDouglas Fuller 	ceph_osdc_put_request(req);
4910a4ed38d7SDouglas Fuller 	return ret;
4911a4ed38d7SDouglas Fuller }
4912a4ed38d7SDouglas Fuller EXPORT_SYMBOL(ceph_osdc_list_watchers);
4913a4ed38d7SDouglas Fuller 
4914b07d3c4bSIlya Dryomov /*
4915dd935f44SJosh Durgin  * Call all pending notify callbacks - for use after a watch is
4916dd935f44SJosh Durgin  * unregistered, to make sure no more callbacks for it will be invoked
4917dd935f44SJosh Durgin  */
4918f6479449Sstephen hemminger void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
4919dd935f44SJosh Durgin {
492099d16943SIlya Dryomov 	dout("%s osdc %p\n", __func__, osdc);
4921dd935f44SJosh Durgin 	flush_workqueue(osdc->notify_wq);
4922dd935f44SJosh Durgin }
4923dd935f44SJosh Durgin EXPORT_SYMBOL(ceph_osdc_flush_notifies);
4924dd935f44SJosh Durgin 
49257cca78c9SIlya Dryomov void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc)
49267cca78c9SIlya Dryomov {
49277cca78c9SIlya Dryomov 	down_read(&osdc->lock);
49287cca78c9SIlya Dryomov 	maybe_request_map(osdc);
49297cca78c9SIlya Dryomov 	up_read(&osdc->lock);
49307cca78c9SIlya Dryomov }
49317cca78c9SIlya Dryomov EXPORT_SYMBOL(ceph_osdc_maybe_request_map);
4932dd935f44SJosh Durgin 
4933dd935f44SJosh Durgin /*
4934428a7158SDouglas Fuller  * Execute an OSD class method on an object.
4935428a7158SDouglas Fuller  *
4936428a7158SDouglas Fuller  * @flags: CEPH_OSD_FLAG_*
49372544a020SIlya Dryomov  * @resp_len: in/out param for reply length
4938428a7158SDouglas Fuller  */
4939428a7158SDouglas Fuller int ceph_osdc_call(struct ceph_osd_client *osdc,
4940428a7158SDouglas Fuller 		   struct ceph_object_id *oid,
4941428a7158SDouglas Fuller 		   struct ceph_object_locator *oloc,
4942428a7158SDouglas Fuller 		   const char *class, const char *method,
4943428a7158SDouglas Fuller 		   unsigned int flags,
4944428a7158SDouglas Fuller 		   struct page *req_page, size_t req_len,
4945428a7158SDouglas Fuller 		   struct page *resp_page, size_t *resp_len)
4946428a7158SDouglas Fuller {
4947428a7158SDouglas Fuller 	struct ceph_osd_request *req;
4948428a7158SDouglas Fuller 	int ret;
4949428a7158SDouglas Fuller 
49502544a020SIlya Dryomov 	if (req_len > PAGE_SIZE || (resp_page && *resp_len > PAGE_SIZE))
49512544a020SIlya Dryomov 		return -E2BIG;
49522544a020SIlya Dryomov 
4953428a7158SDouglas Fuller 	req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4954428a7158SDouglas Fuller 	if (!req)
4955428a7158SDouglas Fuller 		return -ENOMEM;
4956428a7158SDouglas Fuller 
4957428a7158SDouglas Fuller 	ceph_oid_copy(&req->r_base_oid, oid);
4958428a7158SDouglas Fuller 	ceph_oloc_copy(&req->r_base_oloc, oloc);
4959428a7158SDouglas Fuller 	req->r_flags = flags;
4960428a7158SDouglas Fuller 
4961428a7158SDouglas Fuller 	ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4962428a7158SDouglas Fuller 	if (ret)
4963428a7158SDouglas Fuller 		goto out_put_req;
4964428a7158SDouglas Fuller 
4965fe943d50SChengguang Xu 	ret = osd_req_op_cls_init(req, 0, CEPH_OSD_OP_CALL, class, method);
4966fe943d50SChengguang Xu 	if (ret)
4967fe943d50SChengguang Xu 		goto out_put_req;
4968fe943d50SChengguang Xu 
4969428a7158SDouglas Fuller 	if (req_page)
4970428a7158SDouglas Fuller 		osd_req_op_cls_request_data_pages(req, 0, &req_page, req_len,
4971428a7158SDouglas Fuller 						  0, false, false);
4972428a7158SDouglas Fuller 	if (resp_page)
4973428a7158SDouglas Fuller 		osd_req_op_cls_response_data_pages(req, 0, &resp_page,
49742544a020SIlya Dryomov 						   *resp_len, 0, false, false);
4975428a7158SDouglas Fuller 
4976428a7158SDouglas Fuller 	ceph_osdc_start_request(osdc, req, false);
4977428a7158SDouglas Fuller 	ret = ceph_osdc_wait_request(osdc, req);
4978428a7158SDouglas Fuller 	if (ret >= 0) {
4979428a7158SDouglas Fuller 		ret = req->r_ops[0].rval;
4980428a7158SDouglas Fuller 		if (resp_page)
4981428a7158SDouglas Fuller 			*resp_len = req->r_ops[0].outdata_len;
4982428a7158SDouglas Fuller 	}
4983428a7158SDouglas Fuller 
4984428a7158SDouglas Fuller out_put_req:
4985428a7158SDouglas Fuller 	ceph_osdc_put_request(req);
4986428a7158SDouglas Fuller 	return ret;
4987428a7158SDouglas Fuller }
4988428a7158SDouglas Fuller EXPORT_SYMBOL(ceph_osdc_call);
4989428a7158SDouglas Fuller 
4990428a7158SDouglas Fuller /*
49913d14c5d2SYehuda Sadeh  * init, shutdown
49923d14c5d2SYehuda Sadeh  */
49933d14c5d2SYehuda Sadeh int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
49943d14c5d2SYehuda Sadeh {
49953d14c5d2SYehuda Sadeh 	int err;
49963d14c5d2SYehuda Sadeh 
49973d14c5d2SYehuda Sadeh 	dout("init\n");
49983d14c5d2SYehuda Sadeh 	osdc->client = client;
49995aea3dcdSIlya Dryomov 	init_rwsem(&osdc->lock);
50003d14c5d2SYehuda Sadeh 	osdc->osds = RB_ROOT;
50013d14c5d2SYehuda Sadeh 	INIT_LIST_HEAD(&osdc->osd_lru);
50029dd2845cSIlya Dryomov 	spin_lock_init(&osdc->osd_lru_lock);
50035aea3dcdSIlya Dryomov 	osd_init(&osdc->homeless_osd);
50045aea3dcdSIlya Dryomov 	osdc->homeless_osd.o_osdc = osdc;
50055aea3dcdSIlya Dryomov 	osdc->homeless_osd.o_osd = CEPH_HOMELESS_OSD;
5006264048afSIlya Dryomov 	osdc->last_linger_id = CEPH_LINGER_ID_START;
5007922dab61SIlya Dryomov 	osdc->linger_requests = RB_ROOT;
50084609245eSIlya Dryomov 	osdc->map_checks = RB_ROOT;
50094609245eSIlya Dryomov 	osdc->linger_map_checks = RB_ROOT;
50103d14c5d2SYehuda Sadeh 	INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
50113d14c5d2SYehuda Sadeh 	INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
50123d14c5d2SYehuda Sadeh 
50133d14c5d2SYehuda Sadeh 	err = -ENOMEM;
5014e5253a7bSIlya Dryomov 	osdc->osdmap = ceph_osdmap_alloc();
5015e5253a7bSIlya Dryomov 	if (!osdc->osdmap)
5016e5253a7bSIlya Dryomov 		goto out;
5017e5253a7bSIlya Dryomov 
50189e767adbSIlya Dryomov 	osdc->req_mempool = mempool_create_slab_pool(10,
50199e767adbSIlya Dryomov 						     ceph_osd_request_cache);
50203d14c5d2SYehuda Sadeh 	if (!osdc->req_mempool)
5021e5253a7bSIlya Dryomov 		goto out_map;
50223d14c5d2SYehuda Sadeh 
5023d50b409fSSage Weil 	err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
5024711da55dSIlya Dryomov 				PAGE_SIZE, 10, true, "osd_op");
50253d14c5d2SYehuda Sadeh 	if (err < 0)
50263d14c5d2SYehuda Sadeh 		goto out_mempool;
5027d50b409fSSage Weil 	err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
5028711da55dSIlya Dryomov 				PAGE_SIZE, 10, true, "osd_op_reply");
50293d14c5d2SYehuda Sadeh 	if (err < 0)
50303d14c5d2SYehuda Sadeh 		goto out_msgpool;
5031a40c4f10SYehuda Sadeh 
5032dbcae088SDan Carpenter 	err = -ENOMEM;
5033a40c4f10SYehuda Sadeh 	osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
5034dbcae088SDan Carpenter 	if (!osdc->notify_wq)
5035c172ec5cSIlya Dryomov 		goto out_msgpool_reply;
5036c172ec5cSIlya Dryomov 
503788bc1922SIlya Dryomov 	osdc->completion_wq = create_singlethread_workqueue("ceph-completion");
503888bc1922SIlya Dryomov 	if (!osdc->completion_wq)
503988bc1922SIlya Dryomov 		goto out_notify_wq;
504088bc1922SIlya Dryomov 
5041fbca9635SIlya Dryomov 	schedule_delayed_work(&osdc->timeout_work,
5042fbca9635SIlya Dryomov 			      osdc->client->options->osd_keepalive_timeout);
5043b37ee1b9SIlya Dryomov 	schedule_delayed_work(&osdc->osds_timeout_work,
5044b37ee1b9SIlya Dryomov 	    round_jiffies_relative(osdc->client->options->osd_idle_ttl));
5045b37ee1b9SIlya Dryomov 
50463d14c5d2SYehuda Sadeh 	return 0;
50473d14c5d2SYehuda Sadeh 
504888bc1922SIlya Dryomov out_notify_wq:
504988bc1922SIlya Dryomov 	destroy_workqueue(osdc->notify_wq);
5050c172ec5cSIlya Dryomov out_msgpool_reply:
5051c172ec5cSIlya Dryomov 	ceph_msgpool_destroy(&osdc->msgpool_op_reply);
50523d14c5d2SYehuda Sadeh out_msgpool:
50533d14c5d2SYehuda Sadeh 	ceph_msgpool_destroy(&osdc->msgpool_op);
50543d14c5d2SYehuda Sadeh out_mempool:
50553d14c5d2SYehuda Sadeh 	mempool_destroy(osdc->req_mempool);
5056e5253a7bSIlya Dryomov out_map:
5057e5253a7bSIlya Dryomov 	ceph_osdmap_destroy(osdc->osdmap);
50583d14c5d2SYehuda Sadeh out:
50593d14c5d2SYehuda Sadeh 	return err;
50603d14c5d2SYehuda Sadeh }
50613d14c5d2SYehuda Sadeh 
50623d14c5d2SYehuda Sadeh void ceph_osdc_stop(struct ceph_osd_client *osdc)
50633d14c5d2SYehuda Sadeh {
506488bc1922SIlya Dryomov 	destroy_workqueue(osdc->completion_wq);
5065a40c4f10SYehuda Sadeh 	destroy_workqueue(osdc->notify_wq);
50663d14c5d2SYehuda Sadeh 	cancel_delayed_work_sync(&osdc->timeout_work);
50673d14c5d2SYehuda Sadeh 	cancel_delayed_work_sync(&osdc->osds_timeout_work);
506842a2c09fSIlya Dryomov 
50695aea3dcdSIlya Dryomov 	down_write(&osdc->lock);
507042a2c09fSIlya Dryomov 	while (!RB_EMPTY_ROOT(&osdc->osds)) {
507142a2c09fSIlya Dryomov 		struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds),
507242a2c09fSIlya Dryomov 						struct ceph_osd, o_node);
50735aea3dcdSIlya Dryomov 		close_osd(osd);
507442a2c09fSIlya Dryomov 	}
50755aea3dcdSIlya Dryomov 	up_write(&osdc->lock);
507602113a0fSElena Reshetova 	WARN_ON(refcount_read(&osdc->homeless_osd.o_ref) != 1);
50775aea3dcdSIlya Dryomov 	osd_cleanup(&osdc->homeless_osd);
50785aea3dcdSIlya Dryomov 
50795aea3dcdSIlya Dryomov 	WARN_ON(!list_empty(&osdc->osd_lru));
5080922dab61SIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_requests));
50814609245eSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osdc->map_checks));
50824609245eSIlya Dryomov 	WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_map_checks));
50835aea3dcdSIlya Dryomov 	WARN_ON(atomic_read(&osdc->num_requests));
50845aea3dcdSIlya Dryomov 	WARN_ON(atomic_read(&osdc->num_homeless));
508542a2c09fSIlya Dryomov 
50863d14c5d2SYehuda Sadeh 	ceph_osdmap_destroy(osdc->osdmap);
50873d14c5d2SYehuda Sadeh 	mempool_destroy(osdc->req_mempool);
50883d14c5d2SYehuda Sadeh 	ceph_msgpool_destroy(&osdc->msgpool_op);
50893d14c5d2SYehuda Sadeh 	ceph_msgpool_destroy(&osdc->msgpool_op_reply);
50903d14c5d2SYehuda Sadeh }
50913d14c5d2SYehuda Sadeh 
50923d14c5d2SYehuda Sadeh /*
50933d14c5d2SYehuda Sadeh  * Read some contiguous pages.  If we cross a stripe boundary, shorten
50943d14c5d2SYehuda Sadeh  * *plen.  Return number of bytes read, or error.
50953d14c5d2SYehuda Sadeh  */
50963d14c5d2SYehuda Sadeh int ceph_osdc_readpages(struct ceph_osd_client *osdc,
50973d14c5d2SYehuda Sadeh 			struct ceph_vino vino, struct ceph_file_layout *layout,
50983d14c5d2SYehuda Sadeh 			u64 off, u64 *plen,
50993d14c5d2SYehuda Sadeh 			u32 truncate_seq, u64 truncate_size,
5100b7495fc2SSage Weil 			struct page **pages, int num_pages, int page_align)
51013d14c5d2SYehuda Sadeh {
51023d14c5d2SYehuda Sadeh 	struct ceph_osd_request *req;
51033d14c5d2SYehuda Sadeh 	int rc = 0;
51043d14c5d2SYehuda Sadeh 
51053d14c5d2SYehuda Sadeh 	dout("readpages on ino %llx.%llx on %llu~%llu\n", vino.ino,
51063d14c5d2SYehuda Sadeh 	     vino.snap, off, *plen);
5107715e4cd4SYan, Zheng 	req = ceph_osdc_new_request(osdc, layout, vino, off, plen, 0, 1,
51083d14c5d2SYehuda Sadeh 				    CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
5109acead002SAlex Elder 				    NULL, truncate_seq, truncate_size,
5110153e5167SAlex Elder 				    false);
51116816282dSSage Weil 	if (IS_ERR(req))
51126816282dSSage Weil 		return PTR_ERR(req);
51133d14c5d2SYehuda Sadeh 
51143d14c5d2SYehuda Sadeh 	/* it may be a short read due to an object boundary */
5115406e2c9fSAlex Elder 	osd_req_op_extent_osd_data_pages(req, 0,
5116a4ce40a9SAlex Elder 				pages, *plen, page_align, false, false);
51173d14c5d2SYehuda Sadeh 
5118e0c59487SAlex Elder 	dout("readpages  final extent is %llu~%llu (%llu bytes align %d)\n",
511943bfe5deSAlex Elder 	     off, *plen, *plen, page_align);
51203d14c5d2SYehuda Sadeh 
51213d14c5d2SYehuda Sadeh 	rc = ceph_osdc_start_request(osdc, req, false);
51223d14c5d2SYehuda Sadeh 	if (!rc)
51233d14c5d2SYehuda Sadeh 		rc = ceph_osdc_wait_request(osdc, req);
51243d14c5d2SYehuda Sadeh 
51253d14c5d2SYehuda Sadeh 	ceph_osdc_put_request(req);
51263d14c5d2SYehuda Sadeh 	dout("readpages result %d\n", rc);
51273d14c5d2SYehuda Sadeh 	return rc;
51283d14c5d2SYehuda Sadeh }
51293d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_readpages);
51303d14c5d2SYehuda Sadeh 
51313d14c5d2SYehuda Sadeh /*
51323d14c5d2SYehuda Sadeh  * do a synchronous write on N pages
51333d14c5d2SYehuda Sadeh  */
51343d14c5d2SYehuda Sadeh int ceph_osdc_writepages(struct ceph_osd_client *osdc, struct ceph_vino vino,
51353d14c5d2SYehuda Sadeh 			 struct ceph_file_layout *layout,
51363d14c5d2SYehuda Sadeh 			 struct ceph_snap_context *snapc,
51373d14c5d2SYehuda Sadeh 			 u64 off, u64 len,
51383d14c5d2SYehuda Sadeh 			 u32 truncate_seq, u64 truncate_size,
5139fac02ddfSArnd Bergmann 			 struct timespec64 *mtime,
514024808826SAlex Elder 			 struct page **pages, int num_pages)
51413d14c5d2SYehuda Sadeh {
51423d14c5d2SYehuda Sadeh 	struct ceph_osd_request *req;
51433d14c5d2SYehuda Sadeh 	int rc = 0;
5144b7495fc2SSage Weil 	int page_align = off & ~PAGE_MASK;
51453d14c5d2SYehuda Sadeh 
5146715e4cd4SYan, Zheng 	req = ceph_osdc_new_request(osdc, layout, vino, off, &len, 0, 1,
514754ea0046SIlya Dryomov 				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
5148acead002SAlex Elder 				    snapc, truncate_seq, truncate_size,
5149153e5167SAlex Elder 				    true);
51506816282dSSage Weil 	if (IS_ERR(req))
51516816282dSSage Weil 		return PTR_ERR(req);
51523d14c5d2SYehuda Sadeh 
51533d14c5d2SYehuda Sadeh 	/* it may be a short write due to an object boundary */
5154406e2c9fSAlex Elder 	osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_align,
515543bfe5deSAlex Elder 				false, false);
515643bfe5deSAlex Elder 	dout("writepages %llu~%llu (%llu bytes)\n", off, len, len);
51573d14c5d2SYehuda Sadeh 
5158bb873b53SIlya Dryomov 	req->r_mtime = *mtime;
515987f979d3SAlex Elder 	rc = ceph_osdc_start_request(osdc, req, true);
51603d14c5d2SYehuda Sadeh 	if (!rc)
51613d14c5d2SYehuda Sadeh 		rc = ceph_osdc_wait_request(osdc, req);
51623d14c5d2SYehuda Sadeh 
51633d14c5d2SYehuda Sadeh 	ceph_osdc_put_request(req);
51643d14c5d2SYehuda Sadeh 	if (rc == 0)
51653d14c5d2SYehuda Sadeh 		rc = len;
51663d14c5d2SYehuda Sadeh 	dout("writepages result %d\n", rc);
51673d14c5d2SYehuda Sadeh 	return rc;
51683d14c5d2SYehuda Sadeh }
51693d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_osdc_writepages);
51703d14c5d2SYehuda Sadeh 
517157a35dfbSChengguang Xu int __init ceph_osdc_setup(void)
51725522ae0bSAlex Elder {
51733f1af42aSIlya Dryomov 	size_t size = sizeof(struct ceph_osd_request) +
51743f1af42aSIlya Dryomov 	    CEPH_OSD_SLAB_OPS * sizeof(struct ceph_osd_req_op);
51753f1af42aSIlya Dryomov 
51765522ae0bSAlex Elder 	BUG_ON(ceph_osd_request_cache);
51773f1af42aSIlya Dryomov 	ceph_osd_request_cache = kmem_cache_create("ceph_osd_request", size,
51783f1af42aSIlya Dryomov 						   0, 0, NULL);
51795522ae0bSAlex Elder 
51805522ae0bSAlex Elder 	return ceph_osd_request_cache ? 0 : -ENOMEM;
51815522ae0bSAlex Elder }
51825522ae0bSAlex Elder 
51835522ae0bSAlex Elder void ceph_osdc_cleanup(void)
51845522ae0bSAlex Elder {
51855522ae0bSAlex Elder 	BUG_ON(!ceph_osd_request_cache);
51865522ae0bSAlex Elder 	kmem_cache_destroy(ceph_osd_request_cache);
51875522ae0bSAlex Elder 	ceph_osd_request_cache = NULL;
51885522ae0bSAlex Elder }
51895522ae0bSAlex Elder 
51903d14c5d2SYehuda Sadeh /*
51913d14c5d2SYehuda Sadeh  * handle incoming message
51923d14c5d2SYehuda Sadeh  */
51933d14c5d2SYehuda Sadeh static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
51943d14c5d2SYehuda Sadeh {
51953d14c5d2SYehuda Sadeh 	struct ceph_osd *osd = con->private;
51965aea3dcdSIlya Dryomov 	struct ceph_osd_client *osdc = osd->o_osdc;
51973d14c5d2SYehuda Sadeh 	int type = le16_to_cpu(msg->hdr.type);
51983d14c5d2SYehuda Sadeh 
51993d14c5d2SYehuda Sadeh 	switch (type) {
52003d14c5d2SYehuda Sadeh 	case CEPH_MSG_OSD_MAP:
52013d14c5d2SYehuda Sadeh 		ceph_osdc_handle_map(osdc, msg);
52023d14c5d2SYehuda Sadeh 		break;
52033d14c5d2SYehuda Sadeh 	case CEPH_MSG_OSD_OPREPLY:
52045aea3dcdSIlya Dryomov 		handle_reply(osd, msg);
52053d14c5d2SYehuda Sadeh 		break;
5206a02a946dSIlya Dryomov 	case CEPH_MSG_OSD_BACKOFF:
5207a02a946dSIlya Dryomov 		handle_backoff(osd, msg);
5208a02a946dSIlya Dryomov 		break;
5209a40c4f10SYehuda Sadeh 	case CEPH_MSG_WATCH_NOTIFY:
5210a40c4f10SYehuda Sadeh 		handle_watch_notify(osdc, msg);
5211a40c4f10SYehuda Sadeh 		break;
52123d14c5d2SYehuda Sadeh 
52133d14c5d2SYehuda Sadeh 	default:
52143d14c5d2SYehuda Sadeh 		pr_err("received unknown message type %d %s\n", type,
52153d14c5d2SYehuda Sadeh 		       ceph_msg_type_name(type));
52163d14c5d2SYehuda Sadeh 	}
52175aea3dcdSIlya Dryomov 
52183d14c5d2SYehuda Sadeh 	ceph_msg_put(msg);
52193d14c5d2SYehuda Sadeh }
52203d14c5d2SYehuda Sadeh 
52213d14c5d2SYehuda Sadeh /*
5222d15f9d69SIlya Dryomov  * Lookup and return message for incoming reply.  Don't try to do
5223d15f9d69SIlya Dryomov  * anything about a larger than preallocated data portion of the
5224d15f9d69SIlya Dryomov  * message at the moment - for now, just skip the message.
52253d14c5d2SYehuda Sadeh  */
52263d14c5d2SYehuda Sadeh static struct ceph_msg *get_reply(struct ceph_connection *con,
52273d14c5d2SYehuda Sadeh 				  struct ceph_msg_header *hdr,
52283d14c5d2SYehuda Sadeh 				  int *skip)
52293d14c5d2SYehuda Sadeh {
52303d14c5d2SYehuda Sadeh 	struct ceph_osd *osd = con->private;
52313d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc = osd->o_osdc;
52325aea3dcdSIlya Dryomov 	struct ceph_msg *m = NULL;
52333d14c5d2SYehuda Sadeh 	struct ceph_osd_request *req;
52343f0a4ac5SIlya Dryomov 	int front_len = le32_to_cpu(hdr->front_len);
52353d14c5d2SYehuda Sadeh 	int data_len = le32_to_cpu(hdr->data_len);
52365aea3dcdSIlya Dryomov 	u64 tid = le64_to_cpu(hdr->tid);
52373d14c5d2SYehuda Sadeh 
52385aea3dcdSIlya Dryomov 	down_read(&osdc->lock);
52395aea3dcdSIlya Dryomov 	if (!osd_registered(osd)) {
52405aea3dcdSIlya Dryomov 		dout("%s osd%d unknown, skipping\n", __func__, osd->o_osd);
52415aea3dcdSIlya Dryomov 		*skip = 1;
52425aea3dcdSIlya Dryomov 		goto out_unlock_osdc;
52435aea3dcdSIlya Dryomov 	}
52445aea3dcdSIlya Dryomov 	WARN_ON(osd->o_osd != le64_to_cpu(hdr->src.num));
52455aea3dcdSIlya Dryomov 
52465aea3dcdSIlya Dryomov 	mutex_lock(&osd->lock);
52475aea3dcdSIlya Dryomov 	req = lookup_request(&osd->o_requests, tid);
52483d14c5d2SYehuda Sadeh 	if (!req) {
5249cd8140c6SIlya Dryomov 		dout("%s osd%d tid %llu unknown, skipping\n", __func__,
5250cd8140c6SIlya Dryomov 		     osd->o_osd, tid);
5251d15f9d69SIlya Dryomov 		*skip = 1;
52525aea3dcdSIlya Dryomov 		goto out_unlock_session;
52533d14c5d2SYehuda Sadeh 	}
52543d14c5d2SYehuda Sadeh 
52558921d114SAlex Elder 	ceph_msg_revoke_incoming(req->r_reply);
52563d14c5d2SYehuda Sadeh 
5257f2be82b0SIlya Dryomov 	if (front_len > req->r_reply->front_alloc_len) {
5258d15f9d69SIlya Dryomov 		pr_warn("%s osd%d tid %llu front %d > preallocated %d\n",
5259d15f9d69SIlya Dryomov 			__func__, osd->o_osd, req->r_tid, front_len,
5260d15f9d69SIlya Dryomov 			req->r_reply->front_alloc_len);
52613f0a4ac5SIlya Dryomov 		m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS,
52623f0a4ac5SIlya Dryomov 				 false);
52633d14c5d2SYehuda Sadeh 		if (!m)
52645aea3dcdSIlya Dryomov 			goto out_unlock_session;
52653d14c5d2SYehuda Sadeh 		ceph_msg_put(req->r_reply);
52663d14c5d2SYehuda Sadeh 		req->r_reply = m;
52673d14c5d2SYehuda Sadeh 	}
52683d14c5d2SYehuda Sadeh 
5269d15f9d69SIlya Dryomov 	if (data_len > req->r_reply->data_length) {
5270d15f9d69SIlya Dryomov 		pr_warn("%s osd%d tid %llu data %d > preallocated %zu, skipping\n",
5271d15f9d69SIlya Dryomov 			__func__, osd->o_osd, req->r_tid, data_len,
5272d15f9d69SIlya Dryomov 			req->r_reply->data_length);
52733d14c5d2SYehuda Sadeh 		m = NULL;
5274d15f9d69SIlya Dryomov 		*skip = 1;
52755aea3dcdSIlya Dryomov 		goto out_unlock_session;
52763d14c5d2SYehuda Sadeh 	}
5277d15f9d69SIlya Dryomov 
5278d15f9d69SIlya Dryomov 	m = ceph_msg_get(req->r_reply);
52793d14c5d2SYehuda Sadeh 	dout("get_reply tid %lld %p\n", tid, m);
52803d14c5d2SYehuda Sadeh 
52815aea3dcdSIlya Dryomov out_unlock_session:
52825aea3dcdSIlya Dryomov 	mutex_unlock(&osd->lock);
52835aea3dcdSIlya Dryomov out_unlock_osdc:
52845aea3dcdSIlya Dryomov 	up_read(&osdc->lock);
52853d14c5d2SYehuda Sadeh 	return m;
52863d14c5d2SYehuda Sadeh }
52873d14c5d2SYehuda Sadeh 
528819079203SIlya Dryomov /*
528919079203SIlya Dryomov  * TODO: switch to a msg-owned pagelist
529019079203SIlya Dryomov  */
529119079203SIlya Dryomov static struct ceph_msg *alloc_msg_with_page_vector(struct ceph_msg_header *hdr)
529219079203SIlya Dryomov {
529319079203SIlya Dryomov 	struct ceph_msg *m;
529419079203SIlya Dryomov 	int type = le16_to_cpu(hdr->type);
529519079203SIlya Dryomov 	u32 front_len = le32_to_cpu(hdr->front_len);
529619079203SIlya Dryomov 	u32 data_len = le32_to_cpu(hdr->data_len);
529719079203SIlya Dryomov 
529819079203SIlya Dryomov 	m = ceph_msg_new(type, front_len, GFP_NOIO, false);
529919079203SIlya Dryomov 	if (!m)
530019079203SIlya Dryomov 		return NULL;
530119079203SIlya Dryomov 
530219079203SIlya Dryomov 	if (data_len) {
530319079203SIlya Dryomov 		struct page **pages;
530419079203SIlya Dryomov 		struct ceph_osd_data osd_data;
530519079203SIlya Dryomov 
530619079203SIlya Dryomov 		pages = ceph_alloc_page_vector(calc_pages_for(0, data_len),
530719079203SIlya Dryomov 					       GFP_NOIO);
5308c22e853aSWei Yongjun 		if (IS_ERR(pages)) {
530919079203SIlya Dryomov 			ceph_msg_put(m);
531019079203SIlya Dryomov 			return NULL;
531119079203SIlya Dryomov 		}
531219079203SIlya Dryomov 
531319079203SIlya Dryomov 		ceph_osd_data_pages_init(&osd_data, pages, data_len, 0, false,
531419079203SIlya Dryomov 					 false);
531519079203SIlya Dryomov 		ceph_osdc_msg_data_add(m, &osd_data);
531619079203SIlya Dryomov 	}
531719079203SIlya Dryomov 
531819079203SIlya Dryomov 	return m;
531919079203SIlya Dryomov }
532019079203SIlya Dryomov 
53213d14c5d2SYehuda Sadeh static struct ceph_msg *alloc_msg(struct ceph_connection *con,
53223d14c5d2SYehuda Sadeh 				  struct ceph_msg_header *hdr,
53233d14c5d2SYehuda Sadeh 				  int *skip)
53243d14c5d2SYehuda Sadeh {
53253d14c5d2SYehuda Sadeh 	struct ceph_osd *osd = con->private;
53263d14c5d2SYehuda Sadeh 	int type = le16_to_cpu(hdr->type);
53273d14c5d2SYehuda Sadeh 
53281c20f2d2SAlex Elder 	*skip = 0;
53293d14c5d2SYehuda Sadeh 	switch (type) {
53303d14c5d2SYehuda Sadeh 	case CEPH_MSG_OSD_MAP:
5331a02a946dSIlya Dryomov 	case CEPH_MSG_OSD_BACKOFF:
5332a40c4f10SYehuda Sadeh 	case CEPH_MSG_WATCH_NOTIFY:
533319079203SIlya Dryomov 		return alloc_msg_with_page_vector(hdr);
53343d14c5d2SYehuda Sadeh 	case CEPH_MSG_OSD_OPREPLY:
53353d14c5d2SYehuda Sadeh 		return get_reply(con, hdr, skip);
53363d14c5d2SYehuda Sadeh 	default:
53375aea3dcdSIlya Dryomov 		pr_warn("%s osd%d unknown msg type %d, skipping\n", __func__,
53385aea3dcdSIlya Dryomov 			osd->o_osd, type);
53393d14c5d2SYehuda Sadeh 		*skip = 1;
53403d14c5d2SYehuda Sadeh 		return NULL;
53413d14c5d2SYehuda Sadeh 	}
53423d14c5d2SYehuda Sadeh }
53433d14c5d2SYehuda Sadeh 
53443d14c5d2SYehuda Sadeh /*
53453d14c5d2SYehuda Sadeh  * Wrappers to refcount containing ceph_osd struct
53463d14c5d2SYehuda Sadeh  */
53473d14c5d2SYehuda Sadeh static struct ceph_connection *get_osd_con(struct ceph_connection *con)
53483d14c5d2SYehuda Sadeh {
53493d14c5d2SYehuda Sadeh 	struct ceph_osd *osd = con->private;
53503d14c5d2SYehuda Sadeh 	if (get_osd(osd))
53513d14c5d2SYehuda Sadeh 		return con;
53523d14c5d2SYehuda Sadeh 	return NULL;
53533d14c5d2SYehuda Sadeh }
53543d14c5d2SYehuda Sadeh 
53553d14c5d2SYehuda Sadeh static void put_osd_con(struct ceph_connection *con)
53563d14c5d2SYehuda Sadeh {
53573d14c5d2SYehuda Sadeh 	struct ceph_osd *osd = con->private;
53583d14c5d2SYehuda Sadeh 	put_osd(osd);
53593d14c5d2SYehuda Sadeh }
53603d14c5d2SYehuda Sadeh 
53613d14c5d2SYehuda Sadeh /*
53623d14c5d2SYehuda Sadeh  * authentication
53633d14c5d2SYehuda Sadeh  */
5364a3530df3SAlex Elder /*
5365a3530df3SAlex Elder  * Note: returned pointer is the address of a structure that's
5366a3530df3SAlex Elder  * managed separately.  Caller must *not* attempt to free it.
5367a3530df3SAlex Elder  */
5368a3530df3SAlex Elder static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
53698f43fb53SAlex Elder 					int *proto, int force_new)
53703d14c5d2SYehuda Sadeh {
53713d14c5d2SYehuda Sadeh 	struct ceph_osd *o = con->private;
53723d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc = o->o_osdc;
53733d14c5d2SYehuda Sadeh 	struct ceph_auth_client *ac = osdc->client->monc.auth;
537474f1869fSAlex Elder 	struct ceph_auth_handshake *auth = &o->o_auth;
53753d14c5d2SYehuda Sadeh 
537674f1869fSAlex Elder 	if (force_new && auth->authorizer) {
53776c1ea260SIlya Dryomov 		ceph_auth_destroy_authorizer(auth->authorizer);
537874f1869fSAlex Elder 		auth->authorizer = NULL;
53793d14c5d2SYehuda Sadeh 	}
538027859f97SSage Weil 	if (!auth->authorizer) {
538127859f97SSage Weil 		int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
5382a3530df3SAlex Elder 						      auth);
53833d14c5d2SYehuda Sadeh 		if (ret)
5384a3530df3SAlex Elder 			return ERR_PTR(ret);
538527859f97SSage Weil 	} else {
538627859f97SSage Weil 		int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
53870bed9b5cSSage Weil 						     auth);
53880bed9b5cSSage Weil 		if (ret)
53890bed9b5cSSage Weil 			return ERR_PTR(ret);
53903d14c5d2SYehuda Sadeh 	}
53913d14c5d2SYehuda Sadeh 	*proto = ac->protocol;
539274f1869fSAlex Elder 
5393a3530df3SAlex Elder 	return auth;
53943d14c5d2SYehuda Sadeh }
53953d14c5d2SYehuda Sadeh 
53966daca13dSIlya Dryomov static int add_authorizer_challenge(struct ceph_connection *con,
53976daca13dSIlya Dryomov 				    void *challenge_buf, int challenge_buf_len)
53986daca13dSIlya Dryomov {
53996daca13dSIlya Dryomov 	struct ceph_osd *o = con->private;
54006daca13dSIlya Dryomov 	struct ceph_osd_client *osdc = o->o_osdc;
54016daca13dSIlya Dryomov 	struct ceph_auth_client *ac = osdc->client->monc.auth;
54026daca13dSIlya Dryomov 
54036daca13dSIlya Dryomov 	return ceph_auth_add_authorizer_challenge(ac, o->o_auth.authorizer,
54046daca13dSIlya Dryomov 					    challenge_buf, challenge_buf_len);
54056daca13dSIlya Dryomov }
54063d14c5d2SYehuda Sadeh 
54070dde5848SIlya Dryomov static int verify_authorizer_reply(struct ceph_connection *con)
54083d14c5d2SYehuda Sadeh {
54093d14c5d2SYehuda Sadeh 	struct ceph_osd *o = con->private;
54103d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc = o->o_osdc;
54113d14c5d2SYehuda Sadeh 	struct ceph_auth_client *ac = osdc->client->monc.auth;
54123d14c5d2SYehuda Sadeh 
54130dde5848SIlya Dryomov 	return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer);
54143d14c5d2SYehuda Sadeh }
54153d14c5d2SYehuda Sadeh 
54163d14c5d2SYehuda Sadeh static int invalidate_authorizer(struct ceph_connection *con)
54173d14c5d2SYehuda Sadeh {
54183d14c5d2SYehuda Sadeh 	struct ceph_osd *o = con->private;
54193d14c5d2SYehuda Sadeh 	struct ceph_osd_client *osdc = o->o_osdc;
54203d14c5d2SYehuda Sadeh 	struct ceph_auth_client *ac = osdc->client->monc.auth;
54213d14c5d2SYehuda Sadeh 
542227859f97SSage Weil 	ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
54233d14c5d2SYehuda Sadeh 	return ceph_monc_validate_auth(&osdc->client->monc);
54243d14c5d2SYehuda Sadeh }
54253d14c5d2SYehuda Sadeh 
54268cb441c0SIlya Dryomov static void osd_reencode_message(struct ceph_msg *msg)
54278cb441c0SIlya Dryomov {
5428914902afSIlya Dryomov 	int type = le16_to_cpu(msg->hdr.type);
5429914902afSIlya Dryomov 
5430914902afSIlya Dryomov 	if (type == CEPH_MSG_OSD_OP)
54318cb441c0SIlya Dryomov 		encode_request_finish(msg);
54328cb441c0SIlya Dryomov }
54338cb441c0SIlya Dryomov 
543479dbd1baSIlya Dryomov static int osd_sign_message(struct ceph_msg *msg)
543533d07337SYan, Zheng {
543679dbd1baSIlya Dryomov 	struct ceph_osd *o = msg->con->private;
543733d07337SYan, Zheng 	struct ceph_auth_handshake *auth = &o->o_auth;
543879dbd1baSIlya Dryomov 
543933d07337SYan, Zheng 	return ceph_auth_sign_message(auth, msg);
544033d07337SYan, Zheng }
544133d07337SYan, Zheng 
544279dbd1baSIlya Dryomov static int osd_check_message_signature(struct ceph_msg *msg)
544333d07337SYan, Zheng {
544479dbd1baSIlya Dryomov 	struct ceph_osd *o = msg->con->private;
544533d07337SYan, Zheng 	struct ceph_auth_handshake *auth = &o->o_auth;
544679dbd1baSIlya Dryomov 
544733d07337SYan, Zheng 	return ceph_auth_check_message_signature(auth, msg);
544833d07337SYan, Zheng }
544933d07337SYan, Zheng 
54503d14c5d2SYehuda Sadeh static const struct ceph_connection_operations osd_con_ops = {
54513d14c5d2SYehuda Sadeh 	.get = get_osd_con,
54523d14c5d2SYehuda Sadeh 	.put = put_osd_con,
54533d14c5d2SYehuda Sadeh 	.dispatch = dispatch,
54543d14c5d2SYehuda Sadeh 	.get_authorizer = get_authorizer,
54556daca13dSIlya Dryomov 	.add_authorizer_challenge = add_authorizer_challenge,
54563d14c5d2SYehuda Sadeh 	.verify_authorizer_reply = verify_authorizer_reply,
54573d14c5d2SYehuda Sadeh 	.invalidate_authorizer = invalidate_authorizer,
54583d14c5d2SYehuda Sadeh 	.alloc_msg = alloc_msg,
54598cb441c0SIlya Dryomov 	.reencode_message = osd_reencode_message,
546079dbd1baSIlya Dryomov 	.sign_message = osd_sign_message,
546179dbd1baSIlya Dryomov 	.check_message_signature = osd_check_message_signature,
54625aea3dcdSIlya Dryomov 	.fault = osd_fault,
54633d14c5d2SYehuda Sadeh };
5464