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