Linux 3.12.28
[linux/fpc-iii.git] / net / ceph / osd_client.c
blobe6b2db68b4fa886c535a5a3bdb276cac9c2ad3db
2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/module.h>
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>
11 #ifdef CONFIG_BLOCK
12 #include <linux/bio.h>
13 #endif
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>
22 #define OSD_OP_FRONT_LEN 4096
23 #define OSD_OPREPLY_FRONT_LEN 512
25 static struct kmem_cache *ceph_osd_request_cache;
27 static const struct ceph_connection_operations osd_con_ops;
29 static void __send_queued(struct ceph_osd_client *osdc);
30 static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd);
31 static void __register_request(struct ceph_osd_client *osdc,
32 struct ceph_osd_request *req);
33 static void __unregister_linger_request(struct ceph_osd_client *osdc,
34 struct ceph_osd_request *req);
35 static void __send_request(struct ceph_osd_client *osdc,
36 struct ceph_osd_request *req);
39 * Implement client access to distributed object storage cluster.
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.
47 * Cluster membership and the mapping of data objects onto storage devices
48 * are described by the osd map.
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.
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.
61 * fill osd op in request message.
63 static int calc_layout(struct ceph_file_layout *layout, u64 off, u64 *plen,
64 u64 *objnum, u64 *objoff, u64 *objlen)
66 u64 orig_len = *plen;
67 int r;
69 /* object extent? */
70 r = ceph_calc_file_object_mapping(layout, off, orig_len, objnum,
71 objoff, objlen);
72 if (r < 0)
73 return r;
74 if (*objlen < orig_len) {
75 *plen = *objlen;
76 dout(" skipping last %llu, final file extent %llu~%llu\n",
77 orig_len - *plen, off, *plen);
80 dout("calc_layout objnum=%llx %llu~%llu\n", *objnum, *objoff, *objlen);
82 return 0;
85 static void ceph_osd_data_init(struct ceph_osd_data *osd_data)
87 memset(osd_data, 0, sizeof (*osd_data));
88 osd_data->type = CEPH_OSD_DATA_TYPE_NONE;
91 static void ceph_osd_data_pages_init(struct ceph_osd_data *osd_data,
92 struct page **pages, u64 length, u32 alignment,
93 bool pages_from_pool, bool own_pages)
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;
103 static void ceph_osd_data_pagelist_init(struct ceph_osd_data *osd_data,
104 struct ceph_pagelist *pagelist)
106 osd_data->type = CEPH_OSD_DATA_TYPE_PAGELIST;
107 osd_data->pagelist = pagelist;
110 #ifdef CONFIG_BLOCK
111 static void ceph_osd_data_bio_init(struct ceph_osd_data *osd_data,
112 struct bio *bio, size_t bio_length)
114 osd_data->type = CEPH_OSD_DATA_TYPE_BIO;
115 osd_data->bio = bio;
116 osd_data->bio_length = bio_length;
118 #endif /* CONFIG_BLOCK */
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; \
126 static struct ceph_osd_data *
127 osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which)
129 BUG_ON(which >= osd_req->r_num_ops);
131 return &osd_req->r_ops[which].raw_data_in;
134 struct ceph_osd_data *
135 osd_req_op_extent_osd_data(struct ceph_osd_request *osd_req,
136 unsigned int which)
138 return osd_req_op_data(osd_req, which, extent, osd_data);
140 EXPORT_SYMBOL(osd_req_op_extent_osd_data);
142 struct ceph_osd_data *
143 osd_req_op_cls_response_data(struct ceph_osd_request *osd_req,
144 unsigned int which)
146 return osd_req_op_data(osd_req, which, cls, response_data);
148 EXPORT_SYMBOL(osd_req_op_cls_response_data); /* ??? */
150 void 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)
155 struct ceph_osd_data *osd_data;
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);
161 EXPORT_SYMBOL(osd_req_op_raw_data_in_pages);
163 void osd_req_op_extent_osd_data_pages(struct ceph_osd_request *osd_req,
164 unsigned int which, struct page **pages,
165 u64 length, u32 alignment,
166 bool pages_from_pool, bool own_pages)
168 struct ceph_osd_data *osd_data;
170 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
171 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
172 pages_from_pool, own_pages);
174 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages);
176 void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request *osd_req,
177 unsigned int which, struct ceph_pagelist *pagelist)
179 struct ceph_osd_data *osd_data;
181 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
182 ceph_osd_data_pagelist_init(osd_data, pagelist);
184 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist);
186 #ifdef CONFIG_BLOCK
187 void osd_req_op_extent_osd_data_bio(struct ceph_osd_request *osd_req,
188 unsigned int which, struct bio *bio, size_t bio_length)
190 struct ceph_osd_data *osd_data;
192 osd_data = osd_req_op_data(osd_req, which, extent, osd_data);
193 ceph_osd_data_bio_init(osd_data, bio, bio_length);
195 EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio);
196 #endif /* CONFIG_BLOCK */
198 static void osd_req_op_cls_request_info_pagelist(
199 struct ceph_osd_request *osd_req,
200 unsigned int which, struct ceph_pagelist *pagelist)
202 struct ceph_osd_data *osd_data;
204 osd_data = osd_req_op_data(osd_req, which, cls, request_info);
205 ceph_osd_data_pagelist_init(osd_data, pagelist);
208 void osd_req_op_cls_request_data_pagelist(
209 struct ceph_osd_request *osd_req,
210 unsigned int which, struct ceph_pagelist *pagelist)
212 struct ceph_osd_data *osd_data;
214 osd_data = osd_req_op_data(osd_req, which, cls, request_data);
215 ceph_osd_data_pagelist_init(osd_data, pagelist);
217 EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist);
219 void 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)
223 struct ceph_osd_data *osd_data;
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);
229 EXPORT_SYMBOL(osd_req_op_cls_request_data_pages);
231 void 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)
235 struct ceph_osd_data *osd_data;
237 osd_data = osd_req_op_data(osd_req, which, cls, response_data);
238 ceph_osd_data_pages_init(osd_data, pages, length, alignment,
239 pages_from_pool, own_pages);
241 EXPORT_SYMBOL(osd_req_op_cls_response_data_pages);
243 static u64 ceph_osd_data_length(struct ceph_osd_data *osd_data)
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;
262 static void ceph_osd_data_release(struct ceph_osd_data *osd_data)
264 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES && osd_data->own_pages) {
265 int num_pages;
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);
271 ceph_osd_data_init(osd_data);
274 static void osd_req_op_data_release(struct ceph_osd_request *osd_req,
275 unsigned int which)
277 struct ceph_osd_req_op *op;
279 BUG_ON(which >= osd_req->r_num_ops);
280 op = &osd_req->r_ops[which];
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);
289 ceph_osd_data_release(&op->cls.request_data);
290 ceph_osd_data_release(&op->cls.response_data);
291 break;
292 default:
293 break;
298 * requests
300 void ceph_osdc_release_request(struct kref *kref)
302 struct ceph_osd_request *req;
303 unsigned int which;
305 req = container_of(kref, struct ceph_osd_request, r_kref);
306 if (req->r_request)
307 ceph_msg_put(req->r_request);
308 if (req->r_reply) {
309 ceph_msg_revoke_incoming(req->r_reply);
310 ceph_msg_put(req->r_reply);
313 for (which = 0; which < req->r_num_ops; which++)
314 osd_req_op_data_release(req, which);
316 ceph_put_snap_context(req->r_snapc);
317 if (req->r_mempool)
318 mempool_free(req, req->r_osdc->req_mempool);
319 else
320 kmem_cache_free(ceph_osd_request_cache, req);
323 EXPORT_SYMBOL(ceph_osdc_release_request);
325 struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
326 struct ceph_snap_context *snapc,
327 unsigned int num_ops,
328 bool use_mempool,
329 gfp_t gfp_flags)
331 struct ceph_osd_request *req;
332 struct ceph_msg *msg;
333 size_t msg_size;
335 BUILD_BUG_ON(CEPH_OSD_MAX_OP > U16_MAX);
336 BUG_ON(num_ops > CEPH_OSD_MAX_OP);
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;
348 if (use_mempool) {
349 req = mempool_alloc(osdc->req_mempool, gfp_flags);
350 memset(req, 0, sizeof(*req));
351 } else {
352 req = kmem_cache_zalloc(ceph_osd_request_cache, gfp_flags);
354 if (req == NULL)
355 return NULL;
357 req->r_osdc = osdc;
358 req->r_mempool = use_mempool;
359 req->r_num_ops = num_ops;
361 kref_init(&req->r_kref);
362 init_completion(&req->r_completion);
363 init_completion(&req->r_safe_completion);
364 RB_CLEAR_NODE(&req->r_node);
365 INIT_LIST_HEAD(&req->r_unsafe_item);
366 INIT_LIST_HEAD(&req->r_linger_item);
367 INIT_LIST_HEAD(&req->r_linger_osd);
368 INIT_LIST_HEAD(&req->r_req_lru_item);
369 INIT_LIST_HEAD(&req->r_osd_item);
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,
376 OSD_OPREPLY_FRONT_LEN, gfp_flags, true);
377 if (!msg) {
378 ceph_osdc_put_request(req);
379 return NULL;
381 req->r_reply = msg;
383 /* create request message; allow space for oid */
384 if (use_mempool)
385 msg = ceph_msgpool_get(&osdc->msgpool_op, 0);
386 else
387 msg = ceph_msg_new(CEPH_MSG_OSD_OP, msg_size, gfp_flags, true);
388 if (!msg) {
389 ceph_osdc_put_request(req);
390 return NULL;
393 memset(msg->front.iov_base, 0, msg->front.iov_len);
395 req->r_request = msg;
397 return req;
399 EXPORT_SYMBOL(ceph_osdc_alloc_request);
401 static bool osd_req_opcode_valid(u16 opcode)
403 switch (opcode) {
404 case CEPH_OSD_OP_READ:
405 case CEPH_OSD_OP_STAT:
406 case CEPH_OSD_OP_MAPEXT:
407 case CEPH_OSD_OP_MASKTRUNC:
408 case CEPH_OSD_OP_SPARSE_READ:
409 case CEPH_OSD_OP_NOTIFY:
410 case CEPH_OSD_OP_NOTIFY_ACK:
411 case CEPH_OSD_OP_ASSERT_VER:
412 case CEPH_OSD_OP_WRITE:
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:
418 case CEPH_OSD_OP_STARTSYNC:
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:
425 case CEPH_OSD_OP_ROLLBACK:
426 case CEPH_OSD_OP_WATCH:
427 case CEPH_OSD_OP_OMAPGETKEYS:
428 case CEPH_OSD_OP_OMAPGETVALS:
429 case CEPH_OSD_OP_OMAPGETHEADER:
430 case CEPH_OSD_OP_OMAPGETVALSBYKEYS:
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:
439 case CEPH_OSD_OP_GETXATTR:
440 case CEPH_OSD_OP_GETXATTRS:
441 case CEPH_OSD_OP_CMPXATTR:
442 case CEPH_OSD_OP_SETXATTR:
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:
461 case CEPH_OSD_OP_CALL:
462 case CEPH_OSD_OP_PGLS:
463 case CEPH_OSD_OP_PGLS_FILTER:
464 return true;
465 default:
466 return false;
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.
475 static struct ceph_osd_req_op *
476 _osd_req_op_init(struct ceph_osd_request *osd_req, unsigned int which,
477 u16 opcode)
479 struct ceph_osd_req_op *op;
481 BUG_ON(which >= osd_req->r_num_ops);
482 BUG_ON(!osd_req_opcode_valid(opcode));
484 op = &osd_req->r_ops[which];
485 memset(op, 0, sizeof (*op));
486 op->op = opcode;
488 return op;
491 void osd_req_op_init(struct ceph_osd_request *osd_req,
492 unsigned int which, u16 opcode)
494 (void)_osd_req_op_init(osd_req, which, opcode);
496 EXPORT_SYMBOL(osd_req_op_init);
498 void osd_req_op_extent_init(struct ceph_osd_request *osd_req,
499 unsigned int which, u16 opcode,
500 u64 offset, u64 length,
501 u64 truncate_size, u32 truncate_seq)
503 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which, opcode);
504 size_t payload_len = 0;
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);
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;
517 op->payload_len = payload_len;
519 EXPORT_SYMBOL(osd_req_op_extent_init);
521 void osd_req_op_extent_update(struct ceph_osd_request *osd_req,
522 unsigned int which, u64 length)
524 struct ceph_osd_req_op *op;
525 u64 previous;
527 BUG_ON(which >= osd_req->r_num_ops);
528 op = &osd_req->r_ops[which];
529 previous = op->extent.length;
531 if (length == previous)
532 return; /* Nothing to do */
533 BUG_ON(length > previous);
535 op->extent.length = length;
536 op->payload_len -= previous - length;
538 EXPORT_SYMBOL(osd_req_op_extent_update);
540 void osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
541 u16 opcode, const char *class, const char *method)
543 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which, opcode);
544 struct ceph_pagelist *pagelist;
545 size_t payload_len = 0;
546 size_t size;
548 BUG_ON(opcode != CEPH_OSD_OP_CALL);
550 pagelist = kmalloc(sizeof (*pagelist), GFP_NOFS);
551 BUG_ON(!pagelist);
552 ceph_pagelist_init(pagelist);
554 op->cls.class_name = class;
555 size = strlen(class);
556 BUG_ON(size > (size_t) U8_MAX);
557 op->cls.class_len = size;
558 ceph_pagelist_append(pagelist, class, size);
559 payload_len += size;
561 op->cls.method_name = method;
562 size = strlen(method);
563 BUG_ON(size > (size_t) U8_MAX);
564 op->cls.method_len = size;
565 ceph_pagelist_append(pagelist, method, size);
566 payload_len += size;
568 osd_req_op_cls_request_info_pagelist(osd_req, which, pagelist);
570 op->cls.argc = 0; /* currently unused */
572 op->payload_len = payload_len;
574 EXPORT_SYMBOL(osd_req_op_cls_init);
576 void osd_req_op_watch_init(struct ceph_osd_request *osd_req,
577 unsigned int which, u16 opcode,
578 u64 cookie, u64 version, int flag)
580 struct ceph_osd_req_op *op = _osd_req_op_init(osd_req, which, opcode);
582 BUG_ON(opcode != CEPH_OSD_OP_NOTIFY_ACK && opcode != CEPH_OSD_OP_WATCH);
584 op->watch.cookie = cookie;
585 op->watch.ver = version;
586 if (opcode == CEPH_OSD_OP_WATCH && flag)
587 op->watch.flag = (u8)1;
589 EXPORT_SYMBOL(osd_req_op_watch_init);
591 static void ceph_osdc_msg_data_add(struct ceph_msg *msg,
592 struct ceph_osd_data *osd_data)
594 u64 length = ceph_osd_data_length(osd_data);
596 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
597 BUG_ON(length > (u64) SIZE_MAX);
598 if (length)
599 ceph_msg_data_add_pages(msg, osd_data->pages,
600 length, osd_data->alignment);
601 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGELIST) {
602 BUG_ON(!length);
603 ceph_msg_data_add_pagelist(msg, osd_data->pagelist);
604 #ifdef CONFIG_BLOCK
605 } else if (osd_data->type == CEPH_OSD_DATA_TYPE_BIO) {
606 ceph_msg_data_add_bio(msg, osd_data->bio, length);
607 #endif
608 } else {
609 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_NONE);
613 static u64 osd_req_encode_op(struct ceph_osd_request *req,
614 struct ceph_osd_op *dst, unsigned int which)
616 struct ceph_osd_req_op *src;
617 struct ceph_osd_data *osd_data;
618 u64 request_data_len = 0;
619 u64 data_length;
621 BUG_ON(which >= req->r_num_ops);
622 src = &req->r_ops[which];
623 if (WARN_ON(!osd_req_opcode_valid(src->op))) {
624 pr_err("unrecognized osd opcode %d\n", src->op);
626 return 0;
629 switch (src->op) {
630 case CEPH_OSD_OP_STAT:
631 osd_data = &src->raw_data_in;
632 ceph_osdc_msg_data_add(req->r_reply, osd_data);
633 break;
634 case CEPH_OSD_OP_READ:
635 case CEPH_OSD_OP_WRITE:
636 case CEPH_OSD_OP_ZERO:
637 case CEPH_OSD_OP_DELETE:
638 case CEPH_OSD_OP_TRUNCATE:
639 if (src->op == CEPH_OSD_OP_WRITE)
640 request_data_len = src->extent.length;
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);
647 osd_data = &src->extent.osd_data;
648 if (src->op == CEPH_OSD_OP_WRITE)
649 ceph_osdc_msg_data_add(req->r_request, osd_data);
650 else
651 ceph_osdc_msg_data_add(req->r_reply, osd_data);
652 break;
653 case CEPH_OSD_OP_CALL:
654 dst->cls.class_len = src->cls.class_len;
655 dst->cls.method_len = src->cls.method_len;
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;
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;
670 osd_data = &src->cls.response_data;
671 ceph_osdc_msg_data_add(req->r_reply, osd_data);
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:
682 pr_err("unsupported osd opcode %s\n",
683 ceph_osd_op_name(src->op));
684 WARN_ON(1);
686 return 0;
688 dst->op = cpu_to_le16(src->op);
689 dst->payload_len = cpu_to_le32(src->payload_len);
691 return request_data_len;
695 * build new request AND message, calculate layout, and adjust file
696 * extent as needed.
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.)
702 * if @do_sync, include a 'startsync' command so that the osd will flush
703 * data quickly.
705 struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
706 struct ceph_file_layout *layout,
707 struct ceph_vino vino,
708 u64 off, u64 *plen, int num_ops,
709 int opcode, int flags,
710 struct ceph_snap_context *snapc,
711 u32 truncate_seq,
712 u64 truncate_size,
713 bool use_mempool)
715 struct ceph_osd_request *req;
716 u64 objnum = 0;
717 u64 objoff = 0;
718 u64 objlen = 0;
719 u32 object_size;
720 u64 object_base;
721 int r;
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);
727 req = ceph_osdc_alloc_request(osdc, snapc, num_ops, use_mempool,
728 GFP_NOFS);
729 if (!req)
730 return ERR_PTR(-ENOMEM);
732 req->r_flags = flags;
734 /* calculate max write size */
735 r = calc_layout(layout, off, plen, &objnum, &objoff, &objlen);
736 if (r < 0) {
737 ceph_osdc_put_request(req);
738 return ERR_PTR(r);
741 object_size = le32_to_cpu(layout->fl_object_size);
742 object_base = off - objoff;
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;
753 osd_req_op_extent_init(req, 0, opcode, objoff, objlen,
754 truncate_size, truncate_seq);
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.
761 if (num_ops > 1)
762 osd_req_op_init(req, 1, CEPH_OSD_OP_STARTSYNC);
764 req->r_file_layout = *layout; /* keep a copy */
766 snprintf(req->r_oid, sizeof(req->r_oid), "%llx.%08llx",
767 vino.ino, objnum);
768 req->r_oid_len = strlen(req->r_oid);
770 return req;
772 EXPORT_SYMBOL(ceph_osdc_new_request);
775 * We keep osd requests in an rbtree, sorted by ->r_tid.
777 static void __insert_request(struct ceph_osd_client *osdc,
778 struct ceph_osd_request *new)
780 struct rb_node **p = &osdc->requests.rb_node;
781 struct rb_node *parent = NULL;
782 struct ceph_osd_request *req = NULL;
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();
795 rb_link_node(&new->r_node, parent, p);
796 rb_insert_color(&new->r_node, &osdc->requests);
799 static struct ceph_osd_request *__lookup_request(struct ceph_osd_client *osdc,
800 u64 tid)
802 struct ceph_osd_request *req;
803 struct rb_node *n = osdc->requests.rb_node;
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;
814 return NULL;
817 static struct ceph_osd_request *
818 __lookup_request_ge(struct ceph_osd_client *osdc,
819 u64 tid)
821 struct ceph_osd_request *req;
822 struct rb_node *n = osdc->requests.rb_node;
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;
836 return NULL;
840 * Resubmit requests pending on the given osd.
842 static void __kick_osd_requests(struct ceph_osd_client *osdc,
843 struct ceph_osd *osd)
845 struct ceph_osd_request *req, *nreq;
846 LIST_HEAD(resend);
847 int err;
849 dout("__kick_osd_requests osd%d\n", osd->o_osd);
850 err = __reset_osd(osdc, osd);
851 if (err)
852 return;
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.
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.
870 list_for_each_entry(req, &osd->o_requests, r_osd_item) {
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,
875 osd->o_osd);
876 if (!req->r_linger)
877 req->r_flags |= CEPH_OSD_FLAG_RETRY;
879 list_splice(&resend, &osdc->req_unsent);
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.
886 list_for_each_entry_safe(req, nreq, &osd->o_linger_requests,
887 r_linger_osd) {
889 * reregister request prior to unregistering linger so
890 * that r_osd is preserved.
892 BUG_ON(!list_empty(&req->r_req_lru_item));
893 __register_request(osdc, req);
894 list_add_tail(&req->r_req_lru_item, &osdc->req_unsent);
895 list_add_tail(&req->r_osd_item, &req->r_osd->o_requests);
896 __unregister_linger_request(osdc, req);
897 dout("requeued lingering %p tid %llu osd%d\n", req, req->r_tid,
898 osd->o_osd);
903 * If the osd connection drops, we need to resubmit all requests.
905 static void osd_reset(struct ceph_connection *con)
907 struct ceph_osd *osd = con->private;
908 struct ceph_osd_client *osdc;
910 if (!osd)
911 return;
912 dout("osd_reset osd%d\n", osd->o_osd);
913 osdc = osd->o_osdc;
914 down_read(&osdc->map_sem);
915 mutex_lock(&osdc->request_mutex);
916 __kick_osd_requests(osdc, osd);
917 __send_queued(osdc);
918 mutex_unlock(&osdc->request_mutex);
919 up_read(&osdc->map_sem);
923 * Track open sessions with osds.
925 static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
927 struct ceph_osd *osd;
929 osd = kzalloc(sizeof(*osd), GFP_NOFS);
930 if (!osd)
931 return NULL;
933 atomic_set(&osd->o_ref, 1);
934 osd->o_osdc = osdc;
935 osd->o_osd = onum;
936 RB_CLEAR_NODE(&osd->o_node);
937 INIT_LIST_HEAD(&osd->o_requests);
938 INIT_LIST_HEAD(&osd->o_linger_requests);
939 INIT_LIST_HEAD(&osd->o_osd_lru);
940 osd->o_incarnation = 1;
942 ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
944 INIT_LIST_HEAD(&osd->o_keepalive_item);
945 return osd;
948 static struct ceph_osd *get_osd(struct ceph_osd *osd)
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;
960 static void put_osd(struct ceph_osd *osd)
962 dout("put_osd %p %d -> %d\n", osd, atomic_read(&osd->o_ref),
963 atomic_read(&osd->o_ref) - 1);
964 if (atomic_dec_and_test(&osd->o_ref) && osd->o_auth.authorizer) {
965 struct ceph_auth_client *ac = osd->o_osdc->client->monc.auth;
967 ceph_auth_destroy_authorizer(ac, osd->o_auth.authorizer);
968 kfree(osd);
973 * remove an osd from our map
975 static void __remove_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
977 dout("__remove_osd %p\n", osd);
978 BUG_ON(!list_empty(&osd->o_requests));
979 rb_erase(&osd->o_node, &osdc->osds);
980 list_del_init(&osd->o_osd_lru);
981 ceph_con_close(&osd->o_con);
982 put_osd(osd);
985 static void remove_all_osds(struct ceph_osd_client *osdc)
987 dout("%s %p\n", __func__, osdc);
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);
994 mutex_unlock(&osdc->request_mutex);
997 static void __move_osd_to_lru(struct ceph_osd_client *osdc,
998 struct ceph_osd *osd)
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);
1003 osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl * HZ;
1006 static void __remove_osd_from_lru(struct ceph_osd *osd)
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);
1013 static void remove_old_osds(struct ceph_osd_client *osdc)
1015 struct ceph_osd *osd, *nosd;
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) {
1020 if (time_before(jiffies, osd->lru_ttl))
1021 break;
1022 __remove_osd(osdc, osd);
1024 mutex_unlock(&osdc->request_mutex);
1028 * reset osd connect
1030 static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
1032 struct ceph_entity_addr *peer_addr;
1034 dout("__reset_osd %p osd%d\n", osd, osd->o_osd);
1035 if (list_empty(&osd->o_requests) &&
1036 list_empty(&osd->o_linger_requests)) {
1037 __remove_osd(osdc, osd);
1039 return -ENODEV;
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;
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;
1053 return -EAGAIN;
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++;
1060 return 0;
1063 static void __insert_osd(struct ceph_osd_client *osdc, struct ceph_osd *new)
1065 struct rb_node **p = &osdc->osds.rb_node;
1066 struct rb_node *parent = NULL;
1067 struct ceph_osd *osd = NULL;
1069 dout("__insert_osd %p osd%d\n", new, new->o_osd);
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();
1081 rb_link_node(&new->o_node, parent, p);
1082 rb_insert_color(&new->o_node, &osdc->osds);
1085 static struct ceph_osd *__lookup_osd(struct ceph_osd_client *osdc, int o)
1087 struct ceph_osd *osd;
1088 struct rb_node *n = osdc->osds.rb_node;
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;
1099 return NULL;
1102 static void __schedule_osd_timeout(struct ceph_osd_client *osdc)
1104 schedule_delayed_work(&osdc->timeout_work,
1105 osdc->client->options->osd_keepalive_timeout * HZ);
1108 static void __cancel_osd_timeout(struct ceph_osd_client *osdc)
1110 cancel_delayed_work(&osdc->timeout_work);
1114 * Register request, assign tid. If this is the first request, set up
1115 * the timeout event.
1117 static void __register_request(struct ceph_osd_client *osdc,
1118 struct ceph_osd_request *req)
1120 req->r_tid = ++osdc->last_tid;
1121 req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
1122 dout("__register_request %p tid %lld\n", req, req->r_tid);
1123 __insert_request(osdc, req);
1124 ceph_osdc_get_request(req);
1125 osdc->num_requests++;
1126 if (osdc->num_requests == 1) {
1127 dout(" first request, scheduling timeout\n");
1128 __schedule_osd_timeout(osdc);
1133 * called under osdc->request_mutex
1135 static void __unregister_request(struct ceph_osd_client *osdc,
1136 struct ceph_osd_request *req)
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;
1144 dout("__unregister_request %p tid %lld\n", req, req->r_tid);
1145 rb_erase(&req->r_node, &osdc->requests);
1146 osdc->num_requests--;
1148 if (req->r_osd) {
1149 /* make sure the original request isn't in flight. */
1150 ceph_msg_revoke(req->r_request);
1152 list_del_init(&req->r_osd_item);
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);
1156 __move_osd_to_lru(osdc, req->r_osd);
1158 if (list_empty(&req->r_linger_item))
1159 req->r_osd = NULL;
1162 list_del_init(&req->r_req_lru_item);
1163 ceph_osdc_put_request(req);
1165 if (osdc->num_requests == 0) {
1166 dout(" no requests, canceling timeout\n");
1167 __cancel_osd_timeout(osdc);
1172 * Cancel a previously queued request message
1174 static void __cancel_request(struct ceph_osd_request *req)
1176 if (req->r_sent && req->r_osd) {
1177 ceph_msg_revoke(req->r_request);
1178 req->r_sent = 0;
1182 static void __register_linger_request(struct ceph_osd_client *osdc,
1183 struct ceph_osd_request *req)
1185 dout("__register_linger_request %p\n", req);
1186 ceph_osdc_get_request(req);
1187 list_add_tail(&req->r_linger_item, &osdc->req_linger);
1188 if (req->r_osd)
1189 list_add_tail(&req->r_linger_osd,
1190 &req->r_osd->o_linger_requests);
1193 static void __unregister_linger_request(struct ceph_osd_client *osdc,
1194 struct ceph_osd_request *req)
1196 dout("__unregister_linger_request %p\n", req);
1197 list_del_init(&req->r_linger_item);
1198 if (req->r_osd) {
1199 list_del_init(&req->r_linger_osd);
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);
1206 if (list_empty(&req->r_osd_item))
1207 req->r_osd = NULL;
1209 ceph_osdc_put_request(req);
1212 void ceph_osdc_unregister_linger_request(struct ceph_osd_client *osdc,
1213 struct ceph_osd_request *req)
1215 mutex_lock(&osdc->request_mutex);
1216 if (req->r_linger) {
1217 req->r_linger = 0;
1218 __unregister_linger_request(osdc, req);
1220 mutex_unlock(&osdc->request_mutex);
1222 EXPORT_SYMBOL(ceph_osdc_unregister_linger_request);
1224 void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
1225 struct ceph_osd_request *req)
1227 if (!req->r_linger) {
1228 dout("set_request_linger %p\n", req);
1229 req->r_linger = 1;
1232 EXPORT_SYMBOL(ceph_osdc_set_request_linger);
1235 * Returns whether a request should be blocked from being sent
1236 * based on the current osdmap and osd_client settings.
1238 * Caller should hold map_sem for read.
1240 static bool __req_should_be_paused(struct ceph_osd_client *osdc,
1241 struct ceph_osd_request *req)
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);
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
1253 * no up osd, set r_osd to NULL. Move the request to the appropriate list
1254 * (unsent, homeless) or leave on in-flight lru.
1256 * Return 0 if unchanged, 1 if changed, or negative on error.
1258 * Caller should hold map_sem for read and request_mutex.
1260 static int __map_request(struct ceph_osd_client *osdc,
1261 struct ceph_osd_request *req, int force_resend)
1263 struct ceph_pg pgid;
1264 int acting[CEPH_PG_MAX_SIZE];
1265 int o = -1, num = 0;
1266 int err;
1267 bool was_paused;
1269 dout("map_request %p tid %lld\n", req, req->r_tid);
1270 err = ceph_calc_ceph_pg(&pgid, req->r_oid, osdc->osdmap,
1271 ceph_file_layout_pg_pool(req->r_file_layout));
1272 if (err) {
1273 list_move(&req->r_req_lru_item, &osdc->req_notarget);
1274 return err;
1276 req->r_pgid = pgid;
1278 err = ceph_calc_pg_acting(osdc->osdmap, pgid, acting);
1279 if (err > 0) {
1280 o = acting[0];
1281 num = err;
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;
1289 if ((!force_resend &&
1290 req->r_osd && req->r_osd->o_osd == o &&
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) ||
1294 (req->r_osd == NULL && o == -1) ||
1295 req->r_paused)
1296 return 0; /* no change */
1298 dout("map_request tid %llu pgid %lld.%x osd%d (was osd%d)\n",
1299 req->r_tid, pgid.pool, pgid.seed, o,
1300 req->r_osd ? req->r_osd->o_osd : -1);
1302 /* record full pg acting set */
1303 memcpy(req->r_pg_osds, acting, sizeof(acting[0]) * num);
1304 req->r_num_pg_osds = num;
1306 if (req->r_osd) {
1307 __cancel_request(req);
1308 list_del_init(&req->r_osd_item);
1309 req->r_osd = NULL;
1312 req->r_osd = __lookup_osd(osdc, o);
1313 if (!req->r_osd && o >= 0) {
1314 err = -ENOMEM;
1315 req->r_osd = create_osd(osdc, o);
1316 if (!req->r_osd) {
1317 list_move(&req->r_req_lru_item, &osdc->req_notarget);
1318 goto out;
1321 dout("map_request osd %p is osd%d\n", req->r_osd, o);
1322 __insert_osd(osdc, req->r_osd);
1324 ceph_con_open(&req->r_osd->o_con,
1325 CEPH_ENTITY_TYPE_OSD, o,
1326 &osdc->osdmap->osd_addr[o]);
1329 if (req->r_osd) {
1330 __remove_osd_from_lru(req->r_osd);
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);
1333 } else {
1334 list_move_tail(&req->r_req_lru_item, &osdc->req_notarget);
1336 err = 1; /* osd or pg changed */
1338 out:
1339 return err;
1343 * caller should hold map_sem (for read) and request_mutex
1345 static void __send_request(struct ceph_osd_client *osdc,
1346 struct ceph_osd_request *req)
1348 void *p;
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);
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));
1365 req->r_stamp = jiffies;
1366 list_move_tail(&req->r_req_lru_item, &osdc->req_lru);
1368 ceph_msg_get(req->r_request); /* send consumes a ref */
1370 req->r_sent = req->r_osd->o_incarnation;
1372 ceph_con_send(&req->r_osd->o_con, req->r_request);
1376 * Send any requests in the queue (req_unsent).
1378 static void __send_queued(struct ceph_osd_client *osdc)
1380 struct ceph_osd_request *req, *tmp;
1382 dout("__send_queued\n");
1383 list_for_each_entry_safe(req, tmp, &osdc->req_unsent, r_req_lru_item)
1384 __send_request(osdc, req);
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).
1396 static void handle_timeout(struct work_struct *work)
1398 struct ceph_osd_client *osdc =
1399 container_of(work, struct ceph_osd_client, timeout_work.work);
1400 struct ceph_osd_request *req;
1401 struct ceph_osd *osd;
1402 unsigned long keepalive =
1403 osdc->client->options->osd_keepalive_timeout * HZ;
1404 struct list_head slow_osds;
1405 dout("timeout\n");
1406 down_read(&osdc->map_sem);
1408 ceph_monc_request_next_osdmap(&osdc->client->monc);
1410 mutex_lock(&osdc->request_mutex);
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).
1417 INIT_LIST_HEAD(&slow_osds);
1418 list_for_each_entry(req, &osdc->req_lru, r_req_lru_item) {
1419 if (time_before(jiffies, req->r_stamp + keepalive))
1420 break;
1422 osd = req->r_osd;
1423 BUG_ON(!osd);
1424 dout(" tid %llu is slow, will send keepalive on osd%d\n",
1425 req->r_tid, osd->o_osd);
1426 list_move_tail(&osd->o_keepalive_item, &slow_osds);
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);
1432 ceph_con_keepalive(&osd->o_con);
1435 __schedule_osd_timeout(osdc);
1436 __send_queued(osdc);
1437 mutex_unlock(&osdc->request_mutex);
1438 up_read(&osdc->map_sem);
1441 static void handle_osds_timeout(struct work_struct *work)
1443 struct ceph_osd_client *osdc =
1444 container_of(work, struct ceph_osd_client,
1445 osds_timeout_work.work);
1446 unsigned long delay =
1447 osdc->client->options->osd_idle_ttl * HZ >> 2;
1449 dout("osds timeout\n");
1450 down_read(&osdc->map_sem);
1451 remove_old_osds(osdc);
1452 up_read(&osdc->map_sem);
1454 schedule_delayed_work(&osdc->osds_timeout_work,
1455 round_jiffies_relative(delay));
1458 static void complete_request(struct ceph_osd_request *req)
1460 complete_all(&req->r_safe_completion); /* fsync waiter */
1464 * handle osd op reply. either call the callback if it is specified,
1465 * or do the completion to wake up the waiting thread.
1467 static void handle_reply(struct ceph_osd_client *osdc, struct ceph_msg *msg,
1468 struct ceph_connection *con)
1470 void *p, *end;
1471 struct ceph_osd_request *req;
1472 u64 tid;
1473 int object_len;
1474 unsigned int numops;
1475 int payload_len, flags;
1476 s32 result;
1477 s32 retry_attempt;
1478 struct ceph_pg pg;
1479 int err;
1480 u32 reassert_epoch;
1481 u64 reassert_version;
1482 u32 osdmap_epoch;
1483 int already_completed;
1484 u32 bytes;
1485 unsigned int i;
1487 tid = le64_to_cpu(msg->hdr.tid);
1488 dout("handle_reply %p tid %llu\n", msg, tid);
1490 p = msg->front.iov_base;
1491 end = p + msg->front.iov_len;
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;
1498 err = ceph_decode_pgid(&p, end, &pg);
1499 if (err)
1500 goto bad;
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);
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);
1514 goto bad_mutex;
1516 ceph_osdc_get_request(req);
1518 dout("handle_reply %p tid %llu req %p result %d\n", msg, tid,
1519 req, result);
1521 ceph_decode_need(&p, end, 4, bad_put);
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;
1528 ceph_decode_need(&p, end, numops * sizeof(struct ceph_osd_op), bad_put);
1529 for (i = 0; i < numops; i++) {
1530 struct ceph_osd_op *op = p;
1531 int len;
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);
1539 bytes = le32_to_cpu(msg->hdr.data_len);
1540 if (payload_len != bytes) {
1541 pr_warning("sum of op payload lens %d != data_len %d",
1542 payload_len, bytes);
1543 goto bad_put;
1546 ceph_decode_need(&p, end, 4 + numops * 4, bad_put);
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);
1551 already_completed = req->r_got_reply;
1553 if (!req->r_got_reply) {
1555 req->r_result = result;
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;
1561 /* in case this is a write and we need to replay, */
1562 req->r_reassert_version.epoch = cpu_to_le32(reassert_epoch);
1563 req->r_reassert_version.version = cpu_to_le64(reassert_version);
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);
1568 mutex_unlock(&osdc->request_mutex);
1569 goto done;
1572 dout("handle_reply tid %llu flags %d\n", tid, flags);
1574 if (req->r_linger && (flags & CEPH_OSD_FLAG_ONDISK))
1575 __register_linger_request(osdc, req);
1577 /* either this is a read, or we got the safe response */
1578 if (result < 0 ||
1579 (flags & CEPH_OSD_FLAG_ONDISK) ||
1580 ((flags & CEPH_OSD_FLAG_WRITE) == 0))
1581 __unregister_request(osdc, req);
1583 mutex_unlock(&osdc->request_mutex);
1585 if (!already_completed) {
1586 if (req->r_unsafe_callback &&
1587 result >= 0 && !(flags & CEPH_OSD_FLAG_ONDISK))
1588 req->r_unsafe_callback(req, true);
1589 if (req->r_callback)
1590 req->r_callback(req, msg);
1591 else
1592 complete_all(&req->r_completion);
1595 if (flags & CEPH_OSD_FLAG_ONDISK) {
1596 if (req->r_unsafe_callback && already_completed)
1597 req->r_unsafe_callback(req, false);
1598 complete_request(req);
1601 done:
1602 dout("req=%p req->r_linger=%d\n", req, req->r_linger);
1603 ceph_osdc_put_request(req);
1604 return;
1606 bad_put:
1607 ceph_osdc_put_request(req);
1608 bad_mutex:
1609 mutex_unlock(&osdc->request_mutex);
1610 bad:
1611 pr_err("corrupt osd_op_reply got %d %d\n",
1612 (int)msg->front.iov_len, le32_to_cpu(msg->hdr.front_len));
1613 ceph_msg_dump(msg);
1616 static void reset_changed_osds(struct ceph_osd_client *osdc)
1618 struct rb_node *p, *n;
1620 for (p = rb_first(&osdc->osds); p; p = n) {
1621 struct ceph_osd *osd = rb_entry(p, struct ceph_osd, o_node);
1623 n = rb_next(p);
1624 if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
1625 memcmp(&osd->o_con.peer_addr,
1626 ceph_osd_addr(osdc->osdmap,
1627 osd->o_osd),
1628 sizeof(struct ceph_entity_addr)) != 0)
1629 __reset_osd(osdc, osd);
1634 * Requeue requests whose mapping to an OSD has changed. If requests map to
1635 * no osd, request a new map.
1637 * Caller should hold map_sem for read.
1639 static void kick_requests(struct ceph_osd_client *osdc, bool force_resend,
1640 bool force_resend_writes)
1642 struct ceph_osd_request *req, *nreq;
1643 struct rb_node *p;
1644 int needmap = 0;
1645 int err;
1646 bool force_resend_req;
1648 dout("kick_requests %s %s\n", force_resend ? " (force resend)" : "",
1649 force_resend_writes ? " (force resend writes)" : "");
1650 mutex_lock(&osdc->request_mutex);
1651 for (p = rb_first(&osdc->requests); p; ) {
1652 req = rb_entry(p, struct ceph_osd_request, r_node);
1653 p = rb_next(p);
1656 * For linger requests that have not yet been
1657 * registered, move them to the linger list; they'll
1658 * be sent to the osd in the loop below. Unregister
1659 * the request before re-registering it as a linger
1660 * request to ensure the __map_request() below
1661 * will decide it needs to be sent.
1663 if (req->r_linger && list_empty(&req->r_linger_item)) {
1664 dout("%p tid %llu restart on osd%d\n",
1665 req, req->r_tid,
1666 req->r_osd ? req->r_osd->o_osd : -1);
1667 ceph_osdc_get_request(req);
1668 __unregister_request(osdc, req);
1669 __register_linger_request(osdc, req);
1670 ceph_osdc_put_request(req);
1671 continue;
1674 force_resend_req = force_resend ||
1675 (force_resend_writes &&
1676 req->r_flags & CEPH_OSD_FLAG_WRITE);
1677 err = __map_request(osdc, req, force_resend_req);
1678 if (err < 0)
1679 continue; /* error */
1680 if (req->r_osd == NULL) {
1681 dout("%p tid %llu maps to no osd\n", req, req->r_tid);
1682 needmap++; /* request a newer map */
1683 } else if (err > 0) {
1684 if (!req->r_linger) {
1685 dout("%p tid %llu requeued on osd%d\n", req,
1686 req->r_tid,
1687 req->r_osd ? req->r_osd->o_osd : -1);
1688 req->r_flags |= CEPH_OSD_FLAG_RETRY;
1693 list_for_each_entry_safe(req, nreq, &osdc->req_linger,
1694 r_linger_item) {
1695 dout("linger req=%p req->r_osd=%p\n", req, req->r_osd);
1697 err = __map_request(osdc, req,
1698 force_resend || force_resend_writes);
1699 dout("__map_request returned %d\n", err);
1700 if (err == 0)
1701 continue; /* no change and no osd was specified */
1702 if (err < 0)
1703 continue; /* hrm! */
1704 if (req->r_osd == NULL) {
1705 dout("tid %llu maps to no valid osd\n", req->r_tid);
1706 needmap++; /* request a newer map */
1707 continue;
1710 dout("kicking lingering %p tid %llu osd%d\n", req, req->r_tid,
1711 req->r_osd ? req->r_osd->o_osd : -1);
1712 __register_request(osdc, req);
1713 __unregister_linger_request(osdc, req);
1715 reset_changed_osds(osdc);
1716 mutex_unlock(&osdc->request_mutex);
1718 if (needmap) {
1719 dout("%d requests for down osds, need new map\n", needmap);
1720 ceph_monc_request_next_osdmap(&osdc->client->monc);
1726 * Process updated osd map.
1728 * The message contains any number of incremental and full maps, normally
1729 * indicating some sort of topology change in the cluster. Kick requests
1730 * off to different OSDs as needed.
1732 void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
1734 void *p, *end, *next;
1735 u32 nr_maps, maplen;
1736 u32 epoch;
1737 struct ceph_osdmap *newmap = NULL, *oldmap;
1738 int err;
1739 struct ceph_fsid fsid;
1740 bool was_full;
1742 dout("handle_map have %u\n", osdc->osdmap ? osdc->osdmap->epoch : 0);
1743 p = msg->front.iov_base;
1744 end = p + msg->front.iov_len;
1746 /* verify fsid */
1747 ceph_decode_need(&p, end, sizeof(fsid), bad);
1748 ceph_decode_copy(&p, &fsid, sizeof(fsid));
1749 if (ceph_check_fsid(osdc->client, &fsid) < 0)
1750 return;
1752 down_write(&osdc->map_sem);
1754 was_full = ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL);
1756 /* incremental maps */
1757 ceph_decode_32_safe(&p, end, nr_maps, bad);
1758 dout(" %d inc maps\n", nr_maps);
1759 while (nr_maps > 0) {
1760 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
1761 epoch = ceph_decode_32(&p);
1762 maplen = ceph_decode_32(&p);
1763 ceph_decode_need(&p, end, maplen, bad);
1764 next = p + maplen;
1765 if (osdc->osdmap && osdc->osdmap->epoch+1 == epoch) {
1766 dout("applying incremental map %u len %d\n",
1767 epoch, maplen);
1768 newmap = osdmap_apply_incremental(&p, next,
1769 osdc->osdmap,
1770 &osdc->client->msgr);
1771 if (IS_ERR(newmap)) {
1772 err = PTR_ERR(newmap);
1773 goto bad;
1775 BUG_ON(!newmap);
1776 if (newmap != osdc->osdmap) {
1777 ceph_osdmap_destroy(osdc->osdmap);
1778 osdc->osdmap = newmap;
1780 was_full = was_full ||
1781 ceph_osdmap_flag(osdc->osdmap,
1782 CEPH_OSDMAP_FULL);
1783 kick_requests(osdc, 0, was_full);
1784 } else {
1785 dout("ignoring incremental map %u len %d\n",
1786 epoch, maplen);
1788 p = next;
1789 nr_maps--;
1791 if (newmap)
1792 goto done;
1794 /* full maps */
1795 ceph_decode_32_safe(&p, end, nr_maps, bad);
1796 dout(" %d full maps\n", nr_maps);
1797 while (nr_maps) {
1798 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
1799 epoch = ceph_decode_32(&p);
1800 maplen = ceph_decode_32(&p);
1801 ceph_decode_need(&p, end, maplen, bad);
1802 if (nr_maps > 1) {
1803 dout("skipping non-latest full map %u len %d\n",
1804 epoch, maplen);
1805 } else if (osdc->osdmap && osdc->osdmap->epoch >= epoch) {
1806 dout("skipping full map %u len %d, "
1807 "older than our %u\n", epoch, maplen,
1808 osdc->osdmap->epoch);
1809 } else {
1810 int skipped_map = 0;
1812 dout("taking full map %u len %d\n", epoch, maplen);
1813 newmap = osdmap_decode(&p, p+maplen);
1814 if (IS_ERR(newmap)) {
1815 err = PTR_ERR(newmap);
1816 goto bad;
1818 BUG_ON(!newmap);
1819 oldmap = osdc->osdmap;
1820 osdc->osdmap = newmap;
1821 if (oldmap) {
1822 if (oldmap->epoch + 1 < newmap->epoch)
1823 skipped_map = 1;
1824 ceph_osdmap_destroy(oldmap);
1826 was_full = was_full ||
1827 ceph_osdmap_flag(osdc->osdmap,
1828 CEPH_OSDMAP_FULL);
1829 kick_requests(osdc, skipped_map, was_full);
1831 p += maplen;
1832 nr_maps--;
1835 if (!osdc->osdmap)
1836 goto bad;
1837 done:
1838 downgrade_write(&osdc->map_sem);
1839 ceph_monc_got_osdmap(&osdc->client->monc, osdc->osdmap->epoch);
1842 * subscribe to subsequent osdmap updates if full to ensure
1843 * we find out when we are no longer full and stop returning
1844 * ENOSPC.
1846 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL) ||
1847 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSERD) ||
1848 ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_PAUSEWR))
1849 ceph_monc_request_next_osdmap(&osdc->client->monc);
1851 mutex_lock(&osdc->request_mutex);
1852 __send_queued(osdc);
1853 mutex_unlock(&osdc->request_mutex);
1854 up_read(&osdc->map_sem);
1855 wake_up_all(&osdc->client->auth_wq);
1856 return;
1858 bad:
1859 pr_err("osdc handle_map corrupt msg\n");
1860 ceph_msg_dump(msg);
1861 up_write(&osdc->map_sem);
1862 return;
1866 * watch/notify callback event infrastructure
1868 * These callbacks are used both for watch and notify operations.
1870 static void __release_event(struct kref *kref)
1872 struct ceph_osd_event *event =
1873 container_of(kref, struct ceph_osd_event, kref);
1875 dout("__release_event %p\n", event);
1876 kfree(event);
1879 static void get_event(struct ceph_osd_event *event)
1881 kref_get(&event->kref);
1884 void ceph_osdc_put_event(struct ceph_osd_event *event)
1886 kref_put(&event->kref, __release_event);
1888 EXPORT_SYMBOL(ceph_osdc_put_event);
1890 static void __insert_event(struct ceph_osd_client *osdc,
1891 struct ceph_osd_event *new)
1893 struct rb_node **p = &osdc->event_tree.rb_node;
1894 struct rb_node *parent = NULL;
1895 struct ceph_osd_event *event = NULL;
1897 while (*p) {
1898 parent = *p;
1899 event = rb_entry(parent, struct ceph_osd_event, node);
1900 if (new->cookie < event->cookie)
1901 p = &(*p)->rb_left;
1902 else if (new->cookie > event->cookie)
1903 p = &(*p)->rb_right;
1904 else
1905 BUG();
1908 rb_link_node(&new->node, parent, p);
1909 rb_insert_color(&new->node, &osdc->event_tree);
1912 static struct ceph_osd_event *__find_event(struct ceph_osd_client *osdc,
1913 u64 cookie)
1915 struct rb_node **p = &osdc->event_tree.rb_node;
1916 struct rb_node *parent = NULL;
1917 struct ceph_osd_event *event = NULL;
1919 while (*p) {
1920 parent = *p;
1921 event = rb_entry(parent, struct ceph_osd_event, node);
1922 if (cookie < event->cookie)
1923 p = &(*p)->rb_left;
1924 else if (cookie > event->cookie)
1925 p = &(*p)->rb_right;
1926 else
1927 return event;
1929 return NULL;
1932 static void __remove_event(struct ceph_osd_event *event)
1934 struct ceph_osd_client *osdc = event->osdc;
1936 if (!RB_EMPTY_NODE(&event->node)) {
1937 dout("__remove_event removed %p\n", event);
1938 rb_erase(&event->node, &osdc->event_tree);
1939 ceph_osdc_put_event(event);
1940 } else {
1941 dout("__remove_event didn't remove %p\n", event);
1945 int ceph_osdc_create_event(struct ceph_osd_client *osdc,
1946 void (*event_cb)(u64, u64, u8, void *),
1947 void *data, struct ceph_osd_event **pevent)
1949 struct ceph_osd_event *event;
1951 event = kmalloc(sizeof(*event), GFP_NOIO);
1952 if (!event)
1953 return -ENOMEM;
1955 dout("create_event %p\n", event);
1956 event->cb = event_cb;
1957 event->one_shot = 0;
1958 event->data = data;
1959 event->osdc = osdc;
1960 INIT_LIST_HEAD(&event->osd_node);
1961 RB_CLEAR_NODE(&event->node);
1962 kref_init(&event->kref); /* one ref for us */
1963 kref_get(&event->kref); /* one ref for the caller */
1965 spin_lock(&osdc->event_lock);
1966 event->cookie = ++osdc->event_count;
1967 __insert_event(osdc, event);
1968 spin_unlock(&osdc->event_lock);
1970 *pevent = event;
1971 return 0;
1973 EXPORT_SYMBOL(ceph_osdc_create_event);
1975 void ceph_osdc_cancel_event(struct ceph_osd_event *event)
1977 struct ceph_osd_client *osdc = event->osdc;
1979 dout("cancel_event %p\n", event);
1980 spin_lock(&osdc->event_lock);
1981 __remove_event(event);
1982 spin_unlock(&osdc->event_lock);
1983 ceph_osdc_put_event(event); /* caller's */
1985 EXPORT_SYMBOL(ceph_osdc_cancel_event);
1988 static void do_event_work(struct work_struct *work)
1990 struct ceph_osd_event_work *event_work =
1991 container_of(work, struct ceph_osd_event_work, work);
1992 struct ceph_osd_event *event = event_work->event;
1993 u64 ver = event_work->ver;
1994 u64 notify_id = event_work->notify_id;
1995 u8 opcode = event_work->opcode;
1997 dout("do_event_work completing %p\n", event);
1998 event->cb(ver, notify_id, opcode, event->data);
1999 dout("do_event_work completed %p\n", event);
2000 ceph_osdc_put_event(event);
2001 kfree(event_work);
2006 * Process osd watch notifications
2008 static void handle_watch_notify(struct ceph_osd_client *osdc,
2009 struct ceph_msg *msg)
2011 void *p, *end;
2012 u8 proto_ver;
2013 u64 cookie, ver, notify_id;
2014 u8 opcode;
2015 struct ceph_osd_event *event;
2016 struct ceph_osd_event_work *event_work;
2018 p = msg->front.iov_base;
2019 end = p + msg->front.iov_len;
2021 ceph_decode_8_safe(&p, end, proto_ver, bad);
2022 ceph_decode_8_safe(&p, end, opcode, bad);
2023 ceph_decode_64_safe(&p, end, cookie, bad);
2024 ceph_decode_64_safe(&p, end, ver, bad);
2025 ceph_decode_64_safe(&p, end, notify_id, bad);
2027 spin_lock(&osdc->event_lock);
2028 event = __find_event(osdc, cookie);
2029 if (event) {
2030 BUG_ON(event->one_shot);
2031 get_event(event);
2033 spin_unlock(&osdc->event_lock);
2034 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
2035 cookie, ver, event);
2036 if (event) {
2037 event_work = kmalloc(sizeof(*event_work), GFP_NOIO);
2038 if (!event_work) {
2039 dout("ERROR: could not allocate event_work\n");
2040 goto done_err;
2042 INIT_WORK(&event_work->work, do_event_work);
2043 event_work->event = event;
2044 event_work->ver = ver;
2045 event_work->notify_id = notify_id;
2046 event_work->opcode = opcode;
2047 if (!queue_work(osdc->notify_wq, &event_work->work)) {
2048 dout("WARNING: failed to queue notify event work\n");
2049 goto done_err;
2053 return;
2055 done_err:
2056 ceph_osdc_put_event(event);
2057 return;
2059 bad:
2060 pr_err("osdc handle_watch_notify corrupt msg\n");
2061 return;
2065 * build new request AND message
2068 void ceph_osdc_build_request(struct ceph_osd_request *req, u64 off,
2069 struct ceph_snap_context *snapc, u64 snap_id,
2070 struct timespec *mtime)
2072 struct ceph_msg *msg = req->r_request;
2073 void *p;
2074 size_t msg_size;
2075 int flags = req->r_flags;
2076 u64 data_len;
2077 unsigned int i;
2079 req->r_snapid = snap_id;
2080 req->r_snapc = ceph_get_snap_context(snapc);
2082 /* encode request */
2083 msg->hdr.version = cpu_to_le16(4);
2085 p = msg->front.iov_base;
2086 ceph_encode_32(&p, 1); /* client_inc is always 1 */
2087 req->r_request_osdmap_epoch = p;
2088 p += 4;
2089 req->r_request_flags = p;
2090 p += 4;
2091 if (req->r_flags & CEPH_OSD_FLAG_WRITE)
2092 ceph_encode_timespec(p, mtime);
2093 p += sizeof(struct ceph_timespec);
2094 req->r_request_reassert_version = p;
2095 p += sizeof(struct ceph_eversion); /* will get filled in */
2097 /* oloc */
2098 ceph_encode_8(&p, 4);
2099 ceph_encode_8(&p, 4);
2100 ceph_encode_32(&p, 8 + 4 + 4);
2101 req->r_request_pool = p;
2102 p += 8;
2103 ceph_encode_32(&p, -1); /* preferred */
2104 ceph_encode_32(&p, 0); /* key len */
2106 ceph_encode_8(&p, 1);
2107 req->r_request_pgid = p;
2108 p += 8 + 4;
2109 ceph_encode_32(&p, -1); /* preferred */
2111 /* oid */
2112 ceph_encode_32(&p, req->r_oid_len);
2113 memcpy(p, req->r_oid, req->r_oid_len);
2114 dout("oid '%.*s' len %d\n", req->r_oid_len, req->r_oid, req->r_oid_len);
2115 p += req->r_oid_len;
2117 /* ops--can imply data */
2118 ceph_encode_16(&p, (u16)req->r_num_ops);
2119 data_len = 0;
2120 for (i = 0; i < req->r_num_ops; i++) {
2121 data_len += osd_req_encode_op(req, p, i);
2122 p += sizeof(struct ceph_osd_op);
2125 /* snaps */
2126 ceph_encode_64(&p, req->r_snapid);
2127 ceph_encode_64(&p, req->r_snapc ? req->r_snapc->seq : 0);
2128 ceph_encode_32(&p, req->r_snapc ? req->r_snapc->num_snaps : 0);
2129 if (req->r_snapc) {
2130 for (i = 0; i < snapc->num_snaps; i++) {
2131 ceph_encode_64(&p, req->r_snapc->snaps[i]);
2135 req->r_request_attempts = p;
2136 p += 4;
2138 /* data */
2139 if (flags & CEPH_OSD_FLAG_WRITE) {
2140 u16 data_off;
2143 * The header "data_off" is a hint to the receiver
2144 * allowing it to align received data into its
2145 * buffers such that there's no need to re-copy
2146 * it before writing it to disk (direct I/O).
2148 data_off = (u16) (off & 0xffff);
2149 req->r_request->hdr.data_off = cpu_to_le16(data_off);
2151 req->r_request->hdr.data_len = cpu_to_le32(data_len);
2153 BUG_ON(p > msg->front.iov_base + msg->front.iov_len);
2154 msg_size = p - msg->front.iov_base;
2155 msg->front.iov_len = msg_size;
2156 msg->hdr.front_len = cpu_to_le32(msg_size);
2158 dout("build_request msg_size was %d\n", (int)msg_size);
2160 EXPORT_SYMBOL(ceph_osdc_build_request);
2163 * Register request, send initial attempt.
2165 int ceph_osdc_start_request(struct ceph_osd_client *osdc,
2166 struct ceph_osd_request *req,
2167 bool nofail)
2169 int rc = 0;
2171 down_read(&osdc->map_sem);
2172 mutex_lock(&osdc->request_mutex);
2173 __register_request(osdc, req);
2174 req->r_sent = 0;
2175 req->r_got_reply = 0;
2176 rc = __map_request(osdc, req, 0);
2177 if (rc < 0) {
2178 if (nofail) {
2179 dout("osdc_start_request failed map, "
2180 " will retry %lld\n", req->r_tid);
2181 rc = 0;
2182 } else {
2183 __unregister_request(osdc, req);
2185 goto out_unlock;
2187 if (req->r_osd == NULL) {
2188 dout("send_request %p no up osds in pg\n", req);
2189 ceph_monc_request_next_osdmap(&osdc->client->monc);
2190 } else {
2191 __send_queued(osdc);
2193 rc = 0;
2194 out_unlock:
2195 mutex_unlock(&osdc->request_mutex);
2196 up_read(&osdc->map_sem);
2197 return rc;
2199 EXPORT_SYMBOL(ceph_osdc_start_request);
2202 * wait for a request to complete
2204 int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
2205 struct ceph_osd_request *req)
2207 int rc;
2209 rc = wait_for_completion_interruptible(&req->r_completion);
2210 if (rc < 0) {
2211 mutex_lock(&osdc->request_mutex);
2212 __cancel_request(req);
2213 __unregister_request(osdc, req);
2214 mutex_unlock(&osdc->request_mutex);
2215 complete_request(req);
2216 dout("wait_request tid %llu canceled/timed out\n", req->r_tid);
2217 return rc;
2220 dout("wait_request tid %llu result %d\n", req->r_tid, req->r_result);
2221 return req->r_result;
2223 EXPORT_SYMBOL(ceph_osdc_wait_request);
2226 * sync - wait for all in-flight requests to flush. avoid starvation.
2228 void ceph_osdc_sync(struct ceph_osd_client *osdc)
2230 struct ceph_osd_request *req;
2231 u64 last_tid, next_tid = 0;
2233 mutex_lock(&osdc->request_mutex);
2234 last_tid = osdc->last_tid;
2235 while (1) {
2236 req = __lookup_request_ge(osdc, next_tid);
2237 if (!req)
2238 break;
2239 if (req->r_tid > last_tid)
2240 break;
2242 next_tid = req->r_tid + 1;
2243 if ((req->r_flags & CEPH_OSD_FLAG_WRITE) == 0)
2244 continue;
2246 ceph_osdc_get_request(req);
2247 mutex_unlock(&osdc->request_mutex);
2248 dout("sync waiting on tid %llu (last is %llu)\n",
2249 req->r_tid, last_tid);
2250 wait_for_completion(&req->r_safe_completion);
2251 mutex_lock(&osdc->request_mutex);
2252 ceph_osdc_put_request(req);
2254 mutex_unlock(&osdc->request_mutex);
2255 dout("sync done (thru tid %llu)\n", last_tid);
2257 EXPORT_SYMBOL(ceph_osdc_sync);
2260 * Call all pending notify callbacks - for use after a watch is
2261 * unregistered, to make sure no more callbacks for it will be invoked
2263 extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
2265 flush_workqueue(osdc->notify_wq);
2267 EXPORT_SYMBOL(ceph_osdc_flush_notifies);
2271 * init, shutdown
2273 int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
2275 int err;
2277 dout("init\n");
2278 osdc->client = client;
2279 osdc->osdmap = NULL;
2280 init_rwsem(&osdc->map_sem);
2281 init_completion(&osdc->map_waiters);
2282 osdc->last_requested_map = 0;
2283 mutex_init(&osdc->request_mutex);
2284 osdc->last_tid = 0;
2285 osdc->osds = RB_ROOT;
2286 INIT_LIST_HEAD(&osdc->osd_lru);
2287 osdc->requests = RB_ROOT;
2288 INIT_LIST_HEAD(&osdc->req_lru);
2289 INIT_LIST_HEAD(&osdc->req_unsent);
2290 INIT_LIST_HEAD(&osdc->req_notarget);
2291 INIT_LIST_HEAD(&osdc->req_linger);
2292 osdc->num_requests = 0;
2293 INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
2294 INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
2295 spin_lock_init(&osdc->event_lock);
2296 osdc->event_tree = RB_ROOT;
2297 osdc->event_count = 0;
2299 schedule_delayed_work(&osdc->osds_timeout_work,
2300 round_jiffies_relative(osdc->client->options->osd_idle_ttl * HZ));
2302 err = -ENOMEM;
2303 osdc->req_mempool = mempool_create_kmalloc_pool(10,
2304 sizeof(struct ceph_osd_request));
2305 if (!osdc->req_mempool)
2306 goto out;
2308 err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
2309 OSD_OP_FRONT_LEN, 10, true,
2310 "osd_op");
2311 if (err < 0)
2312 goto out_mempool;
2313 err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
2314 OSD_OPREPLY_FRONT_LEN, 10, true,
2315 "osd_op_reply");
2316 if (err < 0)
2317 goto out_msgpool;
2319 err = -ENOMEM;
2320 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
2321 if (!osdc->notify_wq)
2322 goto out_msgpool;
2323 return 0;
2325 out_msgpool:
2326 ceph_msgpool_destroy(&osdc->msgpool_op);
2327 out_mempool:
2328 mempool_destroy(osdc->req_mempool);
2329 out:
2330 return err;
2333 void ceph_osdc_stop(struct ceph_osd_client *osdc)
2335 flush_workqueue(osdc->notify_wq);
2336 destroy_workqueue(osdc->notify_wq);
2337 cancel_delayed_work_sync(&osdc->timeout_work);
2338 cancel_delayed_work_sync(&osdc->osds_timeout_work);
2339 if (osdc->osdmap) {
2340 ceph_osdmap_destroy(osdc->osdmap);
2341 osdc->osdmap = NULL;
2343 remove_all_osds(osdc);
2344 mempool_destroy(osdc->req_mempool);
2345 ceph_msgpool_destroy(&osdc->msgpool_op);
2346 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
2350 * Read some contiguous pages. If we cross a stripe boundary, shorten
2351 * *plen. Return number of bytes read, or error.
2353 int ceph_osdc_readpages(struct ceph_osd_client *osdc,
2354 struct ceph_vino vino, struct ceph_file_layout *layout,
2355 u64 off, u64 *plen,
2356 u32 truncate_seq, u64 truncate_size,
2357 struct page **pages, int num_pages, int page_align)
2359 struct ceph_osd_request *req;
2360 int rc = 0;
2362 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino.ino,
2363 vino.snap, off, *plen);
2364 req = ceph_osdc_new_request(osdc, layout, vino, off, plen, 1,
2365 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
2366 NULL, truncate_seq, truncate_size,
2367 false);
2368 if (IS_ERR(req))
2369 return PTR_ERR(req);
2371 /* it may be a short read due to an object boundary */
2373 osd_req_op_extent_osd_data_pages(req, 0,
2374 pages, *plen, page_align, false, false);
2376 dout("readpages final extent is %llu~%llu (%llu bytes align %d)\n",
2377 off, *plen, *plen, page_align);
2379 ceph_osdc_build_request(req, off, NULL, vino.snap, NULL);
2381 rc = ceph_osdc_start_request(osdc, req, false);
2382 if (!rc)
2383 rc = ceph_osdc_wait_request(osdc, req);
2385 ceph_osdc_put_request(req);
2386 dout("readpages result %d\n", rc);
2387 return rc;
2389 EXPORT_SYMBOL(ceph_osdc_readpages);
2392 * do a synchronous write on N pages
2394 int ceph_osdc_writepages(struct ceph_osd_client *osdc, struct ceph_vino vino,
2395 struct ceph_file_layout *layout,
2396 struct ceph_snap_context *snapc,
2397 u64 off, u64 len,
2398 u32 truncate_seq, u64 truncate_size,
2399 struct timespec *mtime,
2400 struct page **pages, int num_pages)
2402 struct ceph_osd_request *req;
2403 int rc = 0;
2404 int page_align = off & ~PAGE_MASK;
2406 BUG_ON(vino.snap != CEPH_NOSNAP); /* snapshots aren't writeable */
2407 req = ceph_osdc_new_request(osdc, layout, vino, off, &len, 1,
2408 CEPH_OSD_OP_WRITE,
2409 CEPH_OSD_FLAG_ONDISK | CEPH_OSD_FLAG_WRITE,
2410 snapc, truncate_seq, truncate_size,
2411 true);
2412 if (IS_ERR(req))
2413 return PTR_ERR(req);
2415 /* it may be a short write due to an object boundary */
2416 osd_req_op_extent_osd_data_pages(req, 0, pages, len, page_align,
2417 false, false);
2418 dout("writepages %llu~%llu (%llu bytes)\n", off, len, len);
2420 ceph_osdc_build_request(req, off, snapc, CEPH_NOSNAP, mtime);
2422 rc = ceph_osdc_start_request(osdc, req, true);
2423 if (!rc)
2424 rc = ceph_osdc_wait_request(osdc, req);
2426 ceph_osdc_put_request(req);
2427 if (rc == 0)
2428 rc = len;
2429 dout("writepages result %d\n", rc);
2430 return rc;
2432 EXPORT_SYMBOL(ceph_osdc_writepages);
2434 int ceph_osdc_setup(void)
2436 BUG_ON(ceph_osd_request_cache);
2437 ceph_osd_request_cache = kmem_cache_create("ceph_osd_request",
2438 sizeof (struct ceph_osd_request),
2439 __alignof__(struct ceph_osd_request),
2440 0, NULL);
2442 return ceph_osd_request_cache ? 0 : -ENOMEM;
2444 EXPORT_SYMBOL(ceph_osdc_setup);
2446 void ceph_osdc_cleanup(void)
2448 BUG_ON(!ceph_osd_request_cache);
2449 kmem_cache_destroy(ceph_osd_request_cache);
2450 ceph_osd_request_cache = NULL;
2452 EXPORT_SYMBOL(ceph_osdc_cleanup);
2455 * handle incoming message
2457 static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
2459 struct ceph_osd *osd = con->private;
2460 struct ceph_osd_client *osdc;
2461 int type = le16_to_cpu(msg->hdr.type);
2463 if (!osd)
2464 goto out;
2465 osdc = osd->o_osdc;
2467 switch (type) {
2468 case CEPH_MSG_OSD_MAP:
2469 ceph_osdc_handle_map(osdc, msg);
2470 break;
2471 case CEPH_MSG_OSD_OPREPLY:
2472 handle_reply(osdc, msg, con);
2473 break;
2474 case CEPH_MSG_WATCH_NOTIFY:
2475 handle_watch_notify(osdc, msg);
2476 break;
2478 default:
2479 pr_err("received unknown message type %d %s\n", type,
2480 ceph_msg_type_name(type));
2482 out:
2483 ceph_msg_put(msg);
2487 * lookup and return message for incoming reply. set up reply message
2488 * pages.
2490 static struct ceph_msg *get_reply(struct ceph_connection *con,
2491 struct ceph_msg_header *hdr,
2492 int *skip)
2494 struct ceph_osd *osd = con->private;
2495 struct ceph_osd_client *osdc = osd->o_osdc;
2496 struct ceph_msg *m;
2497 struct ceph_osd_request *req;
2498 int front_len = le32_to_cpu(hdr->front_len);
2499 int data_len = le32_to_cpu(hdr->data_len);
2500 u64 tid;
2502 tid = le64_to_cpu(hdr->tid);
2503 mutex_lock(&osdc->request_mutex);
2504 req = __lookup_request(osdc, tid);
2505 if (!req) {
2506 *skip = 1;
2507 m = NULL;
2508 dout("get_reply unknown tid %llu from osd%d\n", tid,
2509 osd->o_osd);
2510 goto out;
2513 if (req->r_reply->con)
2514 dout("%s revoking msg %p from old con %p\n", __func__,
2515 req->r_reply, req->r_reply->con);
2516 ceph_msg_revoke_incoming(req->r_reply);
2518 if (front_len > req->r_reply->front_alloc_len) {
2519 pr_warning("get_reply front %d > preallocated %d (%u#%llu)\n",
2520 front_len, req->r_reply->front_alloc_len,
2521 (unsigned int)con->peer_name.type,
2522 le64_to_cpu(con->peer_name.num));
2523 m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front_len, GFP_NOFS,
2524 false);
2525 if (!m)
2526 goto out;
2527 ceph_msg_put(req->r_reply);
2528 req->r_reply = m;
2530 m = ceph_msg_get(req->r_reply);
2532 if (data_len > 0) {
2533 struct ceph_osd_data *osd_data;
2536 * XXX This is assuming there is only one op containing
2537 * XXX page data. Probably OK for reads, but this
2538 * XXX ought to be done more generally.
2540 osd_data = osd_req_op_extent_osd_data(req, 0);
2541 if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
2542 if (osd_data->pages &&
2543 unlikely(osd_data->length < data_len)) {
2545 pr_warning("tid %lld reply has %d bytes "
2546 "we had only %llu bytes ready\n",
2547 tid, data_len, osd_data->length);
2548 *skip = 1;
2549 ceph_msg_put(m);
2550 m = NULL;
2551 goto out;
2555 *skip = 0;
2556 dout("get_reply tid %lld %p\n", tid, m);
2558 out:
2559 mutex_unlock(&osdc->request_mutex);
2560 return m;
2564 static struct ceph_msg *alloc_msg(struct ceph_connection *con,
2565 struct ceph_msg_header *hdr,
2566 int *skip)
2568 struct ceph_osd *osd = con->private;
2569 int type = le16_to_cpu(hdr->type);
2570 int front = le32_to_cpu(hdr->front_len);
2572 *skip = 0;
2573 switch (type) {
2574 case CEPH_MSG_OSD_MAP:
2575 case CEPH_MSG_WATCH_NOTIFY:
2576 return ceph_msg_new(type, front, GFP_NOFS, false);
2577 case CEPH_MSG_OSD_OPREPLY:
2578 return get_reply(con, hdr, skip);
2579 default:
2580 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type,
2581 osd->o_osd);
2582 *skip = 1;
2583 return NULL;
2588 * Wrappers to refcount containing ceph_osd struct
2590 static struct ceph_connection *get_osd_con(struct ceph_connection *con)
2592 struct ceph_osd *osd = con->private;
2593 if (get_osd(osd))
2594 return con;
2595 return NULL;
2598 static void put_osd_con(struct ceph_connection *con)
2600 struct ceph_osd *osd = con->private;
2601 put_osd(osd);
2605 * authentication
2608 * Note: returned pointer is the address of a structure that's
2609 * managed separately. Caller must *not* attempt to free it.
2611 static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
2612 int *proto, int force_new)
2614 struct ceph_osd *o = con->private;
2615 struct ceph_osd_client *osdc = o->o_osdc;
2616 struct ceph_auth_client *ac = osdc->client->monc.auth;
2617 struct ceph_auth_handshake *auth = &o->o_auth;
2619 if (force_new && auth->authorizer) {
2620 ceph_auth_destroy_authorizer(ac, auth->authorizer);
2621 auth->authorizer = NULL;
2623 if (!auth->authorizer) {
2624 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
2625 auth);
2626 if (ret)
2627 return ERR_PTR(ret);
2628 } else {
2629 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
2630 auth);
2631 if (ret)
2632 return ERR_PTR(ret);
2634 *proto = ac->protocol;
2636 return auth;
2640 static int verify_authorizer_reply(struct ceph_connection *con, int len)
2642 struct ceph_osd *o = con->private;
2643 struct ceph_osd_client *osdc = o->o_osdc;
2644 struct ceph_auth_client *ac = osdc->client->monc.auth;
2646 return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer, len);
2649 static int invalidate_authorizer(struct ceph_connection *con)
2651 struct ceph_osd *o = con->private;
2652 struct ceph_osd_client *osdc = o->o_osdc;
2653 struct ceph_auth_client *ac = osdc->client->monc.auth;
2655 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
2656 return ceph_monc_validate_auth(&osdc->client->monc);
2659 static const struct ceph_connection_operations osd_con_ops = {
2660 .get = get_osd_con,
2661 .put = put_osd_con,
2662 .dispatch = dispatch,
2663 .get_authorizer = get_authorizer,
2664 .verify_authorizer_reply = verify_authorizer_reply,
2665 .invalidate_authorizer = invalidate_authorizer,
2666 .alloc_msg = alloc_msg,
2667 .fault = osd_reset,