ceph: fix leak of monc mutex
[linux-2.6-block.git] / fs / ceph / mon_client.c
CommitLineData
ba75bb98
SW
1#include "ceph_debug.h"
2
3#include <linux/types.h>
4#include <linux/random.h>
5#include <linux/sched.h>
6
7#include "mon_client.h"
8#include "super.h"
4e7a5dcd 9#include "auth.h"
ba75bb98
SW
10#include "decode.h"
11
12/*
13 * Interact with Ceph monitor cluster. Handle requests for new map
14 * versions, and periodically resend as needed. Also implement
15 * statfs() and umount().
16 *
17 * A small cluster of Ceph "monitors" are responsible for managing critical
18 * cluster configuration and state information. An odd number (e.g., 3, 5)
19 * of cmon daemons use a modified version of the Paxos part-time parliament
20 * algorithm to manage the MDS map (mds cluster membership), OSD map, and
21 * list of clients who have mounted the file system.
22 *
23 * We maintain an open, active session with a monitor at all times in order to
24 * receive timely MDSMap updates. We periodically send a keepalive byte on the
25 * TCP socket to ensure we detect a failure. If the connection does break, we
26 * randomly hunt for a new monitor. Once the connection is reestablished, we
27 * resend any outstanding requests.
28 */
29
30const static struct ceph_connection_operations mon_con_ops;
31
32/*
33 * Decode a monmap blob (e.g., during mount).
34 */
35struct ceph_monmap *ceph_monmap_decode(void *p, void *end)
36{
37 struct ceph_monmap *m = NULL;
38 int i, err = -EINVAL;
39 struct ceph_fsid fsid;
40 u32 epoch, num_mon;
41 u16 version;
4e7a5dcd
SW
42 u32 len;
43
44 ceph_decode_32_safe(&p, end, len, bad);
45 ceph_decode_need(&p, end, len, bad);
ba75bb98
SW
46
47 dout("monmap_decode %p %p len %d\n", p, end, (int)(end-p));
48
49 ceph_decode_16_safe(&p, end, version, bad);
50
51 ceph_decode_need(&p, end, sizeof(fsid) + 2*sizeof(u32), bad);
52 ceph_decode_copy(&p, &fsid, sizeof(fsid));
c89136ea 53 epoch = ceph_decode_32(&p);
ba75bb98 54
c89136ea 55 num_mon = ceph_decode_32(&p);
ba75bb98
SW
56 ceph_decode_need(&p, end, num_mon*sizeof(m->mon_inst[0]), bad);
57
58 if (num_mon >= CEPH_MAX_MON)
59 goto bad;
60 m = kmalloc(sizeof(*m) + sizeof(m->mon_inst[0])*num_mon, GFP_NOFS);
61 if (m == NULL)
62 return ERR_PTR(-ENOMEM);
63 m->fsid = fsid;
64 m->epoch = epoch;
65 m->num_mon = num_mon;
66 ceph_decode_copy(&p, m->mon_inst, num_mon*sizeof(m->mon_inst[0]));
63f2d211
SW
67 for (i = 0; i < num_mon; i++)
68 ceph_decode_addr(&m->mon_inst[i].addr);
ba75bb98 69
ba75bb98
SW
70 dout("monmap_decode epoch %d, num_mon %d\n", m->epoch,
71 m->num_mon);
72 for (i = 0; i < m->num_mon; i++)
73 dout("monmap_decode mon%d is %s\n", i,
74 pr_addr(&m->mon_inst[i].addr.in_addr));
75 return m;
76
77bad:
78 dout("monmap_decode failed with %d\n", err);
79 kfree(m);
80 return ERR_PTR(err);
81}
82
83/*
84 * return true if *addr is included in the monmap.
85 */
86int ceph_monmap_contains(struct ceph_monmap *m, struct ceph_entity_addr *addr)
87{
88 int i;
89
90 for (i = 0; i < m->num_mon; i++)
91 if (ceph_entity_addr_equal(addr, &m->mon_inst[i].addr))
92 return 1;
93 return 0;
94}
95
96/*
97 * Close monitor session, if any.
98 */
99static void __close_session(struct ceph_mon_client *monc)
100{
101 if (monc->con) {
102 dout("__close_session closing mon%d\n", monc->cur_mon);
4e7a5dcd 103 ceph_con_revoke(monc->con, monc->m_auth);
ba75bb98
SW
104 ceph_con_close(monc->con);
105 monc->cur_mon = -1;
4e7a5dcd 106 ceph_auth_reset(monc->auth);
ba75bb98
SW
107 }
108}
109
110/*
111 * Open a session with a (new) monitor.
112 */
113static int __open_session(struct ceph_mon_client *monc)
114{
115 char r;
4e7a5dcd 116 int ret;
ba75bb98
SW
117
118 if (monc->cur_mon < 0) {
119 get_random_bytes(&r, 1);
120 monc->cur_mon = r % monc->monmap->num_mon;
121 dout("open_session num=%d r=%d -> mon%d\n",
122 monc->monmap->num_mon, r, monc->cur_mon);
123 monc->sub_sent = 0;
124 monc->sub_renew_after = jiffies; /* i.e., expired */
125 monc->want_next_osdmap = !!monc->want_next_osdmap;
126
127 dout("open_session mon%d opening\n", monc->cur_mon);
128 monc->con->peer_name.type = CEPH_ENTITY_TYPE_MON;
129 monc->con->peer_name.num = cpu_to_le64(monc->cur_mon);
130 ceph_con_open(monc->con,
131 &monc->monmap->mon_inst[monc->cur_mon].addr);
4e7a5dcd
SW
132
133 /* initiatiate authentication handshake */
134 ret = ceph_auth_build_hello(monc->auth,
135 monc->m_auth->front.iov_base,
136 monc->m_auth->front_max);
137 monc->m_auth->front.iov_len = ret;
138 monc->m_auth->hdr.front_len = cpu_to_le32(ret);
139 ceph_msg_get(monc->m_auth); /* keep our ref */
140 ceph_con_send(monc->con, monc->m_auth);
ba75bb98
SW
141 } else {
142 dout("open_session mon%d already open\n", monc->cur_mon);
143 }
144 return 0;
145}
146
147static bool __sub_expired(struct ceph_mon_client *monc)
148{
149 return time_after_eq(jiffies, monc->sub_renew_after);
150}
151
152/*
153 * Reschedule delayed work timer.
154 */
155static void __schedule_delayed(struct ceph_mon_client *monc)
156{
157 unsigned delay;
158
4e7a5dcd 159 if (monc->cur_mon < 0 || __sub_expired(monc))
ba75bb98
SW
160 delay = 10 * HZ;
161 else
162 delay = 20 * HZ;
163 dout("__schedule_delayed after %u\n", delay);
164 schedule_delayed_work(&monc->delayed_work, delay);
165}
166
167/*
168 * Send subscribe request for mdsmap and/or osdmap.
169 */
170static void __send_subscribe(struct ceph_mon_client *monc)
171{
172 dout("__send_subscribe sub_sent=%u exp=%u want_osd=%d\n",
173 (unsigned)monc->sub_sent, __sub_expired(monc),
174 monc->want_next_osdmap);
175 if ((__sub_expired(monc) && !monc->sub_sent) ||
176 monc->want_next_osdmap == 1) {
177 struct ceph_msg *msg;
178 struct ceph_mon_subscribe_item *i;
179 void *p, *end;
180
4e7a5dcd 181 msg = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, 0, 0, NULL);
ba75bb98
SW
182 if (!msg)
183 return;
184
185 p = msg->front.iov_base;
186 end = p + msg->front.iov_len;
187
188 dout("__send_subscribe to 'mdsmap' %u+\n",
189 (unsigned)monc->have_mdsmap);
190 if (monc->want_next_osdmap) {
191 dout("__send_subscribe to 'osdmap' %u\n",
192 (unsigned)monc->have_osdmap);
4e7a5dcd 193 ceph_encode_32(&p, 3);
ba75bb98
SW
194 ceph_encode_string(&p, end, "osdmap", 6);
195 i = p;
196 i->have = cpu_to_le64(monc->have_osdmap);
197 i->onetime = 1;
198 p += sizeof(*i);
199 monc->want_next_osdmap = 2; /* requested */
200 } else {
4e7a5dcd 201 ceph_encode_32(&p, 2);
ba75bb98
SW
202 }
203 ceph_encode_string(&p, end, "mdsmap", 6);
204 i = p;
205 i->have = cpu_to_le64(monc->have_mdsmap);
206 i->onetime = 0;
207 p += sizeof(*i);
4e7a5dcd
SW
208 ceph_encode_string(&p, end, "monmap", 6);
209 i = p;
210 i->have = 0;
211 i->onetime = 0;
212 p += sizeof(*i);
ba75bb98
SW
213
214 msg->front.iov_len = p - msg->front.iov_base;
215 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
216 ceph_con_send(monc->con, msg);
217
218 monc->sub_sent = jiffies | 1; /* never 0 */
219 }
220}
221
222static void handle_subscribe_ack(struct ceph_mon_client *monc,
223 struct ceph_msg *msg)
224{
225 unsigned seconds;
07bd10fb
SW
226 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
227
228 if (msg->front.iov_len < sizeof(*h))
229 goto bad;
230 seconds = le32_to_cpu(h->duration);
ba75bb98 231
ba75bb98
SW
232 mutex_lock(&monc->mutex);
233 if (monc->hunting) {
234 pr_info("mon%d %s session established\n",
235 monc->cur_mon, pr_addr(&monc->con->peer_addr.in_addr));
236 monc->hunting = false;
237 }
238 dout("handle_subscribe_ack after %d seconds\n", seconds);
0656d11b 239 monc->sub_renew_after = monc->sub_sent + (seconds >> 1)*HZ - 1;
ba75bb98
SW
240 monc->sub_sent = 0;
241 mutex_unlock(&monc->mutex);
242 return;
243bad:
244 pr_err("got corrupt subscribe-ack msg\n");
245}
246
247/*
248 * Keep track of which maps we have
249 */
250int ceph_monc_got_mdsmap(struct ceph_mon_client *monc, u32 got)
251{
252 mutex_lock(&monc->mutex);
253 monc->have_mdsmap = got;
254 mutex_unlock(&monc->mutex);
255 return 0;
256}
257
258int ceph_monc_got_osdmap(struct ceph_mon_client *monc, u32 got)
259{
260 mutex_lock(&monc->mutex);
261 monc->have_osdmap = got;
262 monc->want_next_osdmap = 0;
263 mutex_unlock(&monc->mutex);
264 return 0;
265}
266
267/*
268 * Register interest in the next osdmap
269 */
270void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
271{
272 dout("request_next_osdmap have %u\n", monc->have_osdmap);
273 mutex_lock(&monc->mutex);
274 if (!monc->want_next_osdmap)
275 monc->want_next_osdmap = 1;
276 if (monc->want_next_osdmap < 2)
277 __send_subscribe(monc);
278 mutex_unlock(&monc->mutex);
279}
280
4e7a5dcd 281/*
50b885b9 282 *
4e7a5dcd
SW
283 */
284int ceph_monc_open_session(struct ceph_mon_client *monc)
ba75bb98
SW
285{
286 if (!monc->con) {
287 monc->con = kmalloc(sizeof(*monc->con), GFP_KERNEL);
288 if (!monc->con)
289 return -ENOMEM;
290 ceph_con_init(monc->client->msgr, monc->con);
291 monc->con->private = monc;
292 monc->con->ops = &mon_con_ops;
293 }
294
295 mutex_lock(&monc->mutex);
4e7a5dcd 296 __open_session(monc);
ba75bb98
SW
297 __schedule_delayed(monc);
298 mutex_unlock(&monc->mutex);
299 return 0;
300}
301
4e7a5dcd
SW
302/*
303 * The monitor responds with mount ack indicate mount success. The
304 * included client ticket allows the client to talk to MDSs and OSDs.
305 */
0743304d
SW
306static void ceph_monc_handle_map(struct ceph_mon_client *monc,
307 struct ceph_msg *msg)
4e7a5dcd
SW
308{
309 struct ceph_client *client = monc->client;
310 struct ceph_monmap *monmap = NULL, *old = monc->monmap;
311 void *p, *end;
312
313 mutex_lock(&monc->mutex);
314
315 dout("handle_monmap\n");
316 p = msg->front.iov_base;
317 end = p + msg->front.iov_len;
318
319 monmap = ceph_monmap_decode(p, end);
320 if (IS_ERR(monmap)) {
321 pr_err("problem decoding monmap, %d\n",
322 (int)PTR_ERR(monmap));
d4a780ce 323 goto out;
4e7a5dcd 324 }
0743304d
SW
325
326 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
4e7a5dcd 327 kfree(monmap);
d4a780ce 328 goto out;
4e7a5dcd
SW
329 }
330
331 client->monc.monmap = monmap;
4e7a5dcd
SW
332 kfree(old);
333
d4a780ce 334out:
4e7a5dcd
SW
335 mutex_unlock(&monc->mutex);
336 wake_up(&client->mount_wq);
337}
338
ba75bb98
SW
339/*
340 * statfs
341 */
342static void handle_statfs_reply(struct ceph_mon_client *monc,
343 struct ceph_msg *msg)
344{
345 struct ceph_mon_statfs_request *req;
346 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
347 u64 tid;
348
349 if (msg->front.iov_len != sizeof(*reply))
350 goto bad;
351 tid = le64_to_cpu(reply->tid);
352 dout("handle_statfs_reply %p tid %llu\n", msg, tid);
353
354 mutex_lock(&monc->mutex);
355 req = radix_tree_lookup(&monc->statfs_request_tree, tid);
356 if (req) {
357 *req->buf = reply->st;
358 req->result = 0;
359 }
360 mutex_unlock(&monc->mutex);
361 if (req)
362 complete(&req->completion);
363 return;
364
365bad:
366 pr_err("corrupt statfs reply, no tid\n");
367}
368
369/*
370 * (re)send a statfs request
371 */
372static int send_statfs(struct ceph_mon_client *monc,
373 struct ceph_mon_statfs_request *req)
374{
375 struct ceph_msg *msg;
376 struct ceph_mon_statfs *h;
ba75bb98
SW
377
378 dout("send_statfs tid %llu\n", req->tid);
ba75bb98
SW
379 msg = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), 0, 0, NULL);
380 if (IS_ERR(msg))
381 return PTR_ERR(msg);
382 req->request = msg;
383 h = msg->front.iov_base;
13e38c8a
SW
384 h->monhdr.have_version = 0;
385 h->monhdr.session_mon = cpu_to_le16(-1);
386 h->monhdr.session_mon_tid = 0;
ba75bb98
SW
387 h->fsid = monc->monmap->fsid;
388 h->tid = cpu_to_le64(req->tid);
389 ceph_con_send(monc->con, msg);
390 return 0;
391}
392
393/*
394 * Do a synchronous statfs().
395 */
396int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
397{
398 struct ceph_mon_statfs_request req;
399 int err;
400
401 req.buf = buf;
402 init_completion(&req.completion);
403
404 /* allocate memory for reply */
405 err = ceph_msgpool_resv(&monc->msgpool_statfs_reply, 1);
406 if (err)
407 return err;
408
409 /* register request */
410 mutex_lock(&monc->mutex);
411 req.tid = ++monc->last_tid;
412 req.last_attempt = jiffies;
413 req.delay = BASE_DELAY_INTERVAL;
414 if (radix_tree_insert(&monc->statfs_request_tree, req.tid, &req) < 0) {
415 mutex_unlock(&monc->mutex);
416 pr_err("ENOMEM in do_statfs\n");
417 return -ENOMEM;
418 }
419 monc->num_statfs_requests++;
420 mutex_unlock(&monc->mutex);
421
422 /* send request and wait */
423 err = send_statfs(monc, &req);
424 if (!err)
425 err = wait_for_completion_interruptible(&req.completion);
426
427 mutex_lock(&monc->mutex);
428 radix_tree_delete(&monc->statfs_request_tree, req.tid);
429 monc->num_statfs_requests--;
430 ceph_msgpool_resv(&monc->msgpool_statfs_reply, -1);
431 mutex_unlock(&monc->mutex);
432
433 if (!err)
434 err = req.result;
435 return err;
436}
437
438/*
439 * Resend pending statfs requests.
440 */
441static void __resend_statfs(struct ceph_mon_client *monc)
442{
443 u64 next_tid = 0;
444 int got;
445 int did = 0;
446 struct ceph_mon_statfs_request *req;
447
448 while (1) {
449 got = radix_tree_gang_lookup(&monc->statfs_request_tree,
450 (void **)&req,
451 next_tid, 1);
452 if (got == 0)
453 break;
454 did++;
455 next_tid = req->tid + 1;
456
457 send_statfs(monc, req);
458 }
459}
460
461/*
462 * Delayed work. If we haven't mounted yet, retry. Otherwise,
463 * renew/retry subscription as needed (in case it is timing out, or we
464 * got an ENOMEM). And keep the monitor connection alive.
465 */
466static void delayed_work(struct work_struct *work)
467{
468 struct ceph_mon_client *monc =
469 container_of(work, struct ceph_mon_client, delayed_work.work);
470
471 dout("monc delayed_work\n");
472 mutex_lock(&monc->mutex);
4e7a5dcd
SW
473 if (monc->hunting) {
474 __close_session(monc);
475 __open_session(monc); /* continue hunting */
ba75bb98 476 } else {
4e7a5dcd
SW
477 ceph_con_keepalive(monc->con);
478 if (monc->auth->ops->is_authenticated(monc->auth))
479 __send_subscribe(monc);
ba75bb98 480 }
ba75bb98
SW
481 __schedule_delayed(monc);
482 mutex_unlock(&monc->mutex);
483}
484
6b805185
SW
485/*
486 * On startup, we build a temporary monmap populated with the IPs
487 * provided by mount(2).
488 */
489static int build_initial_monmap(struct ceph_mon_client *monc)
490{
491 struct ceph_mount_args *args = monc->client->mount_args;
492 struct ceph_entity_addr *mon_addr = args->mon_addr;
493 int num_mon = args->num_mon;
494 int i;
495
496 /* build initial monmap */
497 monc->monmap = kzalloc(sizeof(*monc->monmap) +
498 num_mon*sizeof(monc->monmap->mon_inst[0]),
499 GFP_KERNEL);
500 if (!monc->monmap)
501 return -ENOMEM;
502 for (i = 0; i < num_mon; i++) {
503 monc->monmap->mon_inst[i].addr = mon_addr[i];
504 monc->monmap->mon_inst[i].addr.erank = 0;
505 monc->monmap->mon_inst[i].addr.nonce = 0;
506 monc->monmap->mon_inst[i].name.type =
507 CEPH_ENTITY_TYPE_MON;
508 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
509 }
510 monc->monmap->num_mon = num_mon;
4e7a5dcd 511 monc->have_fsid = false;
6b805185
SW
512
513 /* release addr memory */
514 kfree(args->mon_addr);
515 args->mon_addr = NULL;
516 args->num_mon = 0;
517 return 0;
518}
519
ba75bb98
SW
520int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
521{
522 int err = 0;
523
524 dout("init\n");
525 memset(monc, 0, sizeof(*monc));
526 monc->client = cl;
527 monc->monmap = NULL;
528 mutex_init(&monc->mutex);
529
6b805185
SW
530 err = build_initial_monmap(monc);
531 if (err)
532 goto out;
533
ba75bb98
SW
534 monc->con = NULL;
535
4e7a5dcd
SW
536 /* authentication */
537 monc->auth = ceph_auth_init(cl->mount_args->name,
538 cl->mount_args->secret);
539 if (IS_ERR(monc->auth))
540 return PTR_ERR(monc->auth);
541 monc->auth->want_keys =
542 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
543 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
544
ba75bb98 545 /* msg pools */
07bd10fb
SW
546 err = ceph_msgpool_init(&monc->msgpool_subscribe_ack,
547 sizeof(struct ceph_mon_subscribe_ack), 1, false);
ba75bb98 548 if (err < 0)
4e7a5dcd 549 goto out_monmap;
ba75bb98
SW
550 err = ceph_msgpool_init(&monc->msgpool_statfs_reply,
551 sizeof(struct ceph_mon_statfs_reply), 0, false);
552 if (err < 0)
4e7a5dcd
SW
553 goto out_pool1;
554 err = ceph_msgpool_init(&monc->msgpool_auth_reply, 4096, 1, false);
555 if (err < 0)
556 goto out_pool2;
557
558 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, 0, 0, NULL);
559 if (IS_ERR(monc->m_auth)) {
560 err = PTR_ERR(monc->m_auth);
561 monc->m_auth = NULL;
562 goto out_pool3;
563 }
ba75bb98
SW
564
565 monc->cur_mon = -1;
4e7a5dcd 566 monc->hunting = true;
ba75bb98
SW
567 monc->sub_renew_after = jiffies;
568 monc->sub_sent = 0;
569
570 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
571 INIT_RADIX_TREE(&monc->statfs_request_tree, GFP_NOFS);
572 monc->num_statfs_requests = 0;
573 monc->last_tid = 0;
574
575 monc->have_mdsmap = 0;
576 monc->have_osdmap = 0;
577 monc->want_next_osdmap = 1;
4e7a5dcd
SW
578 return 0;
579
580out_pool3:
581 ceph_msgpool_destroy(&monc->msgpool_auth_reply);
582out_pool2:
583 ceph_msgpool_destroy(&monc->msgpool_subscribe_ack);
584out_pool1:
585 ceph_msgpool_destroy(&monc->msgpool_statfs_reply);
586out_monmap:
587 kfree(monc->monmap);
ba75bb98
SW
588out:
589 return err;
590}
591
592void ceph_monc_stop(struct ceph_mon_client *monc)
593{
594 dout("stop\n");
595 cancel_delayed_work_sync(&monc->delayed_work);
596
597 mutex_lock(&monc->mutex);
598 __close_session(monc);
599 if (monc->con) {
600 monc->con->private = NULL;
601 monc->con->ops->put(monc->con);
602 monc->con = NULL;
603 }
604 mutex_unlock(&monc->mutex);
605
4e7a5dcd
SW
606 ceph_auth_destroy(monc->auth);
607
608 ceph_msg_put(monc->m_auth);
ba75bb98
SW
609 ceph_msgpool_destroy(&monc->msgpool_subscribe_ack);
610 ceph_msgpool_destroy(&monc->msgpool_statfs_reply);
4e7a5dcd 611 ceph_msgpool_destroy(&monc->msgpool_auth_reply);
ba75bb98
SW
612
613 kfree(monc->monmap);
614}
615
616
4e7a5dcd
SW
617static void handle_auth_reply(struct ceph_mon_client *monc,
618 struct ceph_msg *msg)
619{
620 int ret;
621
622 mutex_lock(&monc->mutex);
623 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
624 msg->front.iov_len,
625 monc->m_auth->front.iov_base,
626 monc->m_auth->front_max);
627 if (ret < 0) {
628 monc->client->mount_err = ret;
629 wake_up(&monc->client->mount_wq);
630 } else if (ret > 0) {
631 monc->m_auth->front.iov_len = ret;
632 monc->m_auth->hdr.front_len = cpu_to_le32(ret);
633 ceph_msg_get(monc->m_auth); /* keep our ref */
634 ceph_con_send(monc->con, monc->m_auth);
635 } else if (monc->auth->ops->is_authenticated(monc->auth)) {
636 dout("authenticated, starting session\n");
0743304d
SW
637
638 monc->client->msgr->inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
639 monc->client->msgr->inst.name.num = monc->auth->global_id;
640
4e7a5dcd
SW
641 __send_subscribe(monc);
642 __resend_statfs(monc);
643 }
644 mutex_unlock(&monc->mutex);
645}
646
ba75bb98
SW
647/*
648 * handle incoming message
649 */
650static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
651{
652 struct ceph_mon_client *monc = con->private;
653 int type = le16_to_cpu(msg->hdr.type);
654
655 if (!monc)
656 return;
657
658 switch (type) {
4e7a5dcd
SW
659 case CEPH_MSG_AUTH_REPLY:
660 handle_auth_reply(monc, msg);
ba75bb98
SW
661 break;
662
663 case CEPH_MSG_MON_SUBSCRIBE_ACK:
664 handle_subscribe_ack(monc, msg);
665 break;
666
667 case CEPH_MSG_STATFS_REPLY:
668 handle_statfs_reply(monc, msg);
669 break;
670
4e7a5dcd
SW
671 case CEPH_MSG_MON_MAP:
672 ceph_monc_handle_map(monc, msg);
673 break;
674
ba75bb98
SW
675 case CEPH_MSG_MDS_MAP:
676 ceph_mdsc_handle_map(&monc->client->mdsc, msg);
677 break;
678
679 case CEPH_MSG_OSD_MAP:
680 ceph_osdc_handle_map(&monc->client->osdc, msg);
681 break;
682
683 default:
684 pr_err("received unknown message type %d %s\n", type,
685 ceph_msg_type_name(type));
686 }
687 ceph_msg_put(msg);
688}
689
690/*
691 * Allocate memory for incoming message
692 */
693static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
694 struct ceph_msg_header *hdr)
695{
696 struct ceph_mon_client *monc = con->private;
697 int type = le16_to_cpu(hdr->type);
8f3bc053 698 int front = le32_to_cpu(hdr->front_len);
ba75bb98
SW
699
700 switch (type) {
ba75bb98 701 case CEPH_MSG_MON_SUBSCRIBE_ACK:
8f3bc053 702 return ceph_msgpool_get(&monc->msgpool_subscribe_ack, front);
ba75bb98 703 case CEPH_MSG_STATFS_REPLY:
8f3bc053 704 return ceph_msgpool_get(&monc->msgpool_statfs_reply, front);
4e7a5dcd
SW
705 case CEPH_MSG_AUTH_REPLY:
706 return ceph_msgpool_get(&monc->msgpool_auth_reply, front);
ba75bb98
SW
707 }
708 return ceph_alloc_msg(con, hdr);
709}
710
711/*
712 * If the monitor connection resets, pick a new monitor and resubmit
713 * any pending requests.
714 */
715static void mon_fault(struct ceph_connection *con)
716{
717 struct ceph_mon_client *monc = con->private;
718
719 if (!monc)
720 return;
721
722 dout("mon_fault\n");
723 mutex_lock(&monc->mutex);
724 if (!con->private)
725 goto out;
726
727 if (monc->con && !monc->hunting)
728 pr_info("mon%d %s session lost, "
729 "hunting for new mon\n", monc->cur_mon,
730 pr_addr(&monc->con->peer_addr.in_addr));
731
732 __close_session(monc);
733 if (!monc->hunting) {
734 /* start hunting */
735 monc->hunting = true;
4e7a5dcd 736 __open_session(monc);
ba75bb98
SW
737 } else {
738 /* already hunting, let's wait a bit */
739 __schedule_delayed(monc);
740 }
741out:
742 mutex_unlock(&monc->mutex);
743}
744
745const static struct ceph_connection_operations mon_con_ops = {
746 .get = ceph_con_get,
747 .put = ceph_con_put,
748 .dispatch = dispatch,
749 .fault = mon_fault,
750 .alloc_msg = mon_alloc_msg,
751 .alloc_middle = ceph_alloc_middle,
752};