blob: b68b376d8c2f60b015cc6eae8dcae058a50dbc26 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alex Eldera4ce40a2013-04-05 01:27:12 -05002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/ceph/ceph_debug.h>
Sage Weilf24e9982009-10-06 11:31:10 -07004
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005#include <linux/module.h>
Sage Weilf24e9982009-10-06 11:31:10 -07006#include <linux/err.h>
7#include <linux/highmem.h>
8#include <linux/mm.h>
9#include <linux/pagemap.h>
10#include <linux/slab.h>
11#include <linux/uaccess.h>
Yehuda Sadeh68b44762010-04-06 15:01:27 -070012#ifdef CONFIG_BLOCK
13#include <linux/bio.h>
14#endif
Sage Weilf24e9982009-10-06 11:31:10 -070015
Ilya Dryomov8cb441c2017-06-15 16:30:54 +020016#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070017#include <linux/ceph/libceph.h>
18#include <linux/ceph/osd_client.h>
19#include <linux/ceph/messenger.h>
20#include <linux/ceph/decode.h>
21#include <linux/ceph/auth.h>
22#include <linux/ceph/pagelist.h>
Ilya Dryomov08c1ac52018-02-17 10:41:20 +010023#include <linux/ceph/striper.h>
Sage Weilf24e9982009-10-06 11:31:10 -070024
Sage Weilc16e7862010-03-01 13:02:00 -080025#define OSD_OPREPLY_FRONT_LEN 512
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -080026
Alex Elder5522ae02013-05-01 12:43:04 -050027static struct kmem_cache *ceph_osd_request_cache;
28
Tobias Klauser9e327892010-05-20 10:40:19 +020029static const struct ceph_connection_operations osd_con_ops;
Sage Weilf24e9982009-10-06 11:31:10 -070030
Sage Weilf24e9982009-10-06 11:31:10 -070031/*
32 * Implement client access to distributed object storage cluster.
33 *
34 * All data objects are stored within a cluster/cloud of OSDs, or
35 * "object storage devices." (Note that Ceph OSDs have _nothing_ to
36 * do with the T10 OSD extensions to SCSI.) Ceph OSDs are simply
37 * remote daemons serving up and coordinating consistent and safe
38 * access to storage.
39 *
40 * Cluster membership and the mapping of data objects onto storage devices
41 * are described by the osd map.
42 *
43 * We keep track of pending OSD requests (read, write), resubmit
44 * requests to different OSDs when the cluster topology/data layout
45 * change, or retry the affected requests when the communications
46 * channel with an OSD is reset.
47 */
48
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020049static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req);
50static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req);
Ilya Dryomov922dab62016-05-26 01:15:02 +020051static void link_linger(struct ceph_osd *osd,
52 struct ceph_osd_linger_request *lreq);
53static void unlink_linger(struct ceph_osd *osd,
54 struct ceph_osd_linger_request *lreq);
Ilya Dryomova02a9462017-06-19 12:18:05 +020055static void clear_backoffs(struct ceph_osd *osd);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020056
57#if 1
58static inline bool rwsem_is_wrlocked(struct rw_semaphore *sem)
59{
60 bool wrlocked = true;
61
62 if (unlikely(down_read_trylock(sem))) {
63 wrlocked = false;
64 up_read(sem);
65 }
66
67 return wrlocked;
68}
69static inline void verify_osdc_locked(struct ceph_osd_client *osdc)
70{
71 WARN_ON(!rwsem_is_locked(&osdc->lock));
72}
73static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc)
74{
75 WARN_ON(!rwsem_is_wrlocked(&osdc->lock));
76}
77static inline void verify_osd_locked(struct ceph_osd *osd)
78{
79 struct ceph_osd_client *osdc = osd->o_osdc;
80
81 WARN_ON(!(mutex_is_locked(&osd->lock) &&
82 rwsem_is_locked(&osdc->lock)) &&
83 !rwsem_is_wrlocked(&osdc->lock));
84}
Ilya Dryomov922dab62016-05-26 01:15:02 +020085static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq)
86{
87 WARN_ON(!mutex_is_locked(&lreq->lock));
88}
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020089#else
90static inline void verify_osdc_locked(struct ceph_osd_client *osdc) { }
91static inline void verify_osdc_wrlocked(struct ceph_osd_client *osdc) { }
92static inline void verify_osd_locked(struct ceph_osd *osd) { }
Ilya Dryomov922dab62016-05-26 01:15:02 +020093static inline void verify_lreq_locked(struct ceph_osd_linger_request *lreq) { }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +020094#endif
95
Sage Weilf24e9982009-10-06 11:31:10 -070096/*
97 * calculate the mapping of a file extent onto an object, and fill out the
98 * request accordingly. shorten extent as necessary if it crosses an
99 * object boundary.
100 *
101 * fill osd op in request message.
102 */
Alex Elderdbe0fc42013-02-15 22:10:17 -0600103static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
Alex Eldera19dadf2013-03-13 20:50:01 -0500104 u64 *objnum, u64 *objoff, u64 *objlen)
Sage Weilf24e9982009-10-06 11:31:10 -0700105{
Alex Elder60e56f12013-02-15 11:42:29 -0600106 u64 orig_len = *plen;
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100107 u32 xlen;
Sage Weilf24e9982009-10-06 11:31:10 -0700108
Alex Elder60e56f12013-02-15 11:42:29 -0600109 /* object extent? */
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100110 ceph_calc_file_object_mapping(layout, off, orig_len, objnum,
111 objoff, &xlen);
112 *objlen = xlen;
Alex Elder75d1c942013-03-13 20:50:00 -0500113 if (*objlen < orig_len) {
114 *plen = *objlen;
Alex Elder60e56f12013-02-15 11:42:29 -0600115 dout(" skipping last %llu, final file extent %llu~%llu\n",
116 orig_len - *plen, off, *plen);
117 }
118
Alex Elder75d1c942013-03-13 20:50:00 -0500119 dout("calc_layout objnum=%llx %llu~%llu\n", *objnum, *objoff, *objlen);
Alex Elder3ff5f382013-02-15 22:10:17 -0600120 return 0;
Sage Weilf24e9982009-10-06 11:31:10 -0700121}
122
Alex Elderc54d47b2013-04-03 01:28:57 -0500123static void ceph_osd_data_init(struct ceph_osd_data *osd_data)
124{
125 memset(osd_data, 0, sizeof (*osd_data));
126 osd_data->type = CEPH_OSD_DATA_TYPE_NONE;
127}
128
Ilya Dryomov894868332018-09-28 16:02:53 +0200129/*
130 * Consumes @pages if @own_pages is true.
131 */
Alex Eldera4ce40a2013-04-05 01:27:12 -0500132static void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
Alex Elder43bfe5d2013-04-03 01:28:57 -0500133 struct page **pages, u64 length, u32 alignment,
134 bool pages_from_pool, bool own_pages)
135{
136 osd_data->type = CEPH_OSD_DATA_TYPE_PAGES;
137 osd_data->pages = pages;
138 osd_data->length = length;
139 osd_data->alignment = alignment;
140 osd_data->pages_from_pool = pages_from_pool;
141 osd_data->own_pages = own_pages;
142}
Alex Elder43bfe5d2013-04-03 01:28:57 -0500143
Ilya Dryomov894868332018-09-28 16:02:53 +0200144/*
145 * Consumes a ref on @pagelist.
146 */
Alex Eldera4ce40a2013-04-05 01:27:12 -0500147static void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
Alex Elder43bfe5d2013-04-03 01:28:57 -0500148 struct ceph_pagelist *pagelist)
149{
150 osd_data->type = CEPH_OSD_DATA_TYPE_PAGELIST;
151 osd_data->pagelist = pagelist;
152}
Alex Elder43bfe5d2013-04-03 01:28:57 -0500153
154#ifdef CONFIG_BLOCK
Alex Eldera4ce40a2013-04-05 01:27:12 -0500155static void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
Ilya Dryomov5359a172018-01-20 10:30:10 +0100156 struct ceph_bio_iter *bio_pos,
157 u32 bio_length)
Alex Elder43bfe5d2013-04-03 01:28:57 -0500158{
159 osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
Ilya Dryomov5359a172018-01-20 10:30:10 +0100160 osd_data->bio_pos = *bio_pos;
Alex Elder43bfe5d2013-04-03 01:28:57 -0500161 osd_data->bio_length = bio_length;
162}
Alex Elder43bfe5d2013-04-03 01:28:57 -0500163#endif /* CONFIG_BLOCK */
164
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100165static void ceph_osd_data_bvecs_init(struct ceph_osd_data *osd_data,
Ilya Dryomov0010f702018-05-04 16:57:30 +0200166 struct ceph_bvec_iter *bvec_pos,
167 u32 num_bvecs)
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100168{
169 osd_data->type = CEPH_OSD_DATA_TYPE_BVECS;
170 osd_data->bvec_pos = *bvec_pos;
Ilya Dryomov0010f702018-05-04 16:57:30 +0200171 osd_data->num_bvecs = num_bvecs;
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100172}
173
Alex Elder49719772013-02-11 12:33:24 -0600174static struct ceph_osd_data *
175osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which)
176{
177 BUG_ON(which >= osd_req->r_num_ops);
178
179 return &osd_req->r_ops[which].raw_data_in;
180}
181
Alex Eldera4ce40a2013-04-05 01:27:12 -0500182struct ceph_osd_data *
183osd_req_op_extent_osd_data(struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500184 unsigned int which)
Alex Eldera4ce40a2013-04-05 01:27:12 -0500185{
Alex Elder863c7eb2013-04-15 14:50:36 -0500186 return osd_req_op_data(osd_req, which, extent, osd_data);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500187}
188EXPORT_SYMBOL(osd_req_op_extent_osd_data);
189
Alex Elder49719772013-02-11 12:33:24 -0600190void osd_req_op_raw_data_in_pages(struct ceph_osd_request *osd_req,
191 unsigned int which, struct page **pages,
192 u64 length, u32 alignment,
193 bool pages_from_pool, bool own_pages)
194{
195 struct ceph_osd_data *osd_data;
196
197 osd_data = osd_req_op_raw_data_in(osd_req, which);
198 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
199 pages_from_pool, own_pages);
200}
201EXPORT_SYMBOL(osd_req_op_raw_data_in_pages);
202
Alex Eldera4ce40a2013-04-05 01:27:12 -0500203void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500204 unsigned int which, struct page **pages,
205 u64 length, u32 alignment,
Alex Eldera4ce40a2013-04-05 01:27:12 -0500206 bool pages_from_pool, bool own_pages)
207{
208 struct ceph_osd_data *osd_data;
209
Alex Elder863c7eb2013-04-15 14:50:36 -0500210 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500211 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
212 pages_from_pool, own_pages);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500213}
214EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages);
215
216void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *osd_req,
Alex Elder406e2c92013-04-15 14:50:36 -0500217 unsigned int which, struct ceph_pagelist *pagelist)
Alex Eldera4ce40a2013-04-05 01:27:12 -0500218{
219 struct ceph_osd_data *osd_data;
220
Alex Elder863c7eb2013-04-15 14:50:36 -0500221 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500222 ceph_osd_data_pagelist_init(osd_data, pagelist);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500223}
224EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist);
225
226#ifdef CONFIG_BLOCK
227void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
Ilya Dryomov5359a172018-01-20 10:30:10 +0100228 unsigned int which,
229 struct ceph_bio_iter *bio_pos,
230 u32 bio_length)
Alex Eldera4ce40a2013-04-05 01:27:12 -0500231{
232 struct ceph_osd_data *osd_data;
Alex Elder863c7eb2013-04-15 14:50:36 -0500233
234 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
Ilya Dryomov5359a172018-01-20 10:30:10 +0100235 ceph_osd_data_bio_init(osd_data, bio_pos, bio_length);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500236}
237EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio);
238#endif /* CONFIG_BLOCK */
239
Ilya Dryomov0010f702018-05-04 16:57:30 +0200240void osd_req_op_extent_osd_data_bvecs(struct ceph_osd_request *osd_req,
241 unsigned int which,
242 struct bio_vec *bvecs, u32 num_bvecs,
243 u32 bytes)
244{
245 struct ceph_osd_data *osd_data;
246 struct ceph_bvec_iter it = {
247 .bvecs = bvecs,
248 .iter = { .bi_size = bytes },
249 };
250
251 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
252 ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
253}
254EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvecs);
255
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100256void osd_req_op_extent_osd_data_bvec_pos(struct ceph_osd_request *osd_req,
257 unsigned int which,
258 struct ceph_bvec_iter *bvec_pos)
259{
260 struct ceph_osd_data *osd_data;
261
262 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
Ilya Dryomov0010f702018-05-04 16:57:30 +0200263 ceph_osd_data_bvecs_init(osd_data, bvec_pos, 0);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100264}
265EXPORT_SYMBOL(osd_req_op_extent_osd_data_bvec_pos);
266
Alex Eldera4ce40a2013-04-05 01:27:12 -0500267static void osd_req_op_cls_request_info_pagelist(
268 struct ceph_osd_request *osd_req,
269 unsigned int which, struct ceph_pagelist *pagelist)
270{
271 struct ceph_osd_data *osd_data;
272
Alex Elder863c7eb2013-04-15 14:50:36 -0500273 osd_data = osd_req_op_data(osd_req, which, cls, request_info);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500274 ceph_osd_data_pagelist_init(osd_data, pagelist);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500275}
276
Alex Elder04017e22013-04-05 14:46:02 -0500277void osd_req_op_cls_request_data_pagelist(
278 struct ceph_osd_request *osd_req,
279 unsigned int which, struct ceph_pagelist *pagelist)
280{
281 struct ceph_osd_data *osd_data;
282
Alex Elder863c7eb2013-04-15 14:50:36 -0500283 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
Alex Elder04017e22013-04-05 14:46:02 -0500284 ceph_osd_data_pagelist_init(osd_data, pagelist);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200285 osd_req->r_ops[which].cls.indata_len += pagelist->length;
286 osd_req->r_ops[which].indata_len += pagelist->length;
Alex Elder04017e22013-04-05 14:46:02 -0500287}
288EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist);
289
Alex Elder6c57b552013-04-19 15:34:49 -0500290void osd_req_op_cls_request_data_pages(struct ceph_osd_request *osd_req,
291 unsigned int which, struct page **pages, u64 length,
292 u32 alignment, bool pages_from_pool, bool own_pages)
293{
294 struct ceph_osd_data *osd_data;
295
296 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
297 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
298 pages_from_pool, own_pages);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200299 osd_req->r_ops[which].cls.indata_len += length;
300 osd_req->r_ops[which].indata_len += length;
Alex Elder6c57b552013-04-19 15:34:49 -0500301}
302EXPORT_SYMBOL(osd_req_op_cls_request_data_pages);
303
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100304void osd_req_op_cls_request_data_bvecs(struct ceph_osd_request *osd_req,
305 unsigned int which,
Ilya Dryomov0010f702018-05-04 16:57:30 +0200306 struct bio_vec *bvecs, u32 num_bvecs,
307 u32 bytes)
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100308{
309 struct ceph_osd_data *osd_data;
310 struct ceph_bvec_iter it = {
311 .bvecs = bvecs,
312 .iter = { .bi_size = bytes },
313 };
314
315 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
Ilya Dryomov0010f702018-05-04 16:57:30 +0200316 ceph_osd_data_bvecs_init(osd_data, &it, num_bvecs);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100317 osd_req->r_ops[which].cls.indata_len += bytes;
318 osd_req->r_ops[which].indata_len += bytes;
319}
320EXPORT_SYMBOL(osd_req_op_cls_request_data_bvecs);
321
Alex Eldera4ce40a2013-04-05 01:27:12 -0500322void osd_req_op_cls_response_data_pages(struct ceph_osd_request *osd_req,
323 unsigned int which, struct page **pages, u64 length,
324 u32 alignment, bool pages_from_pool, bool own_pages)
325{
326 struct ceph_osd_data *osd_data;
327
Alex Elder863c7eb2013-04-15 14:50:36 -0500328 osd_data = osd_req_op_data(osd_req, which, cls, response_data);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500329 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
330 pages_from_pool, own_pages);
Alex Eldera4ce40a2013-04-05 01:27:12 -0500331}
332EXPORT_SYMBOL(osd_req_op_cls_response_data_pages);
333
Alex Elder23c08a9cb2013-04-03 01:28:58 -0500334static u64 ceph_osd_data_length(struct ceph_osd_data *osd_data)
335{
336 switch (osd_data->type) {
337 case CEPH_OSD_DATA_TYPE_NONE:
338 return 0;
339 case CEPH_OSD_DATA_TYPE_PAGES:
340 return osd_data->length;
341 case CEPH_OSD_DATA_TYPE_PAGELIST:
342 return (u64)osd_data->pagelist->length;
343#ifdef CONFIG_BLOCK
344 case CEPH_OSD_DATA_TYPE_BIO:
345 return (u64)osd_data->bio_length;
346#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100347 case CEPH_OSD_DATA_TYPE_BVECS:
348 return osd_data->bvec_pos.iter.bi_size;
Alex Elder23c08a9cb2013-04-03 01:28:58 -0500349 default:
350 WARN(true, "unrecognized data type %d\n", (int)osd_data->type);
351 return 0;
352 }
353}
354
Alex Elderc54d47b2013-04-03 01:28:57 -0500355static void ceph_osd_data_release(struct ceph_osd_data *osd_data)
356{
Alex Elder54764922013-04-05 01:27:12 -0500357 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES && osd_data->own_pages) {
Alex Elderc54d47b2013-04-03 01:28:57 -0500358 int num_pages;
359
360 num_pages = calc_pages_for((u64)osd_data->alignment,
361 (u64)osd_data->length);
362 ceph_release_page_vector(osd_data->pages, num_pages);
Ilya Dryomov894868332018-09-28 16:02:53 +0200363 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
364 ceph_pagelist_release(osd_data->pagelist);
Alex Elderc54d47b2013-04-03 01:28:57 -0500365 }
Alex Elder54764922013-04-05 01:27:12 -0500366 ceph_osd_data_init(osd_data);
367}
368
369static void osd_req_op_data_release(struct ceph_osd_request *osd_req,
370 unsigned int which)
371{
372 struct ceph_osd_req_op *op;
373
374 BUG_ON(which >= osd_req->r_num_ops);
375 op = &osd_req->r_ops[which];
376
377 switch (op->op) {
378 case CEPH_OSD_OP_READ:
379 case CEPH_OSD_OP_WRITE:
Ilya Dryomove30b7572015-10-07 17:27:17 +0200380 case CEPH_OSD_OP_WRITEFULL:
Alex Elder54764922013-04-05 01:27:12 -0500381 ceph_osd_data_release(&op->extent.osd_data);
382 break;
383 case CEPH_OSD_OP_CALL:
384 ceph_osd_data_release(&op->cls.request_info);
Alex Elder04017e22013-04-05 14:46:02 -0500385 ceph_osd_data_release(&op->cls.request_data);
Alex Elder54764922013-04-05 01:27:12 -0500386 ceph_osd_data_release(&op->cls.response_data);
387 break;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800388 case CEPH_OSD_OP_SETXATTR:
389 case CEPH_OSD_OP_CMPXATTR:
390 ceph_osd_data_release(&op->xattr.osd_data);
391 break;
Yan, Zheng66ba6092015-04-27 11:02:35 +0800392 case CEPH_OSD_OP_STAT:
393 ceph_osd_data_release(&op->raw_data_in);
394 break;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200395 case CEPH_OSD_OP_NOTIFY_ACK:
396 ceph_osd_data_release(&op->notify_ack.request_data);
397 break;
Ilya Dryomov19079202016-04-28 16:07:27 +0200398 case CEPH_OSD_OP_NOTIFY:
399 ceph_osd_data_release(&op->notify.request_data);
400 ceph_osd_data_release(&op->notify.response_data);
401 break;
Douglas Fullera4ed38d2015-07-17 13:18:07 -0700402 case CEPH_OSD_OP_LIST_WATCHERS:
403 ceph_osd_data_release(&op->list_watchers.response_data);
404 break;
Luis Henriques78beb0f2020-01-08 10:03:53 +0000405 case CEPH_OSD_OP_COPY_FROM2:
Luis Henriques23ddf9b2018-10-15 16:45:58 +0100406 ceph_osd_data_release(&op->copy_from.osd_data);
407 break;
Alex Elder54764922013-04-05 01:27:12 -0500408 default:
409 break;
410 }
Alex Elderc54d47b2013-04-03 01:28:57 -0500411}
412
Sage Weilf24e9982009-10-06 11:31:10 -0700413/*
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200414 * Assumes @t is zero-initialized.
415 */
416static void target_init(struct ceph_osd_request_target *t)
417{
418 ceph_oid_init(&t->base_oid);
419 ceph_oloc_init(&t->base_oloc);
420 ceph_oid_init(&t->target_oid);
421 ceph_oloc_init(&t->target_oloc);
422
423 ceph_osds_init(&t->acting);
424 ceph_osds_init(&t->up);
425 t->size = -1;
426 t->min_size = -1;
427
428 t->osd = CEPH_HOMELESS_OSD;
429}
430
Ilya Dryomov922dab62016-05-26 01:15:02 +0200431static void target_copy(struct ceph_osd_request_target *dest,
432 const struct ceph_osd_request_target *src)
433{
434 ceph_oid_copy(&dest->base_oid, &src->base_oid);
435 ceph_oloc_copy(&dest->base_oloc, &src->base_oloc);
436 ceph_oid_copy(&dest->target_oid, &src->target_oid);
437 ceph_oloc_copy(&dest->target_oloc, &src->target_oloc);
438
439 dest->pgid = src->pgid; /* struct */
Ilya Dryomovdc98ff72017-06-15 16:30:53 +0200440 dest->spgid = src->spgid; /* struct */
Ilya Dryomov922dab62016-05-26 01:15:02 +0200441 dest->pg_num = src->pg_num;
442 dest->pg_num_mask = src->pg_num_mask;
443 ceph_osds_copy(&dest->acting, &src->acting);
444 ceph_osds_copy(&dest->up, &src->up);
445 dest->size = src->size;
446 dest->min_size = src->min_size;
447 dest->sort_bitwise = src->sort_bitwise;
448
449 dest->flags = src->flags;
450 dest->paused = src->paused;
451
Ilya Dryomov04c7d782017-06-15 16:30:55 +0200452 dest->epoch = src->epoch;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +0200453 dest->last_force_resend = src->last_force_resend;
454
Ilya Dryomov922dab62016-05-26 01:15:02 +0200455 dest->osd = src->osd;
456}
457
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200458static void target_destroy(struct ceph_osd_request_target *t)
459{
460 ceph_oid_destroy(&t->base_oid);
Yan, Zheng30c156d2016-02-14 11:24:31 +0800461 ceph_oloc_destroy(&t->base_oloc);
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200462 ceph_oid_destroy(&t->target_oid);
Yan, Zheng30c156d2016-02-14 11:24:31 +0800463 ceph_oloc_destroy(&t->target_oloc);
Ilya Dryomov63244fa2016-04-28 16:07:23 +0200464}
465
466/*
Sage Weilf24e9982009-10-06 11:31:10 -0700467 * requests
468 */
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200469static void request_release_checks(struct ceph_osd_request *req)
470{
471 WARN_ON(!RB_EMPTY_NODE(&req->r_node));
Ilya Dryomov46092452016-04-28 16:07:27 +0200472 WARN_ON(!RB_EMPTY_NODE(&req->r_mc_node));
Ilya Dryomov94e85772019-07-08 12:50:09 +0200473 WARN_ON(!list_empty(&req->r_private_item));
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200474 WARN_ON(req->r_osd);
475}
476
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400477static void ceph_osdc_release_request(struct kref *kref)
Sage Weilf24e9982009-10-06 11:31:10 -0700478{
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400479 struct ceph_osd_request *req = container_of(kref,
480 struct ceph_osd_request, r_kref);
Alex Elder54764922013-04-05 01:27:12 -0500481 unsigned int which;
Sage Weil415e49a2009-12-07 13:37:03 -0800482
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400483 dout("%s %p (r_request %p r_reply %p)\n", __func__, req,
484 req->r_request, req->r_reply);
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200485 request_release_checks(req);
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400486
Sage Weil415e49a2009-12-07 13:37:03 -0800487 if (req->r_request)
488 ceph_msg_put(req->r_request);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +0200489 if (req->r_reply)
Alex Elderab8cb342012-06-04 14:43:32 -0500490 ceph_msg_put(req->r_reply);
Alex Elder0fff87e2013-02-14 12:16:43 -0600491
Alex Elder54764922013-04-05 01:27:12 -0500492 for (which = 0; which < req->r_num_ops; which++)
493 osd_req_op_data_release(req, which);
Alex Elder0fff87e2013-02-14 12:16:43 -0600494
Ilya Dryomova66dd382016-04-28 16:07:23 +0200495 target_destroy(&req->r_t);
Sage Weil415e49a2009-12-07 13:37:03 -0800496 ceph_put_snap_context(req->r_snapc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200497
Sage Weil415e49a2009-12-07 13:37:03 -0800498 if (req->r_mempool)
499 mempool_free(req, req->r_osdc->req_mempool);
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100500 else if (req->r_num_ops <= CEPH_OSD_SLAB_OPS)
Alex Elder5522ae02013-05-01 12:43:04 -0500501 kmem_cache_free(ceph_osd_request_cache, req);
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100502 else
503 kfree(req);
Sage Weilf24e9982009-10-06 11:31:10 -0700504}
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400505
506void ceph_osdc_get_request(struct ceph_osd_request *req)
507{
508 dout("%s %p (was %d)\n", __func__, req,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100509 kref_read(&req->r_kref));
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400510 kref_get(&req->r_kref);
511}
512EXPORT_SYMBOL(ceph_osdc_get_request);
513
514void ceph_osdc_put_request(struct ceph_osd_request *req)
515{
Ilya Dryomov3ed97d62016-04-26 15:05:29 +0200516 if (req) {
517 dout("%s %p (was %d)\n", __func__, req,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100518 kref_read(&req->r_kref));
Ilya Dryomov3ed97d62016-04-26 15:05:29 +0200519 kref_put(&req->r_kref, ceph_osdc_release_request);
520 }
Ilya Dryomov9e94af22014-06-20 14:14:42 +0400521}
522EXPORT_SYMBOL(ceph_osdc_put_request);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700523
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200524static void request_init(struct ceph_osd_request *req)
525{
526 /* req only, each op is zeroed in _osd_req_op_init() */
527 memset(req, 0, sizeof(*req));
528
529 kref_init(&req->r_kref);
530 init_completion(&req->r_completion);
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200531 RB_CLEAR_NODE(&req->r_node);
Ilya Dryomov46092452016-04-28 16:07:27 +0200532 RB_CLEAR_NODE(&req->r_mc_node);
Ilya Dryomov94e85772019-07-08 12:50:09 +0200533 INIT_LIST_HEAD(&req->r_private_item);
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200534
535 target_init(&req->r_t);
536}
537
Ilya Dryomov922dab62016-05-26 01:15:02 +0200538/*
539 * This is ugly, but it allows us to reuse linger registration and ping
540 * requests, keeping the structure of the code around send_linger{_ping}()
541 * reasonable. Setting up a min_nr=2 mempool for each linger request
542 * and dealing with copying ops (this blasts req only, watch op remains
543 * intact) isn't any better.
544 */
545static void request_reinit(struct ceph_osd_request *req)
546{
547 struct ceph_osd_client *osdc = req->r_osdc;
548 bool mempool = req->r_mempool;
549 unsigned int num_ops = req->r_num_ops;
550 u64 snapid = req->r_snapid;
551 struct ceph_snap_context *snapc = req->r_snapc;
552 bool linger = req->r_linger;
553 struct ceph_msg *request_msg = req->r_request;
554 struct ceph_msg *reply_msg = req->r_reply;
555
556 dout("%s req %p\n", __func__, req);
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100557 WARN_ON(kref_read(&req->r_kref) != 1);
Ilya Dryomov922dab62016-05-26 01:15:02 +0200558 request_release_checks(req);
559
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100560 WARN_ON(kref_read(&request_msg->kref) != 1);
561 WARN_ON(kref_read(&reply_msg->kref) != 1);
Ilya Dryomov922dab62016-05-26 01:15:02 +0200562 target_destroy(&req->r_t);
563
564 request_init(req);
565 req->r_osdc = osdc;
566 req->r_mempool = mempool;
567 req->r_num_ops = num_ops;
568 req->r_snapid = snapid;
569 req->r_snapc = snapc;
570 req->r_linger = linger;
571 req->r_request = request_msg;
572 req->r_reply = reply_msg;
573}
574
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700575struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700576 struct ceph_snap_context *snapc,
Sage Weil1b83bef2013-02-25 16:11:12 -0800577 unsigned int num_ops,
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700578 bool use_mempool,
Alex Elder54a54002012-11-13 21:11:15 -0600579 gfp_t gfp_flags)
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700580{
581 struct ceph_osd_request *req;
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700582
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700583 if (use_mempool) {
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100584 BUG_ON(num_ops > CEPH_OSD_SLAB_OPS);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700585 req = mempool_alloc(osdc->req_mempool, gfp_flags);
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100586 } else if (num_ops <= CEPH_OSD_SLAB_OPS) {
587 req = kmem_cache_alloc(ceph_osd_request_cache, gfp_flags);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700588 } else {
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100589 BUG_ON(num_ops > CEPH_OSD_MAX_OPS);
Kees Cookacafe7e2018-05-08 13:45:50 -0700590 req = kmalloc(struct_size(req, r_ops, num_ops), gfp_flags);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700591 }
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100592 if (unlikely(!req))
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700593 return NULL;
594
Ilya Dryomov3540bfd2016-04-28 16:07:26 +0200595 request_init(req);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700596 req->r_osdc = osdc;
597 req->r_mempool = use_mempool;
Alex Elder79528732013-04-03 21:32:51 -0500598 req->r_num_ops = num_ops;
Ilya Dryomov84127282016-04-26 15:39:47 +0200599 req->r_snapid = CEPH_NOSNAP;
600 req->r_snapc = ceph_get_snap_context(snapc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700601
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200602 dout("%s req %p\n", __func__, req);
603 return req;
604}
605EXPORT_SYMBOL(ceph_osdc_alloc_request);
Ilya Dryomov3f1af422016-02-09 17:50:15 +0100606
Ilya Dryomov2e59ffd2017-06-15 16:30:53 +0200607static int ceph_oloc_encoding_size(const struct ceph_object_locator *oloc)
Yan, Zheng30c156d2016-02-14 11:24:31 +0800608{
609 return 8 + 4 + 4 + 4 + (oloc->pool_ns ? oloc->pool_ns->len : 0);
610}
611
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200612static int __ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp,
613 int num_request_data_items,
614 int num_reply_data_items)
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200615{
616 struct ceph_osd_client *osdc = req->r_osdc;
617 struct ceph_msg *msg;
618 int msg_size;
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700619
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200620 WARN_ON(req->r_request || req->r_reply);
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200621 WARN_ON(ceph_oid_empty(&req->r_base_oid));
Yan, Zheng30c156d2016-02-14 11:24:31 +0800622 WARN_ON(ceph_oloc_empty(&req->r_base_oloc));
Ilya Dryomovd30291b2016-04-29 19:54:20 +0200623
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200624 /* create request message */
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200625 msg_size = CEPH_ENCODING_START_BLK_LEN +
626 CEPH_PGID_ENCODING_LEN + 1; /* spgid */
627 msg_size += 4 + 4 + 4; /* hash, osdmap_epoch, flags */
628 msg_size += CEPH_ENCODING_START_BLK_LEN +
629 sizeof(struct ceph_osd_reqid); /* reqid */
630 msg_size += sizeof(struct ceph_blkin_trace_info); /* trace */
631 msg_size += 4 + sizeof(struct ceph_timespec); /* client_inc, mtime */
Yan, Zheng30c156d2016-02-14 11:24:31 +0800632 msg_size += CEPH_ENCODING_START_BLK_LEN +
633 ceph_oloc_encoding_size(&req->r_base_oloc); /* oloc */
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200634 msg_size += 4 + req->r_base_oid.name_len; /* oid */
635 msg_size += 2 + req->r_num_ops * sizeof(struct ceph_osd_op);
Ilya Dryomovae458f52016-02-11 13:09:15 +0100636 msg_size += 8; /* snapid */
637 msg_size += 8; /* snap_seq */
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200638 msg_size += 4 + 8 * (req->r_snapc ? req->r_snapc->num_snaps : 0);
Ilya Dryomov8cb441c2017-06-15 16:30:54 +0200639 msg_size += 4 + 8; /* retry_attempt, features */
Ilya Dryomovae458f52016-02-11 13:09:15 +0100640
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200641 if (req->r_mempool)
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200642 msg = ceph_msgpool_get(&osdc->msgpool_op, msg_size,
643 num_request_data_items);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700644 else
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200645 msg = ceph_msg_new2(CEPH_MSG_OSD_OP, msg_size,
646 num_request_data_items, gfp, true);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200647 if (!msg)
648 return -ENOMEM;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700649
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700650 memset(msg->front.iov_base, 0, msg->front.iov_len);
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700651 req->r_request = msg;
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700652
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200653 /* create reply message */
654 msg_size = OSD_OPREPLY_FRONT_LEN;
Ilya Dryomov711da552016-04-27 18:32:56 +0200655 msg_size += req->r_base_oid.name_len;
656 msg_size += req->r_num_ops * sizeof(struct ceph_osd_op);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200657
658 if (req->r_mempool)
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200659 msg = ceph_msgpool_get(&osdc->msgpool_op_reply, msg_size,
660 num_reply_data_items);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200661 else
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200662 msg = ceph_msg_new2(CEPH_MSG_OSD_OPREPLY, msg_size,
663 num_reply_data_items, gfp, true);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +0200664 if (!msg)
665 return -ENOMEM;
666
667 req->r_reply = msg;
668
669 return 0;
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -0700670}
671
Alex Eldera8dd0a32013-03-13 20:50:00 -0500672static bool osd_req_opcode_valid(u16 opcode)
673{
674 switch (opcode) {
Ilya Dryomov70b5bfa2014-10-02 17:22:29 +0400675#define GENERATE_CASE(op, opcode, str) case CEPH_OSD_OP_##op: return true;
676__CEPH_FORALL_OSD_OPS(GENERATE_CASE)
677#undef GENERATE_CASE
Alex Eldera8dd0a32013-03-13 20:50:00 -0500678 default:
679 return false;
680 }
681}
682
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200683static void get_num_data_items(struct ceph_osd_request *req,
684 int *num_request_data_items,
685 int *num_reply_data_items)
686{
687 struct ceph_osd_req_op *op;
688
689 *num_request_data_items = 0;
690 *num_reply_data_items = 0;
691
692 for (op = req->r_ops; op != &req->r_ops[req->r_num_ops]; op++) {
693 switch (op->op) {
694 /* request */
695 case CEPH_OSD_OP_WRITE:
696 case CEPH_OSD_OP_WRITEFULL:
697 case CEPH_OSD_OP_SETXATTR:
698 case CEPH_OSD_OP_CMPXATTR:
699 case CEPH_OSD_OP_NOTIFY_ACK:
Luis Henriques78beb0f2020-01-08 10:03:53 +0000700 case CEPH_OSD_OP_COPY_FROM2:
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200701 *num_request_data_items += 1;
702 break;
703
704 /* reply */
705 case CEPH_OSD_OP_STAT:
706 case CEPH_OSD_OP_READ:
707 case CEPH_OSD_OP_LIST_WATCHERS:
708 *num_reply_data_items += 1;
709 break;
710
711 /* both */
712 case CEPH_OSD_OP_NOTIFY:
713 *num_request_data_items += 1;
714 *num_reply_data_items += 1;
715 break;
716 case CEPH_OSD_OP_CALL:
717 *num_request_data_items += 2;
718 *num_reply_data_items += 1;
719 break;
720
721 default:
722 WARN_ON(!osd_req_opcode_valid(op->op));
723 break;
724 }
725 }
726}
727
728/*
729 * oid, oloc and OSD op opcode(s) must be filled in before this function
730 * is called.
731 */
732int ceph_osdc_alloc_messages(struct ceph_osd_request *req, gfp_t gfp)
733{
734 int num_request_data_items, num_reply_data_items;
735
736 get_num_data_items(req, &num_request_data_items, &num_reply_data_items);
737 return __ceph_osdc_alloc_messages(req, gfp, num_request_data_items,
738 num_reply_data_items);
739}
740EXPORT_SYMBOL(ceph_osdc_alloc_messages);
741
Alex Elder33803f32013-03-13 20:50:00 -0500742/*
743 * This is an osd op init function for opcodes that have no data or
744 * other information associated with them. It also serves as a
745 * common init routine for all the other init functions, below.
746 */
Alex Elderc99d2d42013-04-05 01:27:11 -0500747static struct ceph_osd_req_op *
Alex Elder49719772013-02-11 12:33:24 -0600748_osd_req_op_init(struct ceph_osd_request *osd_req, unsigned int which,
Yan, Zheng144cba12015-04-27 11:09:54 +0800749 u16 opcode, u32 flags)
Alex Elder33803f32013-03-13 20:50:00 -0500750{
Alex Elderc99d2d42013-04-05 01:27:11 -0500751 struct ceph_osd_req_op *op;
752
753 BUG_ON(which >= osd_req->r_num_ops);
Alex Elder33803f32013-03-13 20:50:00 -0500754 BUG_ON(!osd_req_opcode_valid(opcode));
755
Alex Elderc99d2d42013-04-05 01:27:11 -0500756 op = &osd_req->r_ops[which];
Alex Elder33803f32013-03-13 20:50:00 -0500757 memset(op, 0, sizeof (*op));
Alex Elder33803f32013-03-13 20:50:00 -0500758 op->op = opcode;
Yan, Zheng144cba12015-04-27 11:09:54 +0800759 op->flags = flags;
Alex Elderc99d2d42013-04-05 01:27:11 -0500760
761 return op;
Alex Elder33803f32013-03-13 20:50:00 -0500762}
763
Alex Elder49719772013-02-11 12:33:24 -0600764void osd_req_op_init(struct ceph_osd_request *osd_req,
Yan, Zheng144cba12015-04-27 11:09:54 +0800765 unsigned int which, u16 opcode, u32 flags)
Alex Elder49719772013-02-11 12:33:24 -0600766{
Yan, Zheng144cba12015-04-27 11:09:54 +0800767 (void)_osd_req_op_init(osd_req, which, opcode, flags);
Alex Elder49719772013-02-11 12:33:24 -0600768}
769EXPORT_SYMBOL(osd_req_op_init);
770
Alex Elderc99d2d42013-04-05 01:27:11 -0500771void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
772 unsigned int which, u16 opcode,
Alex Elder33803f32013-03-13 20:50:00 -0500773 u64 offset, u64 length,
774 u64 truncate_size, u32 truncate_seq)
775{
Yan, Zheng144cba12015-04-27 11:09:54 +0800776 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
777 opcode, 0);
Alex Elder33803f32013-03-13 20:50:00 -0500778 size_t payload_len = 0;
779
Li Wangad7a60d2013-08-15 11:51:44 +0800780 BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
Ilya Dryomove30b7572015-10-07 17:27:17 +0200781 opcode != CEPH_OSD_OP_WRITEFULL && opcode != CEPH_OSD_OP_ZERO &&
782 opcode != CEPH_OSD_OP_TRUNCATE);
Alex Elder33803f32013-03-13 20:50:00 -0500783
Alex Elder33803f32013-03-13 20:50:00 -0500784 op->extent.offset = offset;
785 op->extent.length = length;
786 op->extent.truncate_size = truncate_size;
787 op->extent.truncate_seq = truncate_seq;
Ilya Dryomove30b7572015-10-07 17:27:17 +0200788 if (opcode == CEPH_OSD_OP_WRITE || opcode == CEPH_OSD_OP_WRITEFULL)
Alex Elder33803f32013-03-13 20:50:00 -0500789 payload_len += length;
790
Ilya Dryomovde2aa102016-02-08 13:39:46 +0100791 op->indata_len = payload_len;
Alex Elder33803f32013-03-13 20:50:00 -0500792}
793EXPORT_SYMBOL(osd_req_op_extent_init);
794
Alex Elderc99d2d42013-04-05 01:27:11 -0500795void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
796 unsigned int which, u64 length)
Alex Eldere5975c72013-03-14 14:09:05 -0500797{
Alex Elderc99d2d42013-04-05 01:27:11 -0500798 struct ceph_osd_req_op *op;
799 u64 previous;
800
801 BUG_ON(which >= osd_req->r_num_ops);
802 op = &osd_req->r_ops[which];
803 previous = op->extent.length;
Alex Eldere5975c72013-03-14 14:09:05 -0500804
805 if (length == previous)
806 return; /* Nothing to do */
807 BUG_ON(length > previous);
808
809 op->extent.length = length;
Yan, Zhengd641df82017-01-19 11:21:29 +0800810 if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
811 op->indata_len -= previous - length;
Alex Eldere5975c72013-03-14 14:09:05 -0500812}
813EXPORT_SYMBOL(osd_req_op_extent_update);
814
Yan, Zheng2c63f492016-01-07 17:32:54 +0800815void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
816 unsigned int which, u64 offset_inc)
817{
818 struct ceph_osd_req_op *op, *prev_op;
819
820 BUG_ON(which + 1 >= osd_req->r_num_ops);
821
822 prev_op = &osd_req->r_ops[which];
823 op = _osd_req_op_init(osd_req, which + 1, prev_op->op, prev_op->flags);
824 /* dup previous one */
825 op->indata_len = prev_op->indata_len;
826 op->outdata_len = prev_op->outdata_len;
827 op->extent = prev_op->extent;
828 /* adjust offset */
829 op->extent.offset += offset_inc;
830 op->extent.length -= offset_inc;
831
832 if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
833 op->indata_len -= offset_inc;
834}
835EXPORT_SYMBOL(osd_req_op_extent_dup_last);
836
Chengguang Xufe943d52018-04-12 12:04:55 +0800837int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
Ilya Dryomov24639ce562018-09-26 19:12:07 +0200838 const char *class, const char *method)
Alex Elder33803f32013-03-13 20:50:00 -0500839{
Ilya Dryomov24639ce562018-09-26 19:12:07 +0200840 struct ceph_osd_req_op *op;
Alex Elder5f562df2013-04-05 01:27:12 -0500841 struct ceph_pagelist *pagelist;
Alex Elder33803f32013-03-13 20:50:00 -0500842 size_t payload_len = 0;
843 size_t size;
David Disseldorp47668152019-07-03 17:59:20 +0200844 int ret;
Alex Elder33803f32013-03-13 20:50:00 -0500845
Ilya Dryomov24639ce562018-09-26 19:12:07 +0200846 op = _osd_req_op_init(osd_req, which, CEPH_OSD_OP_CALL, 0);
Alex Elder33803f32013-03-13 20:50:00 -0500847
Ilya Dryomov33165d42018-09-28 15:38:34 +0200848 pagelist = ceph_pagelist_alloc(GFP_NOFS);
Chengguang Xufe943d52018-04-12 12:04:55 +0800849 if (!pagelist)
850 return -ENOMEM;
851
Alex Elder33803f32013-03-13 20:50:00 -0500852 op->cls.class_name = class;
853 size = strlen(class);
854 BUG_ON(size > (size_t) U8_MAX);
855 op->cls.class_len = size;
David Disseldorp47668152019-07-03 17:59:20 +0200856 ret = ceph_pagelist_append(pagelist, class, size);
857 if (ret)
858 goto err_pagelist_free;
Alex Elder33803f32013-03-13 20:50:00 -0500859 payload_len += size;
860
861 op->cls.method_name = method;
862 size = strlen(method);
863 BUG_ON(size > (size_t) U8_MAX);
864 op->cls.method_len = size;
David Disseldorp47668152019-07-03 17:59:20 +0200865 ret = ceph_pagelist_append(pagelist, method, size);
866 if (ret)
867 goto err_pagelist_free;
Alex Elder33803f32013-03-13 20:50:00 -0500868 payload_len += size;
869
Alex Eldera4ce40a2013-04-05 01:27:12 -0500870 osd_req_op_cls_request_info_pagelist(osd_req, which, pagelist);
Ilya Dryomovde2aa102016-02-08 13:39:46 +0100871 op->indata_len = payload_len;
Chengguang Xufe943d52018-04-12 12:04:55 +0800872 return 0;
David Disseldorp47668152019-07-03 17:59:20 +0200873
874err_pagelist_free:
875 ceph_pagelist_release(pagelist);
876 return ret;
Alex Elder33803f32013-03-13 20:50:00 -0500877}
878EXPORT_SYMBOL(osd_req_op_cls_init);
Alex Elder8c042b02013-04-03 01:28:58 -0500879
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800880int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
881 u16 opcode, const char *name, const void *value,
882 size_t size, u8 cmp_op, u8 cmp_mode)
883{
Yan, Zheng144cba12015-04-27 11:09:54 +0800884 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
885 opcode, 0);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800886 struct ceph_pagelist *pagelist;
887 size_t payload_len;
David Disseldorp47668152019-07-03 17:59:20 +0200888 int ret;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800889
890 BUG_ON(opcode != CEPH_OSD_OP_SETXATTR && opcode != CEPH_OSD_OP_CMPXATTR);
891
Ilya Dryomov33165d42018-09-28 15:38:34 +0200892 pagelist = ceph_pagelist_alloc(GFP_NOFS);
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800893 if (!pagelist)
894 return -ENOMEM;
895
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800896 payload_len = strlen(name);
897 op->xattr.name_len = payload_len;
David Disseldorp47668152019-07-03 17:59:20 +0200898 ret = ceph_pagelist_append(pagelist, name, payload_len);
899 if (ret)
900 goto err_pagelist_free;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800901
902 op->xattr.value_len = size;
David Disseldorp47668152019-07-03 17:59:20 +0200903 ret = ceph_pagelist_append(pagelist, value, size);
904 if (ret)
905 goto err_pagelist_free;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800906 payload_len += size;
907
908 op->xattr.cmp_op = cmp_op;
909 op->xattr.cmp_mode = cmp_mode;
910
911 ceph_osd_data_pagelist_init(&op->xattr.osd_data, pagelist);
Ilya Dryomovde2aa102016-02-08 13:39:46 +0100912 op->indata_len = payload_len;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800913 return 0;
David Disseldorp47668152019-07-03 17:59:20 +0200914
915err_pagelist_free:
916 ceph_pagelist_release(pagelist);
917 return ret;
Yan, Zhengd74b50b2014-11-12 14:00:43 +0800918}
919EXPORT_SYMBOL(osd_req_op_xattr_init);
920
Ilya Dryomov922dab62016-05-26 01:15:02 +0200921/*
922 * @watch_opcode: CEPH_OSD_WATCH_OP_*
923 */
924static void osd_req_op_watch_init(struct ceph_osd_request *req, int which,
925 u64 cookie, u8 watch_opcode)
Alex Elder33803f32013-03-13 20:50:00 -0500926{
Ilya Dryomov922dab62016-05-26 01:15:02 +0200927 struct ceph_osd_req_op *op;
Alex Elder33803f32013-03-13 20:50:00 -0500928
Ilya Dryomov922dab62016-05-26 01:15:02 +0200929 op = _osd_req_op_init(req, which, CEPH_OSD_OP_WATCH, 0);
Alex Elder33803f32013-03-13 20:50:00 -0500930 op->watch.cookie = cookie;
Ilya Dryomov922dab62016-05-26 01:15:02 +0200931 op->watch.op = watch_opcode;
932 op->watch.gen = 0;
Alex Elder33803f32013-03-13 20:50:00 -0500933}
Alex Elder33803f32013-03-13 20:50:00 -0500934
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200935void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
936 unsigned int which,
937 u64 expected_object_size,
938 u64 expected_write_size)
939{
940 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
Yan, Zheng144cba12015-04-27 11:09:54 +0800941 CEPH_OSD_OP_SETALLOCHINT,
942 0);
Ilya Dryomovc647b8a2014-02-25 16:22:27 +0200943
944 op->alloc_hint.expected_object_size = expected_object_size;
945 op->alloc_hint.expected_write_size = expected_write_size;
946
947 /*
948 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
949 * not worth a feature bit. Set FAILOK per-op flag to make
950 * sure older osds don't trip over an unsupported opcode.
951 */
952 op->flags |= CEPH_OSD_OP_FLAG_FAILOK;
953}
954EXPORT_SYMBOL(osd_req_op_alloc_hint_init);
955
Alex Elder90af3602013-04-05 14:46:01 -0500956static void ceph_osdc_msg_data_add(struct ceph_msg *msg,
Alex Elderec9123c2013-04-05 01:27:12 -0500957 struct ceph_osd_data *osd_data)
958{
959 u64 length = ceph_osd_data_length(osd_data);
960
961 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
962 BUG_ON(length > (u64) SIZE_MAX);
963 if (length)
Alex Elder90af3602013-04-05 14:46:01 -0500964 ceph_msg_data_add_pages(msg, osd_data->pages,
Alex Elderec9123c2013-04-05 01:27:12 -0500965 length, osd_data->alignment);
966 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
967 BUG_ON(!length);
Alex Elder90af3602013-04-05 14:46:01 -0500968 ceph_msg_data_add_pagelist(msg, osd_data->pagelist);
Alex Elderec9123c2013-04-05 01:27:12 -0500969#ifdef CONFIG_BLOCK
970 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_BIO) {
Ilya Dryomov5359a172018-01-20 10:30:10 +0100971 ceph_msg_data_add_bio(msg, &osd_data->bio_pos, length);
Alex Elderec9123c2013-04-05 01:27:12 -0500972#endif
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100973 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_BVECS) {
974 ceph_msg_data_add_bvecs(msg, &osd_data->bvec_pos);
Alex Elderec9123c2013-04-05 01:27:12 -0500975 } else {
976 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_NONE);
977 }
978}
979
Ilya Dryomovbb873b5392016-05-26 00:29:52 +0200980static u32 osd_req_encode_op(struct ceph_osd_op *dst,
981 const struct ceph_osd_req_op *src)
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700982{
Alex Elder065a68f2012-04-20 15:49:43 -0500983 switch (src->op) {
Alex Elderfbfab532013-02-08 09:55:48 -0600984 case CEPH_OSD_OP_STAT:
985 break;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700986 case CEPH_OSD_OP_READ:
987 case CEPH_OSD_OP_WRITE:
Ilya Dryomove30b7572015-10-07 17:27:17 +0200988 case CEPH_OSD_OP_WRITEFULL:
Li Wangad7a60d2013-08-15 11:51:44 +0800989 case CEPH_OSD_OP_ZERO:
Li Wangad7a60d2013-08-15 11:51:44 +0800990 case CEPH_OSD_OP_TRUNCATE:
Alex Elder175face2013-03-08 13:35:36 -0600991 dst->extent.offset = cpu_to_le64(src->extent.offset);
992 dst->extent.length = cpu_to_le64(src->extent.length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700993 dst->extent.truncate_size =
994 cpu_to_le64(src->extent.truncate_size);
995 dst->extent.truncate_seq =
996 cpu_to_le32(src->extent.truncate_seq);
997 break;
Yehuda Sadehae1533b2010-05-18 16:38:08 -0700998 case CEPH_OSD_OP_CALL:
Yehuda Sadehae1533b2010-05-18 16:38:08 -0700999 dst->cls.class_len = src->cls.class_len;
1000 dst->cls.method_len = src->cls.method_len;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001001 dst->cls.indata_len = cpu_to_le32(src->cls.indata_len);
Yehuda Sadehae1533b2010-05-18 16:38:08 -07001002 break;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07001003 case CEPH_OSD_OP_WATCH:
1004 dst->watch.cookie = cpu_to_le64(src->watch.cookie);
Ilya Dryomov922dab62016-05-26 01:15:02 +02001005 dst->watch.ver = cpu_to_le64(0);
1006 dst->watch.op = src->watch.op;
1007 dst->watch.gen = cpu_to_le32(src->watch.gen);
1008 break;
1009 case CEPH_OSD_OP_NOTIFY_ACK:
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07001010 break;
Ilya Dryomov19079202016-04-28 16:07:27 +02001011 case CEPH_OSD_OP_NOTIFY:
1012 dst->notify.cookie = cpu_to_le64(src->notify.cookie);
1013 break;
Douglas Fullera4ed38d2015-07-17 13:18:07 -07001014 case CEPH_OSD_OP_LIST_WATCHERS:
1015 break;
Ilya Dryomovc647b8a2014-02-25 16:22:27 +02001016 case CEPH_OSD_OP_SETALLOCHINT:
1017 dst->alloc_hint.expected_object_size =
1018 cpu_to_le64(src->alloc_hint.expected_object_size);
1019 dst->alloc_hint.expected_write_size =
1020 cpu_to_le64(src->alloc_hint.expected_write_size);
1021 break;
Yan, Zhengd74b50b2014-11-12 14:00:43 +08001022 case CEPH_OSD_OP_SETXATTR:
1023 case CEPH_OSD_OP_CMPXATTR:
1024 dst->xattr.name_len = cpu_to_le32(src->xattr.name_len);
1025 dst->xattr.value_len = cpu_to_le32(src->xattr.value_len);
1026 dst->xattr.cmp_op = src->xattr.cmp_op;
1027 dst->xattr.cmp_mode = src->xattr.cmp_mode;
Yan, Zhengd74b50b2014-11-12 14:00:43 +08001028 break;
Yan, Zheng864e9192014-11-13 10:47:25 +08001029 case CEPH_OSD_OP_CREATE:
1030 case CEPH_OSD_OP_DELETE:
1031 break;
Luis Henriques78beb0f2020-01-08 10:03:53 +00001032 case CEPH_OSD_OP_COPY_FROM2:
Luis Henriques23ddf9b2018-10-15 16:45:58 +01001033 dst->copy_from.snapid = cpu_to_le64(src->copy_from.snapid);
1034 dst->copy_from.src_version =
1035 cpu_to_le64(src->copy_from.src_version);
1036 dst->copy_from.flags = src->copy_from.flags;
1037 dst->copy_from.src_fadvise_flags =
1038 cpu_to_le32(src->copy_from.src_fadvise_flags);
1039 break;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001040 default:
Alex Elder4c464592013-02-15 11:42:30 -06001041 pr_err("unsupported osd opcode %s\n",
Alex Elder8f63ca22013-03-04 11:08:29 -06001042 ceph_osd_op_name(src->op));
Alex Elder4c464592013-02-15 11:42:30 -06001043 WARN_ON(1);
Alex Eldera8dd0a32013-03-13 20:50:00 -05001044
1045 return 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001046 }
Ilya Dryomov7b25bf52014-02-25 16:22:26 +02001047
Alex Eldera8dd0a32013-03-13 20:50:00 -05001048 dst->op = cpu_to_le16(src->op);
Ilya Dryomov7b25bf52014-02-25 16:22:26 +02001049 dst->flags = cpu_to_le32(src->flags);
Ilya Dryomovde2aa102016-02-08 13:39:46 +01001050 dst->payload_len = cpu_to_le32(src->indata_len);
Alex Elder175face2013-03-08 13:35:36 -06001051
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001052 return src->indata_len;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001053}
1054
Yehuda Sadeh3499e8a2010-04-06 14:51:47 -07001055/*
Sage Weilf24e9982009-10-06 11:31:10 -07001056 * build new request AND message, calculate layout, and adjust file
1057 * extent as needed.
1058 *
1059 * if the file was recently truncated, we include information about its
1060 * old and new size so that the object can be updated appropriately. (we
1061 * avoid synchronously deleting truncated objects because it's slow.)
Sage Weilf24e9982009-10-06 11:31:10 -07001062 */
1063struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
1064 struct ceph_file_layout *layout,
1065 struct ceph_vino vino,
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001066 u64 off, u64 *plen,
1067 unsigned int which, int num_ops,
Sage Weilf24e9982009-10-06 11:31:10 -07001068 int opcode, int flags,
1069 struct ceph_snap_context *snapc,
Sage Weilf24e9982009-10-06 11:31:10 -07001070 u32 truncate_seq,
1071 u64 truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -06001072 bool use_mempool)
Sage Weilf24e9982009-10-06 11:31:10 -07001073{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001074 struct ceph_osd_request *req;
Alex Elder75d1c942013-03-13 20:50:00 -05001075 u64 objnum = 0;
1076 u64 objoff = 0;
1077 u64 objlen = 0;
Sage Weil68162822012-09-24 21:01:02 -07001078 int r;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001079
Li Wangad7a60d2013-08-15 11:51:44 +08001080 BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
Yan, Zheng864e9192014-11-13 10:47:25 +08001081 opcode != CEPH_OSD_OP_ZERO && opcode != CEPH_OSD_OP_TRUNCATE &&
1082 opcode != CEPH_OSD_OP_CREATE && opcode != CEPH_OSD_OP_DELETE);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001083
Alex Elderacead002013-03-14 14:09:05 -05001084 req = ceph_osdc_alloc_request(osdc, snapc, num_ops, use_mempool,
Alex Elderae7ca4a32012-11-13 21:11:15 -06001085 GFP_NOFS);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001086 if (!req) {
1087 r = -ENOMEM;
1088 goto fail;
1089 }
Alex Elder79528732013-04-03 21:32:51 -05001090
Sage Weilf24e9982009-10-06 11:31:10 -07001091 /* calculate max write size */
Alex Eldera19dadf2013-03-13 20:50:01 -05001092 r = calc_layout(layout, off, plen, &objnum, &objoff, &objlen);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001093 if (r)
1094 goto fail;
Alex Eldera19dadf2013-03-13 20:50:01 -05001095
Yan, Zheng864e9192014-11-13 10:47:25 +08001096 if (opcode == CEPH_OSD_OP_CREATE || opcode == CEPH_OSD_OP_DELETE) {
Yan, Zheng144cba12015-04-27 11:09:54 +08001097 osd_req_op_init(req, which, opcode, 0);
Yan, Zheng864e9192014-11-13 10:47:25 +08001098 } else {
Yan, Zheng76271512016-02-03 21:24:49 +08001099 u32 object_size = layout->object_size;
Yan, Zheng864e9192014-11-13 10:47:25 +08001100 u32 object_base = off - objoff;
1101 if (!(truncate_seq == 1 && truncate_size == -1ULL)) {
1102 if (truncate_size <= object_base) {
1103 truncate_size = 0;
1104 } else {
1105 truncate_size -= object_base;
1106 if (truncate_size > object_size)
1107 truncate_size = object_size;
1108 }
Yan, Zhengccca4e32013-06-02 18:40:23 +08001109 }
Yan, Zheng715e4cd2014-11-13 14:40:37 +08001110 osd_req_op_extent_init(req, which, opcode, objoff, objlen,
Yan, Zheng864e9192014-11-13 10:47:25 +08001111 truncate_size, truncate_seq);
Alex Eldera19dadf2013-03-13 20:50:01 -05001112 }
Alex Elderd18d1e22013-03-13 20:50:01 -05001113
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001114 req->r_flags = flags;
Yan, Zheng76271512016-02-03 21:24:49 +08001115 req->r_base_oloc.pool = layout->pool_id;
Yan, Zheng30c156d2016-02-14 11:24:31 +08001116 req->r_base_oloc.pool_ns = ceph_try_get_string(layout->pool_ns);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001117 ceph_oid_printf(&req->r_base_oid, "%llx.%08llx", vino.ino, objnum);
Alex Elderdbe0fc42013-02-15 22:10:17 -06001118
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001119 req->r_snapid = vino.snap;
1120 if (flags & CEPH_OSD_FLAG_WRITE)
1121 req->r_data_offset = off;
1122
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001123 if (num_ops > 1)
1124 /*
1125 * This is a special case for ceph_writepages_start(), but it
1126 * also covers ceph_uninline_data(). If more multi-op request
1127 * use cases emerge, we will need a separate helper.
1128 */
1129 r = __ceph_osdc_alloc_messages(req, GFP_NOFS, num_ops, 0);
1130 else
1131 r = ceph_osdc_alloc_messages(req, GFP_NOFS);
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001132 if (r)
1133 goto fail;
1134
Sage Weilf24e9982009-10-06 11:31:10 -07001135 return req;
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001136
1137fail:
1138 ceph_osdc_put_request(req);
1139 return ERR_PTR(r);
Sage Weilf24e9982009-10-06 11:31:10 -07001140}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001141EXPORT_SYMBOL(ceph_osdc_new_request);
Sage Weilf24e9982009-10-06 11:31:10 -07001142
1143/*
1144 * We keep osd requests in an rbtree, sorted by ->r_tid.
1145 */
Ilya Dryomovfcd00b62016-04-28 16:07:22 +02001146DEFINE_RB_FUNCS(request, struct ceph_osd_request, r_tid, r_node)
Ilya Dryomov46092452016-04-28 16:07:27 +02001147DEFINE_RB_FUNCS(request_mc, struct ceph_osd_request, r_tid, r_mc_node)
Sage Weilf24e9982009-10-06 11:31:10 -07001148
Ilya Dryomov66850df2018-05-15 15:47:58 +02001149/*
1150 * Call @fn on each OSD request as long as @fn returns 0.
1151 */
1152static void for_each_request(struct ceph_osd_client *osdc,
1153 int (*fn)(struct ceph_osd_request *req, void *arg),
1154 void *arg)
1155{
1156 struct rb_node *n, *p;
1157
1158 for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
1159 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
1160
1161 for (p = rb_first(&osd->o_requests); p; ) {
1162 struct ceph_osd_request *req =
1163 rb_entry(p, struct ceph_osd_request, r_node);
1164
1165 p = rb_next(p);
1166 if (fn(req, arg))
1167 return;
1168 }
1169 }
1170
1171 for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
1172 struct ceph_osd_request *req =
1173 rb_entry(p, struct ceph_osd_request, r_node);
1174
1175 p = rb_next(p);
1176 if (fn(req, arg))
1177 return;
1178 }
1179}
1180
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001181static bool osd_homeless(struct ceph_osd *osd)
1182{
1183 return osd->o_osd == CEPH_HOMELESS_OSD;
1184}
1185
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001186static bool osd_registered(struct ceph_osd *osd)
Sage Weilf24e9982009-10-06 11:31:10 -07001187{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001188 verify_osdc_locked(osd->o_osdc);
Sage Weilf24e9982009-10-06 11:31:10 -07001189
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001190 return !RB_EMPTY_NODE(&osd->o_node);
Sage Weilf24e9982009-10-06 11:31:10 -07001191}
1192
1193/*
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001194 * Assumes @osd is zero-initialized.
1195 */
1196static void osd_init(struct ceph_osd *osd)
1197{
Elena Reshetova02113a02017-03-17 14:10:28 +02001198 refcount_set(&osd->o_ref, 1);
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001199 RB_CLEAR_NODE(&osd->o_node);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001200 osd->o_requests = RB_ROOT;
Ilya Dryomov922dab62016-05-26 01:15:02 +02001201 osd->o_linger_requests = RB_ROOT;
Ilya Dryomova02a9462017-06-19 12:18:05 +02001202 osd->o_backoff_mappings = RB_ROOT;
1203 osd->o_backoffs_by_id = RB_ROOT;
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001204 INIT_LIST_HEAD(&osd->o_osd_lru);
1205 INIT_LIST_HEAD(&osd->o_keepalive_item);
1206 osd->o_incarnation = 1;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001207 mutex_init(&osd->lock);
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001208}
1209
1210static void osd_cleanup(struct ceph_osd *osd)
1211{
1212 WARN_ON(!RB_EMPTY_NODE(&osd->o_node));
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001213 WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
Ilya Dryomov922dab62016-05-26 01:15:02 +02001214 WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
Ilya Dryomova02a9462017-06-19 12:18:05 +02001215 WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoff_mappings));
1216 WARN_ON(!RB_EMPTY_ROOT(&osd->o_backoffs_by_id));
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001217 WARN_ON(!list_empty(&osd->o_osd_lru));
1218 WARN_ON(!list_empty(&osd->o_keepalive_item));
1219
1220 if (osd->o_auth.authorizer) {
1221 WARN_ON(osd_homeless(osd));
1222 ceph_auth_destroy_authorizer(osd->o_auth.authorizer);
1223 }
1224}
1225
1226/*
Sage Weilf24e9982009-10-06 11:31:10 -07001227 * Track open sessions with osds.
1228 */
Alex Eldere10006f2012-05-26 23:26:43 -05001229static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
Sage Weilf24e9982009-10-06 11:31:10 -07001230{
1231 struct ceph_osd *osd;
1232
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001233 WARN_ON(onum == CEPH_HOMELESS_OSD);
1234
Ilya Dryomov7a28f592016-04-28 16:07:25 +02001235 osd = kzalloc(sizeof(*osd), GFP_NOIO | __GFP_NOFAIL);
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001236 osd_init(osd);
Sage Weilf24e9982009-10-06 11:31:10 -07001237 osd->o_osdc = osdc;
Alex Eldere10006f2012-05-26 23:26:43 -05001238 osd->o_osd = onum;
Sage Weilf24e9982009-10-06 11:31:10 -07001239
Sage Weilb7a9e5d2012-06-27 12:24:08 -07001240 ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001241
Sage Weilf24e9982009-10-06 11:31:10 -07001242 return osd;
1243}
1244
1245static struct ceph_osd *get_osd(struct ceph_osd *osd)
1246{
Elena Reshetova02113a02017-03-17 14:10:28 +02001247 if (refcount_inc_not_zero(&osd->o_ref)) {
1248 dout("get_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref)-1,
1249 refcount_read(&osd->o_ref));
Sage Weilf24e9982009-10-06 11:31:10 -07001250 return osd;
1251 } else {
1252 dout("get_osd %p FAIL\n", osd);
1253 return NULL;
1254 }
1255}
1256
1257static void put_osd(struct ceph_osd *osd)
1258{
Elena Reshetova02113a02017-03-17 14:10:28 +02001259 dout("put_osd %p %d -> %d\n", osd, refcount_read(&osd->o_ref),
1260 refcount_read(&osd->o_ref) - 1);
1261 if (refcount_dec_and_test(&osd->o_ref)) {
Ilya Dryomov0247a0c2016-04-28 16:07:25 +02001262 osd_cleanup(osd);
Sage Weilf24e9982009-10-06 11:31:10 -07001263 kfree(osd);
Sage Weil79494d12010-05-27 14:15:49 -07001264 }
Sage Weilf24e9982009-10-06 11:31:10 -07001265}
1266
Ilya Dryomovfcd00b62016-04-28 16:07:22 +02001267DEFINE_RB_FUNCS(osd, struct ceph_osd, o_osd, o_node)
1268
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001269static void __move_osd_to_lru(struct ceph_osd *osd)
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001270{
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001271 struct ceph_osd_client *osdc = osd->o_osdc;
1272
1273 dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001274 BUG_ON(!list_empty(&osd->o_osd_lru));
Ilya Dryomovbbf37ec2014-06-20 14:14:41 +04001275
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001276 spin_lock(&osdc->osd_lru_lock);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001277 list_add_tail(&osd->o_osd_lru, &osdc->osd_lru);
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001278 spin_unlock(&osdc->osd_lru_lock);
1279
Ilya Dryomova319bf52015-05-15 12:02:17 +03001280 osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl;
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001281}
1282
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001283static void maybe_move_osd_to_lru(struct ceph_osd *osd)
Ilya Dryomovbbf37ec2014-06-20 14:14:41 +04001284{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001285 if (RB_EMPTY_ROOT(&osd->o_requests) &&
Ilya Dryomov922dab62016-05-26 01:15:02 +02001286 RB_EMPTY_ROOT(&osd->o_linger_requests))
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001287 __move_osd_to_lru(osd);
Ilya Dryomovbbf37ec2014-06-20 14:14:41 +04001288}
1289
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001290static void __remove_osd_from_lru(struct ceph_osd *osd)
1291{
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001292 struct ceph_osd_client *osdc = osd->o_osdc;
1293
1294 dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1295
1296 spin_lock(&osdc->osd_lru_lock);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001297 if (!list_empty(&osd->o_osd_lru))
1298 list_del_init(&osd->o_osd_lru);
Ilya Dryomov9dd28452016-04-28 16:07:26 +02001299 spin_unlock(&osdc->osd_lru_lock);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08001300}
1301
Sage Weilf24e9982009-10-06 11:31:10 -07001302/*
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001303 * Close the connection and assign any leftover requests to the
1304 * homeless session.
1305 */
1306static void close_osd(struct ceph_osd *osd)
1307{
1308 struct ceph_osd_client *osdc = osd->o_osdc;
1309 struct rb_node *n;
1310
1311 verify_osdc_wrlocked(osdc);
1312 dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1313
1314 ceph_con_close(&osd->o_con);
1315
1316 for (n = rb_first(&osd->o_requests); n; ) {
1317 struct ceph_osd_request *req =
1318 rb_entry(n, struct ceph_osd_request, r_node);
1319
1320 n = rb_next(n); /* unlink_request() */
1321
1322 dout(" reassigning req %p tid %llu\n", req, req->r_tid);
1323 unlink_request(osd, req);
1324 link_request(&osdc->homeless_osd, req);
1325 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02001326 for (n = rb_first(&osd->o_linger_requests); n; ) {
1327 struct ceph_osd_linger_request *lreq =
1328 rb_entry(n, struct ceph_osd_linger_request, node);
1329
1330 n = rb_next(n); /* unlink_linger() */
1331
1332 dout(" reassigning lreq %p linger_id %llu\n", lreq,
1333 lreq->linger_id);
1334 unlink_linger(osd, lreq);
1335 link_linger(&osdc->homeless_osd, lreq);
1336 }
Ilya Dryomova02a9462017-06-19 12:18:05 +02001337 clear_backoffs(osd);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001338
1339 __remove_osd_from_lru(osd);
1340 erase_osd(&osdc->osds, osd);
1341 put_osd(osd);
1342}
1343
1344/*
Sage Weilf24e9982009-10-06 11:31:10 -07001345 * reset osd connect
1346 */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001347static int reopen_osd(struct ceph_osd *osd)
Sage Weilf24e9982009-10-06 11:31:10 -07001348{
Alex Elderc3acb182012-12-07 09:57:58 -06001349 struct ceph_entity_addr *peer_addr;
Sage Weilf24e9982009-10-06 11:31:10 -07001350
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001351 dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
1352
1353 if (RB_EMPTY_ROOT(&osd->o_requests) &&
Ilya Dryomov922dab62016-05-26 01:15:02 +02001354 RB_EMPTY_ROOT(&osd->o_linger_requests)) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001355 close_osd(osd);
Alex Elderc3acb182012-12-07 09:57:58 -06001356 return -ENODEV;
1357 }
1358
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001359 peer_addr = &osd->o_osdc->osdmap->osd_addr[osd->o_osd];
Alex Elderc3acb182012-12-07 09:57:58 -06001360 if (!memcmp(peer_addr, &osd->o_con.peer_addr, sizeof (*peer_addr)) &&
1361 !ceph_con_opened(&osd->o_con)) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001362 struct rb_node *n;
Alex Elderc3acb182012-12-07 09:57:58 -06001363
Ilya Dryomov0b4af2e2014-01-16 19:18:27 +02001364 dout("osd addr hasn't changed and connection never opened, "
1365 "letting msgr retry\n");
Sage Weil87b315a2010-03-22 14:51:18 -07001366 /* touch each r_stamp for handle_timeout()'s benfit */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001367 for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
1368 struct ceph_osd_request *req =
1369 rb_entry(n, struct ceph_osd_request, r_node);
Sage Weil87b315a2010-03-22 14:51:18 -07001370 req->r_stamp = jiffies;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001371 }
Alex Elderc3acb182012-12-07 09:57:58 -06001372
1373 return -EAGAIN;
Sage Weilf24e9982009-10-06 11:31:10 -07001374 }
Alex Elderc3acb182012-12-07 09:57:58 -06001375
1376 ceph_con_close(&osd->o_con);
1377 ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd, peer_addr);
1378 osd->o_incarnation++;
1379
1380 return 0;
Sage Weilf24e9982009-10-06 11:31:10 -07001381}
1382
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001383static struct ceph_osd *lookup_create_osd(struct ceph_osd_client *osdc, int o,
1384 bool wrlocked)
Sage Weilf24e9982009-10-06 11:31:10 -07001385{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001386 struct ceph_osd *osd;
1387
1388 if (wrlocked)
1389 verify_osdc_wrlocked(osdc);
1390 else
1391 verify_osdc_locked(osdc);
1392
1393 if (o != CEPH_HOMELESS_OSD)
1394 osd = lookup_osd(&osdc->osds, o);
1395 else
1396 osd = &osdc->homeless_osd;
1397 if (!osd) {
1398 if (!wrlocked)
1399 return ERR_PTR(-EAGAIN);
1400
1401 osd = create_osd(osdc, o);
1402 insert_osd(&osdc->osds, osd);
1403 ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd,
1404 &osdc->osdmap->osd_addr[osd->o_osd]);
1405 }
1406
1407 dout("%s osdc %p osd%d -> osd %p\n", __func__, osdc, o, osd);
1408 return osd;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07001409}
1410
Sage Weilf24e9982009-10-06 11:31:10 -07001411/*
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001412 * Create request <-> OSD session relation.
1413 *
1414 * @req has to be assigned a tid, @osd may be homeless.
Sage Weilf24e9982009-10-06 11:31:10 -07001415 */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001416static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req)
Sage Weilf24e9982009-10-06 11:31:10 -07001417{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001418 verify_osd_locked(osd);
1419 WARN_ON(!req->r_tid || req->r_osd);
1420 dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
1421 req, req->r_tid);
Sage Weil35f9f8a2012-05-16 15:16:38 -05001422
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001423 if (!osd_homeless(osd))
1424 __remove_osd_from_lru(osd);
1425 else
1426 atomic_inc(&osd->o_osdc->num_homeless);
Sage Weilf24e9982009-10-06 11:31:10 -07001427
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001428 get_osd(osd);
1429 insert_request(&osd->o_requests, req);
1430 req->r_osd = osd;
Sage Weilf24e9982009-10-06 11:31:10 -07001431}
1432
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001433static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req)
Sage Weilf24e9982009-10-06 11:31:10 -07001434{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001435 verify_osd_locked(osd);
1436 WARN_ON(req->r_osd != osd);
1437 dout("%s osd %p osd%d req %p tid %llu\n", __func__, osd, osd->o_osd,
1438 req, req->r_tid);
1439
1440 req->r_osd = NULL;
1441 erase_request(&osd->o_requests, req);
1442 put_osd(osd);
1443
1444 if (!osd_homeless(osd))
1445 maybe_move_osd_to_lru(osd);
1446 else
1447 atomic_dec(&osd->o_osdc->num_homeless);
Sage Weilf24e9982009-10-06 11:31:10 -07001448}
1449
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001450static bool __pool_full(struct ceph_pg_pool_info *pi)
1451{
1452 return pi->flags & CEPH_POOL_FLAG_FULL;
1453}
1454
Ilya Dryomov42c1b122016-04-28 16:07:25 +02001455static bool have_pool_full(struct ceph_osd_client *osdc)
1456{
1457 struct rb_node *n;
1458
1459 for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
1460 struct ceph_pg_pool_info *pi =
1461 rb_entry(n, struct ceph_pg_pool_info, node);
1462
1463 if (__pool_full(pi))
1464 return true;
1465 }
1466
1467 return false;
1468}
1469
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02001470static bool pool_full(struct ceph_osd_client *osdc, s64 pool_id)
1471{
1472 struct ceph_pg_pool_info *pi;
1473
1474 pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
1475 if (!pi)
1476 return false;
1477
1478 return __pool_full(pi);
1479}
1480
Sage Weilf24e9982009-10-06 11:31:10 -07001481/*
Josh Durgind29adb32013-12-02 19:11:48 -08001482 * Returns whether a request should be blocked from being sent
1483 * based on the current osdmap and osd_client settings.
Josh Durgind29adb32013-12-02 19:11:48 -08001484 */
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001485static bool target_should_be_paused(struct ceph_osd_client *osdc,
1486 const struct ceph_osd_request_target *t,
1487 struct ceph_pg_pool_info *pi)
1488{
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001489 bool pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
1490 bool pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
1491 ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001492 __pool_full(pi);
1493
Ilya Dryomov6d637a52017-06-15 16:30:55 +02001494 WARN_ON(pi->id != t->target_oloc.pool);
Jeff Layton58eb7932017-04-18 09:21:16 -04001495 return ((t->flags & CEPH_OSD_FLAG_READ) && pauserd) ||
1496 ((t->flags & CEPH_OSD_FLAG_WRITE) && pausewr) ||
1497 (osdc->osdmap->epoch < osdc->epoch_barrier);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001498}
1499
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001500enum calc_target_result {
1501 CALC_TARGET_NO_ACTION = 0,
1502 CALC_TARGET_NEED_RESEND,
1503 CALC_TARGET_POOL_DNE,
1504};
1505
1506static enum calc_target_result calc_target(struct ceph_osd_client *osdc,
1507 struct ceph_osd_request_target *t,
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001508 bool any_change)
1509{
1510 struct ceph_pg_pool_info *pi;
1511 struct ceph_pg pgid, last_pgid;
1512 struct ceph_osds up, acting;
1513 bool force_resend = false;
Ilya Dryomov84ed45d2017-06-15 16:30:54 +02001514 bool unpaused = false;
Ilya Dryomova5613722019-08-20 16:40:33 +02001515 bool legacy_change = false;
Ilya Dryomov7de030d2017-06-15 16:30:54 +02001516 bool split = false;
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02001517 bool sort_bitwise = ceph_osdmap_flag(osdc, CEPH_OSDMAP_SORTBITWISE);
Ilya Dryomovae78dd82017-07-27 17:59:14 +02001518 bool recovery_deletes = ceph_osdmap_flag(osdc,
1519 CEPH_OSDMAP_RECOVERY_DELETES);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001520 enum calc_target_result ct_res;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001521
Ilya Dryomov04c7d782017-06-15 16:30:55 +02001522 t->epoch = osdc->osdmap->epoch;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001523 pi = ceph_pg_pool_by_id(osdc->osdmap, t->base_oloc.pool);
1524 if (!pi) {
1525 t->osd = CEPH_HOMELESS_OSD;
1526 ct_res = CALC_TARGET_POOL_DNE;
1527 goto out;
1528 }
1529
1530 if (osdc->osdmap->epoch == pi->last_force_request_resend) {
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +02001531 if (t->last_force_resend < pi->last_force_request_resend) {
1532 t->last_force_resend = pi->last_force_request_resend;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001533 force_resend = true;
Ilya Dryomovdc93e0e2017-06-05 14:45:00 +02001534 } else if (t->last_force_resend == 0) {
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001535 force_resend = true;
1536 }
1537 }
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001538
Ilya Dryomovdb098ec2017-06-15 16:30:55 +02001539 /* apply tiering */
1540 ceph_oid_copy(&t->target_oid, &t->base_oid);
1541 ceph_oloc_copy(&t->target_oloc, &t->base_oloc);
1542 if ((t->flags & CEPH_OSD_FLAG_IGNORE_OVERLAY) == 0) {
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001543 if (t->flags & CEPH_OSD_FLAG_READ && pi->read_tier >= 0)
1544 t->target_oloc.pool = pi->read_tier;
1545 if (t->flags & CEPH_OSD_FLAG_WRITE && pi->write_tier >= 0)
1546 t->target_oloc.pool = pi->write_tier;
Ilya Dryomov6d637a52017-06-15 16:30:55 +02001547
1548 pi = ceph_pg_pool_by_id(osdc->osdmap, t->target_oloc.pool);
1549 if (!pi) {
1550 t->osd = CEPH_HOMELESS_OSD;
1551 ct_res = CALC_TARGET_POOL_DNE;
1552 goto out;
1553 }
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001554 }
1555
Ilya Dryomova86f0092018-05-23 14:46:53 +02001556 __ceph_object_locator_to_pg(pi, &t->target_oid, &t->target_oloc, &pgid);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001557 last_pgid.pool = pgid.pool;
1558 last_pgid.seed = ceph_stable_mod(pgid.seed, t->pg_num, t->pg_num_mask);
1559
Ilya Dryomovdf281522017-06-15 16:30:56 +02001560 ceph_pg_to_up_acting_osds(osdc->osdmap, pi, &pgid, &up, &acting);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001561 if (any_change &&
1562 ceph_is_new_interval(&t->acting,
1563 &acting,
1564 &t->up,
1565 &up,
1566 t->size,
1567 pi->size,
1568 t->min_size,
1569 pi->min_size,
1570 t->pg_num,
1571 pi->pg_num,
1572 t->sort_bitwise,
1573 sort_bitwise,
Ilya Dryomovae78dd82017-07-27 17:59:14 +02001574 t->recovery_deletes,
1575 recovery_deletes,
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001576 &last_pgid))
1577 force_resend = true;
1578
1579 if (t->paused && !target_should_be_paused(osdc, t, pi)) {
1580 t->paused = false;
Ilya Dryomov84ed45d2017-06-15 16:30:54 +02001581 unpaused = true;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001582 }
Ilya Dryomov84ed45d2017-06-15 16:30:54 +02001583 legacy_change = ceph_pg_compare(&t->pgid, &pgid) ||
1584 ceph_osds_changed(&t->acting, &acting, any_change);
Ilya Dryomov7de030d2017-06-15 16:30:54 +02001585 if (t->pg_num)
1586 split = ceph_pg_is_split(&last_pgid, t->pg_num, pi->pg_num);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001587
Ilya Dryomov7de030d2017-06-15 16:30:54 +02001588 if (legacy_change || force_resend || split) {
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001589 t->pgid = pgid; /* struct */
Ilya Dryomovdf281522017-06-15 16:30:56 +02001590 ceph_pg_to_primary_shard(osdc->osdmap, pi, &pgid, &t->spgid);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001591 ceph_osds_copy(&t->acting, &acting);
1592 ceph_osds_copy(&t->up, &up);
1593 t->size = pi->size;
1594 t->min_size = pi->min_size;
1595 t->pg_num = pi->pg_num;
1596 t->pg_num_mask = pi->pg_num_mask;
1597 t->sort_bitwise = sort_bitwise;
Ilya Dryomovae78dd82017-07-27 17:59:14 +02001598 t->recovery_deletes = recovery_deletes;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001599
1600 t->osd = acting.primary;
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001601 }
1602
Ilya Dryomova5613722019-08-20 16:40:33 +02001603 if (unpaused || legacy_change || force_resend || split)
Ilya Dryomov84ed45d2017-06-15 16:30:54 +02001604 ct_res = CALC_TARGET_NEED_RESEND;
1605 else
1606 ct_res = CALC_TARGET_NO_ACTION;
1607
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001608out:
Ilya Dryomova5613722019-08-20 16:40:33 +02001609 dout("%s t %p -> %d%d%d%d ct_res %d osd%d\n", __func__, t, unpaused,
1610 legacy_change, force_resend, split, ct_res, t->osd);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001611 return ct_res;
1612}
1613
Ilya Dryomova02a9462017-06-19 12:18:05 +02001614static struct ceph_spg_mapping *alloc_spg_mapping(void)
1615{
1616 struct ceph_spg_mapping *spg;
1617
1618 spg = kmalloc(sizeof(*spg), GFP_NOIO);
1619 if (!spg)
1620 return NULL;
1621
1622 RB_CLEAR_NODE(&spg->node);
1623 spg->backoffs = RB_ROOT;
1624 return spg;
1625}
1626
1627static void free_spg_mapping(struct ceph_spg_mapping *spg)
1628{
1629 WARN_ON(!RB_EMPTY_NODE(&spg->node));
1630 WARN_ON(!RB_EMPTY_ROOT(&spg->backoffs));
1631
1632 kfree(spg);
1633}
1634
1635/*
1636 * rbtree of ceph_spg_mapping for handling map<spg_t, ...>, similar to
1637 * ceph_pg_mapping. Used to track OSD backoffs -- a backoff [range] is
1638 * defined only within a specific spgid; it does not pass anything to
1639 * children on split, or to another primary.
1640 */
1641DEFINE_RB_FUNCS2(spg_mapping, struct ceph_spg_mapping, spgid, ceph_spg_compare,
1642 RB_BYPTR, const struct ceph_spg *, node)
1643
1644static u64 hoid_get_bitwise_key(const struct ceph_hobject_id *hoid)
1645{
1646 return hoid->is_max ? 0x100000000ull : hoid->hash_reverse_bits;
1647}
1648
1649static void hoid_get_effective_key(const struct ceph_hobject_id *hoid,
1650 void **pkey, size_t *pkey_len)
1651{
1652 if (hoid->key_len) {
1653 *pkey = hoid->key;
1654 *pkey_len = hoid->key_len;
1655 } else {
1656 *pkey = hoid->oid;
1657 *pkey_len = hoid->oid_len;
1658 }
1659}
1660
1661static int compare_names(const void *name1, size_t name1_len,
1662 const void *name2, size_t name2_len)
1663{
1664 int ret;
1665
1666 ret = memcmp(name1, name2, min(name1_len, name2_len));
1667 if (!ret) {
1668 if (name1_len < name2_len)
1669 ret = -1;
1670 else if (name1_len > name2_len)
1671 ret = 1;
1672 }
1673 return ret;
1674}
1675
1676static int hoid_compare(const struct ceph_hobject_id *lhs,
1677 const struct ceph_hobject_id *rhs)
1678{
1679 void *effective_key1, *effective_key2;
1680 size_t effective_key1_len, effective_key2_len;
1681 int ret;
1682
1683 if (lhs->is_max < rhs->is_max)
1684 return -1;
1685 if (lhs->is_max > rhs->is_max)
1686 return 1;
1687
1688 if (lhs->pool < rhs->pool)
1689 return -1;
1690 if (lhs->pool > rhs->pool)
1691 return 1;
1692
1693 if (hoid_get_bitwise_key(lhs) < hoid_get_bitwise_key(rhs))
1694 return -1;
1695 if (hoid_get_bitwise_key(lhs) > hoid_get_bitwise_key(rhs))
1696 return 1;
1697
1698 ret = compare_names(lhs->nspace, lhs->nspace_len,
1699 rhs->nspace, rhs->nspace_len);
1700 if (ret)
1701 return ret;
1702
1703 hoid_get_effective_key(lhs, &effective_key1, &effective_key1_len);
1704 hoid_get_effective_key(rhs, &effective_key2, &effective_key2_len);
1705 ret = compare_names(effective_key1, effective_key1_len,
1706 effective_key2, effective_key2_len);
1707 if (ret)
1708 return ret;
1709
1710 ret = compare_names(lhs->oid, lhs->oid_len, rhs->oid, rhs->oid_len);
1711 if (ret)
1712 return ret;
1713
1714 if (lhs->snapid < rhs->snapid)
1715 return -1;
1716 if (lhs->snapid > rhs->snapid)
1717 return 1;
1718
1719 return 0;
1720}
1721
1722/*
1723 * For decoding ->begin and ->end of MOSDBackoff only -- no MIN/MAX
1724 * compat stuff here.
1725 *
1726 * Assumes @hoid is zero-initialized.
1727 */
1728static int decode_hoid(void **p, void *end, struct ceph_hobject_id *hoid)
1729{
1730 u8 struct_v;
1731 u32 struct_len;
1732 int ret;
1733
1734 ret = ceph_start_decoding(p, end, 4, "hobject_t", &struct_v,
1735 &struct_len);
1736 if (ret)
1737 return ret;
1738
1739 if (struct_v < 4) {
1740 pr_err("got struct_v %d < 4 of hobject_t\n", struct_v);
1741 goto e_inval;
1742 }
1743
1744 hoid->key = ceph_extract_encoded_string(p, end, &hoid->key_len,
1745 GFP_NOIO);
1746 if (IS_ERR(hoid->key)) {
1747 ret = PTR_ERR(hoid->key);
1748 hoid->key = NULL;
1749 return ret;
1750 }
1751
1752 hoid->oid = ceph_extract_encoded_string(p, end, &hoid->oid_len,
1753 GFP_NOIO);
1754 if (IS_ERR(hoid->oid)) {
1755 ret = PTR_ERR(hoid->oid);
1756 hoid->oid = NULL;
1757 return ret;
1758 }
1759
1760 ceph_decode_64_safe(p, end, hoid->snapid, e_inval);
1761 ceph_decode_32_safe(p, end, hoid->hash, e_inval);
1762 ceph_decode_8_safe(p, end, hoid->is_max, e_inval);
1763
1764 hoid->nspace = ceph_extract_encoded_string(p, end, &hoid->nspace_len,
1765 GFP_NOIO);
1766 if (IS_ERR(hoid->nspace)) {
1767 ret = PTR_ERR(hoid->nspace);
1768 hoid->nspace = NULL;
1769 return ret;
1770 }
1771
1772 ceph_decode_64_safe(p, end, hoid->pool, e_inval);
1773
1774 ceph_hoid_build_hash_cache(hoid);
1775 return 0;
1776
1777e_inval:
1778 return -EINVAL;
1779}
1780
1781static int hoid_encoding_size(const struct ceph_hobject_id *hoid)
1782{
1783 return 8 + 4 + 1 + 8 + /* snapid, hash, is_max, pool */
1784 4 + hoid->key_len + 4 + hoid->oid_len + 4 + hoid->nspace_len;
1785}
1786
1787static void encode_hoid(void **p, void *end, const struct ceph_hobject_id *hoid)
1788{
1789 ceph_start_encoding(p, 4, 3, hoid_encoding_size(hoid));
1790 ceph_encode_string(p, end, hoid->key, hoid->key_len);
1791 ceph_encode_string(p, end, hoid->oid, hoid->oid_len);
1792 ceph_encode_64(p, hoid->snapid);
1793 ceph_encode_32(p, hoid->hash);
1794 ceph_encode_8(p, hoid->is_max);
1795 ceph_encode_string(p, end, hoid->nspace, hoid->nspace_len);
1796 ceph_encode_64(p, hoid->pool);
1797}
1798
1799static void free_hoid(struct ceph_hobject_id *hoid)
1800{
1801 if (hoid) {
1802 kfree(hoid->key);
1803 kfree(hoid->oid);
1804 kfree(hoid->nspace);
1805 kfree(hoid);
1806 }
1807}
1808
1809static struct ceph_osd_backoff *alloc_backoff(void)
1810{
1811 struct ceph_osd_backoff *backoff;
1812
1813 backoff = kzalloc(sizeof(*backoff), GFP_NOIO);
1814 if (!backoff)
1815 return NULL;
1816
1817 RB_CLEAR_NODE(&backoff->spg_node);
1818 RB_CLEAR_NODE(&backoff->id_node);
1819 return backoff;
1820}
1821
1822static void free_backoff(struct ceph_osd_backoff *backoff)
1823{
1824 WARN_ON(!RB_EMPTY_NODE(&backoff->spg_node));
1825 WARN_ON(!RB_EMPTY_NODE(&backoff->id_node));
1826
1827 free_hoid(backoff->begin);
1828 free_hoid(backoff->end);
1829 kfree(backoff);
1830}
1831
1832/*
1833 * Within a specific spgid, backoffs are managed by ->begin hoid.
1834 */
1835DEFINE_RB_INSDEL_FUNCS2(backoff, struct ceph_osd_backoff, begin, hoid_compare,
1836 RB_BYVAL, spg_node);
1837
1838static struct ceph_osd_backoff *lookup_containing_backoff(struct rb_root *root,
1839 const struct ceph_hobject_id *hoid)
1840{
1841 struct rb_node *n = root->rb_node;
1842
1843 while (n) {
1844 struct ceph_osd_backoff *cur =
1845 rb_entry(n, struct ceph_osd_backoff, spg_node);
1846 int cmp;
1847
1848 cmp = hoid_compare(hoid, cur->begin);
1849 if (cmp < 0) {
1850 n = n->rb_left;
1851 } else if (cmp > 0) {
1852 if (hoid_compare(hoid, cur->end) < 0)
1853 return cur;
1854
1855 n = n->rb_right;
1856 } else {
1857 return cur;
1858 }
1859 }
1860
1861 return NULL;
1862}
1863
1864/*
1865 * Each backoff has a unique id within its OSD session.
1866 */
1867DEFINE_RB_FUNCS(backoff_by_id, struct ceph_osd_backoff, id, id_node)
1868
1869static void clear_backoffs(struct ceph_osd *osd)
1870{
1871 while (!RB_EMPTY_ROOT(&osd->o_backoff_mappings)) {
1872 struct ceph_spg_mapping *spg =
1873 rb_entry(rb_first(&osd->o_backoff_mappings),
1874 struct ceph_spg_mapping, node);
1875
1876 while (!RB_EMPTY_ROOT(&spg->backoffs)) {
1877 struct ceph_osd_backoff *backoff =
1878 rb_entry(rb_first(&spg->backoffs),
1879 struct ceph_osd_backoff, spg_node);
1880
1881 erase_backoff(&spg->backoffs, backoff);
1882 erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
1883 free_backoff(backoff);
1884 }
1885 erase_spg_mapping(&osd->o_backoff_mappings, spg);
1886 free_spg_mapping(spg);
1887 }
1888}
1889
1890/*
1891 * Set up a temporary, non-owning view into @t.
1892 */
1893static void hoid_fill_from_target(struct ceph_hobject_id *hoid,
1894 const struct ceph_osd_request_target *t)
1895{
1896 hoid->key = NULL;
1897 hoid->key_len = 0;
1898 hoid->oid = t->target_oid.name;
1899 hoid->oid_len = t->target_oid.name_len;
1900 hoid->snapid = CEPH_NOSNAP;
1901 hoid->hash = t->pgid.seed;
1902 hoid->is_max = false;
1903 if (t->target_oloc.pool_ns) {
1904 hoid->nspace = t->target_oloc.pool_ns->str;
1905 hoid->nspace_len = t->target_oloc.pool_ns->len;
1906 } else {
1907 hoid->nspace = NULL;
1908 hoid->nspace_len = 0;
1909 }
1910 hoid->pool = t->target_oloc.pool;
1911 ceph_hoid_build_hash_cache(hoid);
1912}
1913
1914static bool should_plug_request(struct ceph_osd_request *req)
1915{
1916 struct ceph_osd *osd = req->r_osd;
1917 struct ceph_spg_mapping *spg;
1918 struct ceph_osd_backoff *backoff;
1919 struct ceph_hobject_id hoid;
1920
1921 spg = lookup_spg_mapping(&osd->o_backoff_mappings, &req->r_t.spgid);
1922 if (!spg)
1923 return false;
1924
1925 hoid_fill_from_target(&hoid, &req->r_t);
1926 backoff = lookup_containing_backoff(&spg->backoffs, &hoid);
1927 if (!backoff)
1928 return false;
1929
1930 dout("%s req %p tid %llu backoff osd%d spgid %llu.%xs%d id %llu\n",
1931 __func__, req, req->r_tid, osd->o_osd, backoff->spgid.pgid.pool,
1932 backoff->spgid.pgid.seed, backoff->spgid.shard, backoff->id);
1933 return true;
1934}
1935
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001936/*
1937 * Keep get_num_data_items() in sync with this function.
1938 */
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001939static void setup_request_data(struct ceph_osd_request *req)
Sage Weilf24e9982009-10-06 11:31:10 -07001940{
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001941 struct ceph_msg *request_msg = req->r_request;
1942 struct ceph_msg *reply_msg = req->r_reply;
1943 struct ceph_osd_req_op *op;
Sage Weilf24e9982009-10-06 11:31:10 -07001944
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001945 if (req->r_request->num_data_items || req->r_reply->num_data_items)
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001946 return;
Sage Weilf24e9982009-10-06 11:31:10 -07001947
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001948 WARN_ON(request_msg->data_length || reply_msg->data_length);
1949 for (op = req->r_ops; op != &req->r_ops[req->r_num_ops]; op++) {
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001950 switch (op->op) {
1951 /* request */
1952 case CEPH_OSD_OP_WRITE:
1953 case CEPH_OSD_OP_WRITEFULL:
1954 WARN_ON(op->indata_len != op->extent.length);
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001955 ceph_osdc_msg_data_add(request_msg,
1956 &op->extent.osd_data);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001957 break;
1958 case CEPH_OSD_OP_SETXATTR:
1959 case CEPH_OSD_OP_CMPXATTR:
1960 WARN_ON(op->indata_len != op->xattr.name_len +
1961 op->xattr.value_len);
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001962 ceph_osdc_msg_data_add(request_msg,
1963 &op->xattr.osd_data);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001964 break;
Ilya Dryomov922dab62016-05-26 01:15:02 +02001965 case CEPH_OSD_OP_NOTIFY_ACK:
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001966 ceph_osdc_msg_data_add(request_msg,
Ilya Dryomov922dab62016-05-26 01:15:02 +02001967 &op->notify_ack.request_data);
1968 break;
Luis Henriques78beb0f2020-01-08 10:03:53 +00001969 case CEPH_OSD_OP_COPY_FROM2:
Luis Henriques23ddf9b2018-10-15 16:45:58 +01001970 ceph_osdc_msg_data_add(request_msg,
1971 &op->copy_from.osd_data);
1972 break;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001973
1974 /* reply */
1975 case CEPH_OSD_OP_STAT:
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001976 ceph_osdc_msg_data_add(reply_msg,
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001977 &op->raw_data_in);
1978 break;
1979 case CEPH_OSD_OP_READ:
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001980 ceph_osdc_msg_data_add(reply_msg,
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001981 &op->extent.osd_data);
1982 break;
Douglas Fullera4ed38d2015-07-17 13:18:07 -07001983 case CEPH_OSD_OP_LIST_WATCHERS:
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001984 ceph_osdc_msg_data_add(reply_msg,
Douglas Fullera4ed38d2015-07-17 13:18:07 -07001985 &op->list_watchers.response_data);
1986 break;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001987
1988 /* both */
1989 case CEPH_OSD_OP_CALL:
1990 WARN_ON(op->indata_len != op->cls.class_len +
1991 op->cls.method_len +
1992 op->cls.indata_len);
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001993 ceph_osdc_msg_data_add(request_msg,
1994 &op->cls.request_info);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001995 /* optional, can be NONE */
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001996 ceph_osdc_msg_data_add(request_msg,
1997 &op->cls.request_data);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001998 /* optional, can be NONE */
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02001999 ceph_osdc_msg_data_add(reply_msg,
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002000 &op->cls.response_data);
2001 break;
Ilya Dryomov19079202016-04-28 16:07:27 +02002002 case CEPH_OSD_OP_NOTIFY:
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02002003 ceph_osdc_msg_data_add(request_msg,
Ilya Dryomov19079202016-04-28 16:07:27 +02002004 &op->notify.request_data);
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02002005 ceph_osdc_msg_data_add(reply_msg,
Ilya Dryomov19079202016-04-28 16:07:27 +02002006 &op->notify.response_data);
2007 break;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002008 }
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002009 }
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002010}
2011
Ilya Dryomov2e59ffd2017-06-15 16:30:53 +02002012static void encode_pgid(void **p, const struct ceph_pg *pgid)
2013{
2014 ceph_encode_8(p, 1);
2015 ceph_encode_64(p, pgid->pool);
2016 ceph_encode_32(p, pgid->seed);
2017 ceph_encode_32(p, -1); /* preferred */
2018}
2019
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002020static void encode_spgid(void **p, const struct ceph_spg *spgid)
2021{
2022 ceph_start_encoding(p, 1, 1, CEPH_PGID_ENCODING_LEN + 1);
2023 encode_pgid(p, &spgid->pgid);
2024 ceph_encode_8(p, spgid->shard);
2025}
2026
Ilya Dryomov2e59ffd2017-06-15 16:30:53 +02002027static void encode_oloc(void **p, void *end,
2028 const struct ceph_object_locator *oloc)
2029{
2030 ceph_start_encoding(p, 5, 4, ceph_oloc_encoding_size(oloc));
2031 ceph_encode_64(p, oloc->pool);
2032 ceph_encode_32(p, -1); /* preferred */
2033 ceph_encode_32(p, 0); /* key len */
2034 if (oloc->pool_ns)
2035 ceph_encode_string(p, end, oloc->pool_ns->str,
2036 oloc->pool_ns->len);
2037 else
2038 ceph_encode_32(p, 0);
2039}
2040
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002041static void encode_request_partial(struct ceph_osd_request *req,
2042 struct ceph_msg *msg)
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002043{
2044 void *p = msg->front.iov_base;
2045 void *const end = p + msg->front_alloc_len;
2046 u32 data_len = 0;
2047 int i;
2048
2049 if (req->r_flags & CEPH_OSD_FLAG_WRITE) {
2050 /* snapshots aren't writeable */
2051 WARN_ON(req->r_snapid != CEPH_NOSNAP);
2052 } else {
2053 WARN_ON(req->r_mtime.tv_sec || req->r_mtime.tv_nsec ||
2054 req->r_data_offset || req->r_snapc);
2055 }
2056
Ilya Dryomov98c4bfe2018-10-17 14:23:04 +02002057 setup_request_data(req);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002058
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002059 encode_spgid(&p, &req->r_t.spgid); /* actual spg */
2060 ceph_encode_32(&p, req->r_t.pgid.seed); /* raw hash */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002061 ceph_encode_32(&p, req->r_osdc->osdmap->epoch);
2062 ceph_encode_32(&p, req->r_flags);
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002063
2064 /* reqid */
2065 ceph_start_encoding(&p, 2, 2, sizeof(struct ceph_osd_reqid));
2066 memset(p, 0, sizeof(struct ceph_osd_reqid));
2067 p += sizeof(struct ceph_osd_reqid);
2068
2069 /* trace */
2070 memset(p, 0, sizeof(struct ceph_blkin_trace_info));
2071 p += sizeof(struct ceph_blkin_trace_info);
2072
2073 ceph_encode_32(&p, 0); /* client_inc, always 0 */
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02002074 ceph_encode_timespec64(p, &req->r_mtime);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002075 p += sizeof(struct ceph_timespec);
Jeff Laytonaa26d662017-04-04 08:39:36 -04002076
Ilya Dryomov2e59ffd2017-06-15 16:30:53 +02002077 encode_oloc(&p, end, &req->r_t.target_oloc);
Ilya Dryomov2e59ffd2017-06-15 16:30:53 +02002078 ceph_encode_string(&p, end, req->r_t.target_oid.name,
2079 req->r_t.target_oid.name_len);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002080
2081 /* ops, can imply data */
2082 ceph_encode_16(&p, req->r_num_ops);
2083 for (i = 0; i < req->r_num_ops; i++) {
2084 data_len += osd_req_encode_op(p, &req->r_ops[i]);
2085 p += sizeof(struct ceph_osd_op);
2086 }
2087
2088 ceph_encode_64(&p, req->r_snapid); /* snapid */
2089 if (req->r_snapc) {
2090 ceph_encode_64(&p, req->r_snapc->seq);
2091 ceph_encode_32(&p, req->r_snapc->num_snaps);
2092 for (i = 0; i < req->r_snapc->num_snaps; i++)
2093 ceph_encode_64(&p, req->r_snapc->snaps[i]);
2094 } else {
2095 ceph_encode_64(&p, 0); /* snap_seq */
2096 ceph_encode_32(&p, 0); /* snaps len */
2097 }
2098
2099 ceph_encode_32(&p, req->r_attempts); /* retry_attempt */
Ilya Dryomov986e8982017-07-25 14:40:03 +02002100 BUG_ON(p > end - 8); /* space for features */
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002101
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002102 msg->hdr.version = cpu_to_le16(8); /* MOSDOp v8 */
2103 /* front_len is finalized in encode_request_finish() */
Ilya Dryomov986e8982017-07-25 14:40:03 +02002104 msg->front.iov_len = p - msg->front.iov_base;
2105 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002106 msg->hdr.data_len = cpu_to_le32(data_len);
2107 /*
2108 * The header "data_off" is a hint to the receiver allowing it
2109 * to align received data into its buffers such that there's no
2110 * need to re-copy it before writing it to disk (direct I/O).
2111 */
2112 msg->hdr.data_off = cpu_to_le16(req->r_data_offset);
2113
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002114 dout("%s req %p msg %p oid %s oid_len %d\n", __func__, req, msg,
2115 req->r_t.target_oid.name, req->r_t.target_oid.name_len);
2116}
2117
2118static void encode_request_finish(struct ceph_msg *msg)
2119{
2120 void *p = msg->front.iov_base;
Ilya Dryomov986e8982017-07-25 14:40:03 +02002121 void *const partial_end = p + msg->front.iov_len;
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002122 void *const end = p + msg->front_alloc_len;
2123
2124 if (CEPH_HAVE_FEATURE(msg->con->peer_features, RESEND_ON_SPLIT)) {
2125 /* luminous OSD -- encode features and be done */
Ilya Dryomov986e8982017-07-25 14:40:03 +02002126 p = partial_end;
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002127 ceph_encode_64(&p, msg->con->peer_features);
2128 } else {
2129 struct {
2130 char spgid[CEPH_ENCODING_START_BLK_LEN +
2131 CEPH_PGID_ENCODING_LEN + 1];
2132 __le32 hash;
2133 __le32 epoch;
2134 __le32 flags;
2135 char reqid[CEPH_ENCODING_START_BLK_LEN +
2136 sizeof(struct ceph_osd_reqid)];
2137 char trace[sizeof(struct ceph_blkin_trace_info)];
2138 __le32 client_inc;
2139 struct ceph_timespec mtime;
2140 } __packed head;
2141 struct ceph_pg pgid;
2142 void *oloc, *oid, *tail;
2143 int oloc_len, oid_len, tail_len;
2144 int len;
2145
2146 /*
2147 * Pre-luminous OSD -- reencode v8 into v4 using @head
2148 * as a temporary buffer. Encode the raw PG; the rest
2149 * is just a matter of moving oloc, oid and tail blobs
2150 * around.
2151 */
2152 memcpy(&head, p, sizeof(head));
2153 p += sizeof(head);
2154
2155 oloc = p;
2156 p += CEPH_ENCODING_START_BLK_LEN;
2157 pgid.pool = ceph_decode_64(&p);
2158 p += 4 + 4; /* preferred, key len */
2159 len = ceph_decode_32(&p);
2160 p += len; /* nspace */
2161 oloc_len = p - oloc;
2162
2163 oid = p;
2164 len = ceph_decode_32(&p);
2165 p += len;
2166 oid_len = p - oid;
2167
2168 tail = p;
Ilya Dryomov986e8982017-07-25 14:40:03 +02002169 tail_len = partial_end - p;
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002170
2171 p = msg->front.iov_base;
2172 ceph_encode_copy(&p, &head.client_inc, sizeof(head.client_inc));
2173 ceph_encode_copy(&p, &head.epoch, sizeof(head.epoch));
2174 ceph_encode_copy(&p, &head.flags, sizeof(head.flags));
2175 ceph_encode_copy(&p, &head.mtime, sizeof(head.mtime));
2176
2177 /* reassert_version */
2178 memset(p, 0, sizeof(struct ceph_eversion));
2179 p += sizeof(struct ceph_eversion);
2180
2181 BUG_ON(p >= oloc);
2182 memmove(p, oloc, oloc_len);
2183 p += oloc_len;
2184
2185 pgid.seed = le32_to_cpu(head.hash);
2186 encode_pgid(&p, &pgid); /* raw pg */
2187
2188 BUG_ON(p >= oid);
2189 memmove(p, oid, oid_len);
2190 p += oid_len;
2191
2192 /* tail -- ops, snapid, snapc, retry_attempt */
2193 BUG_ON(p >= tail);
2194 memmove(p, tail, tail_len);
2195 p += tail_len;
2196
2197 msg->hdr.version = cpu_to_le16(4); /* MOSDOp v4 */
2198 }
2199
2200 BUG_ON(p > end);
2201 msg->front.iov_len = p - msg->front.iov_base;
2202 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
2203
2204 dout("%s msg %p tid %llu %u+%u+%u v%d\n", __func__, msg,
2205 le64_to_cpu(msg->hdr.tid), le32_to_cpu(msg->hdr.front_len),
2206 le32_to_cpu(msg->hdr.middle_len), le32_to_cpu(msg->hdr.data_len),
2207 le16_to_cpu(msg->hdr.version));
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002208}
2209
2210/*
2211 * @req has to be assigned a tid and registered.
2212 */
2213static void send_request(struct ceph_osd_request *req)
2214{
2215 struct ceph_osd *osd = req->r_osd;
2216
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002217 verify_osd_locked(osd);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002218 WARN_ON(osd->o_osd != req->r_t.osd);
2219
Ilya Dryomova02a9462017-06-19 12:18:05 +02002220 /* backoff? */
2221 if (should_plug_request(req))
2222 return;
2223
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002224 /*
2225 * We may have a previously queued request message hanging
2226 * around. Cancel it to avoid corrupting the msgr.
2227 */
2228 if (req->r_sent)
2229 ceph_msg_revoke(req->r_request);
2230
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002231 req->r_flags |= CEPH_OSD_FLAG_KNOWN_REDIR;
2232 if (req->r_attempts)
2233 req->r_flags |= CEPH_OSD_FLAG_RETRY;
2234 else
2235 WARN_ON(req->r_flags & CEPH_OSD_FLAG_RETRY);
2236
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02002237 encode_request_partial(req, req->r_request);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002238
Ilya Dryomov04c7d782017-06-15 16:30:55 +02002239 dout("%s req %p tid %llu to pgid %llu.%x spgid %llu.%xs%d osd%d e%u flags 0x%x attempt %d\n",
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002240 __func__, req, req->r_tid, req->r_t.pgid.pool, req->r_t.pgid.seed,
Ilya Dryomovdc98ff72017-06-15 16:30:53 +02002241 req->r_t.spgid.pgid.pool, req->r_t.spgid.pgid.seed,
Ilya Dryomov04c7d782017-06-15 16:30:55 +02002242 req->r_t.spgid.shard, osd->o_osd, req->r_t.epoch, req->r_flags,
2243 req->r_attempts);
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002244
2245 req->r_t.paused = false;
Sage Weil3dd72fc2010-03-22 14:42:30 -07002246 req->r_stamp = jiffies;
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002247 req->r_attempts++;
Sage Weilf24e9982009-10-06 11:31:10 -07002248
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02002249 req->r_sent = osd->o_incarnation;
2250 req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
2251 ceph_con_send(&osd->o_con, ceph_msg_get(req->r_request));
Sage Weilf24e9982009-10-06 11:31:10 -07002252}
2253
Ilya Dryomov42c1b122016-04-28 16:07:25 +02002254static void maybe_request_map(struct ceph_osd_client *osdc)
2255{
2256 bool continuous = false;
2257
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002258 verify_osdc_locked(osdc);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02002259 WARN_ON(!osdc->osdmap->epoch);
2260
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02002261 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
2262 ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD) ||
2263 ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
Ilya Dryomov42c1b122016-04-28 16:07:25 +02002264 dout("%s osdc %p continuous\n", __func__, osdc);
2265 continuous = true;
2266 } else {
2267 dout("%s osdc %p onetime\n", __func__, osdc);
2268 }
2269
2270 if (ceph_monc_want_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
2271 osdc->osdmap->epoch + 1, continuous))
2272 ceph_monc_renew_subs(&osdc->client->monc);
2273}
2274
Jeff Laytona1f40202017-04-04 08:39:37 -04002275static void complete_request(struct ceph_osd_request *req, int err);
Ilya Dryomov46092452016-04-28 16:07:27 +02002276static void send_map_check(struct ceph_osd_request *req);
2277
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002278static void __submit_request(struct ceph_osd_request *req, bool wrlocked)
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002279{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002280 struct ceph_osd_client *osdc = req->r_osdc;
2281 struct ceph_osd *osd;
Ilya Dryomov46092452016-04-28 16:07:27 +02002282 enum calc_target_result ct_res;
Ilya Dryomov66850df2018-05-15 15:47:58 +02002283 int err = 0;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002284 bool need_send = false;
2285 bool promoted = false;
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002286
Ilya Dryomovb18b9552017-02-11 18:46:08 +01002287 WARN_ON(req->r_tid);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002288 dout("%s req %p wrlocked %d\n", __func__, req, wrlocked);
2289
2290again:
Ilya Dryomov8edf84b2019-08-21 13:57:18 +02002291 ct_res = calc_target(osdc, &req->r_t, false);
Ilya Dryomov46092452016-04-28 16:07:27 +02002292 if (ct_res == CALC_TARGET_POOL_DNE && !wrlocked)
2293 goto promote;
2294
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002295 osd = lookup_create_osd(osdc, req->r_t.osd, wrlocked);
2296 if (IS_ERR(osd)) {
2297 WARN_ON(PTR_ERR(osd) != -EAGAIN || wrlocked);
2298 goto promote;
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002299 }
2300
Ilya Dryomov66850df2018-05-15 15:47:58 +02002301 if (osdc->abort_err) {
2302 dout("req %p abort_err %d\n", req, osdc->abort_err);
2303 err = osdc->abort_err;
2304 } else if (osdc->osdmap->epoch < osdc->epoch_barrier) {
Jeff Layton58eb7932017-04-18 09:21:16 -04002305 dout("req %p epoch %u barrier %u\n", req, osdc->osdmap->epoch,
2306 osdc->epoch_barrier);
2307 req->r_t.paused = true;
2308 maybe_request_map(osdc);
2309 } else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2310 ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR)) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002311 dout("req %p pausewr\n", req);
2312 req->r_t.paused = true;
2313 maybe_request_map(osdc);
2314 } else if ((req->r_flags & CEPH_OSD_FLAG_READ) &&
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02002315 ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002316 dout("req %p pauserd\n", req);
2317 req->r_t.paused = true;
2318 maybe_request_map(osdc);
2319 } else if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
2320 !(req->r_flags & (CEPH_OSD_FLAG_FULL_TRY |
2321 CEPH_OSD_FLAG_FULL_FORCE)) &&
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02002322 (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002323 pool_full(osdc, req->r_t.base_oloc.pool))) {
2324 dout("req %p full/pool_full\n", req);
Dongsheng Yang02b2f542018-12-18 04:31:48 -05002325 if (ceph_test_opt(osdc->client, ABORT_ON_FULL)) {
Ilya Dryomov66850df2018-05-15 15:47:58 +02002326 err = -ENOSPC;
Ilya Dryomov29e87822018-05-17 16:13:07 +02002327 } else {
2328 pr_warn_ratelimited("FULL or reached pool quota\n");
2329 req->r_t.paused = true;
2330 maybe_request_map(osdc);
2331 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002332 } else if (!osd_homeless(osd)) {
2333 need_send = true;
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002334 } else {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002335 maybe_request_map(osdc);
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002336 }
2337
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002338 mutex_lock(&osd->lock);
2339 /*
2340 * Assign the tid atomically with send_request() to protect
2341 * multiple writes to the same object from racing with each
2342 * other, resulting in out of order ops on the OSDs.
2343 */
2344 req->r_tid = atomic64_inc_return(&osdc->last_tid);
2345 link_request(osd, req);
2346 if (need_send)
2347 send_request(req);
Ilya Dryomov66850df2018-05-15 15:47:58 +02002348 else if (err)
2349 complete_request(req, err);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002350 mutex_unlock(&osd->lock);
2351
Ilya Dryomov60015672018-05-22 16:26:51 +02002352 if (!err && ct_res == CALC_TARGET_POOL_DNE)
Ilya Dryomov46092452016-04-28 16:07:27 +02002353 send_map_check(req);
2354
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002355 if (promoted)
2356 downgrade_write(&osdc->lock);
2357 return;
2358
2359promote:
2360 up_read(&osdc->lock);
2361 down_write(&osdc->lock);
2362 wrlocked = true;
2363 promoted = true;
2364 goto again;
2365}
2366
2367static void account_request(struct ceph_osd_request *req)
2368{
Ilya Dryomov54ea0042017-02-11 18:48:41 +01002369 WARN_ON(req->r_flags & (CEPH_OSD_FLAG_ACK | CEPH_OSD_FLAG_ONDISK));
Ilya Dryomovb18b9552017-02-11 18:46:08 +01002370 WARN_ON(!(req->r_flags & (CEPH_OSD_FLAG_READ | CEPH_OSD_FLAG_WRITE)));
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002371
Ilya Dryomovb18b9552017-02-11 18:46:08 +01002372 req->r_flags |= CEPH_OSD_FLAG_ONDISK;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002373 atomic_inc(&req->r_osdc->num_requests);
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01002374
2375 req->r_start_stamp = jiffies;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002376}
2377
2378static void submit_request(struct ceph_osd_request *req, bool wrlocked)
2379{
2380 ceph_osdc_get_request(req);
2381 account_request(req);
2382 __submit_request(req, wrlocked);
2383}
2384
Ilya Dryomov45ee2c12016-12-02 14:01:55 +01002385static void finish_request(struct ceph_osd_request *req)
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002386{
2387 struct ceph_osd_client *osdc = req->r_osdc;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002388
Ilya Dryomov46092452016-04-28 16:07:27 +02002389 WARN_ON(lookup_request_mc(&osdc->map_checks, req->r_tid));
Ilya Dryomov04c7d782017-06-15 16:30:55 +02002390 dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
2391
2392 if (req->r_osd)
2393 unlink_request(req->r_osd, req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002394 atomic_dec(&osdc->num_requests);
2395
2396 /*
2397 * If an OSD has failed or returned and a request has been sent
2398 * twice, it's possible to get a reply and end up here while the
2399 * request message is queued for delivery. We will ignore the
2400 * reply, so not a big deal, but better to try and catch it.
2401 */
2402 ceph_msg_revoke(req->r_request);
2403 ceph_msg_revoke_incoming(req->r_reply);
2404}
2405
Ilya Dryomovfe5da052016-04-28 16:07:24 +02002406static void __complete_request(struct ceph_osd_request *req)
2407{
Sakari Ailusd75f7732019-03-25 21:32:28 +02002408 dout("%s req %p tid %llu cb %ps result %d\n", __func__, req,
Ilya Dryomov26df7262018-05-21 15:33:48 +02002409 req->r_tid, req->r_callback, req->r_result);
2410
2411 if (req->r_callback)
Ilya Dryomovfe5da052016-04-28 16:07:24 +02002412 req->r_callback(req);
Ilya Dryomov26df7262018-05-21 15:33:48 +02002413 complete_all(&req->r_completion);
2414 ceph_osdc_put_request(req);
Ilya Dryomovfe5da052016-04-28 16:07:24 +02002415}
2416
Ilya Dryomov88bc1922018-05-21 16:00:29 +02002417static void complete_request_workfn(struct work_struct *work)
2418{
2419 struct ceph_osd_request *req =
2420 container_of(work, struct ceph_osd_request, r_complete_work);
2421
2422 __complete_request(req);
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002423}
2424
Ilya Dryomov46092452016-04-28 16:07:27 +02002425/*
Ilya Dryomovb18b9552017-02-11 18:46:08 +01002426 * This is open-coded in handle_reply().
Ilya Dryomov46092452016-04-28 16:07:27 +02002427 */
2428static void complete_request(struct ceph_osd_request *req, int err)
2429{
2430 dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
2431
2432 req->r_result = err;
Ilya Dryomov45ee2c12016-12-02 14:01:55 +01002433 finish_request(req);
Ilya Dryomov88bc1922018-05-21 16:00:29 +02002434
2435 INIT_WORK(&req->r_complete_work, complete_request_workfn);
2436 queue_work(req->r_osdc->completion_wq, &req->r_complete_work);
Ilya Dryomov46092452016-04-28 16:07:27 +02002437}
2438
2439static void cancel_map_check(struct ceph_osd_request *req)
2440{
2441 struct ceph_osd_client *osdc = req->r_osdc;
2442 struct ceph_osd_request *lookup_req;
2443
2444 verify_osdc_wrlocked(osdc);
2445
2446 lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
2447 if (!lookup_req)
2448 return;
2449
2450 WARN_ON(lookup_req != req);
2451 erase_request_mc(&osdc->map_checks, req);
2452 ceph_osdc_put_request(req);
2453}
2454
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002455static void cancel_request(struct ceph_osd_request *req)
2456{
2457 dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
2458
Ilya Dryomov46092452016-04-28 16:07:27 +02002459 cancel_map_check(req);
Ilya Dryomov45ee2c12016-12-02 14:01:55 +01002460 finish_request(req);
Ilya Dryomovb18b9552017-02-11 18:46:08 +01002461 complete_all(&req->r_completion);
Ilya Dryomovc297eb422016-12-02 14:01:55 +01002462 ceph_osdc_put_request(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02002463}
2464
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01002465static void abort_request(struct ceph_osd_request *req, int err)
2466{
2467 dout("%s req %p tid %llu err %d\n", __func__, req, req->r_tid, err);
2468
2469 cancel_map_check(req);
2470 complete_request(req, err);
2471}
2472
Ilya Dryomov66850df2018-05-15 15:47:58 +02002473static int abort_fn(struct ceph_osd_request *req, void *arg)
2474{
2475 int err = *(int *)arg;
2476
2477 abort_request(req, err);
2478 return 0; /* continue iteration */
2479}
2480
2481/*
2482 * Abort all in-flight requests with @err and arrange for all future
2483 * requests to be failed immediately.
2484 */
2485void ceph_osdc_abort_requests(struct ceph_osd_client *osdc, int err)
2486{
2487 dout("%s osdc %p err %d\n", __func__, osdc, err);
2488 down_write(&osdc->lock);
2489 for_each_request(osdc, abort_fn, &err);
2490 osdc->abort_err = err;
2491 up_write(&osdc->lock);
2492}
2493EXPORT_SYMBOL(ceph_osdc_abort_requests);
2494
Yan, Zheng2cef0ba2019-07-25 20:16:40 +08002495void ceph_osdc_clear_abort_err(struct ceph_osd_client *osdc)
2496{
2497 down_write(&osdc->lock);
2498 osdc->abort_err = 0;
2499 up_write(&osdc->lock);
2500}
2501EXPORT_SYMBOL(ceph_osdc_clear_abort_err);
2502
Jeff Layton58eb7932017-04-18 09:21:16 -04002503static void update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
2504{
2505 if (likely(eb > osdc->epoch_barrier)) {
2506 dout("updating epoch_barrier from %u to %u\n",
2507 osdc->epoch_barrier, eb);
2508 osdc->epoch_barrier = eb;
2509 /* Request map if we're not to the barrier yet */
2510 if (eb > osdc->osdmap->epoch)
2511 maybe_request_map(osdc);
2512 }
2513}
2514
2515void ceph_osdc_update_epoch_barrier(struct ceph_osd_client *osdc, u32 eb)
2516{
2517 down_read(&osdc->lock);
2518 if (unlikely(eb > osdc->epoch_barrier)) {
2519 up_read(&osdc->lock);
2520 down_write(&osdc->lock);
2521 update_epoch_barrier(osdc, eb);
2522 up_write(&osdc->lock);
2523 } else {
2524 up_read(&osdc->lock);
2525 }
2526}
2527EXPORT_SYMBOL(ceph_osdc_update_epoch_barrier);
2528
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04002529/*
Ilya Dryomov4eea0fe2018-05-16 18:21:34 +02002530 * We can end up releasing caps as a result of abort_request().
2531 * In that case, we probably want to ensure that the cap release message
2532 * has an updated epoch barrier in it, so set the epoch barrier prior to
2533 * aborting the first request.
2534 */
2535static int abort_on_full_fn(struct ceph_osd_request *req, void *arg)
2536{
2537 struct ceph_osd_client *osdc = req->r_osdc;
2538 bool *victims = arg;
2539
Ilya Dryomovc843d132018-05-30 16:29:14 +02002540 if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
Ilya Dryomov4eea0fe2018-05-16 18:21:34 +02002541 (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
Ilya Dryomov690f9512018-05-30 14:58:25 +02002542 pool_full(osdc, req->r_t.base_oloc.pool))) {
Ilya Dryomov4eea0fe2018-05-16 18:21:34 +02002543 if (!*victims) {
2544 update_epoch_barrier(osdc, osdc->osdmap->epoch);
2545 *victims = true;
2546 }
2547 abort_request(req, -ENOSPC);
2548 }
2549
2550 return 0; /* continue iteration */
2551}
2552
2553/*
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04002554 * Drop all pending requests that are stalled waiting on a full condition to
Jeff Layton58eb7932017-04-18 09:21:16 -04002555 * clear, and complete them with ENOSPC as the return code. Set the
2556 * osdc->epoch_barrier to the latest map epoch that we've seen if any were
2557 * cancelled.
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04002558 */
2559static void ceph_osdc_abort_on_full(struct ceph_osd_client *osdc)
2560{
Jeff Layton58eb7932017-04-18 09:21:16 -04002561 bool victims = false;
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04002562
Dongsheng Yang02b2f542018-12-18 04:31:48 -05002563 if (ceph_test_opt(osdc->client, ABORT_ON_FULL) &&
Ilya Dryomovc843d132018-05-30 16:29:14 +02002564 (ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) || have_pool_full(osdc)))
Ilya Dryomov4eea0fe2018-05-16 18:21:34 +02002565 for_each_request(osdc, abort_on_full_fn, &victims);
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04002566}
2567
Ilya Dryomov46092452016-04-28 16:07:27 +02002568static void check_pool_dne(struct ceph_osd_request *req)
2569{
2570 struct ceph_osd_client *osdc = req->r_osdc;
2571 struct ceph_osdmap *map = osdc->osdmap;
2572
2573 verify_osdc_wrlocked(osdc);
2574 WARN_ON(!map->epoch);
2575
2576 if (req->r_attempts) {
2577 /*
2578 * We sent a request earlier, which means that
2579 * previously the pool existed, and now it does not
2580 * (i.e., it was deleted).
2581 */
2582 req->r_map_dne_bound = map->epoch;
2583 dout("%s req %p tid %llu pool disappeared\n", __func__, req,
2584 req->r_tid);
2585 } else {
2586 dout("%s req %p tid %llu map_dne_bound %u have %u\n", __func__,
2587 req, req->r_tid, req->r_map_dne_bound, map->epoch);
2588 }
2589
2590 if (req->r_map_dne_bound) {
2591 if (map->epoch >= req->r_map_dne_bound) {
2592 /* we had a new enough map */
2593 pr_info_ratelimited("tid %llu pool does not exist\n",
2594 req->r_tid);
2595 complete_request(req, -ENOENT);
2596 }
2597 } else {
2598 send_map_check(req);
2599 }
2600}
2601
2602static void map_check_cb(struct ceph_mon_generic_request *greq)
2603{
2604 struct ceph_osd_client *osdc = &greq->monc->client->osdc;
2605 struct ceph_osd_request *req;
2606 u64 tid = greq->private_data;
2607
2608 WARN_ON(greq->result || !greq->u.newest);
2609
2610 down_write(&osdc->lock);
2611 req = lookup_request_mc(&osdc->map_checks, tid);
2612 if (!req) {
2613 dout("%s tid %llu dne\n", __func__, tid);
2614 goto out_unlock;
2615 }
2616
2617 dout("%s req %p tid %llu map_dne_bound %u newest %llu\n", __func__,
2618 req, req->r_tid, req->r_map_dne_bound, greq->u.newest);
2619 if (!req->r_map_dne_bound)
2620 req->r_map_dne_bound = greq->u.newest;
2621 erase_request_mc(&osdc->map_checks, req);
2622 check_pool_dne(req);
2623
2624 ceph_osdc_put_request(req);
2625out_unlock:
2626 up_write(&osdc->lock);
2627}
2628
2629static void send_map_check(struct ceph_osd_request *req)
2630{
2631 struct ceph_osd_client *osdc = req->r_osdc;
2632 struct ceph_osd_request *lookup_req;
2633 int ret;
2634
2635 verify_osdc_wrlocked(osdc);
2636
2637 lookup_req = lookup_request_mc(&osdc->map_checks, req->r_tid);
2638 if (lookup_req) {
2639 WARN_ON(lookup_req != req);
2640 return;
2641 }
2642
2643 ceph_osdc_get_request(req);
2644 insert_request_mc(&osdc->map_checks, req);
2645 ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
2646 map_check_cb, req->r_tid);
2647 WARN_ON(ret);
2648}
2649
Ilya Dryomov0bbfdfe2014-01-31 19:33:39 +02002650/*
Ilya Dryomov922dab62016-05-26 01:15:02 +02002651 * lingering requests, watch/notify v2 infrastructure
2652 */
2653static void linger_release(struct kref *kref)
2654{
2655 struct ceph_osd_linger_request *lreq =
2656 container_of(kref, struct ceph_osd_linger_request, kref);
2657
2658 dout("%s lreq %p reg_req %p ping_req %p\n", __func__, lreq,
2659 lreq->reg_req, lreq->ping_req);
2660 WARN_ON(!RB_EMPTY_NODE(&lreq->node));
2661 WARN_ON(!RB_EMPTY_NODE(&lreq->osdc_node));
Ilya Dryomov46092452016-04-28 16:07:27 +02002662 WARN_ON(!RB_EMPTY_NODE(&lreq->mc_node));
Ilya Dryomov922dab62016-05-26 01:15:02 +02002663 WARN_ON(!list_empty(&lreq->scan_item));
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002664 WARN_ON(!list_empty(&lreq->pending_lworks));
Ilya Dryomov922dab62016-05-26 01:15:02 +02002665 WARN_ON(lreq->osd);
2666
2667 if (lreq->reg_req)
2668 ceph_osdc_put_request(lreq->reg_req);
2669 if (lreq->ping_req)
2670 ceph_osdc_put_request(lreq->ping_req);
2671 target_destroy(&lreq->t);
2672 kfree(lreq);
2673}
2674
2675static void linger_put(struct ceph_osd_linger_request *lreq)
2676{
2677 if (lreq)
2678 kref_put(&lreq->kref, linger_release);
2679}
2680
2681static struct ceph_osd_linger_request *
2682linger_get(struct ceph_osd_linger_request *lreq)
2683{
2684 kref_get(&lreq->kref);
2685 return lreq;
2686}
2687
2688static struct ceph_osd_linger_request *
2689linger_alloc(struct ceph_osd_client *osdc)
2690{
2691 struct ceph_osd_linger_request *lreq;
2692
2693 lreq = kzalloc(sizeof(*lreq), GFP_NOIO);
2694 if (!lreq)
2695 return NULL;
2696
2697 kref_init(&lreq->kref);
2698 mutex_init(&lreq->lock);
2699 RB_CLEAR_NODE(&lreq->node);
2700 RB_CLEAR_NODE(&lreq->osdc_node);
Ilya Dryomov46092452016-04-28 16:07:27 +02002701 RB_CLEAR_NODE(&lreq->mc_node);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002702 INIT_LIST_HEAD(&lreq->scan_item);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002703 INIT_LIST_HEAD(&lreq->pending_lworks);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002704 init_completion(&lreq->reg_commit_wait);
Ilya Dryomov19079202016-04-28 16:07:27 +02002705 init_completion(&lreq->notify_finish_wait);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002706
2707 lreq->osdc = osdc;
2708 target_init(&lreq->t);
2709
2710 dout("%s lreq %p\n", __func__, lreq);
2711 return lreq;
2712}
2713
2714DEFINE_RB_INSDEL_FUNCS(linger, struct ceph_osd_linger_request, linger_id, node)
2715DEFINE_RB_FUNCS(linger_osdc, struct ceph_osd_linger_request, linger_id, osdc_node)
Ilya Dryomov46092452016-04-28 16:07:27 +02002716DEFINE_RB_FUNCS(linger_mc, struct ceph_osd_linger_request, linger_id, mc_node)
Ilya Dryomov922dab62016-05-26 01:15:02 +02002717
2718/*
2719 * Create linger request <-> OSD session relation.
2720 *
2721 * @lreq has to be registered, @osd may be homeless.
2722 */
2723static void link_linger(struct ceph_osd *osd,
2724 struct ceph_osd_linger_request *lreq)
2725{
2726 verify_osd_locked(osd);
2727 WARN_ON(!lreq->linger_id || lreq->osd);
2728 dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2729 osd->o_osd, lreq, lreq->linger_id);
2730
2731 if (!osd_homeless(osd))
2732 __remove_osd_from_lru(osd);
2733 else
2734 atomic_inc(&osd->o_osdc->num_homeless);
2735
2736 get_osd(osd);
2737 insert_linger(&osd->o_linger_requests, lreq);
2738 lreq->osd = osd;
2739}
2740
2741static void unlink_linger(struct ceph_osd *osd,
2742 struct ceph_osd_linger_request *lreq)
2743{
2744 verify_osd_locked(osd);
2745 WARN_ON(lreq->osd != osd);
2746 dout("%s osd %p osd%d lreq %p linger_id %llu\n", __func__, osd,
2747 osd->o_osd, lreq, lreq->linger_id);
2748
2749 lreq->osd = NULL;
2750 erase_linger(&osd->o_linger_requests, lreq);
2751 put_osd(osd);
2752
2753 if (!osd_homeless(osd))
2754 maybe_move_osd_to_lru(osd);
2755 else
2756 atomic_dec(&osd->o_osdc->num_homeless);
2757}
2758
2759static bool __linger_registered(struct ceph_osd_linger_request *lreq)
2760{
2761 verify_osdc_locked(lreq->osdc);
2762
2763 return !RB_EMPTY_NODE(&lreq->osdc_node);
2764}
2765
2766static bool linger_registered(struct ceph_osd_linger_request *lreq)
2767{
2768 struct ceph_osd_client *osdc = lreq->osdc;
2769 bool registered;
2770
2771 down_read(&osdc->lock);
2772 registered = __linger_registered(lreq);
2773 up_read(&osdc->lock);
2774
2775 return registered;
2776}
2777
2778static void linger_register(struct ceph_osd_linger_request *lreq)
2779{
2780 struct ceph_osd_client *osdc = lreq->osdc;
2781
2782 verify_osdc_wrlocked(osdc);
2783 WARN_ON(lreq->linger_id);
2784
2785 linger_get(lreq);
2786 lreq->linger_id = ++osdc->last_linger_id;
2787 insert_linger_osdc(&osdc->linger_requests, lreq);
2788}
2789
2790static void linger_unregister(struct ceph_osd_linger_request *lreq)
2791{
2792 struct ceph_osd_client *osdc = lreq->osdc;
2793
2794 verify_osdc_wrlocked(osdc);
2795
2796 erase_linger_osdc(&osdc->linger_requests, lreq);
2797 linger_put(lreq);
2798}
2799
2800static void cancel_linger_request(struct ceph_osd_request *req)
2801{
2802 struct ceph_osd_linger_request *lreq = req->r_priv;
2803
2804 WARN_ON(!req->r_linger);
2805 cancel_request(req);
2806 linger_put(lreq);
2807}
2808
2809struct linger_work {
2810 struct work_struct work;
2811 struct ceph_osd_linger_request *lreq;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002812 struct list_head pending_item;
2813 unsigned long queued_stamp;
Ilya Dryomov922dab62016-05-26 01:15:02 +02002814
2815 union {
2816 struct {
2817 u64 notify_id;
2818 u64 notifier_id;
2819 void *payload; /* points into @msg front */
2820 size_t payload_len;
2821
2822 struct ceph_msg *msg; /* for ceph_msg_put() */
2823 } notify;
2824 struct {
2825 int err;
2826 } error;
2827 };
2828};
2829
2830static struct linger_work *lwork_alloc(struct ceph_osd_linger_request *lreq,
2831 work_func_t workfn)
2832{
2833 struct linger_work *lwork;
2834
2835 lwork = kzalloc(sizeof(*lwork), GFP_NOIO);
2836 if (!lwork)
2837 return NULL;
2838
2839 INIT_WORK(&lwork->work, workfn);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002840 INIT_LIST_HEAD(&lwork->pending_item);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002841 lwork->lreq = linger_get(lreq);
2842
2843 return lwork;
2844}
2845
2846static void lwork_free(struct linger_work *lwork)
2847{
2848 struct ceph_osd_linger_request *lreq = lwork->lreq;
2849
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002850 mutex_lock(&lreq->lock);
2851 list_del(&lwork->pending_item);
2852 mutex_unlock(&lreq->lock);
2853
Ilya Dryomov922dab62016-05-26 01:15:02 +02002854 linger_put(lreq);
2855 kfree(lwork);
2856}
2857
2858static void lwork_queue(struct linger_work *lwork)
2859{
2860 struct ceph_osd_linger_request *lreq = lwork->lreq;
2861 struct ceph_osd_client *osdc = lreq->osdc;
2862
2863 verify_lreq_locked(lreq);
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02002864 WARN_ON(!list_empty(&lwork->pending_item));
2865
2866 lwork->queued_stamp = jiffies;
2867 list_add_tail(&lwork->pending_item, &lreq->pending_lworks);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002868 queue_work(osdc->notify_wq, &lwork->work);
2869}
2870
2871static void do_watch_notify(struct work_struct *w)
2872{
2873 struct linger_work *lwork = container_of(w, struct linger_work, work);
2874 struct ceph_osd_linger_request *lreq = lwork->lreq;
2875
2876 if (!linger_registered(lreq)) {
2877 dout("%s lreq %p not registered\n", __func__, lreq);
2878 goto out;
2879 }
2880
Ilya Dryomov19079202016-04-28 16:07:27 +02002881 WARN_ON(!lreq->is_watch);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002882 dout("%s lreq %p notify_id %llu notifier_id %llu payload_len %zu\n",
2883 __func__, lreq, lwork->notify.notify_id, lwork->notify.notifier_id,
2884 lwork->notify.payload_len);
2885 lreq->wcb(lreq->data, lwork->notify.notify_id, lreq->linger_id,
2886 lwork->notify.notifier_id, lwork->notify.payload,
2887 lwork->notify.payload_len);
2888
2889out:
2890 ceph_msg_put(lwork->notify.msg);
2891 lwork_free(lwork);
2892}
2893
2894static void do_watch_error(struct work_struct *w)
2895{
2896 struct linger_work *lwork = container_of(w, struct linger_work, work);
2897 struct ceph_osd_linger_request *lreq = lwork->lreq;
2898
2899 if (!linger_registered(lreq)) {
2900 dout("%s lreq %p not registered\n", __func__, lreq);
2901 goto out;
2902 }
2903
2904 dout("%s lreq %p err %d\n", __func__, lreq, lwork->error.err);
2905 lreq->errcb(lreq->data, lreq->linger_id, lwork->error.err);
2906
2907out:
2908 lwork_free(lwork);
2909}
2910
2911static void queue_watch_error(struct ceph_osd_linger_request *lreq)
2912{
2913 struct linger_work *lwork;
2914
2915 lwork = lwork_alloc(lreq, do_watch_error);
2916 if (!lwork) {
2917 pr_err("failed to allocate error-lwork\n");
2918 return;
2919 }
2920
2921 lwork->error.err = lreq->last_error;
2922 lwork_queue(lwork);
2923}
2924
2925static void linger_reg_commit_complete(struct ceph_osd_linger_request *lreq,
2926 int result)
2927{
2928 if (!completion_done(&lreq->reg_commit_wait)) {
2929 lreq->reg_commit_error = (result <= 0 ? result : 0);
2930 complete_all(&lreq->reg_commit_wait);
2931 }
2932}
2933
2934static void linger_commit_cb(struct ceph_osd_request *req)
2935{
2936 struct ceph_osd_linger_request *lreq = req->r_priv;
2937
2938 mutex_lock(&lreq->lock);
2939 dout("%s lreq %p linger_id %llu result %d\n", __func__, lreq,
2940 lreq->linger_id, req->r_result);
Ilya Dryomov922dab62016-05-26 01:15:02 +02002941 linger_reg_commit_complete(lreq, req->r_result);
2942 lreq->committed = true;
2943
Ilya Dryomov19079202016-04-28 16:07:27 +02002944 if (!lreq->is_watch) {
2945 struct ceph_osd_data *osd_data =
2946 osd_req_op_data(req, 0, notify, response_data);
2947 void *p = page_address(osd_data->pages[0]);
2948
2949 WARN_ON(req->r_ops[0].op != CEPH_OSD_OP_NOTIFY ||
2950 osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
2951
2952 /* make note of the notify_id */
2953 if (req->r_ops[0].outdata_len >= sizeof(u64)) {
2954 lreq->notify_id = ceph_decode_64(&p);
2955 dout("lreq %p notify_id %llu\n", lreq,
2956 lreq->notify_id);
2957 } else {
2958 dout("lreq %p no notify_id\n", lreq);
2959 }
2960 }
2961
Ilya Dryomov922dab62016-05-26 01:15:02 +02002962 mutex_unlock(&lreq->lock);
2963 linger_put(lreq);
2964}
2965
2966static int normalize_watch_error(int err)
2967{
2968 /*
2969 * Translate ENOENT -> ENOTCONN so that a delete->disconnection
2970 * notification and a failure to reconnect because we raced with
2971 * the delete appear the same to the user.
2972 */
2973 if (err == -ENOENT)
2974 err = -ENOTCONN;
2975
2976 return err;
2977}
2978
2979static void linger_reconnect_cb(struct ceph_osd_request *req)
2980{
2981 struct ceph_osd_linger_request *lreq = req->r_priv;
2982
2983 mutex_lock(&lreq->lock);
2984 dout("%s lreq %p linger_id %llu result %d last_error %d\n", __func__,
2985 lreq, lreq->linger_id, req->r_result, lreq->last_error);
2986 if (req->r_result < 0) {
2987 if (!lreq->last_error) {
2988 lreq->last_error = normalize_watch_error(req->r_result);
2989 queue_watch_error(lreq);
2990 }
2991 }
2992
2993 mutex_unlock(&lreq->lock);
2994 linger_put(lreq);
2995}
2996
2997static void send_linger(struct ceph_osd_linger_request *lreq)
2998{
2999 struct ceph_osd_request *req = lreq->reg_req;
3000 struct ceph_osd_req_op *op = &req->r_ops[0];
3001
3002 verify_osdc_wrlocked(req->r_osdc);
3003 dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3004
3005 if (req->r_osd)
3006 cancel_linger_request(req);
3007
3008 request_reinit(req);
3009 ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
3010 ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
3011 req->r_flags = lreq->t.flags;
3012 req->r_mtime = lreq->mtime;
3013
3014 mutex_lock(&lreq->lock);
Ilya Dryomov19079202016-04-28 16:07:27 +02003015 if (lreq->is_watch && lreq->committed) {
Ilya Dryomov922dab62016-05-26 01:15:02 +02003016 WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
3017 op->watch.cookie != lreq->linger_id);
3018 op->watch.op = CEPH_OSD_WATCH_OP_RECONNECT;
3019 op->watch.gen = ++lreq->register_gen;
3020 dout("lreq %p reconnect register_gen %u\n", lreq,
3021 op->watch.gen);
3022 req->r_callback = linger_reconnect_cb;
3023 } else {
Ilya Dryomov19079202016-04-28 16:07:27 +02003024 if (!lreq->is_watch)
3025 lreq->notify_id = 0;
3026 else
3027 WARN_ON(op->watch.op != CEPH_OSD_WATCH_OP_WATCH);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003028 dout("lreq %p register\n", lreq);
3029 req->r_callback = linger_commit_cb;
3030 }
3031 mutex_unlock(&lreq->lock);
3032
3033 req->r_priv = linger_get(lreq);
3034 req->r_linger = true;
3035
3036 submit_request(req, true);
3037}
3038
3039static void linger_ping_cb(struct ceph_osd_request *req)
3040{
3041 struct ceph_osd_linger_request *lreq = req->r_priv;
3042
3043 mutex_lock(&lreq->lock);
3044 dout("%s lreq %p linger_id %llu result %d ping_sent %lu last_error %d\n",
3045 __func__, lreq, lreq->linger_id, req->r_result, lreq->ping_sent,
3046 lreq->last_error);
3047 if (lreq->register_gen == req->r_ops[0].watch.gen) {
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02003048 if (!req->r_result) {
3049 lreq->watch_valid_thru = lreq->ping_sent;
3050 } else if (!lreq->last_error) {
Ilya Dryomov922dab62016-05-26 01:15:02 +02003051 lreq->last_error = normalize_watch_error(req->r_result);
3052 queue_watch_error(lreq);
3053 }
3054 } else {
3055 dout("lreq %p register_gen %u ignoring old pong %u\n", lreq,
3056 lreq->register_gen, req->r_ops[0].watch.gen);
3057 }
3058
3059 mutex_unlock(&lreq->lock);
3060 linger_put(lreq);
3061}
3062
3063static void send_linger_ping(struct ceph_osd_linger_request *lreq)
3064{
3065 struct ceph_osd_client *osdc = lreq->osdc;
3066 struct ceph_osd_request *req = lreq->ping_req;
3067 struct ceph_osd_req_op *op = &req->r_ops[0];
3068
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02003069 if (ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD)) {
Ilya Dryomov922dab62016-05-26 01:15:02 +02003070 dout("%s PAUSERD\n", __func__);
3071 return;
3072 }
3073
3074 lreq->ping_sent = jiffies;
3075 dout("%s lreq %p linger_id %llu ping_sent %lu register_gen %u\n",
3076 __func__, lreq, lreq->linger_id, lreq->ping_sent,
3077 lreq->register_gen);
3078
3079 if (req->r_osd)
3080 cancel_linger_request(req);
3081
3082 request_reinit(req);
3083 target_copy(&req->r_t, &lreq->t);
3084
3085 WARN_ON(op->op != CEPH_OSD_OP_WATCH ||
3086 op->watch.cookie != lreq->linger_id ||
3087 op->watch.op != CEPH_OSD_WATCH_OP_PING);
3088 op->watch.gen = lreq->register_gen;
3089 req->r_callback = linger_ping_cb;
3090 req->r_priv = linger_get(lreq);
3091 req->r_linger = true;
3092
3093 ceph_osdc_get_request(req);
3094 account_request(req);
3095 req->r_tid = atomic64_inc_return(&osdc->last_tid);
3096 link_request(lreq->osd, req);
3097 send_request(req);
3098}
3099
3100static void linger_submit(struct ceph_osd_linger_request *lreq)
3101{
3102 struct ceph_osd_client *osdc = lreq->osdc;
3103 struct ceph_osd *osd;
3104
Ilya Dryomov81c65212018-10-11 12:58:33 +02003105 down_write(&osdc->lock);
3106 linger_register(lreq);
3107 if (lreq->is_watch) {
3108 lreq->reg_req->r_ops[0].watch.cookie = lreq->linger_id;
3109 lreq->ping_req->r_ops[0].watch.cookie = lreq->linger_id;
3110 } else {
3111 lreq->reg_req->r_ops[0].notify.cookie = lreq->linger_id;
3112 }
3113
Ilya Dryomov8edf84b2019-08-21 13:57:18 +02003114 calc_target(osdc, &lreq->t, false);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003115 osd = lookup_create_osd(osdc, lreq->t.osd, true);
3116 link_linger(osd, lreq);
3117
3118 send_linger(lreq);
Ilya Dryomov81c65212018-10-11 12:58:33 +02003119 up_write(&osdc->lock);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003120}
3121
Ilya Dryomov46092452016-04-28 16:07:27 +02003122static void cancel_linger_map_check(struct ceph_osd_linger_request *lreq)
3123{
3124 struct ceph_osd_client *osdc = lreq->osdc;
3125 struct ceph_osd_linger_request *lookup_lreq;
3126
3127 verify_osdc_wrlocked(osdc);
3128
3129 lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
3130 lreq->linger_id);
3131 if (!lookup_lreq)
3132 return;
3133
3134 WARN_ON(lookup_lreq != lreq);
3135 erase_linger_mc(&osdc->linger_map_checks, lreq);
3136 linger_put(lreq);
3137}
3138
Ilya Dryomov922dab62016-05-26 01:15:02 +02003139/*
3140 * @lreq has to be both registered and linked.
3141 */
3142static void __linger_cancel(struct ceph_osd_linger_request *lreq)
3143{
Ilya Dryomov19079202016-04-28 16:07:27 +02003144 if (lreq->is_watch && lreq->ping_req->r_osd)
Ilya Dryomov922dab62016-05-26 01:15:02 +02003145 cancel_linger_request(lreq->ping_req);
3146 if (lreq->reg_req->r_osd)
3147 cancel_linger_request(lreq->reg_req);
Ilya Dryomov46092452016-04-28 16:07:27 +02003148 cancel_linger_map_check(lreq);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003149 unlink_linger(lreq->osd, lreq);
3150 linger_unregister(lreq);
3151}
3152
3153static void linger_cancel(struct ceph_osd_linger_request *lreq)
3154{
3155 struct ceph_osd_client *osdc = lreq->osdc;
3156
3157 down_write(&osdc->lock);
3158 if (__linger_registered(lreq))
3159 __linger_cancel(lreq);
3160 up_write(&osdc->lock);
3161}
3162
Ilya Dryomov46092452016-04-28 16:07:27 +02003163static void send_linger_map_check(struct ceph_osd_linger_request *lreq);
3164
3165static void check_linger_pool_dne(struct ceph_osd_linger_request *lreq)
3166{
3167 struct ceph_osd_client *osdc = lreq->osdc;
3168 struct ceph_osdmap *map = osdc->osdmap;
3169
3170 verify_osdc_wrlocked(osdc);
3171 WARN_ON(!map->epoch);
3172
3173 if (lreq->register_gen) {
3174 lreq->map_dne_bound = map->epoch;
3175 dout("%s lreq %p linger_id %llu pool disappeared\n", __func__,
3176 lreq, lreq->linger_id);
3177 } else {
3178 dout("%s lreq %p linger_id %llu map_dne_bound %u have %u\n",
3179 __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
3180 map->epoch);
3181 }
3182
3183 if (lreq->map_dne_bound) {
3184 if (map->epoch >= lreq->map_dne_bound) {
3185 /* we had a new enough map */
3186 pr_info("linger_id %llu pool does not exist\n",
3187 lreq->linger_id);
3188 linger_reg_commit_complete(lreq, -ENOENT);
3189 __linger_cancel(lreq);
3190 }
3191 } else {
3192 send_linger_map_check(lreq);
3193 }
3194}
3195
3196static void linger_map_check_cb(struct ceph_mon_generic_request *greq)
3197{
3198 struct ceph_osd_client *osdc = &greq->monc->client->osdc;
3199 struct ceph_osd_linger_request *lreq;
3200 u64 linger_id = greq->private_data;
3201
3202 WARN_ON(greq->result || !greq->u.newest);
3203
3204 down_write(&osdc->lock);
3205 lreq = lookup_linger_mc(&osdc->linger_map_checks, linger_id);
3206 if (!lreq) {
3207 dout("%s linger_id %llu dne\n", __func__, linger_id);
3208 goto out_unlock;
3209 }
3210
3211 dout("%s lreq %p linger_id %llu map_dne_bound %u newest %llu\n",
3212 __func__, lreq, lreq->linger_id, lreq->map_dne_bound,
3213 greq->u.newest);
3214 if (!lreq->map_dne_bound)
3215 lreq->map_dne_bound = greq->u.newest;
3216 erase_linger_mc(&osdc->linger_map_checks, lreq);
3217 check_linger_pool_dne(lreq);
3218
3219 linger_put(lreq);
3220out_unlock:
3221 up_write(&osdc->lock);
3222}
3223
3224static void send_linger_map_check(struct ceph_osd_linger_request *lreq)
3225{
3226 struct ceph_osd_client *osdc = lreq->osdc;
3227 struct ceph_osd_linger_request *lookup_lreq;
3228 int ret;
3229
3230 verify_osdc_wrlocked(osdc);
3231
3232 lookup_lreq = lookup_linger_mc(&osdc->linger_map_checks,
3233 lreq->linger_id);
3234 if (lookup_lreq) {
3235 WARN_ON(lookup_lreq != lreq);
3236 return;
3237 }
3238
3239 linger_get(lreq);
3240 insert_linger_mc(&osdc->linger_map_checks, lreq);
3241 ret = ceph_monc_get_version_async(&osdc->client->monc, "osdmap",
3242 linger_map_check_cb, lreq->linger_id);
3243 WARN_ON(ret);
3244}
3245
Ilya Dryomov922dab62016-05-26 01:15:02 +02003246static int linger_reg_commit_wait(struct ceph_osd_linger_request *lreq)
3247{
3248 int ret;
3249
3250 dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3251 ret = wait_for_completion_interruptible(&lreq->reg_commit_wait);
3252 return ret ?: lreq->reg_commit_error;
3253}
3254
Ilya Dryomov19079202016-04-28 16:07:27 +02003255static int linger_notify_finish_wait(struct ceph_osd_linger_request *lreq)
3256{
3257 int ret;
3258
3259 dout("%s lreq %p linger_id %llu\n", __func__, lreq, lreq->linger_id);
3260 ret = wait_for_completion_interruptible(&lreq->notify_finish_wait);
3261 return ret ?: lreq->notify_finish_error;
3262}
3263
Ilya Dryomov922dab62016-05-26 01:15:02 +02003264/*
Ilya Dryomovfbca9632016-04-28 16:07:24 +02003265 * Timeout callback, called every N seconds. When 1 or more OSD
3266 * requests has been active for more than N seconds, we send a keepalive
3267 * (tag + timestamp) to its OSD to ensure any communications channel
3268 * reset is detected.
Sage Weilf24e9982009-10-06 11:31:10 -07003269 */
3270static void handle_timeout(struct work_struct *work)
3271{
3272 struct ceph_osd_client *osdc =
3273 container_of(work, struct ceph_osd_client, timeout_work.work);
Ilya Dryomova319bf52015-05-15 12:02:17 +03003274 struct ceph_options *opts = osdc->client->options;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003275 unsigned long cutoff = jiffies - opts->osd_keepalive_timeout;
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01003276 unsigned long expiry_cutoff = jiffies - opts->osd_request_timeout;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003277 LIST_HEAD(slow_osds);
3278 struct rb_node *n, *p;
Sage Weilf24e9982009-10-06 11:31:10 -07003279
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003280 dout("%s osdc %p\n", __func__, osdc);
3281 down_write(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07003282
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003283 /*
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003284 * ping osds that are a bit slow. this ensures that if there
3285 * is a break in the TCP connection we will notice, and reopen
3286 * a connection with that osd (from the fault callback).
3287 */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003288 for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
3289 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
3290 bool found = false;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003291
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01003292 for (p = rb_first(&osd->o_requests); p; ) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003293 struct ceph_osd_request *req =
3294 rb_entry(p, struct ceph_osd_request, r_node);
3295
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01003296 p = rb_next(p); /* abort_request() */
3297
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003298 if (time_before(req->r_stamp, cutoff)) {
3299 dout(" req %p tid %llu on osd%d is laggy\n",
3300 req, req->r_tid, osd->o_osd);
3301 found = true;
3302 }
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01003303 if (opts->osd_request_timeout &&
3304 time_before(req->r_start_stamp, expiry_cutoff)) {
3305 pr_err_ratelimited("tid %llu on osd%d timeout\n",
3306 req->r_tid, osd->o_osd);
3307 abort_request(req, -ETIMEDOUT);
3308 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003309 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02003310 for (p = rb_first(&osd->o_linger_requests); p; p = rb_next(p)) {
3311 struct ceph_osd_linger_request *lreq =
3312 rb_entry(p, struct ceph_osd_linger_request, node);
3313
3314 dout(" lreq %p linger_id %llu is served by osd%d\n",
3315 lreq, lreq->linger_id, osd->o_osd);
3316 found = true;
3317
3318 mutex_lock(&lreq->lock);
Ilya Dryomov19079202016-04-28 16:07:27 +02003319 if (lreq->is_watch && lreq->committed && !lreq->last_error)
Ilya Dryomov922dab62016-05-26 01:15:02 +02003320 send_linger_ping(lreq);
3321 mutex_unlock(&lreq->lock);
3322 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003323
3324 if (found)
3325 list_move_tail(&osd->o_keepalive_item, &slow_osds);
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003326 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003327
Ilya Dryomov7cc5e382017-02-12 17:11:07 +01003328 if (opts->osd_request_timeout) {
3329 for (p = rb_first(&osdc->homeless_osd.o_requests); p; ) {
3330 struct ceph_osd_request *req =
3331 rb_entry(p, struct ceph_osd_request, r_node);
3332
3333 p = rb_next(p); /* abort_request() */
3334
3335 if (time_before(req->r_start_stamp, expiry_cutoff)) {
3336 pr_err_ratelimited("tid %llu on osd%d timeout\n",
3337 req->r_tid, osdc->homeless_osd.o_osd);
3338 abort_request(req, -ETIMEDOUT);
3339 }
3340 }
3341 }
3342
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003343 if (atomic_read(&osdc->num_homeless) || !list_empty(&slow_osds))
3344 maybe_request_map(osdc);
3345
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003346 while (!list_empty(&slow_osds)) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003347 struct ceph_osd *osd = list_first_entry(&slow_osds,
3348 struct ceph_osd,
3349 o_keepalive_item);
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003350 list_del_init(&osd->o_keepalive_item);
Sage Weilf24e9982009-10-06 11:31:10 -07003351 ceph_con_keepalive(&osd->o_con);
3352 }
3353
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003354 up_write(&osdc->lock);
Ilya Dryomovfbca9632016-04-28 16:07:24 +02003355 schedule_delayed_work(&osdc->timeout_work,
3356 osdc->client->options->osd_keepalive_timeout);
Sage Weilf24e9982009-10-06 11:31:10 -07003357}
3358
Yehuda Sadehf5a20412010-02-03 11:00:26 -08003359static void handle_osds_timeout(struct work_struct *work)
3360{
3361 struct ceph_osd_client *osdc =
3362 container_of(work, struct ceph_osd_client,
3363 osds_timeout_work.work);
Ilya Dryomova319bf52015-05-15 12:02:17 +03003364 unsigned long delay = osdc->client->options->osd_idle_ttl / 4;
Ilya Dryomov42a2c092016-04-28 16:07:22 +02003365 struct ceph_osd *osd, *nosd;
Yehuda Sadehf5a20412010-02-03 11:00:26 -08003366
Ilya Dryomov42a2c092016-04-28 16:07:22 +02003367 dout("%s osdc %p\n", __func__, osdc);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003368 down_write(&osdc->lock);
Ilya Dryomov42a2c092016-04-28 16:07:22 +02003369 list_for_each_entry_safe(osd, nosd, &osdc->osd_lru, o_osd_lru) {
3370 if (time_before(jiffies, osd->lru_ttl))
3371 break;
3372
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003373 WARN_ON(!RB_EMPTY_ROOT(&osd->o_requests));
Ilya Dryomov922dab62016-05-26 01:15:02 +02003374 WARN_ON(!RB_EMPTY_ROOT(&osd->o_linger_requests));
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003375 close_osd(osd);
Ilya Dryomov42a2c092016-04-28 16:07:22 +02003376 }
3377
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003378 up_write(&osdc->lock);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08003379 schedule_delayed_work(&osdc->osds_timeout_work,
3380 round_jiffies_relative(delay));
3381}
3382
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003383static int ceph_oloc_decode(void **p, void *end,
3384 struct ceph_object_locator *oloc)
3385{
3386 u8 struct_v, struct_cv;
3387 u32 len;
3388 void *struct_end;
3389 int ret = 0;
3390
3391 ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3392 struct_v = ceph_decode_8(p);
3393 struct_cv = ceph_decode_8(p);
3394 if (struct_v < 3) {
3395 pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
3396 struct_v, struct_cv);
3397 goto e_inval;
3398 }
3399 if (struct_cv > 6) {
3400 pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
3401 struct_v, struct_cv);
3402 goto e_inval;
3403 }
3404 len = ceph_decode_32(p);
3405 ceph_decode_need(p, end, len, e_inval);
3406 struct_end = *p + len;
3407
3408 oloc->pool = ceph_decode_64(p);
3409 *p += 4; /* skip preferred */
3410
3411 len = ceph_decode_32(p);
3412 if (len > 0) {
3413 pr_warn("ceph_object_locator::key is set\n");
3414 goto e_inval;
3415 }
3416
3417 if (struct_v >= 5) {
Yan, Zhengcd08e0a2016-06-13 19:05:13 +08003418 bool changed = false;
3419
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003420 len = ceph_decode_32(p);
3421 if (len > 0) {
Yan, Zheng30c156d2016-02-14 11:24:31 +08003422 ceph_decode_need(p, end, len, e_inval);
Yan, Zhengcd08e0a2016-06-13 19:05:13 +08003423 if (!oloc->pool_ns ||
3424 ceph_compare_string(oloc->pool_ns, *p, len))
3425 changed = true;
Yan, Zheng30c156d2016-02-14 11:24:31 +08003426 *p += len;
Yan, Zhengcd08e0a2016-06-13 19:05:13 +08003427 } else {
3428 if (oloc->pool_ns)
3429 changed = true;
3430 }
3431 if (changed) {
3432 /* redirect changes namespace */
3433 pr_warn("ceph_object_locator::nspace is changed\n");
3434 goto e_inval;
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003435 }
3436 }
3437
3438 if (struct_v >= 6) {
3439 s64 hash = ceph_decode_64(p);
3440 if (hash != -1) {
3441 pr_warn("ceph_object_locator::hash is set\n");
3442 goto e_inval;
3443 }
3444 }
3445
3446 /* skip the rest */
3447 *p = struct_end;
3448out:
3449 return ret;
3450
3451e_inval:
3452 ret = -EINVAL;
3453 goto out;
3454}
3455
3456static int ceph_redirect_decode(void **p, void *end,
3457 struct ceph_request_redirect *redir)
3458{
3459 u8 struct_v, struct_cv;
3460 u32 len;
3461 void *struct_end;
3462 int ret;
3463
3464 ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
3465 struct_v = ceph_decode_8(p);
3466 struct_cv = ceph_decode_8(p);
3467 if (struct_cv > 1) {
3468 pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
3469 struct_v, struct_cv);
3470 goto e_inval;
3471 }
3472 len = ceph_decode_32(p);
3473 ceph_decode_need(p, end, len, e_inval);
3474 struct_end = *p + len;
3475
3476 ret = ceph_oloc_decode(p, end, &redir->oloc);
3477 if (ret)
3478 goto out;
3479
3480 len = ceph_decode_32(p);
3481 if (len > 0) {
3482 pr_warn("ceph_request_redirect::object_name is set\n");
3483 goto e_inval;
3484 }
3485
3486 len = ceph_decode_32(p);
3487 *p += len; /* skip osd_instructions */
3488
3489 /* skip the rest */
3490 *p = struct_end;
3491out:
3492 return ret;
3493
3494e_inval:
3495 ret = -EINVAL;
3496 goto out;
3497}
3498
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003499struct MOSDOpReply {
3500 struct ceph_pg pgid;
3501 u64 flags;
3502 int result;
3503 u32 epoch;
3504 int num_ops;
3505 u32 outdata_len[CEPH_OSD_MAX_OPS];
3506 s32 rval[CEPH_OSD_MAX_OPS];
3507 int retry_attempt;
3508 struct ceph_eversion replay_version;
3509 u64 user_version;
3510 struct ceph_request_redirect redirect;
3511};
Sage Weil25845472011-06-03 09:37:09 -07003512
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003513static int decode_MOSDOpReply(const struct ceph_msg *msg, struct MOSDOpReply *m)
Sage Weilf24e9982009-10-06 11:31:10 -07003514{
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003515 void *p = msg->front.iov_base;
3516 void *const end = p + msg->front.iov_len;
3517 u16 version = le16_to_cpu(msg->hdr.version);
3518 struct ceph_eversion bad_replay_version;
Ilya Dryomovb0b31a82016-02-03 15:25:48 +01003519 u8 decode_redir;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003520 u32 len;
3521 int ret;
3522 int i;
Sage Weilf24e9982009-10-06 11:31:10 -07003523
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003524 ceph_decode_32_safe(&p, end, len, e_inval);
3525 ceph_decode_need(&p, end, len, e_inval);
3526 p += len; /* skip oid */
Sage Weil1b83bef2013-02-25 16:11:12 -08003527
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003528 ret = ceph_decode_pgid(&p, end, &m->pgid);
3529 if (ret)
3530 return ret;
Sage Weil1b83bef2013-02-25 16:11:12 -08003531
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003532 ceph_decode_64_safe(&p, end, m->flags, e_inval);
3533 ceph_decode_32_safe(&p, end, m->result, e_inval);
3534 ceph_decode_need(&p, end, sizeof(bad_replay_version), e_inval);
3535 memcpy(&bad_replay_version, p, sizeof(bad_replay_version));
3536 p += sizeof(bad_replay_version);
3537 ceph_decode_32_safe(&p, end, m->epoch, e_inval);
Sage Weil1b83bef2013-02-25 16:11:12 -08003538
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003539 ceph_decode_32_safe(&p, end, m->num_ops, e_inval);
3540 if (m->num_ops > ARRAY_SIZE(m->outdata_len))
3541 goto e_inval;
Sage Weil1b83bef2013-02-25 16:11:12 -08003542
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003543 ceph_decode_need(&p, end, m->num_ops * sizeof(struct ceph_osd_op),
3544 e_inval);
3545 for (i = 0; i < m->num_ops; i++) {
Sage Weil1b83bef2013-02-25 16:11:12 -08003546 struct ceph_osd_op *op = p;
Sage Weil1b83bef2013-02-25 16:11:12 -08003547
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003548 m->outdata_len[i] = le32_to_cpu(op->payload_len);
Sage Weil1b83bef2013-02-25 16:11:12 -08003549 p += sizeof(*op);
3550 }
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003551
3552 ceph_decode_32_safe(&p, end, m->retry_attempt, e_inval);
3553 for (i = 0; i < m->num_ops; i++)
3554 ceph_decode_32_safe(&p, end, m->rval[i], e_inval);
3555
3556 if (version >= 5) {
3557 ceph_decode_need(&p, end, sizeof(m->replay_version), e_inval);
3558 memcpy(&m->replay_version, p, sizeof(m->replay_version));
3559 p += sizeof(m->replay_version);
3560 ceph_decode_64_safe(&p, end, m->user_version, e_inval);
3561 } else {
3562 m->replay_version = bad_replay_version; /* struct */
3563 m->user_version = le64_to_cpu(m->replay_version.version);
Sage Weil1b83bef2013-02-25 16:11:12 -08003564 }
3565
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003566 if (version >= 6) {
3567 if (version >= 7)
3568 ceph_decode_8_safe(&p, end, decode_redir, e_inval);
Ilya Dryomovb0b31a82016-02-03 15:25:48 +01003569 else
3570 decode_redir = 1;
3571 } else {
3572 decode_redir = 0;
3573 }
3574
3575 if (decode_redir) {
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003576 ret = ceph_redirect_decode(&p, end, &m->redirect);
3577 if (ret)
3578 return ret;
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003579 } else {
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003580 ceph_oloc_init(&m->redirect.oloc);
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003581 }
3582
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003583 return 0;
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003584
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003585e_inval:
3586 return -EINVAL;
3587}
3588
3589/*
Ilya Dryomovb18b9552017-02-11 18:46:08 +01003590 * Handle MOSDOpReply. Set ->r_result and call the callback if it is
3591 * specified.
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003592 */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003593static void handle_reply(struct ceph_osd *osd, struct ceph_msg *msg)
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003594{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003595 struct ceph_osd_client *osdc = osd->o_osdc;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003596 struct ceph_osd_request *req;
3597 struct MOSDOpReply m;
3598 u64 tid = le64_to_cpu(msg->hdr.tid);
3599 u32 data_len = 0;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003600 int ret;
3601 int i;
3602
3603 dout("%s msg %p tid %llu\n", __func__, msg, tid);
3604
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003605 down_read(&osdc->lock);
3606 if (!osd_registered(osd)) {
3607 dout("%s osd%d unknown\n", __func__, osd->o_osd);
3608 goto out_unlock_osdc;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003609 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003610 WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
3611
3612 mutex_lock(&osd->lock);
3613 req = lookup_request(&osd->o_requests, tid);
3614 if (!req) {
3615 dout("%s osd%d tid %llu unknown\n", __func__, osd->o_osd, tid);
3616 goto out_unlock_session;
3617 }
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003618
Yan, Zhengcd08e0a2016-06-13 19:05:13 +08003619 m.redirect.oloc.pool_ns = req->r_t.target_oloc.pool_ns;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003620 ret = decode_MOSDOpReply(msg, &m);
Yan, Zhengcd08e0a2016-06-13 19:05:13 +08003621 m.redirect.oloc.pool_ns = NULL;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003622 if (ret) {
3623 pr_err("failed to decode MOSDOpReply for tid %llu: %d\n",
3624 req->r_tid, ret);
3625 ceph_msg_dump(msg);
3626 goto fail_request;
3627 }
3628 dout("%s req %p tid %llu flags 0x%llx pgid %llu.%x epoch %u attempt %d v %u'%llu uv %llu\n",
3629 __func__, req, req->r_tid, m.flags, m.pgid.pool, m.pgid.seed,
3630 m.epoch, m.retry_attempt, le32_to_cpu(m.replay_version.epoch),
3631 le64_to_cpu(m.replay_version.version), m.user_version);
3632
3633 if (m.retry_attempt >= 0) {
3634 if (m.retry_attempt != req->r_attempts - 1) {
3635 dout("req %p tid %llu retry_attempt %d != %d, ignoring\n",
3636 req, req->r_tid, m.retry_attempt,
3637 req->r_attempts - 1);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003638 goto out_unlock_session;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003639 }
3640 } else {
3641 WARN_ON(1); /* MOSDOpReply v4 is assumed */
3642 }
3643
3644 if (!ceph_oloc_empty(&m.redirect.oloc)) {
3645 dout("req %p tid %llu redirect pool %lld\n", req, req->r_tid,
3646 m.redirect.oloc.pool);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003647 unlink_request(osd, req);
3648 mutex_unlock(&osd->lock);
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003649
Yan, Zheng30c156d2016-02-14 11:24:31 +08003650 /*
3651 * Not ceph_oloc_copy() - changing pool_ns is not
3652 * supported.
3653 */
3654 req->r_t.target_oloc.pool = m.redirect.oloc.pool;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003655 req->r_flags |= CEPH_OSD_FLAG_REDIRECTED;
3656 req->r_tid = 0;
3657 __submit_request(req, false);
3658 goto out_unlock_osdc;
Ilya Dryomov205ee1182014-01-27 17:40:20 +02003659 }
3660
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003661 if (m.num_ops != req->r_num_ops) {
3662 pr_err("num_ops %d != %d for tid %llu\n", m.num_ops,
3663 req->r_num_ops, req->r_tid);
3664 goto fail_request;
3665 }
3666 for (i = 0; i < req->r_num_ops; i++) {
3667 dout(" req %p tid %llu op %d rval %d len %u\n", req,
3668 req->r_tid, i, m.rval[i], m.outdata_len[i]);
3669 req->r_ops[i].rval = m.rval[i];
3670 req->r_ops[i].outdata_len = m.outdata_len[i];
3671 data_len += m.outdata_len[i];
3672 }
3673 if (data_len != le32_to_cpu(msg->hdr.data_len)) {
3674 pr_err("sum of lens %u != %u for tid %llu\n", data_len,
3675 le32_to_cpu(msg->hdr.data_len), req->r_tid);
3676 goto fail_request;
3677 }
Ilya Dryomovb18b9552017-02-11 18:46:08 +01003678 dout("%s req %p tid %llu result %d data_len %u\n", __func__,
3679 req, req->r_tid, m.result, data_len);
Sage Weilf24e9982009-10-06 11:31:10 -07003680
Ilya Dryomovb18b9552017-02-11 18:46:08 +01003681 /*
3682 * Since we only ever request ONDISK, we should only ever get
3683 * one (type of) reply back.
3684 */
3685 WARN_ON(!(m.flags & CEPH_OSD_FLAG_ONDISK));
3686 req->r_result = m.result ?: data_len;
3687 finish_request(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003688 mutex_unlock(&osd->lock);
3689 up_read(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07003690
Ilya Dryomovb18b9552017-02-11 18:46:08 +01003691 __complete_request(req);
Sage Weilf24e9982009-10-06 11:31:10 -07003692 return;
Ilya Dryomovfe5da052016-04-28 16:07:24 +02003693
3694fail_request:
Ilya Dryomov46092452016-04-28 16:07:27 +02003695 complete_request(req, -EIO);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003696out_unlock_session:
3697 mutex_unlock(&osd->lock);
3698out_unlock_osdc:
3699 up_read(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07003700}
3701
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003702static void set_pool_was_full(struct ceph_osd_client *osdc)
3703{
3704 struct rb_node *n;
3705
3706 for (n = rb_first(&osdc->osdmap->pg_pools); n; n = rb_next(n)) {
3707 struct ceph_pg_pool_info *pi =
3708 rb_entry(n, struct ceph_pg_pool_info, node);
3709
3710 pi->was_full = __pool_full(pi);
3711 }
3712}
3713
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003714static bool pool_cleared_full(struct ceph_osd_client *osdc, s64 pool_id)
Sage Weilf24e9982009-10-06 11:31:10 -07003715{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003716 struct ceph_pg_pool_info *pi;
Sage Weilf24e9982009-10-06 11:31:10 -07003717
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003718 pi = ceph_pg_pool_by_id(osdc->osdmap, pool_id);
3719 if (!pi)
3720 return false;
Sage Weilf24e9982009-10-06 11:31:10 -07003721
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003722 return pi->was_full && !__pool_full(pi);
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003723}
3724
Ilya Dryomov922dab62016-05-26 01:15:02 +02003725static enum calc_target_result
3726recalc_linger_target(struct ceph_osd_linger_request *lreq)
3727{
3728 struct ceph_osd_client *osdc = lreq->osdc;
3729 enum calc_target_result ct_res;
3730
Ilya Dryomov8edf84b2019-08-21 13:57:18 +02003731 ct_res = calc_target(osdc, &lreq->t, true);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003732 if (ct_res == CALC_TARGET_NEED_RESEND) {
3733 struct ceph_osd *osd;
3734
3735 osd = lookup_create_osd(osdc, lreq->t.osd, true);
3736 if (osd != lreq->osd) {
3737 unlink_linger(lreq->osd, lreq);
3738 link_linger(osd, lreq);
3739 }
3740 }
3741
3742 return ct_res;
3743}
3744
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003745/*
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003746 * Requeue requests whose mapping to an OSD has changed.
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003747 */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003748static void scan_requests(struct ceph_osd *osd,
3749 bool force_resend,
3750 bool cleared_full,
3751 bool check_pool_cleared_full,
3752 struct rb_root *need_resend,
3753 struct list_head *need_resend_linger)
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003754{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003755 struct ceph_osd_client *osdc = osd->o_osdc;
3756 struct rb_node *n;
3757 bool force_resend_writes;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003758
Ilya Dryomov922dab62016-05-26 01:15:02 +02003759 for (n = rb_first(&osd->o_linger_requests); n; ) {
3760 struct ceph_osd_linger_request *lreq =
3761 rb_entry(n, struct ceph_osd_linger_request, node);
3762 enum calc_target_result ct_res;
3763
3764 n = rb_next(n); /* recalc_linger_target() */
3765
3766 dout("%s lreq %p linger_id %llu\n", __func__, lreq,
3767 lreq->linger_id);
3768 ct_res = recalc_linger_target(lreq);
3769 switch (ct_res) {
3770 case CALC_TARGET_NO_ACTION:
3771 force_resend_writes = cleared_full ||
3772 (check_pool_cleared_full &&
3773 pool_cleared_full(osdc, lreq->t.base_oloc.pool));
3774 if (!force_resend && !force_resend_writes)
3775 break;
3776
3777 /* fall through */
3778 case CALC_TARGET_NEED_RESEND:
Ilya Dryomov46092452016-04-28 16:07:27 +02003779 cancel_linger_map_check(lreq);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003780 /*
3781 * scan_requests() for the previous epoch(s)
3782 * may have already added it to the list, since
3783 * it's not unlinked here.
3784 */
3785 if (list_empty(&lreq->scan_item))
3786 list_add_tail(&lreq->scan_item, need_resend_linger);
3787 break;
3788 case CALC_TARGET_POOL_DNE:
Ilya Dryomova10bcb12017-06-15 16:30:55 +02003789 list_del_init(&lreq->scan_item);
Ilya Dryomov46092452016-04-28 16:07:27 +02003790 check_linger_pool_dne(lreq);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003791 break;
3792 }
3793 }
3794
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003795 for (n = rb_first(&osd->o_requests); n; ) {
3796 struct ceph_osd_request *req =
3797 rb_entry(n, struct ceph_osd_request, r_node);
3798 enum calc_target_result ct_res;
Alex Elderab60b162012-12-19 15:52:36 -06003799
Ilya Dryomov46092452016-04-28 16:07:27 +02003800 n = rb_next(n); /* unlink_request(), check_pool_dne() */
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003801
3802 dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
Ilya Dryomov8edf84b2019-08-21 13:57:18 +02003803 ct_res = calc_target(osdc, &req->r_t, false);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003804 switch (ct_res) {
3805 case CALC_TARGET_NO_ACTION:
3806 force_resend_writes = cleared_full ||
3807 (check_pool_cleared_full &&
3808 pool_cleared_full(osdc, req->r_t.base_oloc.pool));
3809 if (!force_resend &&
3810 (!(req->r_flags & CEPH_OSD_FLAG_WRITE) ||
3811 !force_resend_writes))
3812 break;
3813
3814 /* fall through */
3815 case CALC_TARGET_NEED_RESEND:
Ilya Dryomov46092452016-04-28 16:07:27 +02003816 cancel_map_check(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003817 unlink_request(osd, req);
3818 insert_request(need_resend, req);
3819 break;
3820 case CALC_TARGET_POOL_DNE:
Ilya Dryomov46092452016-04-28 16:07:27 +02003821 check_pool_dne(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003822 break;
Alex Elderab60b162012-12-19 15:52:36 -06003823 }
Sage Weilf24e9982009-10-06 11:31:10 -07003824 }
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -08003825}
Sage Weil6f6c7002011-01-17 20:34:08 -08003826
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003827static int handle_one_map(struct ceph_osd_client *osdc,
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003828 void *p, void *end, bool incremental,
3829 struct rb_root *need_resend,
3830 struct list_head *need_resend_linger)
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003831{
3832 struct ceph_osdmap *newmap;
3833 struct rb_node *n;
3834 bool skipped_map = false;
3835 bool was_full;
3836
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02003837 was_full = ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003838 set_pool_was_full(osdc);
3839
3840 if (incremental)
3841 newmap = osdmap_apply_incremental(&p, end, osdc->osdmap);
3842 else
3843 newmap = ceph_osdmap_decode(&p, end);
3844 if (IS_ERR(newmap))
3845 return PTR_ERR(newmap);
3846
3847 if (newmap != osdc->osdmap) {
3848 /*
3849 * Preserve ->was_full before destroying the old map.
3850 * For pools that weren't in the old map, ->was_full
3851 * should be false.
3852 */
3853 for (n = rb_first(&newmap->pg_pools); n; n = rb_next(n)) {
3854 struct ceph_pg_pool_info *pi =
3855 rb_entry(n, struct ceph_pg_pool_info, node);
3856 struct ceph_pg_pool_info *old_pi;
3857
3858 old_pi = ceph_pg_pool_by_id(osdc->osdmap, pi->id);
3859 if (old_pi)
3860 pi->was_full = old_pi->was_full;
3861 else
3862 WARN_ON(pi->was_full);
3863 }
3864
3865 if (osdc->osdmap->epoch &&
3866 osdc->osdmap->epoch + 1 < newmap->epoch) {
3867 WARN_ON(incremental);
3868 skipped_map = true;
3869 }
3870
3871 ceph_osdmap_destroy(osdc->osdmap);
3872 osdc->osdmap = newmap;
3873 }
3874
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02003875 was_full &= !ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003876 scan_requests(&osdc->homeless_osd, skipped_map, was_full, true,
3877 need_resend, need_resend_linger);
3878
3879 for (n = rb_first(&osdc->osds); n; ) {
3880 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
3881
3882 n = rb_next(n); /* close_osd() */
3883
3884 scan_requests(osd, skipped_map, was_full, true, need_resend,
3885 need_resend_linger);
3886 if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
3887 memcmp(&osd->o_con.peer_addr,
3888 ceph_osd_addr(osdc->osdmap, osd->o_osd),
3889 sizeof(struct ceph_entity_addr)))
3890 close_osd(osd);
3891 }
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003892
3893 return 0;
3894}
Sage Weil6f6c7002011-01-17 20:34:08 -08003895
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003896static void kick_requests(struct ceph_osd_client *osdc,
3897 struct rb_root *need_resend,
3898 struct list_head *need_resend_linger)
3899{
Ilya Dryomov922dab62016-05-26 01:15:02 +02003900 struct ceph_osd_linger_request *lreq, *nlreq;
Ilya Dryomov04c7d782017-06-15 16:30:55 +02003901 enum calc_target_result ct_res;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003902 struct rb_node *n;
3903
Ilya Dryomov04c7d782017-06-15 16:30:55 +02003904 /* make sure need_resend targets reflect latest map */
3905 for (n = rb_first(need_resend); n; ) {
3906 struct ceph_osd_request *req =
3907 rb_entry(n, struct ceph_osd_request, r_node);
3908
3909 n = rb_next(n);
3910
3911 if (req->r_t.epoch < osdc->osdmap->epoch) {
Ilya Dryomov8edf84b2019-08-21 13:57:18 +02003912 ct_res = calc_target(osdc, &req->r_t, false);
Ilya Dryomov04c7d782017-06-15 16:30:55 +02003913 if (ct_res == CALC_TARGET_POOL_DNE) {
3914 erase_request(need_resend, req);
3915 check_pool_dne(req);
3916 }
3917 }
3918 }
3919
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003920 for (n = rb_first(need_resend); n; ) {
3921 struct ceph_osd_request *req =
3922 rb_entry(n, struct ceph_osd_request, r_node);
3923 struct ceph_osd *osd;
3924
3925 n = rb_next(n);
3926 erase_request(need_resend, req); /* before link_request() */
3927
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003928 osd = lookup_create_osd(osdc, req->r_t.osd, true);
3929 link_request(osd, req);
3930 if (!req->r_linger) {
3931 if (!osd_homeless(osd) && !req->r_t.paused)
3932 send_request(req);
Ilya Dryomov922dab62016-05-26 01:15:02 +02003933 } else {
3934 cancel_linger_request(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003935 }
3936 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02003937
3938 list_for_each_entry_safe(lreq, nlreq, need_resend_linger, scan_item) {
3939 if (!osd_homeless(lreq->osd))
3940 send_linger(lreq);
3941
3942 list_del_init(&lreq->scan_item);
3943 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003944}
3945
Sage Weilf24e9982009-10-06 11:31:10 -07003946/*
3947 * Process updated osd map.
3948 *
3949 * The message contains any number of incremental and full maps, normally
3950 * indicating some sort of topology change in the cluster. Kick requests
3951 * off to different OSDs as needed.
3952 */
3953void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
3954{
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003955 void *p = msg->front.iov_base;
3956 void *const end = p + msg->front.iov_len;
Sage Weilf24e9982009-10-06 11:31:10 -07003957 u32 nr_maps, maplen;
3958 u32 epoch;
Sage Weilf24e9982009-10-06 11:31:10 -07003959 struct ceph_fsid fsid;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003960 struct rb_root need_resend = RB_ROOT;
3961 LIST_HEAD(need_resend_linger);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003962 bool handled_incremental = false;
3963 bool was_pauserd, was_pausewr;
3964 bool pauserd, pausewr;
3965 int err;
Sage Weilf24e9982009-10-06 11:31:10 -07003966
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003967 dout("%s have %u\n", __func__, osdc->osdmap->epoch);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003968 down_write(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07003969
3970 /* verify fsid */
3971 ceph_decode_need(&p, end, sizeof(fsid), bad);
3972 ceph_decode_copy(&p, &fsid, sizeof(fsid));
Sage Weil07433042009-11-18 16:50:41 -08003973 if (ceph_check_fsid(osdc->client, &fsid) < 0)
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003974 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07003975
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02003976 was_pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
3977 was_pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
3978 ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003979 have_pool_full(osdc);
Josh Durgin9a1ea2d2013-12-10 09:35:13 -08003980
Sage Weilf24e9982009-10-06 11:31:10 -07003981 /* incremental maps */
3982 ceph_decode_32_safe(&p, end, nr_maps, bad);
3983 dout(" %d inc maps\n", nr_maps);
3984 while (nr_maps > 0) {
3985 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
Sage Weilc89136e2009-10-14 09:59:09 -07003986 epoch = ceph_decode_32(&p);
3987 maplen = ceph_decode_32(&p);
Sage Weilf24e9982009-10-06 11:31:10 -07003988 ceph_decode_need(&p, end, maplen, bad);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003989 if (osdc->osdmap->epoch &&
3990 osdc->osdmap->epoch + 1 == epoch) {
Sage Weilf24e9982009-10-06 11:31:10 -07003991 dout("applying incremental map %u len %d\n",
3992 epoch, maplen);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02003993 err = handle_one_map(osdc, p, p + maplen, true,
3994 &need_resend, &need_resend_linger);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003995 if (err)
Sage Weilf24e9982009-10-06 11:31:10 -07003996 goto bad;
Ilya Dryomov42c1b122016-04-28 16:07:25 +02003997 handled_incremental = true;
Sage Weilf24e9982009-10-06 11:31:10 -07003998 } else {
3999 dout("ignoring incremental map %u len %d\n",
4000 epoch, maplen);
4001 }
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004002 p += maplen;
Sage Weilf24e9982009-10-06 11:31:10 -07004003 nr_maps--;
4004 }
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004005 if (handled_incremental)
Sage Weilf24e9982009-10-06 11:31:10 -07004006 goto done;
4007
4008 /* full maps */
4009 ceph_decode_32_safe(&p, end, nr_maps, bad);
4010 dout(" %d full maps\n", nr_maps);
4011 while (nr_maps) {
4012 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
Sage Weilc89136e2009-10-14 09:59:09 -07004013 epoch = ceph_decode_32(&p);
4014 maplen = ceph_decode_32(&p);
Sage Weilf24e9982009-10-06 11:31:10 -07004015 ceph_decode_need(&p, end, maplen, bad);
4016 if (nr_maps > 1) {
4017 dout("skipping non-latest full map %u len %d\n",
4018 epoch, maplen);
Ilya Dryomove5253a72016-04-28 16:07:25 +02004019 } else if (osdc->osdmap->epoch >= epoch) {
Sage Weilf24e9982009-10-06 11:31:10 -07004020 dout("skipping full map %u len %d, "
4021 "older than our %u\n", epoch, maplen,
4022 osdc->osdmap->epoch);
4023 } else {
4024 dout("taking full map %u len %d\n", epoch, maplen);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004025 err = handle_one_map(osdc, p, p + maplen, false,
4026 &need_resend, &need_resend_linger);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004027 if (err)
Sage Weilf24e9982009-10-06 11:31:10 -07004028 goto bad;
Sage Weilf24e9982009-10-06 11:31:10 -07004029 }
4030 p += maplen;
4031 nr_maps--;
4032 }
4033
4034done:
Sage Weilcd634fb2011-05-12 09:29:18 -07004035 /*
4036 * subscribe to subsequent osdmap updates if full to ensure
4037 * we find out when we are no longer full and stop returning
4038 * ENOSPC.
4039 */
Ilya Dryomovb7ec35b2016-04-28 16:07:25 +02004040 pauserd = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSERD);
4041 pausewr = ceph_osdmap_flag(osdc, CEPH_OSDMAP_PAUSEWR) ||
4042 ceph_osdmap_flag(osdc, CEPH_OSDMAP_FULL) ||
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004043 have_pool_full(osdc);
Jeff Layton58eb7932017-04-18 09:21:16 -04004044 if (was_pauserd || was_pausewr || pauserd || pausewr ||
4045 osdc->osdmap->epoch < osdc->epoch_barrier)
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004046 maybe_request_map(osdc);
Sage Weilcd634fb2011-05-12 09:29:18 -07004047
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004048 kick_requests(osdc, &need_resend, &need_resend_linger);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004049
Jeff Laytonfc36d0a2017-04-04 08:39:39 -04004050 ceph_osdc_abort_on_full(osdc);
Ilya Dryomov42c1b122016-04-28 16:07:25 +02004051 ceph_monc_got_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
4052 osdc->osdmap->epoch);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004053 up_write(&osdc->lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07004054 wake_up_all(&osdc->client->auth_wq);
Sage Weilf24e9982009-10-06 11:31:10 -07004055 return;
4056
4057bad:
4058 pr_err("osdc handle_map corrupt msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -08004059 ceph_msg_dump(msg);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004060 up_write(&osdc->lock);
4061}
4062
4063/*
4064 * Resubmit requests pending on the given osd.
4065 */
4066static void kick_osd_requests(struct ceph_osd *osd)
4067{
4068 struct rb_node *n;
4069
Ilya Dryomova02a9462017-06-19 12:18:05 +02004070 clear_backoffs(osd);
4071
Ilya Dryomov922dab62016-05-26 01:15:02 +02004072 for (n = rb_first(&osd->o_requests); n; ) {
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004073 struct ceph_osd_request *req =
4074 rb_entry(n, struct ceph_osd_request, r_node);
4075
Ilya Dryomov922dab62016-05-26 01:15:02 +02004076 n = rb_next(n); /* cancel_linger_request() */
4077
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004078 if (!req->r_linger) {
4079 if (!req->r_t.paused)
4080 send_request(req);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004081 } else {
4082 cancel_linger_request(req);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004083 }
4084 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02004085 for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) {
4086 struct ceph_osd_linger_request *lreq =
4087 rb_entry(n, struct ceph_osd_linger_request, node);
4088
4089 send_linger(lreq);
4090 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004091}
4092
4093/*
4094 * If the osd connection drops, we need to resubmit all requests.
4095 */
4096static void osd_fault(struct ceph_connection *con)
4097{
4098 struct ceph_osd *osd = con->private;
4099 struct ceph_osd_client *osdc = osd->o_osdc;
4100
4101 dout("%s osd %p osd%d\n", __func__, osd, osd->o_osd);
4102
4103 down_write(&osdc->lock);
4104 if (!osd_registered(osd)) {
4105 dout("%s osd%d unknown\n", __func__, osd->o_osd);
4106 goto out_unlock;
4107 }
4108
4109 if (!reopen_osd(osd))
4110 kick_osd_requests(osd);
4111 maybe_request_map(osdc);
4112
4113out_unlock:
4114 up_write(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07004115}
4116
Ilya Dryomova02a9462017-06-19 12:18:05 +02004117struct MOSDBackoff {
4118 struct ceph_spg spgid;
4119 u32 map_epoch;
4120 u8 op;
4121 u64 id;
4122 struct ceph_hobject_id *begin;
4123 struct ceph_hobject_id *end;
4124};
4125
4126static int decode_MOSDBackoff(const struct ceph_msg *msg, struct MOSDBackoff *m)
4127{
4128 void *p = msg->front.iov_base;
4129 void *const end = p + msg->front.iov_len;
4130 u8 struct_v;
4131 u32 struct_len;
4132 int ret;
4133
4134 ret = ceph_start_decoding(&p, end, 1, "spg_t", &struct_v, &struct_len);
4135 if (ret)
4136 return ret;
4137
4138 ret = ceph_decode_pgid(&p, end, &m->spgid.pgid);
4139 if (ret)
4140 return ret;
4141
4142 ceph_decode_8_safe(&p, end, m->spgid.shard, e_inval);
4143 ceph_decode_32_safe(&p, end, m->map_epoch, e_inval);
4144 ceph_decode_8_safe(&p, end, m->op, e_inval);
4145 ceph_decode_64_safe(&p, end, m->id, e_inval);
4146
4147 m->begin = kzalloc(sizeof(*m->begin), GFP_NOIO);
4148 if (!m->begin)
4149 return -ENOMEM;
4150
4151 ret = decode_hoid(&p, end, m->begin);
4152 if (ret) {
4153 free_hoid(m->begin);
4154 return ret;
4155 }
4156
4157 m->end = kzalloc(sizeof(*m->end), GFP_NOIO);
4158 if (!m->end) {
4159 free_hoid(m->begin);
4160 return -ENOMEM;
4161 }
4162
4163 ret = decode_hoid(&p, end, m->end);
4164 if (ret) {
4165 free_hoid(m->begin);
4166 free_hoid(m->end);
4167 return ret;
4168 }
4169
4170 return 0;
4171
4172e_inval:
4173 return -EINVAL;
4174}
4175
4176static struct ceph_msg *create_backoff_message(
4177 const struct ceph_osd_backoff *backoff,
4178 u32 map_epoch)
4179{
4180 struct ceph_msg *msg;
4181 void *p, *end;
4182 int msg_size;
4183
4184 msg_size = CEPH_ENCODING_START_BLK_LEN +
4185 CEPH_PGID_ENCODING_LEN + 1; /* spgid */
4186 msg_size += 4 + 1 + 8; /* map_epoch, op, id */
4187 msg_size += CEPH_ENCODING_START_BLK_LEN +
4188 hoid_encoding_size(backoff->begin);
4189 msg_size += CEPH_ENCODING_START_BLK_LEN +
4190 hoid_encoding_size(backoff->end);
4191
4192 msg = ceph_msg_new(CEPH_MSG_OSD_BACKOFF, msg_size, GFP_NOIO, true);
4193 if (!msg)
4194 return NULL;
4195
4196 p = msg->front.iov_base;
4197 end = p + msg->front_alloc_len;
4198
4199 encode_spgid(&p, &backoff->spgid);
4200 ceph_encode_32(&p, map_epoch);
4201 ceph_encode_8(&p, CEPH_OSD_BACKOFF_OP_ACK_BLOCK);
4202 ceph_encode_64(&p, backoff->id);
4203 encode_hoid(&p, end, backoff->begin);
4204 encode_hoid(&p, end, backoff->end);
4205 BUG_ON(p != end);
4206
4207 msg->front.iov_len = p - msg->front.iov_base;
4208 msg->hdr.version = cpu_to_le16(1); /* MOSDBackoff v1 */
4209 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
4210
4211 return msg;
4212}
4213
4214static void handle_backoff_block(struct ceph_osd *osd, struct MOSDBackoff *m)
4215{
4216 struct ceph_spg_mapping *spg;
4217 struct ceph_osd_backoff *backoff;
4218 struct ceph_msg *msg;
4219
4220 dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4221 m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4222
4223 spg = lookup_spg_mapping(&osd->o_backoff_mappings, &m->spgid);
4224 if (!spg) {
4225 spg = alloc_spg_mapping();
4226 if (!spg) {
4227 pr_err("%s failed to allocate spg\n", __func__);
4228 return;
4229 }
4230 spg->spgid = m->spgid; /* struct */
4231 insert_spg_mapping(&osd->o_backoff_mappings, spg);
4232 }
4233
4234 backoff = alloc_backoff();
4235 if (!backoff) {
4236 pr_err("%s failed to allocate backoff\n", __func__);
4237 return;
4238 }
4239 backoff->spgid = m->spgid; /* struct */
4240 backoff->id = m->id;
4241 backoff->begin = m->begin;
4242 m->begin = NULL; /* backoff now owns this */
4243 backoff->end = m->end;
4244 m->end = NULL; /* ditto */
4245
4246 insert_backoff(&spg->backoffs, backoff);
4247 insert_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4248
4249 /*
4250 * Ack with original backoff's epoch so that the OSD can
4251 * discard this if there was a PG split.
4252 */
4253 msg = create_backoff_message(backoff, m->map_epoch);
4254 if (!msg) {
4255 pr_err("%s failed to allocate msg\n", __func__);
4256 return;
4257 }
4258 ceph_con_send(&osd->o_con, msg);
4259}
4260
4261static bool target_contained_by(const struct ceph_osd_request_target *t,
4262 const struct ceph_hobject_id *begin,
4263 const struct ceph_hobject_id *end)
4264{
4265 struct ceph_hobject_id hoid;
4266 int cmp;
4267
4268 hoid_fill_from_target(&hoid, t);
4269 cmp = hoid_compare(&hoid, begin);
4270 return !cmp || (cmp > 0 && hoid_compare(&hoid, end) < 0);
4271}
4272
4273static void handle_backoff_unblock(struct ceph_osd *osd,
4274 const struct MOSDBackoff *m)
4275{
4276 struct ceph_spg_mapping *spg;
4277 struct ceph_osd_backoff *backoff;
4278 struct rb_node *n;
4279
4280 dout("%s osd%d spgid %llu.%xs%d id %llu\n", __func__, osd->o_osd,
4281 m->spgid.pgid.pool, m->spgid.pgid.seed, m->spgid.shard, m->id);
4282
4283 backoff = lookup_backoff_by_id(&osd->o_backoffs_by_id, m->id);
4284 if (!backoff) {
4285 pr_err("%s osd%d spgid %llu.%xs%d id %llu backoff dne\n",
4286 __func__, osd->o_osd, m->spgid.pgid.pool,
4287 m->spgid.pgid.seed, m->spgid.shard, m->id);
4288 return;
4289 }
4290
4291 if (hoid_compare(backoff->begin, m->begin) &&
4292 hoid_compare(backoff->end, m->end)) {
4293 pr_err("%s osd%d spgid %llu.%xs%d id %llu bad range?\n",
4294 __func__, osd->o_osd, m->spgid.pgid.pool,
4295 m->spgid.pgid.seed, m->spgid.shard, m->id);
4296 /* unblock it anyway... */
4297 }
4298
4299 spg = lookup_spg_mapping(&osd->o_backoff_mappings, &backoff->spgid);
4300 BUG_ON(!spg);
4301
4302 erase_backoff(&spg->backoffs, backoff);
4303 erase_backoff_by_id(&osd->o_backoffs_by_id, backoff);
4304 free_backoff(backoff);
4305
4306 if (RB_EMPTY_ROOT(&spg->backoffs)) {
4307 erase_spg_mapping(&osd->o_backoff_mappings, spg);
4308 free_spg_mapping(spg);
4309 }
4310
4311 for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) {
4312 struct ceph_osd_request *req =
4313 rb_entry(n, struct ceph_osd_request, r_node);
4314
4315 if (!ceph_spg_compare(&req->r_t.spgid, &m->spgid)) {
4316 /*
4317 * Match against @m, not @backoff -- the PG may
4318 * have split on the OSD.
4319 */
4320 if (target_contained_by(&req->r_t, m->begin, m->end)) {
4321 /*
4322 * If no other installed backoff applies,
4323 * resend.
4324 */
4325 send_request(req);
4326 }
4327 }
4328 }
4329}
4330
4331static void handle_backoff(struct ceph_osd *osd, struct ceph_msg *msg)
4332{
4333 struct ceph_osd_client *osdc = osd->o_osdc;
4334 struct MOSDBackoff m;
4335 int ret;
4336
4337 down_read(&osdc->lock);
4338 if (!osd_registered(osd)) {
4339 dout("%s osd%d unknown\n", __func__, osd->o_osd);
4340 up_read(&osdc->lock);
4341 return;
4342 }
4343 WARN_ON(osd->o_osd != le64_to_cpu(msg->hdr.src.num));
4344
4345 mutex_lock(&osd->lock);
4346 ret = decode_MOSDBackoff(msg, &m);
4347 if (ret) {
4348 pr_err("failed to decode MOSDBackoff: %d\n", ret);
4349 ceph_msg_dump(msg);
4350 goto out_unlock;
4351 }
4352
4353 switch (m.op) {
4354 case CEPH_OSD_BACKOFF_OP_BLOCK:
4355 handle_backoff_block(osd, &m);
4356 break;
4357 case CEPH_OSD_BACKOFF_OP_UNBLOCK:
4358 handle_backoff_unblock(osd, &m);
4359 break;
4360 default:
4361 pr_err("%s osd%d unknown op %d\n", __func__, osd->o_osd, m.op);
4362 }
4363
4364 free_hoid(m.begin);
4365 free_hoid(m.end);
4366
4367out_unlock:
4368 mutex_unlock(&osd->lock);
4369 up_read(&osdc->lock);
4370}
4371
Sage Weilf24e9982009-10-06 11:31:10 -07004372/*
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004373 * Process osd watch notifications
4374 */
Alex Elder3c663bb2013-02-15 11:42:30 -06004375static void handle_watch_notify(struct ceph_osd_client *osdc,
4376 struct ceph_msg *msg)
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004377{
Ilya Dryomov922dab62016-05-26 01:15:02 +02004378 void *p = msg->front.iov_base;
4379 void *const end = p + msg->front.iov_len;
4380 struct ceph_osd_linger_request *lreq;
4381 struct linger_work *lwork;
4382 u8 proto_ver, opcode;
4383 u64 cookie, notify_id;
4384 u64 notifier_id = 0;
Ilya Dryomov19079202016-04-28 16:07:27 +02004385 s32 return_code = 0;
Ilya Dryomov922dab62016-05-26 01:15:02 +02004386 void *payload = NULL;
4387 u32 payload_len = 0;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004388
4389 ceph_decode_8_safe(&p, end, proto_ver, bad);
4390 ceph_decode_8_safe(&p, end, opcode, bad);
4391 ceph_decode_64_safe(&p, end, cookie, bad);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004392 p += 8; /* skip ver */
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004393 ceph_decode_64_safe(&p, end, notify_id, bad);
4394
Ilya Dryomov922dab62016-05-26 01:15:02 +02004395 if (proto_ver >= 1) {
4396 ceph_decode_32_safe(&p, end, payload_len, bad);
4397 ceph_decode_need(&p, end, payload_len, bad);
4398 payload = p;
4399 p += payload_len;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004400 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02004401
4402 if (le16_to_cpu(msg->hdr.version) >= 2)
Ilya Dryomov19079202016-04-28 16:07:27 +02004403 ceph_decode_32_safe(&p, end, return_code, bad);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004404
4405 if (le16_to_cpu(msg->hdr.version) >= 3)
4406 ceph_decode_64_safe(&p, end, notifier_id, bad);
4407
4408 down_read(&osdc->lock);
4409 lreq = lookup_linger_osdc(&osdc->linger_requests, cookie);
4410 if (!lreq) {
4411 dout("%s opcode %d cookie %llu dne\n", __func__, opcode,
4412 cookie);
4413 goto out_unlock_osdc;
4414 }
4415
4416 mutex_lock(&lreq->lock);
Ilya Dryomov19079202016-04-28 16:07:27 +02004417 dout("%s opcode %d cookie %llu lreq %p is_watch %d\n", __func__,
4418 opcode, cookie, lreq, lreq->is_watch);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004419 if (opcode == CEPH_WATCH_EVENT_DISCONNECT) {
4420 if (!lreq->last_error) {
4421 lreq->last_error = -ENOTCONN;
4422 queue_watch_error(lreq);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004423 }
Ilya Dryomov19079202016-04-28 16:07:27 +02004424 } else if (!lreq->is_watch) {
4425 /* CEPH_WATCH_EVENT_NOTIFY_COMPLETE */
4426 if (lreq->notify_id && lreq->notify_id != notify_id) {
4427 dout("lreq %p notify_id %llu != %llu, ignoring\n", lreq,
4428 lreq->notify_id, notify_id);
4429 } else if (!completion_done(&lreq->notify_finish_wait)) {
4430 struct ceph_msg_data *data =
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02004431 msg->num_data_items ? &msg->data[0] : NULL;
Ilya Dryomov19079202016-04-28 16:07:27 +02004432
4433 if (data) {
4434 if (lreq->preply_pages) {
4435 WARN_ON(data->type !=
4436 CEPH_MSG_DATA_PAGES);
4437 *lreq->preply_pages = data->pages;
4438 *lreq->preply_len = data->length;
4439 } else {
4440 ceph_release_page_vector(data->pages,
4441 calc_pages_for(0, data->length));
4442 }
4443 }
4444 lreq->notify_finish_error = return_code;
4445 complete_all(&lreq->notify_finish_wait);
4446 }
Ilya Dryomov922dab62016-05-26 01:15:02 +02004447 } else {
4448 /* CEPH_WATCH_EVENT_NOTIFY */
4449 lwork = lwork_alloc(lreq, do_watch_notify);
4450 if (!lwork) {
4451 pr_err("failed to allocate notify-lwork\n");
4452 goto out_unlock_lreq;
4453 }
Ilya Dryomov91883cd2014-09-11 12:18:53 +04004454
Ilya Dryomov922dab62016-05-26 01:15:02 +02004455 lwork->notify.notify_id = notify_id;
4456 lwork->notify.notifier_id = notifier_id;
4457 lwork->notify.payload = payload;
4458 lwork->notify.payload_len = payload_len;
4459 lwork->notify.msg = ceph_msg_get(msg);
4460 lwork_queue(lwork);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004461 }
4462
Ilya Dryomov922dab62016-05-26 01:15:02 +02004463out_unlock_lreq:
4464 mutex_unlock(&lreq->lock);
4465out_unlock_osdc:
4466 up_read(&osdc->lock);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004467 return;
4468
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004469bad:
4470 pr_err("osdc handle_watch_notify corrupt msg\n");
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004471}
4472
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07004473/*
Sage Weilf24e9982009-10-06 11:31:10 -07004474 * Register request, send initial attempt.
4475 */
4476int ceph_osdc_start_request(struct ceph_osd_client *osdc,
4477 struct ceph_osd_request *req,
4478 bool nofail)
4479{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004480 down_read(&osdc->lock);
4481 submit_request(req, false);
4482 up_read(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07004483
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004484 return 0;
Sage Weilf24e9982009-10-06 11:31:10 -07004485}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004486EXPORT_SYMBOL(ceph_osdc_start_request);
Sage Weilf24e9982009-10-06 11:31:10 -07004487
4488/*
Ilya Dryomovc297eb422016-12-02 14:01:55 +01004489 * Unregister a registered request. The request is not completed:
4490 * ->r_result isn't set and __complete_request() isn't called.
Ilya Dryomovc9f9b932014-06-19 11:38:13 +04004491 */
4492void ceph_osdc_cancel_request(struct ceph_osd_request *req)
4493{
4494 struct ceph_osd_client *osdc = req->r_osdc;
4495
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004496 down_write(&osdc->lock);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004497 if (req->r_osd)
4498 cancel_request(req);
4499 up_write(&osdc->lock);
Ilya Dryomovc9f9b932014-06-19 11:38:13 +04004500}
4501EXPORT_SYMBOL(ceph_osdc_cancel_request);
4502
4503/*
Ilya Dryomov42b06962016-04-28 16:07:26 +02004504 * @timeout: in jiffies, 0 means "wait forever"
4505 */
4506static int wait_request_timeout(struct ceph_osd_request *req,
4507 unsigned long timeout)
4508{
4509 long left;
4510
4511 dout("%s req %p tid %llu\n", __func__, req, req->r_tid);
Yan, Zheng0e76abf2016-05-13 11:04:33 +08004512 left = wait_for_completion_killable_timeout(&req->r_completion,
Ilya Dryomov42b06962016-04-28 16:07:26 +02004513 ceph_timeout_jiffies(timeout));
4514 if (left <= 0) {
4515 left = left ?: -ETIMEDOUT;
4516 ceph_osdc_cancel_request(req);
Ilya Dryomov42b06962016-04-28 16:07:26 +02004517 } else {
4518 left = req->r_result; /* completed */
4519 }
4520
4521 return left;
4522}
4523
4524/*
Sage Weilf24e9982009-10-06 11:31:10 -07004525 * wait for a request to complete
4526 */
4527int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
4528 struct ceph_osd_request *req)
4529{
Ilya Dryomov42b06962016-04-28 16:07:26 +02004530 return wait_request_timeout(req, 0);
Sage Weilf24e9982009-10-06 11:31:10 -07004531}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004532EXPORT_SYMBOL(ceph_osdc_wait_request);
Sage Weilf24e9982009-10-06 11:31:10 -07004533
4534/*
4535 * sync - wait for all in-flight requests to flush. avoid starvation.
4536 */
4537void ceph_osdc_sync(struct ceph_osd_client *osdc)
4538{
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004539 struct rb_node *n, *p;
4540 u64 last_tid = atomic64_read(&osdc->last_tid);
Sage Weilf24e9982009-10-06 11:31:10 -07004541
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004542again:
4543 down_read(&osdc->lock);
4544 for (n = rb_first(&osdc->osds); n; n = rb_next(n)) {
4545 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
Sage Weilf24e9982009-10-06 11:31:10 -07004546
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004547 mutex_lock(&osd->lock);
4548 for (p = rb_first(&osd->o_requests); p; p = rb_next(p)) {
4549 struct ceph_osd_request *req =
4550 rb_entry(p, struct ceph_osd_request, r_node);
Sage Weilf24e9982009-10-06 11:31:10 -07004551
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004552 if (req->r_tid > last_tid)
4553 break;
4554
4555 if (!(req->r_flags & CEPH_OSD_FLAG_WRITE))
4556 continue;
4557
4558 ceph_osdc_get_request(req);
4559 mutex_unlock(&osd->lock);
4560 up_read(&osdc->lock);
4561 dout("%s waiting on req %p tid %llu last_tid %llu\n",
4562 __func__, req, req->r_tid, last_tid);
Ilya Dryomovb18b9552017-02-11 18:46:08 +01004563 wait_for_completion(&req->r_completion);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004564 ceph_osdc_put_request(req);
4565 goto again;
4566 }
4567
4568 mutex_unlock(&osd->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07004569 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02004570
4571 up_read(&osdc->lock);
4572 dout("%s done last_tid %llu\n", __func__, last_tid);
Sage Weilf24e9982009-10-06 11:31:10 -07004573}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07004574EXPORT_SYMBOL(ceph_osdc_sync);
Sage Weilf24e9982009-10-06 11:31:10 -07004575
Ilya Dryomov922dab62016-05-26 01:15:02 +02004576static struct ceph_osd_request *
4577alloc_linger_request(struct ceph_osd_linger_request *lreq)
4578{
4579 struct ceph_osd_request *req;
4580
4581 req = ceph_osdc_alloc_request(lreq->osdc, NULL, 1, false, GFP_NOIO);
4582 if (!req)
4583 return NULL;
4584
4585 ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4586 ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004587 return req;
4588}
4589
Ilya Dryomov39e58c32018-10-15 15:26:27 +02004590static struct ceph_osd_request *
4591alloc_watch_request(struct ceph_osd_linger_request *lreq, u8 watch_opcode)
4592{
4593 struct ceph_osd_request *req;
4594
4595 req = alloc_linger_request(lreq);
4596 if (!req)
4597 return NULL;
4598
4599 /*
4600 * Pass 0 for cookie because we don't know it yet, it will be
4601 * filled in by linger_submit().
4602 */
4603 osd_req_op_watch_init(req, 0, 0, watch_opcode);
Ilya Dryomov26f887e2018-10-15 16:11:37 +02004604
4605 if (ceph_osdc_alloc_messages(req, GFP_NOIO)) {
4606 ceph_osdc_put_request(req);
4607 return NULL;
4608 }
4609
Ilya Dryomov39e58c32018-10-15 15:26:27 +02004610 return req;
4611}
4612
Ilya Dryomov922dab62016-05-26 01:15:02 +02004613/*
4614 * Returns a handle, caller owns a ref.
4615 */
4616struct ceph_osd_linger_request *
4617ceph_osdc_watch(struct ceph_osd_client *osdc,
4618 struct ceph_object_id *oid,
4619 struct ceph_object_locator *oloc,
4620 rados_watchcb2_t wcb,
4621 rados_watcherrcb_t errcb,
4622 void *data)
4623{
4624 struct ceph_osd_linger_request *lreq;
4625 int ret;
4626
4627 lreq = linger_alloc(osdc);
4628 if (!lreq)
4629 return ERR_PTR(-ENOMEM);
4630
Ilya Dryomov19079202016-04-28 16:07:27 +02004631 lreq->is_watch = true;
Ilya Dryomov922dab62016-05-26 01:15:02 +02004632 lreq->wcb = wcb;
4633 lreq->errcb = errcb;
4634 lreq->data = data;
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02004635 lreq->watch_valid_thru = jiffies;
Ilya Dryomov922dab62016-05-26 01:15:02 +02004636
4637 ceph_oid_copy(&lreq->t.base_oid, oid);
4638 ceph_oloc_copy(&lreq->t.base_oloc, oloc);
Ilya Dryomov54ea0042017-02-11 18:48:41 +01004639 lreq->t.flags = CEPH_OSD_FLAG_WRITE;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02004640 ktime_get_real_ts64(&lreq->mtime);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004641
Ilya Dryomov39e58c32018-10-15 15:26:27 +02004642 lreq->reg_req = alloc_watch_request(lreq, CEPH_OSD_WATCH_OP_WATCH);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004643 if (!lreq->reg_req) {
4644 ret = -ENOMEM;
4645 goto err_put_lreq;
4646 }
4647
Ilya Dryomov39e58c32018-10-15 15:26:27 +02004648 lreq->ping_req = alloc_watch_request(lreq, CEPH_OSD_WATCH_OP_PING);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004649 if (!lreq->ping_req) {
4650 ret = -ENOMEM;
4651 goto err_put_lreq;
4652 }
4653
Ilya Dryomov81c65212018-10-11 12:58:33 +02004654 linger_submit(lreq);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004655 ret = linger_reg_commit_wait(lreq);
4656 if (ret) {
4657 linger_cancel(lreq);
4658 goto err_put_lreq;
4659 }
4660
4661 return lreq;
4662
4663err_put_lreq:
4664 linger_put(lreq);
4665 return ERR_PTR(ret);
4666}
4667EXPORT_SYMBOL(ceph_osdc_watch);
4668
4669/*
4670 * Releases a ref.
4671 *
4672 * Times out after mount_timeout to preserve rbd unmap behaviour
4673 * introduced in 2894e1d76974 ("rbd: timeout watch teardown on unmap
4674 * with mount_timeout").
4675 */
4676int ceph_osdc_unwatch(struct ceph_osd_client *osdc,
4677 struct ceph_osd_linger_request *lreq)
4678{
4679 struct ceph_options *opts = osdc->client->options;
4680 struct ceph_osd_request *req;
4681 int ret;
4682
4683 req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4684 if (!req)
4685 return -ENOMEM;
4686
4687 ceph_oid_copy(&req->r_base_oid, &lreq->t.base_oid);
4688 ceph_oloc_copy(&req->r_base_oloc, &lreq->t.base_oloc);
Ilya Dryomov54ea0042017-02-11 18:48:41 +01004689 req->r_flags = CEPH_OSD_FLAG_WRITE;
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02004690 ktime_get_real_ts64(&req->r_mtime);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004691 osd_req_op_watch_init(req, 0, lreq->linger_id,
4692 CEPH_OSD_WATCH_OP_UNWATCH);
4693
4694 ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
4695 if (ret)
4696 goto out_put_req;
4697
4698 ceph_osdc_start_request(osdc, req, false);
4699 linger_cancel(lreq);
4700 linger_put(lreq);
4701 ret = wait_request_timeout(req, opts->mount_timeout);
4702
4703out_put_req:
4704 ceph_osdc_put_request(req);
4705 return ret;
4706}
4707EXPORT_SYMBOL(ceph_osdc_unwatch);
4708
4709static int osd_req_op_notify_ack_init(struct ceph_osd_request *req, int which,
4710 u64 notify_id, u64 cookie, void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +02004711 u32 payload_len)
Ilya Dryomov922dab62016-05-26 01:15:02 +02004712{
4713 struct ceph_osd_req_op *op;
4714 struct ceph_pagelist *pl;
4715 int ret;
4716
4717 op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY_ACK, 0);
4718
Ilya Dryomov33165d42018-09-28 15:38:34 +02004719 pl = ceph_pagelist_alloc(GFP_NOIO);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004720 if (!pl)
4721 return -ENOMEM;
4722
Ilya Dryomov922dab62016-05-26 01:15:02 +02004723 ret = ceph_pagelist_encode_64(pl, notify_id);
4724 ret |= ceph_pagelist_encode_64(pl, cookie);
4725 if (payload) {
4726 ret |= ceph_pagelist_encode_32(pl, payload_len);
4727 ret |= ceph_pagelist_append(pl, payload, payload_len);
4728 } else {
4729 ret |= ceph_pagelist_encode_32(pl, 0);
4730 }
4731 if (ret) {
4732 ceph_pagelist_release(pl);
4733 return -ENOMEM;
4734 }
4735
4736 ceph_osd_data_pagelist_init(&op->notify_ack.request_data, pl);
4737 op->indata_len = pl->length;
4738 return 0;
4739}
4740
4741int ceph_osdc_notify_ack(struct ceph_osd_client *osdc,
4742 struct ceph_object_id *oid,
4743 struct ceph_object_locator *oloc,
4744 u64 notify_id,
4745 u64 cookie,
4746 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +02004747 u32 payload_len)
Ilya Dryomov922dab62016-05-26 01:15:02 +02004748{
4749 struct ceph_osd_request *req;
4750 int ret;
4751
4752 req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4753 if (!req)
4754 return -ENOMEM;
4755
4756 ceph_oid_copy(&req->r_base_oid, oid);
4757 ceph_oloc_copy(&req->r_base_oloc, oloc);
4758 req->r_flags = CEPH_OSD_FLAG_READ;
4759
Ilya Dryomov26f887e2018-10-15 16:11:37 +02004760 ret = osd_req_op_notify_ack_init(req, 0, notify_id, cookie, payload,
4761 payload_len);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004762 if (ret)
4763 goto out_put_req;
4764
Ilya Dryomov26f887e2018-10-15 16:11:37 +02004765 ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
Ilya Dryomov922dab62016-05-26 01:15:02 +02004766 if (ret)
4767 goto out_put_req;
4768
4769 ceph_osdc_start_request(osdc, req, false);
4770 ret = ceph_osdc_wait_request(osdc, req);
4771
4772out_put_req:
4773 ceph_osdc_put_request(req);
4774 return ret;
4775}
4776EXPORT_SYMBOL(ceph_osdc_notify_ack);
4777
Ilya Dryomov19079202016-04-28 16:07:27 +02004778static int osd_req_op_notify_init(struct ceph_osd_request *req, int which,
4779 u64 cookie, u32 prot_ver, u32 timeout,
Ilya Dryomov6d542282018-06-25 17:26:55 +02004780 void *payload, u32 payload_len)
Ilya Dryomov19079202016-04-28 16:07:27 +02004781{
4782 struct ceph_osd_req_op *op;
4783 struct ceph_pagelist *pl;
4784 int ret;
4785
4786 op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY, 0);
4787 op->notify.cookie = cookie;
4788
Ilya Dryomov33165d42018-09-28 15:38:34 +02004789 pl = ceph_pagelist_alloc(GFP_NOIO);
Ilya Dryomov19079202016-04-28 16:07:27 +02004790 if (!pl)
4791 return -ENOMEM;
4792
Ilya Dryomov19079202016-04-28 16:07:27 +02004793 ret = ceph_pagelist_encode_32(pl, 1); /* prot_ver */
4794 ret |= ceph_pagelist_encode_32(pl, timeout);
4795 ret |= ceph_pagelist_encode_32(pl, payload_len);
4796 ret |= ceph_pagelist_append(pl, payload, payload_len);
4797 if (ret) {
4798 ceph_pagelist_release(pl);
4799 return -ENOMEM;
4800 }
4801
4802 ceph_osd_data_pagelist_init(&op->notify.request_data, pl);
4803 op->indata_len = pl->length;
4804 return 0;
4805}
4806
4807/*
4808 * @timeout: in seconds
4809 *
4810 * @preply_{pages,len} are initialized both on success and error.
4811 * The caller is responsible for:
4812 *
4813 * ceph_release_page_vector(reply_pages, calc_pages_for(0, reply_len))
4814 */
4815int ceph_osdc_notify(struct ceph_osd_client *osdc,
4816 struct ceph_object_id *oid,
4817 struct ceph_object_locator *oloc,
4818 void *payload,
Ilya Dryomov6d542282018-06-25 17:26:55 +02004819 u32 payload_len,
Ilya Dryomov19079202016-04-28 16:07:27 +02004820 u32 timeout,
4821 struct page ***preply_pages,
4822 size_t *preply_len)
4823{
4824 struct ceph_osd_linger_request *lreq;
4825 struct page **pages;
4826 int ret;
4827
4828 WARN_ON(!timeout);
4829 if (preply_pages) {
4830 *preply_pages = NULL;
4831 *preply_len = 0;
4832 }
4833
4834 lreq = linger_alloc(osdc);
4835 if (!lreq)
4836 return -ENOMEM;
4837
4838 lreq->preply_pages = preply_pages;
4839 lreq->preply_len = preply_len;
4840
4841 ceph_oid_copy(&lreq->t.base_oid, oid);
4842 ceph_oloc_copy(&lreq->t.base_oloc, oloc);
4843 lreq->t.flags = CEPH_OSD_FLAG_READ;
4844
4845 lreq->reg_req = alloc_linger_request(lreq);
4846 if (!lreq->reg_req) {
4847 ret = -ENOMEM;
4848 goto out_put_lreq;
4849 }
4850
Ilya Dryomov81c65212018-10-11 12:58:33 +02004851 /*
4852 * Pass 0 for cookie because we don't know it yet, it will be
4853 * filled in by linger_submit().
4854 */
4855 ret = osd_req_op_notify_init(lreq->reg_req, 0, 0, 1, timeout,
4856 payload, payload_len);
4857 if (ret)
4858 goto out_put_lreq;
4859
Ilya Dryomov19079202016-04-28 16:07:27 +02004860 /* for notify_id */
4861 pages = ceph_alloc_page_vector(1, GFP_NOIO);
4862 if (IS_ERR(pages)) {
4863 ret = PTR_ERR(pages);
4864 goto out_put_lreq;
4865 }
Ilya Dryomov19079202016-04-28 16:07:27 +02004866 ceph_osd_data_pages_init(osd_req_op_data(lreq->reg_req, 0, notify,
4867 response_data),
4868 pages, PAGE_SIZE, 0, false, true);
Ilya Dryomov19079202016-04-28 16:07:27 +02004869
Ilya Dryomov26f887e2018-10-15 16:11:37 +02004870 ret = ceph_osdc_alloc_messages(lreq->reg_req, GFP_NOIO);
4871 if (ret)
4872 goto out_put_lreq;
4873
Ilya Dryomov81c65212018-10-11 12:58:33 +02004874 linger_submit(lreq);
Ilya Dryomov19079202016-04-28 16:07:27 +02004875 ret = linger_reg_commit_wait(lreq);
4876 if (!ret)
4877 ret = linger_notify_finish_wait(lreq);
4878 else
4879 dout("lreq %p failed to initiate notify %d\n", lreq, ret);
4880
4881 linger_cancel(lreq);
4882out_put_lreq:
4883 linger_put(lreq);
4884 return ret;
4885}
4886EXPORT_SYMBOL(ceph_osdc_notify);
4887
Sage Weilf24e9982009-10-06 11:31:10 -07004888/*
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02004889 * Return the number of milliseconds since the watch was last
4890 * confirmed, or an error. If there is an error, the watch is no
4891 * longer valid, and should be destroyed with ceph_osdc_unwatch().
4892 */
4893int ceph_osdc_watch_check(struct ceph_osd_client *osdc,
4894 struct ceph_osd_linger_request *lreq)
4895{
4896 unsigned long stamp, age;
4897 int ret;
4898
4899 down_read(&osdc->lock);
4900 mutex_lock(&lreq->lock);
4901 stamp = lreq->watch_valid_thru;
4902 if (!list_empty(&lreq->pending_lworks)) {
4903 struct linger_work *lwork =
4904 list_first_entry(&lreq->pending_lworks,
4905 struct linger_work,
4906 pending_item);
4907
4908 if (time_before(lwork->queued_stamp, stamp))
4909 stamp = lwork->queued_stamp;
4910 }
4911 age = jiffies - stamp;
4912 dout("%s lreq %p linger_id %llu age %lu last_error %d\n", __func__,
4913 lreq, lreq->linger_id, age, lreq->last_error);
4914 /* we are truncating to msecs, so return a safe upper bound */
4915 ret = lreq->last_error ?: 1 + jiffies_to_msecs(age);
4916
4917 mutex_unlock(&lreq->lock);
4918 up_read(&osdc->lock);
4919 return ret;
4920}
4921
Douglas Fullera4ed38d2015-07-17 13:18:07 -07004922static int decode_watcher(void **p, void *end, struct ceph_watch_item *item)
4923{
4924 u8 struct_v;
4925 u32 struct_len;
4926 int ret;
4927
4928 ret = ceph_start_decoding(p, end, 2, "watch_item_t",
4929 &struct_v, &struct_len);
4930 if (ret)
Jeff Layton51fc7ab2019-06-04 14:35:18 -04004931 goto bad;
Douglas Fullera4ed38d2015-07-17 13:18:07 -07004932
Jeff Layton51fc7ab2019-06-04 14:35:18 -04004933 ret = -EINVAL;
4934 ceph_decode_copy_safe(p, end, &item->name, sizeof(item->name), bad);
4935 ceph_decode_64_safe(p, end, item->cookie, bad);
4936 ceph_decode_skip_32(p, end, bad); /* skip timeout seconds */
4937
Douglas Fullera4ed38d2015-07-17 13:18:07 -07004938 if (struct_v >= 2) {
Jeff Layton51fc7ab2019-06-04 14:35:18 -04004939 ret = ceph_decode_entity_addr(p, end, &item->addr);
4940 if (ret)
4941 goto bad;
4942 } else {
4943 ret = 0;
Douglas Fullera4ed38d2015-07-17 13:18:07 -07004944 }
4945
4946 dout("%s %s%llu cookie %llu addr %s\n", __func__,
4947 ENTITY_NAME(item->name), item->cookie,
Jeff Laytonb726ec92019-05-06 09:38:47 -04004948 ceph_pr_addr(&item->addr));
Jeff Layton51fc7ab2019-06-04 14:35:18 -04004949bad:
4950 return ret;
Douglas Fullera4ed38d2015-07-17 13:18:07 -07004951}
4952
4953static int decode_watchers(void **p, void *end,
4954 struct ceph_watch_item **watchers,
4955 u32 *num_watchers)
4956{
4957 u8 struct_v;
4958 u32 struct_len;
4959 int i;
4960 int ret;
4961
4962 ret = ceph_start_decoding(p, end, 1, "obj_list_watch_response_t",
4963 &struct_v, &struct_len);
4964 if (ret)
4965 return ret;
4966
4967 *num_watchers = ceph_decode_32(p);
4968 *watchers = kcalloc(*num_watchers, sizeof(**watchers), GFP_NOIO);
4969 if (!*watchers)
4970 return -ENOMEM;
4971
4972 for (i = 0; i < *num_watchers; i++) {
4973 ret = decode_watcher(p, end, *watchers + i);
4974 if (ret) {
4975 kfree(*watchers);
4976 return ret;
4977 }
4978 }
4979
4980 return 0;
4981}
4982
4983/*
4984 * On success, the caller is responsible for:
4985 *
4986 * kfree(watchers);
4987 */
4988int ceph_osdc_list_watchers(struct ceph_osd_client *osdc,
4989 struct ceph_object_id *oid,
4990 struct ceph_object_locator *oloc,
4991 struct ceph_watch_item **watchers,
4992 u32 *num_watchers)
4993{
4994 struct ceph_osd_request *req;
4995 struct page **pages;
4996 int ret;
4997
4998 req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
4999 if (!req)
5000 return -ENOMEM;
5001
5002 ceph_oid_copy(&req->r_base_oid, oid);
5003 ceph_oloc_copy(&req->r_base_oloc, oloc);
5004 req->r_flags = CEPH_OSD_FLAG_READ;
5005
Douglas Fullera4ed38d2015-07-17 13:18:07 -07005006 pages = ceph_alloc_page_vector(1, GFP_NOIO);
5007 if (IS_ERR(pages)) {
5008 ret = PTR_ERR(pages);
5009 goto out_put_req;
5010 }
5011
5012 osd_req_op_init(req, 0, CEPH_OSD_OP_LIST_WATCHERS, 0);
5013 ceph_osd_data_pages_init(osd_req_op_data(req, 0, list_watchers,
5014 response_data),
5015 pages, PAGE_SIZE, 0, false, true);
5016
Ilya Dryomov26f887e2018-10-15 16:11:37 +02005017 ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
5018 if (ret)
5019 goto out_put_req;
5020
Douglas Fullera4ed38d2015-07-17 13:18:07 -07005021 ceph_osdc_start_request(osdc, req, false);
5022 ret = ceph_osdc_wait_request(osdc, req);
5023 if (ret >= 0) {
5024 void *p = page_address(pages[0]);
5025 void *const end = p + req->r_ops[0].outdata_len;
5026
5027 ret = decode_watchers(&p, end, watchers, num_watchers);
5028 }
5029
5030out_put_req:
5031 ceph_osdc_put_request(req);
5032 return ret;
5033}
5034EXPORT_SYMBOL(ceph_osdc_list_watchers);
5035
Ilya Dryomovb07d3c42016-04-28 16:07:27 +02005036/*
Josh Durgindd935f42013-08-28 21:43:09 -07005037 * Call all pending notify callbacks - for use after a watch is
5038 * unregistered, to make sure no more callbacks for it will be invoked
5039 */
stephen hemmingerf64794492014-06-10 20:30:13 -07005040void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
Josh Durgindd935f42013-08-28 21:43:09 -07005041{
Ilya Dryomov99d16942016-08-12 16:11:41 +02005042 dout("%s osdc %p\n", __func__, osdc);
Josh Durgindd935f42013-08-28 21:43:09 -07005043 flush_workqueue(osdc->notify_wq);
5044}
5045EXPORT_SYMBOL(ceph_osdc_flush_notifies);
5046
Ilya Dryomov7cca78c2016-04-28 16:07:28 +02005047void ceph_osdc_maybe_request_map(struct ceph_osd_client *osdc)
5048{
5049 down_read(&osdc->lock);
5050 maybe_request_map(osdc);
5051 up_read(&osdc->lock);
5052}
5053EXPORT_SYMBOL(ceph_osdc_maybe_request_map);
Josh Durgindd935f42013-08-28 21:43:09 -07005054
5055/*
Douglas Fuller428a7152015-06-17 14:49:45 -04005056 * Execute an OSD class method on an object.
5057 *
5058 * @flags: CEPH_OSD_FLAG_*
Ilya Dryomov2544a022017-01-25 18:16:21 +01005059 * @resp_len: in/out param for reply length
Douglas Fuller428a7152015-06-17 14:49:45 -04005060 */
5061int ceph_osdc_call(struct ceph_osd_client *osdc,
5062 struct ceph_object_id *oid,
5063 struct ceph_object_locator *oloc,
5064 const char *class, const char *method,
5065 unsigned int flags,
5066 struct page *req_page, size_t req_len,
Ilya Dryomov68ada912019-06-14 18:16:51 +02005067 struct page **resp_pages, size_t *resp_len)
Douglas Fuller428a7152015-06-17 14:49:45 -04005068{
5069 struct ceph_osd_request *req;
5070 int ret;
5071
Ilya Dryomov68ada912019-06-14 18:16:51 +02005072 if (req_len > PAGE_SIZE)
Ilya Dryomov2544a022017-01-25 18:16:21 +01005073 return -E2BIG;
5074
Douglas Fuller428a7152015-06-17 14:49:45 -04005075 req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_NOIO);
5076 if (!req)
5077 return -ENOMEM;
5078
5079 ceph_oid_copy(&req->r_base_oid, oid);
5080 ceph_oloc_copy(&req->r_base_oloc, oloc);
5081 req->r_flags = flags;
5082
Ilya Dryomov24639ce562018-09-26 19:12:07 +02005083 ret = osd_req_op_cls_init(req, 0, class, method);
Chengguang Xufe943d52018-04-12 12:04:55 +08005084 if (ret)
5085 goto out_put_req;
5086
Douglas Fuller428a7152015-06-17 14:49:45 -04005087 if (req_page)
5088 osd_req_op_cls_request_data_pages(req, 0, &req_page, req_len,
5089 0, false, false);
Ilya Dryomov68ada912019-06-14 18:16:51 +02005090 if (resp_pages)
5091 osd_req_op_cls_response_data_pages(req, 0, resp_pages,
Ilya Dryomov2544a022017-01-25 18:16:21 +01005092 *resp_len, 0, false, false);
Douglas Fuller428a7152015-06-17 14:49:45 -04005093
Ilya Dryomov26f887e2018-10-15 16:11:37 +02005094 ret = ceph_osdc_alloc_messages(req, GFP_NOIO);
5095 if (ret)
5096 goto out_put_req;
5097
Douglas Fuller428a7152015-06-17 14:49:45 -04005098 ceph_osdc_start_request(osdc, req, false);
5099 ret = ceph_osdc_wait_request(osdc, req);
5100 if (ret >= 0) {
5101 ret = req->r_ops[0].rval;
Ilya Dryomov68ada912019-06-14 18:16:51 +02005102 if (resp_pages)
Douglas Fuller428a7152015-06-17 14:49:45 -04005103 *resp_len = req->r_ops[0].outdata_len;
5104 }
5105
5106out_put_req:
5107 ceph_osdc_put_request(req);
5108 return ret;
5109}
5110EXPORT_SYMBOL(ceph_osdc_call);
5111
5112/*
Yan, Zheng120a75e2019-07-25 20:16:39 +08005113 * reset all osd connections
5114 */
5115void ceph_osdc_reopen_osds(struct ceph_osd_client *osdc)
5116{
5117 struct rb_node *n;
5118
5119 down_write(&osdc->lock);
5120 for (n = rb_first(&osdc->osds); n; ) {
5121 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node);
5122
5123 n = rb_next(n);
5124 if (!reopen_osd(osd))
5125 kick_osd_requests(osd);
5126 }
5127 up_write(&osdc->lock);
5128}
5129
5130/*
Sage Weilf24e9982009-10-06 11:31:10 -07005131 * init, shutdown
5132 */
5133int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
5134{
5135 int err;
5136
5137 dout("init\n");
5138 osdc->client = client;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005139 init_rwsem(&osdc->lock);
Sage Weilf24e9982009-10-06 11:31:10 -07005140 osdc->osds = RB_ROOT;
Yehuda Sadehf5a20412010-02-03 11:00:26 -08005141 INIT_LIST_HEAD(&osdc->osd_lru);
Ilya Dryomov9dd28452016-04-28 16:07:26 +02005142 spin_lock_init(&osdc->osd_lru_lock);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005143 osd_init(&osdc->homeless_osd);
5144 osdc->homeless_osd.o_osdc = osdc;
5145 osdc->homeless_osd.o_osd = CEPH_HOMELESS_OSD;
Ilya Dryomov264048a2016-11-08 15:15:24 +01005146 osdc->last_linger_id = CEPH_LINGER_ID_START;
Ilya Dryomov922dab62016-05-26 01:15:02 +02005147 osdc->linger_requests = RB_ROOT;
Ilya Dryomov46092452016-04-28 16:07:27 +02005148 osdc->map_checks = RB_ROOT;
5149 osdc->linger_map_checks = RB_ROOT;
Sage Weilf24e9982009-10-06 11:31:10 -07005150 INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08005151 INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
5152
Sage Weil5f44f142009-11-18 14:52:18 -08005153 err = -ENOMEM;
Ilya Dryomove5253a72016-04-28 16:07:25 +02005154 osdc->osdmap = ceph_osdmap_alloc();
5155 if (!osdc->osdmap)
5156 goto out;
5157
Ilya Dryomov9e767ad2016-02-09 17:25:31 +01005158 osdc->req_mempool = mempool_create_slab_pool(10,
5159 ceph_osd_request_cache);
Sage Weilf24e9982009-10-06 11:31:10 -07005160 if (!osdc->req_mempool)
Ilya Dryomove5253a72016-04-28 16:07:25 +02005161 goto out_map;
Sage Weilf24e9982009-10-06 11:31:10 -07005162
Sage Weild50b4092012-07-09 14:22:34 -07005163 err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02005164 PAGE_SIZE, CEPH_OSD_SLAB_OPS, 10, "osd_op");
Sage Weilf24e9982009-10-06 11:31:10 -07005165 if (err < 0)
Sage Weil5f44f142009-11-18 14:52:18 -08005166 goto out_mempool;
Sage Weild50b4092012-07-09 14:22:34 -07005167 err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02005168 PAGE_SIZE, CEPH_OSD_SLAB_OPS, 10,
5169 "osd_op_reply");
Sage Weilc16e7862010-03-01 13:02:00 -08005170 if (err < 0)
5171 goto out_msgpool;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07005172
Dan Carpenterdbcae082013-08-15 08:58:59 +03005173 err = -ENOMEM;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07005174 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
Dan Carpenterdbcae082013-08-15 08:58:59 +03005175 if (!osdc->notify_wq)
Ilya Dryomovc172ec52014-01-31 17:49:22 +02005176 goto out_msgpool_reply;
5177
Ilya Dryomov88bc1922018-05-21 16:00:29 +02005178 osdc->completion_wq = create_singlethread_workqueue("ceph-completion");
5179 if (!osdc->completion_wq)
5180 goto out_notify_wq;
5181
Ilya Dryomovfbca9632016-04-28 16:07:24 +02005182 schedule_delayed_work(&osdc->timeout_work,
5183 osdc->client->options->osd_keepalive_timeout);
Ilya Dryomovb37ee1b2016-04-28 16:07:24 +02005184 schedule_delayed_work(&osdc->osds_timeout_work,
5185 round_jiffies_relative(osdc->client->options->osd_idle_ttl));
5186
Sage Weilf24e9982009-10-06 11:31:10 -07005187 return 0;
Sage Weil5f44f142009-11-18 14:52:18 -08005188
Ilya Dryomov88bc1922018-05-21 16:00:29 +02005189out_notify_wq:
5190 destroy_workqueue(osdc->notify_wq);
Ilya Dryomovc172ec52014-01-31 17:49:22 +02005191out_msgpool_reply:
5192 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
Sage Weilc16e7862010-03-01 13:02:00 -08005193out_msgpool:
5194 ceph_msgpool_destroy(&osdc->msgpool_op);
Sage Weil5f44f142009-11-18 14:52:18 -08005195out_mempool:
5196 mempool_destroy(osdc->req_mempool);
Ilya Dryomove5253a72016-04-28 16:07:25 +02005197out_map:
5198 ceph_osdmap_destroy(osdc->osdmap);
Sage Weil5f44f142009-11-18 14:52:18 -08005199out:
5200 return err;
Sage Weilf24e9982009-10-06 11:31:10 -07005201}
5202
5203void ceph_osdc_stop(struct ceph_osd_client *osdc)
5204{
Ilya Dryomov88bc1922018-05-21 16:00:29 +02005205 destroy_workqueue(osdc->completion_wq);
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07005206 destroy_workqueue(osdc->notify_wq);
Sage Weilf24e9982009-10-06 11:31:10 -07005207 cancel_delayed_work_sync(&osdc->timeout_work);
Yehuda Sadehf5a20412010-02-03 11:00:26 -08005208 cancel_delayed_work_sync(&osdc->osds_timeout_work);
Ilya Dryomov42a2c092016-04-28 16:07:22 +02005209
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005210 down_write(&osdc->lock);
Ilya Dryomov42a2c092016-04-28 16:07:22 +02005211 while (!RB_EMPTY_ROOT(&osdc->osds)) {
5212 struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds),
5213 struct ceph_osd, o_node);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005214 close_osd(osd);
Ilya Dryomov42a2c092016-04-28 16:07:22 +02005215 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005216 up_write(&osdc->lock);
Elena Reshetova02113a02017-03-17 14:10:28 +02005217 WARN_ON(refcount_read(&osdc->homeless_osd.o_ref) != 1);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005218 osd_cleanup(&osdc->homeless_osd);
5219
5220 WARN_ON(!list_empty(&osdc->osd_lru));
Ilya Dryomov922dab62016-05-26 01:15:02 +02005221 WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_requests));
Ilya Dryomov46092452016-04-28 16:07:27 +02005222 WARN_ON(!RB_EMPTY_ROOT(&osdc->map_checks));
5223 WARN_ON(!RB_EMPTY_ROOT(&osdc->linger_map_checks));
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005224 WARN_ON(atomic_read(&osdc->num_requests));
5225 WARN_ON(atomic_read(&osdc->num_homeless));
Ilya Dryomov42a2c092016-04-28 16:07:22 +02005226
Ilya Dryomove5253a72016-04-28 16:07:25 +02005227 ceph_osdmap_destroy(osdc->osdmap);
Sage Weilf24e9982009-10-06 11:31:10 -07005228 mempool_destroy(osdc->req_mempool);
5229 ceph_msgpool_destroy(&osdc->msgpool_op);
Sage Weilc16e7862010-03-01 13:02:00 -08005230 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
Sage Weilf24e9982009-10-06 11:31:10 -07005231}
5232
5233/*
5234 * Read some contiguous pages. If we cross a stripe boundary, shorten
5235 * *plen. Return number of bytes read, or error.
5236 */
5237int ceph_osdc_readpages(struct ceph_osd_client *osdc,
5238 struct ceph_vino vino, struct ceph_file_layout *layout,
5239 u64 off, u64 *plen,
5240 u32 truncate_seq, u64 truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -08005241 struct page **pages, int num_pages, int page_align)
Sage Weilf24e9982009-10-06 11:31:10 -07005242{
5243 struct ceph_osd_request *req;
5244 int rc = 0;
5245
5246 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino.ino,
5247 vino.snap, off, *plen);
Yan, Zheng715e4cd2014-11-13 14:40:37 +08005248 req = ceph_osdc_new_request(osdc, layout, vino, off, plen, 0, 1,
Sage Weilf24e9982009-10-06 11:31:10 -07005249 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
Alex Elderacead002013-03-14 14:09:05 -05005250 NULL, truncate_seq, truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -06005251 false);
Sage Weil68162822012-09-24 21:01:02 -07005252 if (IS_ERR(req))
5253 return PTR_ERR(req);
Sage Weilf24e9982009-10-06 11:31:10 -07005254
5255 /* it may be a short read due to an object boundary */
Alex Elder406e2c92013-04-15 14:50:36 -05005256 osd_req_op_extent_osd_data_pages(req, 0,
Alex Eldera4ce40a2013-04-05 01:27:12 -05005257 pages, *plen, page_align, false, false);
Sage Weilf24e9982009-10-06 11:31:10 -07005258
Alex Eldere0c59482013-03-07 15:38:25 -06005259 dout("readpages final extent is %llu~%llu (%llu bytes align %d)\n",
Alex Elder43bfe5d2013-04-03 01:28:57 -05005260 off, *plen, *plen, page_align);
Sage Weilf24e9982009-10-06 11:31:10 -07005261
5262 rc = ceph_osdc_start_request(osdc, req, false);
5263 if (!rc)
5264 rc = ceph_osdc_wait_request(osdc, req);
5265
5266 ceph_osdc_put_request(req);
5267 dout("readpages result %d\n", rc);
5268 return rc;
5269}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005270EXPORT_SYMBOL(ceph_osdc_readpages);
Sage Weilf24e9982009-10-06 11:31:10 -07005271
5272/*
5273 * do a synchronous write on N pages
5274 */
5275int ceph_osdc_writepages(struct ceph_osd_client *osdc, struct ceph_vino vino,
5276 struct ceph_file_layout *layout,
5277 struct ceph_snap_context *snapc,
5278 u64 off, u64 len,
5279 u32 truncate_seq, u64 truncate_size,
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02005280 struct timespec64 *mtime,
Alex Elder24808822013-02-15 11:42:29 -06005281 struct page **pages, int num_pages)
Sage Weilf24e9982009-10-06 11:31:10 -07005282{
5283 struct ceph_osd_request *req;
5284 int rc = 0;
Sage Weilb7495fc2010-11-09 12:43:12 -08005285 int page_align = off & ~PAGE_MASK;
Sage Weilf24e9982009-10-06 11:31:10 -07005286
Yan, Zheng715e4cd2014-11-13 14:40:37 +08005287 req = ceph_osdc_new_request(osdc, layout, vino, off, &len, 0, 1,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01005288 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
Alex Elderacead002013-03-14 14:09:05 -05005289 snapc, truncate_seq, truncate_size,
Alex Elder153e5162013-03-01 18:00:15 -06005290 true);
Sage Weil68162822012-09-24 21:01:02 -07005291 if (IS_ERR(req))
5292 return PTR_ERR(req);
Sage Weilf24e9982009-10-06 11:31:10 -07005293
5294 /* it may be a short write due to an object boundary */
Alex Elder406e2c92013-04-15 14:50:36 -05005295 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_align,
Alex Elder43bfe5d2013-04-03 01:28:57 -05005296 false, false);
5297 dout("writepages %llu~%llu (%llu bytes)\n", off, len, len);
Sage Weilf24e9982009-10-06 11:31:10 -07005298
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02005299 req->r_mtime = *mtime;
Alex Elder87f979d2013-02-15 11:42:29 -06005300 rc = ceph_osdc_start_request(osdc, req, true);
Sage Weilf24e9982009-10-06 11:31:10 -07005301 if (!rc)
5302 rc = ceph_osdc_wait_request(osdc, req);
5303
5304 ceph_osdc_put_request(req);
5305 if (rc == 0)
5306 rc = len;
5307 dout("writepages result %d\n", rc);
5308 return rc;
5309}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07005310EXPORT_SYMBOL(ceph_osdc_writepages);
Sage Weilf24e9982009-10-06 11:31:10 -07005311
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005312static int osd_req_op_copy_from_init(struct ceph_osd_request *req,
5313 u64 src_snapid, u64 src_version,
5314 struct ceph_object_id *src_oid,
5315 struct ceph_object_locator *src_oloc,
5316 u32 src_fadvise_flags,
5317 u32 dst_fadvise_flags,
Luis Henriques78beb0f2020-01-08 10:03:53 +00005318 u32 truncate_seq, u64 truncate_size,
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005319 u8 copy_from_flags)
5320{
5321 struct ceph_osd_req_op *op;
5322 struct page **pages;
5323 void *p, *end;
5324
5325 pages = ceph_alloc_page_vector(1, GFP_KERNEL);
5326 if (IS_ERR(pages))
5327 return PTR_ERR(pages);
5328
Luis Henriques78beb0f2020-01-08 10:03:53 +00005329 op = _osd_req_op_init(req, 0, CEPH_OSD_OP_COPY_FROM2,
5330 dst_fadvise_flags);
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005331 op->copy_from.snapid = src_snapid;
5332 op->copy_from.src_version = src_version;
5333 op->copy_from.flags = copy_from_flags;
5334 op->copy_from.src_fadvise_flags = src_fadvise_flags;
5335
5336 p = page_address(pages[0]);
5337 end = p + PAGE_SIZE;
5338 ceph_encode_string(&p, end, src_oid->name, src_oid->name_len);
5339 encode_oloc(&p, end, src_oloc);
Luis Henriques78beb0f2020-01-08 10:03:53 +00005340 ceph_encode_32(&p, truncate_seq);
5341 ceph_encode_64(&p, truncate_size);
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005342 op->indata_len = PAGE_SIZE - (end - p);
5343
5344 ceph_osd_data_pages_init(&op->copy_from.osd_data, pages,
5345 op->indata_len, 0, false, true);
5346 return 0;
5347}
5348
5349int ceph_osdc_copy_from(struct ceph_osd_client *osdc,
5350 u64 src_snapid, u64 src_version,
5351 struct ceph_object_id *src_oid,
5352 struct ceph_object_locator *src_oloc,
5353 u32 src_fadvise_flags,
5354 struct ceph_object_id *dst_oid,
5355 struct ceph_object_locator *dst_oloc,
5356 u32 dst_fadvise_flags,
Luis Henriques78beb0f2020-01-08 10:03:53 +00005357 u32 truncate_seq, u64 truncate_size,
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005358 u8 copy_from_flags)
5359{
5360 struct ceph_osd_request *req;
5361 int ret;
5362
5363 req = ceph_osdc_alloc_request(osdc, NULL, 1, false, GFP_KERNEL);
5364 if (!req)
5365 return -ENOMEM;
5366
5367 req->r_flags = CEPH_OSD_FLAG_WRITE;
5368
5369 ceph_oloc_copy(&req->r_t.base_oloc, dst_oloc);
5370 ceph_oid_copy(&req->r_t.base_oid, dst_oid);
5371
5372 ret = osd_req_op_copy_from_init(req, src_snapid, src_version, src_oid,
5373 src_oloc, src_fadvise_flags,
Luis Henriques78beb0f2020-01-08 10:03:53 +00005374 dst_fadvise_flags, truncate_seq,
5375 truncate_size, copy_from_flags);
Luis Henriques23ddf9b2018-10-15 16:45:58 +01005376 if (ret)
5377 goto out;
5378
5379 ret = ceph_osdc_alloc_messages(req, GFP_KERNEL);
5380 if (ret)
5381 goto out;
5382
5383 ceph_osdc_start_request(osdc, req, false);
5384 ret = ceph_osdc_wait_request(osdc, req);
5385
5386out:
5387 ceph_osdc_put_request(req);
5388 return ret;
5389}
5390EXPORT_SYMBOL(ceph_osdc_copy_from);
5391
Chengguang Xu57a35df2018-03-10 20:32:05 +08005392int __init ceph_osdc_setup(void)
Alex Elder5522ae02013-05-01 12:43:04 -05005393{
Ilya Dryomov3f1af422016-02-09 17:50:15 +01005394 size_t size = sizeof(struct ceph_osd_request) +
5395 CEPH_OSD_SLAB_OPS * sizeof(struct ceph_osd_req_op);
5396
Alex Elder5522ae02013-05-01 12:43:04 -05005397 BUG_ON(ceph_osd_request_cache);
Ilya Dryomov3f1af422016-02-09 17:50:15 +01005398 ceph_osd_request_cache = kmem_cache_create("ceph_osd_request", size,
5399 0, 0, NULL);
Alex Elder5522ae02013-05-01 12:43:04 -05005400
5401 return ceph_osd_request_cache ? 0 : -ENOMEM;
5402}
Alex Elder5522ae02013-05-01 12:43:04 -05005403
5404void ceph_osdc_cleanup(void)
5405{
5406 BUG_ON(!ceph_osd_request_cache);
5407 kmem_cache_destroy(ceph_osd_request_cache);
5408 ceph_osd_request_cache = NULL;
5409}
Alex Elder5522ae02013-05-01 12:43:04 -05005410
Sage Weilf24e9982009-10-06 11:31:10 -07005411/*
5412 * handle incoming message
5413 */
5414static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
5415{
5416 struct ceph_osd *osd = con->private;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005417 struct ceph_osd_client *osdc = osd->o_osdc;
Sage Weilf24e9982009-10-06 11:31:10 -07005418 int type = le16_to_cpu(msg->hdr.type);
5419
Sage Weilf24e9982009-10-06 11:31:10 -07005420 switch (type) {
5421 case CEPH_MSG_OSD_MAP:
5422 ceph_osdc_handle_map(osdc, msg);
5423 break;
5424 case CEPH_MSG_OSD_OPREPLY:
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005425 handle_reply(osd, msg);
Sage Weilf24e9982009-10-06 11:31:10 -07005426 break;
Ilya Dryomova02a9462017-06-19 12:18:05 +02005427 case CEPH_MSG_OSD_BACKOFF:
5428 handle_backoff(osd, msg);
5429 break;
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07005430 case CEPH_MSG_WATCH_NOTIFY:
5431 handle_watch_notify(osdc, msg);
5432 break;
Sage Weilf24e9982009-10-06 11:31:10 -07005433
5434 default:
5435 pr_err("received unknown message type %d %s\n", type,
5436 ceph_msg_type_name(type));
5437 }
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005438
Sage Weilf24e9982009-10-06 11:31:10 -07005439 ceph_msg_put(msg);
5440}
5441
Sage Weil5b3a4db2010-02-19 21:43:23 -08005442/*
Ilya Dryomovd15f9d62015-09-02 11:37:09 +03005443 * Lookup and return message for incoming reply. Don't try to do
5444 * anything about a larger than preallocated data portion of the
5445 * message at the moment - for now, just skip the message.
Sage Weil5b3a4db2010-02-19 21:43:23 -08005446 */
5447static struct ceph_msg *get_reply(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -08005448 struct ceph_msg_header *hdr,
5449 int *skip)
Sage Weilf24e9982009-10-06 11:31:10 -07005450{
5451 struct ceph_osd *osd = con->private;
5452 struct ceph_osd_client *osdc = osd->o_osdc;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005453 struct ceph_msg *m = NULL;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08005454 struct ceph_osd_request *req;
Ilya Dryomov3f0a4ac2014-01-09 20:08:21 +02005455 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -08005456 int data_len = le32_to_cpu(hdr->data_len);
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005457 u64 tid = le64_to_cpu(hdr->tid);
Sage Weilf24e9982009-10-06 11:31:10 -07005458
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005459 down_read(&osdc->lock);
5460 if (!osd_registered(osd)) {
5461 dout("%s osd%d unknown, skipping\n", __func__, osd->o_osd);
5462 *skip = 1;
5463 goto out_unlock_osdc;
5464 }
5465 WARN_ON(osd->o_osd != le64_to_cpu(hdr->src.num));
5466
5467 mutex_lock(&osd->lock);
5468 req = lookup_request(&osd->o_requests, tid);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08005469 if (!req) {
Ilya Dryomovcd8140c2016-02-19 11:38:57 +01005470 dout("%s osd%d tid %llu unknown, skipping\n", __func__,
5471 osd->o_osd, tid);
Ilya Dryomovd15f9d62015-09-02 11:37:09 +03005472 *skip = 1;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005473 goto out_unlock_session;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08005474 }
Sage Weilc16e7862010-03-01 13:02:00 -08005475
Alex Elderace6d3a2013-04-01 16:12:14 -05005476 ceph_msg_revoke_incoming(req->r_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -08005477
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02005478 if (front_len > req->r_reply->front_alloc_len) {
Ilya Dryomovd15f9d62015-09-02 11:37:09 +03005479 pr_warn("%s osd%d tid %llu front %d > preallocated %d\n",
5480 __func__, osd->o_osd, req->r_tid, front_len,
5481 req->r_reply->front_alloc_len);
Ilya Dryomov3f0a4ac2014-01-09 20:08:21 +02005482 m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS,
5483 false);
Sage Weila79832f2010-04-01 16:06:19 -07005484 if (!m)
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005485 goto out_unlock_session;
Sage Weilc16e7862010-03-01 13:02:00 -08005486 ceph_msg_put(req->r_reply);
5487 req->r_reply = m;
5488 }
Sage Weilc16e7862010-03-01 13:02:00 -08005489
Ilya Dryomovd15f9d62015-09-02 11:37:09 +03005490 if (data_len > req->r_reply->data_length) {
5491 pr_warn("%s osd%d tid %llu data %d > preallocated %zu, skipping\n",
5492 __func__, osd->o_osd, req->r_tid, data_len,
5493 req->r_reply->data_length);
5494 m = NULL;
5495 *skip = 1;
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005496 goto out_unlock_session;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08005497 }
Ilya Dryomovd15f9d62015-09-02 11:37:09 +03005498
5499 m = ceph_msg_get(req->r_reply);
Sage Weilc16e7862010-03-01 13:02:00 -08005500 dout("get_reply tid %lld %p\n", tid, m);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08005501
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005502out_unlock_session:
5503 mutex_unlock(&osd->lock);
5504out_unlock_osdc:
5505 up_read(&osdc->lock);
Yehuda Sadeh24504182010-01-08 13:58:34 -08005506 return m;
Sage Weil5b3a4db2010-02-19 21:43:23 -08005507}
5508
Ilya Dryomov19079202016-04-28 16:07:27 +02005509/*
5510 * TODO: switch to a msg-owned pagelist
5511 */
5512static struct ceph_msg *alloc_msg_with_page_vector(struct ceph_msg_header *hdr)
5513{
5514 struct ceph_msg *m;
5515 int type = le16_to_cpu(hdr->type);
5516 u32 front_len = le32_to_cpu(hdr->front_len);
5517 u32 data_len = le32_to_cpu(hdr->data_len);
5518
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02005519 m = ceph_msg_new2(type, front_len, 1, GFP_NOIO, false);
Ilya Dryomov19079202016-04-28 16:07:27 +02005520 if (!m)
5521 return NULL;
5522
5523 if (data_len) {
5524 struct page **pages;
5525 struct ceph_osd_data osd_data;
5526
5527 pages = ceph_alloc_page_vector(calc_pages_for(0, data_len),
5528 GFP_NOIO);
Wei Yongjunc22e8532016-07-30 00:37:57 +00005529 if (IS_ERR(pages)) {
Ilya Dryomov19079202016-04-28 16:07:27 +02005530 ceph_msg_put(m);
5531 return NULL;
5532 }
5533
5534 ceph_osd_data_pages_init(&osd_data, pages, data_len, 0, false,
5535 false);
5536 ceph_osdc_msg_data_add(m, &osd_data);
5537 }
5538
5539 return m;
5540}
5541
Sage Weil5b3a4db2010-02-19 21:43:23 -08005542static struct ceph_msg *alloc_msg(struct ceph_connection *con,
5543 struct ceph_msg_header *hdr,
5544 int *skip)
5545{
5546 struct ceph_osd *osd = con->private;
5547 int type = le16_to_cpu(hdr->type);
Sage Weil5b3a4db2010-02-19 21:43:23 -08005548
Alex Elder1c20f2d2012-06-04 14:43:32 -05005549 *skip = 0;
Sage Weil5b3a4db2010-02-19 21:43:23 -08005550 switch (type) {
5551 case CEPH_MSG_OSD_MAP:
Ilya Dryomova02a9462017-06-19 12:18:05 +02005552 case CEPH_MSG_OSD_BACKOFF:
Yehuda Sadeha40c4f12011-03-21 15:07:16 -07005553 case CEPH_MSG_WATCH_NOTIFY:
Ilya Dryomov19079202016-04-28 16:07:27 +02005554 return alloc_msg_with_page_vector(hdr);
Sage Weil5b3a4db2010-02-19 21:43:23 -08005555 case CEPH_MSG_OSD_OPREPLY:
5556 return get_reply(con, hdr, skip);
5557 default:
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005558 pr_warn("%s osd%d unknown msg type %d, skipping\n", __func__,
5559 osd->o_osd, type);
Sage Weil5b3a4db2010-02-19 21:43:23 -08005560 *skip = 1;
5561 return NULL;
5562 }
Sage Weilf24e9982009-10-06 11:31:10 -07005563}
5564
5565/*
5566 * Wrappers to refcount containing ceph_osd struct
5567 */
5568static struct ceph_connection *get_osd_con(struct ceph_connection *con)
5569{
5570 struct ceph_osd *osd = con->private;
5571 if (get_osd(osd))
5572 return con;
5573 return NULL;
5574}
5575
5576static void put_osd_con(struct ceph_connection *con)
5577{
5578 struct ceph_osd *osd = con->private;
5579 put_osd(osd);
5580}
5581
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005582/*
5583 * authentication
5584 */
Alex Eldera3530df2012-05-16 15:16:39 -05005585/*
5586 * Note: returned pointer is the address of a structure that's
5587 * managed separately. Caller must *not* attempt to free it.
5588 */
5589static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
Alex Elder8f43fb52012-05-16 15:16:39 -05005590 int *proto, int force_new)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005591{
5592 struct ceph_osd *o = con->private;
5593 struct ceph_osd_client *osdc = o->o_osdc;
5594 struct ceph_auth_client *ac = osdc->client->monc.auth;
Alex Elder74f18692012-05-16 15:16:39 -05005595 struct ceph_auth_handshake *auth = &o->o_auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005596
Alex Elder74f18692012-05-16 15:16:39 -05005597 if (force_new && auth->authorizer) {
Ilya Dryomov6c1ea262016-04-11 19:34:49 +02005598 ceph_auth_destroy_authorizer(auth->authorizer);
Alex Elder74f18692012-05-16 15:16:39 -05005599 auth->authorizer = NULL;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005600 }
Sage Weil27859f92013-03-25 10:26:14 -07005601 if (!auth->authorizer) {
5602 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
5603 auth);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005604 if (ret)
Alex Eldera3530df2012-05-16 15:16:39 -05005605 return ERR_PTR(ret);
Sage Weil27859f92013-03-25 10:26:14 -07005606 } else {
5607 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
Sage Weil0bed9b52013-03-25 10:26:01 -07005608 auth);
5609 if (ret)
5610 return ERR_PTR(ret);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005611 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005612 *proto = ac->protocol;
Alex Elder74f18692012-05-16 15:16:39 -05005613
Alex Eldera3530df2012-05-16 15:16:39 -05005614 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005615}
5616
Ilya Dryomov6daca132018-07-27 19:18:34 +02005617static int add_authorizer_challenge(struct ceph_connection *con,
5618 void *challenge_buf, int challenge_buf_len)
5619{
5620 struct ceph_osd *o = con->private;
5621 struct ceph_osd_client *osdc = o->o_osdc;
5622 struct ceph_auth_client *ac = osdc->client->monc.auth;
5623
5624 return ceph_auth_add_authorizer_challenge(ac, o->o_auth.authorizer,
5625 challenge_buf, challenge_buf_len);
5626}
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005627
Ilya Dryomov0dde5842016-12-02 16:35:09 +01005628static int verify_authorizer_reply(struct ceph_connection *con)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005629{
5630 struct ceph_osd *o = con->private;
5631 struct ceph_osd_client *osdc = o->o_osdc;
5632 struct ceph_auth_client *ac = osdc->client->monc.auth;
5633
Ilya Dryomov0dde5842016-12-02 16:35:09 +01005634 return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005635}
5636
Sage Weil9bd2e6f2010-02-02 16:21:06 -08005637static int invalidate_authorizer(struct ceph_connection *con)
5638{
5639 struct ceph_osd *o = con->private;
5640 struct ceph_osd_client *osdc = o->o_osdc;
5641 struct ceph_auth_client *ac = osdc->client->monc.auth;
5642
Sage Weil27859f92013-03-25 10:26:14 -07005643 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08005644 return ceph_monc_validate_auth(&osdc->client->monc);
5645}
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005646
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02005647static void osd_reencode_message(struct ceph_msg *msg)
5648{
Ilya Dryomov914902a2017-07-14 16:08:54 +02005649 int type = le16_to_cpu(msg->hdr.type);
5650
5651 if (type == CEPH_MSG_OSD_OP)
5652 encode_request_finish(msg);
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02005653}
5654
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005655static int osd_sign_message(struct ceph_msg *msg)
Yan, Zheng33d07332014-11-04 16:33:37 +08005656{
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005657 struct ceph_osd *o = msg->con->private;
Yan, Zheng33d07332014-11-04 16:33:37 +08005658 struct ceph_auth_handshake *auth = &o->o_auth;
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005659
Yan, Zheng33d07332014-11-04 16:33:37 +08005660 return ceph_auth_sign_message(auth, msg);
5661}
5662
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005663static int osd_check_message_signature(struct ceph_msg *msg)
Yan, Zheng33d07332014-11-04 16:33:37 +08005664{
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005665 struct ceph_osd *o = msg->con->private;
Yan, Zheng33d07332014-11-04 16:33:37 +08005666 struct ceph_auth_handshake *auth = &o->o_auth;
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005667
Yan, Zheng33d07332014-11-04 16:33:37 +08005668 return ceph_auth_check_message_signature(auth, msg);
5669}
5670
Tobias Klauser9e327892010-05-20 10:40:19 +02005671static const struct ceph_connection_operations osd_con_ops = {
Sage Weilf24e9982009-10-06 11:31:10 -07005672 .get = get_osd_con,
5673 .put = put_osd_con,
5674 .dispatch = dispatch,
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005675 .get_authorizer = get_authorizer,
Ilya Dryomov6daca132018-07-27 19:18:34 +02005676 .add_authorizer_challenge = add_authorizer_challenge,
Sage Weil4e7a5dc2009-11-18 16:19:57 -08005677 .verify_authorizer_reply = verify_authorizer_reply,
Sage Weil9bd2e6f2010-02-02 16:21:06 -08005678 .invalidate_authorizer = invalidate_authorizer,
Sage Weilf24e9982009-10-06 11:31:10 -07005679 .alloc_msg = alloc_msg,
Ilya Dryomov8cb441c2017-06-15 16:30:54 +02005680 .reencode_message = osd_reencode_message,
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01005681 .sign_message = osd_sign_message,
5682 .check_message_signature = osd_check_message_signature,
Ilya Dryomov5aea3dc2016-04-28 16:07:26 +02005683 .fault = osd_fault,
Sage Weilf24e9982009-10-06 11:31:10 -07005684};