1 #include <linux/ceph/ceph_debug.h>
3 #include <linux/module.h>
5 #include <linux/highmem.h>
7 #include <linux/pagemap.h>
8 #include <linux/slab.h>
9 #include <linux/uaccess.h>
11 #include <linux/bio.h>
14 #include <linux/ceph/libceph.h>
15 #include <linux/ceph/osd_client.h>
16 #include <linux/ceph/messenger.h>
17 #include <linux/ceph/decode.h>
18 #include <linux/ceph/auth.h>
19 #include <linux/ceph/pagelist.h>
21 #define OSD_OP_FRONT_LEN 4096
22 #define OSD_OPREPLY_FRONT_LEN 512
24 static const struct ceph_connection_operations osd_con_ops
;
26 static void send_queued(struct ceph_osd_client
*osdc
);
27 static int __reset_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
);
28 static void __register_request(struct ceph_osd_client
*osdc
,
29 struct ceph_osd_request
*req
);
30 static void __unregister_linger_request(struct ceph_osd_client
*osdc
,
31 struct ceph_osd_request
*req
);
32 static void __send_request(struct ceph_osd_client
*osdc
,
33 struct ceph_osd_request
*req
);
35 static int op_needs_trail(int op
)
38 case CEPH_OSD_OP_GETXATTR
:
39 case CEPH_OSD_OP_SETXATTR
:
40 case CEPH_OSD_OP_CMPXATTR
:
41 case CEPH_OSD_OP_CALL
:
42 case CEPH_OSD_OP_NOTIFY
:
49 static int op_has_extent(int op
)
51 return (op
== CEPH_OSD_OP_READ
||
52 op
== CEPH_OSD_OP_WRITE
);
55 void ceph_calc_raw_layout(struct ceph_osd_client
*osdc
,
56 struct ceph_file_layout
*layout
,
58 u64 off
, u64
*plen
, u64
*bno
,
59 struct ceph_osd_request
*req
,
60 struct ceph_osd_req_op
*op
)
62 struct ceph_osd_request_head
*reqhead
= req
->r_request
->front
.iov_base
;
64 u64 objoff
, objlen
; /* extent in object */
66 reqhead
->snapid
= cpu_to_le64(snapid
);
69 ceph_calc_file_object_mapping(layout
, off
, plen
, bno
,
72 dout(" skipping last %llu, final file extent %llu~%llu\n",
73 orig_len
- *plen
, off
, *plen
);
75 if (op_has_extent(op
->op
)) {
76 op
->extent
.offset
= objoff
;
77 op
->extent
.length
= objlen
;
79 req
->r_num_pages
= calc_pages_for(off
, *plen
);
80 req
->r_page_alignment
= off
& ~PAGE_MASK
;
81 if (op
->op
== CEPH_OSD_OP_WRITE
)
82 op
->payload_len
= *plen
;
84 dout("calc_layout bno=%llx %llu~%llu (%d pages)\n",
85 *bno
, objoff
, objlen
, req
->r_num_pages
);
88 EXPORT_SYMBOL(ceph_calc_raw_layout
);
91 * Implement client access to distributed object storage cluster.
93 * All data objects are stored within a cluster/cloud of OSDs, or
94 * "object storage devices." (Note that Ceph OSDs have _nothing_ to
95 * do with the T10 OSD extensions to SCSI.) Ceph OSDs are simply
96 * remote daemons serving up and coordinating consistent and safe
99 * Cluster membership and the mapping of data objects onto storage devices
100 * are described by the osd map.
102 * We keep track of pending OSD requests (read, write), resubmit
103 * requests to different OSDs when the cluster topology/data layout
104 * change, or retry the affected requests when the communications
105 * channel with an OSD is reset.
109 * calculate the mapping of a file extent onto an object, and fill out the
110 * request accordingly. shorten extent as necessary if it crosses an
113 * fill osd op in request message.
115 static void calc_layout(struct ceph_osd_client
*osdc
,
116 struct ceph_vino vino
,
117 struct ceph_file_layout
*layout
,
119 struct ceph_osd_request
*req
,
120 struct ceph_osd_req_op
*op
)
124 ceph_calc_raw_layout(osdc
, layout
, vino
.snap
, off
,
125 plen
, &bno
, req
, op
);
127 snprintf(req
->r_oid
, sizeof(req
->r_oid
), "%llx.%08llx", vino
.ino
, bno
);
128 req
->r_oid_len
= strlen(req
->r_oid
);
134 void ceph_osdc_release_request(struct kref
*kref
)
136 struct ceph_osd_request
*req
= container_of(kref
,
137 struct ceph_osd_request
,
141 ceph_msg_put(req
->r_request
);
142 if (req
->r_con_filling_msg
) {
143 dout("%s revoking pages %p from con %p\n", __func__
,
144 req
->r_pages
, req
->r_con_filling_msg
);
145 ceph_msg_revoke_incoming(req
->r_reply
);
146 req
->r_con_filling_msg
->ops
->put(req
->r_con_filling_msg
);
149 ceph_msg_put(req
->r_reply
);
150 if (req
->r_own_pages
)
151 ceph_release_page_vector(req
->r_pages
,
157 ceph_put_snap_context(req
->r_snapc
);
159 ceph_pagelist_release(req
->r_trail
);
163 mempool_free(req
, req
->r_osdc
->req_mempool
);
167 EXPORT_SYMBOL(ceph_osdc_release_request
);
169 static int get_num_ops(struct ceph_osd_req_op
*ops
, int *needs_trail
)
176 if (needs_trail
&& op_needs_trail(ops
[i
].op
))
184 struct ceph_osd_request
*ceph_osdc_alloc_request(struct ceph_osd_client
*osdc
,
186 struct ceph_snap_context
*snapc
,
187 struct ceph_osd_req_op
*ops
,
193 struct ceph_osd_request
*req
;
194 struct ceph_msg
*msg
;
196 int num_op
= get_num_ops(ops
, &needs_trail
);
197 size_t msg_size
= sizeof(struct ceph_osd_request_head
);
199 msg_size
+= num_op
*sizeof(struct ceph_osd_op
);
202 req
= mempool_alloc(osdc
->req_mempool
, gfp_flags
);
203 memset(req
, 0, sizeof(*req
));
205 req
= kzalloc(sizeof(*req
), gfp_flags
);
211 req
->r_mempool
= use_mempool
;
213 kref_init(&req
->r_kref
);
214 init_completion(&req
->r_completion
);
215 init_completion(&req
->r_safe_completion
);
216 rb_init_node(&req
->r_node
);
217 INIT_LIST_HEAD(&req
->r_unsafe_item
);
218 INIT_LIST_HEAD(&req
->r_linger_item
);
219 INIT_LIST_HEAD(&req
->r_linger_osd
);
220 INIT_LIST_HEAD(&req
->r_req_lru_item
);
221 INIT_LIST_HEAD(&req
->r_osd_item
);
223 req
->r_flags
= flags
;
225 WARN_ON((flags
& (CEPH_OSD_FLAG_READ
|CEPH_OSD_FLAG_WRITE
)) == 0);
227 /* create reply message */
229 msg
= ceph_msgpool_get(&osdc
->msgpool_op_reply
, 0);
231 msg
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
,
232 OSD_OPREPLY_FRONT_LEN
, gfp_flags
, true);
234 ceph_osdc_put_request(req
);
239 /* allocate space for the trailing data */
241 req
->r_trail
= kmalloc(sizeof(struct ceph_pagelist
), gfp_flags
);
243 ceph_osdc_put_request(req
);
246 ceph_pagelist_init(req
->r_trail
);
249 /* create request message; allow space for oid */
250 msg_size
+= MAX_OBJ_NAME_SIZE
;
252 msg_size
+= sizeof(u64
) * snapc
->num_snaps
;
254 msg
= ceph_msgpool_get(&osdc
->msgpool_op
, 0);
256 msg
= ceph_msg_new(CEPH_MSG_OSD_OP
, msg_size
, gfp_flags
, true);
258 ceph_osdc_put_request(req
);
262 memset(msg
->front
.iov_base
, 0, msg
->front
.iov_len
);
264 req
->r_request
= msg
;
265 req
->r_pages
= pages
;
275 EXPORT_SYMBOL(ceph_osdc_alloc_request
);
277 static void osd_req_encode_op(struct ceph_osd_request
*req
,
278 struct ceph_osd_op
*dst
,
279 struct ceph_osd_req_op
*src
)
281 dst
->op
= cpu_to_le16(src
->op
);
284 case CEPH_OSD_OP_READ
:
285 case CEPH_OSD_OP_WRITE
:
287 cpu_to_le64(src
->extent
.offset
);
289 cpu_to_le64(src
->extent
.length
);
290 dst
->extent
.truncate_size
=
291 cpu_to_le64(src
->extent
.truncate_size
);
292 dst
->extent
.truncate_seq
=
293 cpu_to_le32(src
->extent
.truncate_seq
);
296 case CEPH_OSD_OP_GETXATTR
:
297 case CEPH_OSD_OP_SETXATTR
:
298 case CEPH_OSD_OP_CMPXATTR
:
299 BUG_ON(!req
->r_trail
);
301 dst
->xattr
.name_len
= cpu_to_le32(src
->xattr
.name_len
);
302 dst
->xattr
.value_len
= cpu_to_le32(src
->xattr
.value_len
);
303 dst
->xattr
.cmp_op
= src
->xattr
.cmp_op
;
304 dst
->xattr
.cmp_mode
= src
->xattr
.cmp_mode
;
305 ceph_pagelist_append(req
->r_trail
, src
->xattr
.name
,
306 src
->xattr
.name_len
);
307 ceph_pagelist_append(req
->r_trail
, src
->xattr
.val
,
308 src
->xattr
.value_len
);
310 case CEPH_OSD_OP_CALL
:
311 BUG_ON(!req
->r_trail
);
313 dst
->cls
.class_len
= src
->cls
.class_len
;
314 dst
->cls
.method_len
= src
->cls
.method_len
;
315 dst
->cls
.indata_len
= cpu_to_le32(src
->cls
.indata_len
);
317 ceph_pagelist_append(req
->r_trail
, src
->cls
.class_name
,
319 ceph_pagelist_append(req
->r_trail
, src
->cls
.method_name
,
320 src
->cls
.method_len
);
321 ceph_pagelist_append(req
->r_trail
, src
->cls
.indata
,
322 src
->cls
.indata_len
);
324 case CEPH_OSD_OP_ROLLBACK
:
325 dst
->snap
.snapid
= cpu_to_le64(src
->snap
.snapid
);
327 case CEPH_OSD_OP_STARTSYNC
:
329 case CEPH_OSD_OP_NOTIFY
:
331 __le32 prot_ver
= cpu_to_le32(src
->watch
.prot_ver
);
332 __le32 timeout
= cpu_to_le32(src
->watch
.timeout
);
334 BUG_ON(!req
->r_trail
);
336 ceph_pagelist_append(req
->r_trail
,
337 &prot_ver
, sizeof(prot_ver
));
338 ceph_pagelist_append(req
->r_trail
,
339 &timeout
, sizeof(timeout
));
341 case CEPH_OSD_OP_NOTIFY_ACK
:
342 case CEPH_OSD_OP_WATCH
:
343 dst
->watch
.cookie
= cpu_to_le64(src
->watch
.cookie
);
344 dst
->watch
.ver
= cpu_to_le64(src
->watch
.ver
);
345 dst
->watch
.flag
= src
->watch
.flag
;
348 pr_err("unrecognized osd opcode %d\n", dst
->op
);
352 dst
->payload_len
= cpu_to_le32(src
->payload_len
);
356 * build new request AND message
359 void ceph_osdc_build_request(struct ceph_osd_request
*req
,
361 struct ceph_osd_req_op
*src_ops
,
362 struct ceph_snap_context
*snapc
,
363 struct timespec
*mtime
,
367 struct ceph_msg
*msg
= req
->r_request
;
368 struct ceph_osd_request_head
*head
;
369 struct ceph_osd_req_op
*src_op
;
370 struct ceph_osd_op
*op
;
372 int num_op
= get_num_ops(src_ops
, NULL
);
373 size_t msg_size
= sizeof(*head
) + num_op
*sizeof(*op
);
374 int flags
= req
->r_flags
;
378 head
= msg
->front
.iov_base
;
379 op
= (void *)(head
+ 1);
380 p
= (void *)(op
+ num_op
);
382 req
->r_snapc
= ceph_get_snap_context(snapc
);
384 head
->client_inc
= cpu_to_le32(1); /* always, for now. */
385 head
->flags
= cpu_to_le32(flags
);
386 if (flags
& CEPH_OSD_FLAG_WRITE
)
387 ceph_encode_timespec(&head
->mtime
, mtime
);
388 head
->num_ops
= cpu_to_le16(num_op
);
392 head
->object_len
= cpu_to_le32(oid_len
);
393 memcpy(p
, oid
, oid_len
);
398 osd_req_encode_op(req
, op
, src_op
);
404 data_len
+= req
->r_trail
->length
;
407 head
->snap_seq
= cpu_to_le64(snapc
->seq
);
408 head
->num_snaps
= cpu_to_le32(snapc
->num_snaps
);
409 for (i
= 0; i
< snapc
->num_snaps
; i
++) {
410 put_unaligned_le64(snapc
->snaps
[i
], p
);
415 if (flags
& CEPH_OSD_FLAG_WRITE
) {
416 req
->r_request
->hdr
.data_off
= cpu_to_le16(off
);
417 req
->r_request
->hdr
.data_len
= cpu_to_le32(*plen
+ data_len
);
418 } else if (data_len
) {
419 req
->r_request
->hdr
.data_off
= 0;
420 req
->r_request
->hdr
.data_len
= cpu_to_le32(data_len
);
423 req
->r_request
->page_alignment
= req
->r_page_alignment
;
425 BUG_ON(p
> msg
->front
.iov_base
+ msg
->front
.iov_len
);
426 msg_size
= p
- msg
->front
.iov_base
;
427 msg
->front
.iov_len
= msg_size
;
428 msg
->hdr
.front_len
= cpu_to_le32(msg_size
);
431 EXPORT_SYMBOL(ceph_osdc_build_request
);
434 * build new request AND message, calculate layout, and adjust file
437 * if the file was recently truncated, we include information about its
438 * old and new size so that the object can be updated appropriately. (we
439 * avoid synchronously deleting truncated objects because it's slow.)
441 * if @do_sync, include a 'startsync' command so that the osd will flush
444 struct ceph_osd_request
*ceph_osdc_new_request(struct ceph_osd_client
*osdc
,
445 struct ceph_file_layout
*layout
,
446 struct ceph_vino vino
,
448 int opcode
, int flags
,
449 struct ceph_snap_context
*snapc
,
453 struct timespec
*mtime
,
454 bool use_mempool
, int num_reply
,
457 struct ceph_osd_req_op ops
[3];
458 struct ceph_osd_request
*req
;
461 ops
[0].extent
.truncate_seq
= truncate_seq
;
462 ops
[0].extent
.truncate_size
= truncate_size
;
463 ops
[0].payload_len
= 0;
466 ops
[1].op
= CEPH_OSD_OP_STARTSYNC
;
467 ops
[1].payload_len
= 0;
472 req
= ceph_osdc_alloc_request(osdc
, flags
,
475 GFP_NOFS
, NULL
, NULL
);
479 /* calculate max write size */
480 calc_layout(osdc
, vino
, layout
, off
, plen
, req
, ops
);
481 req
->r_file_layout
= *layout
; /* keep a copy */
483 /* in case it differs from natural (file) alignment that
484 calc_layout filled in for us */
485 req
->r_num_pages
= calc_pages_for(page_align
, *plen
);
486 req
->r_page_alignment
= page_align
;
488 ceph_osdc_build_request(req
, off
, plen
, ops
,
491 req
->r_oid
, req
->r_oid_len
);
495 EXPORT_SYMBOL(ceph_osdc_new_request
);
498 * We keep osd requests in an rbtree, sorted by ->r_tid.
500 static void __insert_request(struct ceph_osd_client
*osdc
,
501 struct ceph_osd_request
*new)
503 struct rb_node
**p
= &osdc
->requests
.rb_node
;
504 struct rb_node
*parent
= NULL
;
505 struct ceph_osd_request
*req
= NULL
;
509 req
= rb_entry(parent
, struct ceph_osd_request
, r_node
);
510 if (new->r_tid
< req
->r_tid
)
512 else if (new->r_tid
> req
->r_tid
)
518 rb_link_node(&new->r_node
, parent
, p
);
519 rb_insert_color(&new->r_node
, &osdc
->requests
);
522 static struct ceph_osd_request
*__lookup_request(struct ceph_osd_client
*osdc
,
525 struct ceph_osd_request
*req
;
526 struct rb_node
*n
= osdc
->requests
.rb_node
;
529 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
530 if (tid
< req
->r_tid
)
532 else if (tid
> req
->r_tid
)
540 static struct ceph_osd_request
*
541 __lookup_request_ge(struct ceph_osd_client
*osdc
,
544 struct ceph_osd_request
*req
;
545 struct rb_node
*n
= osdc
->requests
.rb_node
;
548 req
= rb_entry(n
, struct ceph_osd_request
, r_node
);
549 if (tid
< req
->r_tid
) {
553 } else if (tid
> req
->r_tid
) {
563 * Resubmit requests pending on the given osd.
565 static void __kick_osd_requests(struct ceph_osd_client
*osdc
,
566 struct ceph_osd
*osd
)
568 struct ceph_osd_request
*req
, *nreq
;
571 dout("__kick_osd_requests osd%d\n", osd
->o_osd
);
572 err
= __reset_osd(osdc
, osd
);
576 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
) {
577 list_move(&req
->r_req_lru_item
, &osdc
->req_unsent
);
578 dout("requeued %p tid %llu osd%d\n", req
, req
->r_tid
,
581 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
584 list_for_each_entry_safe(req
, nreq
, &osd
->o_linger_requests
,
587 * reregister request prior to unregistering linger so
588 * that r_osd is preserved.
590 BUG_ON(!list_empty(&req
->r_req_lru_item
));
591 __register_request(osdc
, req
);
592 list_add(&req
->r_req_lru_item
, &osdc
->req_unsent
);
593 list_add(&req
->r_osd_item
, &req
->r_osd
->o_requests
);
594 __unregister_linger_request(osdc
, req
);
595 dout("requeued lingering %p tid %llu osd%d\n", req
, req
->r_tid
,
600 static void kick_osd_requests(struct ceph_osd_client
*osdc
,
601 struct ceph_osd
*kickosd
)
603 mutex_lock(&osdc
->request_mutex
);
604 __kick_osd_requests(osdc
, kickosd
);
605 mutex_unlock(&osdc
->request_mutex
);
609 * If the osd connection drops, we need to resubmit all requests.
611 static void osd_reset(struct ceph_connection
*con
)
613 struct ceph_osd
*osd
= con
->private;
614 struct ceph_osd_client
*osdc
;
618 dout("osd_reset osd%d\n", osd
->o_osd
);
620 down_read(&osdc
->map_sem
);
621 kick_osd_requests(osdc
, osd
);
623 up_read(&osdc
->map_sem
);
627 * Track open sessions with osds.
629 static struct ceph_osd
*create_osd(struct ceph_osd_client
*osdc
, int onum
)
631 struct ceph_osd
*osd
;
633 osd
= kzalloc(sizeof(*osd
), GFP_NOFS
);
637 atomic_set(&osd
->o_ref
, 1);
640 INIT_LIST_HEAD(&osd
->o_requests
);
641 INIT_LIST_HEAD(&osd
->o_linger_requests
);
642 INIT_LIST_HEAD(&osd
->o_osd_lru
);
643 osd
->o_incarnation
= 1;
645 ceph_con_init(&osd
->o_con
, osd
, &osd_con_ops
, &osdc
->client
->msgr
);
647 INIT_LIST_HEAD(&osd
->o_keepalive_item
);
651 static struct ceph_osd
*get_osd(struct ceph_osd
*osd
)
653 if (atomic_inc_not_zero(&osd
->o_ref
)) {
654 dout("get_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
)-1,
655 atomic_read(&osd
->o_ref
));
658 dout("get_osd %p FAIL\n", osd
);
663 static void put_osd(struct ceph_osd
*osd
)
665 dout("put_osd %p %d -> %d\n", osd
, atomic_read(&osd
->o_ref
),
666 atomic_read(&osd
->o_ref
) - 1);
667 if (atomic_dec_and_test(&osd
->o_ref
) && osd
->o_auth
.authorizer
) {
668 struct ceph_auth_client
*ac
= osd
->o_osdc
->client
->monc
.auth
;
670 if (ac
->ops
&& ac
->ops
->destroy_authorizer
)
671 ac
->ops
->destroy_authorizer(ac
, osd
->o_auth
.authorizer
);
677 * remove an osd from our map
679 static void __remove_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
681 dout("__remove_osd %p\n", osd
);
682 BUG_ON(!list_empty(&osd
->o_requests
));
683 rb_erase(&osd
->o_node
, &osdc
->osds
);
684 list_del_init(&osd
->o_osd_lru
);
685 ceph_con_close(&osd
->o_con
);
689 static void remove_all_osds(struct ceph_osd_client
*osdc
)
691 dout("%s %p\n", __func__
, osdc
);
692 mutex_lock(&osdc
->request_mutex
);
693 while (!RB_EMPTY_ROOT(&osdc
->osds
)) {
694 struct ceph_osd
*osd
= rb_entry(rb_first(&osdc
->osds
),
695 struct ceph_osd
, o_node
);
696 __remove_osd(osdc
, osd
);
698 mutex_unlock(&osdc
->request_mutex
);
701 static void __move_osd_to_lru(struct ceph_osd_client
*osdc
,
702 struct ceph_osd
*osd
)
704 dout("__move_osd_to_lru %p\n", osd
);
705 BUG_ON(!list_empty(&osd
->o_osd_lru
));
706 list_add_tail(&osd
->o_osd_lru
, &osdc
->osd_lru
);
707 osd
->lru_ttl
= jiffies
+ osdc
->client
->options
->osd_idle_ttl
* HZ
;
710 static void __remove_osd_from_lru(struct ceph_osd
*osd
)
712 dout("__remove_osd_from_lru %p\n", osd
);
713 if (!list_empty(&osd
->o_osd_lru
))
714 list_del_init(&osd
->o_osd_lru
);
717 static void remove_old_osds(struct ceph_osd_client
*osdc
)
719 struct ceph_osd
*osd
, *nosd
;
721 dout("__remove_old_osds %p\n", osdc
);
722 mutex_lock(&osdc
->request_mutex
);
723 list_for_each_entry_safe(osd
, nosd
, &osdc
->osd_lru
, o_osd_lru
) {
724 if (time_before(jiffies
, osd
->lru_ttl
))
726 __remove_osd(osdc
, osd
);
728 mutex_unlock(&osdc
->request_mutex
);
734 static int __reset_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*osd
)
736 struct ceph_osd_request
*req
;
739 dout("__reset_osd %p osd%d\n", osd
, osd
->o_osd
);
740 if (list_empty(&osd
->o_requests
) &&
741 list_empty(&osd
->o_linger_requests
)) {
742 __remove_osd(osdc
, osd
);
743 } else if (memcmp(&osdc
->osdmap
->osd_addr
[osd
->o_osd
],
744 &osd
->o_con
.peer_addr
,
745 sizeof(osd
->o_con
.peer_addr
)) == 0 &&
746 !ceph_con_opened(&osd
->o_con
)) {
747 dout(" osd addr hasn't changed and connection never opened,"
748 " letting msgr retry");
749 /* touch each r_stamp for handle_timeout()'s benfit */
750 list_for_each_entry(req
, &osd
->o_requests
, r_osd_item
)
751 req
->r_stamp
= jiffies
;
754 ceph_con_close(&osd
->o_con
);
755 ceph_con_open(&osd
->o_con
, CEPH_ENTITY_TYPE_OSD
, osd
->o_osd
,
756 &osdc
->osdmap
->osd_addr
[osd
->o_osd
]);
757 osd
->o_incarnation
++;
762 static void __insert_osd(struct ceph_osd_client
*osdc
, struct ceph_osd
*new)
764 struct rb_node
**p
= &osdc
->osds
.rb_node
;
765 struct rb_node
*parent
= NULL
;
766 struct ceph_osd
*osd
= NULL
;
768 dout("__insert_osd %p osd%d\n", new, new->o_osd
);
771 osd
= rb_entry(parent
, struct ceph_osd
, o_node
);
772 if (new->o_osd
< osd
->o_osd
)
774 else if (new->o_osd
> osd
->o_osd
)
780 rb_link_node(&new->o_node
, parent
, p
);
781 rb_insert_color(&new->o_node
, &osdc
->osds
);
784 static struct ceph_osd
*__lookup_osd(struct ceph_osd_client
*osdc
, int o
)
786 struct ceph_osd
*osd
;
787 struct rb_node
*n
= osdc
->osds
.rb_node
;
790 osd
= rb_entry(n
, struct ceph_osd
, o_node
);
793 else if (o
> osd
->o_osd
)
801 static void __schedule_osd_timeout(struct ceph_osd_client
*osdc
)
803 schedule_delayed_work(&osdc
->timeout_work
,
804 osdc
->client
->options
->osd_keepalive_timeout
* HZ
);
807 static void __cancel_osd_timeout(struct ceph_osd_client
*osdc
)
809 cancel_delayed_work(&osdc
->timeout_work
);
813 * Register request, assign tid. If this is the first request, set up
816 static void __register_request(struct ceph_osd_client
*osdc
,
817 struct ceph_osd_request
*req
)
819 req
->r_tid
= ++osdc
->last_tid
;
820 req
->r_request
->hdr
.tid
= cpu_to_le64(req
->r_tid
);
821 dout("__register_request %p tid %lld\n", req
, req
->r_tid
);
822 __insert_request(osdc
, req
);
823 ceph_osdc_get_request(req
);
824 osdc
->num_requests
++;
825 if (osdc
->num_requests
== 1) {
826 dout(" first request, scheduling timeout\n");
827 __schedule_osd_timeout(osdc
);
831 static void register_request(struct ceph_osd_client
*osdc
,
832 struct ceph_osd_request
*req
)
834 mutex_lock(&osdc
->request_mutex
);
835 __register_request(osdc
, req
);
836 mutex_unlock(&osdc
->request_mutex
);
840 * called under osdc->request_mutex
842 static void __unregister_request(struct ceph_osd_client
*osdc
,
843 struct ceph_osd_request
*req
)
845 if (RB_EMPTY_NODE(&req
->r_node
)) {
846 dout("__unregister_request %p tid %lld not registered\n",
851 dout("__unregister_request %p tid %lld\n", req
, req
->r_tid
);
852 rb_erase(&req
->r_node
, &osdc
->requests
);
853 osdc
->num_requests
--;
856 /* make sure the original request isn't in flight. */
857 ceph_msg_revoke(req
->r_request
);
859 list_del_init(&req
->r_osd_item
);
860 if (list_empty(&req
->r_osd
->o_requests
) &&
861 list_empty(&req
->r_osd
->o_linger_requests
)) {
862 dout("moving osd to %p lru\n", req
->r_osd
);
863 __move_osd_to_lru(osdc
, req
->r_osd
);
865 if (list_empty(&req
->r_linger_item
))
869 ceph_osdc_put_request(req
);
871 list_del_init(&req
->r_req_lru_item
);
872 if (osdc
->num_requests
== 0) {
873 dout(" no requests, canceling timeout\n");
874 __cancel_osd_timeout(osdc
);
879 * Cancel a previously queued request message
881 static void __cancel_request(struct ceph_osd_request
*req
)
883 if (req
->r_sent
&& req
->r_osd
) {
884 ceph_msg_revoke(req
->r_request
);
889 static void __register_linger_request(struct ceph_osd_client
*osdc
,
890 struct ceph_osd_request
*req
)
892 dout("__register_linger_request %p\n", req
);
893 list_add_tail(&req
->r_linger_item
, &osdc
->req_linger
);
895 list_add_tail(&req
->r_linger_osd
,
896 &req
->r_osd
->o_linger_requests
);
899 static void __unregister_linger_request(struct ceph_osd_client
*osdc
,
900 struct ceph_osd_request
*req
)
902 dout("__unregister_linger_request %p\n", req
);
904 list_del_init(&req
->r_linger_item
);
905 list_del_init(&req
->r_linger_osd
);
907 if (list_empty(&req
->r_osd
->o_requests
) &&
908 list_empty(&req
->r_osd
->o_linger_requests
)) {
909 dout("moving osd to %p lru\n", req
->r_osd
);
910 __move_osd_to_lru(osdc
, req
->r_osd
);
912 if (list_empty(&req
->r_osd_item
))
917 void ceph_osdc_unregister_linger_request(struct ceph_osd_client
*osdc
,
918 struct ceph_osd_request
*req
)
920 mutex_lock(&osdc
->request_mutex
);
922 __unregister_linger_request(osdc
, req
);
923 ceph_osdc_put_request(req
);
925 mutex_unlock(&osdc
->request_mutex
);
927 EXPORT_SYMBOL(ceph_osdc_unregister_linger_request
);
929 void ceph_osdc_set_request_linger(struct ceph_osd_client
*osdc
,
930 struct ceph_osd_request
*req
)
932 if (!req
->r_linger
) {
933 dout("set_request_linger %p\n", req
);
936 * caller is now responsible for calling
937 * unregister_linger_request
939 ceph_osdc_get_request(req
);
942 EXPORT_SYMBOL(ceph_osdc_set_request_linger
);
945 * Pick an osd (the first 'up' osd in the pg), allocate the osd struct
946 * (as needed), and set the request r_osd appropriately. If there is
947 * no up osd, set r_osd to NULL. Move the request to the appropriate list
948 * (unsent, homeless) or leave on in-flight lru.
950 * Return 0 if unchanged, 1 if changed, or negative on error.
952 * Caller should hold map_sem for read and request_mutex.
954 static int __map_request(struct ceph_osd_client
*osdc
,
955 struct ceph_osd_request
*req
, int force_resend
)
957 struct ceph_osd_request_head
*reqhead
= req
->r_request
->front
.iov_base
;
959 int acting
[CEPH_PG_MAX_SIZE
];
963 dout("map_request %p tid %lld\n", req
, req
->r_tid
);
964 err
= ceph_calc_object_layout(&reqhead
->layout
, req
->r_oid
,
965 &req
->r_file_layout
, osdc
->osdmap
);
967 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
970 pgid
= reqhead
->layout
.ol_pgid
;
973 err
= ceph_calc_pg_acting(osdc
->osdmap
, pgid
, acting
);
979 if ((!force_resend
&&
980 req
->r_osd
&& req
->r_osd
->o_osd
== o
&&
981 req
->r_sent
>= req
->r_osd
->o_incarnation
&&
982 req
->r_num_pg_osds
== num
&&
983 memcmp(req
->r_pg_osds
, acting
, sizeof(acting
[0])*num
) == 0) ||
984 (req
->r_osd
== NULL
&& o
== -1))
985 return 0; /* no change */
987 dout("map_request tid %llu pgid %d.%x osd%d (was osd%d)\n",
988 req
->r_tid
, le32_to_cpu(pgid
.pool
), le16_to_cpu(pgid
.ps
), o
,
989 req
->r_osd
? req
->r_osd
->o_osd
: -1);
991 /* record full pg acting set */
992 memcpy(req
->r_pg_osds
, acting
, sizeof(acting
[0]) * num
);
993 req
->r_num_pg_osds
= num
;
996 __cancel_request(req
);
997 list_del_init(&req
->r_osd_item
);
1001 req
->r_osd
= __lookup_osd(osdc
, o
);
1002 if (!req
->r_osd
&& o
>= 0) {
1004 req
->r_osd
= create_osd(osdc
, o
);
1006 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1010 dout("map_request osd %p is osd%d\n", req
->r_osd
, o
);
1011 __insert_osd(osdc
, req
->r_osd
);
1013 ceph_con_open(&req
->r_osd
->o_con
,
1014 CEPH_ENTITY_TYPE_OSD
, o
,
1015 &osdc
->osdmap
->osd_addr
[o
]);
1019 __remove_osd_from_lru(req
->r_osd
);
1020 list_add(&req
->r_osd_item
, &req
->r_osd
->o_requests
);
1021 list_move(&req
->r_req_lru_item
, &osdc
->req_unsent
);
1023 list_move(&req
->r_req_lru_item
, &osdc
->req_notarget
);
1025 err
= 1; /* osd or pg changed */
1032 * caller should hold map_sem (for read) and request_mutex
1034 static void __send_request(struct ceph_osd_client
*osdc
,
1035 struct ceph_osd_request
*req
)
1037 struct ceph_osd_request_head
*reqhead
;
1039 dout("send_request %p tid %llu to osd%d flags %d\n",
1040 req
, req
->r_tid
, req
->r_osd
->o_osd
, req
->r_flags
);
1042 reqhead
= req
->r_request
->front
.iov_base
;
1043 reqhead
->osdmap_epoch
= cpu_to_le32(osdc
->osdmap
->epoch
);
1044 reqhead
->flags
|= cpu_to_le32(req
->r_flags
); /* e.g., RETRY */
1045 reqhead
->reassert_version
= req
->r_reassert_version
;
1047 req
->r_stamp
= jiffies
;
1048 list_move_tail(&req
->r_req_lru_item
, &osdc
->req_lru
);
1050 ceph_msg_get(req
->r_request
); /* send consumes a ref */
1051 ceph_con_send(&req
->r_osd
->o_con
, req
->r_request
);
1052 req
->r_sent
= req
->r_osd
->o_incarnation
;
1056 * Send any requests in the queue (req_unsent).
1058 static void send_queued(struct ceph_osd_client
*osdc
)
1060 struct ceph_osd_request
*req
, *tmp
;
1062 dout("send_queued\n");
1063 mutex_lock(&osdc
->request_mutex
);
1064 list_for_each_entry_safe(req
, tmp
, &osdc
->req_unsent
, r_req_lru_item
) {
1065 __send_request(osdc
, req
);
1067 mutex_unlock(&osdc
->request_mutex
);
1071 * Timeout callback, called every N seconds when 1 or more osd
1072 * requests has been active for more than N seconds. When this
1073 * happens, we ping all OSDs with requests who have timed out to
1074 * ensure any communications channel reset is detected. Reset the
1075 * request timeouts another N seconds in the future as we go.
1076 * Reschedule the timeout event another N seconds in future (unless
1077 * there are no open requests).
1079 static void handle_timeout(struct work_struct
*work
)
1081 struct ceph_osd_client
*osdc
=
1082 container_of(work
, struct ceph_osd_client
, timeout_work
.work
);
1083 struct ceph_osd_request
*req
, *last_req
= NULL
;
1084 struct ceph_osd
*osd
;
1085 unsigned long timeout
= osdc
->client
->options
->osd_timeout
* HZ
;
1086 unsigned long keepalive
=
1087 osdc
->client
->options
->osd_keepalive_timeout
* HZ
;
1088 unsigned long last_stamp
= 0;
1089 struct list_head slow_osds
;
1091 down_read(&osdc
->map_sem
);
1093 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1095 mutex_lock(&osdc
->request_mutex
);
1098 * reset osds that appear to be _really_ unresponsive. this
1099 * is a failsafe measure.. we really shouldn't be getting to
1100 * this point if the system is working properly. the monitors
1101 * should mark the osd as failed and we should find out about
1102 * it from an updated osd map.
1104 while (timeout
&& !list_empty(&osdc
->req_lru
)) {
1105 req
= list_entry(osdc
->req_lru
.next
, struct ceph_osd_request
,
1108 /* hasn't been long enough since we sent it? */
1109 if (time_before(jiffies
, req
->r_stamp
+ timeout
))
1112 /* hasn't been long enough since it was acked? */
1113 if (req
->r_request
->ack_stamp
== 0 ||
1114 time_before(jiffies
, req
->r_request
->ack_stamp
+ timeout
))
1117 BUG_ON(req
== last_req
&& req
->r_stamp
== last_stamp
);
1119 last_stamp
= req
->r_stamp
;
1123 pr_warning(" tid %llu timed out on osd%d, will reset osd\n",
1124 req
->r_tid
, osd
->o_osd
);
1125 __kick_osd_requests(osdc
, osd
);
1129 * ping osds that are a bit slow. this ensures that if there
1130 * is a break in the TCP connection we will notice, and reopen
1131 * a connection with that osd (from the fault callback).
1133 INIT_LIST_HEAD(&slow_osds
);
1134 list_for_each_entry(req
, &osdc
->req_lru
, r_req_lru_item
) {
1135 if (time_before(jiffies
, req
->r_stamp
+ keepalive
))
1140 dout(" tid %llu is slow, will send keepalive on osd%d\n",
1141 req
->r_tid
, osd
->o_osd
);
1142 list_move_tail(&osd
->o_keepalive_item
, &slow_osds
);
1144 while (!list_empty(&slow_osds
)) {
1145 osd
= list_entry(slow_osds
.next
, struct ceph_osd
,
1147 list_del_init(&osd
->o_keepalive_item
);
1148 ceph_con_keepalive(&osd
->o_con
);
1151 __schedule_osd_timeout(osdc
);
1152 mutex_unlock(&osdc
->request_mutex
);
1154 up_read(&osdc
->map_sem
);
1157 static void handle_osds_timeout(struct work_struct
*work
)
1159 struct ceph_osd_client
*osdc
=
1160 container_of(work
, struct ceph_osd_client
,
1161 osds_timeout_work
.work
);
1162 unsigned long delay
=
1163 osdc
->client
->options
->osd_idle_ttl
* HZ
>> 2;
1165 dout("osds timeout\n");
1166 down_read(&osdc
->map_sem
);
1167 remove_old_osds(osdc
);
1168 up_read(&osdc
->map_sem
);
1170 schedule_delayed_work(&osdc
->osds_timeout_work
,
1171 round_jiffies_relative(delay
));
1174 static void complete_request(struct ceph_osd_request
*req
)
1176 if (req
->r_safe_callback
)
1177 req
->r_safe_callback(req
, NULL
);
1178 complete_all(&req
->r_safe_completion
); /* fsync waiter */
1182 * handle osd op reply. either call the callback if it is specified,
1183 * or do the completion to wake up the waiting thread.
1185 static void handle_reply(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
,
1186 struct ceph_connection
*con
)
1188 struct ceph_osd_reply_head
*rhead
= msg
->front
.iov_base
;
1189 struct ceph_osd_request
*req
;
1191 int numops
, object_len
, flags
;
1194 tid
= le64_to_cpu(msg
->hdr
.tid
);
1195 if (msg
->front
.iov_len
< sizeof(*rhead
))
1197 numops
= le32_to_cpu(rhead
->num_ops
);
1198 object_len
= le32_to_cpu(rhead
->object_len
);
1199 result
= le32_to_cpu(rhead
->result
);
1200 if (msg
->front
.iov_len
!= sizeof(*rhead
) + object_len
+
1201 numops
* sizeof(struct ceph_osd_op
))
1203 dout("handle_reply %p tid %llu result %d\n", msg
, tid
, (int)result
);
1205 mutex_lock(&osdc
->request_mutex
);
1206 req
= __lookup_request(osdc
, tid
);
1208 dout("handle_reply tid %llu dne\n", tid
);
1209 mutex_unlock(&osdc
->request_mutex
);
1212 ceph_osdc_get_request(req
);
1213 flags
= le32_to_cpu(rhead
->flags
);
1216 * if this connection filled our message, drop our reference now, to
1217 * avoid a (safe but slower) revoke later.
1219 if (req
->r_con_filling_msg
== con
&& req
->r_reply
== msg
) {
1220 dout(" dropping con_filling_msg ref %p\n", con
);
1221 req
->r_con_filling_msg
= NULL
;
1225 if (!req
->r_got_reply
) {
1228 req
->r_result
= le32_to_cpu(rhead
->result
);
1229 bytes
= le32_to_cpu(msg
->hdr
.data_len
);
1230 dout("handle_reply result %d bytes %d\n", req
->r_result
,
1232 if (req
->r_result
== 0)
1233 req
->r_result
= bytes
;
1235 /* in case this is a write and we need to replay, */
1236 req
->r_reassert_version
= rhead
->reassert_version
;
1238 req
->r_got_reply
= 1;
1239 } else if ((flags
& CEPH_OSD_FLAG_ONDISK
) == 0) {
1240 dout("handle_reply tid %llu dup ack\n", tid
);
1241 mutex_unlock(&osdc
->request_mutex
);
1245 dout("handle_reply tid %llu flags %d\n", tid
, flags
);
1247 if (req
->r_linger
&& (flags
& CEPH_OSD_FLAG_ONDISK
))
1248 __register_linger_request(osdc
, req
);
1250 /* either this is a read, or we got the safe response */
1252 (flags
& CEPH_OSD_FLAG_ONDISK
) ||
1253 ((flags
& CEPH_OSD_FLAG_WRITE
) == 0))
1254 __unregister_request(osdc
, req
);
1256 mutex_unlock(&osdc
->request_mutex
);
1258 if (req
->r_callback
)
1259 req
->r_callback(req
, msg
);
1261 complete_all(&req
->r_completion
);
1263 if (flags
& CEPH_OSD_FLAG_ONDISK
)
1264 complete_request(req
);
1267 dout("req=%p req->r_linger=%d\n", req
, req
->r_linger
);
1268 ceph_osdc_put_request(req
);
1272 pr_err("corrupt osd_op_reply got %d %d expected %d\n",
1273 (int)msg
->front
.iov_len
, le32_to_cpu(msg
->hdr
.front_len
),
1274 (int)sizeof(*rhead
));
1278 static void reset_changed_osds(struct ceph_osd_client
*osdc
)
1280 struct rb_node
*p
, *n
;
1282 for (p
= rb_first(&osdc
->osds
); p
; p
= n
) {
1283 struct ceph_osd
*osd
= rb_entry(p
, struct ceph_osd
, o_node
);
1286 if (!ceph_osd_is_up(osdc
->osdmap
, osd
->o_osd
) ||
1287 memcmp(&osd
->o_con
.peer_addr
,
1288 ceph_osd_addr(osdc
->osdmap
,
1290 sizeof(struct ceph_entity_addr
)) != 0)
1291 __reset_osd(osdc
, osd
);
1296 * Requeue requests whose mapping to an OSD has changed. If requests map to
1297 * no osd, request a new map.
1299 * Caller should hold map_sem for read and request_mutex.
1301 static void kick_requests(struct ceph_osd_client
*osdc
, int force_resend
)
1303 struct ceph_osd_request
*req
, *nreq
;
1308 dout("kick_requests %s\n", force_resend
? " (force resend)" : "");
1309 mutex_lock(&osdc
->request_mutex
);
1310 for (p
= rb_first(&osdc
->requests
); p
; ) {
1311 req
= rb_entry(p
, struct ceph_osd_request
, r_node
);
1313 err
= __map_request(osdc
, req
, force_resend
);
1315 continue; /* error */
1316 if (req
->r_osd
== NULL
) {
1317 dout("%p tid %llu maps to no osd\n", req
, req
->r_tid
);
1318 needmap
++; /* request a newer map */
1319 } else if (err
> 0) {
1320 if (!req
->r_linger
) {
1321 dout("%p tid %llu requeued on osd%d\n", req
,
1323 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1324 req
->r_flags
|= CEPH_OSD_FLAG_RETRY
;
1327 if (req
->r_linger
&& list_empty(&req
->r_linger_item
)) {
1329 * register as a linger so that we will
1330 * re-submit below and get a new tid
1332 dout("%p tid %llu restart on osd%d\n",
1334 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1335 __register_linger_request(osdc
, req
);
1336 __unregister_request(osdc
, req
);
1340 list_for_each_entry_safe(req
, nreq
, &osdc
->req_linger
,
1342 dout("linger req=%p req->r_osd=%p\n", req
, req
->r_osd
);
1344 err
= __map_request(osdc
, req
, force_resend
);
1346 continue; /* no change and no osd was specified */
1348 continue; /* hrm! */
1349 if (req
->r_osd
== NULL
) {
1350 dout("tid %llu maps to no valid osd\n", req
->r_tid
);
1351 needmap
++; /* request a newer map */
1355 dout("kicking lingering %p tid %llu osd%d\n", req
, req
->r_tid
,
1356 req
->r_osd
? req
->r_osd
->o_osd
: -1);
1357 __unregister_linger_request(osdc
, req
);
1358 __register_request(osdc
, req
);
1360 mutex_unlock(&osdc
->request_mutex
);
1363 dout("%d requests for down osds, need new map\n", needmap
);
1364 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1370 * Process updated osd map.
1372 * The message contains any number of incremental and full maps, normally
1373 * indicating some sort of topology change in the cluster. Kick requests
1374 * off to different OSDs as needed.
1376 void ceph_osdc_handle_map(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
)
1378 void *p
, *end
, *next
;
1379 u32 nr_maps
, maplen
;
1381 struct ceph_osdmap
*newmap
= NULL
, *oldmap
;
1383 struct ceph_fsid fsid
;
1385 dout("handle_map have %u\n", osdc
->osdmap
? osdc
->osdmap
->epoch
: 0);
1386 p
= msg
->front
.iov_base
;
1387 end
= p
+ msg
->front
.iov_len
;
1390 ceph_decode_need(&p
, end
, sizeof(fsid
), bad
);
1391 ceph_decode_copy(&p
, &fsid
, sizeof(fsid
));
1392 if (ceph_check_fsid(osdc
->client
, &fsid
) < 0)
1395 down_write(&osdc
->map_sem
);
1397 /* incremental maps */
1398 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
1399 dout(" %d inc maps\n", nr_maps
);
1400 while (nr_maps
> 0) {
1401 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
1402 epoch
= ceph_decode_32(&p
);
1403 maplen
= ceph_decode_32(&p
);
1404 ceph_decode_need(&p
, end
, maplen
, bad
);
1406 if (osdc
->osdmap
&& osdc
->osdmap
->epoch
+1 == epoch
) {
1407 dout("applying incremental map %u len %d\n",
1409 newmap
= osdmap_apply_incremental(&p
, next
,
1411 &osdc
->client
->msgr
);
1412 if (IS_ERR(newmap
)) {
1413 err
= PTR_ERR(newmap
);
1417 if (newmap
!= osdc
->osdmap
) {
1418 ceph_osdmap_destroy(osdc
->osdmap
);
1419 osdc
->osdmap
= newmap
;
1421 kick_requests(osdc
, 0);
1422 reset_changed_osds(osdc
);
1424 dout("ignoring incremental map %u len %d\n",
1434 ceph_decode_32_safe(&p
, end
, nr_maps
, bad
);
1435 dout(" %d full maps\n", nr_maps
);
1437 ceph_decode_need(&p
, end
, 2*sizeof(u32
), bad
);
1438 epoch
= ceph_decode_32(&p
);
1439 maplen
= ceph_decode_32(&p
);
1440 ceph_decode_need(&p
, end
, maplen
, bad
);
1442 dout("skipping non-latest full map %u len %d\n",
1444 } else if (osdc
->osdmap
&& osdc
->osdmap
->epoch
>= epoch
) {
1445 dout("skipping full map %u len %d, "
1446 "older than our %u\n", epoch
, maplen
,
1447 osdc
->osdmap
->epoch
);
1449 int skipped_map
= 0;
1451 dout("taking full map %u len %d\n", epoch
, maplen
);
1452 newmap
= osdmap_decode(&p
, p
+maplen
);
1453 if (IS_ERR(newmap
)) {
1454 err
= PTR_ERR(newmap
);
1458 oldmap
= osdc
->osdmap
;
1459 osdc
->osdmap
= newmap
;
1461 if (oldmap
->epoch
+ 1 < newmap
->epoch
)
1463 ceph_osdmap_destroy(oldmap
);
1465 kick_requests(osdc
, skipped_map
);
1472 downgrade_write(&osdc
->map_sem
);
1473 ceph_monc_got_osdmap(&osdc
->client
->monc
, osdc
->osdmap
->epoch
);
1476 * subscribe to subsequent osdmap updates if full to ensure
1477 * we find out when we are no longer full and stop returning
1480 if (ceph_osdmap_flag(osdc
->osdmap
, CEPH_OSDMAP_FULL
))
1481 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1484 up_read(&osdc
->map_sem
);
1485 wake_up_all(&osdc
->client
->auth_wq
);
1489 pr_err("osdc handle_map corrupt msg\n");
1491 up_write(&osdc
->map_sem
);
1496 * watch/notify callback event infrastructure
1498 * These callbacks are used both for watch and notify operations.
1500 static void __release_event(struct kref
*kref
)
1502 struct ceph_osd_event
*event
=
1503 container_of(kref
, struct ceph_osd_event
, kref
);
1505 dout("__release_event %p\n", event
);
1509 static void get_event(struct ceph_osd_event
*event
)
1511 kref_get(&event
->kref
);
1514 void ceph_osdc_put_event(struct ceph_osd_event
*event
)
1516 kref_put(&event
->kref
, __release_event
);
1518 EXPORT_SYMBOL(ceph_osdc_put_event
);
1520 static void __insert_event(struct ceph_osd_client
*osdc
,
1521 struct ceph_osd_event
*new)
1523 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
1524 struct rb_node
*parent
= NULL
;
1525 struct ceph_osd_event
*event
= NULL
;
1529 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
1530 if (new->cookie
< event
->cookie
)
1532 else if (new->cookie
> event
->cookie
)
1533 p
= &(*p
)->rb_right
;
1538 rb_link_node(&new->node
, parent
, p
);
1539 rb_insert_color(&new->node
, &osdc
->event_tree
);
1542 static struct ceph_osd_event
*__find_event(struct ceph_osd_client
*osdc
,
1545 struct rb_node
**p
= &osdc
->event_tree
.rb_node
;
1546 struct rb_node
*parent
= NULL
;
1547 struct ceph_osd_event
*event
= NULL
;
1551 event
= rb_entry(parent
, struct ceph_osd_event
, node
);
1552 if (cookie
< event
->cookie
)
1554 else if (cookie
> event
->cookie
)
1555 p
= &(*p
)->rb_right
;
1562 static void __remove_event(struct ceph_osd_event
*event
)
1564 struct ceph_osd_client
*osdc
= event
->osdc
;
1566 if (!RB_EMPTY_NODE(&event
->node
)) {
1567 dout("__remove_event removed %p\n", event
);
1568 rb_erase(&event
->node
, &osdc
->event_tree
);
1569 ceph_osdc_put_event(event
);
1571 dout("__remove_event didn't remove %p\n", event
);
1575 int ceph_osdc_create_event(struct ceph_osd_client
*osdc
,
1576 void (*event_cb
)(u64
, u64
, u8
, void *),
1577 int one_shot
, void *data
,
1578 struct ceph_osd_event
**pevent
)
1580 struct ceph_osd_event
*event
;
1582 event
= kmalloc(sizeof(*event
), GFP_NOIO
);
1586 dout("create_event %p\n", event
);
1587 event
->cb
= event_cb
;
1588 event
->one_shot
= one_shot
;
1591 INIT_LIST_HEAD(&event
->osd_node
);
1592 kref_init(&event
->kref
); /* one ref for us */
1593 kref_get(&event
->kref
); /* one ref for the caller */
1594 init_completion(&event
->completion
);
1596 spin_lock(&osdc
->event_lock
);
1597 event
->cookie
= ++osdc
->event_count
;
1598 __insert_event(osdc
, event
);
1599 spin_unlock(&osdc
->event_lock
);
1604 EXPORT_SYMBOL(ceph_osdc_create_event
);
1606 void ceph_osdc_cancel_event(struct ceph_osd_event
*event
)
1608 struct ceph_osd_client
*osdc
= event
->osdc
;
1610 dout("cancel_event %p\n", event
);
1611 spin_lock(&osdc
->event_lock
);
1612 __remove_event(event
);
1613 spin_unlock(&osdc
->event_lock
);
1614 ceph_osdc_put_event(event
); /* caller's */
1616 EXPORT_SYMBOL(ceph_osdc_cancel_event
);
1619 static void do_event_work(struct work_struct
*work
)
1621 struct ceph_osd_event_work
*event_work
=
1622 container_of(work
, struct ceph_osd_event_work
, work
);
1623 struct ceph_osd_event
*event
= event_work
->event
;
1624 u64 ver
= event_work
->ver
;
1625 u64 notify_id
= event_work
->notify_id
;
1626 u8 opcode
= event_work
->opcode
;
1628 dout("do_event_work completing %p\n", event
);
1629 event
->cb(ver
, notify_id
, opcode
, event
->data
);
1630 complete(&event
->completion
);
1631 dout("do_event_work completed %p\n", event
);
1632 ceph_osdc_put_event(event
);
1638 * Process osd watch notifications
1640 void handle_watch_notify(struct ceph_osd_client
*osdc
, struct ceph_msg
*msg
)
1644 u64 cookie
, ver
, notify_id
;
1646 struct ceph_osd_event
*event
;
1647 struct ceph_osd_event_work
*event_work
;
1649 p
= msg
->front
.iov_base
;
1650 end
= p
+ msg
->front
.iov_len
;
1652 ceph_decode_8_safe(&p
, end
, proto_ver
, bad
);
1653 ceph_decode_8_safe(&p
, end
, opcode
, bad
);
1654 ceph_decode_64_safe(&p
, end
, cookie
, bad
);
1655 ceph_decode_64_safe(&p
, end
, ver
, bad
);
1656 ceph_decode_64_safe(&p
, end
, notify_id
, bad
);
1658 spin_lock(&osdc
->event_lock
);
1659 event
= __find_event(osdc
, cookie
);
1662 if (event
->one_shot
)
1663 __remove_event(event
);
1665 spin_unlock(&osdc
->event_lock
);
1666 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
1667 cookie
, ver
, event
);
1669 event_work
= kmalloc(sizeof(*event_work
), GFP_NOIO
);
1671 dout("ERROR: could not allocate event_work\n");
1674 INIT_WORK(&event_work
->work
, do_event_work
);
1675 event_work
->event
= event
;
1676 event_work
->ver
= ver
;
1677 event_work
->notify_id
= notify_id
;
1678 event_work
->opcode
= opcode
;
1679 if (!queue_work(osdc
->notify_wq
, &event_work
->work
)) {
1680 dout("WARNING: failed to queue notify event work\n");
1688 complete(&event
->completion
);
1689 ceph_osdc_put_event(event
);
1693 pr_err("osdc handle_watch_notify corrupt msg\n");
1697 int ceph_osdc_wait_event(struct ceph_osd_event
*event
, unsigned long timeout
)
1701 dout("wait_event %p\n", event
);
1702 err
= wait_for_completion_interruptible_timeout(&event
->completion
,
1704 ceph_osdc_put_event(event
);
1707 dout("wait_event %p returns %d\n", event
, err
);
1710 EXPORT_SYMBOL(ceph_osdc_wait_event
);
1713 * Register request, send initial attempt.
1715 int ceph_osdc_start_request(struct ceph_osd_client
*osdc
,
1716 struct ceph_osd_request
*req
,
1721 req
->r_request
->pages
= req
->r_pages
;
1722 req
->r_request
->nr_pages
= req
->r_num_pages
;
1724 req
->r_request
->bio
= req
->r_bio
;
1726 req
->r_request
->trail
= req
->r_trail
;
1728 register_request(osdc
, req
);
1730 down_read(&osdc
->map_sem
);
1731 mutex_lock(&osdc
->request_mutex
);
1733 * a racing kick_requests() may have sent the message for us
1734 * while we dropped request_mutex above, so only send now if
1735 * the request still han't been touched yet.
1737 if (req
->r_sent
== 0) {
1738 rc
= __map_request(osdc
, req
, 0);
1741 dout("osdc_start_request failed map, "
1742 " will retry %lld\n", req
->r_tid
);
1747 if (req
->r_osd
== NULL
) {
1748 dout("send_request %p no up osds in pg\n", req
);
1749 ceph_monc_request_next_osdmap(&osdc
->client
->monc
);
1751 __send_request(osdc
, req
);
1757 mutex_unlock(&osdc
->request_mutex
);
1758 up_read(&osdc
->map_sem
);
1761 EXPORT_SYMBOL(ceph_osdc_start_request
);
1764 * wait for a request to complete
1766 int ceph_osdc_wait_request(struct ceph_osd_client
*osdc
,
1767 struct ceph_osd_request
*req
)
1771 rc
= wait_for_completion_interruptible(&req
->r_completion
);
1773 mutex_lock(&osdc
->request_mutex
);
1774 __cancel_request(req
);
1775 __unregister_request(osdc
, req
);
1776 mutex_unlock(&osdc
->request_mutex
);
1777 complete_request(req
);
1778 dout("wait_request tid %llu canceled/timed out\n", req
->r_tid
);
1782 dout("wait_request tid %llu result %d\n", req
->r_tid
, req
->r_result
);
1783 return req
->r_result
;
1785 EXPORT_SYMBOL(ceph_osdc_wait_request
);
1788 * sync - wait for all in-flight requests to flush. avoid starvation.
1790 void ceph_osdc_sync(struct ceph_osd_client
*osdc
)
1792 struct ceph_osd_request
*req
;
1793 u64 last_tid
, next_tid
= 0;
1795 mutex_lock(&osdc
->request_mutex
);
1796 last_tid
= osdc
->last_tid
;
1798 req
= __lookup_request_ge(osdc
, next_tid
);
1801 if (req
->r_tid
> last_tid
)
1804 next_tid
= req
->r_tid
+ 1;
1805 if ((req
->r_flags
& CEPH_OSD_FLAG_WRITE
) == 0)
1808 ceph_osdc_get_request(req
);
1809 mutex_unlock(&osdc
->request_mutex
);
1810 dout("sync waiting on tid %llu (last is %llu)\n",
1811 req
->r_tid
, last_tid
);
1812 wait_for_completion(&req
->r_safe_completion
);
1813 mutex_lock(&osdc
->request_mutex
);
1814 ceph_osdc_put_request(req
);
1816 mutex_unlock(&osdc
->request_mutex
);
1817 dout("sync done (thru tid %llu)\n", last_tid
);
1819 EXPORT_SYMBOL(ceph_osdc_sync
);
1824 int ceph_osdc_init(struct ceph_osd_client
*osdc
, struct ceph_client
*client
)
1829 osdc
->client
= client
;
1830 osdc
->osdmap
= NULL
;
1831 init_rwsem(&osdc
->map_sem
);
1832 init_completion(&osdc
->map_waiters
);
1833 osdc
->last_requested_map
= 0;
1834 mutex_init(&osdc
->request_mutex
);
1836 osdc
->osds
= RB_ROOT
;
1837 INIT_LIST_HEAD(&osdc
->osd_lru
);
1838 osdc
->requests
= RB_ROOT
;
1839 INIT_LIST_HEAD(&osdc
->req_lru
);
1840 INIT_LIST_HEAD(&osdc
->req_unsent
);
1841 INIT_LIST_HEAD(&osdc
->req_notarget
);
1842 INIT_LIST_HEAD(&osdc
->req_linger
);
1843 osdc
->num_requests
= 0;
1844 INIT_DELAYED_WORK(&osdc
->timeout_work
, handle_timeout
);
1845 INIT_DELAYED_WORK(&osdc
->osds_timeout_work
, handle_osds_timeout
);
1846 spin_lock_init(&osdc
->event_lock
);
1847 osdc
->event_tree
= RB_ROOT
;
1848 osdc
->event_count
= 0;
1850 schedule_delayed_work(&osdc
->osds_timeout_work
,
1851 round_jiffies_relative(osdc
->client
->options
->osd_idle_ttl
* HZ
));
1854 osdc
->req_mempool
= mempool_create_kmalloc_pool(10,
1855 sizeof(struct ceph_osd_request
));
1856 if (!osdc
->req_mempool
)
1859 err
= ceph_msgpool_init(&osdc
->msgpool_op
, CEPH_MSG_OSD_OP
,
1860 OSD_OP_FRONT_LEN
, 10, true,
1864 err
= ceph_msgpool_init(&osdc
->msgpool_op_reply
, CEPH_MSG_OSD_OPREPLY
,
1865 OSD_OPREPLY_FRONT_LEN
, 10, true,
1870 osdc
->notify_wq
= create_singlethread_workqueue("ceph-watch-notify");
1871 if (IS_ERR(osdc
->notify_wq
)) {
1872 err
= PTR_ERR(osdc
->notify_wq
);
1873 osdc
->notify_wq
= NULL
;
1879 ceph_msgpool_destroy(&osdc
->msgpool_op
);
1881 mempool_destroy(osdc
->req_mempool
);
1885 EXPORT_SYMBOL(ceph_osdc_init
);
1887 void ceph_osdc_stop(struct ceph_osd_client
*osdc
)
1889 flush_workqueue(osdc
->notify_wq
);
1890 destroy_workqueue(osdc
->notify_wq
);
1891 cancel_delayed_work_sync(&osdc
->timeout_work
);
1892 cancel_delayed_work_sync(&osdc
->osds_timeout_work
);
1894 ceph_osdmap_destroy(osdc
->osdmap
);
1895 osdc
->osdmap
= NULL
;
1897 remove_all_osds(osdc
);
1898 mempool_destroy(osdc
->req_mempool
);
1899 ceph_msgpool_destroy(&osdc
->msgpool_op
);
1900 ceph_msgpool_destroy(&osdc
->msgpool_op_reply
);
1902 EXPORT_SYMBOL(ceph_osdc_stop
);
1905 * Read some contiguous pages. If we cross a stripe boundary, shorten
1906 * *plen. Return number of bytes read, or error.
1908 int ceph_osdc_readpages(struct ceph_osd_client
*osdc
,
1909 struct ceph_vino vino
, struct ceph_file_layout
*layout
,
1911 u32 truncate_seq
, u64 truncate_size
,
1912 struct page
**pages
, int num_pages
, int page_align
)
1914 struct ceph_osd_request
*req
;
1917 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino
.ino
,
1918 vino
.snap
, off
, *plen
);
1919 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, plen
,
1920 CEPH_OSD_OP_READ
, CEPH_OSD_FLAG_READ
,
1921 NULL
, 0, truncate_seq
, truncate_size
, NULL
,
1922 false, 1, page_align
);
1926 /* it may be a short read due to an object boundary */
1927 req
->r_pages
= pages
;
1929 dout("readpages final extent is %llu~%llu (%d pages align %d)\n",
1930 off
, *plen
, req
->r_num_pages
, page_align
);
1932 rc
= ceph_osdc_start_request(osdc
, req
, false);
1934 rc
= ceph_osdc_wait_request(osdc
, req
);
1936 ceph_osdc_put_request(req
);
1937 dout("readpages result %d\n", rc
);
1940 EXPORT_SYMBOL(ceph_osdc_readpages
);
1943 * do a synchronous write on N pages
1945 int ceph_osdc_writepages(struct ceph_osd_client
*osdc
, struct ceph_vino vino
,
1946 struct ceph_file_layout
*layout
,
1947 struct ceph_snap_context
*snapc
,
1949 u32 truncate_seq
, u64 truncate_size
,
1950 struct timespec
*mtime
,
1951 struct page
**pages
, int num_pages
,
1952 int flags
, int do_sync
, bool nofail
)
1954 struct ceph_osd_request
*req
;
1956 int page_align
= off
& ~PAGE_MASK
;
1958 BUG_ON(vino
.snap
!= CEPH_NOSNAP
);
1959 req
= ceph_osdc_new_request(osdc
, layout
, vino
, off
, &len
,
1961 flags
| CEPH_OSD_FLAG_ONDISK
|
1962 CEPH_OSD_FLAG_WRITE
,
1964 truncate_seq
, truncate_size
, mtime
,
1965 nofail
, 1, page_align
);
1969 /* it may be a short write due to an object boundary */
1970 req
->r_pages
= pages
;
1971 dout("writepages %llu~%llu (%d pages)\n", off
, len
,
1974 rc
= ceph_osdc_start_request(osdc
, req
, nofail
);
1976 rc
= ceph_osdc_wait_request(osdc
, req
);
1978 ceph_osdc_put_request(req
);
1981 dout("writepages result %d\n", rc
);
1984 EXPORT_SYMBOL(ceph_osdc_writepages
);
1987 * handle incoming message
1989 static void dispatch(struct ceph_connection
*con
, struct ceph_msg
*msg
)
1991 struct ceph_osd
*osd
= con
->private;
1992 struct ceph_osd_client
*osdc
;
1993 int type
= le16_to_cpu(msg
->hdr
.type
);
2000 case CEPH_MSG_OSD_MAP
:
2001 ceph_osdc_handle_map(osdc
, msg
);
2003 case CEPH_MSG_OSD_OPREPLY
:
2004 handle_reply(osdc
, msg
, con
);
2006 case CEPH_MSG_WATCH_NOTIFY
:
2007 handle_watch_notify(osdc
, msg
);
2011 pr_err("received unknown message type %d %s\n", type
,
2012 ceph_msg_type_name(type
));
2019 * lookup and return message for incoming reply. set up reply message
2022 static struct ceph_msg
*get_reply(struct ceph_connection
*con
,
2023 struct ceph_msg_header
*hdr
,
2026 struct ceph_osd
*osd
= con
->private;
2027 struct ceph_osd_client
*osdc
= osd
->o_osdc
;
2029 struct ceph_osd_request
*req
;
2030 int front
= le32_to_cpu(hdr
->front_len
);
2031 int data_len
= le32_to_cpu(hdr
->data_len
);
2034 tid
= le64_to_cpu(hdr
->tid
);
2035 mutex_lock(&osdc
->request_mutex
);
2036 req
= __lookup_request(osdc
, tid
);
2040 dout("get_reply unknown tid %llu from osd%d\n", tid
,
2045 if (req
->r_con_filling_msg
) {
2046 dout("%s revoking msg %p from old con %p\n", __func__
,
2047 req
->r_reply
, req
->r_con_filling_msg
);
2048 ceph_msg_revoke_incoming(req
->r_reply
);
2049 req
->r_con_filling_msg
->ops
->put(req
->r_con_filling_msg
);
2050 req
->r_con_filling_msg
= NULL
;
2053 if (front
> req
->r_reply
->front
.iov_len
) {
2054 pr_warning("get_reply front %d > preallocated %d\n",
2055 front
, (int)req
->r_reply
->front
.iov_len
);
2056 m
= ceph_msg_new(CEPH_MSG_OSD_OPREPLY
, front
, GFP_NOFS
, false);
2059 ceph_msg_put(req
->r_reply
);
2062 m
= ceph_msg_get(req
->r_reply
);
2065 int want
= calc_pages_for(req
->r_page_alignment
, data_len
);
2067 if (unlikely(req
->r_num_pages
< want
)) {
2068 pr_warning("tid %lld reply has %d bytes %d pages, we"
2069 " had only %d pages ready\n", tid
, data_len
,
2070 want
, req
->r_num_pages
);
2076 m
->pages
= req
->r_pages
;
2077 m
->nr_pages
= req
->r_num_pages
;
2078 m
->page_alignment
= req
->r_page_alignment
;
2080 m
->bio
= req
->r_bio
;
2084 req
->r_con_filling_msg
= con
->ops
->get(con
);
2085 dout("get_reply tid %lld %p\n", tid
, m
);
2088 mutex_unlock(&osdc
->request_mutex
);
2093 static struct ceph_msg
*alloc_msg(struct ceph_connection
*con
,
2094 struct ceph_msg_header
*hdr
,
2097 struct ceph_osd
*osd
= con
->private;
2098 int type
= le16_to_cpu(hdr
->type
);
2099 int front
= le32_to_cpu(hdr
->front_len
);
2103 case CEPH_MSG_OSD_MAP
:
2104 case CEPH_MSG_WATCH_NOTIFY
:
2105 return ceph_msg_new(type
, front
, GFP_NOFS
, false);
2106 case CEPH_MSG_OSD_OPREPLY
:
2107 return get_reply(con
, hdr
, skip
);
2109 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type
,
2117 * Wrappers to refcount containing ceph_osd struct
2119 static struct ceph_connection
*get_osd_con(struct ceph_connection
*con
)
2121 struct ceph_osd
*osd
= con
->private;
2127 static void put_osd_con(struct ceph_connection
*con
)
2129 struct ceph_osd
*osd
= con
->private;
2137 * Note: returned pointer is the address of a structure that's
2138 * managed separately. Caller must *not* attempt to free it.
2140 static struct ceph_auth_handshake
*get_authorizer(struct ceph_connection
*con
,
2141 int *proto
, int force_new
)
2143 struct ceph_osd
*o
= con
->private;
2144 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2145 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2146 struct ceph_auth_handshake
*auth
= &o
->o_auth
;
2148 if (force_new
&& auth
->authorizer
) {
2149 if (ac
->ops
&& ac
->ops
->destroy_authorizer
)
2150 ac
->ops
->destroy_authorizer(ac
, auth
->authorizer
);
2151 auth
->authorizer
= NULL
;
2153 if (!auth
->authorizer
&& ac
->ops
&& ac
->ops
->create_authorizer
) {
2154 int ret
= ac
->ops
->create_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
,
2157 return ERR_PTR(ret
);
2159 *proto
= ac
->protocol
;
2165 static int verify_authorizer_reply(struct ceph_connection
*con
, int len
)
2167 struct ceph_osd
*o
= con
->private;
2168 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2169 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2172 * XXX If ac->ops or ac->ops->verify_authorizer_reply is null,
2173 * XXX which do we do: succeed or fail?
2175 return ac
->ops
->verify_authorizer_reply(ac
, o
->o_auth
.authorizer
, len
);
2178 static int invalidate_authorizer(struct ceph_connection
*con
)
2180 struct ceph_osd
*o
= con
->private;
2181 struct ceph_osd_client
*osdc
= o
->o_osdc
;
2182 struct ceph_auth_client
*ac
= osdc
->client
->monc
.auth
;
2184 if (ac
->ops
&& ac
->ops
->invalidate_authorizer
)
2185 ac
->ops
->invalidate_authorizer(ac
, CEPH_ENTITY_TYPE_OSD
);
2187 return ceph_monc_validate_auth(&osdc
->client
->monc
);
2190 static const struct ceph_connection_operations osd_con_ops
= {
2193 .dispatch
= dispatch
,
2194 .get_authorizer
= get_authorizer
,
2195 .verify_authorizer_reply
= verify_authorizer_reply
,
2196 .invalidate_authorizer
= invalidate_authorizer
,
2197 .alloc_msg
= alloc_msg
,