2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/module.h>
6 #include <linux/highmem.h>
8 #include <linux/pagemap.h>
9 #include <linux/slab.h>
10 #include <linux/uaccess.h>
12 #include <linux/bio.h>
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_request(struct ceph_osd_client
*osdc
,
34 struct ceph_osd_request
*req
);
35 static void __unregister_linger_request(struct ceph_osd_client
*osdc
,
36 struct ceph_osd_request
*req
);
37 static void __enqueue_request(struct ceph_osd_request
*req
);
38 static void __send_request(struct ceph_osd_client
*osdc
,
39 struct ceph_osd_request
*req
);
42 * Implement client access to distributed object storage cluster.
44 * All data objects are stored within a cluster/cloud of OSDs, or
45 * "object storage devices." (Note that Ceph OSDs have _nothing_ to
46 * do with the T10 OSD extensions to SCSI.) Ceph OSDs are simply
47 * remote daemons serving up and coordinating consistent and safe
50 * Cluster membership and the mapping of data objects onto storage devices
51 * are described by the osd map.
53 * We keep track of pending OSD requests (read, write), resubmit
54 * requests to different OSDs when the cluster topology/data layout
55 * change, or retry the affected requests when the communications
56 * channel with an OSD is reset.
60 * calculate the mapping of a file extent onto an object, and fill out the
61 * request accordingly. shorten extent as necessary if it crosses an
64 * fill osd op in request message.
66 static int calc_layout(struct ceph_file_layout
*layout
, u64 off
, u64
*plen
,
67 u64
*objnum
, u64
*objoff
, u64
*objlen
)
73 r
= ceph_calc_file_object_mapping(layout
, off
, orig_len
, objnum
,
77 if (*objlen
< orig_len
) {
79 dout(" skipping last %llu, final file extent %llu~%llu\n",
80 orig_len
- *plen
, off
, *plen
);
83 dout("calc_layout objnum=%llx %llu~%llu\n", *objnum
, *objoff
, *objlen
);
88 static void ceph_osd_data_init(struct ceph_osd_data
*osd_data
)
90 memset(osd_data
, 0, sizeof (*osd_data
));
91 osd_data
->type
= CEPH_OSD_DATA_TYPE_NONE
;
94 static void ceph_osd_data_pages_init(struct ceph_osd_data
*osd_data
,
95 struct page
**pages
, u64 length
, u32 alignment
,
96 bool pages_from_pool
, bool own_pages
)
98 osd_data
->type
= CEPH_OSD_DATA_TYPE_PAGES
;
99 osd_data
->pages
= pages
;
100 osd_data
->length
= length
;
101 osd_data
->alignment
= alignment
;
102 osd_data
->pages_from_pool
= pages_from_pool
;
103 osd_data
->own_pages
= own_pages
;
106 static void ceph_osd_data_pagelist_init(struct ceph_osd_data
*osd_data
,
107 struct ceph_pagelist
*pagelist
)
109 osd_data
->type
= CEPH_OSD_DATA_TYPE_PAGELIST
;
110 osd_data
->pagelist
= pagelist
;
114 static void ceph_osd_data_bio_init(struct ceph_osd_data
*osd_data
,
115 struct bio
*bio
, size_t bio_length
)
117 osd_data
->type
= CEPH_OSD_DATA_TYPE_BIO
;
119 osd_data
->bio_length
= bio_length
;
121 #endif /* CONFIG_BLOCK */
123 #define osd_req_op_data(oreq, whch, typ, fld) \
125 struct ceph_osd_request *__oreq = (oreq); \
126 unsigned int __whch = (whch); \
127 BUG_ON(__whch >= __oreq->r_num_ops); \
128 &__oreq->r_ops[__whch].typ.fld; \
131 static struct ceph_osd_data
*
132 osd_req_op_raw_data_in(struct ceph_osd_request
*osd_req
, unsigned int which
)
134 BUG_ON(which
>= osd_req
->r_num_ops
);
136 return &osd_req
->r_ops
[which
].raw_data_in
;
139 struct ceph_osd_data
*
140 osd_req_op_extent_osd_data(struct ceph_osd_request
*osd_req
,
143 return osd_req_op_data(osd_req
, which
, extent
, osd_data
);
145 EXPORT_SYMBOL(osd_req_op_extent_osd_data
);
147 struct ceph_osd_data
*
148 osd_req_op_cls_response_data(struct ceph_osd_request
*osd_req
,
151 return osd_req_op_data(osd_req
, which
, cls
, response_data
);
153 EXPORT_SYMBOL(osd_req_op_cls_response_data
); /* ??? */
155 void osd_req_op_raw_data_in_pages(struct ceph_osd_request
*osd_req
,
156 unsigned int which
, struct page
**pages
,
157 u64 length
, u32 alignment
,
158 bool pages_from_pool
, bool own_pages
)
160 struct ceph_osd_data
*osd_data
;
162 osd_data
= osd_req_op_raw_data_in(osd_req
, which
);
163 ceph_osd_data_pages_init(osd_data
, pages
, length
, alignment
,
164 pages_from_pool
, own_pages
);
166 EXPORT_SYMBOL(osd_req_op_raw_data_in_pages
);
168 void osd_req_op_extent_osd_data_pages(struct ceph_osd_request
*osd_req
,
169 unsigned int which
, struct page
**pages
,
170 u64 length
, u32 alignment
,
171 bool pages_from_pool
, bool own_pages
)
173 struct ceph_osd_data
*osd_data
;
175 osd_data
= osd_req_op_data(osd_req
, which
, extent
, osd_data
);
176 ceph_osd_data_pages_init(osd_data
, pages
, length
, alignment
,
177 pages_from_pool
, own_pages
);
179 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pages
);
181 void osd_req_op_extent_osd_data_pagelist(struct ceph_osd_request
*osd_req
,
182 unsigned int which
, struct ceph_pagelist
*pagelist
)
184 struct ceph_osd_data
*osd_data
;
186 osd_data
= osd_req_op_data(osd_req
, which
, extent
, osd_data
);
187 ceph_osd_data_pagelist_init(osd_data
, pagelist
);
189 EXPORT_SYMBOL(osd_req_op_extent_osd_data_pagelist
);
192 void osd_req_op_extent_osd_data_bio(struct ceph_osd_request
*osd_req
,
193 unsigned int which
, struct bio
*bio
, size_t bio_length
)
195 struct ceph_osd_data
*osd_data
;
197 osd_data
= osd_req_op_data(osd_req
, which
, extent
, osd_data
);
198 ceph_osd_data_bio_init(osd_data
, bio
, bio_length
);
200 EXPORT_SYMBOL(osd_req_op_extent_osd_data_bio
);
201 #endif /* CONFIG_BLOCK */
203 static void osd_req_op_cls_request_info_pagelist(
204 struct ceph_osd_request
*osd_req
,
205 unsigned int which
, struct ceph_pagelist
*pagelist
)
207 struct ceph_osd_data
*osd_data
;
209 osd_data
= osd_req_op_data(osd_req
, which
, cls
, request_info
);
210 ceph_osd_data_pagelist_init(osd_data
, pagelist
);
213 void osd_req_op_cls_request_data_pagelist(
214 struct ceph_osd_request
*osd_req
,
215 unsigned int which
, struct ceph_pagelist
*pagelist
)
217 struct ceph_osd_data
*osd_data
;
219 osd_data
= osd_req_op_data(osd_req
, which
, cls
, request_data
);
220 ceph_osd_data_pagelist_init(osd_data
, pagelist
);
222 EXPORT_SYMBOL(osd_req_op_cls_request_data_pagelist
);
224 void osd_req_op_cls_request_data_pages(struct ceph_osd_request
*osd_req
,
225 unsigned int which
, struct page
**pages
, u64 length
,
226 u32 alignment
, bool pages_from_pool
, bool own_pages
)
228 struct ceph_osd_data
*osd_data
;
230 osd_data
= osd_req_op_data(osd_req
, which
, cls
, request_data
);
231 ceph_osd_data_pages_init(osd_data
, pages
, length
, alignment
,
232 pages_from_pool
, own_pages
);
234 EXPORT_SYMBOL(osd_req_op_cls_request_data_pages
);
236 void osd_req_op_cls_response_data_pages(struct ceph_osd_request
*osd_req
,
237 unsigned int which
, struct page
**pages
, u64 length
,
238 u32 alignment
, bool pages_from_pool
, bool own_pages
)
240 struct ceph_osd_data
*osd_data
;
242 osd_data
= osd_req_op_data(osd_req
, which
, cls
, response_data
);
243 ceph_osd_data_pages_init(osd_data
, pages
, length
, alignment
,
244 pages_from_pool
, own_pages
);
246 EXPORT_SYMBOL(osd_req_op_cls_response_data_pages
);
248 static u64
ceph_osd_data_length(struct ceph_osd_data
*osd_data
)
250 switch (osd_data
->type
) {
251 case CEPH_OSD_DATA_TYPE_NONE
:
253 case CEPH_OSD_DATA_TYPE_PAGES
:
254 return osd_data
->length
;
255 case CEPH_OSD_DATA_TYPE_PAGELIST
:
256 return (u64
)osd_data
->pagelist
->length
;
258 case CEPH_OSD_DATA_TYPE_BIO
:
259 return (u64
)osd_data
->bio_length
;
260 #endif /* CONFIG_BLOCK */
262 WARN(true, "unrecognized data type %d\n", (int)osd_data
->type
);
267 static void ceph_osd_data_release(struct ceph_osd_data
*osd_data
)
269 if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGES
&& osd_data
->own_pages
) {
272 num_pages
= calc_pages_for((u64
)osd_data
->alignment
,
273 (u64
)osd_data
->length
);
274 ceph_release_page_vector(osd_data
->pages
, num_pages
);
276 ceph_osd_data_init(osd_data
);
279 static void osd_req_op_data_release(struct ceph_osd_request
*osd_req
,
282 struct ceph_osd_req_op
*op
;
284 BUG_ON(which
>= osd_req
->r_num_ops
);
285 op
= &osd_req
->r_ops
[which
];
288 case CEPH_OSD_OP_READ
:
289 case CEPH_OSD_OP_WRITE
:
290 case CEPH_OSD_OP_WRITEFULL
:
291 ceph_osd_data_release(&op
->extent
.osd_data
);
293 case CEPH_OSD_OP_CALL
:
294 ceph_osd_data_release(&op
->cls
.request_info
);
295 ceph_osd_data_release(&op
->cls
.request_data
);
296 ceph_osd_data_release(&op
->cls
.response_data
);
298 case CEPH_OSD_OP_SETXATTR
:
299 case CEPH_OSD_OP_CMPXATTR
:
300 ceph_osd_data_release(&op
->xattr
.osd_data
);
302 case CEPH_OSD_OP_STAT
:
303 ceph_osd_data_release(&op
->raw_data_in
);
313 static void ceph_osdc_release_request(struct kref
*kref
)
315 struct ceph_osd_request
*req
= container_of(kref
,
316 struct ceph_osd_request
, r_kref
);
319 dout("%s %p (r_request %p r_reply %p)\n", __func__
, req
,
320 req
->r_request
, req
->r_reply
);
321 WARN_ON(!RB_EMPTY_NODE(&req
->r_node
));
322 WARN_ON(!list_empty(&req
->r_req_lru_item
));
323 WARN_ON(!list_empty(&req
->r_osd_item
));
324 WARN_ON(!list_empty(&req
->r_linger_item
));
325 WARN_ON(!list_empty(&req
->r_linger_osd_item
));
329 ceph_msg_put(req
->r_request
);
331 ceph_msg_revoke_incoming(req
->r_reply
);
332 ceph_msg_put(req
->r_reply
);
335 for (which
= 0; which
< req
->r_num_ops
; which
++)
336 osd_req_op_data_release(req
, which
);
338 ceph_put_snap_context(req
->r_snapc
);
340 mempool_free(req
, req
->r_osdc
->req_mempool
);
341 else if (req
->r_num_ops
<= CEPH_OSD_SLAB_OPS
)
342 kmem_cache_free(ceph_osd_request_cache
, req
);
347 void ceph_osdc_get_request(struct ceph_osd_request
*req
)
349 dout("%s %p (was %d)\n", __func__
, req
,
350 atomic_read(&req
->r_kref
.refcount
));
351 kref_get(&req
->r_kref
);
353 EXPORT_SYMBOL(ceph_osdc_get_request
);
355 void ceph_osdc_put_request(struct ceph_osd_request
*req
)
357 dout("%s %p (was %d)\n", __func__
, req
,
358 atomic_read(&req
->r_kref
.refcount
));
359 kref_put(&req
->r_kref
, ceph_osdc_release_request
);
361 EXPORT_SYMBOL(ceph_osdc_put_request
);
363 struct ceph_osd_request
*ceph_osdc_alloc_request(struct ceph_osd_client
*osdc
,
364 struct ceph_snap_context
*snapc
,
365 unsigned int num_ops
,
369 struct ceph_osd_request
*req
;
370 struct ceph_msg
*msg
;
374 BUG_ON(num_ops
> CEPH_OSD_SLAB_OPS
);
375 req
= mempool_alloc(osdc
->req_mempool
, gfp_flags
);
376 } else if (num_ops
<= CEPH_OSD_SLAB_OPS
) {
377 req
= kmem_cache_alloc(ceph_osd_request_cache
, gfp_flags
);
379 BUG_ON(num_ops
> CEPH_OSD_MAX_OPS
);
380 req
= kmalloc(sizeof(*req
) + num_ops
* sizeof(req
->r_ops
[0]),
386 /* req only, each op is zeroed in _osd_req_op_init() */
387 memset(req
, 0, sizeof(*req
));
390 req
->r_mempool
= use_mempool
;
391 req
->r_num_ops
= num_ops
;
393 kref_init(&req
->r_kref
);
394 init_completion(&req
->r_completion
);
395 init_completion(&req
->r_safe_completion
);
396 RB_CLEAR_NODE(&req
->r_node
);
397 INIT_LIST_HEAD(&req
->r_unsafe_item
);
398 INIT_LIST_HEAD(&req
->r_linger_item
);
399 INIT_LIST_HEAD(&req
->r_linger_osd_item
);
400 INIT_LIST_HEAD(&req
->r_req_lru_item
);
401 INIT_LIST_HEAD(&req
->r_osd_item
);
403 req
->r_base_oloc
.pool
= -1;
404 req
->r_target_oloc
.pool
= -1;
406 msg_size
= OSD_OPREPLY_FRONT_LEN
;
407 if (num_ops
> CEPH_OSD_SLAB_OPS
) {
408 /* ceph_osd_op and rval */
409 msg_size
+= (num_ops
- CEPH_OSD_SLAB_OPS
) *
410 (sizeof(struct ceph_osd_op
) + 4);
413 /* create reply message */
415 msg
= ceph_msgpool_get(&osdc
->msgpool_op_reply
, 0);
417 msg
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
, msg_size
,
420 ceph_osdc_put_request(req
);
425 msg_size
= 4 + 4 + 4; /* client_inc, osdmap_epoch, flags */
426 msg_size
+= 4 + 4 + 4 + 8; /* mtime, reassert_version */
427 msg_size
+= 2 + 4 + 8 + 4 + 4; /* oloc */
428 msg_size
+= 1 + 8 + 4 + 4; /* pgid */
429 msg_size
+= 4 + CEPH_MAX_OID_NAME_LEN
; /* oid */
430 msg_size
+= 2 + num_ops
* sizeof(struct ceph_osd_op
);
431 msg_size
+= 8; /* snapid */
432 msg_size
+= 8; /* snap_seq */
433 msg_size
+= 4 + 8 * (snapc
? snapc
->num_snaps
: 0); /* snaps */
434 msg_size
+= 4; /* retry_attempt */
436 /* create request message; allow space for oid */
438 msg
= ceph_msgpool_get(&osdc
->msgpool_op
, 0);
440 msg
= ceph_msg_new(CEPH_MSG_OSD_OP
, msg_size
, gfp_flags
, true);
442 ceph_osdc_put_request(req
);
446 memset(msg
->front
.iov_base
, 0, msg
->front
.iov_len
);
448 req
->r_request
= msg
;
452 EXPORT_SYMBOL(ceph_osdc_alloc_request
);
454 static bool osd_req_opcode_valid(u16 opcode
)
457 #define GENERATE_CASE(op, opcode, str) case CEPH_OSD_OP_##op: return true;
458 __CEPH_FORALL_OSD_OPS(GENERATE_CASE
)
466 * This is an osd op init function for opcodes that have no data or
467 * other information associated with them. It also serves as a
468 * common init routine for all the other init functions, below.
470 static struct ceph_osd_req_op
*
471 _osd_req_op_init(struct ceph_osd_request
*osd_req
, unsigned int which
,
472 u16 opcode
, u32 flags
)
474 struct ceph_osd_req_op
*op
;
476 BUG_ON(which
>= osd_req
->r_num_ops
);
477 BUG_ON(!osd_req_opcode_valid(opcode
));
479 op
= &osd_req
->r_ops
[which
];
480 memset(op
, 0, sizeof (*op
));
487 void osd_req_op_init(struct ceph_osd_request
*osd_req
,
488 unsigned int which
, u16 opcode
, u32 flags
)
490 (void)_osd_req_op_init(osd_req
, which
, opcode
, flags
);
492 EXPORT_SYMBOL(osd_req_op_init
);
494 void osd_req_op_extent_init(struct ceph_osd_request
*osd_req
,
495 unsigned int which
, u16 opcode
,
496 u64 offset
, u64 length
,
497 u64 truncate_size
, u32 truncate_seq
)
499 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
501 size_t payload_len
= 0;
503 BUG_ON(opcode
!= CEPH_OSD_OP_READ
&& opcode
!= CEPH_OSD_OP_WRITE
&&
504 opcode
!= CEPH_OSD_OP_WRITEFULL
&& opcode
!= CEPH_OSD_OP_ZERO
&&
505 opcode
!= CEPH_OSD_OP_TRUNCATE
);
507 op
->extent
.offset
= offset
;
508 op
->extent
.length
= length
;
509 op
->extent
.truncate_size
= truncate_size
;
510 op
->extent
.truncate_seq
= truncate_seq
;
511 if (opcode
== CEPH_OSD_OP_WRITE
|| opcode
== CEPH_OSD_OP_WRITEFULL
)
512 payload_len
+= length
;
514 op
->indata_len
= payload_len
;
516 EXPORT_SYMBOL(osd_req_op_extent_init
);
518 void osd_req_op_extent_update(struct ceph_osd_request
*osd_req
,
519 unsigned int which
, u64 length
)
521 struct ceph_osd_req_op
*op
;
524 BUG_ON(which
>= osd_req
->r_num_ops
);
525 op
= &osd_req
->r_ops
[which
];
526 previous
= op
->extent
.length
;
528 if (length
== previous
)
529 return; /* Nothing to do */
530 BUG_ON(length
> previous
);
532 op
->extent
.length
= length
;
533 op
->indata_len
-= previous
- length
;
535 EXPORT_SYMBOL(osd_req_op_extent_update
);
537 void osd_req_op_extent_dup_last(struct ceph_osd_request
*osd_req
,
538 unsigned int which
, u64 offset_inc
)
540 struct ceph_osd_req_op
*op
, *prev_op
;
542 BUG_ON(which
+ 1 >= osd_req
->r_num_ops
);
544 prev_op
= &osd_req
->r_ops
[which
];
545 op
= _osd_req_op_init(osd_req
, which
+ 1, prev_op
->op
, prev_op
->flags
);
546 /* dup previous one */
547 op
->indata_len
= prev_op
->indata_len
;
548 op
->outdata_len
= prev_op
->outdata_len
;
549 op
->extent
= prev_op
->extent
;
551 op
->extent
.offset
+= offset_inc
;
552 op
->extent
.length
-= offset_inc
;
554 if (op
->op
== CEPH_OSD_OP_WRITE
|| op
->op
== CEPH_OSD_OP_WRITEFULL
)
555 op
->indata_len
-= offset_inc
;
557 EXPORT_SYMBOL(osd_req_op_extent_dup_last
);
559 void osd_req_op_cls_init(struct ceph_osd_request
*osd_req
, unsigned int which
,
560 u16 opcode
, const char *class, const char *method
)
562 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
564 struct ceph_pagelist
*pagelist
;
565 size_t payload_len
= 0;
568 BUG_ON(opcode
!= CEPH_OSD_OP_CALL
);
570 pagelist
= kmalloc(sizeof (*pagelist
), GFP_NOFS
);
572 ceph_pagelist_init(pagelist
);
574 op
->cls
.class_name
= class;
575 size
= strlen(class);
576 BUG_ON(size
> (size_t) U8_MAX
);
577 op
->cls
.class_len
= size
;
578 ceph_pagelist_append(pagelist
, class, size
);
581 op
->cls
.method_name
= method
;
582 size
= strlen(method
);
583 BUG_ON(size
> (size_t) U8_MAX
);
584 op
->cls
.method_len
= size
;
585 ceph_pagelist_append(pagelist
, method
, size
);
588 osd_req_op_cls_request_info_pagelist(osd_req
, which
, pagelist
);
590 op
->cls
.argc
= 0; /* currently unused */
592 op
->indata_len
= payload_len
;
594 EXPORT_SYMBOL(osd_req_op_cls_init
);
596 int osd_req_op_xattr_init(struct ceph_osd_request
*osd_req
, unsigned int which
,
597 u16 opcode
, const char *name
, const void *value
,
598 size_t size
, u8 cmp_op
, u8 cmp_mode
)
600 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
602 struct ceph_pagelist
*pagelist
;
605 BUG_ON(opcode
!= CEPH_OSD_OP_SETXATTR
&& opcode
!= CEPH_OSD_OP_CMPXATTR
);
607 pagelist
= kmalloc(sizeof(*pagelist
), GFP_NOFS
);
611 ceph_pagelist_init(pagelist
);
613 payload_len
= strlen(name
);
614 op
->xattr
.name_len
= payload_len
;
615 ceph_pagelist_append(pagelist
, name
, payload_len
);
617 op
->xattr
.value_len
= size
;
618 ceph_pagelist_append(pagelist
, value
, size
);
621 op
->xattr
.cmp_op
= cmp_op
;
622 op
->xattr
.cmp_mode
= cmp_mode
;
624 ceph_osd_data_pagelist_init(&op
->xattr
.osd_data
, pagelist
);
625 op
->indata_len
= payload_len
;
628 EXPORT_SYMBOL(osd_req_op_xattr_init
);
630 void osd_req_op_watch_init(struct ceph_osd_request
*osd_req
,
631 unsigned int which
, u16 opcode
,
632 u64 cookie
, u64 version
, int flag
)
634 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
637 BUG_ON(opcode
!= CEPH_OSD_OP_NOTIFY_ACK
&& opcode
!= CEPH_OSD_OP_WATCH
);
639 op
->watch
.cookie
= cookie
;
640 op
->watch
.ver
= version
;
641 if (opcode
== CEPH_OSD_OP_WATCH
&& flag
)
642 op
->watch
.flag
= (u8
)1;
644 EXPORT_SYMBOL(osd_req_op_watch_init
);
646 void osd_req_op_alloc_hint_init(struct ceph_osd_request
*osd_req
,
648 u64 expected_object_size
,
649 u64 expected_write_size
)
651 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
652 CEPH_OSD_OP_SETALLOCHINT
,
655 op
->alloc_hint
.expected_object_size
= expected_object_size
;
656 op
->alloc_hint
.expected_write_size
= expected_write_size
;
659 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
660 * not worth a feature bit. Set FAILOK per-op flag to make
661 * sure older osds don't trip over an unsupported opcode.
663 op
->flags
|= CEPH_OSD_OP_FLAG_FAILOK
;
665 EXPORT_SYMBOL(osd_req_op_alloc_hint_init
);
667 static void ceph_osdc_msg_data_add(struct ceph_msg
*msg
,
668 struct ceph_osd_data
*osd_data
)
670 u64 length
= ceph_osd_data_length(osd_data
);
672 if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGES
) {
673 BUG_ON(length
> (u64
) SIZE_MAX
);
675 ceph_msg_data_add_pages(msg
, osd_data
->pages
,
676 length
, osd_data
->alignment
);
677 } else if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGELIST
) {
679 ceph_msg_data_add_pagelist(msg
, osd_data
->pagelist
);
681 } else if (osd_data
->type
== CEPH_OSD_DATA_TYPE_BIO
) {
682 ceph_msg_data_add_bio(msg
, osd_data
->bio
, length
);
685 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_NONE
);
689 static u64
osd_req_encode_op(struct ceph_osd_request
*req
,
690 struct ceph_osd_op
*dst
, unsigned int which
)
692 struct ceph_osd_req_op
*src
;
693 struct ceph_osd_data
*osd_data
;
694 u64 request_data_len
= 0;
697 BUG_ON(which
>= req
->r_num_ops
);
698 src
= &req
->r_ops
[which
];
699 if (WARN_ON(!osd_req_opcode_valid(src
->op
))) {
700 pr_err("unrecognized osd opcode %d\n", src
->op
);
706 case CEPH_OSD_OP_STAT
:
707 osd_data
= &src
->raw_data_in
;
708 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
710 case CEPH_OSD_OP_READ
:
711 case CEPH_OSD_OP_WRITE
:
712 case CEPH_OSD_OP_WRITEFULL
:
713 case CEPH_OSD_OP_ZERO
:
714 case CEPH_OSD_OP_TRUNCATE
:
715 if (src
->op
== CEPH_OSD_OP_WRITE
||
716 src
->op
== CEPH_OSD_OP_WRITEFULL
)
717 request_data_len
= src
->extent
.length
;
718 dst
->extent
.offset
= cpu_to_le64(src
->extent
.offset
);
719 dst
->extent
.length
= cpu_to_le64(src
->extent
.length
);
720 dst
->extent
.truncate_size
=
721 cpu_to_le64(src
->extent
.truncate_size
);
722 dst
->extent
.truncate_seq
=
723 cpu_to_le32(src
->extent
.truncate_seq
);
724 osd_data
= &src
->extent
.osd_data
;
725 if (src
->op
== CEPH_OSD_OP_WRITE
||
726 src
->op
== CEPH_OSD_OP_WRITEFULL
)
727 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
729 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
731 case CEPH_OSD_OP_CALL
:
732 dst
->cls
.class_len
= src
->cls
.class_len
;
733 dst
->cls
.method_len
= src
->cls
.method_len
;
734 osd_data
= &src
->cls
.request_info
;
735 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
736 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_PAGELIST
);
737 request_data_len
= osd_data
->pagelist
->length
;
739 osd_data
= &src
->cls
.request_data
;
740 data_length
= ceph_osd_data_length(osd_data
);
742 BUG_ON(osd_data
->type
== CEPH_OSD_DATA_TYPE_NONE
);
743 dst
->cls
.indata_len
= cpu_to_le32(data_length
);
744 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
745 src
->indata_len
+= data_length
;
746 request_data_len
+= data_length
;
748 osd_data
= &src
->cls
.response_data
;
749 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
751 case CEPH_OSD_OP_STARTSYNC
:
753 case CEPH_OSD_OP_NOTIFY_ACK
:
754 case CEPH_OSD_OP_WATCH
:
755 dst
->watch
.cookie
= cpu_to_le64(src
->watch
.cookie
);
756 dst
->watch
.ver
= cpu_to_le64(src
->watch
.ver
);
757 dst
->watch
.flag
= src
->watch
.flag
;
759 case CEPH_OSD_OP_SETALLOCHINT
:
760 dst
->alloc_hint
.expected_object_size
=
761 cpu_to_le64(src
->alloc_hint
.expected_object_size
);
762 dst
->alloc_hint
.expected_write_size
=
763 cpu_to_le64(src
->alloc_hint
.expected_write_size
);
765 case CEPH_OSD_OP_SETXATTR
:
766 case CEPH_OSD_OP_CMPXATTR
:
767 dst
->xattr
.name_len
= cpu_to_le32(src
->xattr
.name_len
);
768 dst
->xattr
.value_len
= cpu_to_le32(src
->xattr
.value_len
);
769 dst
->xattr
.cmp_op
= src
->xattr
.cmp_op
;
770 dst
->xattr
.cmp_mode
= src
->xattr
.cmp_mode
;
771 osd_data
= &src
->xattr
.osd_data
;
772 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
773 request_data_len
= osd_data
->pagelist
->length
;
775 case CEPH_OSD_OP_CREATE
:
776 case CEPH_OSD_OP_DELETE
:
779 pr_err("unsupported osd opcode %s\n",
780 ceph_osd_op_name(src
->op
));
786 dst
->op
= cpu_to_le16(src
->op
);
787 dst
->flags
= cpu_to_le32(src
->flags
);
788 dst
->payload_len
= cpu_to_le32(src
->indata_len
);
790 return request_data_len
;
794 * build new request AND message, calculate layout, and adjust file
797 * if the file was recently truncated, we include information about its
798 * old and new size so that the object can be updated appropriately. (we
799 * avoid synchronously deleting truncated objects because it's slow.)
801 * if @do_sync, include a 'startsync' command so that the osd will flush
804 struct ceph_osd_request
*ceph_osdc_new_request(struct ceph_osd_client
*osdc
,
805 struct ceph_file_layout
*layout
,
806 struct ceph_vino vino
,
808 unsigned int which
, int num_ops
,
809 int opcode
, int flags
,
810 struct ceph_snap_context
*snapc
,
815 struct ceph_osd_request
*req
;
821 BUG_ON(opcode
!= CEPH_OSD_OP_READ
&& opcode
!= CEPH_OSD_OP_WRITE
&&
822 opcode
!= CEPH_OSD_OP_ZERO
&& opcode
!= CEPH_OSD_OP_TRUNCATE
&&
823 opcode
!= CEPH_OSD_OP_CREATE
&& opcode
!= CEPH_OSD_OP_DELETE
);
825 req
= ceph_osdc_alloc_request(osdc
, snapc
, num_ops
, use_mempool
,
828 return ERR_PTR(-ENOMEM
);
830 req
->r_flags
= flags
;
832 /* calculate max write size */
833 r
= calc_layout(layout
, off
, plen
, &objnum
, &objoff
, &objlen
);
835 ceph_osdc_put_request(req
);
839 if (opcode
== CEPH_OSD_OP_CREATE
|| opcode
== CEPH_OSD_OP_DELETE
) {
840 osd_req_op_init(req
, which
, opcode
, 0);
842 u32 object_size
= le32_to_cpu(layout
->fl_object_size
);
843 u32 object_base
= off
- objoff
;
844 if (!(truncate_seq
== 1 && truncate_size
== -1ULL)) {
845 if (truncate_size
<= object_base
) {
848 truncate_size
-= object_base
;
849 if (truncate_size
> object_size
)
850 truncate_size
= object_size
;
853 osd_req_op_extent_init(req
, which
, opcode
, objoff
, objlen
,
854 truncate_size
, truncate_seq
);
857 req
->r_base_oloc
.pool
= ceph_file_layout_pg_pool(*layout
);
859 snprintf(req
->r_base_oid
.name
, sizeof(req
->r_base_oid
.name
),
860 "%llx.%08llx", vino
.ino
, objnum
);
861 req
->r_base_oid
.name_len
= strlen(req
->r_base_oid
.name
);
865 EXPORT_SYMBOL(ceph_osdc_new_request
);
868 * We keep osd requests in an rbtree, sorted by ->r_tid.
870 static void __insert_request(struct ceph_osd_client
*osdc
,
871 struct ceph_osd_request
*new)
873 struct rb_node
**p
= &osdc
->requests
.rb_node
;
874 struct rb_node
*parent
= NULL
;
875 struct ceph_osd_request
*req
= NULL
;
879 req
= rb_entry(parent
, struct ceph_osd_request
, r_node
);
880 if (new->r_tid
< req
->r_tid
)
882 else if (new->r_tid
> req
->r_tid
)
888 rb_link_node(&new->r_node
, parent
, p
);
889 rb_insert_color(&new->r_node
, &osdc
->requests
);
892 static struct ceph_osd_request
*__lookup_request(struct ceph_osd_client
*osdc
,
895 struct ceph_osd_request
*req
;
896 struct rb_node
*n
= osdc
->requests
.rb_node
;
899 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
900 if (tid
< req
->r_tid
)
902 else if (tid
> req
->r_tid
)
910 static struct ceph_osd_request
*
911 __lookup_request_ge(struct ceph_osd_client
*osdc
,
914 struct ceph_osd_request
*req
;
915 struct rb_node
*n
= osdc
->requests
.rb_node
;
918 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
919 if (tid
< req
->r_tid
) {
923 } else if (tid
> req
->r_tid
) {
932 static void __kick_linger_request(struct ceph_osd_request
*req
)
934 struct ceph_osd_client
*osdc
= req
->r_osdc
;
935 struct ceph_osd
*osd
= req
->r_osd
;
938 * Linger requests need to be resent with a new tid to avoid
939 * the dup op detection logic on the OSDs. Achieve this with
940 * a re-register dance instead of open-coding.
942 ceph_osdc_get_request(req
);
943 if (!list_empty(&req
->r_linger_item
))
944 __unregister_linger_request(osdc
, req
);
946 __unregister_request(osdc
, req
);
947 __register_request(osdc
, req
);
948 ceph_osdc_put_request(req
);
951 * Unless request has been registered as both normal and
952 * lingering, __unregister{,_linger}_request clears r_osd.
953 * However, here we need to preserve r_osd to make sure we
954 * requeue on the same OSD.
956 WARN_ON(req
->r_osd
|| !osd
);
959 dout("%s requeueing %p tid %llu\n", __func__
, req
, req
->r_tid
);
960 __enqueue_request(req
);
964 * Resubmit requests pending on the given osd.
966 static void __kick_osd_requests(struct ceph_osd_client
*osdc
,
967 struct ceph_osd
*osd
)
969 struct ceph_osd_request
*req
, *nreq
;
971 LIST_HEAD(resend_linger
);
974 dout("%s osd%d\n", __func__
, osd
->o_osd
);
975 err
= __reset_osd(osdc
, osd
);
980 * Build up a list of requests to resend by traversing the
981 * osd's list of requests. Requests for a given object are
982 * sent in tid order, and that is also the order they're
983 * kept on this list. Therefore all requests that are in
984 * flight will be found first, followed by all requests that
985 * have not yet been sent. And to resend requests while
986 * preserving this order we will want to put any sent
987 * requests back on the front of the osd client's unsent
990 * So we build a separate ordered list of already-sent
991 * requests for the affected osd and splice it onto the
992 * front of the osd client's unsent list. Once we've seen a
993 * request that has not yet been sent we're done. Those
994 * requests are already sitting right where they belong.
996 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
) {
1000 if (!req
->r_linger
) {
1001 dout("%s requeueing %p tid %llu\n", __func__
, req
,
1003 list_move_tail(&req
->r_req_lru_item
, &resend
);
1004 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
1006 list_move_tail(&req
->r_req_lru_item
, &resend_linger
);
1009 list_splice(&resend
, &osdc
->req_unsent
);
1012 * Both registered and not yet registered linger requests are
1013 * enqueued with a new tid on the same OSD. We add/move them
1014 * to req_unsent/o_requests at the end to keep things in tid
1017 list_for_each_entry_safe(req
, nreq
, &osd
->o_linger_requests
,
1018 r_linger_osd_item
) {
1019 WARN_ON(!list_empty(&req
->r_req_lru_item
));
1020 __kick_linger_request(req
);
1023 list_for_each_entry_safe(req
, nreq
, &resend_linger
, r_req_lru_item
)
1024 __kick_linger_request(req
);
1028 * If the osd connection drops, we need to resubmit all requests.
1030 static void osd_reset(struct ceph_connection
*con
)
1032 struct ceph_osd
*osd
= con
->private;
1033 struct ceph_osd_client
*osdc
;
1037 dout("osd_reset osd%d\n", osd
->o_osd
);
1039 down_read(&osdc
->map_sem
);
1040 mutex_lock(&osdc
->request_mutex
);
1041 __kick_osd_requests(osdc
, osd
);
1042 __send_queued(osdc
);
1043 mutex_unlock(&osdc
->request_mutex
);
1044 up_read(&osdc
->map_sem
);
1048 * Track open sessions with osds.
1050 static struct ceph_osd
*create_osd(struct ceph_osd_client
*osdc
, int onum
)
1052 struct ceph_osd
*osd
;
1054 osd
= kzalloc(sizeof(*osd
), GFP_NOFS
);
1058 atomic_set(&osd
->o_ref
, 1);
1061 RB_CLEAR_NODE(&osd
->o_node
);
1062 INIT_LIST_HEAD(&osd
->o_requests
);
1063 INIT_LIST_HEAD(&osd
->o_linger_requests
);
1064 INIT_LIST_HEAD(&osd
->o_osd_lru
);
1065 osd
->o_incarnation
= 1;
1067 ceph_con_init(&osd
->o_con
, osd
, &osd_con_ops
, &osdc
->client
->msgr
);
1069 INIT_LIST_HEAD(&osd
->o_keepalive_item
);
1073 static struct ceph_osd
*get_osd(struct ceph_osd
*osd
)
1075 if (atomic_inc_not_zero(&osd
->o_ref
)) {
1076 dout("get_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
)-1,
1077 atomic_read(&osd
->o_ref
));
1080 dout("get_osd %p FAIL\n", osd
);
1085 static void put_osd(struct ceph_osd
*osd
)
1087 dout("put_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
),
1088 atomic_read(&osd
->o_ref
) - 1);
1089 if (atomic_dec_and_test(&osd
->o_ref
)) {
1090 struct ceph_auth_client
*ac
= osd
->o_osdc
->client
->monc
.auth
;
1092 if (osd
->o_auth
.authorizer
)
1093 ceph_auth_destroy_authorizer(ac
, osd
->o_auth
.authorizer
);
1099 * remove an osd from our map
1101 static void __remove_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1103 dout("%s %p osd%d\n", __func__
, osd
, osd
->o_osd
);
1104 WARN_ON(!list_empty(&osd
->o_requests
));
1105 WARN_ON(!list_empty(&osd
->o_linger_requests
));
1107 list_del_init(&osd
->o_osd_lru
);
1108 rb_erase(&osd
->o_node
, &osdc
->osds
);
1109 RB_CLEAR_NODE(&osd
->o_node
);
1112 static void remove_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1114 dout("%s %p osd%d\n", __func__
, osd
, osd
->o_osd
);
1116 if (!RB_EMPTY_NODE(&osd
->o_node
)) {
1117 ceph_con_close(&osd
->o_con
);
1118 __remove_osd(osdc
, osd
);
1123 static void remove_all_osds(struct ceph_osd_client
*osdc
)
1125 dout("%s %p\n", __func__
, osdc
);
1126 mutex_lock(&osdc
->request_mutex
);
1127 while (!RB_EMPTY_ROOT(&osdc
->osds
)) {
1128 struct ceph_osd
*osd
= rb_entry(rb_first(&osdc
->osds
),
1129 struct ceph_osd
, o_node
);
1130 remove_osd(osdc
, osd
);
1132 mutex_unlock(&osdc
->request_mutex
);
1135 static void __move_osd_to_lru(struct ceph_osd_client
*osdc
,
1136 struct ceph_osd
*osd
)
1138 dout("%s %p\n", __func__
, osd
);
1139 BUG_ON(!list_empty(&osd
->o_osd_lru
));
1141 list_add_tail(&osd
->o_osd_lru
, &osdc
->osd_lru
);
1142 osd
->lru_ttl
= jiffies
+ osdc
->client
->options
->osd_idle_ttl
;
1145 static void maybe_move_osd_to_lru(struct ceph_osd_client
*osdc
,
1146 struct ceph_osd
*osd
)
1148 dout("%s %p\n", __func__
, osd
);
1150 if (list_empty(&osd
->o_requests
) &&
1151 list_empty(&osd
->o_linger_requests
))
1152 __move_osd_to_lru(osdc
, osd
);
1155 static void __remove_osd_from_lru(struct ceph_osd
*osd
)
1157 dout("__remove_osd_from_lru %p\n", osd
);
1158 if (!list_empty(&osd
->o_osd_lru
))
1159 list_del_init(&osd
->o_osd_lru
);
1162 static void remove_old_osds(struct ceph_osd_client
*osdc
)
1164 struct ceph_osd
*osd
, *nosd
;
1166 dout("__remove_old_osds %p\n", osdc
);
1167 mutex_lock(&osdc
->request_mutex
);
1168 list_for_each_entry_safe(osd
, nosd
, &osdc
->osd_lru
, o_osd_lru
) {
1169 if (time_before(jiffies
, osd
->lru_ttl
))
1171 remove_osd(osdc
, osd
);
1173 mutex_unlock(&osdc
->request_mutex
);
1179 static int __reset_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1181 struct ceph_entity_addr
*peer_addr
;
1183 dout("__reset_osd %p osd%d\n", osd
, osd
->o_osd
);
1184 if (list_empty(&osd
->o_requests
) &&
1185 list_empty(&osd
->o_linger_requests
)) {
1186 remove_osd(osdc
, osd
);
1190 peer_addr
= &osdc
->osdmap
->osd_addr
[osd
->o_osd
];
1191 if (!memcmp(peer_addr
, &osd
->o_con
.peer_addr
, sizeof (*peer_addr
)) &&
1192 !ceph_con_opened(&osd
->o_con
)) {
1193 struct ceph_osd_request
*req
;
1195 dout("osd addr hasn't changed and connection never opened, "
1196 "letting msgr retry\n");
1197 /* touch each r_stamp for handle_timeout()'s benfit */
1198 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
)
1199 req
->r_stamp
= jiffies
;
1204 ceph_con_close(&osd
->o_con
);
1205 ceph_con_open(&osd
->o_con
, CEPH_ENTITY_TYPE_OSD
, osd
->o_osd
, peer_addr
);
1206 osd
->o_incarnation
++;
1211 static void __insert_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*new)
1213 struct rb_node
**p
= &osdc
->osds
.rb_node
;
1214 struct rb_node
*parent
= NULL
;
1215 struct ceph_osd
*osd
= NULL
;
1217 dout("__insert_osd %p osd%d\n", new, new->o_osd
);
1220 osd
= rb_entry(parent
, struct ceph_osd
, o_node
);
1221 if (new->o_osd
< osd
->o_osd
)
1223 else if (new->o_osd
> osd
->o_osd
)
1224 p
= &(*p
)->rb_right
;
1229 rb_link_node(&new->o_node
, parent
, p
);
1230 rb_insert_color(&new->o_node
, &osdc
->osds
);
1233 static struct ceph_osd
*__lookup_osd(struct ceph_osd_client
*osdc
, int o
)
1235 struct ceph_osd
*osd
;
1236 struct rb_node
*n
= osdc
->osds
.rb_node
;
1239 osd
= rb_entry(n
, struct ceph_osd
, o_node
);
1242 else if (o
> osd
->o_osd
)
1250 static void __schedule_osd_timeout(struct ceph_osd_client
*osdc
)
1252 schedule_delayed_work(&osdc
->timeout_work
,
1253 osdc
->client
->options
->osd_keepalive_timeout
);
1256 static void __cancel_osd_timeout(struct ceph_osd_client
*osdc
)
1258 cancel_delayed_work(&osdc
->timeout_work
);
1262 * Register request, assign tid. If this is the first request, set up
1263 * the timeout event.
1265 static void __register_request(struct ceph_osd_client
*osdc
,
1266 struct ceph_osd_request
*req
)
1268 req
->r_tid
= ++osdc
->last_tid
;
1269 req
->r_request
->hdr
.tid
= cpu_to_le64(req
->r_tid
);
1270 dout("__register_request %p tid %lld\n", req
, req
->r_tid
);
1271 __insert_request(osdc
, req
);
1272 ceph_osdc_get_request(req
);
1273 osdc
->num_requests
++;
1274 if (osdc
->num_requests
== 1) {
1275 dout(" first request, scheduling timeout\n");
1276 __schedule_osd_timeout(osdc
);
1281 * called under osdc->request_mutex
1283 static void __unregister_request(struct ceph_osd_client
*osdc
,
1284 struct ceph_osd_request
*req
)
1286 if (RB_EMPTY_NODE(&req
->r_node
)) {
1287 dout("__unregister_request %p tid %lld not registered\n",
1292 dout("__unregister_request %p tid %lld\n", req
, req
->r_tid
);
1293 rb_erase(&req
->r_node
, &osdc
->requests
);
1294 RB_CLEAR_NODE(&req
->r_node
);
1295 osdc
->num_requests
--;
1298 /* make sure the original request isn't in flight. */
1299 ceph_msg_revoke(req
->r_request
);
1301 list_del_init(&req
->r_osd_item
);
1302 maybe_move_osd_to_lru(osdc
, req
->r_osd
);
1303 if (list_empty(&req
->r_linger_osd_item
))
1307 list_del_init(&req
->r_req_lru_item
);
1308 ceph_osdc_put_request(req
);
1310 if (osdc
->num_requests
== 0) {
1311 dout(" no requests, canceling timeout\n");
1312 __cancel_osd_timeout(osdc
);
1317 * Cancel a previously queued request message
1319 static void __cancel_request(struct ceph_osd_request
*req
)
1321 if (req
->r_sent
&& req
->r_osd
) {
1322 ceph_msg_revoke(req
->r_request
);
1327 static void __register_linger_request(struct ceph_osd_client
*osdc
,
1328 struct ceph_osd_request
*req
)
1330 dout("%s %p tid %llu\n", __func__
, req
, req
->r_tid
);
1331 WARN_ON(!req
->r_linger
);
1333 ceph_osdc_get_request(req
);
1334 list_add_tail(&req
->r_linger_item
, &osdc
->req_linger
);
1336 list_add_tail(&req
->r_linger_osd_item
,
1337 &req
->r_osd
->o_linger_requests
);
1340 static void __unregister_linger_request(struct ceph_osd_client
*osdc
,
1341 struct ceph_osd_request
*req
)
1343 WARN_ON(!req
->r_linger
);
1345 if (list_empty(&req
->r_linger_item
)) {
1346 dout("%s %p tid %llu not registered\n", __func__
, req
,
1351 dout("%s %p tid %llu\n", __func__
, req
, req
->r_tid
);
1352 list_del_init(&req
->r_linger_item
);
1355 list_del_init(&req
->r_linger_osd_item
);
1356 maybe_move_osd_to_lru(osdc
, req
->r_osd
);
1357 if (list_empty(&req
->r_osd_item
))
1360 ceph_osdc_put_request(req
);
1363 void ceph_osdc_set_request_linger(struct ceph_osd_client
*osdc
,
1364 struct ceph_osd_request
*req
)
1366 if (!req
->r_linger
) {
1367 dout("set_request_linger %p\n", req
);
1371 EXPORT_SYMBOL(ceph_osdc_set_request_linger
);
1374 * Returns whether a request should be blocked from being sent
1375 * based on the current osdmap and osd_client settings.
1377 * Caller should hold map_sem for read.
1379 static bool __req_should_be_paused(struct ceph_osd_client
*osdc
,
1380 struct ceph_osd_request
*req
)
1382 bool pauserd
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSERD
);
1383 bool pausewr
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSEWR
) ||
1384 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
);
1385 return (req
->r_flags
& CEPH_OSD_FLAG_READ
&& pauserd
) ||
1386 (req
->r_flags
& CEPH_OSD_FLAG_WRITE
&& pausewr
);
1390 * Calculate mapping of a request to a PG. Takes tiering into account.
1392 static int __calc_request_pg(struct ceph_osdmap
*osdmap
,
1393 struct ceph_osd_request
*req
,
1394 struct ceph_pg
*pg_out
)
1396 bool need_check_tiering
;
1398 need_check_tiering
= false;
1399 if (req
->r_target_oloc
.pool
== -1) {
1400 req
->r_target_oloc
= req
->r_base_oloc
; /* struct */
1401 need_check_tiering
= true;
1403 if (req
->r_target_oid
.name_len
== 0) {
1404 ceph_oid_copy(&req
->r_target_oid
, &req
->r_base_oid
);
1405 need_check_tiering
= true;
1408 if (need_check_tiering
&&
1409 (req
->r_flags
& CEPH_OSD_FLAG_IGNORE_OVERLAY
) == 0) {
1410 struct ceph_pg_pool_info
*pi
;
1412 pi
= ceph_pg_pool_by_id(osdmap
, req
->r_target_oloc
.pool
);
1414 if ((req
->r_flags
& CEPH_OSD_FLAG_READ
) &&
1416 req
->r_target_oloc
.pool
= pi
->read_tier
;
1417 if ((req
->r_flags
& CEPH_OSD_FLAG_WRITE
) &&
1418 pi
->write_tier
>= 0)
1419 req
->r_target_oloc
.pool
= pi
->write_tier
;
1421 /* !pi is caught in ceph_oloc_oid_to_pg() */
1424 return ceph_oloc_oid_to_pg(osdmap
, &req
->r_target_oloc
,
1425 &req
->r_target_oid
, pg_out
);
1428 static void __enqueue_request(struct ceph_osd_request
*req
)
1430 struct ceph_osd_client
*osdc
= req
->r_osdc
;
1432 dout("%s %p tid %llu to osd%d\n", __func__
, req
, req
->r_tid
,
1433 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1436 __remove_osd_from_lru(req
->r_osd
);
1437 list_add_tail(&req
->r_osd_item
, &req
->r_osd
->o_requests
);
1438 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_unsent
);
1440 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1445 * Pick an osd (the first 'up' osd in the pg), allocate the osd struct
1446 * (as needed), and set the request r_osd appropriately. If there is
1447 * no up osd, set r_osd to NULL. Move the request to the appropriate list
1448 * (unsent, homeless) or leave on in-flight lru.
1450 * Return 0 if unchanged, 1 if changed, or negative on error.
1452 * Caller should hold map_sem for read and request_mutex.
1454 static int __map_request(struct ceph_osd_client
*osdc
,
1455 struct ceph_osd_request
*req
, int force_resend
)
1457 struct ceph_pg pgid
;
1458 int acting
[CEPH_PG_MAX_SIZE
];
1463 dout("map_request %p tid %lld\n", req
, req
->r_tid
);
1465 err
= __calc_request_pg(osdc
->osdmap
, req
, &pgid
);
1467 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1472 num
= ceph_calc_pg_acting(osdc
->osdmap
, pgid
, acting
, &o
);
1476 was_paused
= req
->r_paused
;
1477 req
->r_paused
= __req_should_be_paused(osdc
, req
);
1478 if (was_paused
&& !req
->r_paused
)
1481 if ((!force_resend
&&
1482 req
->r_osd
&& req
->r_osd
->o_osd
== o
&&
1483 req
->r_sent
>= req
->r_osd
->o_incarnation
&&
1484 req
->r_num_pg_osds
== num
&&
1485 memcmp(req
->r_pg_osds
, acting
, sizeof(acting
[0])*num
) == 0) ||
1486 (req
->r_osd
== NULL
&& o
== -1) ||
1488 return 0; /* no change */
1490 dout("map_request tid %llu pgid %lld.%x osd%d (was osd%d)\n",
1491 req
->r_tid
, pgid
.pool
, pgid
.seed
, o
,
1492 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1494 /* record full pg acting set */
1495 memcpy(req
->r_pg_osds
, acting
, sizeof(acting
[0]) * num
);
1496 req
->r_num_pg_osds
= num
;
1499 __cancel_request(req
);
1500 list_del_init(&req
->r_osd_item
);
1501 list_del_init(&req
->r_linger_osd_item
);
1505 req
->r_osd
= __lookup_osd(osdc
, o
);
1506 if (!req
->r_osd
&& o
>= 0) {
1508 req
->r_osd
= create_osd(osdc
, o
);
1510 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1514 dout("map_request osd %p is osd%d\n", req
->r_osd
, o
);
1515 __insert_osd(osdc
, req
->r_osd
);
1517 ceph_con_open(&req
->r_osd
->o_con
,
1518 CEPH_ENTITY_TYPE_OSD
, o
,
1519 &osdc
->osdmap
->osd_addr
[o
]);
1522 __enqueue_request(req
);
1523 err
= 1; /* osd or pg changed */
1530 * caller should hold map_sem (for read) and request_mutex
1532 static void __send_request(struct ceph_osd_client
*osdc
,
1533 struct ceph_osd_request
*req
)
1537 dout("send_request %p tid %llu to osd%d flags %d pg %lld.%x\n",
1538 req
, req
->r_tid
, req
->r_osd
->o_osd
, req
->r_flags
,
1539 (unsigned long long)req
->r_pgid
.pool
, req
->r_pgid
.seed
);
1541 /* fill in message content that changes each time we send it */
1542 put_unaligned_le32(osdc
->osdmap
->epoch
, req
->r_request_osdmap_epoch
);
1543 put_unaligned_le32(req
->r_flags
, req
->r_request_flags
);
1544 put_unaligned_le64(req
->r_target_oloc
.pool
, req
->r_request_pool
);
1545 p
= req
->r_request_pgid
;
1546 ceph_encode_64(&p
, req
->r_pgid
.pool
);
1547 ceph_encode_32(&p
, req
->r_pgid
.seed
);
1548 put_unaligned_le64(1, req
->r_request_attempts
); /* FIXME */
1549 memcpy(req
->r_request_reassert_version
, &req
->r_reassert_version
,
1550 sizeof(req
->r_reassert_version
));
1552 req
->r_stamp
= jiffies
;
1553 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_lru
);
1555 ceph_msg_get(req
->r_request
); /* send consumes a ref */
1557 req
->r_sent
= req
->r_osd
->o_incarnation
;
1559 ceph_con_send(&req
->r_osd
->o_con
, req
->r_request
);
1563 * Send any requests in the queue (req_unsent).
1565 static void __send_queued(struct ceph_osd_client
*osdc
)
1567 struct ceph_osd_request
*req
, *tmp
;
1569 dout("__send_queued\n");
1570 list_for_each_entry_safe(req
, tmp
, &osdc
->req_unsent
, r_req_lru_item
)
1571 __send_request(osdc
, req
);
1575 * Caller should hold map_sem for read and request_mutex.
1577 static int __ceph_osdc_start_request(struct ceph_osd_client
*osdc
,
1578 struct ceph_osd_request
*req
,
1583 __register_request(osdc
, req
);
1585 req
->r_got_reply
= 0;
1586 rc
= __map_request(osdc
, req
, 0);
1589 dout("osdc_start_request failed map, "
1590 " will retry %lld\n", req
->r_tid
);
1593 __unregister_request(osdc
, req
);
1598 if (req
->r_osd
== NULL
) {
1599 dout("send_request %p no up osds in pg\n", req
);
1600 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1602 __send_queued(osdc
);
1609 * Timeout callback, called every N seconds when 1 or more osd
1610 * requests has been active for more than N seconds. When this
1611 * happens, we ping all OSDs with requests who have timed out to
1612 * ensure any communications channel reset is detected. Reset the
1613 * request timeouts another N seconds in the future as we go.
1614 * Reschedule the timeout event another N seconds in future (unless
1615 * there are no open requests).
1617 static void handle_timeout(struct work_struct
*work
)
1619 struct ceph_osd_client
*osdc
=
1620 container_of(work
, struct ceph_osd_client
, timeout_work
.work
);
1621 struct ceph_options
*opts
= osdc
->client
->options
;
1622 struct ceph_osd_request
*req
;
1623 struct ceph_osd
*osd
;
1624 struct list_head slow_osds
;
1626 down_read(&osdc
->map_sem
);
1628 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1630 mutex_lock(&osdc
->request_mutex
);
1633 * ping osds that are a bit slow. this ensures that if there
1634 * is a break in the TCP connection we will notice, and reopen
1635 * a connection with that osd (from the fault callback).
1637 INIT_LIST_HEAD(&slow_osds
);
1638 list_for_each_entry(req
, &osdc
->req_lru
, r_req_lru_item
) {
1639 if (time_before(jiffies
,
1640 req
->r_stamp
+ opts
->osd_keepalive_timeout
))
1645 dout(" tid %llu is slow, will send keepalive on osd%d\n",
1646 req
->r_tid
, osd
->o_osd
);
1647 list_move_tail(&osd
->o_keepalive_item
, &slow_osds
);
1649 while (!list_empty(&slow_osds
)) {
1650 osd
= list_entry(slow_osds
.next
, struct ceph_osd
,
1652 list_del_init(&osd
->o_keepalive_item
);
1653 ceph_con_keepalive(&osd
->o_con
);
1656 __schedule_osd_timeout(osdc
);
1657 __send_queued(osdc
);
1658 mutex_unlock(&osdc
->request_mutex
);
1659 up_read(&osdc
->map_sem
);
1662 static void handle_osds_timeout(struct work_struct
*work
)
1664 struct ceph_osd_client
*osdc
=
1665 container_of(work
, struct ceph_osd_client
,
1666 osds_timeout_work
.work
);
1667 unsigned long delay
= osdc
->client
->options
->osd_idle_ttl
/ 4;
1669 dout("osds timeout\n");
1670 down_read(&osdc
->map_sem
);
1671 remove_old_osds(osdc
);
1672 up_read(&osdc
->map_sem
);
1674 schedule_delayed_work(&osdc
->osds_timeout_work
,
1675 round_jiffies_relative(delay
));
1678 static int ceph_oloc_decode(void **p
, void *end
,
1679 struct ceph_object_locator
*oloc
)
1681 u8 struct_v
, struct_cv
;
1686 ceph_decode_need(p
, end
, 1 + 1 + 4, e_inval
);
1687 struct_v
= ceph_decode_8(p
);
1688 struct_cv
= ceph_decode_8(p
);
1690 pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
1691 struct_v
, struct_cv
);
1694 if (struct_cv
> 6) {
1695 pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
1696 struct_v
, struct_cv
);
1699 len
= ceph_decode_32(p
);
1700 ceph_decode_need(p
, end
, len
, e_inval
);
1701 struct_end
= *p
+ len
;
1703 oloc
->pool
= ceph_decode_64(p
);
1704 *p
+= 4; /* skip preferred */
1706 len
= ceph_decode_32(p
);
1708 pr_warn("ceph_object_locator::key is set\n");
1712 if (struct_v
>= 5) {
1713 len
= ceph_decode_32(p
);
1715 pr_warn("ceph_object_locator::nspace is set\n");
1720 if (struct_v
>= 6) {
1721 s64 hash
= ceph_decode_64(p
);
1723 pr_warn("ceph_object_locator::hash is set\n");
1738 static int ceph_redirect_decode(void **p
, void *end
,
1739 struct ceph_request_redirect
*redir
)
1741 u8 struct_v
, struct_cv
;
1746 ceph_decode_need(p
, end
, 1 + 1 + 4, e_inval
);
1747 struct_v
= ceph_decode_8(p
);
1748 struct_cv
= ceph_decode_8(p
);
1749 if (struct_cv
> 1) {
1750 pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
1751 struct_v
, struct_cv
);
1754 len
= ceph_decode_32(p
);
1755 ceph_decode_need(p
, end
, len
, e_inval
);
1756 struct_end
= *p
+ len
;
1758 ret
= ceph_oloc_decode(p
, end
, &redir
->oloc
);
1762 len
= ceph_decode_32(p
);
1764 pr_warn("ceph_request_redirect::object_name is set\n");
1768 len
= ceph_decode_32(p
);
1769 *p
+= len
; /* skip osd_instructions */
1781 static void complete_request(struct ceph_osd_request
*req
)
1783 complete_all(&req
->r_safe_completion
); /* fsync waiter */
1787 * handle osd op reply. either call the callback if it is specified,
1788 * or do the completion to wake up the waiting thread.
1790 static void handle_reply(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
)
1793 struct ceph_osd_request
*req
;
1794 struct ceph_request_redirect redir
;
1797 unsigned int numops
;
1798 int payload_len
, flags
;
1804 u64 reassert_version
;
1806 int already_completed
;
1811 tid
= le64_to_cpu(msg
->hdr
.tid
);
1812 dout("handle_reply %p tid %llu\n", msg
, tid
);
1814 p
= msg
->front
.iov_base
;
1815 end
= p
+ msg
->front
.iov_len
;
1817 ceph_decode_need(&p
, end
, 4, bad
);
1818 object_len
= ceph_decode_32(&p
);
1819 ceph_decode_need(&p
, end
, object_len
, bad
);
1822 err
= ceph_decode_pgid(&p
, end
, &pg
);
1826 ceph_decode_need(&p
, end
, 8 + 4 + 4 + 8 + 4, bad
);
1827 flags
= ceph_decode_64(&p
);
1828 result
= ceph_decode_32(&p
);
1829 reassert_epoch
= ceph_decode_32(&p
);
1830 reassert_version
= ceph_decode_64(&p
);
1831 osdmap_epoch
= ceph_decode_32(&p
);
1834 down_read(&osdc
->map_sem
);
1835 mutex_lock(&osdc
->request_mutex
);
1836 req
= __lookup_request(osdc
, tid
);
1838 dout("handle_reply tid %llu dne\n", tid
);
1841 ceph_osdc_get_request(req
);
1843 dout("handle_reply %p tid %llu req %p result %d\n", msg
, tid
,
1846 ceph_decode_need(&p
, end
, 4, bad_put
);
1847 numops
= ceph_decode_32(&p
);
1848 if (numops
> CEPH_OSD_MAX_OPS
)
1850 if (numops
!= req
->r_num_ops
)
1853 ceph_decode_need(&p
, end
, numops
* sizeof(struct ceph_osd_op
), bad_put
);
1854 for (i
= 0; i
< numops
; i
++) {
1855 struct ceph_osd_op
*op
= p
;
1858 len
= le32_to_cpu(op
->payload_len
);
1859 req
->r_ops
[i
].outdata_len
= len
;
1860 dout(" op %d has %d bytes\n", i
, len
);
1864 bytes
= le32_to_cpu(msg
->hdr
.data_len
);
1865 if (payload_len
!= bytes
) {
1866 pr_warn("sum of op payload lens %d != data_len %d\n",
1867 payload_len
, bytes
);
1871 ceph_decode_need(&p
, end
, 4 + numops
* 4, bad_put
);
1872 retry_attempt
= ceph_decode_32(&p
);
1873 for (i
= 0; i
< numops
; i
++)
1874 req
->r_ops
[i
].rval
= ceph_decode_32(&p
);
1876 if (le16_to_cpu(msg
->hdr
.version
) >= 6) {
1877 p
+= 8 + 4; /* skip replay_version */
1878 p
+= 8; /* skip user_version */
1880 if (le16_to_cpu(msg
->hdr
.version
) >= 7)
1881 ceph_decode_8_safe(&p
, end
, decode_redir
, bad_put
);
1889 err
= ceph_redirect_decode(&p
, end
, &redir
);
1893 redir
.oloc
.pool
= -1;
1896 if (redir
.oloc
.pool
!= -1) {
1897 dout("redirect pool %lld\n", redir
.oloc
.pool
);
1899 __unregister_request(osdc
, req
);
1901 req
->r_target_oloc
= redir
.oloc
; /* struct */
1904 * Start redirect requests with nofail=true. If
1905 * mapping fails, request will end up on the notarget
1906 * list, waiting for the new osdmap (which can take
1907 * a while), even though the original request mapped
1908 * successfully. In the future we might want to follow
1909 * original request's nofail setting here.
1911 err
= __ceph_osdc_start_request(osdc
, req
, true);
1917 already_completed
= req
->r_got_reply
;
1918 if (!req
->r_got_reply
) {
1919 req
->r_result
= result
;
1920 dout("handle_reply result %d bytes %d\n", req
->r_result
,
1922 if (req
->r_result
== 0)
1923 req
->r_result
= bytes
;
1925 /* in case this is a write and we need to replay, */
1926 req
->r_reassert_version
.epoch
= cpu_to_le32(reassert_epoch
);
1927 req
->r_reassert_version
.version
= cpu_to_le64(reassert_version
);
1929 req
->r_got_reply
= 1;
1930 } else if ((flags
& CEPH_OSD_FLAG_ONDISK
) == 0) {
1931 dout("handle_reply tid %llu dup ack\n", tid
);
1935 dout("handle_reply tid %llu flags %d\n", tid
, flags
);
1937 if (req
->r_linger
&& (flags
& CEPH_OSD_FLAG_ONDISK
))
1938 __register_linger_request(osdc
, req
);
1940 /* either this is a read, or we got the safe response */
1942 (flags
& CEPH_OSD_FLAG_ONDISK
) ||
1943 ((flags
& CEPH_OSD_FLAG_WRITE
) == 0))
1944 __unregister_request(osdc
, req
);
1946 mutex_unlock(&osdc
->request_mutex
);
1947 up_read(&osdc
->map_sem
);
1949 if (!already_completed
) {
1950 if (req
->r_unsafe_callback
&&
1951 result
>= 0 && !(flags
& CEPH_OSD_FLAG_ONDISK
))
1952 req
->r_unsafe_callback(req
, true);
1953 if (req
->r_callback
)
1954 req
->r_callback(req
, msg
);
1956 complete_all(&req
->r_completion
);
1959 if (flags
& CEPH_OSD_FLAG_ONDISK
) {
1960 if (req
->r_unsafe_callback
&& already_completed
)
1961 req
->r_unsafe_callback(req
, false);
1962 complete_request(req
);
1966 dout("req=%p req->r_linger=%d\n", req
, req
->r_linger
);
1967 ceph_osdc_put_request(req
);
1970 mutex_unlock(&osdc
->request_mutex
);
1971 up_read(&osdc
->map_sem
);
1975 req
->r_result
= -EIO
;
1976 __unregister_request(osdc
, req
);
1977 if (req
->r_callback
)
1978 req
->r_callback(req
, msg
);
1980 complete_all(&req
->r_completion
);
1981 complete_request(req
);
1982 ceph_osdc_put_request(req
);
1984 mutex_unlock(&osdc
->request_mutex
);
1985 up_read(&osdc
->map_sem
);
1987 pr_err("corrupt osd_op_reply got %d %d\n",
1988 (int)msg
->front
.iov_len
, le32_to_cpu(msg
->hdr
.front_len
));
1992 static void reset_changed_osds(struct ceph_osd_client
*osdc
)
1994 struct rb_node
*p
, *n
;
1996 dout("%s %p\n", __func__
, osdc
);
1997 for (p
= rb_first(&osdc
->osds
); p
; p
= n
) {
1998 struct ceph_osd
*osd
= rb_entry(p
, struct ceph_osd
, o_node
);
2001 if (!ceph_osd_is_up(osdc
->osdmap
, osd
->o_osd
) ||
2002 memcmp(&osd
->o_con
.peer_addr
,
2003 ceph_osd_addr(osdc
->osdmap
,
2005 sizeof(struct ceph_entity_addr
)) != 0)
2006 __reset_osd(osdc
, osd
);
2011 * Requeue requests whose mapping to an OSD has changed. If requests map to
2012 * no osd, request a new map.
2014 * Caller should hold map_sem for read.
2016 static void kick_requests(struct ceph_osd_client
*osdc
, bool force_resend
,
2017 bool force_resend_writes
)
2019 struct ceph_osd_request
*req
, *nreq
;
2023 bool force_resend_req
;
2025 dout("kick_requests %s %s\n", force_resend
? " (force resend)" : "",
2026 force_resend_writes
? " (force resend writes)" : "");
2027 mutex_lock(&osdc
->request_mutex
);
2028 for (p
= rb_first(&osdc
->requests
); p
; ) {
2029 req
= rb_entry(p
, struct ceph_osd_request
, r_node
);
2033 * For linger requests that have not yet been
2034 * registered, move them to the linger list; they'll
2035 * be sent to the osd in the loop below. Unregister
2036 * the request before re-registering it as a linger
2037 * request to ensure the __map_request() below
2038 * will decide it needs to be sent.
2040 if (req
->r_linger
&& list_empty(&req
->r_linger_item
)) {
2041 dout("%p tid %llu restart on osd%d\n",
2043 req
->r_osd
? req
->r_osd
->o_osd
: -1);
2044 ceph_osdc_get_request(req
);
2045 __unregister_request(osdc
, req
);
2046 __register_linger_request(osdc
, req
);
2047 ceph_osdc_put_request(req
);
2051 force_resend_req
= force_resend
||
2052 (force_resend_writes
&&
2053 req
->r_flags
& CEPH_OSD_FLAG_WRITE
);
2054 err
= __map_request(osdc
, req
, force_resend_req
);
2056 continue; /* error */
2057 if (req
->r_osd
== NULL
) {
2058 dout("%p tid %llu maps to no osd\n", req
, req
->r_tid
);
2059 needmap
++; /* request a newer map */
2060 } else if (err
> 0) {
2061 if (!req
->r_linger
) {
2062 dout("%p tid %llu requeued on osd%d\n", req
,
2064 req
->r_osd
? req
->r_osd
->o_osd
: -1);
2065 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
2070 list_for_each_entry_safe(req
, nreq
, &osdc
->req_linger
,
2072 dout("linger req=%p req->r_osd=%p\n", req
, req
->r_osd
);
2074 err
= __map_request(osdc
, req
,
2075 force_resend
|| force_resend_writes
);
2076 dout("__map_request returned %d\n", err
);
2078 continue; /* hrm! */
2079 if (req
->r_osd
== NULL
|| err
> 0) {
2080 if (req
->r_osd
== NULL
) {
2081 dout("lingering %p tid %llu maps to no osd\n",
2084 * A homeless lingering request makes
2085 * no sense, as it's job is to keep
2086 * a particular OSD connection open.
2087 * Request a newer map and kick the
2088 * request, knowing that it won't be
2089 * resent until we actually get a map
2090 * that can tell us where to send it.
2095 dout("kicking lingering %p tid %llu osd%d\n", req
,
2096 req
->r_tid
, req
->r_osd
? req
->r_osd
->o_osd
: -1);
2097 __register_request(osdc
, req
);
2098 __unregister_linger_request(osdc
, req
);
2101 reset_changed_osds(osdc
);
2102 mutex_unlock(&osdc
->request_mutex
);
2105 dout("%d requests for down osds, need new map\n", needmap
);
2106 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
2112 * Process updated osd map.
2114 * The message contains any number of incremental and full maps, normally
2115 * indicating some sort of topology change in the cluster. Kick requests
2116 * off to different OSDs as needed.
2118 void ceph_osdc_handle_map(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
)
2120 void *p
, *end
, *next
;
2121 u32 nr_maps
, maplen
;
2123 struct ceph_osdmap
*newmap
= NULL
, *oldmap
;
2125 struct ceph_fsid fsid
;
2128 dout("handle_map have %u\n", osdc
->osdmap
? osdc
->osdmap
->epoch
: 0);
2129 p
= msg
->front
.iov_base
;
2130 end
= p
+ msg
->front
.iov_len
;
2133 ceph_decode_need(&p
, end
, sizeof(fsid
), bad
);
2134 ceph_decode_copy(&p
, &fsid
, sizeof(fsid
));
2135 if (ceph_check_fsid(osdc
->client
, &fsid
) < 0)
2138 down_write(&osdc
->map_sem
);
2140 was_full
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
);
2142 /* incremental maps */
2143 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
2144 dout(" %d inc maps\n", nr_maps
);
2145 while (nr_maps
> 0) {
2146 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
2147 epoch
= ceph_decode_32(&p
);
2148 maplen
= ceph_decode_32(&p
);
2149 ceph_decode_need(&p
, end
, maplen
, bad
);
2151 if (osdc
->osdmap
&& osdc
->osdmap
->epoch
+1 == epoch
) {
2152 dout("applying incremental map %u len %d\n",
2154 newmap
= osdmap_apply_incremental(&p
, next
,
2156 &osdc
->client
->msgr
);
2157 if (IS_ERR(newmap
)) {
2158 err
= PTR_ERR(newmap
);
2162 if (newmap
!= osdc
->osdmap
) {
2163 ceph_osdmap_destroy(osdc
->osdmap
);
2164 osdc
->osdmap
= newmap
;
2166 was_full
= was_full
||
2167 ceph_osdmap_flag(osdc
->osdmap
,
2169 kick_requests(osdc
, 0, was_full
);
2171 dout("ignoring incremental map %u len %d\n",
2181 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
2182 dout(" %d full maps\n", nr_maps
);
2184 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
2185 epoch
= ceph_decode_32(&p
);
2186 maplen
= ceph_decode_32(&p
);
2187 ceph_decode_need(&p
, end
, maplen
, bad
);
2189 dout("skipping non-latest full map %u len %d\n",
2191 } else if (osdc
->osdmap
&& osdc
->osdmap
->epoch
>= epoch
) {
2192 dout("skipping full map %u len %d, "
2193 "older than our %u\n", epoch
, maplen
,
2194 osdc
->osdmap
->epoch
);
2196 int skipped_map
= 0;
2198 dout("taking full map %u len %d\n", epoch
, maplen
);
2199 newmap
= ceph_osdmap_decode(&p
, p
+maplen
);
2200 if (IS_ERR(newmap
)) {
2201 err
= PTR_ERR(newmap
);
2205 oldmap
= osdc
->osdmap
;
2206 osdc
->osdmap
= newmap
;
2208 if (oldmap
->epoch
+ 1 < newmap
->epoch
)
2210 ceph_osdmap_destroy(oldmap
);
2212 was_full
= was_full
||
2213 ceph_osdmap_flag(osdc
->osdmap
,
2215 kick_requests(osdc
, skipped_map
, was_full
);
2224 downgrade_write(&osdc
->map_sem
);
2225 ceph_monc_got_map(&osdc
->client
->monc
, CEPH_SUB_OSDMAP
,
2226 osdc
->osdmap
->epoch
);
2229 * subscribe to subsequent osdmap updates if full to ensure
2230 * we find out when we are no longer full and stop returning
2233 if (ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
) ||
2234 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSERD
) ||
2235 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSEWR
))
2236 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
2238 mutex_lock(&osdc
->request_mutex
);
2239 __send_queued(osdc
);
2240 mutex_unlock(&osdc
->request_mutex
);
2241 up_read(&osdc
->map_sem
);
2242 wake_up_all(&osdc
->client
->auth_wq
);
2246 pr_err("osdc handle_map corrupt msg\n");
2248 up_write(&osdc
->map_sem
);
2252 * watch/notify callback event infrastructure
2254 * These callbacks are used both for watch and notify operations.
2256 static void __release_event(struct kref
*kref
)
2258 struct ceph_osd_event
*event
=
2259 container_of(kref
, struct ceph_osd_event
, kref
);
2261 dout("__release_event %p\n", event
);
2265 static void get_event(struct ceph_osd_event
*event
)
2267 kref_get(&event
->kref
);
2270 void ceph_osdc_put_event(struct ceph_osd_event
*event
)
2272 kref_put(&event
->kref
, __release_event
);
2274 EXPORT_SYMBOL(ceph_osdc_put_event
);
2276 static void __insert_event(struct ceph_osd_client
*osdc
,
2277 struct ceph_osd_event
*new)
2279 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
2280 struct rb_node
*parent
= NULL
;
2281 struct ceph_osd_event
*event
= NULL
;
2285 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
2286 if (new->cookie
< event
->cookie
)
2288 else if (new->cookie
> event
->cookie
)
2289 p
= &(*p
)->rb_right
;
2294 rb_link_node(&new->node
, parent
, p
);
2295 rb_insert_color(&new->node
, &osdc
->event_tree
);
2298 static struct ceph_osd_event
*__find_event(struct ceph_osd_client
*osdc
,
2301 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
2302 struct rb_node
*parent
= NULL
;
2303 struct ceph_osd_event
*event
= NULL
;
2307 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
2308 if (cookie
< event
->cookie
)
2310 else if (cookie
> event
->cookie
)
2311 p
= &(*p
)->rb_right
;
2318 static void __remove_event(struct ceph_osd_event
*event
)
2320 struct ceph_osd_client
*osdc
= event
->osdc
;
2322 if (!RB_EMPTY_NODE(&event
->node
)) {
2323 dout("__remove_event removed %p\n", event
);
2324 rb_erase(&event
->node
, &osdc
->event_tree
);
2325 ceph_osdc_put_event(event
);
2327 dout("__remove_event didn't remove %p\n", event
);
2331 int ceph_osdc_create_event(struct ceph_osd_client
*osdc
,
2332 void (*event_cb
)(u64
, u64
, u8
, void *),
2333 void *data
, struct ceph_osd_event
**pevent
)
2335 struct ceph_osd_event
*event
;
2337 event
= kmalloc(sizeof(*event
), GFP_NOIO
);
2341 dout("create_event %p\n", event
);
2342 event
->cb
= event_cb
;
2343 event
->one_shot
= 0;
2346 INIT_LIST_HEAD(&event
->osd_node
);
2347 RB_CLEAR_NODE(&event
->node
);
2348 kref_init(&event
->kref
); /* one ref for us */
2349 kref_get(&event
->kref
); /* one ref for the caller */
2351 spin_lock(&osdc
->event_lock
);
2352 event
->cookie
= ++osdc
->event_count
;
2353 __insert_event(osdc
, event
);
2354 spin_unlock(&osdc
->event_lock
);
2359 EXPORT_SYMBOL(ceph_osdc_create_event
);
2361 void ceph_osdc_cancel_event(struct ceph_osd_event
*event
)
2363 struct ceph_osd_client
*osdc
= event
->osdc
;
2365 dout("cancel_event %p\n", event
);
2366 spin_lock(&osdc
->event_lock
);
2367 __remove_event(event
);
2368 spin_unlock(&osdc
->event_lock
);
2369 ceph_osdc_put_event(event
); /* caller's */
2371 EXPORT_SYMBOL(ceph_osdc_cancel_event
);
2374 static void do_event_work(struct work_struct
*work
)
2376 struct ceph_osd_event_work
*event_work
=
2377 container_of(work
, struct ceph_osd_event_work
, work
);
2378 struct ceph_osd_event
*event
= event_work
->event
;
2379 u64 ver
= event_work
->ver
;
2380 u64 notify_id
= event_work
->notify_id
;
2381 u8 opcode
= event_work
->opcode
;
2383 dout("do_event_work completing %p\n", event
);
2384 event
->cb(ver
, notify_id
, opcode
, event
->data
);
2385 dout("do_event_work completed %p\n", event
);
2386 ceph_osdc_put_event(event
);
2392 * Process osd watch notifications
2394 static void handle_watch_notify(struct ceph_osd_client
*osdc
,
2395 struct ceph_msg
*msg
)
2399 u64 cookie
, ver
, notify_id
;
2401 struct ceph_osd_event
*event
;
2402 struct ceph_osd_event_work
*event_work
;
2404 p
= msg
->front
.iov_base
;
2405 end
= p
+ msg
->front
.iov_len
;
2407 ceph_decode_8_safe(&p
, end
, proto_ver
, bad
);
2408 ceph_decode_8_safe(&p
, end
, opcode
, bad
);
2409 ceph_decode_64_safe(&p
, end
, cookie
, bad
);
2410 ceph_decode_64_safe(&p
, end
, ver
, bad
);
2411 ceph_decode_64_safe(&p
, end
, notify_id
, bad
);
2413 spin_lock(&osdc
->event_lock
);
2414 event
= __find_event(osdc
, cookie
);
2416 BUG_ON(event
->one_shot
);
2419 spin_unlock(&osdc
->event_lock
);
2420 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
2421 cookie
, ver
, event
);
2423 event_work
= kmalloc(sizeof(*event_work
), GFP_NOIO
);
2425 pr_err("couldn't allocate event_work\n");
2426 ceph_osdc_put_event(event
);
2429 INIT_WORK(&event_work
->work
, do_event_work
);
2430 event_work
->event
= event
;
2431 event_work
->ver
= ver
;
2432 event_work
->notify_id
= notify_id
;
2433 event_work
->opcode
= opcode
;
2435 queue_work(osdc
->notify_wq
, &event_work
->work
);
2441 pr_err("osdc handle_watch_notify corrupt msg\n");
2445 * build new request AND message
2448 void ceph_osdc_build_request(struct ceph_osd_request
*req
, u64 off
,
2449 struct ceph_snap_context
*snapc
, u64 snap_id
,
2450 struct timespec
*mtime
)
2452 struct ceph_msg
*msg
= req
->r_request
;
2455 int flags
= req
->r_flags
;
2459 req
->r_snapid
= snap_id
;
2460 req
->r_snapc
= ceph_get_snap_context(snapc
);
2462 /* encode request */
2463 msg
->hdr
.version
= cpu_to_le16(4);
2465 p
= msg
->front
.iov_base
;
2466 ceph_encode_32(&p
, 1); /* client_inc is always 1 */
2467 req
->r_request_osdmap_epoch
= p
;
2469 req
->r_request_flags
= p
;
2471 if (req
->r_flags
& CEPH_OSD_FLAG_WRITE
)
2472 ceph_encode_timespec(p
, mtime
);
2473 p
+= sizeof(struct ceph_timespec
);
2474 req
->r_request_reassert_version
= p
;
2475 p
+= sizeof(struct ceph_eversion
); /* will get filled in */
2478 ceph_encode_8(&p
, 4);
2479 ceph_encode_8(&p
, 4);
2480 ceph_encode_32(&p
, 8 + 4 + 4);
2481 req
->r_request_pool
= p
;
2483 ceph_encode_32(&p
, -1); /* preferred */
2484 ceph_encode_32(&p
, 0); /* key len */
2486 ceph_encode_8(&p
, 1);
2487 req
->r_request_pgid
= p
;
2489 ceph_encode_32(&p
, -1); /* preferred */
2492 ceph_encode_32(&p
, req
->r_base_oid
.name_len
);
2493 memcpy(p
, req
->r_base_oid
.name
, req
->r_base_oid
.name_len
);
2494 dout("oid '%.*s' len %d\n", req
->r_base_oid
.name_len
,
2495 req
->r_base_oid
.name
, req
->r_base_oid
.name_len
);
2496 p
+= req
->r_base_oid
.name_len
;
2498 /* ops--can imply data */
2499 ceph_encode_16(&p
, (u16
)req
->r_num_ops
);
2501 for (i
= 0; i
< req
->r_num_ops
; i
++) {
2502 data_len
+= osd_req_encode_op(req
, p
, i
);
2503 p
+= sizeof(struct ceph_osd_op
);
2507 ceph_encode_64(&p
, req
->r_snapid
);
2508 ceph_encode_64(&p
, req
->r_snapc
? req
->r_snapc
->seq
: 0);
2509 ceph_encode_32(&p
, req
->r_snapc
? req
->r_snapc
->num_snaps
: 0);
2511 for (i
= 0; i
< snapc
->num_snaps
; i
++) {
2512 ceph_encode_64(&p
, req
->r_snapc
->snaps
[i
]);
2516 req
->r_request_attempts
= p
;
2520 if (flags
& CEPH_OSD_FLAG_WRITE
) {
2524 * The header "data_off" is a hint to the receiver
2525 * allowing it to align received data into its
2526 * buffers such that there's no need to re-copy
2527 * it before writing it to disk (direct I/O).
2529 data_off
= (u16
) (off
& 0xffff);
2530 req
->r_request
->hdr
.data_off
= cpu_to_le16(data_off
);
2532 req
->r_request
->hdr
.data_len
= cpu_to_le32(data_len
);
2534 BUG_ON(p
> msg
->front
.iov_base
+ msg
->front
.iov_len
);
2535 msg_size
= p
- msg
->front
.iov_base
;
2536 msg
->front
.iov_len
= msg_size
;
2537 msg
->hdr
.front_len
= cpu_to_le32(msg_size
);
2539 dout("build_request msg_size was %d\n", (int)msg_size
);
2541 EXPORT_SYMBOL(ceph_osdc_build_request
);
2544 * Register request, send initial attempt.
2546 int ceph_osdc_start_request(struct ceph_osd_client
*osdc
,
2547 struct ceph_osd_request
*req
,
2552 down_read(&osdc
->map_sem
);
2553 mutex_lock(&osdc
->request_mutex
);
2555 rc
= __ceph_osdc_start_request(osdc
, req
, nofail
);
2557 mutex_unlock(&osdc
->request_mutex
);
2558 up_read(&osdc
->map_sem
);
2562 EXPORT_SYMBOL(ceph_osdc_start_request
);
2565 * Unregister a registered request. The request is not completed (i.e.
2566 * no callbacks or wakeups) - higher layers are supposed to know what
2567 * they are canceling.
2569 void ceph_osdc_cancel_request(struct ceph_osd_request
*req
)
2571 struct ceph_osd_client
*osdc
= req
->r_osdc
;
2573 mutex_lock(&osdc
->request_mutex
);
2575 __unregister_linger_request(osdc
, req
);
2576 __unregister_request(osdc
, req
);
2577 mutex_unlock(&osdc
->request_mutex
);
2579 dout("%s %p tid %llu canceled\n", __func__
, req
, req
->r_tid
);
2581 EXPORT_SYMBOL(ceph_osdc_cancel_request
);
2584 * wait for a request to complete
2586 int ceph_osdc_wait_request(struct ceph_osd_client
*osdc
,
2587 struct ceph_osd_request
*req
)
2591 dout("%s %p tid %llu\n", __func__
, req
, req
->r_tid
);
2593 rc
= wait_for_completion_interruptible(&req
->r_completion
);
2595 dout("%s %p tid %llu interrupted\n", __func__
, req
, req
->r_tid
);
2596 ceph_osdc_cancel_request(req
);
2597 complete_request(req
);
2601 dout("%s %p tid %llu result %d\n", __func__
, req
, req
->r_tid
,
2603 return req
->r_result
;
2605 EXPORT_SYMBOL(ceph_osdc_wait_request
);
2608 * sync - wait for all in-flight requests to flush. avoid starvation.
2610 void ceph_osdc_sync(struct ceph_osd_client
*osdc
)
2612 struct ceph_osd_request
*req
;
2613 u64 last_tid
, next_tid
= 0;
2615 mutex_lock(&osdc
->request_mutex
);
2616 last_tid
= osdc
->last_tid
;
2618 req
= __lookup_request_ge(osdc
, next_tid
);
2621 if (req
->r_tid
> last_tid
)
2624 next_tid
= req
->r_tid
+ 1;
2625 if ((req
->r_flags
& CEPH_OSD_FLAG_WRITE
) == 0)
2628 ceph_osdc_get_request(req
);
2629 mutex_unlock(&osdc
->request_mutex
);
2630 dout("sync waiting on tid %llu (last is %llu)\n",
2631 req
->r_tid
, last_tid
);
2632 wait_for_completion(&req
->r_safe_completion
);
2633 mutex_lock(&osdc
->request_mutex
);
2634 ceph_osdc_put_request(req
);
2636 mutex_unlock(&osdc
->request_mutex
);
2637 dout("sync done (thru tid %llu)\n", last_tid
);
2639 EXPORT_SYMBOL(ceph_osdc_sync
);
2642 * Call all pending notify callbacks - for use after a watch is
2643 * unregistered, to make sure no more callbacks for it will be invoked
2645 void ceph_osdc_flush_notifies(struct ceph_osd_client
*osdc
)
2647 flush_workqueue(osdc
->notify_wq
);
2649 EXPORT_SYMBOL(ceph_osdc_flush_notifies
);
2655 int ceph_osdc_init(struct ceph_osd_client
*osdc
, struct ceph_client
*client
)
2660 osdc
->client
= client
;
2661 osdc
->osdmap
= NULL
;
2662 init_rwsem(&osdc
->map_sem
);
2663 init_completion(&osdc
->map_waiters
);
2664 osdc
->last_requested_map
= 0;
2665 mutex_init(&osdc
->request_mutex
);
2667 osdc
->osds
= RB_ROOT
;
2668 INIT_LIST_HEAD(&osdc
->osd_lru
);
2669 osdc
->requests
= RB_ROOT
;
2670 INIT_LIST_HEAD(&osdc
->req_lru
);
2671 INIT_LIST_HEAD(&osdc
->req_unsent
);
2672 INIT_LIST_HEAD(&osdc
->req_notarget
);
2673 INIT_LIST_HEAD(&osdc
->req_linger
);
2674 osdc
->num_requests
= 0;
2675 INIT_DELAYED_WORK(&osdc
->timeout_work
, handle_timeout
);
2676 INIT_DELAYED_WORK(&osdc
->osds_timeout_work
, handle_osds_timeout
);
2677 spin_lock_init(&osdc
->event_lock
);
2678 osdc
->event_tree
= RB_ROOT
;
2679 osdc
->event_count
= 0;
2681 schedule_delayed_work(&osdc
->osds_timeout_work
,
2682 round_jiffies_relative(osdc
->client
->options
->osd_idle_ttl
));
2685 osdc
->req_mempool
= mempool_create_slab_pool(10,
2686 ceph_osd_request_cache
);
2687 if (!osdc
->req_mempool
)
2690 err
= ceph_msgpool_init(&osdc
->msgpool_op
, CEPH_MSG_OSD_OP
,
2691 OSD_OP_FRONT_LEN
, 10, true,
2695 err
= ceph_msgpool_init(&osdc
->msgpool_op_reply
, CEPH_MSG_OSD_OPREPLY
,
2696 OSD_OPREPLY_FRONT_LEN
, 10, true,
2702 osdc
->notify_wq
= create_singlethread_workqueue("ceph-watch-notify");
2703 if (!osdc
->notify_wq
)
2704 goto out_msgpool_reply
;
2709 ceph_msgpool_destroy(&osdc
->msgpool_op_reply
);
2711 ceph_msgpool_destroy(&osdc
->msgpool_op
);
2713 mempool_destroy(osdc
->req_mempool
);
2718 void ceph_osdc_stop(struct ceph_osd_client
*osdc
)
2720 flush_workqueue(osdc
->notify_wq
);
2721 destroy_workqueue(osdc
->notify_wq
);
2722 cancel_delayed_work_sync(&osdc
->timeout_work
);
2723 cancel_delayed_work_sync(&osdc
->osds_timeout_work
);
2725 ceph_osdmap_destroy(osdc
->osdmap
);
2726 osdc
->osdmap
= NULL
;
2728 remove_all_osds(osdc
);
2729 mempool_destroy(osdc
->req_mempool
);
2730 ceph_msgpool_destroy(&osdc
->msgpool_op
);
2731 ceph_msgpool_destroy(&osdc
->msgpool_op_reply
);
2735 * Read some contiguous pages. If we cross a stripe boundary, shorten
2736 * *plen. Return number of bytes read, or error.
2738 int ceph_osdc_readpages(struct ceph_osd_client
*osdc
,
2739 struct ceph_vino vino
, struct ceph_file_layout
*layout
,
2741 u32 truncate_seq
, u64 truncate_size
,
2742 struct page
**pages
, int num_pages
, int page_align
)
2744 struct ceph_osd_request
*req
;
2747 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino
.ino
,
2748 vino
.snap
, off
, *plen
);
2749 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, plen
, 0, 1,
2750 CEPH_OSD_OP_READ
, CEPH_OSD_FLAG_READ
,
2751 NULL
, truncate_seq
, truncate_size
,
2754 return PTR_ERR(req
);
2756 /* it may be a short read due to an object boundary */
2758 osd_req_op_extent_osd_data_pages(req
, 0,
2759 pages
, *plen
, page_align
, false, false);
2761 dout("readpages final extent is %llu~%llu (%llu bytes align %d)\n",
2762 off
, *plen
, *plen
, page_align
);
2764 ceph_osdc_build_request(req
, off
, NULL
, vino
.snap
, NULL
);
2766 rc
= ceph_osdc_start_request(osdc
, req
, false);
2768 rc
= ceph_osdc_wait_request(osdc
, req
);
2770 ceph_osdc_put_request(req
);
2771 dout("readpages result %d\n", rc
);
2774 EXPORT_SYMBOL(ceph_osdc_readpages
);
2777 * do a synchronous write on N pages
2779 int ceph_osdc_writepages(struct ceph_osd_client
*osdc
, struct ceph_vino vino
,
2780 struct ceph_file_layout
*layout
,
2781 struct ceph_snap_context
*snapc
,
2783 u32 truncate_seq
, u64 truncate_size
,
2784 struct timespec
*mtime
,
2785 struct page
**pages
, int num_pages
)
2787 struct ceph_osd_request
*req
;
2789 int page_align
= off
& ~PAGE_MASK
;
2791 BUG_ON(vino
.snap
!= CEPH_NOSNAP
); /* snapshots aren't writeable */
2792 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, &len
, 0, 1,
2794 CEPH_OSD_FLAG_ONDISK
| CEPH_OSD_FLAG_WRITE
,
2795 snapc
, truncate_seq
, truncate_size
,
2798 return PTR_ERR(req
);
2800 /* it may be a short write due to an object boundary */
2801 osd_req_op_extent_osd_data_pages(req
, 0, pages
, len
, page_align
,
2803 dout("writepages %llu~%llu (%llu bytes)\n", off
, len
, len
);
2805 ceph_osdc_build_request(req
, off
, snapc
, CEPH_NOSNAP
, mtime
);
2807 rc
= ceph_osdc_start_request(osdc
, req
, true);
2809 rc
= ceph_osdc_wait_request(osdc
, req
);
2811 ceph_osdc_put_request(req
);
2814 dout("writepages result %d\n", rc
);
2817 EXPORT_SYMBOL(ceph_osdc_writepages
);
2819 int ceph_osdc_setup(void)
2821 size_t size
= sizeof(struct ceph_osd_request
) +
2822 CEPH_OSD_SLAB_OPS
* sizeof(struct ceph_osd_req_op
);
2824 BUG_ON(ceph_osd_request_cache
);
2825 ceph_osd_request_cache
= kmem_cache_create("ceph_osd_request", size
,
2828 return ceph_osd_request_cache
? 0 : -ENOMEM
;
2830 EXPORT_SYMBOL(ceph_osdc_setup
);
2832 void ceph_osdc_cleanup(void)
2834 BUG_ON(!ceph_osd_request_cache
);
2835 kmem_cache_destroy(ceph_osd_request_cache
);
2836 ceph_osd_request_cache
= NULL
;
2838 EXPORT_SYMBOL(ceph_osdc_cleanup
);
2841 * handle incoming message
2843 static void dispatch(struct ceph_connection
*con
, struct ceph_msg
*msg
)
2845 struct ceph_osd
*osd
= con
->private;
2846 struct ceph_osd_client
*osdc
;
2847 int type
= le16_to_cpu(msg
->hdr
.type
);
2854 case CEPH_MSG_OSD_MAP
:
2855 ceph_osdc_handle_map(osdc
, msg
);
2857 case CEPH_MSG_OSD_OPREPLY
:
2858 handle_reply(osdc
, msg
);
2860 case CEPH_MSG_WATCH_NOTIFY
:
2861 handle_watch_notify(osdc
, msg
);
2865 pr_err("received unknown message type %d %s\n", type
,
2866 ceph_msg_type_name(type
));
2873 * Lookup and return message for incoming reply. Don't try to do
2874 * anything about a larger than preallocated data portion of the
2875 * message at the moment - for now, just skip the message.
2877 static struct ceph_msg
*get_reply(struct ceph_connection
*con
,
2878 struct ceph_msg_header
*hdr
,
2881 struct ceph_osd
*osd
= con
->private;
2882 struct ceph_osd_client
*osdc
= osd
->o_osdc
;
2884 struct ceph_osd_request
*req
;
2885 int front_len
= le32_to_cpu(hdr
->front_len
);
2886 int data_len
= le32_to_cpu(hdr
->data_len
);
2889 tid
= le64_to_cpu(hdr
->tid
);
2890 mutex_lock(&osdc
->request_mutex
);
2891 req
= __lookup_request(osdc
, tid
);
2893 dout("%s osd%d tid %llu unknown, skipping\n", __func__
,
2900 ceph_msg_revoke_incoming(req
->r_reply
);
2902 if (front_len
> req
->r_reply
->front_alloc_len
) {
2903 pr_warn("%s osd%d tid %llu front %d > preallocated %d\n",
2904 __func__
, osd
->o_osd
, req
->r_tid
, front_len
,
2905 req
->r_reply
->front_alloc_len
);
2906 m
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
, front_len
, GFP_NOFS
,
2910 ceph_msg_put(req
->r_reply
);
2914 if (data_len
> req
->r_reply
->data_length
) {
2915 pr_warn("%s osd%d tid %llu data %d > preallocated %zu, skipping\n",
2916 __func__
, osd
->o_osd
, req
->r_tid
, data_len
,
2917 req
->r_reply
->data_length
);
2923 m
= ceph_msg_get(req
->r_reply
);
2924 dout("get_reply tid %lld %p\n", tid
, m
);
2927 mutex_unlock(&osdc
->request_mutex
);
2931 static struct ceph_msg
*alloc_msg(struct ceph_connection
*con
,
2932 struct ceph_msg_header
*hdr
,
2935 struct ceph_osd
*osd
= con
->private;
2936 int type
= le16_to_cpu(hdr
->type
);
2937 int front
= le32_to_cpu(hdr
->front_len
);
2941 case CEPH_MSG_OSD_MAP
:
2942 case CEPH_MSG_WATCH_NOTIFY
:
2943 return ceph_msg_new(type
, front
, GFP_NOFS
, false);
2944 case CEPH_MSG_OSD_OPREPLY
:
2945 return get_reply(con
, hdr
, skip
);
2947 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type
,
2955 * Wrappers to refcount containing ceph_osd struct
2957 static struct ceph_connection
*get_osd_con(struct ceph_connection
*con
)
2959 struct ceph_osd
*osd
= con
->private;
2965 static void put_osd_con(struct ceph_connection
*con
)
2967 struct ceph_osd
*osd
= con
->private;
2975 * Note: returned pointer is the address of a structure that's
2976 * managed separately. Caller must *not* attempt to free it.
2978 static struct ceph_auth_handshake
*get_authorizer(struct ceph_connection
*con
,
2979 int *proto
, int force_new
)
2981 struct ceph_osd
*o
= con
->private;
2982 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2983 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2984 struct ceph_auth_handshake
*auth
= &o
->o_auth
;
2986 if (force_new
&& auth
->authorizer
) {
2987 ceph_auth_destroy_authorizer(ac
, auth
->authorizer
);
2988 auth
->authorizer
= NULL
;
2990 if (!auth
->authorizer
) {
2991 int ret
= ceph_auth_create_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
,
2994 return ERR_PTR(ret
);
2996 int ret
= ceph_auth_update_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
,
2999 return ERR_PTR(ret
);
3001 *proto
= ac
->protocol
;
3007 static int verify_authorizer_reply(struct ceph_connection
*con
, int len
)
3009 struct ceph_osd
*o
= con
->private;
3010 struct ceph_osd_client
*osdc
= o
->o_osdc
;
3011 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
3013 return ceph_auth_verify_authorizer_reply(ac
, o
->o_auth
.authorizer
, len
);
3016 static int invalidate_authorizer(struct ceph_connection
*con
)
3018 struct ceph_osd
*o
= con
->private;
3019 struct ceph_osd_client
*osdc
= o
->o_osdc
;
3020 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
3022 ceph_auth_invalidate_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
);
3023 return ceph_monc_validate_auth(&osdc
->client
->monc
);
3026 static int osd_sign_message(struct ceph_msg
*msg
)
3028 struct ceph_osd
*o
= msg
->con
->private;
3029 struct ceph_auth_handshake
*auth
= &o
->o_auth
;
3031 return ceph_auth_sign_message(auth
, msg
);
3034 static int osd_check_message_signature(struct ceph_msg
*msg
)
3036 struct ceph_osd
*o
= msg
->con
->private;
3037 struct ceph_auth_handshake
*auth
= &o
->o_auth
;
3039 return ceph_auth_check_message_signature(auth
, msg
);
3042 static const struct ceph_connection_operations osd_con_ops
= {
3045 .dispatch
= dispatch
,
3046 .get_authorizer
= get_authorizer
,
3047 .verify_authorizer_reply
= verify_authorizer_reply
,
3048 .invalidate_authorizer
= invalidate_authorizer
,
3049 .alloc_msg
= alloc_msg
,
3050 .sign_message
= osd_sign_message
,
3051 .check_message_signature
= osd_check_message_signature
,