rbd: do not allow remove of mounted-on image
[linux-2.6-block.git] / net / ceph / osd_client.c
CommitLineData
3d14c5d2 1#include <linux/ceph/ceph_debug.h>
f24e9980 2
3d14c5d2 3#include <linux/module.h>
f24e9980
SW
4#include <linux/err.h>
5#include <linux/highmem.h>
6#include <linux/mm.h>
7#include <linux/pagemap.h>
8#include <linux/slab.h>
9#include <linux/uaccess.h>
68b4476b
YS
10#ifdef CONFIG_BLOCK
11#include <linux/bio.h>
12#endif
f24e9980 13
3d14c5d2
YS
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>
f24e9980 20
c16e7869
SW
21#define OSD_OP_FRONT_LEN 4096
22#define OSD_OPREPLY_FRONT_LEN 512
0d59ab81 23
9e32789f 24static const struct ceph_connection_operations osd_con_ops;
f24e9980 25
6f6c7006
SW
26static void send_queued(struct ceph_osd_client *osdc);
27static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd);
a40c4f10
YS
28static void __register_request(struct ceph_osd_client *osdc,
29 struct ceph_osd_request *req);
30static void __unregister_linger_request(struct ceph_osd_client *osdc,
31 struct ceph_osd_request *req);
56e925b6
SW
32static void __send_request(struct ceph_osd_client *osdc,
33 struct ceph_osd_request *req);
f24e9980 34
68b4476b
YS
35static int op_needs_trail(int op)
36{
37 switch (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:
a40c4f10 42 case CEPH_OSD_OP_NOTIFY:
68b4476b
YS
43 return 1;
44 default:
45 return 0;
46 }
47}
48
49static int op_has_extent(int op)
50{
51 return (op == CEPH_OSD_OP_READ ||
52 op == CEPH_OSD_OP_WRITE);
53}
54
d63b77f4 55int ceph_calc_raw_layout(struct ceph_osd_client *osdc,
3499e8a5
YS
56 struct ceph_file_layout *layout,
57 u64 snapid,
68b4476b
YS
58 u64 off, u64 *plen, u64 *bno,
59 struct ceph_osd_request *req,
60 struct ceph_osd_req_op *op)
3499e8a5
YS
61{
62 struct ceph_osd_request_head *reqhead = req->r_request->front.iov_base;
68b4476b 63 u64 orig_len = *plen;
3499e8a5 64 u64 objoff, objlen; /* extent in object */
d63b77f4 65 int r;
3499e8a5
YS
66
67 reqhead->snapid = cpu_to_le64(snapid);
68
69 /* object extent? */
d63b77f4
SW
70 r = ceph_calc_file_object_mapping(layout, off, plen, bno,
71 &objoff, &objlen);
72 if (r < 0)
73 return r;
68b4476b 74 if (*plen < orig_len)
3499e8a5 75 dout(" skipping last %llu, final file extent %llu~%llu\n",
68b4476b 76 orig_len - *plen, off, *plen);
3499e8a5 77
68b4476b
YS
78 if (op_has_extent(op->op)) {
79 op->extent.offset = objoff;
80 op->extent.length = objlen;
81 }
82 req->r_num_pages = calc_pages_for(off, *plen);
b7495fc2 83 req->r_page_alignment = off & ~PAGE_MASK;
3d14c5d2
YS
84 if (op->op == CEPH_OSD_OP_WRITE)
85 op->payload_len = *plen;
3499e8a5
YS
86
87 dout("calc_layout bno=%llx %llu~%llu (%d pages)\n",
88 *bno, objoff, objlen, req->r_num_pages);
d63b77f4 89 return 0;
3499e8a5 90}
3d14c5d2 91EXPORT_SYMBOL(ceph_calc_raw_layout);
3499e8a5 92
f24e9980
SW
93/*
94 * Implement client access to distributed object storage cluster.
95 *
96 * All data objects are stored within a cluster/cloud of OSDs, or
97 * "object storage devices." (Note that Ceph OSDs have _nothing_ to
98 * do with the T10 OSD extensions to SCSI.) Ceph OSDs are simply
99 * remote daemons serving up and coordinating consistent and safe
100 * access to storage.
101 *
102 * Cluster membership and the mapping of data objects onto storage devices
103 * are described by the osd map.
104 *
105 * We keep track of pending OSD requests (read, write), resubmit
106 * requests to different OSDs when the cluster topology/data layout
107 * change, or retry the affected requests when the communications
108 * channel with an OSD is reset.
109 */
110
111/*
112 * calculate the mapping of a file extent onto an object, and fill out the
113 * request accordingly. shorten extent as necessary if it crosses an
114 * object boundary.
115 *
116 * fill osd op in request message.
117 */
d63b77f4
SW
118static int calc_layout(struct ceph_osd_client *osdc,
119 struct ceph_vino vino,
120 struct ceph_file_layout *layout,
121 u64 off, u64 *plen,
122 struct ceph_osd_request *req,
123 struct ceph_osd_req_op *op)
f24e9980 124{
f24e9980 125 u64 bno;
d63b77f4 126 int r;
f24e9980 127
d63b77f4
SW
128 r = ceph_calc_raw_layout(osdc, layout, vino.snap, off,
129 plen, &bno, req, op);
130 if (r < 0)
131 return r;
f24e9980 132
2dab036b 133 snprintf(req->r_oid, sizeof(req->r_oid), "%llx.%08llx", vino.ino, bno);
f24e9980 134 req->r_oid_len = strlen(req->r_oid);
d63b77f4
SW
135
136 return r;
f24e9980
SW
137}
138
f24e9980
SW
139/*
140 * requests
141 */
415e49a9 142void ceph_osdc_release_request(struct kref *kref)
f24e9980 143{
415e49a9
SW
144 struct ceph_osd_request *req = container_of(kref,
145 struct ceph_osd_request,
146 r_kref);
147
148 if (req->r_request)
149 ceph_msg_put(req->r_request);
0d59ab81 150 if (req->r_con_filling_msg) {
8921d114 151 dout("%s revoking pages %p from con %p\n", __func__,
0d59ab81 152 req->r_pages, req->r_con_filling_msg);
8921d114 153 ceph_msg_revoke_incoming(req->r_reply);
0d47766f 154 req->r_con_filling_msg->ops->put(req->r_con_filling_msg);
350b1c32 155 }
ab8cb34a
AE
156 if (req->r_reply)
157 ceph_msg_put(req->r_reply);
415e49a9
SW
158 if (req->r_own_pages)
159 ceph_release_page_vector(req->r_pages,
160 req->r_num_pages);
68b4476b
YS
161#ifdef CONFIG_BLOCK
162 if (req->r_bio)
163 bio_put(req->r_bio);
164#endif
415e49a9 165 ceph_put_snap_context(req->r_snapc);
68b4476b
YS
166 if (req->r_trail) {
167 ceph_pagelist_release(req->r_trail);
168 kfree(req->r_trail);
169 }
415e49a9
SW
170 if (req->r_mempool)
171 mempool_free(req, req->r_osdc->req_mempool);
172 else
173 kfree(req);
f24e9980 174}
3d14c5d2 175EXPORT_SYMBOL(ceph_osdc_release_request);
68b4476b
YS
176
177static int get_num_ops(struct ceph_osd_req_op *ops, int *needs_trail)
178{
179 int i = 0;
180
181 if (needs_trail)
182 *needs_trail = 0;
183 while (ops[i].op) {
184 if (needs_trail && op_needs_trail(ops[i].op))
185 *needs_trail = 1;
186 i++;
187 }
188
189 return i;
190}
191
3499e8a5
YS
192struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc,
193 int flags,
f24e9980 194 struct ceph_snap_context *snapc,
68b4476b 195 struct ceph_osd_req_op *ops,
3499e8a5
YS
196 bool use_mempool,
197 gfp_t gfp_flags,
68b4476b
YS
198 struct page **pages,
199 struct bio *bio)
f24e9980
SW
200{
201 struct ceph_osd_request *req;
202 struct ceph_msg *msg;
68b4476b
YS
203 int needs_trail;
204 int num_op = get_num_ops(ops, &needs_trail);
205 size_t msg_size = sizeof(struct ceph_osd_request_head);
3499e8a5 206
68b4476b 207 msg_size += num_op*sizeof(struct ceph_osd_op);
f24e9980
SW
208
209 if (use_mempool) {
3499e8a5 210 req = mempool_alloc(osdc->req_mempool, gfp_flags);
f24e9980
SW
211 memset(req, 0, sizeof(*req));
212 } else {
3499e8a5 213 req = kzalloc(sizeof(*req), gfp_flags);
f24e9980
SW
214 }
215 if (req == NULL)
a79832f2 216 return NULL;
f24e9980 217
f24e9980
SW
218 req->r_osdc = osdc;
219 req->r_mempool = use_mempool;
68b4476b 220
415e49a9 221 kref_init(&req->r_kref);
f24e9980
SW
222 init_completion(&req->r_completion);
223 init_completion(&req->r_safe_completion);
cd43045c 224 rb_init_node(&req->r_node);
f24e9980 225 INIT_LIST_HEAD(&req->r_unsafe_item);
a40c4f10
YS
226 INIT_LIST_HEAD(&req->r_linger_item);
227 INIT_LIST_HEAD(&req->r_linger_osd);
935b639a 228 INIT_LIST_HEAD(&req->r_req_lru_item);
cd43045c
SW
229 INIT_LIST_HEAD(&req->r_osd_item);
230
f24e9980
SW
231 req->r_flags = flags;
232
233 WARN_ON((flags & (CEPH_OSD_FLAG_READ|CEPH_OSD_FLAG_WRITE)) == 0);
234
c16e7869
SW
235 /* create reply message */
236 if (use_mempool)
237 msg = ceph_msgpool_get(&osdc->msgpool_op_reply, 0);
238 else
239 msg = ceph_msg_new(CEPH_MSG_OSD_OPREPLY,
b61c2763 240 OSD_OPREPLY_FRONT_LEN, gfp_flags, true);
a79832f2 241 if (!msg) {
c16e7869 242 ceph_osdc_put_request(req);
a79832f2 243 return NULL;
c16e7869
SW
244 }
245 req->r_reply = msg;
246
68b4476b
YS
247 /* allocate space for the trailing data */
248 if (needs_trail) {
249 req->r_trail = kmalloc(sizeof(struct ceph_pagelist), gfp_flags);
250 if (!req->r_trail) {
251 ceph_osdc_put_request(req);
252 return NULL;
253 }
254 ceph_pagelist_init(req->r_trail);
255 }
d50b409f 256
c16e7869 257 /* create request message; allow space for oid */
224736d9 258 msg_size += MAX_OBJ_NAME_SIZE;
f24e9980
SW
259 if (snapc)
260 msg_size += sizeof(u64) * snapc->num_snaps;
261 if (use_mempool)
8f3bc053 262 msg = ceph_msgpool_get(&osdc->msgpool_op, 0);
f24e9980 263 else
b61c2763 264 msg = ceph_msg_new(CEPH_MSG_OSD_OP, msg_size, gfp_flags, true);
a79832f2 265 if (!msg) {
f24e9980 266 ceph_osdc_put_request(req);
a79832f2 267 return NULL;
f24e9980 268 }
68b4476b 269
f24e9980 270 memset(msg->front.iov_base, 0, msg->front.iov_len);
3499e8a5
YS
271
272 req->r_request = msg;
273 req->r_pages = pages;
68b4476b
YS
274#ifdef CONFIG_BLOCK
275 if (bio) {
276 req->r_bio = bio;
277 bio_get(req->r_bio);
278 }
279#endif
3499e8a5
YS
280
281 return req;
282}
3d14c5d2 283EXPORT_SYMBOL(ceph_osdc_alloc_request);
3499e8a5 284
68b4476b
YS
285static void osd_req_encode_op(struct ceph_osd_request *req,
286 struct ceph_osd_op *dst,
287 struct ceph_osd_req_op *src)
288{
289 dst->op = cpu_to_le16(src->op);
290
065a68f9 291 switch (src->op) {
68b4476b
YS
292 case CEPH_OSD_OP_READ:
293 case CEPH_OSD_OP_WRITE:
294 dst->extent.offset =
295 cpu_to_le64(src->extent.offset);
296 dst->extent.length =
297 cpu_to_le64(src->extent.length);
298 dst->extent.truncate_size =
299 cpu_to_le64(src->extent.truncate_size);
300 dst->extent.truncate_seq =
301 cpu_to_le32(src->extent.truncate_seq);
302 break;
303
304 case CEPH_OSD_OP_GETXATTR:
305 case CEPH_OSD_OP_SETXATTR:
306 case CEPH_OSD_OP_CMPXATTR:
307 BUG_ON(!req->r_trail);
308
309 dst->xattr.name_len = cpu_to_le32(src->xattr.name_len);
310 dst->xattr.value_len = cpu_to_le32(src->xattr.value_len);
311 dst->xattr.cmp_op = src->xattr.cmp_op;
312 dst->xattr.cmp_mode = src->xattr.cmp_mode;
313 ceph_pagelist_append(req->r_trail, src->xattr.name,
314 src->xattr.name_len);
315 ceph_pagelist_append(req->r_trail, src->xattr.val,
316 src->xattr.value_len);
317 break;
ae1533b6
YS
318 case CEPH_OSD_OP_CALL:
319 BUG_ON(!req->r_trail);
320
321 dst->cls.class_len = src->cls.class_len;
322 dst->cls.method_len = src->cls.method_len;
323 dst->cls.indata_len = cpu_to_le32(src->cls.indata_len);
324
325 ceph_pagelist_append(req->r_trail, src->cls.class_name,
326 src->cls.class_len);
327 ceph_pagelist_append(req->r_trail, src->cls.method_name,
328 src->cls.method_len);
329 ceph_pagelist_append(req->r_trail, src->cls.indata,
330 src->cls.indata_len);
331 break;
332 case CEPH_OSD_OP_ROLLBACK:
333 dst->snap.snapid = cpu_to_le64(src->snap.snapid);
334 break;
68b4476b
YS
335 case CEPH_OSD_OP_STARTSYNC:
336 break;
a40c4f10
YS
337 case CEPH_OSD_OP_NOTIFY:
338 {
339 __le32 prot_ver = cpu_to_le32(src->watch.prot_ver);
340 __le32 timeout = cpu_to_le32(src->watch.timeout);
341
342 BUG_ON(!req->r_trail);
343
344 ceph_pagelist_append(req->r_trail,
345 &prot_ver, sizeof(prot_ver));
346 ceph_pagelist_append(req->r_trail,
347 &timeout, sizeof(timeout));
348 }
349 case CEPH_OSD_OP_NOTIFY_ACK:
350 case CEPH_OSD_OP_WATCH:
351 dst->watch.cookie = cpu_to_le64(src->watch.cookie);
352 dst->watch.ver = cpu_to_le64(src->watch.ver);
353 dst->watch.flag = src->watch.flag;
354 break;
68b4476b
YS
355 default:
356 pr_err("unrecognized osd opcode %d\n", dst->op);
357 WARN_ON(1);
358 break;
359 }
360 dst->payload_len = cpu_to_le32(src->payload_len);
361}
362
3499e8a5
YS
363/*
364 * build new request AND message
365 *
366 */
367void ceph_osdc_build_request(struct ceph_osd_request *req,
68b4476b
YS
368 u64 off, u64 *plen,
369 struct ceph_osd_req_op *src_ops,
370 struct ceph_snap_context *snapc,
371 struct timespec *mtime,
372 const char *oid,
373 int oid_len)
3499e8a5
YS
374{
375 struct ceph_msg *msg = req->r_request;
376 struct ceph_osd_request_head *head;
68b4476b 377 struct ceph_osd_req_op *src_op;
3499e8a5
YS
378 struct ceph_osd_op *op;
379 void *p;
68b4476b 380 int num_op = get_num_ops(src_ops, NULL);
3499e8a5 381 size_t msg_size = sizeof(*head) + num_op*sizeof(*op);
3499e8a5 382 int flags = req->r_flags;
68b4476b
YS
383 u64 data_len = 0;
384 int i;
3499e8a5 385
f24e9980
SW
386 head = msg->front.iov_base;
387 op = (void *)(head + 1);
388 p = (void *)(op + num_op);
389
f24e9980
SW
390 req->r_snapc = ceph_get_snap_context(snapc);
391
392 head->client_inc = cpu_to_le32(1); /* always, for now. */
393 head->flags = cpu_to_le32(flags);
394 if (flags & CEPH_OSD_FLAG_WRITE)
395 ceph_encode_timespec(&head->mtime, mtime);
396 head->num_ops = cpu_to_le16(num_op);
f24e9980 397
f24e9980
SW
398
399 /* fill in oid */
3499e8a5
YS
400 head->object_len = cpu_to_le32(oid_len);
401 memcpy(p, oid, oid_len);
402 p += oid_len;
f24e9980 403
68b4476b
YS
404 src_op = src_ops;
405 while (src_op->op) {
406 osd_req_encode_op(req, op, src_op);
407 src_op++;
f24e9980 408 op++;
f24e9980 409 }
68b4476b
YS
410
411 if (req->r_trail)
412 data_len += req->r_trail->length;
413
f24e9980
SW
414 if (snapc) {
415 head->snap_seq = cpu_to_le64(snapc->seq);
416 head->num_snaps = cpu_to_le32(snapc->num_snaps);
417 for (i = 0; i < snapc->num_snaps; i++) {
418 put_unaligned_le64(snapc->snaps[i], p);
419 p += sizeof(u64);
420 }
421 }
422
68b4476b
YS
423 if (flags & CEPH_OSD_FLAG_WRITE) {
424 req->r_request->hdr.data_off = cpu_to_le16(off);
425 req->r_request->hdr.data_len = cpu_to_le32(*plen + data_len);
426 } else if (data_len) {
427 req->r_request->hdr.data_off = 0;
428 req->r_request->hdr.data_len = cpu_to_le32(data_len);
429 }
430
c5c6b19d
SW
431 req->r_request->page_alignment = req->r_page_alignment;
432
f24e9980 433 BUG_ON(p > msg->front.iov_base + msg->front.iov_len);
6f863e71
SW
434 msg_size = p - msg->front.iov_base;
435 msg->front.iov_len = msg_size;
436 msg->hdr.front_len = cpu_to_le32(msg_size);
3499e8a5
YS
437 return;
438}
3d14c5d2 439EXPORT_SYMBOL(ceph_osdc_build_request);
3499e8a5
YS
440
441/*
442 * build new request AND message, calculate layout, and adjust file
443 * extent as needed.
444 *
445 * if the file was recently truncated, we include information about its
446 * old and new size so that the object can be updated appropriately. (we
447 * avoid synchronously deleting truncated objects because it's slow.)
448 *
449 * if @do_sync, include a 'startsync' command so that the osd will flush
450 * data quickly.
451 */
452struct ceph_osd_request *ceph_osdc_new_request(struct ceph_osd_client *osdc,
453 struct ceph_file_layout *layout,
454 struct ceph_vino vino,
455 u64 off, u64 *plen,
456 int opcode, int flags,
457 struct ceph_snap_context *snapc,
458 int do_sync,
459 u32 truncate_seq,
460 u64 truncate_size,
461 struct timespec *mtime,
b7495fc2
SW
462 bool use_mempool, int num_reply,
463 int page_align)
3499e8a5 464{
68b4476b
YS
465 struct ceph_osd_req_op ops[3];
466 struct ceph_osd_request *req;
6816282d 467 int r;
68b4476b
YS
468
469 ops[0].op = opcode;
470 ops[0].extent.truncate_seq = truncate_seq;
471 ops[0].extent.truncate_size = truncate_size;
472 ops[0].payload_len = 0;
473
474 if (do_sync) {
475 ops[1].op = CEPH_OSD_OP_STARTSYNC;
476 ops[1].payload_len = 0;
477 ops[2].op = 0;
478 } else
479 ops[1].op = 0;
480
481 req = ceph_osdc_alloc_request(osdc, flags,
482 snapc, ops,
3499e8a5 483 use_mempool,
68b4476b 484 GFP_NOFS, NULL, NULL);
4ad12621 485 if (!req)
6816282d 486 return ERR_PTR(-ENOMEM);
3499e8a5
YS
487
488 /* calculate max write size */
6816282d
SW
489 r = calc_layout(osdc, vino, layout, off, plen, req, ops);
490 if (r < 0)
491 return ERR_PTR(r);
3499e8a5
YS
492 req->r_file_layout = *layout; /* keep a copy */
493
9bb0ce2b
SW
494 /* in case it differs from natural (file) alignment that
495 calc_layout filled in for us */
496 req->r_num_pages = calc_pages_for(page_align, *plen);
b7495fc2
SW
497 req->r_page_alignment = page_align;
498
68b4476b
YS
499 ceph_osdc_build_request(req, off, plen, ops,
500 snapc,
3499e8a5
YS
501 mtime,
502 req->r_oid, req->r_oid_len);
503
f24e9980
SW
504 return req;
505}
3d14c5d2 506EXPORT_SYMBOL(ceph_osdc_new_request);
f24e9980
SW
507
508/*
509 * We keep osd requests in an rbtree, sorted by ->r_tid.
510 */
511static void __insert_request(struct ceph_osd_client *osdc,
512 struct ceph_osd_request *new)
513{
514 struct rb_node **p = &osdc->requests.rb_node;
515 struct rb_node *parent = NULL;
516 struct ceph_osd_request *req = NULL;
517
518 while (*p) {
519 parent = *p;
520 req = rb_entry(parent, struct ceph_osd_request, r_node);
521 if (new->r_tid < req->r_tid)
522 p = &(*p)->rb_left;
523 else if (new->r_tid > req->r_tid)
524 p = &(*p)->rb_right;
525 else
526 BUG();
527 }
528
529 rb_link_node(&new->r_node, parent, p);
530 rb_insert_color(&new->r_node, &osdc->requests);
531}
532
533static struct ceph_osd_request *__lookup_request(struct ceph_osd_client *osdc,
534 u64 tid)
535{
536 struct ceph_osd_request *req;
537 struct rb_node *n = osdc->requests.rb_node;
538
539 while (n) {
540 req = rb_entry(n, struct ceph_osd_request, r_node);
541 if (tid < req->r_tid)
542 n = n->rb_left;
543 else if (tid > req->r_tid)
544 n = n->rb_right;
545 else
546 return req;
547 }
548 return NULL;
549}
550
551static struct ceph_osd_request *
552__lookup_request_ge(struct ceph_osd_client *osdc,
553 u64 tid)
554{
555 struct ceph_osd_request *req;
556 struct rb_node *n = osdc->requests.rb_node;
557
558 while (n) {
559 req = rb_entry(n, struct ceph_osd_request, r_node);
560 if (tid < req->r_tid) {
561 if (!n->rb_left)
562 return req;
563 n = n->rb_left;
564 } else if (tid > req->r_tid) {
565 n = n->rb_right;
566 } else {
567 return req;
568 }
569 }
570 return NULL;
571}
572
6f6c7006
SW
573/*
574 * Resubmit requests pending on the given osd.
575 */
576static void __kick_osd_requests(struct ceph_osd_client *osdc,
577 struct ceph_osd *osd)
578{
a40c4f10 579 struct ceph_osd_request *req, *nreq;
6f6c7006
SW
580 int err;
581
582 dout("__kick_osd_requests osd%d\n", osd->o_osd);
583 err = __reset_osd(osdc, osd);
584 if (err == -EAGAIN)
585 return;
586
587 list_for_each_entry(req, &osd->o_requests, r_osd_item) {
588 list_move(&req->r_req_lru_item, &osdc->req_unsent);
589 dout("requeued %p tid %llu osd%d\n", req, req->r_tid,
590 osd->o_osd);
a40c4f10
YS
591 if (!req->r_linger)
592 req->r_flags |= CEPH_OSD_FLAG_RETRY;
593 }
594
595 list_for_each_entry_safe(req, nreq, &osd->o_linger_requests,
596 r_linger_osd) {
77f38e0e
SW
597 /*
598 * reregister request prior to unregistering linger so
599 * that r_osd is preserved.
600 */
601 BUG_ON(!list_empty(&req->r_req_lru_item));
a40c4f10 602 __register_request(osdc, req);
77f38e0e
SW
603 list_add(&req->r_req_lru_item, &osdc->req_unsent);
604 list_add(&req->r_osd_item, &req->r_osd->o_requests);
605 __unregister_linger_request(osdc, req);
a40c4f10
YS
606 dout("requeued lingering %p tid %llu osd%d\n", req, req->r_tid,
607 osd->o_osd);
6f6c7006
SW
608 }
609}
610
f24e9980 611/*
81b024e7 612 * If the osd connection drops, we need to resubmit all requests.
f24e9980
SW
613 */
614static void osd_reset(struct ceph_connection *con)
615{
616 struct ceph_osd *osd = con->private;
617 struct ceph_osd_client *osdc;
618
619 if (!osd)
620 return;
621 dout("osd_reset osd%d\n", osd->o_osd);
622 osdc = osd->o_osdc;
f24e9980 623 down_read(&osdc->map_sem);
83aff95e
SW
624 mutex_lock(&osdc->request_mutex);
625 __kick_osd_requests(osdc, osd);
626 mutex_unlock(&osdc->request_mutex);
6f6c7006 627 send_queued(osdc);
f24e9980
SW
628 up_read(&osdc->map_sem);
629}
630
631/*
632 * Track open sessions with osds.
633 */
e10006f8 634static struct ceph_osd *create_osd(struct ceph_osd_client *osdc, int onum)
f24e9980
SW
635{
636 struct ceph_osd *osd;
637
638 osd = kzalloc(sizeof(*osd), GFP_NOFS);
639 if (!osd)
640 return NULL;
641
642 atomic_set(&osd->o_ref, 1);
643 osd->o_osdc = osdc;
e10006f8 644 osd->o_osd = onum;
f24e9980 645 INIT_LIST_HEAD(&osd->o_requests);
a40c4f10 646 INIT_LIST_HEAD(&osd->o_linger_requests);
f5a2041b 647 INIT_LIST_HEAD(&osd->o_osd_lru);
f24e9980
SW
648 osd->o_incarnation = 1;
649
b7a9e5dd 650 ceph_con_init(&osd->o_con, osd, &osd_con_ops, &osdc->client->msgr);
4e7a5dcd 651
422d2cb8 652 INIT_LIST_HEAD(&osd->o_keepalive_item);
f24e9980
SW
653 return osd;
654}
655
656static struct ceph_osd *get_osd(struct ceph_osd *osd)
657{
658 if (atomic_inc_not_zero(&osd->o_ref)) {
659 dout("get_osd %p %d -> %d\n", osd, atomic_read(&osd->o_ref)-1,
660 atomic_read(&osd->o_ref));
661 return osd;
662 } else {
663 dout("get_osd %p FAIL\n", osd);
664 return NULL;
665 }
666}
667
668static void put_osd(struct ceph_osd *osd)
669{
670 dout("put_osd %p %d -> %d\n", osd, atomic_read(&osd->o_ref),
671 atomic_read(&osd->o_ref) - 1);
a255651d 672 if (atomic_dec_and_test(&osd->o_ref) && osd->o_auth.authorizer) {
79494d1b
SW
673 struct ceph_auth_client *ac = osd->o_osdc->client->monc.auth;
674
a255651d 675 if (ac->ops && ac->ops->destroy_authorizer)
6c4a1915 676 ac->ops->destroy_authorizer(ac, osd->o_auth.authorizer);
f24e9980 677 kfree(osd);
79494d1b 678 }
f24e9980
SW
679}
680
681/*
682 * remove an osd from our map
683 */
f5a2041b 684static void __remove_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
f24e9980 685{
f5a2041b 686 dout("__remove_osd %p\n", osd);
f24e9980
SW
687 BUG_ON(!list_empty(&osd->o_requests));
688 rb_erase(&osd->o_node, &osdc->osds);
f5a2041b 689 list_del_init(&osd->o_osd_lru);
f24e9980
SW
690 ceph_con_close(&osd->o_con);
691 put_osd(osd);
692}
693
aca420bc
SW
694static void remove_all_osds(struct ceph_osd_client *osdc)
695{
048a9d2d 696 dout("%s %p\n", __func__, osdc);
aca420bc
SW
697 mutex_lock(&osdc->request_mutex);
698 while (!RB_EMPTY_ROOT(&osdc->osds)) {
699 struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds),
700 struct ceph_osd, o_node);
701 __remove_osd(osdc, osd);
702 }
703 mutex_unlock(&osdc->request_mutex);
704}
705
f5a2041b
YS
706static void __move_osd_to_lru(struct ceph_osd_client *osdc,
707 struct ceph_osd *osd)
708{
709 dout("__move_osd_to_lru %p\n", osd);
710 BUG_ON(!list_empty(&osd->o_osd_lru));
711 list_add_tail(&osd->o_osd_lru, &osdc->osd_lru);
3d14c5d2 712 osd->lru_ttl = jiffies + osdc->client->options->osd_idle_ttl * HZ;
f5a2041b
YS
713}
714
715static void __remove_osd_from_lru(struct ceph_osd *osd)
716{
717 dout("__remove_osd_from_lru %p\n", osd);
718 if (!list_empty(&osd->o_osd_lru))
719 list_del_init(&osd->o_osd_lru);
720}
721
aca420bc 722static void remove_old_osds(struct ceph_osd_client *osdc)
f5a2041b
YS
723{
724 struct ceph_osd *osd, *nosd;
725
726 dout("__remove_old_osds %p\n", osdc);
727 mutex_lock(&osdc->request_mutex);
728 list_for_each_entry_safe(osd, nosd, &osdc->osd_lru, o_osd_lru) {
aca420bc 729 if (time_before(jiffies, osd->lru_ttl))
f5a2041b
YS
730 break;
731 __remove_osd(osdc, osd);
732 }
733 mutex_unlock(&osdc->request_mutex);
734}
735
f24e9980
SW
736/*
737 * reset osd connect
738 */
f5a2041b 739static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
f24e9980 740{
87b315a5 741 struct ceph_osd_request *req;
f24e9980
SW
742 int ret = 0;
743
f5a2041b 744 dout("__reset_osd %p osd%d\n", osd, osd->o_osd);
a40c4f10
YS
745 if (list_empty(&osd->o_requests) &&
746 list_empty(&osd->o_linger_requests)) {
f5a2041b 747 __remove_osd(osdc, osd);
87b315a5
SW
748 } else if (memcmp(&osdc->osdmap->osd_addr[osd->o_osd],
749 &osd->o_con.peer_addr,
750 sizeof(osd->o_con.peer_addr)) == 0 &&
751 !ceph_con_opened(&osd->o_con)) {
752 dout(" osd addr hasn't changed and connection never opened,"
753 " letting msgr retry");
754 /* touch each r_stamp for handle_timeout()'s benfit */
755 list_for_each_entry(req, &osd->o_requests, r_osd_item)
756 req->r_stamp = jiffies;
757 ret = -EAGAIN;
f24e9980
SW
758 } else {
759 ceph_con_close(&osd->o_con);
b7a9e5dd
SW
760 ceph_con_open(&osd->o_con, CEPH_ENTITY_TYPE_OSD, osd->o_osd,
761 &osdc->osdmap->osd_addr[osd->o_osd]);
f24e9980
SW
762 osd->o_incarnation++;
763 }
764 return ret;
765}
766
767static void __insert_osd(struct ceph_osd_client *osdc, struct ceph_osd *new)
768{
769 struct rb_node **p = &osdc->osds.rb_node;
770 struct rb_node *parent = NULL;
771 struct ceph_osd *osd = NULL;
772
aca420bc 773 dout("__insert_osd %p osd%d\n", new, new->o_osd);
f24e9980
SW
774 while (*p) {
775 parent = *p;
776 osd = rb_entry(parent, struct ceph_osd, o_node);
777 if (new->o_osd < osd->o_osd)
778 p = &(*p)->rb_left;
779 else if (new->o_osd > osd->o_osd)
780 p = &(*p)->rb_right;
781 else
782 BUG();
783 }
784
785 rb_link_node(&new->o_node, parent, p);
786 rb_insert_color(&new->o_node, &osdc->osds);
787}
788
789static struct ceph_osd *__lookup_osd(struct ceph_osd_client *osdc, int o)
790{
791 struct ceph_osd *osd;
792 struct rb_node *n = osdc->osds.rb_node;
793
794 while (n) {
795 osd = rb_entry(n, struct ceph_osd, o_node);
796 if (o < osd->o_osd)
797 n = n->rb_left;
798 else if (o > osd->o_osd)
799 n = n->rb_right;
800 else
801 return osd;
802 }
803 return NULL;
804}
805
422d2cb8
YS
806static void __schedule_osd_timeout(struct ceph_osd_client *osdc)
807{
808 schedule_delayed_work(&osdc->timeout_work,
3d14c5d2 809 osdc->client->options->osd_keepalive_timeout * HZ);
422d2cb8
YS
810}
811
812static void __cancel_osd_timeout(struct ceph_osd_client *osdc)
813{
814 cancel_delayed_work(&osdc->timeout_work);
815}
f24e9980
SW
816
817/*
818 * Register request, assign tid. If this is the first request, set up
819 * the timeout event.
820 */
a40c4f10
YS
821static void __register_request(struct ceph_osd_client *osdc,
822 struct ceph_osd_request *req)
f24e9980 823{
f24e9980 824 req->r_tid = ++osdc->last_tid;
6df058c0 825 req->r_request->hdr.tid = cpu_to_le64(req->r_tid);
77f38e0e 826 dout("__register_request %p tid %lld\n", req, req->r_tid);
f24e9980
SW
827 __insert_request(osdc, req);
828 ceph_osdc_get_request(req);
829 osdc->num_requests++;
f24e9980 830 if (osdc->num_requests == 1) {
422d2cb8
YS
831 dout(" first request, scheduling timeout\n");
832 __schedule_osd_timeout(osdc);
f24e9980 833 }
a40c4f10
YS
834}
835
836static void register_request(struct ceph_osd_client *osdc,
837 struct ceph_osd_request *req)
838{
839 mutex_lock(&osdc->request_mutex);
840 __register_request(osdc, req);
f24e9980
SW
841 mutex_unlock(&osdc->request_mutex);
842}
843
844/*
845 * called under osdc->request_mutex
846 */
847static void __unregister_request(struct ceph_osd_client *osdc,
848 struct ceph_osd_request *req)
849{
35f9f8a0
SW
850 if (RB_EMPTY_NODE(&req->r_node)) {
851 dout("__unregister_request %p tid %lld not registered\n",
852 req, req->r_tid);
853 return;
854 }
855
f24e9980
SW
856 dout("__unregister_request %p tid %lld\n", req, req->r_tid);
857 rb_erase(&req->r_node, &osdc->requests);
858 osdc->num_requests--;
859
0ba6478d
SW
860 if (req->r_osd) {
861 /* make sure the original request isn't in flight. */
6740a845 862 ceph_msg_revoke(req->r_request);
0ba6478d
SW
863
864 list_del_init(&req->r_osd_item);
a40c4f10
YS
865 if (list_empty(&req->r_osd->o_requests) &&
866 list_empty(&req->r_osd->o_linger_requests)) {
867 dout("moving osd to %p lru\n", req->r_osd);
f5a2041b 868 __move_osd_to_lru(osdc, req->r_osd);
a40c4f10 869 }
fbdb9190 870 if (list_empty(&req->r_linger_item))
a40c4f10 871 req->r_osd = NULL;
0ba6478d 872 }
f24e9980
SW
873
874 ceph_osdc_put_request(req);
875
422d2cb8
YS
876 list_del_init(&req->r_req_lru_item);
877 if (osdc->num_requests == 0) {
878 dout(" no requests, canceling timeout\n");
879 __cancel_osd_timeout(osdc);
f24e9980
SW
880 }
881}
882
883/*
884 * Cancel a previously queued request message
885 */
886static void __cancel_request(struct ceph_osd_request *req)
887{
6bc18876 888 if (req->r_sent && req->r_osd) {
6740a845 889 ceph_msg_revoke(req->r_request);
f24e9980
SW
890 req->r_sent = 0;
891 }
892}
893
a40c4f10
YS
894static void __register_linger_request(struct ceph_osd_client *osdc,
895 struct ceph_osd_request *req)
896{
897 dout("__register_linger_request %p\n", req);
898 list_add_tail(&req->r_linger_item, &osdc->req_linger);
6194ea89
SW
899 if (req->r_osd)
900 list_add_tail(&req->r_linger_osd,
901 &req->r_osd->o_linger_requests);
a40c4f10
YS
902}
903
904static void __unregister_linger_request(struct ceph_osd_client *osdc,
905 struct ceph_osd_request *req)
906{
907 dout("__unregister_linger_request %p\n", req);
908 if (req->r_osd) {
909 list_del_init(&req->r_linger_item);
910 list_del_init(&req->r_linger_osd);
911
912 if (list_empty(&req->r_osd->o_requests) &&
913 list_empty(&req->r_osd->o_linger_requests)) {
914 dout("moving osd to %p lru\n", req->r_osd);
915 __move_osd_to_lru(osdc, req->r_osd);
916 }
fbdb9190
SW
917 if (list_empty(&req->r_osd_item))
918 req->r_osd = NULL;
a40c4f10
YS
919 }
920}
921
922void ceph_osdc_unregister_linger_request(struct ceph_osd_client *osdc,
923 struct ceph_osd_request *req)
924{
925 mutex_lock(&osdc->request_mutex);
926 if (req->r_linger) {
927 __unregister_linger_request(osdc, req);
928 ceph_osdc_put_request(req);
929 }
930 mutex_unlock(&osdc->request_mutex);
931}
932EXPORT_SYMBOL(ceph_osdc_unregister_linger_request);
933
934void ceph_osdc_set_request_linger(struct ceph_osd_client *osdc,
935 struct ceph_osd_request *req)
936{
937 if (!req->r_linger) {
938 dout("set_request_linger %p\n", req);
939 req->r_linger = 1;
940 /*
941 * caller is now responsible for calling
942 * unregister_linger_request
943 */
944 ceph_osdc_get_request(req);
945 }
946}
947EXPORT_SYMBOL(ceph_osdc_set_request_linger);
948
f24e9980
SW
949/*
950 * Pick an osd (the first 'up' osd in the pg), allocate the osd struct
951 * (as needed), and set the request r_osd appropriately. If there is
25985edc 952 * no up osd, set r_osd to NULL. Move the request to the appropriate list
6f6c7006 953 * (unsent, homeless) or leave on in-flight lru.
f24e9980
SW
954 *
955 * Return 0 if unchanged, 1 if changed, or negative on error.
956 *
957 * Caller should hold map_sem for read and request_mutex.
958 */
6f6c7006 959static int __map_request(struct ceph_osd_client *osdc,
38d6453c 960 struct ceph_osd_request *req, int force_resend)
f24e9980
SW
961{
962 struct ceph_osd_request_head *reqhead = req->r_request->front.iov_base;
51042122 963 struct ceph_pg pgid;
d85b7056
SW
964 int acting[CEPH_PG_MAX_SIZE];
965 int o = -1, num = 0;
f24e9980 966 int err;
f24e9980 967
6f6c7006 968 dout("map_request %p tid %lld\n", req, req->r_tid);
f24e9980
SW
969 err = ceph_calc_object_layout(&reqhead->layout, req->r_oid,
970 &req->r_file_layout, osdc->osdmap);
6f6c7006
SW
971 if (err) {
972 list_move(&req->r_req_lru_item, &osdc->req_notarget);
f24e9980 973 return err;
6f6c7006 974 }
51042122 975 pgid = reqhead->layout.ol_pgid;
7740a42f
SW
976 req->r_pgid = pgid;
977
d85b7056
SW
978 err = ceph_calc_pg_acting(osdc->osdmap, pgid, acting);
979 if (err > 0) {
980 o = acting[0];
981 num = err;
982 }
f24e9980 983
38d6453c
SW
984 if ((!force_resend &&
985 req->r_osd && req->r_osd->o_osd == o &&
d85b7056
SW
986 req->r_sent >= req->r_osd->o_incarnation &&
987 req->r_num_pg_osds == num &&
988 memcmp(req->r_pg_osds, acting, sizeof(acting[0])*num) == 0) ||
f24e9980
SW
989 (req->r_osd == NULL && o == -1))
990 return 0; /* no change */
991
6f6c7006 992 dout("map_request tid %llu pgid %d.%x osd%d (was osd%d)\n",
51042122 993 req->r_tid, le32_to_cpu(pgid.pool), le16_to_cpu(pgid.ps), o,
f24e9980
SW
994 req->r_osd ? req->r_osd->o_osd : -1);
995
d85b7056
SW
996 /* record full pg acting set */
997 memcpy(req->r_pg_osds, acting, sizeof(acting[0]) * num);
998 req->r_num_pg_osds = num;
999
f24e9980
SW
1000 if (req->r_osd) {
1001 __cancel_request(req);
1002 list_del_init(&req->r_osd_item);
f24e9980
SW
1003 req->r_osd = NULL;
1004 }
1005
1006 req->r_osd = __lookup_osd(osdc, o);
1007 if (!req->r_osd && o >= 0) {
c99eb1c7 1008 err = -ENOMEM;
e10006f8 1009 req->r_osd = create_osd(osdc, o);
6f6c7006
SW
1010 if (!req->r_osd) {
1011 list_move(&req->r_req_lru_item, &osdc->req_notarget);
c99eb1c7 1012 goto out;
6f6c7006 1013 }
f24e9980 1014
6f6c7006 1015 dout("map_request osd %p is osd%d\n", req->r_osd, o);
f24e9980
SW
1016 __insert_osd(osdc, req->r_osd);
1017
b7a9e5dd
SW
1018 ceph_con_open(&req->r_osd->o_con,
1019 CEPH_ENTITY_TYPE_OSD, o,
1020 &osdc->osdmap->osd_addr[o]);
f24e9980
SW
1021 }
1022
f5a2041b
YS
1023 if (req->r_osd) {
1024 __remove_osd_from_lru(req->r_osd);
f24e9980 1025 list_add(&req->r_osd_item, &req->r_osd->o_requests);
6f6c7006
SW
1026 list_move(&req->r_req_lru_item, &osdc->req_unsent);
1027 } else {
1028 list_move(&req->r_req_lru_item, &osdc->req_notarget);
f5a2041b 1029 }
d85b7056 1030 err = 1; /* osd or pg changed */
f24e9980
SW
1031
1032out:
f24e9980
SW
1033 return err;
1034}
1035
1036/*
1037 * caller should hold map_sem (for read) and request_mutex
1038 */
56e925b6
SW
1039static void __send_request(struct ceph_osd_client *osdc,
1040 struct ceph_osd_request *req)
f24e9980
SW
1041{
1042 struct ceph_osd_request_head *reqhead;
f24e9980
SW
1043
1044 dout("send_request %p tid %llu to osd%d flags %d\n",
1045 req, req->r_tid, req->r_osd->o_osd, req->r_flags);
1046
1047 reqhead = req->r_request->front.iov_base;
1048 reqhead->osdmap_epoch = cpu_to_le32(osdc->osdmap->epoch);
1049 reqhead->flags |= cpu_to_le32(req->r_flags); /* e.g., RETRY */
1050 reqhead->reassert_version = req->r_reassert_version;
1051
3dd72fc0 1052 req->r_stamp = jiffies;
07a27e22 1053 list_move_tail(&req->r_req_lru_item, &osdc->req_lru);
f24e9980
SW
1054
1055 ceph_msg_get(req->r_request); /* send consumes a ref */
1056 ceph_con_send(&req->r_osd->o_con, req->r_request);
1057 req->r_sent = req->r_osd->o_incarnation;
f24e9980
SW
1058}
1059
6f6c7006
SW
1060/*
1061 * Send any requests in the queue (req_unsent).
1062 */
1063static void send_queued(struct ceph_osd_client *osdc)
1064{
1065 struct ceph_osd_request *req, *tmp;
1066
1067 dout("send_queued\n");
1068 mutex_lock(&osdc->request_mutex);
1069 list_for_each_entry_safe(req, tmp, &osdc->req_unsent, r_req_lru_item) {
1070 __send_request(osdc, req);
1071 }
1072 mutex_unlock(&osdc->request_mutex);
1073}
1074
f24e9980
SW
1075/*
1076 * Timeout callback, called every N seconds when 1 or more osd
1077 * requests has been active for more than N seconds. When this
1078 * happens, we ping all OSDs with requests who have timed out to
1079 * ensure any communications channel reset is detected. Reset the
1080 * request timeouts another N seconds in the future as we go.
1081 * Reschedule the timeout event another N seconds in future (unless
1082 * there are no open requests).
1083 */
1084static void handle_timeout(struct work_struct *work)
1085{
1086 struct ceph_osd_client *osdc =
1087 container_of(work, struct ceph_osd_client, timeout_work.work);
83aff95e 1088 struct ceph_osd_request *req;
f24e9980 1089 struct ceph_osd *osd;
422d2cb8 1090 unsigned long keepalive =
3d14c5d2 1091 osdc->client->options->osd_keepalive_timeout * HZ;
422d2cb8 1092 struct list_head slow_osds;
f24e9980
SW
1093 dout("timeout\n");
1094 down_read(&osdc->map_sem);
1095
1096 ceph_monc_request_next_osdmap(&osdc->client->monc);
1097
1098 mutex_lock(&osdc->request_mutex);
f24e9980 1099
422d2cb8
YS
1100 /*
1101 * ping osds that are a bit slow. this ensures that if there
1102 * is a break in the TCP connection we will notice, and reopen
1103 * a connection with that osd (from the fault callback).
1104 */
1105 INIT_LIST_HEAD(&slow_osds);
1106 list_for_each_entry(req, &osdc->req_lru, r_req_lru_item) {
3dd72fc0 1107 if (time_before(jiffies, req->r_stamp + keepalive))
422d2cb8
YS
1108 break;
1109
1110 osd = req->r_osd;
1111 BUG_ON(!osd);
1112 dout(" tid %llu is slow, will send keepalive on osd%d\n",
f24e9980 1113 req->r_tid, osd->o_osd);
422d2cb8
YS
1114 list_move_tail(&osd->o_keepalive_item, &slow_osds);
1115 }
1116 while (!list_empty(&slow_osds)) {
1117 osd = list_entry(slow_osds.next, struct ceph_osd,
1118 o_keepalive_item);
1119 list_del_init(&osd->o_keepalive_item);
f24e9980
SW
1120 ceph_con_keepalive(&osd->o_con);
1121 }
1122
422d2cb8 1123 __schedule_osd_timeout(osdc);
f24e9980 1124 mutex_unlock(&osdc->request_mutex);
6f6c7006 1125 send_queued(osdc);
f24e9980
SW
1126 up_read(&osdc->map_sem);
1127}
1128
f5a2041b
YS
1129static void handle_osds_timeout(struct work_struct *work)
1130{
1131 struct ceph_osd_client *osdc =
1132 container_of(work, struct ceph_osd_client,
1133 osds_timeout_work.work);
1134 unsigned long delay =
3d14c5d2 1135 osdc->client->options->osd_idle_ttl * HZ >> 2;
f5a2041b
YS
1136
1137 dout("osds timeout\n");
1138 down_read(&osdc->map_sem);
aca420bc 1139 remove_old_osds(osdc);
f5a2041b
YS
1140 up_read(&osdc->map_sem);
1141
1142 schedule_delayed_work(&osdc->osds_timeout_work,
1143 round_jiffies_relative(delay));
1144}
1145
25845472
SW
1146static void complete_request(struct ceph_osd_request *req)
1147{
1148 if (req->r_safe_callback)
1149 req->r_safe_callback(req, NULL);
1150 complete_all(&req->r_safe_completion); /* fsync waiter */
1151}
1152
f24e9980
SW
1153/*
1154 * handle osd op reply. either call the callback if it is specified,
1155 * or do the completion to wake up the waiting thread.
1156 */
350b1c32
SW
1157static void handle_reply(struct ceph_osd_client *osdc, struct ceph_msg *msg,
1158 struct ceph_connection *con)
f24e9980
SW
1159{
1160 struct ceph_osd_reply_head *rhead = msg->front.iov_base;
1161 struct ceph_osd_request *req;
1162 u64 tid;
1163 int numops, object_len, flags;
0ceed5db 1164 s32 result;
f24e9980 1165
6df058c0 1166 tid = le64_to_cpu(msg->hdr.tid);
f24e9980
SW
1167 if (msg->front.iov_len < sizeof(*rhead))
1168 goto bad;
f24e9980
SW
1169 numops = le32_to_cpu(rhead->num_ops);
1170 object_len = le32_to_cpu(rhead->object_len);
0ceed5db 1171 result = le32_to_cpu(rhead->result);
f24e9980
SW
1172 if (msg->front.iov_len != sizeof(*rhead) + object_len +
1173 numops * sizeof(struct ceph_osd_op))
1174 goto bad;
0ceed5db 1175 dout("handle_reply %p tid %llu result %d\n", msg, tid, (int)result);
f24e9980
SW
1176 /* lookup */
1177 mutex_lock(&osdc->request_mutex);
1178 req = __lookup_request(osdc, tid);
1179 if (req == NULL) {
1180 dout("handle_reply tid %llu dne\n", tid);
1181 mutex_unlock(&osdc->request_mutex);
1182 return;
1183 }
1184 ceph_osdc_get_request(req);
1185 flags = le32_to_cpu(rhead->flags);
1186
350b1c32 1187 /*
0d59ab81 1188 * if this connection filled our message, drop our reference now, to
350b1c32
SW
1189 * avoid a (safe but slower) revoke later.
1190 */
0d59ab81 1191 if (req->r_con_filling_msg == con && req->r_reply == msg) {
c16e7869 1192 dout(" dropping con_filling_msg ref %p\n", con);
0d59ab81 1193 req->r_con_filling_msg = NULL;
0d47766f 1194 con->ops->put(con);
350b1c32
SW
1195 }
1196
f24e9980 1197 if (!req->r_got_reply) {
95c96174 1198 unsigned int bytes;
f24e9980
SW
1199
1200 req->r_result = le32_to_cpu(rhead->result);
1201 bytes = le32_to_cpu(msg->hdr.data_len);
1202 dout("handle_reply result %d bytes %d\n", req->r_result,
1203 bytes);
1204 if (req->r_result == 0)
1205 req->r_result = bytes;
1206
1207 /* in case this is a write and we need to replay, */
1208 req->r_reassert_version = rhead->reassert_version;
1209
1210 req->r_got_reply = 1;
1211 } else if ((flags & CEPH_OSD_FLAG_ONDISK) == 0) {
1212 dout("handle_reply tid %llu dup ack\n", tid);
34b43a56 1213 mutex_unlock(&osdc->request_mutex);
f24e9980
SW
1214 goto done;
1215 }
1216
1217 dout("handle_reply tid %llu flags %d\n", tid, flags);
1218
a40c4f10
YS
1219 if (req->r_linger && (flags & CEPH_OSD_FLAG_ONDISK))
1220 __register_linger_request(osdc, req);
1221
f24e9980 1222 /* either this is a read, or we got the safe response */
0ceed5db
SW
1223 if (result < 0 ||
1224 (flags & CEPH_OSD_FLAG_ONDISK) ||
f24e9980
SW
1225 ((flags & CEPH_OSD_FLAG_WRITE) == 0))
1226 __unregister_request(osdc, req);
1227
1228 mutex_unlock(&osdc->request_mutex);
1229
1230 if (req->r_callback)
1231 req->r_callback(req, msg);
1232 else
03066f23 1233 complete_all(&req->r_completion);
f24e9980 1234
25845472
SW
1235 if (flags & CEPH_OSD_FLAG_ONDISK)
1236 complete_request(req);
f24e9980
SW
1237
1238done:
a40c4f10 1239 dout("req=%p req->r_linger=%d\n", req, req->r_linger);
f24e9980
SW
1240 ceph_osdc_put_request(req);
1241 return;
1242
1243bad:
1244 pr_err("corrupt osd_op_reply got %d %d expected %d\n",
1245 (int)msg->front.iov_len, le32_to_cpu(msg->hdr.front_len),
1246 (int)sizeof(*rhead));
9ec7cab1 1247 ceph_msg_dump(msg);
f24e9980
SW
1248}
1249
6f6c7006 1250static void reset_changed_osds(struct ceph_osd_client *osdc)
f24e9980 1251{
f24e9980 1252 struct rb_node *p, *n;
f24e9980 1253
6f6c7006
SW
1254 for (p = rb_first(&osdc->osds); p; p = n) {
1255 struct ceph_osd *osd = rb_entry(p, struct ceph_osd, o_node);
f24e9980 1256
6f6c7006
SW
1257 n = rb_next(p);
1258 if (!ceph_osd_is_up(osdc->osdmap, osd->o_osd) ||
1259 memcmp(&osd->o_con.peer_addr,
1260 ceph_osd_addr(osdc->osdmap,
1261 osd->o_osd),
1262 sizeof(struct ceph_entity_addr)) != 0)
1263 __reset_osd(osdc, osd);
f24e9980 1264 }
422d2cb8
YS
1265}
1266
1267/*
6f6c7006
SW
1268 * Requeue requests whose mapping to an OSD has changed. If requests map to
1269 * no osd, request a new map.
422d2cb8
YS
1270 *
1271 * Caller should hold map_sem for read and request_mutex.
1272 */
38d6453c 1273static void kick_requests(struct ceph_osd_client *osdc, int force_resend)
422d2cb8 1274{
a40c4f10 1275 struct ceph_osd_request *req, *nreq;
6f6c7006
SW
1276 struct rb_node *p;
1277 int needmap = 0;
1278 int err;
422d2cb8 1279
38d6453c 1280 dout("kick_requests %s\n", force_resend ? " (force resend)" : "");
422d2cb8 1281 mutex_lock(&osdc->request_mutex);
6194ea89 1282 for (p = rb_first(&osdc->requests); p; ) {
6f6c7006 1283 req = rb_entry(p, struct ceph_osd_request, r_node);
6194ea89 1284 p = rb_next(p);
38d6453c 1285 err = __map_request(osdc, req, force_resend);
6f6c7006
SW
1286 if (err < 0)
1287 continue; /* error */
1288 if (req->r_osd == NULL) {
1289 dout("%p tid %llu maps to no osd\n", req, req->r_tid);
1290 needmap++; /* request a newer map */
1291 } else if (err > 0) {
6194ea89
SW
1292 if (!req->r_linger) {
1293 dout("%p tid %llu requeued on osd%d\n", req,
1294 req->r_tid,
1295 req->r_osd ? req->r_osd->o_osd : -1);
a40c4f10 1296 req->r_flags |= CEPH_OSD_FLAG_RETRY;
6194ea89
SW
1297 }
1298 }
1299 if (req->r_linger && list_empty(&req->r_linger_item)) {
1300 /*
1301 * register as a linger so that we will
1302 * re-submit below and get a new tid
1303 */
1304 dout("%p tid %llu restart on osd%d\n",
1305 req, req->r_tid,
1306 req->r_osd ? req->r_osd->o_osd : -1);
1307 __register_linger_request(osdc, req);
1308 __unregister_request(osdc, req);
a40c4f10
YS
1309 }
1310 }
1311
1312 list_for_each_entry_safe(req, nreq, &osdc->req_linger,
1313 r_linger_item) {
1314 dout("linger req=%p req->r_osd=%p\n", req, req->r_osd);
1315
38d6453c 1316 err = __map_request(osdc, req, force_resend);
a40c4f10
YS
1317 if (err == 0)
1318 continue; /* no change and no osd was specified */
1319 if (err < 0)
1320 continue; /* hrm! */
1321 if (req->r_osd == NULL) {
1322 dout("tid %llu maps to no valid osd\n", req->r_tid);
1323 needmap++; /* request a newer map */
1324 continue;
6f6c7006 1325 }
a40c4f10
YS
1326
1327 dout("kicking lingering %p tid %llu osd%d\n", req, req->r_tid,
1328 req->r_osd ? req->r_osd->o_osd : -1);
1329 __unregister_linger_request(osdc, req);
1330 __register_request(osdc, req);
6f6c7006 1331 }
f24e9980
SW
1332 mutex_unlock(&osdc->request_mutex);
1333
1334 if (needmap) {
1335 dout("%d requests for down osds, need new map\n", needmap);
1336 ceph_monc_request_next_osdmap(&osdc->client->monc);
1337 }
422d2cb8 1338}
6f6c7006
SW
1339
1340
f24e9980
SW
1341/*
1342 * Process updated osd map.
1343 *
1344 * The message contains any number of incremental and full maps, normally
1345 * indicating some sort of topology change in the cluster. Kick requests
1346 * off to different OSDs as needed.
1347 */
1348void ceph_osdc_handle_map(struct ceph_osd_client *osdc, struct ceph_msg *msg)
1349{
1350 void *p, *end, *next;
1351 u32 nr_maps, maplen;
1352 u32 epoch;
1353 struct ceph_osdmap *newmap = NULL, *oldmap;
1354 int err;
1355 struct ceph_fsid fsid;
1356
1357 dout("handle_map have %u\n", osdc->osdmap ? osdc->osdmap->epoch : 0);
1358 p = msg->front.iov_base;
1359 end = p + msg->front.iov_len;
1360
1361 /* verify fsid */
1362 ceph_decode_need(&p, end, sizeof(fsid), bad);
1363 ceph_decode_copy(&p, &fsid, sizeof(fsid));
0743304d
SW
1364 if (ceph_check_fsid(osdc->client, &fsid) < 0)
1365 return;
f24e9980
SW
1366
1367 down_write(&osdc->map_sem);
1368
1369 /* incremental maps */
1370 ceph_decode_32_safe(&p, end, nr_maps, bad);
1371 dout(" %d inc maps\n", nr_maps);
1372 while (nr_maps > 0) {
1373 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
c89136ea
SW
1374 epoch = ceph_decode_32(&p);
1375 maplen = ceph_decode_32(&p);
f24e9980
SW
1376 ceph_decode_need(&p, end, maplen, bad);
1377 next = p + maplen;
1378 if (osdc->osdmap && osdc->osdmap->epoch+1 == epoch) {
1379 dout("applying incremental map %u len %d\n",
1380 epoch, maplen);
1381 newmap = osdmap_apply_incremental(&p, next,
1382 osdc->osdmap,
15d9882c 1383 &osdc->client->msgr);
f24e9980
SW
1384 if (IS_ERR(newmap)) {
1385 err = PTR_ERR(newmap);
1386 goto bad;
1387 }
30dc6381 1388 BUG_ON(!newmap);
f24e9980
SW
1389 if (newmap != osdc->osdmap) {
1390 ceph_osdmap_destroy(osdc->osdmap);
1391 osdc->osdmap = newmap;
1392 }
38d6453c 1393 kick_requests(osdc, 0);
6f6c7006 1394 reset_changed_osds(osdc);
f24e9980
SW
1395 } else {
1396 dout("ignoring incremental map %u len %d\n",
1397 epoch, maplen);
1398 }
1399 p = next;
1400 nr_maps--;
1401 }
1402 if (newmap)
1403 goto done;
1404
1405 /* full maps */
1406 ceph_decode_32_safe(&p, end, nr_maps, bad);
1407 dout(" %d full maps\n", nr_maps);
1408 while (nr_maps) {
1409 ceph_decode_need(&p, end, 2*sizeof(u32), bad);
c89136ea
SW
1410 epoch = ceph_decode_32(&p);
1411 maplen = ceph_decode_32(&p);
f24e9980
SW
1412 ceph_decode_need(&p, end, maplen, bad);
1413 if (nr_maps > 1) {
1414 dout("skipping non-latest full map %u len %d\n",
1415 epoch, maplen);
1416 } else if (osdc->osdmap && osdc->osdmap->epoch >= epoch) {
1417 dout("skipping full map %u len %d, "
1418 "older than our %u\n", epoch, maplen,
1419 osdc->osdmap->epoch);
1420 } else {
38d6453c
SW
1421 int skipped_map = 0;
1422
f24e9980
SW
1423 dout("taking full map %u len %d\n", epoch, maplen);
1424 newmap = osdmap_decode(&p, p+maplen);
1425 if (IS_ERR(newmap)) {
1426 err = PTR_ERR(newmap);
1427 goto bad;
1428 }
30dc6381 1429 BUG_ON(!newmap);
f24e9980
SW
1430 oldmap = osdc->osdmap;
1431 osdc->osdmap = newmap;
38d6453c
SW
1432 if (oldmap) {
1433 if (oldmap->epoch + 1 < newmap->epoch)
1434 skipped_map = 1;
f24e9980 1435 ceph_osdmap_destroy(oldmap);
38d6453c
SW
1436 }
1437 kick_requests(osdc, skipped_map);
f24e9980
SW
1438 }
1439 p += maplen;
1440 nr_maps--;
1441 }
1442
1443done:
1444 downgrade_write(&osdc->map_sem);
1445 ceph_monc_got_osdmap(&osdc->client->monc, osdc->osdmap->epoch);
cd634fb6
SW
1446
1447 /*
1448 * subscribe to subsequent osdmap updates if full to ensure
1449 * we find out when we are no longer full and stop returning
1450 * ENOSPC.
1451 */
1452 if (ceph_osdmap_flag(osdc->osdmap, CEPH_OSDMAP_FULL))
1453 ceph_monc_request_next_osdmap(&osdc->client->monc);
1454
6f6c7006 1455 send_queued(osdc);
f24e9980 1456 up_read(&osdc->map_sem);
03066f23 1457 wake_up_all(&osdc->client->auth_wq);
f24e9980
SW
1458 return;
1459
1460bad:
1461 pr_err("osdc handle_map corrupt msg\n");
9ec7cab1 1462 ceph_msg_dump(msg);
f24e9980
SW
1463 up_write(&osdc->map_sem);
1464 return;
1465}
1466
a40c4f10
YS
1467/*
1468 * watch/notify callback event infrastructure
1469 *
1470 * These callbacks are used both for watch and notify operations.
1471 */
1472static void __release_event(struct kref *kref)
1473{
1474 struct ceph_osd_event *event =
1475 container_of(kref, struct ceph_osd_event, kref);
1476
1477 dout("__release_event %p\n", event);
1478 kfree(event);
1479}
1480
1481static void get_event(struct ceph_osd_event *event)
1482{
1483 kref_get(&event->kref);
1484}
1485
1486void ceph_osdc_put_event(struct ceph_osd_event *event)
1487{
1488 kref_put(&event->kref, __release_event);
1489}
1490EXPORT_SYMBOL(ceph_osdc_put_event);
1491
1492static void __insert_event(struct ceph_osd_client *osdc,
1493 struct ceph_osd_event *new)
1494{
1495 struct rb_node **p = &osdc->event_tree.rb_node;
1496 struct rb_node *parent = NULL;
1497 struct ceph_osd_event *event = NULL;
1498
1499 while (*p) {
1500 parent = *p;
1501 event = rb_entry(parent, struct ceph_osd_event, node);
1502 if (new->cookie < event->cookie)
1503 p = &(*p)->rb_left;
1504 else if (new->cookie > event->cookie)
1505 p = &(*p)->rb_right;
1506 else
1507 BUG();
1508 }
1509
1510 rb_link_node(&new->node, parent, p);
1511 rb_insert_color(&new->node, &osdc->event_tree);
1512}
1513
1514static struct ceph_osd_event *__find_event(struct ceph_osd_client *osdc,
1515 u64 cookie)
1516{
1517 struct rb_node **p = &osdc->event_tree.rb_node;
1518 struct rb_node *parent = NULL;
1519 struct ceph_osd_event *event = NULL;
1520
1521 while (*p) {
1522 parent = *p;
1523 event = rb_entry(parent, struct ceph_osd_event, node);
1524 if (cookie < event->cookie)
1525 p = &(*p)->rb_left;
1526 else if (cookie > event->cookie)
1527 p = &(*p)->rb_right;
1528 else
1529 return event;
1530 }
1531 return NULL;
1532}
1533
1534static void __remove_event(struct ceph_osd_event *event)
1535{
1536 struct ceph_osd_client *osdc = event->osdc;
1537
1538 if (!RB_EMPTY_NODE(&event->node)) {
1539 dout("__remove_event removed %p\n", event);
1540 rb_erase(&event->node, &osdc->event_tree);
1541 ceph_osdc_put_event(event);
1542 } else {
1543 dout("__remove_event didn't remove %p\n", event);
1544 }
1545}
1546
1547int ceph_osdc_create_event(struct ceph_osd_client *osdc,
1548 void (*event_cb)(u64, u64, u8, void *),
1549 int one_shot, void *data,
1550 struct ceph_osd_event **pevent)
1551{
1552 struct ceph_osd_event *event;
1553
1554 event = kmalloc(sizeof(*event), GFP_NOIO);
1555 if (!event)
1556 return -ENOMEM;
1557
1558 dout("create_event %p\n", event);
1559 event->cb = event_cb;
1560 event->one_shot = one_shot;
1561 event->data = data;
1562 event->osdc = osdc;
1563 INIT_LIST_HEAD(&event->osd_node);
1564 kref_init(&event->kref); /* one ref for us */
1565 kref_get(&event->kref); /* one ref for the caller */
1566 init_completion(&event->completion);
1567
1568 spin_lock(&osdc->event_lock);
1569 event->cookie = ++osdc->event_count;
1570 __insert_event(osdc, event);
1571 spin_unlock(&osdc->event_lock);
1572
1573 *pevent = event;
1574 return 0;
1575}
1576EXPORT_SYMBOL(ceph_osdc_create_event);
1577
1578void ceph_osdc_cancel_event(struct ceph_osd_event *event)
1579{
1580 struct ceph_osd_client *osdc = event->osdc;
1581
1582 dout("cancel_event %p\n", event);
1583 spin_lock(&osdc->event_lock);
1584 __remove_event(event);
1585 spin_unlock(&osdc->event_lock);
1586 ceph_osdc_put_event(event); /* caller's */
1587}
1588EXPORT_SYMBOL(ceph_osdc_cancel_event);
1589
1590
1591static void do_event_work(struct work_struct *work)
1592{
1593 struct ceph_osd_event_work *event_work =
1594 container_of(work, struct ceph_osd_event_work, work);
1595 struct ceph_osd_event *event = event_work->event;
1596 u64 ver = event_work->ver;
1597 u64 notify_id = event_work->notify_id;
1598 u8 opcode = event_work->opcode;
1599
1600 dout("do_event_work completing %p\n", event);
1601 event->cb(ver, notify_id, opcode, event->data);
1602 complete(&event->completion);
1603 dout("do_event_work completed %p\n", event);
1604 ceph_osdc_put_event(event);
1605 kfree(event_work);
1606}
1607
1608
1609/*
1610 * Process osd watch notifications
1611 */
1612void handle_watch_notify(struct ceph_osd_client *osdc, struct ceph_msg *msg)
1613{
1614 void *p, *end;
1615 u8 proto_ver;
1616 u64 cookie, ver, notify_id;
1617 u8 opcode;
1618 struct ceph_osd_event *event;
1619 struct ceph_osd_event_work *event_work;
1620
1621 p = msg->front.iov_base;
1622 end = p + msg->front.iov_len;
1623
1624 ceph_decode_8_safe(&p, end, proto_ver, bad);
1625 ceph_decode_8_safe(&p, end, opcode, bad);
1626 ceph_decode_64_safe(&p, end, cookie, bad);
1627 ceph_decode_64_safe(&p, end, ver, bad);
1628 ceph_decode_64_safe(&p, end, notify_id, bad);
1629
1630 spin_lock(&osdc->event_lock);
1631 event = __find_event(osdc, cookie);
1632 if (event) {
1633 get_event(event);
1634 if (event->one_shot)
1635 __remove_event(event);
1636 }
1637 spin_unlock(&osdc->event_lock);
1638 dout("handle_watch_notify cookie %lld ver %lld event %p\n",
1639 cookie, ver, event);
1640 if (event) {
1641 event_work = kmalloc(sizeof(*event_work), GFP_NOIO);
a40c4f10
YS
1642 if (!event_work) {
1643 dout("ERROR: could not allocate event_work\n");
1644 goto done_err;
1645 }
6b0ae409 1646 INIT_WORK(&event_work->work, do_event_work);
a40c4f10
YS
1647 event_work->event = event;
1648 event_work->ver = ver;
1649 event_work->notify_id = notify_id;
1650 event_work->opcode = opcode;
1651 if (!queue_work(osdc->notify_wq, &event_work->work)) {
1652 dout("WARNING: failed to queue notify event work\n");
1653 goto done_err;
1654 }
1655 }
1656
1657 return;
1658
1659done_err:
1660 complete(&event->completion);
1661 ceph_osdc_put_event(event);
1662 return;
1663
1664bad:
1665 pr_err("osdc handle_watch_notify corrupt msg\n");
1666 return;
1667}
1668
1669int ceph_osdc_wait_event(struct ceph_osd_event *event, unsigned long timeout)
1670{
1671 int err;
1672
1673 dout("wait_event %p\n", event);
1674 err = wait_for_completion_interruptible_timeout(&event->completion,
1675 timeout * HZ);
1676 ceph_osdc_put_event(event);
1677 if (err > 0)
1678 err = 0;
1679 dout("wait_event %p returns %d\n", event, err);
1680 return err;
1681}
1682EXPORT_SYMBOL(ceph_osdc_wait_event);
1683
f24e9980
SW
1684/*
1685 * Register request, send initial attempt.
1686 */
1687int ceph_osdc_start_request(struct ceph_osd_client *osdc,
1688 struct ceph_osd_request *req,
1689 bool nofail)
1690{
c1ea8823 1691 int rc = 0;
f24e9980
SW
1692
1693 req->r_request->pages = req->r_pages;
1694 req->r_request->nr_pages = req->r_num_pages;
68b4476b
YS
1695#ifdef CONFIG_BLOCK
1696 req->r_request->bio = req->r_bio;
1697#endif
1698 req->r_request->trail = req->r_trail;
f24e9980
SW
1699
1700 register_request(osdc, req);
1701
1702 down_read(&osdc->map_sem);
1703 mutex_lock(&osdc->request_mutex);
c1ea8823
SW
1704 /*
1705 * a racing kick_requests() may have sent the message for us
1706 * while we dropped request_mutex above, so only send now if
1707 * the request still han't been touched yet.
1708 */
1709 if (req->r_sent == 0) {
38d6453c 1710 rc = __map_request(osdc, req, 0);
9d6fcb08
SW
1711 if (rc < 0) {
1712 if (nofail) {
1713 dout("osdc_start_request failed map, "
1714 " will retry %lld\n", req->r_tid);
1715 rc = 0;
1716 }
234af26f 1717 goto out_unlock;
9d6fcb08 1718 }
6f6c7006
SW
1719 if (req->r_osd == NULL) {
1720 dout("send_request %p no up osds in pg\n", req);
1721 ceph_monc_request_next_osdmap(&osdc->client->monc);
1722 } else {
56e925b6 1723 __send_request(osdc, req);
f24e9980 1724 }
56e925b6 1725 rc = 0;
f24e9980 1726 }
234af26f
DC
1727
1728out_unlock:
f24e9980
SW
1729 mutex_unlock(&osdc->request_mutex);
1730 up_read(&osdc->map_sem);
1731 return rc;
1732}
3d14c5d2 1733EXPORT_SYMBOL(ceph_osdc_start_request);
f24e9980
SW
1734
1735/*
1736 * wait for a request to complete
1737 */
1738int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
1739 struct ceph_osd_request *req)
1740{
1741 int rc;
1742
1743 rc = wait_for_completion_interruptible(&req->r_completion);
1744 if (rc < 0) {
1745 mutex_lock(&osdc->request_mutex);
1746 __cancel_request(req);
529cfcc4 1747 __unregister_request(osdc, req);
f24e9980 1748 mutex_unlock(&osdc->request_mutex);
25845472 1749 complete_request(req);
529cfcc4 1750 dout("wait_request tid %llu canceled/timed out\n", req->r_tid);
f24e9980
SW
1751 return rc;
1752 }
1753
1754 dout("wait_request tid %llu result %d\n", req->r_tid, req->r_result);
1755 return req->r_result;
1756}
3d14c5d2 1757EXPORT_SYMBOL(ceph_osdc_wait_request);
f24e9980
SW
1758
1759/*
1760 * sync - wait for all in-flight requests to flush. avoid starvation.
1761 */
1762void ceph_osdc_sync(struct ceph_osd_client *osdc)
1763{
1764 struct ceph_osd_request *req;
1765 u64 last_tid, next_tid = 0;
1766
1767 mutex_lock(&osdc->request_mutex);
1768 last_tid = osdc->last_tid;
1769 while (1) {
1770 req = __lookup_request_ge(osdc, next_tid);
1771 if (!req)
1772 break;
1773 if (req->r_tid > last_tid)
1774 break;
1775
1776 next_tid = req->r_tid + 1;
1777 if ((req->r_flags & CEPH_OSD_FLAG_WRITE) == 0)
1778 continue;
1779
1780 ceph_osdc_get_request(req);
1781 mutex_unlock(&osdc->request_mutex);
1782 dout("sync waiting on tid %llu (last is %llu)\n",
1783 req->r_tid, last_tid);
1784 wait_for_completion(&req->r_safe_completion);
1785 mutex_lock(&osdc->request_mutex);
1786 ceph_osdc_put_request(req);
1787 }
1788 mutex_unlock(&osdc->request_mutex);
1789 dout("sync done (thru tid %llu)\n", last_tid);
1790}
3d14c5d2 1791EXPORT_SYMBOL(ceph_osdc_sync);
f24e9980
SW
1792
1793/*
1794 * init, shutdown
1795 */
1796int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client)
1797{
1798 int err;
1799
1800 dout("init\n");
1801 osdc->client = client;
1802 osdc->osdmap = NULL;
1803 init_rwsem(&osdc->map_sem);
1804 init_completion(&osdc->map_waiters);
1805 osdc->last_requested_map = 0;
1806 mutex_init(&osdc->request_mutex);
f24e9980
SW
1807 osdc->last_tid = 0;
1808 osdc->osds = RB_ROOT;
f5a2041b 1809 INIT_LIST_HEAD(&osdc->osd_lru);
f24e9980 1810 osdc->requests = RB_ROOT;
422d2cb8 1811 INIT_LIST_HEAD(&osdc->req_lru);
6f6c7006
SW
1812 INIT_LIST_HEAD(&osdc->req_unsent);
1813 INIT_LIST_HEAD(&osdc->req_notarget);
a40c4f10 1814 INIT_LIST_HEAD(&osdc->req_linger);
f24e9980
SW
1815 osdc->num_requests = 0;
1816 INIT_DELAYED_WORK(&osdc->timeout_work, handle_timeout);
f5a2041b 1817 INIT_DELAYED_WORK(&osdc->osds_timeout_work, handle_osds_timeout);
a40c4f10
YS
1818 spin_lock_init(&osdc->event_lock);
1819 osdc->event_tree = RB_ROOT;
1820 osdc->event_count = 0;
f5a2041b
YS
1821
1822 schedule_delayed_work(&osdc->osds_timeout_work,
3d14c5d2 1823 round_jiffies_relative(osdc->client->options->osd_idle_ttl * HZ));
f24e9980 1824
5f44f142 1825 err = -ENOMEM;
f24e9980
SW
1826 osdc->req_mempool = mempool_create_kmalloc_pool(10,
1827 sizeof(struct ceph_osd_request));
1828 if (!osdc->req_mempool)
5f44f142 1829 goto out;
f24e9980 1830
d50b409f
SW
1831 err = ceph_msgpool_init(&osdc->msgpool_op, CEPH_MSG_OSD_OP,
1832 OSD_OP_FRONT_LEN, 10, true,
4f48280e 1833 "osd_op");
f24e9980 1834 if (err < 0)
5f44f142 1835 goto out_mempool;
d50b409f 1836 err = ceph_msgpool_init(&osdc->msgpool_op_reply, CEPH_MSG_OSD_OPREPLY,
4f48280e
SW
1837 OSD_OPREPLY_FRONT_LEN, 10, true,
1838 "osd_op_reply");
c16e7869
SW
1839 if (err < 0)
1840 goto out_msgpool;
a40c4f10
YS
1841
1842 osdc->notify_wq = create_singlethread_workqueue("ceph-watch-notify");
1843 if (IS_ERR(osdc->notify_wq)) {
1844 err = PTR_ERR(osdc->notify_wq);
1845 osdc->notify_wq = NULL;
1846 goto out_msgpool;
1847 }
f24e9980 1848 return 0;
5f44f142 1849
c16e7869
SW
1850out_msgpool:
1851 ceph_msgpool_destroy(&osdc->msgpool_op);
5f44f142
SW
1852out_mempool:
1853 mempool_destroy(osdc->req_mempool);
1854out:
1855 return err;
f24e9980 1856}
3d14c5d2 1857EXPORT_SYMBOL(ceph_osdc_init);
f24e9980
SW
1858
1859void ceph_osdc_stop(struct ceph_osd_client *osdc)
1860{
a40c4f10
YS
1861 flush_workqueue(osdc->notify_wq);
1862 destroy_workqueue(osdc->notify_wq);
f24e9980 1863 cancel_delayed_work_sync(&osdc->timeout_work);
f5a2041b 1864 cancel_delayed_work_sync(&osdc->osds_timeout_work);
f24e9980
SW
1865 if (osdc->osdmap) {
1866 ceph_osdmap_destroy(osdc->osdmap);
1867 osdc->osdmap = NULL;
1868 }
aca420bc 1869 remove_all_osds(osdc);
f24e9980
SW
1870 mempool_destroy(osdc->req_mempool);
1871 ceph_msgpool_destroy(&osdc->msgpool_op);
c16e7869 1872 ceph_msgpool_destroy(&osdc->msgpool_op_reply);
f24e9980 1873}
3d14c5d2 1874EXPORT_SYMBOL(ceph_osdc_stop);
f24e9980
SW
1875
1876/*
1877 * Read some contiguous pages. If we cross a stripe boundary, shorten
1878 * *plen. Return number of bytes read, or error.
1879 */
1880int ceph_osdc_readpages(struct ceph_osd_client *osdc,
1881 struct ceph_vino vino, struct ceph_file_layout *layout,
1882 u64 off, u64 *plen,
1883 u32 truncate_seq, u64 truncate_size,
b7495fc2 1884 struct page **pages, int num_pages, int page_align)
f24e9980
SW
1885{
1886 struct ceph_osd_request *req;
1887 int rc = 0;
1888
1889 dout("readpages on ino %llx.%llx on %llu~%llu\n", vino.ino,
1890 vino.snap, off, *plen);
1891 req = ceph_osdc_new_request(osdc, layout, vino, off, plen,
1892 CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
1893 NULL, 0, truncate_seq, truncate_size, NULL,
b7495fc2 1894 false, 1, page_align);
6816282d
SW
1895 if (IS_ERR(req))
1896 return PTR_ERR(req);
f24e9980
SW
1897
1898 /* it may be a short read due to an object boundary */
1899 req->r_pages = pages;
f24e9980 1900
b7495fc2
SW
1901 dout("readpages final extent is %llu~%llu (%d pages align %d)\n",
1902 off, *plen, req->r_num_pages, page_align);
f24e9980
SW
1903
1904 rc = ceph_osdc_start_request(osdc, req, false);
1905 if (!rc)
1906 rc = ceph_osdc_wait_request(osdc, req);
1907
1908 ceph_osdc_put_request(req);
1909 dout("readpages result %d\n", rc);
1910 return rc;
1911}
3d14c5d2 1912EXPORT_SYMBOL(ceph_osdc_readpages);
f24e9980
SW
1913
1914/*
1915 * do a synchronous write on N pages
1916 */
1917int ceph_osdc_writepages(struct ceph_osd_client *osdc, struct ceph_vino vino,
1918 struct ceph_file_layout *layout,
1919 struct ceph_snap_context *snapc,
1920 u64 off, u64 len,
1921 u32 truncate_seq, u64 truncate_size,
1922 struct timespec *mtime,
1923 struct page **pages, int num_pages,
1924 int flags, int do_sync, bool nofail)
1925{
1926 struct ceph_osd_request *req;
1927 int rc = 0;
b7495fc2 1928 int page_align = off & ~PAGE_MASK;
f24e9980
SW
1929
1930 BUG_ON(vino.snap != CEPH_NOSNAP);
1931 req = ceph_osdc_new_request(osdc, layout, vino, off, &len,
1932 CEPH_OSD_OP_WRITE,
1933 flags | CEPH_OSD_FLAG_ONDISK |
1934 CEPH_OSD_FLAG_WRITE,
1935 snapc, do_sync,
1936 truncate_seq, truncate_size, mtime,
b7495fc2 1937 nofail, 1, page_align);
6816282d
SW
1938 if (IS_ERR(req))
1939 return PTR_ERR(req);
f24e9980
SW
1940
1941 /* it may be a short write due to an object boundary */
1942 req->r_pages = pages;
f24e9980
SW
1943 dout("writepages %llu~%llu (%d pages)\n", off, len,
1944 req->r_num_pages);
1945
1946 rc = ceph_osdc_start_request(osdc, req, nofail);
1947 if (!rc)
1948 rc = ceph_osdc_wait_request(osdc, req);
1949
1950 ceph_osdc_put_request(req);
1951 if (rc == 0)
1952 rc = len;
1953 dout("writepages result %d\n", rc);
1954 return rc;
1955}
3d14c5d2 1956EXPORT_SYMBOL(ceph_osdc_writepages);
f24e9980
SW
1957
1958/*
1959 * handle incoming message
1960 */
1961static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
1962{
1963 struct ceph_osd *osd = con->private;
32c895e7 1964 struct ceph_osd_client *osdc;
f24e9980
SW
1965 int type = le16_to_cpu(msg->hdr.type);
1966
1967 if (!osd)
4a32f93d 1968 goto out;
32c895e7 1969 osdc = osd->o_osdc;
f24e9980
SW
1970
1971 switch (type) {
1972 case CEPH_MSG_OSD_MAP:
1973 ceph_osdc_handle_map(osdc, msg);
1974 break;
1975 case CEPH_MSG_OSD_OPREPLY:
350b1c32 1976 handle_reply(osdc, msg, con);
f24e9980 1977 break;
a40c4f10
YS
1978 case CEPH_MSG_WATCH_NOTIFY:
1979 handle_watch_notify(osdc, msg);
1980 break;
f24e9980
SW
1981
1982 default:
1983 pr_err("received unknown message type %d %s\n", type,
1984 ceph_msg_type_name(type));
1985 }
4a32f93d 1986out:
f24e9980
SW
1987 ceph_msg_put(msg);
1988}
1989
5b3a4db3 1990/*
21b667f6
SW
1991 * lookup and return message for incoming reply. set up reply message
1992 * pages.
5b3a4db3
SW
1993 */
1994static struct ceph_msg *get_reply(struct ceph_connection *con,
2450418c
YS
1995 struct ceph_msg_header *hdr,
1996 int *skip)
f24e9980
SW
1997{
1998 struct ceph_osd *osd = con->private;
1999 struct ceph_osd_client *osdc = osd->o_osdc;
2450418c 2000 struct ceph_msg *m;
0547a9b3 2001 struct ceph_osd_request *req;
5b3a4db3
SW
2002 int front = le32_to_cpu(hdr->front_len);
2003 int data_len = le32_to_cpu(hdr->data_len);
0547a9b3 2004 u64 tid;
f24e9980 2005
0547a9b3
YS
2006 tid = le64_to_cpu(hdr->tid);
2007 mutex_lock(&osdc->request_mutex);
2008 req = __lookup_request(osdc, tid);
2009 if (!req) {
2010 *skip = 1;
2011 m = NULL;
756a16a5
SW
2012 dout("get_reply unknown tid %llu from osd%d\n", tid,
2013 osd->o_osd);
0547a9b3
YS
2014 goto out;
2015 }
c16e7869
SW
2016
2017 if (req->r_con_filling_msg) {
8921d114 2018 dout("%s revoking msg %p from old con %p\n", __func__,
c16e7869 2019 req->r_reply, req->r_con_filling_msg);
8921d114 2020 ceph_msg_revoke_incoming(req->r_reply);
0d47766f 2021 req->r_con_filling_msg->ops->put(req->r_con_filling_msg);
6f46cb29 2022 req->r_con_filling_msg = NULL;
0547a9b3
YS
2023 }
2024
c16e7869
SW
2025 if (front > req->r_reply->front.iov_len) {
2026 pr_warning("get_reply front %d > preallocated %d\n",
2027 front, (int)req->r_reply->front.iov_len);
b61c2763 2028 m = ceph_msg_new(CEPH_MSG_OSD_OPREPLY, front, GFP_NOFS, false);
a79832f2 2029 if (!m)
c16e7869
SW
2030 goto out;
2031 ceph_msg_put(req->r_reply);
2032 req->r_reply = m;
2033 }
2034 m = ceph_msg_get(req->r_reply);
2035
0547a9b3 2036 if (data_len > 0) {
b7495fc2 2037 int want = calc_pages_for(req->r_page_alignment, data_len);
21b667f6
SW
2038
2039 if (unlikely(req->r_num_pages < want)) {
9bb0ce2b
SW
2040 pr_warning("tid %lld reply has %d bytes %d pages, we"
2041 " had only %d pages ready\n", tid, data_len,
2042 want, req->r_num_pages);
0547a9b3
YS
2043 *skip = 1;
2044 ceph_msg_put(m);
a79832f2 2045 m = NULL;
21b667f6 2046 goto out;
0547a9b3 2047 }
21b667f6
SW
2048 m->pages = req->r_pages;
2049 m->nr_pages = req->r_num_pages;
c5c6b19d 2050 m->page_alignment = req->r_page_alignment;
68b4476b
YS
2051#ifdef CONFIG_BLOCK
2052 m->bio = req->r_bio;
2053#endif
0547a9b3 2054 }
5b3a4db3 2055 *skip = 0;
0d47766f 2056 req->r_con_filling_msg = con->ops->get(con);
c16e7869 2057 dout("get_reply tid %lld %p\n", tid, m);
0547a9b3
YS
2058
2059out:
2060 mutex_unlock(&osdc->request_mutex);
2450418c 2061 return m;
5b3a4db3
SW
2062
2063}
2064
2065static struct ceph_msg *alloc_msg(struct ceph_connection *con,
2066 struct ceph_msg_header *hdr,
2067 int *skip)
2068{
2069 struct ceph_osd *osd = con->private;
2070 int type = le16_to_cpu(hdr->type);
2071 int front = le32_to_cpu(hdr->front_len);
2072
1c20f2d2 2073 *skip = 0;
5b3a4db3
SW
2074 switch (type) {
2075 case CEPH_MSG_OSD_MAP:
a40c4f10 2076 case CEPH_MSG_WATCH_NOTIFY:
b61c2763 2077 return ceph_msg_new(type, front, GFP_NOFS, false);
5b3a4db3
SW
2078 case CEPH_MSG_OSD_OPREPLY:
2079 return get_reply(con, hdr, skip);
2080 default:
2081 pr_info("alloc_msg unexpected msg type %d from osd%d\n", type,
2082 osd->o_osd);
2083 *skip = 1;
2084 return NULL;
2085 }
f24e9980
SW
2086}
2087
2088/*
2089 * Wrappers to refcount containing ceph_osd struct
2090 */
2091static struct ceph_connection *get_osd_con(struct ceph_connection *con)
2092{
2093 struct ceph_osd *osd = con->private;
2094 if (get_osd(osd))
2095 return con;
2096 return NULL;
2097}
2098
2099static void put_osd_con(struct ceph_connection *con)
2100{
2101 struct ceph_osd *osd = con->private;
2102 put_osd(osd);
2103}
2104
4e7a5dcd
SW
2105/*
2106 * authentication
2107 */
a3530df3
AE
2108/*
2109 * Note: returned pointer is the address of a structure that's
2110 * managed separately. Caller must *not* attempt to free it.
2111 */
2112static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con,
8f43fb53 2113 int *proto, int force_new)
4e7a5dcd
SW
2114{
2115 struct ceph_osd *o = con->private;
2116 struct ceph_osd_client *osdc = o->o_osdc;
2117 struct ceph_auth_client *ac = osdc->client->monc.auth;
74f1869f 2118 struct ceph_auth_handshake *auth = &o->o_auth;
4e7a5dcd 2119
74f1869f 2120 if (force_new && auth->authorizer) {
a255651d
AE
2121 if (ac->ops && ac->ops->destroy_authorizer)
2122 ac->ops->destroy_authorizer(ac, auth->authorizer);
74f1869f
AE
2123 auth->authorizer = NULL;
2124 }
a255651d 2125 if (!auth->authorizer && ac->ops && ac->ops->create_authorizer) {
a3530df3
AE
2126 int ret = ac->ops->create_authorizer(ac, CEPH_ENTITY_TYPE_OSD,
2127 auth);
4e7a5dcd 2128 if (ret)
a3530df3 2129 return ERR_PTR(ret);
4e7a5dcd 2130 }
4e7a5dcd 2131 *proto = ac->protocol;
74f1869f 2132
a3530df3 2133 return auth;
4e7a5dcd
SW
2134}
2135
2136
2137static int verify_authorizer_reply(struct ceph_connection *con, int len)
2138{
2139 struct ceph_osd *o = con->private;
2140 struct ceph_osd_client *osdc = o->o_osdc;
2141 struct ceph_auth_client *ac = osdc->client->monc.auth;
2142
a255651d
AE
2143 /*
2144 * XXX If ac->ops or ac->ops->verify_authorizer_reply is null,
2145 * XXX which do we do: succeed or fail?
2146 */
6c4a1915 2147 return ac->ops->verify_authorizer_reply(ac, o->o_auth.authorizer, len);
4e7a5dcd
SW
2148}
2149
9bd2e6f8
SW
2150static int invalidate_authorizer(struct ceph_connection *con)
2151{
2152 struct ceph_osd *o = con->private;
2153 struct ceph_osd_client *osdc = o->o_osdc;
2154 struct ceph_auth_client *ac = osdc->client->monc.auth;
2155
a255651d 2156 if (ac->ops && ac->ops->invalidate_authorizer)
9bd2e6f8
SW
2157 ac->ops->invalidate_authorizer(ac, CEPH_ENTITY_TYPE_OSD);
2158
2159 return ceph_monc_validate_auth(&osdc->client->monc);
2160}
4e7a5dcd 2161
9e32789f 2162static const struct ceph_connection_operations osd_con_ops = {
f24e9980
SW
2163 .get = get_osd_con,
2164 .put = put_osd_con,
2165 .dispatch = dispatch,
4e7a5dcd
SW
2166 .get_authorizer = get_authorizer,
2167 .verify_authorizer_reply = verify_authorizer_reply,
9bd2e6f8 2168 .invalidate_authorizer = invalidate_authorizer,
f24e9980 2169 .alloc_msg = alloc_msg,
81b024e7 2170 .fault = osd_reset,
f24e9980 2171};