Linux 4.6-rc5
[linux-2.6-block.git] / net / ceph / osd_client.c
CommitLineData
a4ce40a9 1
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
f24e9980 3
3d14c5d2 4#include <linux/module.h>
f24e9980
SW
5#include <linux/err.h>
6#include <linux/highmem.h>
7#include <linux/mm.h>
8#include <linux/pagemap.h>
9#include <linux/slab.h>
10#include <linux/uaccess.h>
68b4476b
YS
11#ifdef CONFIG_BLOCK
12#include <linux/bio.h>
13#endif
f24e9980 14
3d14c5d2
YS
15#include <linux/ceph/libceph.h>
16#include <linux/ceph/osd_client.h>
17#include <linux/ceph/messenger.h>
18#include <linux/ceph/decode.h>
19#include <linux/ceph/auth.h>
20#include <linux/ceph/pagelist.h>
f24e9980 21
c16e7869
SW
22#define OSD_OP_FRONT_LEN 4096
23#define OSD_OPREPLY_FRONT_LEN 512
0d59ab81 24
5522ae0b
AE
25static struct kmem_cache *ceph_osd_request_cache;
26
9e32789f 27static const struct ceph_connection_operations osd_con_ops;
f24e9980 28
f9d25199 29static void __send_queued(struct ceph_osd_client *osdc);
6f6c7006 30static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd);
a40c4f10
YS
31static void __register_request(struct ceph_osd_client *osdc,
32 struct ceph_osd_request *req);
2cc6128a
ID
33static void __unregister_request(struct ceph_osd_client *osdc,
34 struct ceph_osd_request *req);
a40c4f10
YS
35static void __unregister_linger_request(struct ceph_osd_client *osdc,
36 struct ceph_osd_request *req);
2cc6128a 37static void __enqueue_request(struct ceph_osd_request *req);
56e925b6
SW
38static void __send_request(struct ceph_osd_client *osdc,
39 struct ceph_osd_request *req);
f24e9980
SW
40
41/*
42 * Implement client access to distributed object storage cluster.
43 *
44 * All data objects are stored within a cluster/cloud of OSDs, or
45 * "object storage devices." (Note that Ceph OSDs have _nothing_ to
46 * do with the T10 OSD extensions to SCSI.) Ceph OSDs are simply
47 * remote daemons serving up and coordinating consistent and safe
48 * access to storage.
49 *
50 * Cluster membership and the mapping of data objects onto storage devices
51 * are described by the osd map.
52 *
53 * We keep track of pending OSD requests (read, write), resubmit
54 * requests to different OSDs when the cluster topology/data layout
55 * change, or retry the affected requests when the communications
56 * channel with an OSD is reset.
57 */
58
59/*
60 * calculate the mapping of a file extent onto an object, and fill out the
61 * request accordingly. shorten extent as necessary if it crosses an
62 * object boundary.
63 *
64 * fill osd op in request message.
65 */
dbe0fc41 66static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
a19dadfb 67 u64 *objnum, u64 *objoff, u64 *objlen)
f24e9980 68{
60e56f13 69 u64 orig_len = *plen;
d63b77f4 70 int r;
f24e9980 71
60e56f13 72 /* object extent? */
75d1c941
AE
73 r = ceph_calc_file_object_mapping(layout, off, orig_len, objnum,
74 objoff, objlen);
d63b77f4
SW
75 if (r < 0)
76 return r;
75d1c941
AE
77 if (*objlen < orig_len) {
78 *plen = *objlen;
60e56f13
AE
79 dout(" skipping last %llu, final file extent %llu~%llu\n",
80 orig_len - *plen, off, *plen);
81 }
82
75d1c941 83 dout("calc_layout objnum=%llx %llu~%llu\n", *objnum, *objoff, *objlen);
f24e9980 84
3ff5f385 85 return 0;
f24e9980
SW
86}
87
c54d47bf
AE
88static void ceph_osd_data_init(struct ceph_osd_data *osd_data)
89{
90 memset(osd_data, 0, sizeof (*osd_data));
91 osd_data->type = CEPH_OSD_DATA_TYPE_NONE;
92}
93
a4ce40a9 94static void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
43bfe5de
AE
95 struct page **pages, u64 length, u32 alignment,
96 bool pages_from_pool, bool own_pages)
97{
98 osd_data->type = CEPH_OSD_DATA_TYPE_PAGES;
99 osd_data->pages = pages;
100 osd_data->length = length;
101 osd_data->alignment = alignment;
102 osd_data->pages_from_pool = pages_from_pool;
103 osd_data->own_pages = own_pages;
104}
43bfe5de 105
a4ce40a9 106static void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
43bfe5de
AE
107 struct ceph_pagelist *pagelist)
108{
109 osd_data->type = CEPH_OSD_DATA_TYPE_PAGELIST;
110 osd_data->pagelist = pagelist;
111}
43bfe5de
AE
112
113#ifdef CONFIG_BLOCK
a4ce40a9 114static void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
43bfe5de
AE
115 struct bio *bio, size_t bio_length)
116{
117 osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
118 osd_data->bio = bio;
119 osd_data->bio_length = bio_length;
120}
43bfe5de
AE
121#endif /* CONFIG_BLOCK */
122
8a703a38
IC
123#define osd_req_op_data(oreq, whch, typ, fld) \
124({ \
125 struct ceph_osd_request *__oreq = (oreq); \
126 unsigned int __whch = (whch); \
127 BUG_ON(__whch >= __oreq->r_num_ops); \
128 &__oreq->r_ops[__whch].typ.fld; \
129})
863c7eb5 130
49719778
AE
131static struct ceph_osd_data *
132osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which)
133{
134 BUG_ON(which >= osd_req->r_num_ops);
135
136 return &osd_req->r_ops[which].raw_data_in;
137}
138
a4ce40a9
AE
139struct ceph_osd_data *
140osd_req_op_extent_osd_data(struct ceph_osd_request *osd_req,
406e2c9f 141 unsigned int which)
a4ce40a9 142{
863c7eb5 143 return osd_req_op_data(osd_req, which, extent, osd_data);
a4ce40a9
AE
144}
145EXPORT_SYMBOL(osd_req_op_extent_osd_data);
146
a4ce40a9
AE
147struct ceph_osd_data *
148osd_req_op_cls_response_data(struct ceph_osd_request *osd_req,
149 unsigned int which)
150{
863c7eb5 151 return osd_req_op_data(osd_req, which, cls, response_data);
a4ce40a9
AE
152}
153EXPORT_SYMBOL(osd_req_op_cls_response_data); /* ??? */
154
49719778
AE
155void osd_req_op_raw_data_in_pages(struct ceph_osd_request *osd_req,
156 unsigned int which, struct page **pages,
157 u64 length, u32 alignment,
158 bool pages_from_pool, bool own_pages)
159{
160 struct ceph_osd_data *osd_data;
161
162 osd_data = osd_req_op_raw_data_in(osd_req, which);
163 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
164 pages_from_pool, own_pages);
165}
166EXPORT_SYMBOL(osd_req_op_raw_data_in_pages);
167
a4ce40a9 168void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *osd_req,
406e2c9f
AE
169 unsigned int which, struct page **pages,
170 u64 length, u32 alignment,
a4ce40a9
AE
171 bool pages_from_pool, bool own_pages)
172{
173 struct ceph_osd_data *osd_data;
174
863c7eb5 175 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
a4ce40a9
AE
176 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
177 pages_from_pool, own_pages);
a4ce40a9
AE
178}
179EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages);
180
181void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *osd_req,
406e2c9f 182 unsigned int which, struct ceph_pagelist *pagelist)
a4ce40a9
AE
183{
184 struct ceph_osd_data *osd_data;
185
863c7eb5 186 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
a4ce40a9 187 ceph_osd_data_pagelist_init(osd_data, pagelist);
a4ce40a9
AE
188}
189EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist);
190
191#ifdef CONFIG_BLOCK
192void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
406e2c9f 193 unsigned int which, struct bio *bio, size_t bio_length)
a4ce40a9
AE
194{
195 struct ceph_osd_data *osd_data;
863c7eb5
AE
196
197 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
a4ce40a9 198 ceph_osd_data_bio_init(osd_data, bio, bio_length);
a4ce40a9
AE
199}
200EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio);
201#endif /* CONFIG_BLOCK */
202
203static void osd_req_op_cls_request_info_pagelist(
204 struct ceph_osd_request *osd_req,
205 unsigned int which, struct ceph_pagelist *pagelist)
206{
207 struct ceph_osd_data *osd_data;
208
863c7eb5 209 osd_data = osd_req_op_data(osd_req, which, cls, request_info);
a4ce40a9 210 ceph_osd_data_pagelist_init(osd_data, pagelist);
a4ce40a9
AE
211}
212
04017e29
AE
213void osd_req_op_cls_request_data_pagelist(
214 struct ceph_osd_request *osd_req,
215 unsigned int which, struct ceph_pagelist *pagelist)
216{
217 struct ceph_osd_data *osd_data;
218
863c7eb5 219 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
04017e29
AE
220 ceph_osd_data_pagelist_init(osd_data, pagelist);
221}
222EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist);
223
6c57b554
AE
224void osd_req_op_cls_request_data_pages(struct ceph_osd_request *osd_req,
225 unsigned int which, struct page **pages, u64 length,
226 u32 alignment, bool pages_from_pool, bool own_pages)
227{
228 struct ceph_osd_data *osd_data;
229
230 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
231 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
232 pages_from_pool, own_pages);
233}
234EXPORT_SYMBOL(osd_req_op_cls_request_data_pages);
235
a4ce40a9
AE
236void osd_req_op_cls_response_data_pages(struct ceph_osd_request *osd_req,
237 unsigned int which, struct page **pages, u64 length,
238 u32 alignment, bool pages_from_pool, bool own_pages)
239{
240 struct ceph_osd_data *osd_data;
241
863c7eb5 242 osd_data = osd_req_op_data(osd_req, which, cls, response_data);
a4ce40a9
AE
243 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
244 pages_from_pool, own_pages);
a4ce40a9
AE
245}
246EXPORT_SYMBOL(osd_req_op_cls_response_data_pages);
247
23c08a9c
AE
248static u64 ceph_osd_data_length(struct ceph_osd_data *osd_data)
249{
250 switch (osd_data->type) {
251 case CEPH_OSD_DATA_TYPE_NONE:
252 return 0;
253 case CEPH_OSD_DATA_TYPE_PAGES:
254 return osd_data->length;
255 case CEPH_OSD_DATA_TYPE_PAGELIST:
256 return (u64)osd_data->pagelist->length;
257#ifdef CONFIG_BLOCK
258 case CEPH_OSD_DATA_TYPE_BIO:
259 return (u64)osd_data->bio_length;
260#endif /* CONFIG_BLOCK */
261 default:
262 WARN(true, "unrecognized data type %d\n", (int)osd_data->type);
263 return 0;
264 }
265}
266
c54d47bf
AE
267static void ceph_osd_data_release(struct ceph_osd_data *osd_data)
268{
5476492f 269 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES && osd_data->own_pages) {
c54d47bf
AE
270 int num_pages;
271
272 num_pages = calc_pages_for((u64)osd_data->alignment,
273 (u64)osd_data->length);
274 ceph_release_page_vector(osd_data->pages, num_pages);
275 }
5476492f
AE
276 ceph_osd_data_init(osd_data);
277}
278
279static void osd_req_op_data_release(struct ceph_osd_request *osd_req,
280 unsigned int which)
281{
282 struct ceph_osd_req_op *op;
283
284 BUG_ON(which >= osd_req->r_num_ops);
285 op = &osd_req->r_ops[which];
286
287 switch (op->op) {
288 case CEPH_OSD_OP_READ:
289 case CEPH_OSD_OP_WRITE:
e30b7577 290 case CEPH_OSD_OP_WRITEFULL:
5476492f
AE
291 ceph_osd_data_release(&op->extent.osd_data);
292 break;
293 case CEPH_OSD_OP_CALL:
294 ceph_osd_data_release(&op->cls.request_info);
04017e29 295 ceph_osd_data_release(&op->cls.request_data);
5476492f
AE
296 ceph_osd_data_release(&op->cls.response_data);
297 break;
d74b50be
YZ
298 case CEPH_OSD_OP_SETXATTR:
299 case CEPH_OSD_OP_CMPXATTR:
300 ceph_osd_data_release(&op->xattr.osd_data);
301 break;
66ba609f
YZ
302 case CEPH_OSD_OP_STAT:
303 ceph_osd_data_release(&op->raw_data_in);
304 break;
5476492f
AE
305 default:
306 break;
307 }
c54d47bf
AE
308}
309
f24e9980
SW
310/*
311 * requests
312 */
9e94af20 313static void ceph_osdc_release_request(struct kref *kref)
f24e9980 314{
9e94af20
ID
315 struct ceph_osd_request *req = container_of(kref,
316 struct ceph_osd_request, r_kref);
5476492f 317 unsigned int which;
415e49a9 318
9e94af20
ID
319 dout("%s %p (r_request %p r_reply %p)\n", __func__, req,
320 req->r_request, req->r_reply);
6562d661
ID
321 WARN_ON(!RB_EMPTY_NODE(&req->r_node));
322 WARN_ON(!list_empty(&req->r_req_lru_item));
323 WARN_ON(!list_empty(&req->r_osd_item));
324 WARN_ON(!list_empty(&req->r_linger_item));
325 WARN_ON(!list_empty(&req->r_linger_osd_item));
326 WARN_ON(req->r_osd);
9e94af20 327
415e49a9
SW
328 if (req->r_request)
329 ceph_msg_put(req->r_request);
ace6d3a9 330 if (req->r_reply) {
8921d114 331 ceph_msg_revoke_incoming(req->r_reply);
ab8cb34a 332 ceph_msg_put(req->r_reply);
ace6d3a9 333 }
0fff87ec 334
5476492f
AE
335 for (which = 0; which < req->r_num_ops; which++)
336 osd_req_op_data_release(req, which);
0fff87ec 337
415e49a9
SW
338 ceph_put_snap_context(req->r_snapc);
339 if (req->r_mempool)
340 mempool_free(req, req->r_osdc->req_mempool);
3f1af42a 341 else if (req->r_num_ops <= CEPH_OSD_SLAB_OPS)
5522ae0b 342 kmem_cache_free(ceph_osd_request_cache, req);
3f1af42a
ID
343 else
344 kfree(req);
f24e9980 345}
9e94af20
ID
346
347void ceph_osdc_get_request(struct ceph_osd_request *req)
348{
349 dout("%s %p (was %d)\n", __func__, req,
350 atomic_read(&req->r_kref.refcount));
351 kref_get(&req->r_kref);
352}
353EXPORT_SYMBOL(ceph_osdc_get_request);
354
355void ceph_osdc_put_request(struct ceph_osd_request *req)
356{
357 dout("%s %p (was %d)\n", __func__, req,
358 atomic_read(&req->r_kref.refcount));
359 kref_put(&req->r_kref, ceph_osdc_release_request);
360}
361EXPORT_SYMBOL(ceph_osdc_put_request);
68b4476b 362
3499e8a5 363struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
f24e9980 364 struct ceph_snap_context *snapc,
1b83bef2 365 unsigned int num_ops,
3499e8a5 366 bool use_mempool,
54a54007 367 gfp_t gfp_flags)
f24e9980
SW
368{
369 struct ceph_osd_request *req;
370 struct ceph_msg *msg;
1b83bef2
SW
371 size_t msg_size;
372
f24e9980 373 if (use_mempool) {
3f1af42a 374 BUG_ON(num_ops > CEPH_OSD_SLAB_OPS);
3499e8a5 375 req = mempool_alloc(osdc->req_mempool, gfp_flags);
3f1af42a
ID
376 } else if (num_ops <= CEPH_OSD_SLAB_OPS) {
377 req = kmem_cache_alloc(ceph_osd_request_cache, gfp_flags);
f24e9980 378 } else {
3f1af42a
ID
379 BUG_ON(num_ops > CEPH_OSD_MAX_OPS);
380 req = kmalloc(sizeof(*req) + num_ops * sizeof(req->r_ops[0]),
381 gfp_flags);
f24e9980 382 }
3f1af42a 383 if (unlikely(!req))
a79832f2 384 return NULL;
f24e9980 385
3f1af42a
ID
386 /* req only, each op is zeroed in _osd_req_op_init() */
387 memset(req, 0, sizeof(*req));
388
f24e9980
SW
389 req->r_osdc = osdc;
390 req->r_mempool = use_mempool;
79528734 391 req->r_num_ops = num_ops;
68b4476b 392
415e49a9 393 kref_init(&req->r_kref);
f24e9980
SW
394 init_completion(&req->r_completion);
395 init_completion(&req->r_safe_completion);
a978fa20 396 RB_CLEAR_NODE(&req->r_node);
f24e9980 397 INIT_LIST_HEAD(&req->r_unsafe_item);
a40c4f10 398 INIT_LIST_HEAD(&req->r_linger_item);
1d0326b1 399 INIT_LIST_HEAD(&req->r_linger_osd_item);
935b639a 400 INIT_LIST_HEAD(&req->r_req_lru_item);
cd43045c
SW
401 INIT_LIST_HEAD(&req->r_osd_item);
402
3c972c95 403 req->r_base_oloc.pool = -1;
205ee118 404 req->r_target_oloc.pool = -1;
22116525 405
3f1af42a
ID
406 msg_size = OSD_OPREPLY_FRONT_LEN;
407 if (num_ops > CEPH_OSD_SLAB_OPS) {
408 /* ceph_osd_op and rval */
409 msg_size += (num_ops - CEPH_OSD_SLAB_OPS) *
410 (sizeof(struct ceph_osd_op) + 4);
411 }
412
c16e7869
SW
413 /* create reply message */
414 if (use_mempool)
415 msg = ceph_msgpool_get(&osdc->msgpool_op_reply, 0);
416 else
3f1af42a
ID
417 msg = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, msg_size,
418 gfp_flags, true);
a79832f2 419 if (!msg) {
c16e7869 420 ceph_osdc_put_request(req);
a79832f2 421 return NULL;
c16e7869
SW
422 }
423 req->r_reply = msg;
424
ae458f5a
ID
425 msg_size = 4 + 4 + 4; /* client_inc, osdmap_epoch, flags */
426 msg_size += 4 + 4 + 4 + 8; /* mtime, reassert_version */
427 msg_size += 2 + 4 + 8 + 4 + 4; /* oloc */
428 msg_size += 1 + 8 + 4 + 4; /* pgid */
429 msg_size += 4 + CEPH_MAX_OID_NAME_LEN; /* oid */
430 msg_size += 2 + num_ops * sizeof(struct ceph_osd_op);
431 msg_size += 8; /* snapid */
432 msg_size += 8; /* snap_seq */
433 msg_size += 4 + 8 * (snapc ? snapc->num_snaps : 0); /* snaps */
434 msg_size += 4; /* retry_attempt */
435
c16e7869 436 /* create request message; allow space for oid */
f24e9980 437 if (use_mempool)
8f3bc053 438 msg = ceph_msgpool_get(&osdc->msgpool_op, 0);
f24e9980 439 else
b61c2763 440 msg = ceph_msg_new(CEPH_MSG_OSD_OP, msg_size, gfp_flags, true);
a79832f2 441 if (!msg) {
f24e9980 442 ceph_osdc_put_request(req);
a79832f2 443 return NULL;
f24e9980 444 }
68b4476b 445
f24e9980 446 memset(msg->front.iov_base, 0, msg->front.iov_len);
3499e8a5
YS
447
448 req->r_request = msg;
3499e8a5
YS
449
450 return req;
451}
3d14c5d2 452EXPORT_SYMBOL(ceph_osdc_alloc_request);
3499e8a5 453
a8dd0a37 454static bool osd_req_opcode_valid(u16 opcode)
68b4476b 455{
a8dd0a37 456 switch (opcode) {
70b5bfa3
ID
457#define GENERATE_CASE(op, opcode, str) case CEPH_OSD_OP_##op: return true;
458__CEPH_FORALL_OSD_OPS(GENERATE_CASE)
459#undef GENERATE_CASE
a8dd0a37
AE
460 default:
461 return false;
462 }
463}
464
33803f33
AE
465/*
466 * This is an osd op init function for opcodes that have no data or
467 * other information associated with them. It also serves as a
468 * common init routine for all the other init functions, below.
469 */
c99d2d4a 470static struct ceph_osd_req_op *
49719778 471_osd_req_op_init(struct ceph_osd_request *osd_req, unsigned int which,
144cba14 472 u16 opcode, u32 flags)
33803f33 473{
c99d2d4a
AE
474 struct ceph_osd_req_op *op;
475
476 BUG_ON(which >= osd_req->r_num_ops);
33803f33
AE
477 BUG_ON(!osd_req_opcode_valid(opcode));
478
c99d2d4a 479 op = &osd_req->r_ops[which];
33803f33 480 memset(op, 0, sizeof (*op));
33803f33 481 op->op = opcode;
144cba14 482 op->flags = flags;
c99d2d4a
AE
483
484 return op;
33803f33
AE
485}
486
49719778 487void osd_req_op_init(struct ceph_osd_request *osd_req,
144cba14 488 unsigned int which, u16 opcode, u32 flags)
49719778 489{
144cba14 490 (void)_osd_req_op_init(osd_req, which, opcode, flags);
49719778
AE
491}
492EXPORT_SYMBOL(osd_req_op_init);
493
c99d2d4a
AE
494void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
495 unsigned int which, u16 opcode,
33803f33
AE
496 u64 offset, u64 length,
497 u64 truncate_size, u32 truncate_seq)
498{
144cba14
YZ
499 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
500 opcode, 0);
33803f33
AE
501 size_t payload_len = 0;
502
ad7a60de 503 BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
e30b7577
ID
504 opcode != CEPH_OSD_OP_WRITEFULL && opcode != CEPH_OSD_OP_ZERO &&
505 opcode != CEPH_OSD_OP_TRUNCATE);
33803f33 506
33803f33
AE
507 op->extent.offset = offset;
508 op->extent.length = length;
509 op->extent.truncate_size = truncate_size;
510 op->extent.truncate_seq = truncate_seq;
e30b7577 511 if (opcode == CEPH_OSD_OP_WRITE || opcode == CEPH_OSD_OP_WRITEFULL)
33803f33
AE
512 payload_len += length;
513
de2aa102 514 op->indata_len = payload_len;
33803f33
AE
515}
516EXPORT_SYMBOL(osd_req_op_extent_init);
517
c99d2d4a
AE
518void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
519 unsigned int which, u64 length)
e5975c7c 520{
c99d2d4a
AE
521 struct ceph_osd_req_op *op;
522 u64 previous;
523
524 BUG_ON(which >= osd_req->r_num_ops);
525 op = &osd_req->r_ops[which];
526 previous = op->extent.length;
e5975c7c
AE
527
528 if (length == previous)
529 return; /* Nothing to do */
530 BUG_ON(length > previous);
531
532 op->extent.length = length;
de2aa102 533 op->indata_len -= previous - length;
e5975c7c
AE
534}
535EXPORT_SYMBOL(osd_req_op_extent_update);
536
2c63f49a
YZ
537void osd_req_op_extent_dup_last(struct ceph_osd_request *osd_req,
538 unsigned int which, u64 offset_inc)
539{
540 struct ceph_osd_req_op *op, *prev_op;
541
542 BUG_ON(which + 1 >= osd_req->r_num_ops);
543
544 prev_op = &osd_req->r_ops[which];
545 op = _osd_req_op_init(osd_req, which + 1, prev_op->op, prev_op->flags);
546 /* dup previous one */
547 op->indata_len = prev_op->indata_len;
548 op->outdata_len = prev_op->outdata_len;
549 op->extent = prev_op->extent;
550 /* adjust offset */
551 op->extent.offset += offset_inc;
552 op->extent.length -= offset_inc;
553
554 if (op->op == CEPH_OSD_OP_WRITE || op->op == CEPH_OSD_OP_WRITEFULL)
555 op->indata_len -= offset_inc;
556}
557EXPORT_SYMBOL(osd_req_op_extent_dup_last);
558
c99d2d4a 559void osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
04017e29 560 u16 opcode, const char *class, const char *method)
33803f33 561{
144cba14
YZ
562 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
563 opcode, 0);
5f562df5 564 struct ceph_pagelist *pagelist;
33803f33
AE
565 size_t payload_len = 0;
566 size_t size;
567
568 BUG_ON(opcode != CEPH_OSD_OP_CALL);
569
5f562df5
AE
570 pagelist = kmalloc(sizeof (*pagelist), GFP_NOFS);
571 BUG_ON(!pagelist);
572 ceph_pagelist_init(pagelist);
573
33803f33
AE
574 op->cls.class_name = class;
575 size = strlen(class);
576 BUG_ON(size > (size_t) U8_MAX);
577 op->cls.class_len = size;
5f562df5 578 ceph_pagelist_append(pagelist, class, size);
33803f33
AE
579 payload_len += size;
580
581 op->cls.method_name = method;
582 size = strlen(method);
583 BUG_ON(size > (size_t) U8_MAX);
584 op->cls.method_len = size;
5f562df5 585 ceph_pagelist_append(pagelist, method, size);
33803f33
AE
586 payload_len += size;
587
a4ce40a9 588 osd_req_op_cls_request_info_pagelist(osd_req, which, pagelist);
5f562df5 589
33803f33
AE
590 op->cls.argc = 0; /* currently unused */
591
de2aa102 592 op->indata_len = payload_len;
33803f33
AE
593}
594EXPORT_SYMBOL(osd_req_op_cls_init);
8c042b0d 595
d74b50be
YZ
596int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
597 u16 opcode, const char *name, const void *value,
598 size_t size, u8 cmp_op, u8 cmp_mode)
599{
144cba14
YZ
600 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
601 opcode, 0);
d74b50be
YZ
602 struct ceph_pagelist *pagelist;
603 size_t payload_len;
604
605 BUG_ON(opcode != CEPH_OSD_OP_SETXATTR && opcode != CEPH_OSD_OP_CMPXATTR);
606
607 pagelist = kmalloc(sizeof(*pagelist), GFP_NOFS);
608 if (!pagelist)
609 return -ENOMEM;
610
611 ceph_pagelist_init(pagelist);
612
613 payload_len = strlen(name);
614 op->xattr.name_len = payload_len;
615 ceph_pagelist_append(pagelist, name, payload_len);
616
617 op->xattr.value_len = size;
618 ceph_pagelist_append(pagelist, value, size);
619 payload_len += size;
620
621 op->xattr.cmp_op = cmp_op;
622 op->xattr.cmp_mode = cmp_mode;
623
624 ceph_osd_data_pagelist_init(&op->xattr.osd_data, pagelist);
de2aa102 625 op->indata_len = payload_len;
d74b50be
YZ
626 return 0;
627}
628EXPORT_SYMBOL(osd_req_op_xattr_init);
629
c99d2d4a
AE
630void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
631 unsigned int which, u16 opcode,
33803f33
AE
632 u64 cookie, u64 version, int flag)
633{
144cba14
YZ
634 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
635 opcode, 0);
33803f33 636
c99d2d4a 637 BUG_ON(opcode != CEPH_OSD_OP_NOTIFY_ACK && opcode != CEPH_OSD_OP_WATCH);
33803f33
AE
638
639 op->watch.cookie = cookie;
9ef1ee5a 640 op->watch.ver = version;
33803f33 641 if (opcode == CEPH_OSD_OP_WATCH && flag)
c99d2d4a 642 op->watch.flag = (u8)1;
33803f33
AE
643}
644EXPORT_SYMBOL(osd_req_op_watch_init);
645
c647b8a8
ID
646void osd_req_op_alloc_hint_init(struct ceph_osd_request *osd_req,
647 unsigned int which,
648 u64 expected_object_size,
649 u64 expected_write_size)
650{
651 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which,
144cba14
YZ
652 CEPH_OSD_OP_SETALLOCHINT,
653 0);
c647b8a8
ID
654
655 op->alloc_hint.expected_object_size = expected_object_size;
656 op->alloc_hint.expected_write_size = expected_write_size;
657
658 /*
659 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
660 * not worth a feature bit. Set FAILOK per-op flag to make
661 * sure older osds don't trip over an unsupported opcode.
662 */
663 op->flags |= CEPH_OSD_OP_FLAG_FAILOK;
664}
665EXPORT_SYMBOL(osd_req_op_alloc_hint_init);
666
90af3602 667static void ceph_osdc_msg_data_add(struct ceph_msg *msg,
ec9123c5
AE
668 struct ceph_osd_data *osd_data)
669{
670 u64 length = ceph_osd_data_length(osd_data);
671
672 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
673 BUG_ON(length > (u64) SIZE_MAX);
674 if (length)
90af3602 675 ceph_msg_data_add_pages(msg, osd_data->pages,
ec9123c5
AE
676 length, osd_data->alignment);
677 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
678 BUG_ON(!length);
90af3602 679 ceph_msg_data_add_pagelist(msg, osd_data->pagelist);
ec9123c5
AE
680#ifdef CONFIG_BLOCK
681 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_BIO) {
90af3602 682 ceph_msg_data_add_bio(msg, osd_data->bio, length);
ec9123c5
AE
683#endif
684 } else {
685 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_NONE);
686 }
687}
688
a8dd0a37 689static u64 osd_req_encode_op(struct ceph_osd_request *req,
79528734 690 struct ceph_osd_op *dst, unsigned int which)
a8dd0a37 691{
79528734 692 struct ceph_osd_req_op *src;
04017e29 693 struct ceph_osd_data *osd_data;
54d50649 694 u64 request_data_len = 0;
04017e29 695 u64 data_length;
a8dd0a37 696
79528734
AE
697 BUG_ON(which >= req->r_num_ops);
698 src = &req->r_ops[which];
a8dd0a37
AE
699 if (WARN_ON(!osd_req_opcode_valid(src->op))) {
700 pr_err("unrecognized osd opcode %d\n", src->op);
701
702 return 0;
703 }
704
705 switch (src->op) {
706 case CEPH_OSD_OP_STAT:
49719778
AE
707 osd_data = &src->raw_data_in;
708 ceph_osdc_msg_data_add(req->r_reply, osd_data);
a8dd0a37
AE
709 break;
710 case CEPH_OSD_OP_READ:
711 case CEPH_OSD_OP_WRITE:
e30b7577 712 case CEPH_OSD_OP_WRITEFULL:
ad7a60de 713 case CEPH_OSD_OP_ZERO:
ad7a60de 714 case CEPH_OSD_OP_TRUNCATE:
e30b7577
ID
715 if (src->op == CEPH_OSD_OP_WRITE ||
716 src->op == CEPH_OSD_OP_WRITEFULL)
54d50649 717 request_data_len = src->extent.length;
a8dd0a37
AE
718 dst->extent.offset = cpu_to_le64(src->extent.offset);
719 dst->extent.length = cpu_to_le64(src->extent.length);
720 dst->extent.truncate_size =
721 cpu_to_le64(src->extent.truncate_size);
722 dst->extent.truncate_seq =
723 cpu_to_le32(src->extent.truncate_seq);
04017e29 724 osd_data = &src->extent.osd_data;
e30b7577
ID
725 if (src->op == CEPH_OSD_OP_WRITE ||
726 src->op == CEPH_OSD_OP_WRITEFULL)
04017e29 727 ceph_osdc_msg_data_add(req->r_request, osd_data);
5476492f 728 else
04017e29 729 ceph_osdc_msg_data_add(req->r_reply, osd_data);
a8dd0a37
AE
730 break;
731 case CEPH_OSD_OP_CALL:
a8dd0a37
AE
732 dst->cls.class_len = src->cls.class_len;
733 dst->cls.method_len = src->cls.method_len;
04017e29
AE
734 osd_data = &src->cls.request_info;
735 ceph_osdc_msg_data_add(req->r_request, osd_data);
736 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGELIST);
737 request_data_len = osd_data->pagelist->length;
738
739 osd_data = &src->cls.request_data;
740 data_length = ceph_osd_data_length(osd_data);
741 if (data_length) {
742 BUG_ON(osd_data->type == CEPH_OSD_DATA_TYPE_NONE);
743 dst->cls.indata_len = cpu_to_le32(data_length);
744 ceph_osdc_msg_data_add(req->r_request, osd_data);
de2aa102 745 src->indata_len += data_length;
04017e29
AE
746 request_data_len += data_length;
747 }
748 osd_data = &src->cls.response_data;
749 ceph_osdc_msg_data_add(req->r_reply, osd_data);
a8dd0a37
AE
750 break;
751 case CEPH_OSD_OP_STARTSYNC:
752 break;
753 case CEPH_OSD_OP_NOTIFY_ACK:
754 case CEPH_OSD_OP_WATCH:
755 dst->watch.cookie = cpu_to_le64(src->watch.cookie);
756 dst->watch.ver = cpu_to_le64(src->watch.ver);
757 dst->watch.flag = src->watch.flag;
758 break;
c647b8a8
ID
759 case CEPH_OSD_OP_SETALLOCHINT:
760 dst->alloc_hint.expected_object_size =
761 cpu_to_le64(src->alloc_hint.expected_object_size);
762 dst->alloc_hint.expected_write_size =
763 cpu_to_le64(src->alloc_hint.expected_write_size);
764 break;
d74b50be
YZ
765 case CEPH_OSD_OP_SETXATTR:
766 case CEPH_OSD_OP_CMPXATTR:
767 dst->xattr.name_len = cpu_to_le32(src->xattr.name_len);
768 dst->xattr.value_len = cpu_to_le32(src->xattr.value_len);
769 dst->xattr.cmp_op = src->xattr.cmp_op;
770 dst->xattr.cmp_mode = src->xattr.cmp_mode;
771 osd_data = &src->xattr.osd_data;
772 ceph_osdc_msg_data_add(req->r_request, osd_data);
773 request_data_len = osd_data->pagelist->length;
774 break;
864e9197
YZ
775 case CEPH_OSD_OP_CREATE:
776 case CEPH_OSD_OP_DELETE:
777 break;
a8dd0a37 778 default:
4c46459c 779 pr_err("unsupported osd opcode %s\n",
8f63ca2d 780 ceph_osd_op_name(src->op));
4c46459c 781 WARN_ON(1);
a8dd0a37
AE
782
783 return 0;
68b4476b 784 }
7b25bf5f 785
a8dd0a37 786 dst->op = cpu_to_le16(src->op);
7b25bf5f 787 dst->flags = cpu_to_le32(src->flags);
de2aa102 788 dst->payload_len = cpu_to_le32(src->indata_len);
175face2 789
54d50649 790 return request_data_len;
68b4476b
YS
791}
792
3499e8a5
YS
793/*
794 * build new request AND message, calculate layout, and adjust file
795 * extent as needed.
796 *
797 * if the file was recently truncated, we include information about its
798 * old and new size so that the object can be updated appropriately. (we
799 * avoid synchronously deleting truncated objects because it's slow.)
800 *
801 * if @do_sync, include a 'startsync' command so that the osd will flush
802 * data quickly.
803 */
804struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
805 struct ceph_file_layout *layout,
806 struct ceph_vino vino,
715e4cd4
YZ
807 u64 off, u64 *plen,
808 unsigned int which, int num_ops,
3499e8a5
YS
809 int opcode, int flags,
810 struct ceph_snap_context *snapc,
3499e8a5
YS
811 u32 truncate_seq,
812 u64 truncate_size,
153e5167 813 bool use_mempool)
3499e8a5 814{
68b4476b 815 struct ceph_osd_request *req;
75d1c941
AE
816 u64 objnum = 0;
817 u64 objoff = 0;
818 u64 objlen = 0;
6816282d 819 int r;
68b4476b 820
ad7a60de 821 BUG_ON(opcode != CEPH_OSD_OP_READ && opcode != CEPH_OSD_OP_WRITE &&
864e9197
YZ
822 opcode != CEPH_OSD_OP_ZERO && opcode != CEPH_OSD_OP_TRUNCATE &&
823 opcode != CEPH_OSD_OP_CREATE && opcode != CEPH_OSD_OP_DELETE);
68b4476b 824
acead002 825 req = ceph_osdc_alloc_request(osdc, snapc, num_ops, use_mempool,
ae7ca4a3 826 GFP_NOFS);
4ad12621 827 if (!req)
6816282d 828 return ERR_PTR(-ENOMEM);
79528734 829
d178a9e7 830 req->r_flags = flags;
3499e8a5
YS
831
832 /* calculate max write size */
a19dadfb 833 r = calc_layout(layout, off, plen, &objnum, &objoff, &objlen);
3ff5f385
AE
834 if (r < 0) {
835 ceph_osdc_put_request(req);
6816282d 836 return ERR_PTR(r);
3ff5f385 837 }
a19dadfb 838
864e9197 839 if (opcode == CEPH_OSD_OP_CREATE || opcode == CEPH_OSD_OP_DELETE) {
144cba14 840 osd_req_op_init(req, which, opcode, 0);
864e9197
YZ
841 } else {
842 u32 object_size = le32_to_cpu(layout->fl_object_size);
843 u32 object_base = off - objoff;
844 if (!(truncate_seq == 1 && truncate_size == -1ULL)) {
845 if (truncate_size <= object_base) {
846 truncate_size = 0;
847 } else {
848 truncate_size -= object_base;
849 if (truncate_size > object_size)
850 truncate_size = object_size;
851 }
ccca4e37 852 }
715e4cd4 853 osd_req_op_extent_init(req, which, opcode, objoff, objlen,
864e9197
YZ
854 truncate_size, truncate_seq);
855 }
d18d1e28 856
3c972c95 857 req->r_base_oloc.pool = ceph_file_layout_pg_pool(*layout);
3499e8a5 858
3c972c95 859 snprintf(req->r_base_oid.name, sizeof(req->r_base_oid.name),
4295f221 860 "%llx.%08llx", vino.ino, objnum);
3c972c95 861 req->r_base_oid.name_len = strlen(req->r_base_oid.name);
dbe0fc41 862
f24e9980
SW
863 return req;
864}
3d14c5d2 865EXPORT_SYMBOL(ceph_osdc_new_request);
f24e9980
SW
866
867/*
868 * We keep osd requests in an rbtree, sorted by ->r_tid.
869 */
870static void __insert_request(struct ceph_osd_client *osdc,
871 struct ceph_osd_request *new)
872{
873 struct rb_node **p = &osdc->requests.rb_node;
874 struct rb_node *parent = NULL;
875 struct ceph_osd_request *req = NULL;
876
877 while (*p) {
878 parent = *p;
879 req = rb_entry(parent, struct ceph_osd_request, r_node);
880 if (new->r_tid < req->r_tid)
881 p = &(*p)->rb_left;
882 else if (new->r_tid > req->r_tid)
883 p = &(*p)->rb_right;
884 else
885 BUG();
886 }
887
888 rb_link_node(&new->r_node, parent, p);
889 rb_insert_color(&new->r_node, &osdc->requests);
890}
891
892static struct ceph_osd_request *__lookup_request(struct ceph_osd_client *osdc,
893 u64 tid)
894{
895 struct ceph_osd_request *req;
896 struct rb_node *n = osdc->requests.rb_node;
897
898 while (n) {
899 req = rb_entry(n, struct ceph_osd_request, r_node);
900 if (tid < req->r_tid)
901 n = n->rb_left;
902 else if (tid > req->r_tid)
903 n = n->rb_right;
904 else
905 return req;
906 }
907 return NULL;
908}
909
910static struct ceph_osd_request *
911__lookup_request_ge(struct ceph_osd_client *osdc,
912 u64 tid)
913{
914 struct ceph_osd_request *req;
915 struct rb_node *n = osdc->requests.rb_node;
916
917 while (n) {
918 req = rb_entry(n, struct ceph_osd_request, r_node);
919 if (tid < req->r_tid) {
920 if (!n->rb_left)
921 return req;
922 n = n->rb_left;
923 } else if (tid > req->r_tid) {
924 n = n->rb_right;
925 } else {
926 return req;
927 }
928 }
929 return NULL;
930}
931
2cc6128a
ID
932static void __kick_linger_request(struct ceph_osd_request *req)
933{
934 struct ceph_osd_client *osdc = req->r_osdc;
935 struct ceph_osd *osd = req->r_osd;
936
937 /*
938 * Linger requests need to be resent with a new tid to avoid
939 * the dup op detection logic on the OSDs. Achieve this with
940 * a re-register dance instead of open-coding.
941 */
942 ceph_osdc_get_request(req);
943 if (!list_empty(&req->r_linger_item))
944 __unregister_linger_request(osdc, req);
945 else
946 __unregister_request(osdc, req);
947 __register_request(osdc, req);
948 ceph_osdc_put_request(req);
949
950 /*
951 * Unless request has been registered as both normal and
952 * lingering, __unregister{,_linger}_request clears r_osd.
953 * However, here we need to preserve r_osd to make sure we
954 * requeue on the same OSD.
955 */
956 WARN_ON(req->r_osd || !osd);
957 req->r_osd = osd;
958
959 dout("%s requeueing %p tid %llu\n", __func__, req, req->r_tid);
960 __enqueue_request(req);
961}
962
6f6c7006
SW
963/*
964 * Resubmit requests pending on the given osd.
965 */
966static void __kick_osd_requests(struct ceph_osd_client *osdc,
967 struct ceph_osd *osd)
968{
a40c4f10 969 struct ceph_osd_request *req, *nreq;
e02493c0 970 LIST_HEAD(resend);
2cc6128a 971 LIST_HEAD(resend_linger);
6f6c7006
SW
972 int err;
973
2cc6128a 974 dout("%s osd%d\n", __func__, osd->o_osd);
6f6c7006 975 err = __reset_osd(osdc, osd);
685a7555 976 if (err)
6f6c7006 977 return;
2cc6128a 978
e02493c0
AE
979 /*
980 * Build up a list of requests to resend by traversing the
981 * osd's list of requests. Requests for a given object are
982 * sent in tid order, and that is also the order they're
983 * kept on this list. Therefore all requests that are in
984 * flight will be found first, followed by all requests that
985 * have not yet been sent. And to resend requests while
986 * preserving this order we will want to put any sent
987 * requests back on the front of the osd client's unsent
988 * list.
989 *
990 * So we build a separate ordered list of already-sent
991 * requests for the affected osd and splice it onto the
992 * front of the osd client's unsent list. Once we've seen a
993 * request that has not yet been sent we're done. Those
994 * requests are already sitting right where they belong.
995 */
6f6c7006 996 list_for_each_entry(req, &osd->o_requests, r_osd_item) {
e02493c0
AE
997 if (!req->r_sent)
998 break;
2cc6128a
ID
999
1000 if (!req->r_linger) {
1001 dout("%s requeueing %p tid %llu\n", __func__, req,
1002 req->r_tid);
1003 list_move_tail(&req->r_req_lru_item, &resend);
a40c4f10 1004 req->r_flags |= CEPH_OSD_FLAG_RETRY;
2cc6128a
ID
1005 } else {
1006 list_move_tail(&req->r_req_lru_item, &resend_linger);
1007 }
a40c4f10 1008 }
e02493c0 1009 list_splice(&resend, &osdc->req_unsent);
a40c4f10 1010
e02493c0 1011 /*
2cc6128a
ID
1012 * Both registered and not yet registered linger requests are
1013 * enqueued with a new tid on the same OSD. We add/move them
1014 * to req_unsent/o_requests at the end to keep things in tid
1015 * order.
e02493c0 1016 */
a40c4f10 1017 list_for_each_entry_safe(req, nreq, &osd->o_linger_requests,
1d0326b1 1018 r_linger_osd_item) {
2cc6128a
ID
1019 WARN_ON(!list_empty(&req->r_req_lru_item));
1020 __kick_linger_request(req);
6f6c7006 1021 }
2cc6128a
ID
1022
1023 list_for_each_entry_safe(req, nreq, &resend_linger, r_req_lru_item)
1024 __kick_linger_request(req);
6f6c7006
SW
1025}
1026
f24e9980 1027/*
81b024e7 1028 * If the osd connection drops, we need to resubmit all requests.
f24e9980
SW
1029 */
1030static void osd_reset(struct ceph_connection *con)
1031{
1032 struct ceph_osd *osd = con->private;
1033 struct ceph_osd_client *osdc;
1034
1035 if (!osd)
1036 return;
1037 dout("osd_reset osd%d\n", osd->o_osd);
1038 osdc = osd->o_osdc;
f24e9980 1039 down_read(&osdc->map_sem);
83aff95e
SW
1040 mutex_lock(&osdc->request_mutex);
1041 __kick_osd_requests(osdc, osd);
f9d25199 1042 __send_queued(osdc);
83aff95e 1043 mutex_unlock(&osdc->request_mutex);
f24e9980
SW
1044 up_read(&osdc->map_sem);
1045}
1046
1047/*
1048 * Track open sessions with osds.
1049 */
e10006f8 1050static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
f24e9980
SW
1051{
1052 struct ceph_osd *osd;
1053
1054 osd = kzalloc(sizeof(*osd), GFP_NOFS);
1055 if (!osd)
1056 return NULL;
1057
1058 atomic_set(&osd->o_ref, 1);
1059 osd->o_osdc = osdc;
e10006f8 1060 osd->o_osd = onum;
f407731d 1061 RB_CLEAR_NODE(&osd->o_node);
f24e9980 1062 INIT_LIST_HEAD(&osd->o_requests);
a40c4f10 1063 INIT_LIST_HEAD(&osd->o_linger_requests);
f5a2041b 1064 INIT_LIST_HEAD(&osd->o_osd_lru);
f24e9980
SW
1065 osd->o_incarnation = 1;
1066
b7a9e5dd 1067 ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
4e7a5dcd 1068
422d2cb8 1069 INIT_LIST_HEAD(&osd->o_keepalive_item);
f24e9980
SW
1070 return osd;
1071}
1072
1073static struct ceph_osd *get_osd(struct ceph_osd *osd)
1074{
1075 if (atomic_inc_not_zero(&osd->o_ref)) {
1076 dout("get_osd %p %d -> %d\n", osd, atomic_read(&osd->o_ref)-1,
1077 atomic_read(&osd->o_ref));
1078 return osd;
1079 } else {
1080 dout("get_osd %p FAIL\n", osd);
1081 return NULL;
1082 }
1083}
1084
1085static void put_osd(struct ceph_osd *osd)
1086{
1087 dout("put_osd %p %d -> %d\n", osd, atomic_read(&osd->o_ref),
1088 atomic_read(&osd->o_ref) - 1);
b28ec2f3 1089 if (atomic_dec_and_test(&osd->o_ref)) {
79494d1b
SW
1090 struct ceph_auth_client *ac = osd->o_osdc->client->monc.auth;
1091
b28ec2f3
ID
1092 if (osd->o_auth.authorizer)
1093 ceph_auth_destroy_authorizer(ac, osd->o_auth.authorizer);
f24e9980 1094 kfree(osd);
79494d1b 1095 }
f24e9980
SW
1096}
1097
1098/*
1099 * remove an osd from our map
1100 */
f5a2041b 1101static void __remove_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
f24e9980 1102{
7eb71e03 1103 dout("%s %p osd%d\n", __func__, osd, osd->o_osd);
cc9f1f51
ID
1104 WARN_ON(!list_empty(&osd->o_requests));
1105 WARN_ON(!list_empty(&osd->o_linger_requests));
7c6e6fc5 1106
f5a2041b 1107 list_del_init(&osd->o_osd_lru);
7eb71e03
ID
1108 rb_erase(&osd->o_node, &osdc->osds);
1109 RB_CLEAR_NODE(&osd->o_node);
1110}
1111
1112static void remove_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
1113{
1114 dout("%s %p osd%d\n", __func__, osd, osd->o_osd);
1115
1116 if (!RB_EMPTY_NODE(&osd->o_node)) {
1117 ceph_con_close(&osd->o_con);
1118 __remove_osd(osdc, osd);
1119 put_osd(osd);
1120 }
f24e9980
SW
1121}
1122
aca420bc
SW
1123static void remove_all_osds(struct ceph_osd_client *osdc)
1124{
048a9d2d 1125 dout("%s %p\n", __func__, osdc);
aca420bc
SW
1126 mutex_lock(&osdc->request_mutex);
1127 while (!RB_EMPTY_ROOT(&osdc->osds)) {
1128 struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds),
1129 struct ceph_osd, o_node);
7eb71e03 1130 remove_osd(osdc, osd);
aca420bc
SW
1131 }
1132 mutex_unlock(&osdc->request_mutex);
1133}
1134
f5a2041b
YS
1135static void __move_osd_to_lru(struct ceph_osd_client *osdc,
1136 struct ceph_osd *osd)
1137{
bbf37ec3 1138 dout("%s %p\n", __func__, osd);
f5a2041b 1139 BUG_ON(!list_empty(&osd->o_osd_lru));
bbf37ec3 1140
f5a2041b 1141 list_add_tail(&osd->o_osd_lru, &osdc->osd_lru);
a319bf56 1142 osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl;
f5a2041b
YS
1143}
1144
bbf37ec3
ID
1145static void maybe_move_osd_to_lru(struct ceph_osd_client *osdc,
1146 struct ceph_osd *osd)
1147{
1148 dout("%s %p\n", __func__, osd);
1149
1150 if (list_empty(&osd->o_requests) &&
1151 list_empty(&osd->o_linger_requests))
1152 __move_osd_to_lru(osdc, osd);
1153}
1154
f5a2041b
YS
1155static void __remove_osd_from_lru(struct ceph_osd *osd)
1156{
1157 dout("__remove_osd_from_lru %p\n", osd);
1158 if (!list_empty(&osd->o_osd_lru))
1159 list_del_init(&osd->o_osd_lru);
1160}
1161
aca420bc 1162static void remove_old_osds(struct ceph_osd_client *osdc)
f5a2041b
YS
1163{
1164 struct ceph_osd *osd, *nosd;
1165
1166 dout("__remove_old_osds %p\n", osdc);
1167 mutex_lock(&osdc->request_mutex);
1168 list_for_each_entry_safe(osd, nosd, &osdc->osd_lru, o_osd_lru) {
aca420bc 1169 if (time_before(jiffies, osd->lru_ttl))
f5a2041b 1170 break;
7eb71e03 1171 remove_osd(osdc, osd);
f5a2041b
YS
1172 }
1173 mutex_unlock(&osdc->request_mutex);
1174}
1175
f24e9980
SW
1176/*
1177 * reset osd connect
1178 */
f5a2041b 1179static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
f24e9980 1180{
c3acb181 1181 struct ceph_entity_addr *peer_addr;
f24e9980 1182
f5a2041b 1183 dout("__reset_osd %p osd%d\n", osd, osd->o_osd);
a40c4f10
YS
1184 if (list_empty(&osd->o_requests) &&
1185 list_empty(&osd->o_linger_requests)) {
7eb71e03 1186 remove_osd(osdc, osd);
c3acb181
AE
1187 return -ENODEV;
1188 }
1189
1190 peer_addr = &osdc->osdmap->osd_addr[osd->o_osd];
1191 if (!memcmp(peer_addr, &osd->o_con.peer_addr, sizeof (*peer_addr)) &&
1192 !ceph_con_opened(&osd->o_con)) {
1193 struct ceph_osd_request *req;
1194
0b4af2e8
ID
1195 dout("osd addr hasn't changed and connection never opened, "
1196 "letting msgr retry\n");
87b315a5
SW
1197 /* touch each r_stamp for handle_timeout()'s benfit */
1198 list_for_each_entry(req, &osd->o_requests, r_osd_item)
1199 req->r_stamp = jiffies;
c3acb181
AE
1200
1201 return -EAGAIN;
f24e9980 1202 }
c3acb181
AE
1203
1204 ceph_con_close(&osd->o_con);
1205 ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd, peer_addr);
1206 osd->o_incarnation++;
1207
1208 return 0;
f24e9980
SW
1209}
1210
1211static void __insert_osd(struct ceph_osd_client *osdc, struct ceph_osd *new)
1212{
1213 struct rb_node **p = &osdc->osds.rb_node;
1214 struct rb_node *parent = NULL;
1215 struct ceph_osd *osd = NULL;
1216
aca420bc 1217 dout("__insert_osd %p osd%d\n", new, new->o_osd);
f24e9980
SW
1218 while (*p) {
1219 parent = *p;
1220 osd = rb_entry(parent, struct ceph_osd, o_node);
1221 if (new->o_osd < osd->o_osd)
1222 p = &(*p)->rb_left;
1223 else if (new->o_osd > osd->o_osd)
1224 p = &(*p)->rb_right;
1225 else
1226 BUG();
1227 }
1228
1229 rb_link_node(&new->o_node, parent, p);
1230 rb_insert_color(&new->o_node, &osdc->osds);
1231}
1232
1233static struct ceph_osd *__lookup_osd(struct ceph_osd_client *osdc, int o)
1234{
1235 struct ceph_osd *osd;
1236 struct rb_node *n = osdc->osds.rb_node;
1237
1238 while (n) {
1239 osd = rb_entry(n, struct ceph_osd, o_node);
1240 if (o < osd->o_osd)
1241 n = n->rb_left;
1242 else if (o > osd->o_osd)
1243 n = n->rb_right;
1244 else
1245 return osd;
1246 }
1247 return NULL;
1248}
1249
422d2cb8
YS
1250static void __schedule_osd_timeout(struct ceph_osd_client *osdc)
1251{
1252 schedule_delayed_work(&osdc->timeout_work,
a319bf56 1253 osdc->client->options->osd_keepalive_timeout);
422d2cb8
YS
1254}
1255
1256static void __cancel_osd_timeout(struct ceph_osd_client *osdc)
1257{
1258 cancel_delayed_work(&osdc->timeout_work);
1259}
f24e9980
SW
1260
1261/*
1262 * Register request, assign tid. If this is the first request, set up
1263 * the timeout event.
1264 */
a40c4f10
YS
1265static void __register_request(struct ceph_osd_client *osdc,
1266 struct ceph_osd_request *req)
f24e9980 1267{
f24e9980 1268 req->r_tid = ++osdc->last_tid;
6df058c0 1269 req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
77f38e0e 1270 dout("__register_request %p tid %lld\n", req, req->r_tid);
f24e9980
SW
1271 __insert_request(osdc, req);
1272 ceph_osdc_get_request(req);
1273 osdc->num_requests++;
f24e9980 1274 if (osdc->num_requests == 1) {
422d2cb8
YS
1275 dout(" first request, scheduling timeout\n");
1276 __schedule_osd_timeout(osdc);
f24e9980 1277 }
a40c4f10
YS
1278}
1279
f24e9980
SW
1280/*
1281 * called under osdc->request_mutex
1282 */
1283static void __unregister_request(struct ceph_osd_client *osdc,
1284 struct ceph_osd_request *req)
1285{
35f9f8a0
SW
1286 if (RB_EMPTY_NODE(&req->r_node)) {
1287 dout("__unregister_request %p tid %lld not registered\n",
1288 req, req->r_tid);
1289 return;
1290 }
1291
f24e9980
SW
1292 dout("__unregister_request %p tid %lld\n", req, req->r_tid);
1293 rb_erase(&req->r_node, &osdc->requests);
6562d661 1294 RB_CLEAR_NODE(&req->r_node);
f24e9980
SW
1295 osdc->num_requests--;
1296
0ba6478d
SW
1297 if (req->r_osd) {
1298 /* make sure the original request isn't in flight. */
6740a845 1299 ceph_msg_revoke(req->r_request);
0ba6478d
SW
1300
1301 list_del_init(&req->r_osd_item);
bbf37ec3 1302 maybe_move_osd_to_lru(osdc, req->r_osd);
4f23409e 1303 if (list_empty(&req->r_linger_osd_item))
a40c4f10 1304 req->r_osd = NULL;
0ba6478d 1305 }
f24e9980 1306
7d5f2481 1307 list_del_init(&req->r_req_lru_item);
f24e9980
SW
1308 ceph_osdc_put_request(req);
1309
422d2cb8
YS
1310 if (osdc->num_requests == 0) {
1311 dout(" no requests, canceling timeout\n");
1312 __cancel_osd_timeout(osdc);
f24e9980
SW
1313 }
1314}
1315
1316/*
1317 * Cancel a previously queued request message
1318 */
1319static void __cancel_request(struct ceph_osd_request *req)
1320{
6bc18876 1321 if (req->r_sent && req->r_osd) {
6740a845 1322 ceph_msg_revoke(req->r_request);
f24e9980
SW
1323 req->r_sent = 0;
1324 }
1325}
1326
a40c4f10
YS
1327static void __register_linger_request(struct ceph_osd_client *osdc,
1328 struct ceph_osd_request *req)
1329{
af593064
ID
1330 dout("%s %p tid %llu\n", __func__, req, req->r_tid);
1331 WARN_ON(!req->r_linger);
1332
96e4dac6 1333 ceph_osdc_get_request(req);
a40c4f10 1334 list_add_tail(&req->r_linger_item, &osdc->req_linger);
6194ea89 1335 if (req->r_osd)
1d0326b1 1336 list_add_tail(&req->r_linger_osd_item,
6194ea89 1337 &req->r_osd->o_linger_requests);
a40c4f10
YS
1338}
1339
1340static void __unregister_linger_request(struct ceph_osd_client *osdc,
1341 struct ceph_osd_request *req)
1342{
af593064
ID
1343 WARN_ON(!req->r_linger);
1344
1345 if (list_empty(&req->r_linger_item)) {
1346 dout("%s %p tid %llu not registered\n", __func__, req,
1347 req->r_tid);
1348 return;
1349 }
1350
1351 dout("%s %p tid %llu\n", __func__, req, req->r_tid);
61c74035 1352 list_del_init(&req->r_linger_item);
af593064 1353
a40c4f10 1354 if (req->r_osd) {
1d0326b1 1355 list_del_init(&req->r_linger_osd_item);
bbf37ec3 1356 maybe_move_osd_to_lru(osdc, req->r_osd);
fbdb9190
SW
1357 if (list_empty(&req->r_osd_item))
1358 req->r_osd = NULL;
a40c4f10 1359 }
96e4dac6 1360 ceph_osdc_put_request(req);
a40c4f10
YS
1361}
1362
a40c4f10
YS
1363void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
1364 struct ceph_osd_request *req)
1365{
1366 if (!req->r_linger) {
1367 dout("set_request_linger %p\n", req);
1368 req->r_linger = 1;
a40c4f10
YS
1369 }
1370}
1371EXPORT_SYMBOL(ceph_osdc_set_request_linger);
1372
d29adb34
JD
1373/*
1374 * Returns whether a request should be blocked from being sent
1375 * based on the current osdmap and osd_client settings.
1376 *
1377 * Caller should hold map_sem for read.
1378 */
1379static bool __req_should_be_paused(struct ceph_osd_client *osdc,
1380 struct ceph_osd_request *req)
1381{
1382 bool pauserd = ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSERD);
1383 bool pausewr = ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSEWR) ||
1384 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL);
1385 return (req->r_flags & CEPH_OSD_FLAG_READ && pauserd) ||
1386 (req->r_flags & CEPH_OSD_FLAG_WRITE && pausewr);
1387}
1388
17a13e40
ID
1389/*
1390 * Calculate mapping of a request to a PG. Takes tiering into account.
1391 */
1392static int __calc_request_pg(struct ceph_osdmap *osdmap,
1393 struct ceph_osd_request *req,
1394 struct ceph_pg *pg_out)
1395{
205ee118
ID
1396 bool need_check_tiering;
1397
1398 need_check_tiering = false;
1399 if (req->r_target_oloc.pool == -1) {
1400 req->r_target_oloc = req->r_base_oloc; /* struct */
1401 need_check_tiering = true;
1402 }
1403 if (req->r_target_oid.name_len == 0) {
1404 ceph_oid_copy(&req->r_target_oid, &req->r_base_oid);
1405 need_check_tiering = true;
1406 }
1407
1408 if (need_check_tiering &&
1409 (req->r_flags & CEPH_OSD_FLAG_IGNORE_OVERLAY) == 0) {
17a13e40
ID
1410 struct ceph_pg_pool_info *pi;
1411
205ee118 1412 pi = ceph_pg_pool_by_id(osdmap, req->r_target_oloc.pool);
17a13e40
ID
1413 if (pi) {
1414 if ((req->r_flags & CEPH_OSD_FLAG_READ) &&
1415 pi->read_tier >= 0)
205ee118 1416 req->r_target_oloc.pool = pi->read_tier;
17a13e40
ID
1417 if ((req->r_flags & CEPH_OSD_FLAG_WRITE) &&
1418 pi->write_tier >= 0)
205ee118 1419 req->r_target_oloc.pool = pi->write_tier;
17a13e40
ID
1420 }
1421 /* !pi is caught in ceph_oloc_oid_to_pg() */
1422 }
1423
205ee118
ID
1424 return ceph_oloc_oid_to_pg(osdmap, &req->r_target_oloc,
1425 &req->r_target_oid, pg_out);
17a13e40
ID
1426}
1427
f671b581
ID
1428static void __enqueue_request(struct ceph_osd_request *req)
1429{
1430 struct ceph_osd_client *osdc = req->r_osdc;
1431
1432 dout("%s %p tid %llu to osd%d\n", __func__, req, req->r_tid,
1433 req->r_osd ? req->r_osd->o_osd : -1);
1434
1435 if (req->r_osd) {
1436 __remove_osd_from_lru(req->r_osd);
1437 list_add_tail(&req->r_osd_item, &req->r_osd->o_requests);
1438 list_move_tail(&req->r_req_lru_item, &osdc->req_unsent);
1439 } else {
1440 list_move_tail(&req->r_req_lru_item, &osdc->req_notarget);
1441 }
1442}
1443
f24e9980
SW
1444/*
1445 * Pick an osd (the first 'up' osd in the pg), allocate the osd struct
1446 * (as needed), and set the request r_osd appropriately. If there is
25985edc 1447 * no up osd, set r_osd to NULL. Move the request to the appropriate list
6f6c7006 1448 * (unsent, homeless) or leave on in-flight lru.
f24e9980
SW
1449 *
1450 * Return 0 if unchanged, 1 if changed, or negative on error.
1451 *
1452 * Caller should hold map_sem for read and request_mutex.
1453 */
6f6c7006 1454static int __map_request(struct ceph_osd_client *osdc,
38d6453c 1455 struct ceph_osd_request *req, int force_resend)
f24e9980 1456{
5b191d99 1457 struct ceph_pg pgid;
d85b7056 1458 int acting[CEPH_PG_MAX_SIZE];
8008ab10 1459 int num, o;
f24e9980 1460 int err;
d29adb34 1461 bool was_paused;
f24e9980 1462
6f6c7006 1463 dout("map_request %p tid %lld\n", req, req->r_tid);
17a13e40
ID
1464
1465 err = __calc_request_pg(osdc->osdmap, req, &pgid);
6f6c7006
SW
1466 if (err) {
1467 list_move(&req->r_req_lru_item, &osdc->req_notarget);
f24e9980 1468 return err;
6f6c7006 1469 }
7740a42f
SW
1470 req->r_pgid = pgid;
1471
8008ab10
ID
1472 num = ceph_calc_pg_acting(osdc->osdmap, pgid, acting, &o);
1473 if (num < 0)
1474 num = 0;
f24e9980 1475
d29adb34
JD
1476 was_paused = req->r_paused;
1477 req->r_paused = __req_should_be_paused(osdc, req);
1478 if (was_paused && !req->r_paused)
1479 force_resend = 1;
1480
38d6453c
SW
1481 if ((!force_resend &&
1482 req->r_osd && req->r_osd->o_osd == o &&
d85b7056
SW
1483 req->r_sent >= req->r_osd->o_incarnation &&
1484 req->r_num_pg_osds == num &&
1485 memcmp(req->r_pg_osds, acting, sizeof(acting[0])*num) == 0) ||
d29adb34
JD
1486 (req->r_osd == NULL && o == -1) ||
1487 req->r_paused)
f24e9980
SW
1488 return 0; /* no change */
1489
5b191d99
SW
1490 dout("map_request tid %llu pgid %lld.%x osd%d (was osd%d)\n",
1491 req->r_tid, pgid.pool, pgid.seed, o,
f24e9980
SW
1492 req->r_osd ? req->r_osd->o_osd : -1);
1493
d85b7056
SW
1494 /* record full pg acting set */
1495 memcpy(req->r_pg_osds, acting, sizeof(acting[0]) * num);
1496 req->r_num_pg_osds = num;
1497
f24e9980
SW
1498 if (req->r_osd) {
1499 __cancel_request(req);
1500 list_del_init(&req->r_osd_item);
a390de02 1501 list_del_init(&req->r_linger_osd_item);
f24e9980
SW
1502 req->r_osd = NULL;
1503 }
1504
1505 req->r_osd = __lookup_osd(osdc, o);
1506 if (!req->r_osd && o >= 0) {
c99eb1c7 1507 err = -ENOMEM;
e10006f8 1508 req->r_osd = create_osd(osdc, o);
6f6c7006
SW
1509 if (!req->r_osd) {
1510 list_move(&req->r_req_lru_item, &osdc->req_notarget);
c99eb1c7 1511 goto out;
6f6c7006 1512 }
f24e9980 1513
6f6c7006 1514 dout("map_request osd %p is osd%d\n", req->r_osd, o);
f24e9980
SW
1515 __insert_osd(osdc, req->r_osd);
1516
b7a9e5dd
SW
1517 ceph_con_open(&req->r_osd->o_con,
1518 CEPH_ENTITY_TYPE_OSD, o,
1519 &osdc->osdmap->osd_addr[o]);
f24e9980
SW
1520 }
1521
f671b581 1522 __enqueue_request(req);
d85b7056 1523 err = 1; /* osd or pg changed */
f24e9980
SW
1524
1525out:
f24e9980
SW
1526 return err;
1527}
1528
1529/*
1530 * caller should hold map_sem (for read) and request_mutex
1531 */
56e925b6
SW
1532static void __send_request(struct ceph_osd_client *osdc,
1533 struct ceph_osd_request *req)
f24e9980 1534{
1b83bef2 1535 void *p;
f24e9980 1536
1b83bef2
SW
1537 dout("send_request %p tid %llu to osd%d flags %d pg %lld.%x\n",
1538 req, req->r_tid, req->r_osd->o_osd, req->r_flags,
1539 (unsigned long long)req->r_pgid.pool, req->r_pgid.seed);
1540
1541 /* fill in message content that changes each time we send it */
1542 put_unaligned_le32(osdc->osdmap->epoch, req->r_request_osdmap_epoch);
1543 put_unaligned_le32(req->r_flags, req->r_request_flags);
205ee118 1544 put_unaligned_le64(req->r_target_oloc.pool, req->r_request_pool);
1b83bef2
SW
1545 p = req->r_request_pgid;
1546 ceph_encode_64(&p, req->r_pgid.pool);
1547 ceph_encode_32(&p, req->r_pgid.seed);
1548 put_unaligned_le64(1, req->r_request_attempts); /* FIXME */
1549 memcpy(req->r_request_reassert_version, &req->r_reassert_version,
1550 sizeof(req->r_reassert_version));
2169aea6 1551
3dd72fc0 1552 req->r_stamp = jiffies;
07a27e22 1553 list_move_tail(&req->r_req_lru_item, &osdc->req_lru);
f24e9980
SW
1554
1555 ceph_msg_get(req->r_request); /* send consumes a ref */
26be8808 1556
f24e9980 1557 req->r_sent = req->r_osd->o_incarnation;
26be8808
AE
1558
1559 ceph_con_send(&req->r_osd->o_con, req->r_request);
f24e9980
SW
1560}
1561
6f6c7006
SW
1562/*
1563 * Send any requests in the queue (req_unsent).
1564 */
f9d25199 1565static void __send_queued(struct ceph_osd_client *osdc)
6f6c7006
SW
1566{
1567 struct ceph_osd_request *req, *tmp;
1568
f9d25199
AE
1569 dout("__send_queued\n");
1570 list_for_each_entry_safe(req, tmp, &osdc->req_unsent, r_req_lru_item)
6f6c7006 1571 __send_request(osdc, req);
6f6c7006
SW
1572}
1573
0bbfdfe8
ID
1574/*
1575 * Caller should hold map_sem for read and request_mutex.
1576 */
1577static int __ceph_osdc_start_request(struct ceph_osd_client *osdc,
1578 struct ceph_osd_request *req,
1579 bool nofail)
1580{
1581 int rc;
1582
1583 __register_request(osdc, req);
1584 req->r_sent = 0;
1585 req->r_got_reply = 0;
1586 rc = __map_request(osdc, req, 0);
1587 if (rc < 0) {
1588 if (nofail) {
1589 dout("osdc_start_request failed map, "
1590 " will retry %lld\n", req->r_tid);
1591 rc = 0;
1592 } else {
1593 __unregister_request(osdc, req);
1594 }
1595 return rc;
1596 }
1597
1598 if (req->r_osd == NULL) {
1599 dout("send_request %p no up osds in pg\n", req);
1600 ceph_monc_request_next_osdmap(&osdc->client->monc);
1601 } else {
1602 __send_queued(osdc);
1603 }
1604
1605 return 0;
1606}
1607
f24e9980
SW
1608/*
1609 * Timeout callback, called every N seconds when 1 or more osd
1610 * requests has been active for more than N seconds. When this
1611 * happens, we ping all OSDs with requests who have timed out to
1612 * ensure any communications channel reset is detected. Reset the
1613 * request timeouts another N seconds in the future as we go.
1614 * Reschedule the timeout event another N seconds in future (unless
1615 * there are no open requests).
1616 */
1617static void handle_timeout(struct work_struct *work)
1618{
1619 struct ceph_osd_client *osdc =
1620 container_of(work, struct ceph_osd_client, timeout_work.work);
a319bf56 1621 struct ceph_options *opts = osdc->client->options;
83aff95e 1622 struct ceph_osd_request *req;
f24e9980 1623 struct ceph_osd *osd;
422d2cb8 1624 struct list_head slow_osds;
f24e9980
SW
1625 dout("timeout\n");
1626 down_read(&osdc->map_sem);
1627
1628 ceph_monc_request_next_osdmap(&osdc->client->monc);
1629
1630 mutex_lock(&osdc->request_mutex);
f24e9980 1631
422d2cb8
YS
1632 /*
1633 * ping osds that are a bit slow. this ensures that if there
1634 * is a break in the TCP connection we will notice, and reopen
1635 * a connection with that osd (from the fault callback).
1636 */
1637 INIT_LIST_HEAD(&slow_osds);
1638 list_for_each_entry(req, &osdc->req_lru, r_req_lru_item) {
a319bf56
ID
1639 if (time_before(jiffies,
1640 req->r_stamp + opts->osd_keepalive_timeout))
422d2cb8
YS
1641 break;
1642
1643 osd = req->r_osd;
1644 BUG_ON(!osd);
1645 dout(" tid %llu is slow, will send keepalive on osd%d\n",
f24e9980 1646 req->r_tid, osd->o_osd);
422d2cb8
YS
1647 list_move_tail(&osd->o_keepalive_item, &slow_osds);
1648 }
1649 while (!list_empty(&slow_osds)) {
1650 osd = list_entry(slow_osds.next, struct ceph_osd,
1651 o_keepalive_item);
1652 list_del_init(&osd->o_keepalive_item);
f24e9980
SW
1653 ceph_con_keepalive(&osd->o_con);
1654 }
1655
422d2cb8 1656 __schedule_osd_timeout(osdc);
f9d25199 1657 __send_queued(osdc);
f24e9980 1658 mutex_unlock(&osdc->request_mutex);
f24e9980
SW
1659 up_read(&osdc->map_sem);
1660}
1661
f5a2041b
YS
1662static void handle_osds_timeout(struct work_struct *work)
1663{
1664 struct ceph_osd_client *osdc =
1665 container_of(work, struct ceph_osd_client,
1666 osds_timeout_work.work);
a319bf56 1667 unsigned long delay = osdc->client->options->osd_idle_ttl / 4;
f5a2041b
YS
1668
1669 dout("osds timeout\n");
1670 down_read(&osdc->map_sem);
aca420bc 1671 remove_old_osds(osdc);
f5a2041b
YS
1672 up_read(&osdc->map_sem);
1673
1674 schedule_delayed_work(&osdc->osds_timeout_work,
1675 round_jiffies_relative(delay));
1676}
1677
205ee118
ID
1678static int ceph_oloc_decode(void **p, void *end,
1679 struct ceph_object_locator *oloc)
1680{
1681 u8 struct_v, struct_cv;
1682 u32 len;
1683 void *struct_end;
1684 int ret = 0;
1685
1686 ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
1687 struct_v = ceph_decode_8(p);
1688 struct_cv = ceph_decode_8(p);
1689 if (struct_v < 3) {
1690 pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
1691 struct_v, struct_cv);
1692 goto e_inval;
1693 }
1694 if (struct_cv > 6) {
1695 pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
1696 struct_v, struct_cv);
1697 goto e_inval;
1698 }
1699 len = ceph_decode_32(p);
1700 ceph_decode_need(p, end, len, e_inval);
1701 struct_end = *p + len;
1702
1703 oloc->pool = ceph_decode_64(p);
1704 *p += 4; /* skip preferred */
1705
1706 len = ceph_decode_32(p);
1707 if (len > 0) {
1708 pr_warn("ceph_object_locator::key is set\n");
1709 goto e_inval;
1710 }
1711
1712 if (struct_v >= 5) {
1713 len = ceph_decode_32(p);
1714 if (len > 0) {
1715 pr_warn("ceph_object_locator::nspace is set\n");
1716 goto e_inval;
1717 }
1718 }
1719
1720 if (struct_v >= 6) {
1721 s64 hash = ceph_decode_64(p);
1722 if (hash != -1) {
1723 pr_warn("ceph_object_locator::hash is set\n");
1724 goto e_inval;
1725 }
1726 }
1727
1728 /* skip the rest */
1729 *p = struct_end;
1730out:
1731 return ret;
1732
1733e_inval:
1734 ret = -EINVAL;
1735 goto out;
1736}
1737
1738static int ceph_redirect_decode(void **p, void *end,
1739 struct ceph_request_redirect *redir)
1740{
1741 u8 struct_v, struct_cv;
1742 u32 len;
1743 void *struct_end;
1744 int ret;
1745
1746 ceph_decode_need(p, end, 1 + 1 + 4, e_inval);
1747 struct_v = ceph_decode_8(p);
1748 struct_cv = ceph_decode_8(p);
1749 if (struct_cv > 1) {
1750 pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
1751 struct_v, struct_cv);
1752 goto e_inval;
1753 }
1754 len = ceph_decode_32(p);
1755 ceph_decode_need(p, end, len, e_inval);
1756 struct_end = *p + len;
1757
1758 ret = ceph_oloc_decode(p, end, &redir->oloc);
1759 if (ret)
1760 goto out;
1761
1762 len = ceph_decode_32(p);
1763 if (len > 0) {
1764 pr_warn("ceph_request_redirect::object_name is set\n");
1765 goto e_inval;
1766 }
1767
1768 len = ceph_decode_32(p);
1769 *p += len; /* skip osd_instructions */
1770
1771 /* skip the rest */
1772 *p = struct_end;
1773out:
1774 return ret;
1775
1776e_inval:
1777 ret = -EINVAL;
1778 goto out;
1779}
1780
25845472
SW
1781static void complete_request(struct ceph_osd_request *req)
1782{
25845472
SW
1783 complete_all(&req->r_safe_completion); /* fsync waiter */
1784}
1785
f24e9980
SW
1786/*
1787 * handle osd op reply. either call the callback if it is specified,
1788 * or do the completion to wake up the waiting thread.
1789 */
70cf052d 1790static void handle_reply(struct ceph_osd_client *osdc, struct ceph_msg *msg)
f24e9980 1791{
1b83bef2 1792 void *p, *end;
f24e9980 1793 struct ceph_osd_request *req;
205ee118 1794 struct ceph_request_redirect redir;
f24e9980 1795 u64 tid;
1b83bef2 1796 int object_len;
79528734
AE
1797 unsigned int numops;
1798 int payload_len, flags;
0ceed5db 1799 s32 result;
1b83bef2
SW
1800 s32 retry_attempt;
1801 struct ceph_pg pg;
1802 int err;
1803 u32 reassert_epoch;
1804 u64 reassert_version;
1805 u32 osdmap_epoch;
0d5af164 1806 int already_completed;
9fc6e064 1807 u32 bytes;
b0b31a8f 1808 u8 decode_redir;
79528734 1809 unsigned int i;
f24e9980 1810
6df058c0 1811 tid = le64_to_cpu(msg->hdr.tid);
1b83bef2
SW
1812 dout("handle_reply %p tid %llu\n", msg, tid);
1813
1814 p = msg->front.iov_base;
1815 end = p + msg->front.iov_len;
1816
1817 ceph_decode_need(&p, end, 4, bad);
1818 object_len = ceph_decode_32(&p);
1819 ceph_decode_need(&p, end, object_len, bad);
1820 p += object_len;
1821
ef4859d6 1822 err = ceph_decode_pgid(&p, end, &pg);
1b83bef2 1823 if (err)
f24e9980 1824 goto bad;
1b83bef2
SW
1825
1826 ceph_decode_need(&p, end, 8 + 4 + 4 + 8 + 4, bad);
1827 flags = ceph_decode_64(&p);
1828 result = ceph_decode_32(&p);
1829 reassert_epoch = ceph_decode_32(&p);
1830 reassert_version = ceph_decode_64(&p);
1831 osdmap_epoch = ceph_decode_32(&p);
1832
f24e9980 1833 /* lookup */
ff513ace 1834 down_read(&osdc->map_sem);
f24e9980
SW
1835 mutex_lock(&osdc->request_mutex);
1836 req = __lookup_request(osdc, tid);
1837 if (req == NULL) {
1838 dout("handle_reply tid %llu dne\n", tid);
8058fd45 1839 goto bad_mutex;
f24e9980
SW
1840 }
1841 ceph_osdc_get_request(req);
1b83bef2
SW
1842
1843 dout("handle_reply %p tid %llu req %p result %d\n", msg, tid,
1844 req, result);
1845
18741196 1846 ceph_decode_need(&p, end, 4, bad_put);
1b83bef2 1847 numops = ceph_decode_32(&p);
3f1af42a 1848 if (numops > CEPH_OSD_MAX_OPS)
1b83bef2
SW
1849 goto bad_put;
1850 if (numops != req->r_num_ops)
1851 goto bad_put;
1852 payload_len = 0;
18741196 1853 ceph_decode_need(&p, end, numops * sizeof(struct ceph_osd_op), bad_put);
1b83bef2
SW
1854 for (i = 0; i < numops; i++) {
1855 struct ceph_osd_op *op = p;
1856 int len;
1857
1858 len = le32_to_cpu(op->payload_len);
7665d85b 1859 req->r_ops[i].outdata_len = len;
1b83bef2
SW
1860 dout(" op %d has %d bytes\n", i, len);
1861 payload_len += len;
1862 p += sizeof(*op);
1863 }
9fc6e064
AE
1864 bytes = le32_to_cpu(msg->hdr.data_len);
1865 if (payload_len != bytes) {
b9a67899
JP
1866 pr_warn("sum of op payload lens %d != data_len %d\n",
1867 payload_len, bytes);
1b83bef2
SW
1868 goto bad_put;
1869 }
1870
18741196 1871 ceph_decode_need(&p, end, 4 + numops * 4, bad_put);
1b83bef2
SW
1872 retry_attempt = ceph_decode_32(&p);
1873 for (i = 0; i < numops; i++)
7665d85b 1874 req->r_ops[i].rval = ceph_decode_32(&p);
f24e9980 1875
205ee118
ID
1876 if (le16_to_cpu(msg->hdr.version) >= 6) {
1877 p += 8 + 4; /* skip replay_version */
1878 p += 8; /* skip user_version */
eb845ff1 1879
b0b31a8f
ID
1880 if (le16_to_cpu(msg->hdr.version) >= 7)
1881 ceph_decode_8_safe(&p, end, decode_redir, bad_put);
1882 else
1883 decode_redir = 1;
1884 } else {
1885 decode_redir = 0;
1886 }
1887
1888 if (decode_redir) {
205ee118
ID
1889 err = ceph_redirect_decode(&p, end, &redir);
1890 if (err)
1891 goto bad_put;
1892 } else {
1893 redir.oloc.pool = -1;
1894 }
f24e9980 1895
205ee118
ID
1896 if (redir.oloc.pool != -1) {
1897 dout("redirect pool %lld\n", redir.oloc.pool);
1898
1899 __unregister_request(osdc, req);
205ee118
ID
1900
1901 req->r_target_oloc = redir.oloc; /* struct */
1902
1903 /*
1904 * Start redirect requests with nofail=true. If
1905 * mapping fails, request will end up on the notarget
1906 * list, waiting for the new osdmap (which can take
1907 * a while), even though the original request mapped
1908 * successfully. In the future we might want to follow
1909 * original request's nofail setting here.
1910 */
ff513ace 1911 err = __ceph_osdc_start_request(osdc, req, true);
205ee118
ID
1912 BUG_ON(err);
1913
ff513ace 1914 goto out_unlock;
205ee118
ID
1915 }
1916
1917 already_completed = req->r_got_reply;
1918 if (!req->r_got_reply) {
1b83bef2 1919 req->r_result = result;
f24e9980
SW
1920 dout("handle_reply result %d bytes %d\n", req->r_result,
1921 bytes);
1922 if (req->r_result == 0)
1923 req->r_result = bytes;
1924
1925 /* in case this is a write and we need to replay, */
1b83bef2
SW
1926 req->r_reassert_version.epoch = cpu_to_le32(reassert_epoch);
1927 req->r_reassert_version.version = cpu_to_le64(reassert_version);
f24e9980
SW
1928
1929 req->r_got_reply = 1;
1930 } else if ((flags & CEPH_OSD_FLAG_ONDISK) == 0) {
1931 dout("handle_reply tid %llu dup ack\n", tid);
ff513ace 1932 goto out_unlock;
f24e9980
SW
1933 }
1934
1935 dout("handle_reply tid %llu flags %d\n", tid, flags);
1936
a40c4f10
YS
1937 if (req->r_linger && (flags & CEPH_OSD_FLAG_ONDISK))
1938 __register_linger_request(osdc, req);
1939
f24e9980 1940 /* either this is a read, or we got the safe response */
0ceed5db
SW
1941 if (result < 0 ||
1942 (flags & CEPH_OSD_FLAG_ONDISK) ||
f24e9980
SW
1943 ((flags & CEPH_OSD_FLAG_WRITE) == 0))
1944 __unregister_request(osdc, req);
1945
1946 mutex_unlock(&osdc->request_mutex);
ff513ace 1947 up_read(&osdc->map_sem);
f24e9980 1948
eb845ff1 1949 if (!already_completed) {
61c5d6bf
YZ
1950 if (req->r_unsafe_callback &&
1951 result >= 0 && !(flags & CEPH_OSD_FLAG_ONDISK))
1952 req->r_unsafe_callback(req, true);
eb845ff1
YZ
1953 if (req->r_callback)
1954 req->r_callback(req, msg);
1955 else
1956 complete_all(&req->r_completion);
1957 }
f24e9980 1958
61c5d6bf
YZ
1959 if (flags & CEPH_OSD_FLAG_ONDISK) {
1960 if (req->r_unsafe_callback && already_completed)
1961 req->r_unsafe_callback(req, false);
25845472 1962 complete_request(req);
61c5d6bf 1963 }
f24e9980 1964
ff513ace 1965out:
a40c4f10 1966 dout("req=%p req->r_linger=%d\n", req, req->r_linger);
f24e9980
SW
1967 ceph_osdc_put_request(req);
1968 return;
ff513ace
ID
1969out_unlock:
1970 mutex_unlock(&osdc->request_mutex);
1971 up_read(&osdc->map_sem);
1972 goto out;
f24e9980 1973
1b83bef2 1974bad_put:
37c89bde
LW
1975 req->r_result = -EIO;
1976 __unregister_request(osdc, req);
1977 if (req->r_callback)
1978 req->r_callback(req, msg);
1979 else
1980 complete_all(&req->r_completion);
1981 complete_request(req);
1b83bef2 1982 ceph_osdc_put_request(req);
8058fd45
AE
1983bad_mutex:
1984 mutex_unlock(&osdc->request_mutex);
ff513ace 1985 up_read(&osdc->map_sem);
f24e9980 1986bad:
1b83bef2
SW
1987 pr_err("corrupt osd_op_reply got %d %d\n",
1988 (int)msg->front.iov_len, le32_to_cpu(msg->hdr.front_len));
9ec7cab1 1989 ceph_msg_dump(msg);
f24e9980
SW
1990}
1991
6f6c7006 1992static void reset_changed_osds(struct ceph_osd_client *osdc)
f24e9980 1993{
f24e9980 1994 struct rb_node *p, *n;
f24e9980 1995
7eb71e03 1996 dout("%s %p\n", __func__, osdc);
6f6c7006
SW
1997 for (p = rb_first(&osdc->osds); p; p = n) {
1998 struct ceph_osd *osd = rb_entry(p, struct ceph_osd, o_node);
f24e9980 1999
6f6c7006
SW
2000 n = rb_next(p);
2001 if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
2002 memcmp(&osd->o_con.peer_addr,
2003 ceph_osd_addr(osdc->osdmap,
2004 osd->o_osd),
2005 sizeof(struct ceph_entity_addr)) != 0)
2006 __reset_osd(osdc, osd);
f24e9980 2007 }
422d2cb8
YS
2008}
2009
2010/*
6f6c7006
SW
2011 * Requeue requests whose mapping to an OSD has changed. If requests map to
2012 * no osd, request a new map.
422d2cb8 2013 *
e6d50f67 2014 * Caller should hold map_sem for read.
422d2cb8 2015 */
9a1ea2db
JD
2016static void kick_requests(struct ceph_osd_client *osdc, bool force_resend,
2017 bool force_resend_writes)
422d2cb8 2018{
a40c4f10 2019 struct ceph_osd_request *req, *nreq;
6f6c7006
SW
2020 struct rb_node *p;
2021 int needmap = 0;
2022 int err;
9a1ea2db 2023 bool force_resend_req;
422d2cb8 2024
9a1ea2db
JD
2025 dout("kick_requests %s %s\n", force_resend ? " (force resend)" : "",
2026 force_resend_writes ? " (force resend writes)" : "");
422d2cb8 2027 mutex_lock(&osdc->request_mutex);
6194ea89 2028 for (p = rb_first(&osdc->requests); p; ) {
6f6c7006 2029 req = rb_entry(p, struct ceph_osd_request, r_node);
6194ea89 2030 p = rb_next(p);
ab60b16d
AE
2031
2032 /*
2033 * For linger requests that have not yet been
2034 * registered, move them to the linger list; they'll
2035 * be sent to the osd in the loop below. Unregister
2036 * the request before re-registering it as a linger
2037 * request to ensure the __map_request() below
2038 * will decide it needs to be sent.
2039 */
2040 if (req->r_linger && list_empty(&req->r_linger_item)) {
2041 dout("%p tid %llu restart on osd%d\n",
2042 req, req->r_tid,
2043 req->r_osd ? req->r_osd->o_osd : -1);
96e4dac6 2044 ceph_osdc_get_request(req);
ab60b16d
AE
2045 __unregister_request(osdc, req);
2046 __register_linger_request(osdc, req);
96e4dac6 2047 ceph_osdc_put_request(req);
ab60b16d
AE
2048 continue;
2049 }
2050
9a1ea2db
JD
2051 force_resend_req = force_resend ||
2052 (force_resend_writes &&
2053 req->r_flags & CEPH_OSD_FLAG_WRITE);
2054 err = __map_request(osdc, req, force_resend_req);
6f6c7006
SW
2055 if (err < 0)
2056 continue; /* error */
2057 if (req->r_osd == NULL) {
2058 dout("%p tid %llu maps to no osd\n", req, req->r_tid);
2059 needmap++; /* request a newer map */
2060 } else if (err > 0) {
6194ea89
SW
2061 if (!req->r_linger) {
2062 dout("%p tid %llu requeued on osd%d\n", req,
2063 req->r_tid,
2064 req->r_osd ? req->r_osd->o_osd : -1);
a40c4f10 2065 req->r_flags |= CEPH_OSD_FLAG_RETRY;
6194ea89
SW
2066 }
2067 }
a40c4f10
YS
2068 }
2069
2070 list_for_each_entry_safe(req, nreq, &osdc->req_linger,
2071 r_linger_item) {
2072 dout("linger req=%p req->r_osd=%p\n", req, req->r_osd);
2073
9a1ea2db
JD
2074 err = __map_request(osdc, req,
2075 force_resend || force_resend_writes);
ab60b16d 2076 dout("__map_request returned %d\n", err);
a40c4f10
YS
2077 if (err < 0)
2078 continue; /* hrm! */
b0494532
ID
2079 if (req->r_osd == NULL || err > 0) {
2080 if (req->r_osd == NULL) {
2081 dout("lingering %p tid %llu maps to no osd\n",
2082 req, req->r_tid);
2083 /*
2084 * A homeless lingering request makes
2085 * no sense, as it's job is to keep
2086 * a particular OSD connection open.
2087 * Request a newer map and kick the
2088 * request, knowing that it won't be
2089 * resent until we actually get a map
2090 * that can tell us where to send it.
2091 */
2092 needmap++;
2093 }
a40c4f10 2094
b0494532
ID
2095 dout("kicking lingering %p tid %llu osd%d\n", req,
2096 req->r_tid, req->r_osd ? req->r_osd->o_osd : -1);
2097 __register_request(osdc, req);
2098 __unregister_linger_request(osdc, req);
2099 }
6f6c7006 2100 }
14d2f38d 2101 reset_changed_osds(osdc);
f24e9980
SW
2102 mutex_unlock(&osdc->request_mutex);
2103
2104 if (needmap) {
2105 dout("%d requests for down osds, need new map\n", needmap);
2106 ceph_monc_request_next_osdmap(&osdc->client->monc);
2107 }
422d2cb8 2108}
6f6c7006
SW
2109
2110
f24e9980
SW
2111/*
2112 * Process updated osd map.
2113 *
2114 * The message contains any number of incremental and full maps, normally
2115 * indicating some sort of topology change in the cluster. Kick requests
2116 * off to different OSDs as needed.
2117 */
2118void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
2119{
2120 void *p, *end, *next;
2121 u32 nr_maps, maplen;
2122 u32 epoch;
2123 struct ceph_osdmap *newmap = NULL, *oldmap;
2124 int err;
2125 struct ceph_fsid fsid;
9a1ea2db 2126 bool was_full;
f24e9980
SW
2127
2128 dout("handle_map have %u\n", osdc->osdmap ? osdc->osdmap->epoch : 0);
2129 p = msg->front.iov_base;
2130 end = p + msg->front.iov_len;
2131
2132 /* verify fsid */
2133 ceph_decode_need(&p, end, sizeof(fsid), bad);
2134 ceph_decode_copy(&p, &fsid, sizeof(fsid));
0743304d
SW
2135 if (ceph_check_fsid(osdc->client, &fsid) < 0)
2136 return;
f24e9980
SW
2137
2138 down_write(&osdc->map_sem);
2139
9a1ea2db
JD
2140 was_full = ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL);
2141
f24e9980
SW
2142 /* incremental maps */
2143 ceph_decode_32_safe(&p, end, nr_maps, bad);
2144 dout(" %d inc maps\n", nr_maps);
2145 while (nr_maps > 0) {
2146 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
c89136ea
SW
2147 epoch = ceph_decode_32(&p);
2148 maplen = ceph_decode_32(&p);
f24e9980
SW
2149 ceph_decode_need(&p, end, maplen, bad);
2150 next = p + maplen;
2151 if (osdc->osdmap && osdc->osdmap->epoch+1 == epoch) {
2152 dout("applying incremental map %u len %d\n",
2153 epoch, maplen);
2154 newmap = osdmap_apply_incremental(&p, next,
2155 osdc->osdmap,
15d9882c 2156 &osdc->client->msgr);
f24e9980
SW
2157 if (IS_ERR(newmap)) {
2158 err = PTR_ERR(newmap);
2159 goto bad;
2160 }
30dc6381 2161 BUG_ON(!newmap);
f24e9980
SW
2162 if (newmap != osdc->osdmap) {
2163 ceph_osdmap_destroy(osdc->osdmap);
2164 osdc->osdmap = newmap;
2165 }
9a1ea2db
JD
2166 was_full = was_full ||
2167 ceph_osdmap_flag(osdc->osdmap,
2168 CEPH_OSDMAP_FULL);
2169 kick_requests(osdc, 0, was_full);
f24e9980
SW
2170 } else {
2171 dout("ignoring incremental map %u len %d\n",
2172 epoch, maplen);
2173 }
2174 p = next;
2175 nr_maps--;
2176 }
2177 if (newmap)
2178 goto done;
2179
2180 /* full maps */
2181 ceph_decode_32_safe(&p, end, nr_maps, bad);
2182 dout(" %d full maps\n", nr_maps);
2183 while (nr_maps) {
2184 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
c89136ea
SW
2185 epoch = ceph_decode_32(&p);
2186 maplen = ceph_decode_32(&p);
f24e9980
SW
2187 ceph_decode_need(&p, end, maplen, bad);
2188 if (nr_maps > 1) {
2189 dout("skipping non-latest full map %u len %d\n",
2190 epoch, maplen);
2191 } else if (osdc->osdmap && osdc->osdmap->epoch >= epoch) {
2192 dout("skipping full map %u len %d, "
2193 "older than our %u\n", epoch, maplen,
2194 osdc->osdmap->epoch);
2195 } else {
38d6453c
SW
2196 int skipped_map = 0;
2197
f24e9980 2198 dout("taking full map %u len %d\n", epoch, maplen);
a2505d63 2199 newmap = ceph_osdmap_decode(&p, p+maplen);
f24e9980
SW
2200 if (IS_ERR(newmap)) {
2201 err = PTR_ERR(newmap);
2202 goto bad;
2203 }
30dc6381 2204 BUG_ON(!newmap);
f24e9980
SW
2205 oldmap = osdc->osdmap;
2206 osdc->osdmap = newmap;
38d6453c
SW
2207 if (oldmap) {
2208 if (oldmap->epoch + 1 < newmap->epoch)
2209 skipped_map = 1;
f24e9980 2210 ceph_osdmap_destroy(oldmap);
38d6453c 2211 }
9a1ea2db
JD
2212 was_full = was_full ||
2213 ceph_osdmap_flag(osdc->osdmap,
2214 CEPH_OSDMAP_FULL);
2215 kick_requests(osdc, skipped_map, was_full);
f24e9980
SW
2216 }
2217 p += maplen;
2218 nr_maps--;
2219 }
2220
b72e19b9
DC
2221 if (!osdc->osdmap)
2222 goto bad;
f24e9980
SW
2223done:
2224 downgrade_write(&osdc->map_sem);
82dcabad
ID
2225 ceph_monc_got_map(&osdc->client->monc, CEPH_SUB_OSDMAP,
2226 osdc->osdmap->epoch);
cd634fb6
SW
2227
2228 /*
2229 * subscribe to subsequent osdmap updates if full to ensure
2230 * we find out when we are no longer full and stop returning
2231 * ENOSPC.
2232 */
d29adb34
JD
2233 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL) ||
2234 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSERD) ||
2235 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSEWR))
cd634fb6
SW
2236 ceph_monc_request_next_osdmap(&osdc->client->monc);
2237
f9d25199
AE
2238 mutex_lock(&osdc->request_mutex);
2239 __send_queued(osdc);
2240 mutex_unlock(&osdc->request_mutex);
f24e9980 2241 up_read(&osdc->map_sem);
03066f23 2242 wake_up_all(&osdc->client->auth_wq);
f24e9980
SW
2243 return;
2244
2245bad:
2246 pr_err("osdc handle_map corrupt msg\n");
9ec7cab1 2247 ceph_msg_dump(msg);
f24e9980 2248 up_write(&osdc->map_sem);
f24e9980
SW
2249}
2250
a40c4f10
YS
2251/*
2252 * watch/notify callback event infrastructure
2253 *
2254 * These callbacks are used both for watch and notify operations.
2255 */
2256static void __release_event(struct kref *kref)
2257{
2258 struct ceph_osd_event *event =
2259 container_of(kref, struct ceph_osd_event, kref);
2260
2261 dout("__release_event %p\n", event);
2262 kfree(event);
2263}
2264
2265static void get_event(struct ceph_osd_event *event)
2266{
2267 kref_get(&event->kref);
2268}
2269
2270void ceph_osdc_put_event(struct ceph_osd_event *event)
2271{
2272 kref_put(&event->kref, __release_event);
2273}
2274EXPORT_SYMBOL(ceph_osdc_put_event);
2275
2276static void __insert_event(struct ceph_osd_client *osdc,
2277 struct ceph_osd_event *new)
2278{
2279 struct rb_node **p = &osdc->event_tree.rb_node;
2280 struct rb_node *parent = NULL;
2281 struct ceph_osd_event *event = NULL;
2282
2283 while (*p) {
2284 parent = *p;
2285 event = rb_entry(parent, struct ceph_osd_event, node);
2286 if (new->cookie < event->cookie)
2287 p = &(*p)->rb_left;
2288 else if (new->cookie > event->cookie)
2289 p = &(*p)->rb_right;
2290 else
2291 BUG();
2292 }
2293
2294 rb_link_node(&new->node, parent, p);
2295 rb_insert_color(&new->node, &osdc->event_tree);
2296}
2297
2298static struct ceph_osd_event *__find_event(struct ceph_osd_client *osdc,
2299 u64 cookie)
2300{
2301 struct rb_node **p = &osdc->event_tree.rb_node;
2302 struct rb_node *parent = NULL;
2303 struct ceph_osd_event *event = NULL;
2304
2305 while (*p) {
2306 parent = *p;
2307 event = rb_entry(parent, struct ceph_osd_event, node);
2308 if (cookie < event->cookie)
2309 p = &(*p)->rb_left;
2310 else if (cookie > event->cookie)
2311 p = &(*p)->rb_right;
2312 else
2313 return event;
2314 }
2315 return NULL;
2316}
2317
2318static void __remove_event(struct ceph_osd_event *event)
2319{
2320 struct ceph_osd_client *osdc = event->osdc;
2321
2322 if (!RB_EMPTY_NODE(&event->node)) {
2323 dout("__remove_event removed %p\n", event);
2324 rb_erase(&event->node, &osdc->event_tree);
2325 ceph_osdc_put_event(event);
2326 } else {
2327 dout("__remove_event didn't remove %p\n", event);
2328 }
2329}
2330
2331int ceph_osdc_create_event(struct ceph_osd_client *osdc,
2332 void (*event_cb)(u64, u64, u8, void *),
3c663bbd 2333 void *data, struct ceph_osd_event **pevent)
a40c4f10
YS
2334{
2335 struct ceph_osd_event *event;
2336
2337 event = kmalloc(sizeof(*event), GFP_NOIO);
2338 if (!event)
2339 return -ENOMEM;
2340
2341 dout("create_event %p\n", event);
2342 event->cb = event_cb;
3c663bbd 2343 event->one_shot = 0;
a40c4f10
YS
2344 event->data = data;
2345 event->osdc = osdc;
2346 INIT_LIST_HEAD(&event->osd_node);
3ee5234d 2347 RB_CLEAR_NODE(&event->node);
a40c4f10
YS
2348 kref_init(&event->kref); /* one ref for us */
2349 kref_get(&event->kref); /* one ref for the caller */
a40c4f10
YS
2350
2351 spin_lock(&osdc->event_lock);
2352 event->cookie = ++osdc->event_count;
2353 __insert_event(osdc, event);
2354 spin_unlock(&osdc->event_lock);
2355
2356 *pevent = event;
2357 return 0;
2358}
2359EXPORT_SYMBOL(ceph_osdc_create_event);
2360
2361void ceph_osdc_cancel_event(struct ceph_osd_event *event)
2362{
2363 struct ceph_osd_client *osdc = event->osdc;
2364
2365 dout("cancel_event %p\n", event);
2366 spin_lock(&osdc->event_lock);
2367 __remove_event(event);
2368 spin_unlock(&osdc->event_lock);
2369 ceph_osdc_put_event(event); /* caller's */
2370}
2371EXPORT_SYMBOL(ceph_osdc_cancel_event);
2372
2373
2374static void do_event_work(struct work_struct *work)
2375{
2376 struct ceph_osd_event_work *event_work =
2377 container_of(work, struct ceph_osd_event_work, work);
2378 struct ceph_osd_event *event = event_work->event;
2379 u64 ver = event_work->ver;
2380 u64 notify_id = event_work->notify_id;
2381 u8 opcode = event_work->opcode;
2382
2383 dout("do_event_work completing %p\n", event);
2384 event->cb(ver, notify_id, opcode, event->data);
a40c4f10
YS
2385 dout("do_event_work completed %p\n", event);
2386 ceph_osdc_put_event(event);
2387 kfree(event_work);
2388}
2389
2390
2391/*
2392 * Process osd watch notifications
2393 */
3c663bbd
AE
2394static void handle_watch_notify(struct ceph_osd_client *osdc,
2395 struct ceph_msg *msg)
a40c4f10
YS
2396{
2397 void *p, *end;
2398 u8 proto_ver;
2399 u64 cookie, ver, notify_id;
2400 u8 opcode;
2401 struct ceph_osd_event *event;
2402 struct ceph_osd_event_work *event_work;
2403
2404 p = msg->front.iov_base;
2405 end = p + msg->front.iov_len;
2406
2407 ceph_decode_8_safe(&p, end, proto_ver, bad);
2408 ceph_decode_8_safe(&p, end, opcode, bad);
2409 ceph_decode_64_safe(&p, end, cookie, bad);
2410 ceph_decode_64_safe(&p, end, ver, bad);
2411 ceph_decode_64_safe(&p, end, notify_id, bad);
2412
2413 spin_lock(&osdc->event_lock);
2414 event = __find_event(osdc, cookie);
2415 if (event) {
3c663bbd 2416 BUG_ON(event->one_shot);
a40c4f10 2417 get_event(event);
a40c4f10
YS
2418 }
2419 spin_unlock(&osdc->event_lock);
2420 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
2421 cookie, ver, event);
2422 if (event) {
2423 event_work = kmalloc(sizeof(*event_work), GFP_NOIO);
a40c4f10 2424 if (!event_work) {
91883cd2
ID
2425 pr_err("couldn't allocate event_work\n");
2426 ceph_osdc_put_event(event);
2427 return;
a40c4f10 2428 }
6b0ae409 2429 INIT_WORK(&event_work->work, do_event_work);
a40c4f10
YS
2430 event_work->event = event;
2431 event_work->ver = ver;
2432 event_work->notify_id = notify_id;
2433 event_work->opcode = opcode;
a40c4f10 2434
91883cd2
ID
2435 queue_work(osdc->notify_wq, &event_work->work);
2436 }
a40c4f10 2437
a40c4f10
YS
2438 return;
2439
2440bad:
2441 pr_err("osdc handle_watch_notify corrupt msg\n");
a40c4f10
YS
2442}
2443
e65550fd
AE
2444/*
2445 * build new request AND message
2446 *
2447 */
2448void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
2449 struct ceph_snap_context *snapc, u64 snap_id,
2450 struct timespec *mtime)
2451{
2452 struct ceph_msg *msg = req->r_request;
2453 void *p;
2454 size_t msg_size;
2455 int flags = req->r_flags;
2456 u64 data_len;
2457 unsigned int i;
2458
2459 req->r_snapid = snap_id;
2460 req->r_snapc = ceph_get_snap_context(snapc);
2461
2462 /* encode request */
2463 msg->hdr.version = cpu_to_le16(4);
2464
2465 p = msg->front.iov_base;
2466 ceph_encode_32(&p, 1); /* client_inc is always 1 */
2467 req->r_request_osdmap_epoch = p;
2468 p += 4;
2469 req->r_request_flags = p;
2470 p += 4;
2471 if (req->r_flags & CEPH_OSD_FLAG_WRITE)
2472 ceph_encode_timespec(p, mtime);
2473 p += sizeof(struct ceph_timespec);
2474 req->r_request_reassert_version = p;
2475 p += sizeof(struct ceph_eversion); /* will get filled in */
2476
2477 /* oloc */
2478 ceph_encode_8(&p, 4);
2479 ceph_encode_8(&p, 4);
2480 ceph_encode_32(&p, 8 + 4 + 4);
2481 req->r_request_pool = p;
2482 p += 8;
2483 ceph_encode_32(&p, -1); /* preferred */
2484 ceph_encode_32(&p, 0); /* key len */
2485
2486 ceph_encode_8(&p, 1);
2487 req->r_request_pgid = p;
2488 p += 8 + 4;
2489 ceph_encode_32(&p, -1); /* preferred */
2490
2491 /* oid */
3c972c95
ID
2492 ceph_encode_32(&p, req->r_base_oid.name_len);
2493 memcpy(p, req->r_base_oid.name, req->r_base_oid.name_len);
2494 dout("oid '%.*s' len %d\n", req->r_base_oid.name_len,
2495 req->r_base_oid.name, req->r_base_oid.name_len);
2496 p += req->r_base_oid.name_len;
e65550fd
AE
2497
2498 /* ops--can imply data */
2499 ceph_encode_16(&p, (u16)req->r_num_ops);
2500 data_len = 0;
2501 for (i = 0; i < req->r_num_ops; i++) {
2502 data_len += osd_req_encode_op(req, p, i);
2503 p += sizeof(struct ceph_osd_op);
2504 }
2505
2506 /* snaps */
2507 ceph_encode_64(&p, req->r_snapid);
2508 ceph_encode_64(&p, req->r_snapc ? req->r_snapc->seq : 0);
2509 ceph_encode_32(&p, req->r_snapc ? req->r_snapc->num_snaps : 0);
2510 if (req->r_snapc) {
2511 for (i = 0; i < snapc->num_snaps; i++) {
2512 ceph_encode_64(&p, req->r_snapc->snaps[i]);
2513 }
2514 }
2515
2516 req->r_request_attempts = p;
2517 p += 4;
2518
2519 /* data */
2520 if (flags & CEPH_OSD_FLAG_WRITE) {
2521 u16 data_off;
2522
2523 /*
2524 * The header "data_off" is a hint to the receiver
2525 * allowing it to align received data into its
2526 * buffers such that there's no need to re-copy
2527 * it before writing it to disk (direct I/O).
2528 */
2529 data_off = (u16) (off & 0xffff);
2530 req->r_request->hdr.data_off = cpu_to_le16(data_off);
2531 }
2532 req->r_request->hdr.data_len = cpu_to_le32(data_len);
2533
2534 BUG_ON(p > msg->front.iov_base + msg->front.iov_len);
2535 msg_size = p - msg->front.iov_base;
2536 msg->front.iov_len = msg_size;
2537 msg->hdr.front_len = cpu_to_le32(msg_size);
2538
2539 dout("build_request msg_size was %d\n", (int)msg_size);
2540}
2541EXPORT_SYMBOL(ceph_osdc_build_request);
2542
70636773
AE
2543/*
2544 * Register request, send initial attempt.
2545 */
2546int ceph_osdc_start_request(struct ceph_osd_client *osdc,
2547 struct ceph_osd_request *req,
2548 bool nofail)
2549{
0bbfdfe8 2550 int rc;
70636773 2551
f24e9980
SW
2552 down_read(&osdc->map_sem);
2553 mutex_lock(&osdc->request_mutex);
0bbfdfe8
ID
2554
2555 rc = __ceph_osdc_start_request(osdc, req, nofail);
2556
f24e9980
SW
2557 mutex_unlock(&osdc->request_mutex);
2558 up_read(&osdc->map_sem);
0bbfdfe8 2559
f24e9980
SW
2560 return rc;
2561}
3d14c5d2 2562EXPORT_SYMBOL(ceph_osdc_start_request);
f24e9980 2563
c9f9b93d
ID
2564/*
2565 * Unregister a registered request. The request is not completed (i.e.
2566 * no callbacks or wakeups) - higher layers are supposed to know what
2567 * they are canceling.
2568 */
2569void ceph_osdc_cancel_request(struct ceph_osd_request *req)
2570{
2571 struct ceph_osd_client *osdc = req->r_osdc;
2572
2573 mutex_lock(&osdc->request_mutex);
2574 if (req->r_linger)
2575 __unregister_linger_request(osdc, req);
2576 __unregister_request(osdc, req);
2577 mutex_unlock(&osdc->request_mutex);
2578
2579 dout("%s %p tid %llu canceled\n", __func__, req, req->r_tid);
2580}
2581EXPORT_SYMBOL(ceph_osdc_cancel_request);
2582
f24e9980
SW
2583/*
2584 * wait for a request to complete
2585 */
2586int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
2587 struct ceph_osd_request *req)
2588{
2589 int rc;
2590
c9f9b93d
ID
2591 dout("%s %p tid %llu\n", __func__, req, req->r_tid);
2592
f24e9980
SW
2593 rc = wait_for_completion_interruptible(&req->r_completion);
2594 if (rc < 0) {
c9f9b93d
ID
2595 dout("%s %p tid %llu interrupted\n", __func__, req, req->r_tid);
2596 ceph_osdc_cancel_request(req);
25845472 2597 complete_request(req);
f24e9980
SW
2598 return rc;
2599 }
2600
c9f9b93d
ID
2601 dout("%s %p tid %llu result %d\n", __func__, req, req->r_tid,
2602 req->r_result);
f24e9980
SW
2603 return req->r_result;
2604}
3d14c5d2 2605EXPORT_SYMBOL(ceph_osdc_wait_request);
f24e9980
SW
2606
2607/*
2608 * sync - wait for all in-flight requests to flush. avoid starvation.
2609 */
2610void ceph_osdc_sync(struct ceph_osd_client *osdc)
2611{
2612 struct ceph_osd_request *req;
2613 u64 last_tid, next_tid = 0;
2614
2615 mutex_lock(&osdc->request_mutex);
2616 last_tid = osdc->last_tid;
2617 while (1) {
2618 req = __lookup_request_ge(osdc, next_tid);
2619 if (!req)
2620 break;
2621 if (req->r_tid > last_tid)
2622 break;
2623
2624 next_tid = req->r_tid + 1;
2625 if ((req->r_flags & CEPH_OSD_FLAG_WRITE) == 0)
2626 continue;
2627
2628 ceph_osdc_get_request(req);
2629 mutex_unlock(&osdc->request_mutex);
2630 dout("sync waiting on tid %llu (last is %llu)\n",
2631 req->r_tid, last_tid);
2632 wait_for_completion(&req->r_safe_completion);
2633 mutex_lock(&osdc->request_mutex);
2634 ceph_osdc_put_request(req);
2635 }
2636 mutex_unlock(&osdc->request_mutex);
2637 dout("sync done (thru tid %llu)\n", last_tid);
2638}
3d14c5d2 2639EXPORT_SYMBOL(ceph_osdc_sync);
f24e9980 2640
dd935f44
JD
2641/*
2642 * Call all pending notify callbacks - for use after a watch is
2643 * unregistered, to make sure no more callbacks for it will be invoked
2644 */
f6479449 2645void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
dd935f44
JD
2646{
2647 flush_workqueue(osdc->notify_wq);
2648}
2649EXPORT_SYMBOL(ceph_osdc_flush_notifies);
2650
2651
f24e9980
SW
2652/*
2653 * init, shutdown
2654 */
2655int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
2656{
2657 int err;
2658
2659 dout("init\n");
2660 osdc->client = client;
2661 osdc->osdmap = NULL;
2662 init_rwsem(&osdc->map_sem);
2663 init_completion(&osdc->map_waiters);
2664 osdc->last_requested_map = 0;
2665 mutex_init(&osdc->request_mutex);
f24e9980
SW
2666 osdc->last_tid = 0;
2667 osdc->osds = RB_ROOT;
f5a2041b 2668 INIT_LIST_HEAD(&osdc->osd_lru);
f24e9980 2669 osdc->requests = RB_ROOT;
422d2cb8 2670 INIT_LIST_HEAD(&osdc->req_lru);
6f6c7006
SW
2671 INIT_LIST_HEAD(&osdc->req_unsent);
2672 INIT_LIST_HEAD(&osdc->req_notarget);
a40c4f10 2673 INIT_LIST_HEAD(&osdc->req_linger);
f24e9980
SW
2674 osdc->num_requests = 0;
2675 INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
f5a2041b 2676 INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
a40c4f10
YS
2677 spin_lock_init(&osdc->event_lock);
2678 osdc->event_tree = RB_ROOT;
2679 osdc->event_count = 0;
f5a2041b
YS
2680
2681 schedule_delayed_work(&osdc->osds_timeout_work,
a319bf56 2682 round_jiffies_relative(osdc->client->options->osd_idle_ttl));
f24e9980 2683
5f44f142 2684 err = -ENOMEM;
9e767adb
ID
2685 osdc->req_mempool = mempool_create_slab_pool(10,
2686 ceph_osd_request_cache);
f24e9980 2687 if (!osdc->req_mempool)
5f44f142 2688 goto out;
f24e9980 2689
d50b409f
SW
2690 err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
2691 OSD_OP_FRONT_LEN, 10, true,
4f48280e 2692 "osd_op");
f24e9980 2693 if (err < 0)
5f44f142 2694 goto out_mempool;
d50b409f 2695 err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
4f48280e
SW
2696 OSD_OPREPLY_FRONT_LEN, 10, true,
2697 "osd_op_reply");
c16e7869
SW
2698 if (err < 0)
2699 goto out_msgpool;
a40c4f10 2700
dbcae088 2701 err = -ENOMEM;
a40c4f10 2702 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
dbcae088 2703 if (!osdc->notify_wq)
c172ec5c
ID
2704 goto out_msgpool_reply;
2705
f24e9980 2706 return 0;
5f44f142 2707
c172ec5c
ID
2708out_msgpool_reply:
2709 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
c16e7869
SW
2710out_msgpool:
2711 ceph_msgpool_destroy(&osdc->msgpool_op);
5f44f142
SW
2712out_mempool:
2713 mempool_destroy(osdc->req_mempool);
2714out:
2715 return err;
f24e9980
SW
2716}
2717
2718void ceph_osdc_stop(struct ceph_osd_client *osdc)
2719{
a40c4f10
YS
2720 flush_workqueue(osdc->notify_wq);
2721 destroy_workqueue(osdc->notify_wq);
f24e9980 2722 cancel_delayed_work_sync(&osdc->timeout_work);
f5a2041b 2723 cancel_delayed_work_sync(&osdc->osds_timeout_work);
f24e9980
SW
2724 if (osdc->osdmap) {
2725 ceph_osdmap_destroy(osdc->osdmap);
2726 osdc->osdmap = NULL;
2727 }
aca420bc 2728 remove_all_osds(osdc);
f24e9980
SW
2729 mempool_destroy(osdc->req_mempool);
2730 ceph_msgpool_destroy(&osdc->msgpool_op);
c16e7869 2731 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
f24e9980
SW
2732}
2733
2734/*
2735 * Read some contiguous pages. If we cross a stripe boundary, shorten
2736 * *plen. Return number of bytes read, or error.
2737 */
2738int ceph_osdc_readpages(struct ceph_osd_client *osdc,
2739 struct ceph_vino vino, struct ceph_file_layout *layout,
2740 u64 off, u64 *plen,
2741 u32 truncate_seq, u64 truncate_size,
b7495fc2 2742 struct page **pages, int num_pages, int page_align)
f24e9980
SW
2743{
2744 struct ceph_osd_request *req;
2745 int rc = 0;
2746
2747 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino.ino,
2748 vino.snap, off, *plen);
715e4cd4 2749 req = ceph_osdc_new_request(osdc, layout, vino, off, plen, 0, 1,
f24e9980 2750 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
acead002 2751 NULL, truncate_seq, truncate_size,
153e5167 2752 false);
6816282d
SW
2753 if (IS_ERR(req))
2754 return PTR_ERR(req);
f24e9980
SW
2755
2756 /* it may be a short read due to an object boundary */
0fff87ec 2757
406e2c9f 2758 osd_req_op_extent_osd_data_pages(req, 0,
a4ce40a9 2759 pages, *plen, page_align, false, false);
f24e9980 2760
e0c59487 2761 dout("readpages final extent is %llu~%llu (%llu bytes align %d)\n",
43bfe5de 2762 off, *plen, *plen, page_align);
f24e9980 2763
79528734 2764 ceph_osdc_build_request(req, off, NULL, vino.snap, NULL);
02ee07d3 2765
f24e9980
SW
2766 rc = ceph_osdc_start_request(osdc, req, false);
2767 if (!rc)
2768 rc = ceph_osdc_wait_request(osdc, req);
2769
2770 ceph_osdc_put_request(req);
2771 dout("readpages result %d\n", rc);
2772 return rc;
2773}
3d14c5d2 2774EXPORT_SYMBOL(ceph_osdc_readpages);
f24e9980
SW
2775
2776/*
2777 * do a synchronous write on N pages
2778 */
2779int ceph_osdc_writepages(struct ceph_osd_client *osdc, struct ceph_vino vino,
2780 struct ceph_file_layout *layout,
2781 struct ceph_snap_context *snapc,
2782 u64 off, u64 len,
2783 u32 truncate_seq, u64 truncate_size,
2784 struct timespec *mtime,
24808826 2785 struct page **pages, int num_pages)
f24e9980
SW
2786{
2787 struct ceph_osd_request *req;
2788 int rc = 0;
b7495fc2 2789 int page_align = off & ~PAGE_MASK;
f24e9980 2790
acead002 2791 BUG_ON(vino.snap != CEPH_NOSNAP); /* snapshots aren't writeable */
715e4cd4 2792 req = ceph_osdc_new_request(osdc, layout, vino, off, &len, 0, 1,
f24e9980 2793 CEPH_OSD_OP_WRITE,
24808826 2794 CEPH_OSD_FLAG_ONDISK | CEPH_OSD_FLAG_WRITE,
acead002 2795 snapc, truncate_seq, truncate_size,
153e5167 2796 true);
6816282d
SW
2797 if (IS_ERR(req))
2798 return PTR_ERR(req);
f24e9980
SW
2799
2800 /* it may be a short write due to an object boundary */
406e2c9f 2801 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_align,
43bfe5de
AE
2802 false, false);
2803 dout("writepages %llu~%llu (%llu bytes)\n", off, len, len);
f24e9980 2804
79528734 2805 ceph_osdc_build_request(req, off, snapc, CEPH_NOSNAP, mtime);
02ee07d3 2806
87f979d3 2807 rc = ceph_osdc_start_request(osdc, req, true);
f24e9980
SW
2808 if (!rc)
2809 rc = ceph_osdc_wait_request(osdc, req);
2810
2811 ceph_osdc_put_request(req);
2812 if (rc == 0)
2813 rc = len;
2814 dout("writepages result %d\n", rc);
2815 return rc;
2816}
3d14c5d2 2817EXPORT_SYMBOL(ceph_osdc_writepages);
f24e9980 2818
5522ae0b
AE
2819int ceph_osdc_setup(void)
2820{
3f1af42a
ID
2821 size_t size = sizeof(struct ceph_osd_request) +
2822 CEPH_OSD_SLAB_OPS * sizeof(struct ceph_osd_req_op);
2823
5522ae0b 2824 BUG_ON(ceph_osd_request_cache);
3f1af42a
ID
2825 ceph_osd_request_cache = kmem_cache_create("ceph_osd_request", size,
2826 0, 0, NULL);
5522ae0b
AE
2827
2828 return ceph_osd_request_cache ? 0 : -ENOMEM;
2829}
2830EXPORT_SYMBOL(ceph_osdc_setup);
2831
2832void ceph_osdc_cleanup(void)
2833{
2834 BUG_ON(!ceph_osd_request_cache);
2835 kmem_cache_destroy(ceph_osd_request_cache);
2836 ceph_osd_request_cache = NULL;
2837}
2838EXPORT_SYMBOL(ceph_osdc_cleanup);
2839
f24e9980
SW
2840/*
2841 * handle incoming message
2842 */
2843static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
2844{
2845 struct ceph_osd *osd = con->private;
32c895e7 2846 struct ceph_osd_client *osdc;
f24e9980
SW
2847 int type = le16_to_cpu(msg->hdr.type);
2848
2849 if (!osd)
4a32f93d 2850 goto out;
32c895e7 2851 osdc = osd->o_osdc;
f24e9980
SW
2852
2853 switch (type) {
2854 case CEPH_MSG_OSD_MAP:
2855 ceph_osdc_handle_map(osdc, msg);
2856 break;
2857 case CEPH_MSG_OSD_OPREPLY:
70cf052d 2858 handle_reply(osdc, msg);
f24e9980 2859 break;
a40c4f10
YS
2860 case CEPH_MSG_WATCH_NOTIFY:
2861 handle_watch_notify(osdc, msg);
2862 break;
f24e9980
SW
2863
2864 default:
2865 pr_err("received unknown message type %d %s\n", type,
2866 ceph_msg_type_name(type));
2867 }
4a32f93d 2868out:
f24e9980
SW
2869 ceph_msg_put(msg);
2870}
2871
5b3a4db3 2872/*
d15f9d69
ID
2873 * Lookup and return message for incoming reply. Don't try to do
2874 * anything about a larger than preallocated data portion of the
2875 * message at the moment - for now, just skip the message.
5b3a4db3
SW
2876 */
2877static struct ceph_msg *get_reply(struct ceph_connection *con,
2450418c
YS
2878 struct ceph_msg_header *hdr,
2879 int *skip)
f24e9980
SW
2880{
2881 struct ceph_osd *osd = con->private;
2882 struct ceph_osd_client *osdc = osd->o_osdc;
2450418c 2883 struct ceph_msg *m;
0547a9b3 2884 struct ceph_osd_request *req;
3f0a4ac5 2885 int front_len = le32_to_cpu(hdr->front_len);
5b3a4db3 2886 int data_len = le32_to_cpu(hdr->data_len);
0547a9b3 2887 u64 tid;
f24e9980 2888
0547a9b3
YS
2889 tid = le64_to_cpu(hdr->tid);
2890 mutex_lock(&osdc->request_mutex);
2891 req = __lookup_request(osdc, tid);
2892 if (!req) {
cd8140c6
ID
2893 dout("%s osd%d tid %llu unknown, skipping\n", __func__,
2894 osd->o_osd, tid);
0547a9b3 2895 m = NULL;
d15f9d69 2896 *skip = 1;
0547a9b3
YS
2897 goto out;
2898 }
c16e7869 2899
ace6d3a9 2900 ceph_msg_revoke_incoming(req->r_reply);
0547a9b3 2901
f2be82b0 2902 if (front_len > req->r_reply->front_alloc_len) {
d15f9d69
ID
2903 pr_warn("%s osd%d tid %llu front %d > preallocated %d\n",
2904 __func__, osd->o_osd, req->r_tid, front_len,
2905 req->r_reply->front_alloc_len);
3f0a4ac5
ID
2906 m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS,
2907 false);
a79832f2 2908 if (!m)
c16e7869
SW
2909 goto out;
2910 ceph_msg_put(req->r_reply);
2911 req->r_reply = m;
2912 }
0fff87ec 2913
d15f9d69
ID
2914 if (data_len > req->r_reply->data_length) {
2915 pr_warn("%s osd%d tid %llu data %d > preallocated %zu, skipping\n",
2916 __func__, osd->o_osd, req->r_tid, data_len,
2917 req->r_reply->data_length);
2918 m = NULL;
2919 *skip = 1;
2920 goto out;
0547a9b3 2921 }
d15f9d69
ID
2922
2923 m = ceph_msg_get(req->r_reply);
c16e7869 2924 dout("get_reply tid %lld %p\n", tid, m);
0547a9b3
YS
2925
2926out:
2927 mutex_unlock(&osdc->request_mutex);
2450418c 2928 return m;
5b3a4db3
SW
2929}
2930
2931static struct ceph_msg *alloc_msg(struct ceph_connection *con,
2932 struct ceph_msg_header *hdr,
2933 int *skip)
2934{
2935 struct ceph_osd *osd = con->private;
2936 int type = le16_to_cpu(hdr->type);
2937 int front = le32_to_cpu(hdr->front_len);
2938
1c20f2d2 2939 *skip = 0;
5b3a4db3
SW
2940 switch (type) {
2941 case CEPH_MSG_OSD_MAP:
a40c4f10 2942 case CEPH_MSG_WATCH_NOTIFY:
b61c2763 2943 return ceph_msg_new(type, front, GFP_NOFS, false);
5b3a4db3
SW
2944 case CEPH_MSG_OSD_OPREPLY:
2945 return get_reply(con, hdr, skip);
2946 default:
2947 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type,
2948 osd->o_osd);
2949 *skip = 1;
2950 return NULL;
2951 }
f24e9980
SW
2952}
2953
2954/*
2955 * Wrappers to refcount containing ceph_osd struct
2956 */
2957static struct ceph_connection *get_osd_con(struct ceph_connection *con)
2958{
2959 struct ceph_osd *osd = con->private;
2960 if (get_osd(osd))
2961 return con;
2962 return NULL;
2963}
2964
2965static void put_osd_con(struct ceph_connection *con)
2966{
2967 struct ceph_osd *osd = con->private;
2968 put_osd(osd);
2969}
2970
4e7a5dcd
SW
2971/*
2972 * authentication
2973 */
a3530df3
AE
2974/*
2975 * Note: returned pointer is the address of a structure that's
2976 * managed separately. Caller must *not* attempt to free it.
2977 */
2978static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
8f43fb53 2979 int *proto, int force_new)
4e7a5dcd
SW
2980{
2981 struct ceph_osd *o = con->private;
2982 struct ceph_osd_client *osdc = o->o_osdc;
2983 struct ceph_auth_client *ac = osdc->client->monc.auth;
74f1869f 2984 struct ceph_auth_handshake *auth = &o->o_auth;
4e7a5dcd 2985
74f1869f 2986 if (force_new && auth->authorizer) {
27859f97 2987 ceph_auth_destroy_authorizer(ac, auth->authorizer);
74f1869f
AE
2988 auth->authorizer = NULL;
2989 }
27859f97
SW
2990 if (!auth->authorizer) {
2991 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
2992 auth);
4e7a5dcd 2993 if (ret)
a3530df3 2994 return ERR_PTR(ret);
27859f97
SW
2995 } else {
2996 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
0bed9b5c
SW
2997 auth);
2998 if (ret)
2999 return ERR_PTR(ret);
4e7a5dcd 3000 }
4e7a5dcd 3001 *proto = ac->protocol;
74f1869f 3002
a3530df3 3003 return auth;
4e7a5dcd
SW
3004}
3005
3006
3007static int verify_authorizer_reply(struct ceph_connection *con, int len)
3008{
3009 struct ceph_osd *o = con->private;
3010 struct ceph_osd_client *osdc = o->o_osdc;
3011 struct ceph_auth_client *ac = osdc->client->monc.auth;
3012
27859f97 3013 return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer, len);
4e7a5dcd
SW
3014}
3015
9bd2e6f8
SW
3016static int invalidate_authorizer(struct ceph_connection *con)
3017{
3018 struct ceph_osd *o = con->private;
3019 struct ceph_osd_client *osdc = o->o_osdc;
3020 struct ceph_auth_client *ac = osdc->client->monc.auth;
3021
27859f97 3022 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
9bd2e6f8
SW
3023 return ceph_monc_validate_auth(&osdc->client->monc);
3024}
4e7a5dcd 3025
79dbd1ba 3026static int osd_sign_message(struct ceph_msg *msg)
33d07337 3027{
79dbd1ba 3028 struct ceph_osd *o = msg->con->private;
33d07337 3029 struct ceph_auth_handshake *auth = &o->o_auth;
79dbd1ba 3030
33d07337
YZ
3031 return ceph_auth_sign_message(auth, msg);
3032}
3033
79dbd1ba 3034static int osd_check_message_signature(struct ceph_msg *msg)
33d07337 3035{
79dbd1ba 3036 struct ceph_osd *o = msg->con->private;
33d07337 3037 struct ceph_auth_handshake *auth = &o->o_auth;
79dbd1ba 3038
33d07337
YZ
3039 return ceph_auth_check_message_signature(auth, msg);
3040}
3041
9e32789f 3042static const struct ceph_connection_operations osd_con_ops = {
f24e9980
SW
3043 .get = get_osd_con,
3044 .put = put_osd_con,
3045 .dispatch = dispatch,
4e7a5dcd
SW
3046 .get_authorizer = get_authorizer,
3047 .verify_authorizer_reply = verify_authorizer_reply,
9bd2e6f8 3048 .invalidate_authorizer = invalidate_authorizer,
f24e9980 3049 .alloc_msg = alloc_msg,
79dbd1ba
ID
3050 .sign_message = osd_sign_message,
3051 .check_message_signature = osd_check_message_signature,
81b024e7 3052 .fault = osd_reset,
f24e9980 3053};