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_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
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
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
)
70 r
= ceph_calc_file_object_mapping(layout
, off
, orig_len
, objnum
,
74 if (*objlen
< orig_len
) {
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
);
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
;
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
;
116 osd_data
->bio_length
= bio_length
;
118 #endif /* CONFIG_BLOCK */
120 #define osd_req_op_data(oreq, whch, typ, fld) \
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
,
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
,
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
);
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
:
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
;
253 case CEPH_OSD_DATA_TYPE_BIO
:
254 return (u64
)osd_data
->bio_length
;
255 #endif /* CONFIG_BLOCK */
257 WARN(true, "unrecognized data type %d\n", (int)osd_data
->type
);
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
) {
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
,
277 struct ceph_osd_req_op
*op
;
279 BUG_ON(which
>= osd_req
->r_num_ops
);
280 op
= &osd_req
->r_ops
[which
];
283 case CEPH_OSD_OP_READ
:
284 case CEPH_OSD_OP_WRITE
:
285 ceph_osd_data_release(&op
->extent
.osd_data
);
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
);
300 void ceph_osdc_release_request(struct kref
*kref
)
302 struct ceph_osd_request
*req
;
305 req
= container_of(kref
, struct ceph_osd_request
, r_kref
);
307 ceph_msg_put(req
->r_request
);
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
);
318 mempool_free(req
, req
->r_osdc
->req_mempool
);
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
,
331 struct ceph_osd_request
*req
;
332 struct ceph_msg
*msg
;
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 + CEPH_MAX_OID_NAME_LEN
; /* oid */
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 */
349 req
= mempool_alloc(osdc
->req_mempool
, gfp_flags
);
350 memset(req
, 0, sizeof(*req
));
352 req
= kmem_cache_zalloc(ceph_osd_request_cache
, gfp_flags
);
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 req
->r_base_oloc
.pool
= -1;
372 req
->r_target_oloc
.pool
= -1;
374 /* create reply message */
376 msg
= ceph_msgpool_get(&osdc
->msgpool_op_reply
, 0);
378 msg
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
,
379 OSD_OPREPLY_FRONT_LEN
, gfp_flags
, true);
381 ceph_osdc_put_request(req
);
386 /* create request message; allow space for oid */
388 msg
= ceph_msgpool_get(&osdc
->msgpool_op
, 0);
390 msg
= ceph_msg_new(CEPH_MSG_OSD_OP
, msg_size
, gfp_flags
, true);
392 ceph_osdc_put_request(req
);
396 memset(msg
->front
.iov_base
, 0, msg
->front
.iov_len
);
398 req
->r_request
= msg
;
402 EXPORT_SYMBOL(ceph_osdc_alloc_request
);
404 static bool osd_req_opcode_valid(u16 opcode
)
407 case CEPH_OSD_OP_READ
:
408 case CEPH_OSD_OP_STAT
:
409 case CEPH_OSD_OP_MAPEXT
:
410 case CEPH_OSD_OP_MASKTRUNC
:
411 case CEPH_OSD_OP_SPARSE_READ
:
412 case CEPH_OSD_OP_NOTIFY
:
413 case CEPH_OSD_OP_NOTIFY_ACK
:
414 case CEPH_OSD_OP_ASSERT_VER
:
415 case CEPH_OSD_OP_WRITE
:
416 case CEPH_OSD_OP_WRITEFULL
:
417 case CEPH_OSD_OP_TRUNCATE
:
418 case CEPH_OSD_OP_ZERO
:
419 case CEPH_OSD_OP_DELETE
:
420 case CEPH_OSD_OP_APPEND
:
421 case CEPH_OSD_OP_STARTSYNC
:
422 case CEPH_OSD_OP_SETTRUNC
:
423 case CEPH_OSD_OP_TRIMTRUNC
:
424 case CEPH_OSD_OP_TMAPUP
:
425 case CEPH_OSD_OP_TMAPPUT
:
426 case CEPH_OSD_OP_TMAPGET
:
427 case CEPH_OSD_OP_CREATE
:
428 case CEPH_OSD_OP_ROLLBACK
:
429 case CEPH_OSD_OP_WATCH
:
430 case CEPH_OSD_OP_OMAPGETKEYS
:
431 case CEPH_OSD_OP_OMAPGETVALS
:
432 case CEPH_OSD_OP_OMAPGETHEADER
:
433 case CEPH_OSD_OP_OMAPGETVALSBYKEYS
:
434 case CEPH_OSD_OP_OMAPSETVALS
:
435 case CEPH_OSD_OP_OMAPSETHEADER
:
436 case CEPH_OSD_OP_OMAPCLEAR
:
437 case CEPH_OSD_OP_OMAPRMKEYS
:
438 case CEPH_OSD_OP_OMAP_CMP
:
439 case CEPH_OSD_OP_SETALLOCHINT
:
440 case CEPH_OSD_OP_CLONERANGE
:
441 case CEPH_OSD_OP_ASSERT_SRC_VERSION
:
442 case CEPH_OSD_OP_SRC_CMPXATTR
:
443 case CEPH_OSD_OP_GETXATTR
:
444 case CEPH_OSD_OP_GETXATTRS
:
445 case CEPH_OSD_OP_CMPXATTR
:
446 case CEPH_OSD_OP_SETXATTR
:
447 case CEPH_OSD_OP_SETXATTRS
:
448 case CEPH_OSD_OP_RESETXATTRS
:
449 case CEPH_OSD_OP_RMXATTR
:
450 case CEPH_OSD_OP_PULL
:
451 case CEPH_OSD_OP_PUSH
:
452 case CEPH_OSD_OP_BALANCEREADS
:
453 case CEPH_OSD_OP_UNBALANCEREADS
:
454 case CEPH_OSD_OP_SCRUB
:
455 case CEPH_OSD_OP_SCRUB_RESERVE
:
456 case CEPH_OSD_OP_SCRUB_UNRESERVE
:
457 case CEPH_OSD_OP_SCRUB_STOP
:
458 case CEPH_OSD_OP_SCRUB_MAP
:
459 case CEPH_OSD_OP_WRLOCK
:
460 case CEPH_OSD_OP_WRUNLOCK
:
461 case CEPH_OSD_OP_RDLOCK
:
462 case CEPH_OSD_OP_RDUNLOCK
:
463 case CEPH_OSD_OP_UPLOCK
:
464 case CEPH_OSD_OP_DNLOCK
:
465 case CEPH_OSD_OP_CALL
:
466 case CEPH_OSD_OP_PGLS
:
467 case CEPH_OSD_OP_PGLS_FILTER
:
475 * This is an osd op init function for opcodes that have no data or
476 * other information associated with them. It also serves as a
477 * common init routine for all the other init functions, below.
479 static struct ceph_osd_req_op
*
480 _osd_req_op_init(struct ceph_osd_request
*osd_req
, unsigned int which
,
483 struct ceph_osd_req_op
*op
;
485 BUG_ON(which
>= osd_req
->r_num_ops
);
486 BUG_ON(!osd_req_opcode_valid(opcode
));
488 op
= &osd_req
->r_ops
[which
];
489 memset(op
, 0, sizeof (*op
));
495 void osd_req_op_init(struct ceph_osd_request
*osd_req
,
496 unsigned int which
, u16 opcode
)
498 (void)_osd_req_op_init(osd_req
, which
, opcode
);
500 EXPORT_SYMBOL(osd_req_op_init
);
502 void osd_req_op_extent_init(struct ceph_osd_request
*osd_req
,
503 unsigned int which
, u16 opcode
,
504 u64 offset
, u64 length
,
505 u64 truncate_size
, u32 truncate_seq
)
507 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
, opcode
);
508 size_t payload_len
= 0;
510 BUG_ON(opcode
!= CEPH_OSD_OP_READ
&& opcode
!= CEPH_OSD_OP_WRITE
&&
511 opcode
!= CEPH_OSD_OP_DELETE
&& opcode
!= CEPH_OSD_OP_ZERO
&&
512 opcode
!= CEPH_OSD_OP_TRUNCATE
);
514 op
->extent
.offset
= offset
;
515 op
->extent
.length
= length
;
516 op
->extent
.truncate_size
= truncate_size
;
517 op
->extent
.truncate_seq
= truncate_seq
;
518 if (opcode
== CEPH_OSD_OP_WRITE
)
519 payload_len
+= length
;
521 op
->payload_len
= payload_len
;
523 EXPORT_SYMBOL(osd_req_op_extent_init
);
525 void osd_req_op_extent_update(struct ceph_osd_request
*osd_req
,
526 unsigned int which
, u64 length
)
528 struct ceph_osd_req_op
*op
;
531 BUG_ON(which
>= osd_req
->r_num_ops
);
532 op
= &osd_req
->r_ops
[which
];
533 previous
= op
->extent
.length
;
535 if (length
== previous
)
536 return; /* Nothing to do */
537 BUG_ON(length
> previous
);
539 op
->extent
.length
= length
;
540 op
->payload_len
-= previous
- length
;
542 EXPORT_SYMBOL(osd_req_op_extent_update
);
544 void osd_req_op_cls_init(struct ceph_osd_request
*osd_req
, unsigned int which
,
545 u16 opcode
, const char *class, const char *method
)
547 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
, opcode
);
548 struct ceph_pagelist
*pagelist
;
549 size_t payload_len
= 0;
552 BUG_ON(opcode
!= CEPH_OSD_OP_CALL
);
554 pagelist
= kmalloc(sizeof (*pagelist
), GFP_NOFS
);
556 ceph_pagelist_init(pagelist
);
558 op
->cls
.class_name
= class;
559 size
= strlen(class);
560 BUG_ON(size
> (size_t) U8_MAX
);
561 op
->cls
.class_len
= size
;
562 ceph_pagelist_append(pagelist
, class, size
);
565 op
->cls
.method_name
= method
;
566 size
= strlen(method
);
567 BUG_ON(size
> (size_t) U8_MAX
);
568 op
->cls
.method_len
= size
;
569 ceph_pagelist_append(pagelist
, method
, size
);
572 osd_req_op_cls_request_info_pagelist(osd_req
, which
, pagelist
);
574 op
->cls
.argc
= 0; /* currently unused */
576 op
->payload_len
= payload_len
;
578 EXPORT_SYMBOL(osd_req_op_cls_init
);
580 void osd_req_op_watch_init(struct ceph_osd_request
*osd_req
,
581 unsigned int which
, u16 opcode
,
582 u64 cookie
, u64 version
, int flag
)
584 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
, opcode
);
586 BUG_ON(opcode
!= CEPH_OSD_OP_NOTIFY_ACK
&& opcode
!= CEPH_OSD_OP_WATCH
);
588 op
->watch
.cookie
= cookie
;
589 op
->watch
.ver
= version
;
590 if (opcode
== CEPH_OSD_OP_WATCH
&& flag
)
591 op
->watch
.flag
= (u8
)1;
593 EXPORT_SYMBOL(osd_req_op_watch_init
);
595 void osd_req_op_alloc_hint_init(struct ceph_osd_request
*osd_req
,
597 u64 expected_object_size
,
598 u64 expected_write_size
)
600 struct ceph_osd_req_op
*op
= _osd_req_op_init(osd_req
, which
,
601 CEPH_OSD_OP_SETALLOCHINT
);
603 op
->alloc_hint
.expected_object_size
= expected_object_size
;
604 op
->alloc_hint
.expected_write_size
= expected_write_size
;
607 * CEPH_OSD_OP_SETALLOCHINT op is advisory and therefore deemed
608 * not worth a feature bit. Set FAILOK per-op flag to make
609 * sure older osds don't trip over an unsupported opcode.
611 op
->flags
|= CEPH_OSD_OP_FLAG_FAILOK
;
613 EXPORT_SYMBOL(osd_req_op_alloc_hint_init
);
615 static void ceph_osdc_msg_data_add(struct ceph_msg
*msg
,
616 struct ceph_osd_data
*osd_data
)
618 u64 length
= ceph_osd_data_length(osd_data
);
620 if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGES
) {
621 BUG_ON(length
> (u64
) SIZE_MAX
);
623 ceph_msg_data_add_pages(msg
, osd_data
->pages
,
624 length
, osd_data
->alignment
);
625 } else if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGELIST
) {
627 ceph_msg_data_add_pagelist(msg
, osd_data
->pagelist
);
629 } else if (osd_data
->type
== CEPH_OSD_DATA_TYPE_BIO
) {
630 ceph_msg_data_add_bio(msg
, osd_data
->bio
, length
);
633 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_NONE
);
637 static u64
osd_req_encode_op(struct ceph_osd_request
*req
,
638 struct ceph_osd_op
*dst
, unsigned int which
)
640 struct ceph_osd_req_op
*src
;
641 struct ceph_osd_data
*osd_data
;
642 u64 request_data_len
= 0;
645 BUG_ON(which
>= req
->r_num_ops
);
646 src
= &req
->r_ops
[which
];
647 if (WARN_ON(!osd_req_opcode_valid(src
->op
))) {
648 pr_err("unrecognized osd opcode %d\n", src
->op
);
654 case CEPH_OSD_OP_STAT
:
655 osd_data
= &src
->raw_data_in
;
656 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
658 case CEPH_OSD_OP_READ
:
659 case CEPH_OSD_OP_WRITE
:
660 case CEPH_OSD_OP_ZERO
:
661 case CEPH_OSD_OP_DELETE
:
662 case CEPH_OSD_OP_TRUNCATE
:
663 if (src
->op
== CEPH_OSD_OP_WRITE
)
664 request_data_len
= src
->extent
.length
;
665 dst
->extent
.offset
= cpu_to_le64(src
->extent
.offset
);
666 dst
->extent
.length
= cpu_to_le64(src
->extent
.length
);
667 dst
->extent
.truncate_size
=
668 cpu_to_le64(src
->extent
.truncate_size
);
669 dst
->extent
.truncate_seq
=
670 cpu_to_le32(src
->extent
.truncate_seq
);
671 osd_data
= &src
->extent
.osd_data
;
672 if (src
->op
== CEPH_OSD_OP_WRITE
)
673 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
675 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
677 case CEPH_OSD_OP_CALL
:
678 dst
->cls
.class_len
= src
->cls
.class_len
;
679 dst
->cls
.method_len
= src
->cls
.method_len
;
680 osd_data
= &src
->cls
.request_info
;
681 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
682 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_PAGELIST
);
683 request_data_len
= osd_data
->pagelist
->length
;
685 osd_data
= &src
->cls
.request_data
;
686 data_length
= ceph_osd_data_length(osd_data
);
688 BUG_ON(osd_data
->type
== CEPH_OSD_DATA_TYPE_NONE
);
689 dst
->cls
.indata_len
= cpu_to_le32(data_length
);
690 ceph_osdc_msg_data_add(req
->r_request
, osd_data
);
691 src
->payload_len
+= data_length
;
692 request_data_len
+= data_length
;
694 osd_data
= &src
->cls
.response_data
;
695 ceph_osdc_msg_data_add(req
->r_reply
, osd_data
);
697 case CEPH_OSD_OP_STARTSYNC
:
699 case CEPH_OSD_OP_NOTIFY_ACK
:
700 case CEPH_OSD_OP_WATCH
:
701 dst
->watch
.cookie
= cpu_to_le64(src
->watch
.cookie
);
702 dst
->watch
.ver
= cpu_to_le64(src
->watch
.ver
);
703 dst
->watch
.flag
= src
->watch
.flag
;
705 case CEPH_OSD_OP_SETALLOCHINT
:
706 dst
->alloc_hint
.expected_object_size
=
707 cpu_to_le64(src
->alloc_hint
.expected_object_size
);
708 dst
->alloc_hint
.expected_write_size
=
709 cpu_to_le64(src
->alloc_hint
.expected_write_size
);
712 pr_err("unsupported osd opcode %s\n",
713 ceph_osd_op_name(src
->op
));
719 dst
->op
= cpu_to_le16(src
->op
);
720 dst
->flags
= cpu_to_le32(src
->flags
);
721 dst
->payload_len
= cpu_to_le32(src
->payload_len
);
723 return request_data_len
;
727 * build new request AND message, calculate layout, and adjust file
730 * if the file was recently truncated, we include information about its
731 * old and new size so that the object can be updated appropriately. (we
732 * avoid synchronously deleting truncated objects because it's slow.)
734 * if @do_sync, include a 'startsync' command so that the osd will flush
737 struct ceph_osd_request
*ceph_osdc_new_request(struct ceph_osd_client
*osdc
,
738 struct ceph_file_layout
*layout
,
739 struct ceph_vino vino
,
740 u64 off
, u64
*plen
, int num_ops
,
741 int opcode
, int flags
,
742 struct ceph_snap_context
*snapc
,
747 struct ceph_osd_request
*req
;
755 BUG_ON(opcode
!= CEPH_OSD_OP_READ
&& opcode
!= CEPH_OSD_OP_WRITE
&&
756 opcode
!= CEPH_OSD_OP_DELETE
&& opcode
!= CEPH_OSD_OP_ZERO
&&
757 opcode
!= CEPH_OSD_OP_TRUNCATE
);
759 req
= ceph_osdc_alloc_request(osdc
, snapc
, num_ops
, use_mempool
,
762 return ERR_PTR(-ENOMEM
);
764 req
->r_flags
= flags
;
766 /* calculate max write size */
767 r
= calc_layout(layout
, off
, plen
, &objnum
, &objoff
, &objlen
);
769 ceph_osdc_put_request(req
);
773 object_size
= le32_to_cpu(layout
->fl_object_size
);
774 object_base
= off
- objoff
;
775 if (!(truncate_seq
== 1 && truncate_size
== -1ULL)) {
776 if (truncate_size
<= object_base
) {
779 truncate_size
-= object_base
;
780 if (truncate_size
> object_size
)
781 truncate_size
= object_size
;
785 osd_req_op_extent_init(req
, 0, opcode
, objoff
, objlen
,
786 truncate_size
, truncate_seq
);
789 * A second op in the ops array means the caller wants to
790 * also issue a include a 'startsync' command so that the
791 * osd will flush data quickly.
794 osd_req_op_init(req
, 1, CEPH_OSD_OP_STARTSYNC
);
796 req
->r_base_oloc
.pool
= ceph_file_layout_pg_pool(*layout
);
798 snprintf(req
->r_base_oid
.name
, sizeof(req
->r_base_oid
.name
),
799 "%llx.%08llx", vino
.ino
, objnum
);
800 req
->r_base_oid
.name_len
= strlen(req
->r_base_oid
.name
);
804 EXPORT_SYMBOL(ceph_osdc_new_request
);
807 * We keep osd requests in an rbtree, sorted by ->r_tid.
809 static void __insert_request(struct ceph_osd_client
*osdc
,
810 struct ceph_osd_request
*new)
812 struct rb_node
**p
= &osdc
->requests
.rb_node
;
813 struct rb_node
*parent
= NULL
;
814 struct ceph_osd_request
*req
= NULL
;
818 req
= rb_entry(parent
, struct ceph_osd_request
, r_node
);
819 if (new->r_tid
< req
->r_tid
)
821 else if (new->r_tid
> req
->r_tid
)
827 rb_link_node(&new->r_node
, parent
, p
);
828 rb_insert_color(&new->r_node
, &osdc
->requests
);
831 static struct ceph_osd_request
*__lookup_request(struct ceph_osd_client
*osdc
,
834 struct ceph_osd_request
*req
;
835 struct rb_node
*n
= osdc
->requests
.rb_node
;
838 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
839 if (tid
< req
->r_tid
)
841 else if (tid
> req
->r_tid
)
849 static struct ceph_osd_request
*
850 __lookup_request_ge(struct ceph_osd_client
*osdc
,
853 struct ceph_osd_request
*req
;
854 struct rb_node
*n
= osdc
->requests
.rb_node
;
857 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
858 if (tid
< req
->r_tid
) {
862 } else if (tid
> req
->r_tid
) {
872 * Resubmit requests pending on the given osd.
874 static void __kick_osd_requests(struct ceph_osd_client
*osdc
,
875 struct ceph_osd
*osd
)
877 struct ceph_osd_request
*req
, *nreq
;
881 dout("__kick_osd_requests osd%d\n", osd
->o_osd
);
882 err
= __reset_osd(osdc
, osd
);
886 * Build up a list of requests to resend by traversing the
887 * osd's list of requests. Requests for a given object are
888 * sent in tid order, and that is also the order they're
889 * kept on this list. Therefore all requests that are in
890 * flight will be found first, followed by all requests that
891 * have not yet been sent. And to resend requests while
892 * preserving this order we will want to put any sent
893 * requests back on the front of the osd client's unsent
896 * So we build a separate ordered list of already-sent
897 * requests for the affected osd and splice it onto the
898 * front of the osd client's unsent list. Once we've seen a
899 * request that has not yet been sent we're done. Those
900 * requests are already sitting right where they belong.
902 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
) {
905 list_move_tail(&req
->r_req_lru_item
, &resend
);
906 dout("requeueing %p tid %llu osd%d\n", req
, req
->r_tid
,
909 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
911 list_splice(&resend
, &osdc
->req_unsent
);
914 * Linger requests are re-registered before sending, which
915 * sets up a new tid for each. We add them to the unsent
916 * list at the end to keep things in tid order.
918 list_for_each_entry_safe(req
, nreq
, &osd
->o_linger_requests
,
921 * reregister request prior to unregistering linger so
922 * that r_osd is preserved.
924 BUG_ON(!list_empty(&req
->r_req_lru_item
));
925 __register_request(osdc
, req
);
926 list_add_tail(&req
->r_req_lru_item
, &osdc
->req_unsent
);
927 list_add_tail(&req
->r_osd_item
, &req
->r_osd
->o_requests
);
928 __unregister_linger_request(osdc
, req
);
929 dout("requeued lingering %p tid %llu osd%d\n", req
, req
->r_tid
,
935 * If the osd connection drops, we need to resubmit all requests.
937 static void osd_reset(struct ceph_connection
*con
)
939 struct ceph_osd
*osd
= con
->private;
940 struct ceph_osd_client
*osdc
;
944 dout("osd_reset osd%d\n", osd
->o_osd
);
946 down_read(&osdc
->map_sem
);
947 mutex_lock(&osdc
->request_mutex
);
948 __kick_osd_requests(osdc
, osd
);
950 mutex_unlock(&osdc
->request_mutex
);
951 up_read(&osdc
->map_sem
);
955 * Track open sessions with osds.
957 static struct ceph_osd
*create_osd(struct ceph_osd_client
*osdc
, int onum
)
959 struct ceph_osd
*osd
;
961 osd
= kzalloc(sizeof(*osd
), GFP_NOFS
);
965 atomic_set(&osd
->o_ref
, 1);
968 RB_CLEAR_NODE(&osd
->o_node
);
969 INIT_LIST_HEAD(&osd
->o_requests
);
970 INIT_LIST_HEAD(&osd
->o_linger_requests
);
971 INIT_LIST_HEAD(&osd
->o_osd_lru
);
972 osd
->o_incarnation
= 1;
974 ceph_con_init(&osd
->o_con
, osd
, &osd_con_ops
, &osdc
->client
->msgr
);
976 INIT_LIST_HEAD(&osd
->o_keepalive_item
);
980 static struct ceph_osd
*get_osd(struct ceph_osd
*osd
)
982 if (atomic_inc_not_zero(&osd
->o_ref
)) {
983 dout("get_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
)-1,
984 atomic_read(&osd
->o_ref
));
987 dout("get_osd %p FAIL\n", osd
);
992 static void put_osd(struct ceph_osd
*osd
)
994 dout("put_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
),
995 atomic_read(&osd
->o_ref
) - 1);
996 if (atomic_dec_and_test(&osd
->o_ref
)) {
997 if (osd
->o_auth
.authorizer
)
998 ceph_auth_destroy_authorizer(osd
->o_auth
.authorizer
);
1004 * remove an osd from our map
1006 static void __remove_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1008 dout("%s %p osd%d\n", __func__
, osd
, osd
->o_osd
);
1009 WARN_ON(!list_empty(&osd
->o_requests
));
1010 WARN_ON(!list_empty(&osd
->o_linger_requests
));
1012 list_del_init(&osd
->o_osd_lru
);
1013 rb_erase(&osd
->o_node
, &osdc
->osds
);
1014 RB_CLEAR_NODE(&osd
->o_node
);
1017 static void remove_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1019 dout("%s %p osd%d\n", __func__
, osd
, osd
->o_osd
);
1021 if (!RB_EMPTY_NODE(&osd
->o_node
)) {
1022 ceph_con_close(&osd
->o_con
);
1023 __remove_osd(osdc
, osd
);
1028 static void remove_all_osds(struct ceph_osd_client
*osdc
)
1030 dout("%s %p\n", __func__
, osdc
);
1031 mutex_lock(&osdc
->request_mutex
);
1032 while (!RB_EMPTY_ROOT(&osdc
->osds
)) {
1033 struct ceph_osd
*osd
= rb_entry(rb_first(&osdc
->osds
),
1034 struct ceph_osd
, o_node
);
1035 remove_osd(osdc
, osd
);
1037 mutex_unlock(&osdc
->request_mutex
);
1040 static void __move_osd_to_lru(struct ceph_osd_client
*osdc
,
1041 struct ceph_osd
*osd
)
1043 dout("__move_osd_to_lru %p\n", osd
);
1044 BUG_ON(!list_empty(&osd
->o_osd_lru
));
1045 list_add_tail(&osd
->o_osd_lru
, &osdc
->osd_lru
);
1046 osd
->lru_ttl
= jiffies
+ osdc
->client
->options
->osd_idle_ttl
* HZ
;
1049 static void __remove_osd_from_lru(struct ceph_osd
*osd
)
1051 dout("__remove_osd_from_lru %p\n", osd
);
1052 if (!list_empty(&osd
->o_osd_lru
))
1053 list_del_init(&osd
->o_osd_lru
);
1056 static void remove_old_osds(struct ceph_osd_client
*osdc
)
1058 struct ceph_osd
*osd
, *nosd
;
1060 dout("__remove_old_osds %p\n", osdc
);
1061 mutex_lock(&osdc
->request_mutex
);
1062 list_for_each_entry_safe(osd
, nosd
, &osdc
->osd_lru
, o_osd_lru
) {
1063 if (time_before(jiffies
, osd
->lru_ttl
))
1065 remove_osd(osdc
, osd
);
1067 mutex_unlock(&osdc
->request_mutex
);
1073 static int __reset_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
1075 struct ceph_entity_addr
*peer_addr
;
1077 dout("__reset_osd %p osd%d\n", osd
, osd
->o_osd
);
1078 if (list_empty(&osd
->o_requests
) &&
1079 list_empty(&osd
->o_linger_requests
)) {
1080 remove_osd(osdc
, osd
);
1084 peer_addr
= &osdc
->osdmap
->osd_addr
[osd
->o_osd
];
1085 if (!memcmp(peer_addr
, &osd
->o_con
.peer_addr
, sizeof (*peer_addr
)) &&
1086 !ceph_con_opened(&osd
->o_con
)) {
1087 struct ceph_osd_request
*req
;
1089 dout("osd addr hasn't changed and connection never opened, "
1090 "letting msgr retry\n");
1091 /* touch each r_stamp for handle_timeout()'s benfit */
1092 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
)
1093 req
->r_stamp
= jiffies
;
1098 ceph_con_close(&osd
->o_con
);
1099 ceph_con_open(&osd
->o_con
, CEPH_ENTITY_TYPE_OSD
, osd
->o_osd
, peer_addr
);
1100 osd
->o_incarnation
++;
1105 static void __insert_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*new)
1107 struct rb_node
**p
= &osdc
->osds
.rb_node
;
1108 struct rb_node
*parent
= NULL
;
1109 struct ceph_osd
*osd
= NULL
;
1111 dout("__insert_osd %p osd%d\n", new, new->o_osd
);
1114 osd
= rb_entry(parent
, struct ceph_osd
, o_node
);
1115 if (new->o_osd
< osd
->o_osd
)
1117 else if (new->o_osd
> osd
->o_osd
)
1118 p
= &(*p
)->rb_right
;
1123 rb_link_node(&new->o_node
, parent
, p
);
1124 rb_insert_color(&new->o_node
, &osdc
->osds
);
1127 static struct ceph_osd
*__lookup_osd(struct ceph_osd_client
*osdc
, int o
)
1129 struct ceph_osd
*osd
;
1130 struct rb_node
*n
= osdc
->osds
.rb_node
;
1133 osd
= rb_entry(n
, struct ceph_osd
, o_node
);
1136 else if (o
> osd
->o_osd
)
1144 static void __schedule_osd_timeout(struct ceph_osd_client
*osdc
)
1146 schedule_delayed_work(&osdc
->timeout_work
,
1147 osdc
->client
->options
->osd_keepalive_timeout
* HZ
);
1150 static void __cancel_osd_timeout(struct ceph_osd_client
*osdc
)
1152 cancel_delayed_work(&osdc
->timeout_work
);
1156 * Register request, assign tid. If this is the first request, set up
1157 * the timeout event.
1159 static void __register_request(struct ceph_osd_client
*osdc
,
1160 struct ceph_osd_request
*req
)
1162 req
->r_tid
= ++osdc
->last_tid
;
1163 req
->r_request
->hdr
.tid
= cpu_to_le64(req
->r_tid
);
1164 dout("__register_request %p tid %lld\n", req
, req
->r_tid
);
1165 __insert_request(osdc
, req
);
1166 ceph_osdc_get_request(req
);
1167 osdc
->num_requests
++;
1168 if (osdc
->num_requests
== 1) {
1169 dout(" first request, scheduling timeout\n");
1170 __schedule_osd_timeout(osdc
);
1175 * called under osdc->request_mutex
1177 static void __unregister_request(struct ceph_osd_client
*osdc
,
1178 struct ceph_osd_request
*req
)
1180 if (RB_EMPTY_NODE(&req
->r_node
)) {
1181 dout("__unregister_request %p tid %lld not registered\n",
1186 dout("__unregister_request %p tid %lld\n", req
, req
->r_tid
);
1187 rb_erase(&req
->r_node
, &osdc
->requests
);
1188 osdc
->num_requests
--;
1191 /* make sure the original request isn't in flight. */
1192 ceph_msg_revoke(req
->r_request
);
1194 list_del_init(&req
->r_osd_item
);
1195 if (list_empty(&req
->r_osd
->o_requests
) &&
1196 list_empty(&req
->r_osd
->o_linger_requests
)) {
1197 dout("moving osd to %p lru\n", req
->r_osd
);
1198 __move_osd_to_lru(osdc
, req
->r_osd
);
1200 if (list_empty(&req
->r_linger_item
))
1204 list_del_init(&req
->r_req_lru_item
);
1205 ceph_osdc_put_request(req
);
1207 if (osdc
->num_requests
== 0) {
1208 dout(" no requests, canceling timeout\n");
1209 __cancel_osd_timeout(osdc
);
1214 * Cancel a previously queued request message
1216 static void __cancel_request(struct ceph_osd_request
*req
)
1218 if (req
->r_sent
&& req
->r_osd
) {
1219 ceph_msg_revoke(req
->r_request
);
1224 static void __register_linger_request(struct ceph_osd_client
*osdc
,
1225 struct ceph_osd_request
*req
)
1227 dout("__register_linger_request %p\n", req
);
1228 ceph_osdc_get_request(req
);
1229 list_add_tail(&req
->r_linger_item
, &osdc
->req_linger
);
1231 list_add_tail(&req
->r_linger_osd
,
1232 &req
->r_osd
->o_linger_requests
);
1235 static void __unregister_linger_request(struct ceph_osd_client
*osdc
,
1236 struct ceph_osd_request
*req
)
1238 dout("__unregister_linger_request %p\n", req
);
1239 list_del_init(&req
->r_linger_item
);
1241 list_del_init(&req
->r_linger_osd
);
1243 if (list_empty(&req
->r_osd
->o_requests
) &&
1244 list_empty(&req
->r_osd
->o_linger_requests
)) {
1245 dout("moving osd to %p lru\n", req
->r_osd
);
1246 __move_osd_to_lru(osdc
, req
->r_osd
);
1248 if (list_empty(&req
->r_osd_item
))
1251 ceph_osdc_put_request(req
);
1254 void ceph_osdc_unregister_linger_request(struct ceph_osd_client
*osdc
,
1255 struct ceph_osd_request
*req
)
1257 mutex_lock(&osdc
->request_mutex
);
1258 if (req
->r_linger
) {
1260 __unregister_linger_request(osdc
, req
);
1262 mutex_unlock(&osdc
->request_mutex
);
1264 EXPORT_SYMBOL(ceph_osdc_unregister_linger_request
);
1266 void ceph_osdc_set_request_linger(struct ceph_osd_client
*osdc
,
1267 struct ceph_osd_request
*req
)
1269 if (!req
->r_linger
) {
1270 dout("set_request_linger %p\n", req
);
1274 EXPORT_SYMBOL(ceph_osdc_set_request_linger
);
1277 * Returns whether a request should be blocked from being sent
1278 * based on the current osdmap and osd_client settings.
1280 * Caller should hold map_sem for read.
1282 static bool __req_should_be_paused(struct ceph_osd_client
*osdc
,
1283 struct ceph_osd_request
*req
)
1285 bool pauserd
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSERD
);
1286 bool pausewr
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSEWR
) ||
1287 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
);
1288 return (req
->r_flags
& CEPH_OSD_FLAG_READ
&& pauserd
) ||
1289 (req
->r_flags
& CEPH_OSD_FLAG_WRITE
&& pausewr
);
1293 * Calculate mapping of a request to a PG. Takes tiering into account.
1295 static int __calc_request_pg(struct ceph_osdmap
*osdmap
,
1296 struct ceph_osd_request
*req
,
1297 struct ceph_pg
*pg_out
)
1299 bool need_check_tiering
;
1301 need_check_tiering
= false;
1302 if (req
->r_target_oloc
.pool
== -1) {
1303 req
->r_target_oloc
= req
->r_base_oloc
; /* struct */
1304 need_check_tiering
= true;
1306 if (req
->r_target_oid
.name_len
== 0) {
1307 ceph_oid_copy(&req
->r_target_oid
, &req
->r_base_oid
);
1308 need_check_tiering
= true;
1311 if (need_check_tiering
&&
1312 (req
->r_flags
& CEPH_OSD_FLAG_IGNORE_OVERLAY
) == 0) {
1313 struct ceph_pg_pool_info
*pi
;
1315 pi
= ceph_pg_pool_by_id(osdmap
, req
->r_target_oloc
.pool
);
1317 if ((req
->r_flags
& CEPH_OSD_FLAG_READ
) &&
1319 req
->r_target_oloc
.pool
= pi
->read_tier
;
1320 if ((req
->r_flags
& CEPH_OSD_FLAG_WRITE
) &&
1321 pi
->write_tier
>= 0)
1322 req
->r_target_oloc
.pool
= pi
->write_tier
;
1324 /* !pi is caught in ceph_oloc_oid_to_pg() */
1327 return ceph_oloc_oid_to_pg(osdmap
, &req
->r_target_oloc
,
1328 &req
->r_target_oid
, pg_out
);
1332 * Pick an osd (the first 'up' osd in the pg), allocate the osd struct
1333 * (as needed), and set the request r_osd appropriately. If there is
1334 * no up osd, set r_osd to NULL. Move the request to the appropriate list
1335 * (unsent, homeless) or leave on in-flight lru.
1337 * Return 0 if unchanged, 1 if changed, or negative on error.
1339 * Caller should hold map_sem for read and request_mutex.
1341 static int __map_request(struct ceph_osd_client
*osdc
,
1342 struct ceph_osd_request
*req
, int force_resend
)
1344 struct ceph_pg pgid
;
1345 int acting
[CEPH_PG_MAX_SIZE
];
1350 dout("map_request %p tid %lld\n", req
, req
->r_tid
);
1352 err
= __calc_request_pg(osdc
->osdmap
, req
, &pgid
);
1354 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1359 num
= ceph_calc_pg_acting(osdc
->osdmap
, pgid
, acting
, &o
);
1363 was_paused
= req
->r_paused
;
1364 req
->r_paused
= __req_should_be_paused(osdc
, req
);
1365 if (was_paused
&& !req
->r_paused
)
1368 if ((!force_resend
&&
1369 req
->r_osd
&& req
->r_osd
->o_osd
== o
&&
1370 req
->r_sent
>= req
->r_osd
->o_incarnation
&&
1371 req
->r_num_pg_osds
== num
&&
1372 memcmp(req
->r_pg_osds
, acting
, sizeof(acting
[0])*num
) == 0) ||
1373 (req
->r_osd
== NULL
&& o
== -1) ||
1375 return 0; /* no change */
1377 dout("map_request tid %llu pgid %lld.%x osd%d (was osd%d)\n",
1378 req
->r_tid
, pgid
.pool
, pgid
.seed
, o
,
1379 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1381 /* record full pg acting set */
1382 memcpy(req
->r_pg_osds
, acting
, sizeof(acting
[0]) * num
);
1383 req
->r_num_pg_osds
= num
;
1386 __cancel_request(req
);
1387 list_del_init(&req
->r_osd_item
);
1391 req
->r_osd
= __lookup_osd(osdc
, o
);
1392 if (!req
->r_osd
&& o
>= 0) {
1394 req
->r_osd
= create_osd(osdc
, o
);
1396 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1400 dout("map_request osd %p is osd%d\n", req
->r_osd
, o
);
1401 __insert_osd(osdc
, req
->r_osd
);
1403 ceph_con_open(&req
->r_osd
->o_con
,
1404 CEPH_ENTITY_TYPE_OSD
, o
,
1405 &osdc
->osdmap
->osd_addr
[o
]);
1409 __remove_osd_from_lru(req
->r_osd
);
1410 list_add_tail(&req
->r_osd_item
, &req
->r_osd
->o_requests
);
1411 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_unsent
);
1413 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1415 err
= 1; /* osd or pg changed */
1422 * caller should hold map_sem (for read) and request_mutex
1424 static void __send_request(struct ceph_osd_client
*osdc
,
1425 struct ceph_osd_request
*req
)
1429 dout("send_request %p tid %llu to osd%d flags %d pg %lld.%x\n",
1430 req
, req
->r_tid
, req
->r_osd
->o_osd
, req
->r_flags
,
1431 (unsigned long long)req
->r_pgid
.pool
, req
->r_pgid
.seed
);
1433 /* fill in message content that changes each time we send it */
1434 put_unaligned_le32(osdc
->osdmap
->epoch
, req
->r_request_osdmap_epoch
);
1435 put_unaligned_le32(req
->r_flags
, req
->r_request_flags
);
1436 put_unaligned_le64(req
->r_target_oloc
.pool
, req
->r_request_pool
);
1437 p
= req
->r_request_pgid
;
1438 ceph_encode_64(&p
, req
->r_pgid
.pool
);
1439 ceph_encode_32(&p
, req
->r_pgid
.seed
);
1440 put_unaligned_le64(1, req
->r_request_attempts
); /* FIXME */
1441 memcpy(req
->r_request_reassert_version
, &req
->r_reassert_version
,
1442 sizeof(req
->r_reassert_version
));
1444 req
->r_stamp
= jiffies
;
1445 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_lru
);
1447 ceph_msg_get(req
->r_request
); /* send consumes a ref */
1449 req
->r_sent
= req
->r_osd
->o_incarnation
;
1451 ceph_con_send(&req
->r_osd
->o_con
, req
->r_request
);
1455 * Send any requests in the queue (req_unsent).
1457 static void __send_queued(struct ceph_osd_client
*osdc
)
1459 struct ceph_osd_request
*req
, *tmp
;
1461 dout("__send_queued\n");
1462 list_for_each_entry_safe(req
, tmp
, &osdc
->req_unsent
, r_req_lru_item
)
1463 __send_request(osdc
, req
);
1467 * Caller should hold map_sem for read and request_mutex.
1469 static int __ceph_osdc_start_request(struct ceph_osd_client
*osdc
,
1470 struct ceph_osd_request
*req
,
1475 __register_request(osdc
, req
);
1477 req
->r_got_reply
= 0;
1478 rc
= __map_request(osdc
, req
, 0);
1481 dout("osdc_start_request failed map, "
1482 " will retry %lld\n", req
->r_tid
);
1485 __unregister_request(osdc
, req
);
1490 if (req
->r_osd
== NULL
) {
1491 dout("send_request %p no up osds in pg\n", req
);
1492 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1494 __send_queued(osdc
);
1501 * Timeout callback, called every N seconds when 1 or more osd
1502 * requests has been active for more than N seconds. When this
1503 * happens, we ping all OSDs with requests who have timed out to
1504 * ensure any communications channel reset is detected. Reset the
1505 * request timeouts another N seconds in the future as we go.
1506 * Reschedule the timeout event another N seconds in future (unless
1507 * there are no open requests).
1509 static void handle_timeout(struct work_struct
*work
)
1511 struct ceph_osd_client
*osdc
=
1512 container_of(work
, struct ceph_osd_client
, timeout_work
.work
);
1513 struct ceph_osd_request
*req
;
1514 struct ceph_osd
*osd
;
1515 unsigned long keepalive
=
1516 osdc
->client
->options
->osd_keepalive_timeout
* HZ
;
1517 struct list_head slow_osds
;
1519 down_read(&osdc
->map_sem
);
1521 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1523 mutex_lock(&osdc
->request_mutex
);
1526 * ping osds that are a bit slow. this ensures that if there
1527 * is a break in the TCP connection we will notice, and reopen
1528 * a connection with that osd (from the fault callback).
1530 INIT_LIST_HEAD(&slow_osds
);
1531 list_for_each_entry(req
, &osdc
->req_lru
, r_req_lru_item
) {
1532 if (time_before(jiffies
, req
->r_stamp
+ keepalive
))
1537 dout(" tid %llu is slow, will send keepalive on osd%d\n",
1538 req
->r_tid
, osd
->o_osd
);
1539 list_move_tail(&osd
->o_keepalive_item
, &slow_osds
);
1541 while (!list_empty(&slow_osds
)) {
1542 osd
= list_entry(slow_osds
.next
, struct ceph_osd
,
1544 list_del_init(&osd
->o_keepalive_item
);
1545 ceph_con_keepalive(&osd
->o_con
);
1548 __schedule_osd_timeout(osdc
);
1549 __send_queued(osdc
);
1550 mutex_unlock(&osdc
->request_mutex
);
1551 up_read(&osdc
->map_sem
);
1554 static void handle_osds_timeout(struct work_struct
*work
)
1556 struct ceph_osd_client
*osdc
=
1557 container_of(work
, struct ceph_osd_client
,
1558 osds_timeout_work
.work
);
1559 unsigned long delay
=
1560 osdc
->client
->options
->osd_idle_ttl
* HZ
>> 2;
1562 dout("osds timeout\n");
1563 down_read(&osdc
->map_sem
);
1564 remove_old_osds(osdc
);
1565 up_read(&osdc
->map_sem
);
1567 schedule_delayed_work(&osdc
->osds_timeout_work
,
1568 round_jiffies_relative(delay
));
1571 static int ceph_oloc_decode(void **p
, void *end
,
1572 struct ceph_object_locator
*oloc
)
1574 u8 struct_v
, struct_cv
;
1579 ceph_decode_need(p
, end
, 1 + 1 + 4, e_inval
);
1580 struct_v
= ceph_decode_8(p
);
1581 struct_cv
= ceph_decode_8(p
);
1583 pr_warn("got v %d < 3 cv %d of ceph_object_locator\n",
1584 struct_v
, struct_cv
);
1587 if (struct_cv
> 6) {
1588 pr_warn("got v %d cv %d > 6 of ceph_object_locator\n",
1589 struct_v
, struct_cv
);
1592 len
= ceph_decode_32(p
);
1593 ceph_decode_need(p
, end
, len
, e_inval
);
1594 struct_end
= *p
+ len
;
1596 oloc
->pool
= ceph_decode_64(p
);
1597 *p
+= 4; /* skip preferred */
1599 len
= ceph_decode_32(p
);
1601 pr_warn("ceph_object_locator::key is set\n");
1605 if (struct_v
>= 5) {
1606 len
= ceph_decode_32(p
);
1608 pr_warn("ceph_object_locator::nspace is set\n");
1613 if (struct_v
>= 6) {
1614 s64 hash
= ceph_decode_64(p
);
1616 pr_warn("ceph_object_locator::hash is set\n");
1631 static int ceph_redirect_decode(void **p
, void *end
,
1632 struct ceph_request_redirect
*redir
)
1634 u8 struct_v
, struct_cv
;
1639 ceph_decode_need(p
, end
, 1 + 1 + 4, e_inval
);
1640 struct_v
= ceph_decode_8(p
);
1641 struct_cv
= ceph_decode_8(p
);
1642 if (struct_cv
> 1) {
1643 pr_warn("got v %d cv %d > 1 of ceph_request_redirect\n",
1644 struct_v
, struct_cv
);
1647 len
= ceph_decode_32(p
);
1648 ceph_decode_need(p
, end
, len
, e_inval
);
1649 struct_end
= *p
+ len
;
1651 ret
= ceph_oloc_decode(p
, end
, &redir
->oloc
);
1655 len
= ceph_decode_32(p
);
1657 pr_warn("ceph_request_redirect::object_name is set\n");
1661 len
= ceph_decode_32(p
);
1662 *p
+= len
; /* skip osd_instructions */
1674 static void complete_request(struct ceph_osd_request
*req
)
1676 complete_all(&req
->r_safe_completion
); /* fsync waiter */
1680 * handle osd op reply. either call the callback if it is specified,
1681 * or do the completion to wake up the waiting thread.
1683 static void handle_reply(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
,
1684 struct ceph_connection
*con
)
1687 struct ceph_osd_request
*req
;
1688 struct ceph_request_redirect redir
;
1691 unsigned int numops
;
1692 int payload_len
, flags
;
1698 u64 reassert_version
;
1700 int already_completed
;
1704 tid
= le64_to_cpu(msg
->hdr
.tid
);
1705 dout("handle_reply %p tid %llu\n", msg
, tid
);
1707 p
= msg
->front
.iov_base
;
1708 end
= p
+ msg
->front
.iov_len
;
1710 ceph_decode_need(&p
, end
, 4, bad
);
1711 object_len
= ceph_decode_32(&p
);
1712 ceph_decode_need(&p
, end
, object_len
, bad
);
1715 err
= ceph_decode_pgid(&p
, end
, &pg
);
1719 ceph_decode_need(&p
, end
, 8 + 4 + 4 + 8 + 4, bad
);
1720 flags
= ceph_decode_64(&p
);
1721 result
= ceph_decode_32(&p
);
1722 reassert_epoch
= ceph_decode_32(&p
);
1723 reassert_version
= ceph_decode_64(&p
);
1724 osdmap_epoch
= ceph_decode_32(&p
);
1727 down_read(&osdc
->map_sem
);
1728 mutex_lock(&osdc
->request_mutex
);
1729 req
= __lookup_request(osdc
, tid
);
1731 dout("handle_reply tid %llu dne\n", tid
);
1734 ceph_osdc_get_request(req
);
1736 dout("handle_reply %p tid %llu req %p result %d\n", msg
, tid
,
1739 ceph_decode_need(&p
, end
, 4, bad_put
);
1740 numops
= ceph_decode_32(&p
);
1741 if (numops
> CEPH_OSD_MAX_OP
)
1743 if (numops
!= req
->r_num_ops
)
1746 ceph_decode_need(&p
, end
, numops
* sizeof(struct ceph_osd_op
), bad_put
);
1747 for (i
= 0; i
< numops
; i
++) {
1748 struct ceph_osd_op
*op
= p
;
1751 len
= le32_to_cpu(op
->payload_len
);
1752 req
->r_reply_op_len
[i
] = len
;
1753 dout(" op %d has %d bytes\n", i
, len
);
1757 bytes
= le32_to_cpu(msg
->hdr
.data_len
);
1758 if (payload_len
!= bytes
) {
1759 pr_warning("sum of op payload lens %d != data_len %d",
1760 payload_len
, bytes
);
1764 ceph_decode_need(&p
, end
, 4 + numops
* 4, bad_put
);
1765 retry_attempt
= ceph_decode_32(&p
);
1766 for (i
= 0; i
< numops
; i
++)
1767 req
->r_reply_op_result
[i
] = ceph_decode_32(&p
);
1769 if (le16_to_cpu(msg
->hdr
.version
) >= 6) {
1770 p
+= 8 + 4; /* skip replay_version */
1771 p
+= 8; /* skip user_version */
1773 err
= ceph_redirect_decode(&p
, end
, &redir
);
1777 redir
.oloc
.pool
= -1;
1780 if (redir
.oloc
.pool
!= -1) {
1781 dout("redirect pool %lld\n", redir
.oloc
.pool
);
1783 __unregister_request(osdc
, req
);
1785 req
->r_target_oloc
= redir
.oloc
; /* struct */
1788 * Start redirect requests with nofail=true. If
1789 * mapping fails, request will end up on the notarget
1790 * list, waiting for the new osdmap (which can take
1791 * a while), even though the original request mapped
1792 * successfully. In the future we might want to follow
1793 * original request's nofail setting here.
1795 err
= __ceph_osdc_start_request(osdc
, req
, true);
1801 already_completed
= req
->r_got_reply
;
1802 if (!req
->r_got_reply
) {
1803 req
->r_result
= result
;
1804 dout("handle_reply result %d bytes %d\n", req
->r_result
,
1806 if (req
->r_result
== 0)
1807 req
->r_result
= bytes
;
1809 /* in case this is a write and we need to replay, */
1810 req
->r_reassert_version
.epoch
= cpu_to_le32(reassert_epoch
);
1811 req
->r_reassert_version
.version
= cpu_to_le64(reassert_version
);
1813 req
->r_got_reply
= 1;
1814 } else if ((flags
& CEPH_OSD_FLAG_ONDISK
) == 0) {
1815 dout("handle_reply tid %llu dup ack\n", tid
);
1819 dout("handle_reply tid %llu flags %d\n", tid
, flags
);
1821 if (req
->r_linger
&& (flags
& CEPH_OSD_FLAG_ONDISK
))
1822 __register_linger_request(osdc
, req
);
1824 /* either this is a read, or we got the safe response */
1826 (flags
& CEPH_OSD_FLAG_ONDISK
) ||
1827 ((flags
& CEPH_OSD_FLAG_WRITE
) == 0))
1828 __unregister_request(osdc
, req
);
1830 mutex_unlock(&osdc
->request_mutex
);
1831 up_read(&osdc
->map_sem
);
1833 if (!already_completed
) {
1834 if (req
->r_unsafe_callback
&&
1835 result
>= 0 && !(flags
& CEPH_OSD_FLAG_ONDISK
))
1836 req
->r_unsafe_callback(req
, true);
1837 if (req
->r_callback
)
1838 req
->r_callback(req
, msg
);
1840 complete_all(&req
->r_completion
);
1843 if (flags
& CEPH_OSD_FLAG_ONDISK
) {
1844 if (req
->r_unsafe_callback
&& already_completed
)
1845 req
->r_unsafe_callback(req
, false);
1846 complete_request(req
);
1850 dout("req=%p req->r_linger=%d\n", req
, req
->r_linger
);
1851 ceph_osdc_put_request(req
);
1854 mutex_unlock(&osdc
->request_mutex
);
1855 up_read(&osdc
->map_sem
);
1859 req
->r_result
= -EIO
;
1860 __unregister_request(osdc
, req
);
1861 if (req
->r_callback
)
1862 req
->r_callback(req
, msg
);
1864 complete_all(&req
->r_completion
);
1865 complete_request(req
);
1866 ceph_osdc_put_request(req
);
1868 mutex_unlock(&osdc
->request_mutex
);
1869 up_read(&osdc
->map_sem
);
1871 pr_err("corrupt osd_op_reply got %d %d\n",
1872 (int)msg
->front
.iov_len
, le32_to_cpu(msg
->hdr
.front_len
));
1876 static void reset_changed_osds(struct ceph_osd_client
*osdc
)
1878 struct rb_node
*p
, *n
;
1880 dout("%s %p\n", __func__
, osdc
);
1881 for (p
= rb_first(&osdc
->osds
); p
; p
= n
) {
1882 struct ceph_osd
*osd
= rb_entry(p
, struct ceph_osd
, o_node
);
1885 if (!ceph_osd_is_up(osdc
->osdmap
, osd
->o_osd
) ||
1886 memcmp(&osd
->o_con
.peer_addr
,
1887 ceph_osd_addr(osdc
->osdmap
,
1889 sizeof(struct ceph_entity_addr
)) != 0)
1890 __reset_osd(osdc
, osd
);
1895 * Requeue requests whose mapping to an OSD has changed. If requests map to
1896 * no osd, request a new map.
1898 * Caller should hold map_sem for read.
1900 static void kick_requests(struct ceph_osd_client
*osdc
, bool force_resend
,
1901 bool force_resend_writes
)
1903 struct ceph_osd_request
*req
, *nreq
;
1907 bool force_resend_req
;
1909 dout("kick_requests %s %s\n", force_resend
? " (force resend)" : "",
1910 force_resend_writes
? " (force resend writes)" : "");
1911 mutex_lock(&osdc
->request_mutex
);
1912 for (p
= rb_first(&osdc
->requests
); p
; ) {
1913 req
= rb_entry(p
, struct ceph_osd_request
, r_node
);
1917 * For linger requests that have not yet been
1918 * registered, move them to the linger list; they'll
1919 * be sent to the osd in the loop below. Unregister
1920 * the request before re-registering it as a linger
1921 * request to ensure the __map_request() below
1922 * will decide it needs to be sent.
1924 if (req
->r_linger
&& list_empty(&req
->r_linger_item
)) {
1925 dout("%p tid %llu restart on osd%d\n",
1927 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1928 ceph_osdc_get_request(req
);
1929 __unregister_request(osdc
, req
);
1930 __register_linger_request(osdc
, req
);
1931 ceph_osdc_put_request(req
);
1935 force_resend_req
= force_resend
||
1936 (force_resend_writes
&&
1937 req
->r_flags
& CEPH_OSD_FLAG_WRITE
);
1938 err
= __map_request(osdc
, req
, force_resend_req
);
1940 continue; /* error */
1941 if (req
->r_osd
== NULL
) {
1942 dout("%p tid %llu maps to no osd\n", req
, req
->r_tid
);
1943 needmap
++; /* request a newer map */
1944 } else if (err
> 0) {
1945 if (!req
->r_linger
) {
1946 dout("%p tid %llu requeued on osd%d\n", req
,
1948 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1949 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
1954 list_for_each_entry_safe(req
, nreq
, &osdc
->req_linger
,
1956 dout("linger req=%p req->r_osd=%p\n", req
, req
->r_osd
);
1958 err
= __map_request(osdc
, req
,
1959 force_resend
|| force_resend_writes
);
1960 dout("__map_request returned %d\n", err
);
1962 continue; /* hrm! */
1963 if (req
->r_osd
== NULL
|| err
> 0) {
1964 if (req
->r_osd
== NULL
) {
1965 dout("lingering %p tid %llu maps to no osd\n",
1968 * A homeless lingering request makes
1969 * no sense, as it's job is to keep
1970 * a particular OSD connection open.
1971 * Request a newer map and kick the
1972 * request, knowing that it won't be
1973 * resent until we actually get a map
1974 * that can tell us where to send it.
1979 dout("kicking lingering %p tid %llu osd%d\n", req
,
1980 req
->r_tid
, req
->r_osd
? req
->r_osd
->o_osd
: -1);
1981 __register_request(osdc
, req
);
1982 __unregister_linger_request(osdc
, req
);
1985 reset_changed_osds(osdc
);
1986 mutex_unlock(&osdc
->request_mutex
);
1989 dout("%d requests for down osds, need new map\n", needmap
);
1990 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1996 * Process updated osd map.
1998 * The message contains any number of incremental and full maps, normally
1999 * indicating some sort of topology change in the cluster. Kick requests
2000 * off to different OSDs as needed.
2002 void ceph_osdc_handle_map(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
)
2004 void *p
, *end
, *next
;
2005 u32 nr_maps
, maplen
;
2007 struct ceph_osdmap
*newmap
= NULL
, *oldmap
;
2009 struct ceph_fsid fsid
;
2012 dout("handle_map have %u\n", osdc
->osdmap
? osdc
->osdmap
->epoch
: 0);
2013 p
= msg
->front
.iov_base
;
2014 end
= p
+ msg
->front
.iov_len
;
2017 ceph_decode_need(&p
, end
, sizeof(fsid
), bad
);
2018 ceph_decode_copy(&p
, &fsid
, sizeof(fsid
));
2019 if (ceph_check_fsid(osdc
->client
, &fsid
) < 0)
2022 down_write(&osdc
->map_sem
);
2024 was_full
= ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
);
2026 /* incremental maps */
2027 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
2028 dout(" %d inc maps\n", nr_maps
);
2029 while (nr_maps
> 0) {
2030 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
2031 epoch
= ceph_decode_32(&p
);
2032 maplen
= ceph_decode_32(&p
);
2033 ceph_decode_need(&p
, end
, maplen
, bad
);
2035 if (osdc
->osdmap
&& osdc
->osdmap
->epoch
+1 == epoch
) {
2036 dout("applying incremental map %u len %d\n",
2038 newmap
= osdmap_apply_incremental(&p
, next
,
2040 &osdc
->client
->msgr
);
2041 if (IS_ERR(newmap
)) {
2042 err
= PTR_ERR(newmap
);
2046 if (newmap
!= osdc
->osdmap
) {
2047 ceph_osdmap_destroy(osdc
->osdmap
);
2048 osdc
->osdmap
= newmap
;
2050 was_full
= was_full
||
2051 ceph_osdmap_flag(osdc
->osdmap
,
2053 kick_requests(osdc
, 0, was_full
);
2055 dout("ignoring incremental map %u len %d\n",
2065 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
2066 dout(" %d full maps\n", nr_maps
);
2068 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
2069 epoch
= ceph_decode_32(&p
);
2070 maplen
= ceph_decode_32(&p
);
2071 ceph_decode_need(&p
, end
, maplen
, bad
);
2073 dout("skipping non-latest full map %u len %d\n",
2075 } else if (osdc
->osdmap
&& osdc
->osdmap
->epoch
>= epoch
) {
2076 dout("skipping full map %u len %d, "
2077 "older than our %u\n", epoch
, maplen
,
2078 osdc
->osdmap
->epoch
);
2080 int skipped_map
= 0;
2082 dout("taking full map %u len %d\n", epoch
, maplen
);
2083 newmap
= ceph_osdmap_decode(&p
, p
+maplen
);
2084 if (IS_ERR(newmap
)) {
2085 err
= PTR_ERR(newmap
);
2089 oldmap
= osdc
->osdmap
;
2090 osdc
->osdmap
= newmap
;
2092 if (oldmap
->epoch
+ 1 < newmap
->epoch
)
2094 ceph_osdmap_destroy(oldmap
);
2096 was_full
= was_full
||
2097 ceph_osdmap_flag(osdc
->osdmap
,
2099 kick_requests(osdc
, skipped_map
, was_full
);
2108 downgrade_write(&osdc
->map_sem
);
2109 ceph_monc_got_osdmap(&osdc
->client
->monc
, osdc
->osdmap
->epoch
);
2112 * subscribe to subsequent osdmap updates if full to ensure
2113 * we find out when we are no longer full and stop returning
2116 if (ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
) ||
2117 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSERD
) ||
2118 ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_PAUSEWR
))
2119 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
2121 mutex_lock(&osdc
->request_mutex
);
2122 __send_queued(osdc
);
2123 mutex_unlock(&osdc
->request_mutex
);
2124 up_read(&osdc
->map_sem
);
2125 wake_up_all(&osdc
->client
->auth_wq
);
2129 pr_err("osdc handle_map corrupt msg\n");
2131 up_write(&osdc
->map_sem
);
2135 * watch/notify callback event infrastructure
2137 * These callbacks are used both for watch and notify operations.
2139 static void __release_event(struct kref
*kref
)
2141 struct ceph_osd_event
*event
=
2142 container_of(kref
, struct ceph_osd_event
, kref
);
2144 dout("__release_event %p\n", event
);
2148 static void get_event(struct ceph_osd_event
*event
)
2150 kref_get(&event
->kref
);
2153 void ceph_osdc_put_event(struct ceph_osd_event
*event
)
2155 kref_put(&event
->kref
, __release_event
);
2157 EXPORT_SYMBOL(ceph_osdc_put_event
);
2159 static void __insert_event(struct ceph_osd_client
*osdc
,
2160 struct ceph_osd_event
*new)
2162 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
2163 struct rb_node
*parent
= NULL
;
2164 struct ceph_osd_event
*event
= NULL
;
2168 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
2169 if (new->cookie
< event
->cookie
)
2171 else if (new->cookie
> event
->cookie
)
2172 p
= &(*p
)->rb_right
;
2177 rb_link_node(&new->node
, parent
, p
);
2178 rb_insert_color(&new->node
, &osdc
->event_tree
);
2181 static struct ceph_osd_event
*__find_event(struct ceph_osd_client
*osdc
,
2184 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
2185 struct rb_node
*parent
= NULL
;
2186 struct ceph_osd_event
*event
= NULL
;
2190 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
2191 if (cookie
< event
->cookie
)
2193 else if (cookie
> event
->cookie
)
2194 p
= &(*p
)->rb_right
;
2201 static void __remove_event(struct ceph_osd_event
*event
)
2203 struct ceph_osd_client
*osdc
= event
->osdc
;
2205 if (!RB_EMPTY_NODE(&event
->node
)) {
2206 dout("__remove_event removed %p\n", event
);
2207 rb_erase(&event
->node
, &osdc
->event_tree
);
2208 ceph_osdc_put_event(event
);
2210 dout("__remove_event didn't remove %p\n", event
);
2214 int ceph_osdc_create_event(struct ceph_osd_client
*osdc
,
2215 void (*event_cb
)(u64
, u64
, u8
, void *),
2216 void *data
, struct ceph_osd_event
**pevent
)
2218 struct ceph_osd_event
*event
;
2220 event
= kmalloc(sizeof(*event
), GFP_NOIO
);
2224 dout("create_event %p\n", event
);
2225 event
->cb
= event_cb
;
2226 event
->one_shot
= 0;
2229 INIT_LIST_HEAD(&event
->osd_node
);
2230 RB_CLEAR_NODE(&event
->node
);
2231 kref_init(&event
->kref
); /* one ref for us */
2232 kref_get(&event
->kref
); /* one ref for the caller */
2234 spin_lock(&osdc
->event_lock
);
2235 event
->cookie
= ++osdc
->event_count
;
2236 __insert_event(osdc
, event
);
2237 spin_unlock(&osdc
->event_lock
);
2242 EXPORT_SYMBOL(ceph_osdc_create_event
);
2244 void ceph_osdc_cancel_event(struct ceph_osd_event
*event
)
2246 struct ceph_osd_client
*osdc
= event
->osdc
;
2248 dout("cancel_event %p\n", event
);
2249 spin_lock(&osdc
->event_lock
);
2250 __remove_event(event
);
2251 spin_unlock(&osdc
->event_lock
);
2252 ceph_osdc_put_event(event
); /* caller's */
2254 EXPORT_SYMBOL(ceph_osdc_cancel_event
);
2257 static void do_event_work(struct work_struct
*work
)
2259 struct ceph_osd_event_work
*event_work
=
2260 container_of(work
, struct ceph_osd_event_work
, work
);
2261 struct ceph_osd_event
*event
= event_work
->event
;
2262 u64 ver
= event_work
->ver
;
2263 u64 notify_id
= event_work
->notify_id
;
2264 u8 opcode
= event_work
->opcode
;
2266 dout("do_event_work completing %p\n", event
);
2267 event
->cb(ver
, notify_id
, opcode
, event
->data
);
2268 dout("do_event_work completed %p\n", event
);
2269 ceph_osdc_put_event(event
);
2275 * Process osd watch notifications
2277 static void handle_watch_notify(struct ceph_osd_client
*osdc
,
2278 struct ceph_msg
*msg
)
2282 u64 cookie
, ver
, notify_id
;
2284 struct ceph_osd_event
*event
;
2285 struct ceph_osd_event_work
*event_work
;
2287 p
= msg
->front
.iov_base
;
2288 end
= p
+ msg
->front
.iov_len
;
2290 ceph_decode_8_safe(&p
, end
, proto_ver
, bad
);
2291 ceph_decode_8_safe(&p
, end
, opcode
, bad
);
2292 ceph_decode_64_safe(&p
, end
, cookie
, bad
);
2293 ceph_decode_64_safe(&p
, end
, ver
, bad
);
2294 ceph_decode_64_safe(&p
, end
, notify_id
, bad
);
2296 spin_lock(&osdc
->event_lock
);
2297 event
= __find_event(osdc
, cookie
);
2299 BUG_ON(event
->one_shot
);
2302 spin_unlock(&osdc
->event_lock
);
2303 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
2304 cookie
, ver
, event
);
2306 event_work
= kmalloc(sizeof(*event_work
), GFP_NOIO
);
2308 dout("ERROR: could not allocate event_work\n");
2311 INIT_WORK(&event_work
->work
, do_event_work
);
2312 event_work
->event
= event
;
2313 event_work
->ver
= ver
;
2314 event_work
->notify_id
= notify_id
;
2315 event_work
->opcode
= opcode
;
2316 if (!queue_work(osdc
->notify_wq
, &event_work
->work
)) {
2317 dout("WARNING: failed to queue notify event work\n");
2325 ceph_osdc_put_event(event
);
2329 pr_err("osdc handle_watch_notify corrupt msg\n");
2333 * build new request AND message
2336 void ceph_osdc_build_request(struct ceph_osd_request
*req
, u64 off
,
2337 struct ceph_snap_context
*snapc
, u64 snap_id
,
2338 struct timespec
*mtime
)
2340 struct ceph_msg
*msg
= req
->r_request
;
2343 int flags
= req
->r_flags
;
2347 req
->r_snapid
= snap_id
;
2348 req
->r_snapc
= ceph_get_snap_context(snapc
);
2350 /* encode request */
2351 msg
->hdr
.version
= cpu_to_le16(4);
2353 p
= msg
->front
.iov_base
;
2354 ceph_encode_32(&p
, 1); /* client_inc is always 1 */
2355 req
->r_request_osdmap_epoch
= p
;
2357 req
->r_request_flags
= p
;
2359 if (req
->r_flags
& CEPH_OSD_FLAG_WRITE
)
2360 ceph_encode_timespec(p
, mtime
);
2361 p
+= sizeof(struct ceph_timespec
);
2362 req
->r_request_reassert_version
= p
;
2363 p
+= sizeof(struct ceph_eversion
); /* will get filled in */
2366 ceph_encode_8(&p
, 4);
2367 ceph_encode_8(&p
, 4);
2368 ceph_encode_32(&p
, 8 + 4 + 4);
2369 req
->r_request_pool
= p
;
2371 ceph_encode_32(&p
, -1); /* preferred */
2372 ceph_encode_32(&p
, 0); /* key len */
2374 ceph_encode_8(&p
, 1);
2375 req
->r_request_pgid
= p
;
2377 ceph_encode_32(&p
, -1); /* preferred */
2380 ceph_encode_32(&p
, req
->r_base_oid
.name_len
);
2381 memcpy(p
, req
->r_base_oid
.name
, req
->r_base_oid
.name_len
);
2382 dout("oid '%.*s' len %d\n", req
->r_base_oid
.name_len
,
2383 req
->r_base_oid
.name
, req
->r_base_oid
.name_len
);
2384 p
+= req
->r_base_oid
.name_len
;
2386 /* ops--can imply data */
2387 ceph_encode_16(&p
, (u16
)req
->r_num_ops
);
2389 for (i
= 0; i
< req
->r_num_ops
; i
++) {
2390 data_len
+= osd_req_encode_op(req
, p
, i
);
2391 p
+= sizeof(struct ceph_osd_op
);
2395 ceph_encode_64(&p
, req
->r_snapid
);
2396 ceph_encode_64(&p
, req
->r_snapc
? req
->r_snapc
->seq
: 0);
2397 ceph_encode_32(&p
, req
->r_snapc
? req
->r_snapc
->num_snaps
: 0);
2399 for (i
= 0; i
< snapc
->num_snaps
; i
++) {
2400 ceph_encode_64(&p
, req
->r_snapc
->snaps
[i
]);
2404 req
->r_request_attempts
= p
;
2408 if (flags
& CEPH_OSD_FLAG_WRITE
) {
2412 * The header "data_off" is a hint to the receiver
2413 * allowing it to align received data into its
2414 * buffers such that there's no need to re-copy
2415 * it before writing it to disk (direct I/O).
2417 data_off
= (u16
) (off
& 0xffff);
2418 req
->r_request
->hdr
.data_off
= cpu_to_le16(data_off
);
2420 req
->r_request
->hdr
.data_len
= cpu_to_le32(data_len
);
2422 BUG_ON(p
> msg
->front
.iov_base
+ msg
->front
.iov_len
);
2423 msg_size
= p
- msg
->front
.iov_base
;
2424 msg
->front
.iov_len
= msg_size
;
2425 msg
->hdr
.front_len
= cpu_to_le32(msg_size
);
2427 dout("build_request msg_size was %d\n", (int)msg_size
);
2429 EXPORT_SYMBOL(ceph_osdc_build_request
);
2432 * Register request, send initial attempt.
2434 int ceph_osdc_start_request(struct ceph_osd_client
*osdc
,
2435 struct ceph_osd_request
*req
,
2440 down_read(&osdc
->map_sem
);
2441 mutex_lock(&osdc
->request_mutex
);
2443 rc
= __ceph_osdc_start_request(osdc
, req
, nofail
);
2445 mutex_unlock(&osdc
->request_mutex
);
2446 up_read(&osdc
->map_sem
);
2450 EXPORT_SYMBOL(ceph_osdc_start_request
);
2453 * wait for a request to complete
2455 int ceph_osdc_wait_request(struct ceph_osd_client
*osdc
,
2456 struct ceph_osd_request
*req
)
2460 rc
= wait_for_completion_interruptible(&req
->r_completion
);
2462 mutex_lock(&osdc
->request_mutex
);
2463 __cancel_request(req
);
2464 __unregister_request(osdc
, req
);
2465 mutex_unlock(&osdc
->request_mutex
);
2466 complete_request(req
);
2467 dout("wait_request tid %llu canceled/timed out\n", req
->r_tid
);
2471 dout("wait_request tid %llu result %d\n", req
->r_tid
, req
->r_result
);
2472 return req
->r_result
;
2474 EXPORT_SYMBOL(ceph_osdc_wait_request
);
2477 * sync - wait for all in-flight requests to flush. avoid starvation.
2479 void ceph_osdc_sync(struct ceph_osd_client
*osdc
)
2481 struct ceph_osd_request
*req
;
2482 u64 last_tid
, next_tid
= 0;
2484 mutex_lock(&osdc
->request_mutex
);
2485 last_tid
= osdc
->last_tid
;
2487 req
= __lookup_request_ge(osdc
, next_tid
);
2490 if (req
->r_tid
> last_tid
)
2493 next_tid
= req
->r_tid
+ 1;
2494 if ((req
->r_flags
& CEPH_OSD_FLAG_WRITE
) == 0)
2497 ceph_osdc_get_request(req
);
2498 mutex_unlock(&osdc
->request_mutex
);
2499 dout("sync waiting on tid %llu (last is %llu)\n",
2500 req
->r_tid
, last_tid
);
2501 wait_for_completion(&req
->r_safe_completion
);
2502 mutex_lock(&osdc
->request_mutex
);
2503 ceph_osdc_put_request(req
);
2505 mutex_unlock(&osdc
->request_mutex
);
2506 dout("sync done (thru tid %llu)\n", last_tid
);
2508 EXPORT_SYMBOL(ceph_osdc_sync
);
2511 * Call all pending notify callbacks - for use after a watch is
2512 * unregistered, to make sure no more callbacks for it will be invoked
2514 void ceph_osdc_flush_notifies(struct ceph_osd_client
*osdc
)
2516 flush_workqueue(osdc
->notify_wq
);
2518 EXPORT_SYMBOL(ceph_osdc_flush_notifies
);
2524 int ceph_osdc_init(struct ceph_osd_client
*osdc
, struct ceph_client
*client
)
2529 osdc
->client
= client
;
2530 osdc
->osdmap
= NULL
;
2531 init_rwsem(&osdc
->map_sem
);
2532 init_completion(&osdc
->map_waiters
);
2533 osdc
->last_requested_map
= 0;
2534 mutex_init(&osdc
->request_mutex
);
2536 osdc
->osds
= RB_ROOT
;
2537 INIT_LIST_HEAD(&osdc
->osd_lru
);
2538 osdc
->requests
= RB_ROOT
;
2539 INIT_LIST_HEAD(&osdc
->req_lru
);
2540 INIT_LIST_HEAD(&osdc
->req_unsent
);
2541 INIT_LIST_HEAD(&osdc
->req_notarget
);
2542 INIT_LIST_HEAD(&osdc
->req_linger
);
2543 osdc
->num_requests
= 0;
2544 INIT_DELAYED_WORK(&osdc
->timeout_work
, handle_timeout
);
2545 INIT_DELAYED_WORK(&osdc
->osds_timeout_work
, handle_osds_timeout
);
2546 spin_lock_init(&osdc
->event_lock
);
2547 osdc
->event_tree
= RB_ROOT
;
2548 osdc
->event_count
= 0;
2550 schedule_delayed_work(&osdc
->osds_timeout_work
,
2551 round_jiffies_relative(osdc
->client
->options
->osd_idle_ttl
* HZ
));
2554 osdc
->req_mempool
= mempool_create_kmalloc_pool(10,
2555 sizeof(struct ceph_osd_request
));
2556 if (!osdc
->req_mempool
)
2559 err
= ceph_msgpool_init(&osdc
->msgpool_op
, CEPH_MSG_OSD_OP
,
2560 OSD_OP_FRONT_LEN
, 10, true,
2564 err
= ceph_msgpool_init(&osdc
->msgpool_op_reply
, CEPH_MSG_OSD_OPREPLY
,
2565 OSD_OPREPLY_FRONT_LEN
, 10, true,
2571 osdc
->notify_wq
= create_singlethread_workqueue("ceph-watch-notify");
2572 if (!osdc
->notify_wq
)
2573 goto out_msgpool_reply
;
2578 ceph_msgpool_destroy(&osdc
->msgpool_op_reply
);
2580 ceph_msgpool_destroy(&osdc
->msgpool_op
);
2582 mempool_destroy(osdc
->req_mempool
);
2587 void ceph_osdc_stop(struct ceph_osd_client
*osdc
)
2589 flush_workqueue(osdc
->notify_wq
);
2590 destroy_workqueue(osdc
->notify_wq
);
2591 cancel_delayed_work_sync(&osdc
->timeout_work
);
2592 cancel_delayed_work_sync(&osdc
->osds_timeout_work
);
2594 ceph_osdmap_destroy(osdc
->osdmap
);
2595 osdc
->osdmap
= NULL
;
2597 remove_all_osds(osdc
);
2598 mempool_destroy(osdc
->req_mempool
);
2599 ceph_msgpool_destroy(&osdc
->msgpool_op
);
2600 ceph_msgpool_destroy(&osdc
->msgpool_op_reply
);
2604 * Read some contiguous pages. If we cross a stripe boundary, shorten
2605 * *plen. Return number of bytes read, or error.
2607 int ceph_osdc_readpages(struct ceph_osd_client
*osdc
,
2608 struct ceph_vino vino
, struct ceph_file_layout
*layout
,
2610 u32 truncate_seq
, u64 truncate_size
,
2611 struct page
**pages
, int num_pages
, int page_align
)
2613 struct ceph_osd_request
*req
;
2616 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino
.ino
,
2617 vino
.snap
, off
, *plen
);
2618 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, plen
, 1,
2619 CEPH_OSD_OP_READ
, CEPH_OSD_FLAG_READ
,
2620 NULL
, truncate_seq
, truncate_size
,
2623 return PTR_ERR(req
);
2625 /* it may be a short read due to an object boundary */
2627 osd_req_op_extent_osd_data_pages(req
, 0,
2628 pages
, *plen
, page_align
, false, false);
2630 dout("readpages final extent is %llu~%llu (%llu bytes align %d)\n",
2631 off
, *plen
, *plen
, page_align
);
2633 ceph_osdc_build_request(req
, off
, NULL
, vino
.snap
, NULL
);
2635 rc
= ceph_osdc_start_request(osdc
, req
, false);
2637 rc
= ceph_osdc_wait_request(osdc
, req
);
2639 ceph_osdc_put_request(req
);
2640 dout("readpages result %d\n", rc
);
2643 EXPORT_SYMBOL(ceph_osdc_readpages
);
2646 * do a synchronous write on N pages
2648 int ceph_osdc_writepages(struct ceph_osd_client
*osdc
, struct ceph_vino vino
,
2649 struct ceph_file_layout
*layout
,
2650 struct ceph_snap_context
*snapc
,
2652 u32 truncate_seq
, u64 truncate_size
,
2653 struct timespec
*mtime
,
2654 struct page
**pages
, int num_pages
)
2656 struct ceph_osd_request
*req
;
2658 int page_align
= off
& ~PAGE_MASK
;
2660 BUG_ON(vino
.snap
!= CEPH_NOSNAP
); /* snapshots aren't writeable */
2661 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, &len
, 1,
2663 CEPH_OSD_FLAG_ONDISK
| CEPH_OSD_FLAG_WRITE
,
2664 snapc
, truncate_seq
, truncate_size
,
2667 return PTR_ERR(req
);
2669 /* it may be a short write due to an object boundary */
2670 osd_req_op_extent_osd_data_pages(req
, 0, pages
, len
, page_align
,
2672 dout("writepages %llu~%llu (%llu bytes)\n", off
, len
, len
);
2674 ceph_osdc_build_request(req
, off
, snapc
, CEPH_NOSNAP
, mtime
);
2676 rc
= ceph_osdc_start_request(osdc
, req
, true);
2678 rc
= ceph_osdc_wait_request(osdc
, req
);
2680 ceph_osdc_put_request(req
);
2683 dout("writepages result %d\n", rc
);
2686 EXPORT_SYMBOL(ceph_osdc_writepages
);
2688 int ceph_osdc_setup(void)
2690 BUG_ON(ceph_osd_request_cache
);
2691 ceph_osd_request_cache
= kmem_cache_create("ceph_osd_request",
2692 sizeof (struct ceph_osd_request
),
2693 __alignof__(struct ceph_osd_request
),
2696 return ceph_osd_request_cache
? 0 : -ENOMEM
;
2698 EXPORT_SYMBOL(ceph_osdc_setup
);
2700 void ceph_osdc_cleanup(void)
2702 BUG_ON(!ceph_osd_request_cache
);
2703 kmem_cache_destroy(ceph_osd_request_cache
);
2704 ceph_osd_request_cache
= NULL
;
2706 EXPORT_SYMBOL(ceph_osdc_cleanup
);
2709 * handle incoming message
2711 static void dispatch(struct ceph_connection
*con
, struct ceph_msg
*msg
)
2713 struct ceph_osd
*osd
= con
->private;
2714 struct ceph_osd_client
*osdc
;
2715 int type
= le16_to_cpu(msg
->hdr
.type
);
2722 case CEPH_MSG_OSD_MAP
:
2723 ceph_osdc_handle_map(osdc
, msg
);
2725 case CEPH_MSG_OSD_OPREPLY
:
2726 handle_reply(osdc
, msg
, con
);
2728 case CEPH_MSG_WATCH_NOTIFY
:
2729 handle_watch_notify(osdc
, msg
);
2733 pr_err("received unknown message type %d %s\n", type
,
2734 ceph_msg_type_name(type
));
2741 * lookup and return message for incoming reply. set up reply message
2744 static struct ceph_msg
*get_reply(struct ceph_connection
*con
,
2745 struct ceph_msg_header
*hdr
,
2748 struct ceph_osd
*osd
= con
->private;
2749 struct ceph_osd_client
*osdc
= osd
->o_osdc
;
2751 struct ceph_osd_request
*req
;
2752 int front_len
= le32_to_cpu(hdr
->front_len
);
2753 int data_len
= le32_to_cpu(hdr
->data_len
);
2756 tid
= le64_to_cpu(hdr
->tid
);
2757 mutex_lock(&osdc
->request_mutex
);
2758 req
= __lookup_request(osdc
, tid
);
2762 dout("get_reply unknown tid %llu from osd%d\n", tid
,
2767 if (req
->r_reply
->con
)
2768 dout("%s revoking msg %p from old con %p\n", __func__
,
2769 req
->r_reply
, req
->r_reply
->con
);
2770 ceph_msg_revoke_incoming(req
->r_reply
);
2772 if (front_len
> req
->r_reply
->front_alloc_len
) {
2773 pr_warning("get_reply front %d > preallocated %d (%u#%llu)\n",
2774 front_len
, req
->r_reply
->front_alloc_len
,
2775 (unsigned int)con
->peer_name
.type
,
2776 le64_to_cpu(con
->peer_name
.num
));
2777 m
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
, front_len
, GFP_NOFS
,
2781 ceph_msg_put(req
->r_reply
);
2784 m
= ceph_msg_get(req
->r_reply
);
2787 struct ceph_osd_data
*osd_data
;
2790 * XXX This is assuming there is only one op containing
2791 * XXX page data. Probably OK for reads, but this
2792 * XXX ought to be done more generally.
2794 osd_data
= osd_req_op_extent_osd_data(req
, 0);
2795 if (osd_data
->type
== CEPH_OSD_DATA_TYPE_PAGES
) {
2796 if (osd_data
->pages
&&
2797 unlikely(osd_data
->length
< data_len
)) {
2799 pr_warning("tid %lld reply has %d bytes "
2800 "we had only %llu bytes ready\n",
2801 tid
, data_len
, osd_data
->length
);
2810 dout("get_reply tid %lld %p\n", tid
, m
);
2813 mutex_unlock(&osdc
->request_mutex
);
2818 static struct ceph_msg
*alloc_msg(struct ceph_connection
*con
,
2819 struct ceph_msg_header
*hdr
,
2822 struct ceph_osd
*osd
= con
->private;
2823 int type
= le16_to_cpu(hdr
->type
);
2824 int front
= le32_to_cpu(hdr
->front_len
);
2828 case CEPH_MSG_OSD_MAP
:
2829 case CEPH_MSG_WATCH_NOTIFY
:
2830 return ceph_msg_new(type
, front
, GFP_NOFS
, false);
2831 case CEPH_MSG_OSD_OPREPLY
:
2832 return get_reply(con
, hdr
, skip
);
2834 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type
,
2842 * Wrappers to refcount containing ceph_osd struct
2844 static struct ceph_connection
*get_osd_con(struct ceph_connection
*con
)
2846 struct ceph_osd
*osd
= con
->private;
2852 static void put_osd_con(struct ceph_connection
*con
)
2854 struct ceph_osd
*osd
= con
->private;
2862 * Note: returned pointer is the address of a structure that's
2863 * managed separately. Caller must *not* attempt to free it.
2865 static struct ceph_auth_handshake
*get_authorizer(struct ceph_connection
*con
,
2866 int *proto
, int force_new
)
2868 struct ceph_osd
*o
= con
->private;
2869 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2870 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2871 struct ceph_auth_handshake
*auth
= &o
->o_auth
;
2873 if (force_new
&& auth
->authorizer
) {
2874 ceph_auth_destroy_authorizer(auth
->authorizer
);
2875 auth
->authorizer
= NULL
;
2877 if (!auth
->authorizer
) {
2878 int ret
= ceph_auth_create_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
,
2881 return ERR_PTR(ret
);
2883 int ret
= ceph_auth_update_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
,
2886 return ERR_PTR(ret
);
2888 *proto
= ac
->protocol
;
2894 static int verify_authorizer_reply(struct ceph_connection
*con
, int len
)
2896 struct ceph_osd
*o
= con
->private;
2897 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2898 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2900 return ceph_auth_verify_authorizer_reply(ac
, o
->o_auth
.authorizer
, len
);
2903 static int invalidate_authorizer(struct ceph_connection
*con
)
2905 struct ceph_osd
*o
= con
->private;
2906 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2907 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2909 ceph_auth_invalidate_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
);
2910 return ceph_monc_validate_auth(&osdc
->client
->monc
);
2913 static const struct ceph_connection_operations osd_con_ops
= {
2916 .dispatch
= dispatch
,
2917 .get_authorizer
= get_authorizer
,
2918 .verify_authorizer_reply
= verify_authorizer_reply
,
2919 .invalidate_authorizer
= invalidate_authorizer
,
2920 .alloc_msg
= alloc_msg
,