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