23a270c49baf25798251eb12f9fdc365e4012e07
[linux-2.6-block.git] / net / ceph / mon_client.c
1 #include <linux/ceph/ceph_debug.h>
2
3 #include <linux/module.h>
4 #include <linux/types.h>
5 #include <linux/slab.h>
6 #include <linux/random.h>
7 #include <linux/sched.h>
8
9 #include <linux/ceph/mon_client.h>
10 #include <linux/ceph/libceph.h>
11 #include <linux/ceph/debugfs.h>
12 #include <linux/ceph/decode.h>
13 #include <linux/ceph/auth.h>
14
15 /*
16  * Interact with Ceph monitor cluster.  Handle requests for new map
17  * versions, and periodically resend as needed.  Also implement
18  * statfs() and umount().
19  *
20  * A small cluster of Ceph "monitors" are responsible for managing critical
21  * cluster configuration and state information.  An odd number (e.g., 3, 5)
22  * of cmon daemons use a modified version of the Paxos part-time parliament
23  * algorithm to manage the MDS map (mds cluster membership), OSD map, and
24  * list of clients who have mounted the file system.
25  *
26  * We maintain an open, active session with a monitor at all times in order to
27  * receive timely MDSMap updates.  We periodically send a keepalive byte on the
28  * TCP socket to ensure we detect a failure.  If the connection does break, we
29  * randomly hunt for a new monitor.  Once the connection is reestablished, we
30  * resend any outstanding requests.
31  */
32
33 static const struct ceph_connection_operations mon_con_ops;
34
35 static int __validate_auth(struct ceph_mon_client *monc);
36
37 /*
38  * Decode a monmap blob (e.g., during mount).
39  */
40 struct ceph_monmap *ceph_monmap_decode(void *p, void *end)
41 {
42         struct ceph_monmap *m = NULL;
43         int i, err = -EINVAL;
44         struct ceph_fsid fsid;
45         u32 epoch, num_mon;
46         u16 version;
47         u32 len;
48
49         ceph_decode_32_safe(&p, end, len, bad);
50         ceph_decode_need(&p, end, len, bad);
51
52         dout("monmap_decode %p %p len %d\n", p, end, (int)(end-p));
53
54         ceph_decode_16_safe(&p, end, version, bad);
55
56         ceph_decode_need(&p, end, sizeof(fsid) + 2*sizeof(u32), bad);
57         ceph_decode_copy(&p, &fsid, sizeof(fsid));
58         epoch = ceph_decode_32(&p);
59
60         num_mon = ceph_decode_32(&p);
61         ceph_decode_need(&p, end, num_mon*sizeof(m->mon_inst[0]), bad);
62
63         if (num_mon >= CEPH_MAX_MON)
64                 goto bad;
65         m = kmalloc(sizeof(*m) + sizeof(m->mon_inst[0])*num_mon, GFP_NOFS);
66         if (m == NULL)
67                 return ERR_PTR(-ENOMEM);
68         m->fsid = fsid;
69         m->epoch = epoch;
70         m->num_mon = num_mon;
71         ceph_decode_copy(&p, m->mon_inst, num_mon*sizeof(m->mon_inst[0]));
72         for (i = 0; i < num_mon; i++)
73                 ceph_decode_addr(&m->mon_inst[i].addr);
74
75         dout("monmap_decode epoch %d, num_mon %d\n", m->epoch,
76              m->num_mon);
77         for (i = 0; i < m->num_mon; i++)
78                 dout("monmap_decode  mon%d is %s\n", i,
79                      ceph_pr_addr(&m->mon_inst[i].addr.in_addr));
80         return m;
81
82 bad:
83         dout("monmap_decode failed with %d\n", err);
84         kfree(m);
85         return ERR_PTR(err);
86 }
87
88 /*
89  * return true if *addr is included in the monmap.
90  */
91 int ceph_monmap_contains(struct ceph_monmap *m, struct ceph_entity_addr *addr)
92 {
93         int i;
94
95         for (i = 0; i < m->num_mon; i++)
96                 if (memcmp(addr, &m->mon_inst[i].addr, sizeof(*addr)) == 0)
97                         return 1;
98         return 0;
99 }
100
101 /*
102  * Send an auth request.
103  */
104 static void __send_prepared_auth_request(struct ceph_mon_client *monc, int len)
105 {
106         monc->pending_auth = 1;
107         monc->m_auth->front.iov_len = len;
108         monc->m_auth->hdr.front_len = cpu_to_le32(len);
109         ceph_msg_revoke(monc->m_auth);
110         ceph_msg_get(monc->m_auth);  /* keep our ref */
111         ceph_con_send(&monc->con, monc->m_auth);
112 }
113
114 /*
115  * Close monitor session, if any.
116  */
117 static void __close_session(struct ceph_mon_client *monc)
118 {
119         dout("__close_session closing mon%d\n", monc->cur_mon);
120         ceph_msg_revoke(monc->m_auth);
121         ceph_msg_revoke_incoming(monc->m_auth_reply);
122         ceph_msg_revoke(monc->m_subscribe);
123         ceph_msg_revoke_incoming(monc->m_subscribe_ack);
124         ceph_con_close(&monc->con);
125
126         monc->pending_auth = 0;
127         ceph_auth_reset(monc->auth);
128 }
129
130 /*
131  * Pick a new monitor at random and set cur_mon.  If we are repicking
132  * (i.e. cur_mon is already set), be sure to pick a different one.
133  */
134 static void pick_new_mon(struct ceph_mon_client *monc)
135 {
136         int old_mon = monc->cur_mon;
137
138         BUG_ON(monc->monmap->num_mon < 1);
139
140         if (monc->monmap->num_mon == 1) {
141                 monc->cur_mon = 0;
142         } else {
143                 int max = monc->monmap->num_mon;
144                 int o = -1;
145                 int n;
146
147                 if (monc->cur_mon >= 0) {
148                         if (monc->cur_mon < monc->monmap->num_mon)
149                                 o = monc->cur_mon;
150                         if (o >= 0)
151                                 max--;
152                 }
153
154                 n = prandom_u32() % max;
155                 if (o >= 0 && n >= o)
156                         n++;
157
158                 monc->cur_mon = n;
159         }
160
161         dout("%s mon%d -> mon%d out of %d mons\n", __func__, old_mon,
162              monc->cur_mon, monc->monmap->num_mon);
163 }
164
165 /*
166  * Open a session with a new monitor.
167  */
168 static void __open_session(struct ceph_mon_client *monc)
169 {
170         int ret;
171
172         pick_new_mon(monc);
173
174         monc->sub_renew_after = jiffies; /* i.e., expired */
175         monc->sub_renew_sent = 0;
176
177         dout("%s opening mon%d\n", __func__, monc->cur_mon);
178         ceph_con_open(&monc->con, CEPH_ENTITY_TYPE_MON, monc->cur_mon,
179                       &monc->monmap->mon_inst[monc->cur_mon].addr);
180
181         /*
182          * send an initial keepalive to ensure our timestamp is valid
183          * by the time we are in an OPENED state
184          */
185         ceph_con_keepalive(&monc->con);
186
187         /* initiate authentication handshake */
188         ret = ceph_auth_build_hello(monc->auth,
189                                     monc->m_auth->front.iov_base,
190                                     monc->m_auth->front_alloc_len);
191         BUG_ON(ret <= 0);
192         __send_prepared_auth_request(monc, ret);
193 }
194
195 static bool __sub_expired(struct ceph_mon_client *monc)
196 {
197         return time_after_eq(jiffies, monc->sub_renew_after);
198 }
199
200 /*
201  * Reschedule delayed work timer.
202  */
203 static void __schedule_delayed(struct ceph_mon_client *monc)
204 {
205         unsigned long delay;
206
207         if (monc->cur_mon < 0 || __sub_expired(monc)) {
208                 delay = 10 * HZ;
209         } else {
210                 delay = CEPH_MONC_PING_INTERVAL;
211         }
212         dout("__schedule_delayed after %lu\n", delay);
213         schedule_delayed_work(&monc->delayed_work,
214                               round_jiffies_relative(delay));
215 }
216
217 const char *ceph_sub_str[] = {
218         [CEPH_SUB_MDSMAP] = "mdsmap",
219         [CEPH_SUB_MONMAP] = "monmap",
220         [CEPH_SUB_OSDMAP] = "osdmap",
221 };
222
223 /*
224  * Send subscribe request for one or more maps, according to
225  * monc->subs.
226  */
227 static void __send_subscribe(struct ceph_mon_client *monc)
228 {
229         struct ceph_msg *msg = monc->m_subscribe;
230         void *p = msg->front.iov_base;
231         void *const end = p + msg->front_alloc_len;
232         int num = 0;
233         int i;
234
235         dout("%s sent %lu\n", __func__, monc->sub_renew_sent);
236
237         BUG_ON(monc->cur_mon < 0);
238
239         if (!monc->sub_renew_sent)
240                 monc->sub_renew_sent = jiffies | 1; /* never 0 */
241
242         msg->hdr.version = cpu_to_le16(2);
243
244         for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
245                 if (monc->subs[i].want)
246                         num++;
247         }
248         BUG_ON(num < 1); /* monmap sub is always there */
249         ceph_encode_32(&p, num);
250         for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
251                 const char *s = ceph_sub_str[i];
252
253                 if (!monc->subs[i].want)
254                         continue;
255
256                 dout("%s %s start %llu flags 0x%x\n", __func__, s,
257                      le64_to_cpu(monc->subs[i].item.start),
258                      monc->subs[i].item.flags);
259                 ceph_encode_string(&p, end, s, strlen(s));
260                 memcpy(p, &monc->subs[i].item, sizeof(monc->subs[i].item));
261                 p += sizeof(monc->subs[i].item);
262         }
263
264         BUG_ON(p != (end - 35 - (ARRAY_SIZE(monc->subs) - num) * 19));
265         msg->front.iov_len = p - msg->front.iov_base;
266         msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
267         ceph_msg_revoke(msg);
268         ceph_con_send(&monc->con, ceph_msg_get(msg));
269 }
270
271 static void handle_subscribe_ack(struct ceph_mon_client *monc,
272                                  struct ceph_msg *msg)
273 {
274         unsigned int seconds;
275         struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
276
277         if (msg->front.iov_len < sizeof(*h))
278                 goto bad;
279         seconds = le32_to_cpu(h->duration);
280
281         mutex_lock(&monc->mutex);
282         if (monc->sub_renew_sent) {
283                 monc->sub_renew_after = monc->sub_renew_sent +
284                                             (seconds >> 1) * HZ - 1;
285                 dout("%s sent %lu duration %d renew after %lu\n", __func__,
286                      monc->sub_renew_sent, seconds, monc->sub_renew_after);
287                 monc->sub_renew_sent = 0;
288         } else {
289                 dout("%s sent %lu renew after %lu, ignoring\n", __func__,
290                      monc->sub_renew_sent, monc->sub_renew_after);
291         }
292         mutex_unlock(&monc->mutex);
293         return;
294 bad:
295         pr_err("got corrupt subscribe-ack msg\n");
296         ceph_msg_dump(msg);
297 }
298
299 /*
300  * Register interest in a map
301  *
302  * @sub: one of CEPH_SUB_*
303  * @epoch: X for "every map since X", or 0 for "just the latest"
304  */
305 static bool __ceph_monc_want_map(struct ceph_mon_client *monc, int sub,
306                                  u32 epoch, bool continuous)
307 {
308         __le64 start = cpu_to_le64(epoch);
309         u8 flags = !continuous ? CEPH_SUBSCRIBE_ONETIME : 0;
310
311         dout("%s %s epoch %u continuous %d\n", __func__, ceph_sub_str[sub],
312              epoch, continuous);
313
314         if (monc->subs[sub].want &&
315             monc->subs[sub].item.start == start &&
316             monc->subs[sub].item.flags == flags)
317                 return false;
318
319         monc->subs[sub].item.start = start;
320         monc->subs[sub].item.flags = flags;
321         monc->subs[sub].want = true;
322
323         return true;
324 }
325
326 bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch,
327                         bool continuous)
328 {
329         bool need_request;
330
331         mutex_lock(&monc->mutex);
332         need_request = __ceph_monc_want_map(monc, sub, epoch, continuous);
333         mutex_unlock(&monc->mutex);
334
335         return need_request;
336 }
337 EXPORT_SYMBOL(ceph_monc_want_map);
338
339 /*
340  * Keep track of which maps we have
341  *
342  * @sub: one of CEPH_SUB_*
343  */
344 static void __ceph_monc_got_map(struct ceph_mon_client *monc, int sub,
345                                 u32 epoch)
346 {
347         dout("%s %s epoch %u\n", __func__, ceph_sub_str[sub], epoch);
348
349         if (monc->subs[sub].want) {
350                 if (monc->subs[sub].item.flags & CEPH_SUBSCRIBE_ONETIME)
351                         monc->subs[sub].want = false;
352                 else
353                         monc->subs[sub].item.start = cpu_to_le64(epoch + 1);
354         }
355
356         monc->subs[sub].have = epoch;
357 }
358
359 void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch)
360 {
361         mutex_lock(&monc->mutex);
362         __ceph_monc_got_map(monc, sub, epoch);
363         mutex_unlock(&monc->mutex);
364 }
365 EXPORT_SYMBOL(ceph_monc_got_map);
366
367 /*
368  * Register interest in the next osdmap
369  */
370 void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
371 {
372         dout("%s have %u\n", __func__, monc->subs[CEPH_SUB_OSDMAP].have);
373         mutex_lock(&monc->mutex);
374         if (__ceph_monc_want_map(monc, CEPH_SUB_OSDMAP,
375                                  monc->subs[CEPH_SUB_OSDMAP].have + 1, false))
376                 __send_subscribe(monc);
377         mutex_unlock(&monc->mutex);
378 }
379 EXPORT_SYMBOL(ceph_monc_request_next_osdmap);
380
381 /*
382  * Wait for an osdmap with a given epoch.
383  *
384  * @epoch: epoch to wait for
385  * @timeout: in jiffies, 0 means "wait forever"
386  */
387 int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
388                           unsigned long timeout)
389 {
390         unsigned long started = jiffies;
391         long ret;
392
393         mutex_lock(&monc->mutex);
394         while (monc->subs[CEPH_SUB_OSDMAP].have < epoch) {
395                 mutex_unlock(&monc->mutex);
396
397                 if (timeout && time_after_eq(jiffies, started + timeout))
398                         return -ETIMEDOUT;
399
400                 ret = wait_event_interruptible_timeout(monc->client->auth_wq,
401                                      monc->subs[CEPH_SUB_OSDMAP].have >= epoch,
402                                      ceph_timeout_jiffies(timeout));
403                 if (ret < 0)
404                         return ret;
405
406                 mutex_lock(&monc->mutex);
407         }
408
409         mutex_unlock(&monc->mutex);
410         return 0;
411 }
412 EXPORT_SYMBOL(ceph_monc_wait_osdmap);
413
414 /*
415  * Open a session with a random monitor.  Request monmap and osdmap,
416  * which are waited upon in __ceph_open_session().
417  */
418 int ceph_monc_open_session(struct ceph_mon_client *monc)
419 {
420         mutex_lock(&monc->mutex);
421         __ceph_monc_want_map(monc, CEPH_SUB_MONMAP, 0, true);
422         __ceph_monc_want_map(monc, CEPH_SUB_OSDMAP, 0, false);
423         __open_session(monc);
424         __schedule_delayed(monc);
425         mutex_unlock(&monc->mutex);
426         return 0;
427 }
428 EXPORT_SYMBOL(ceph_monc_open_session);
429
430 static void ceph_monc_handle_map(struct ceph_mon_client *monc,
431                                  struct ceph_msg *msg)
432 {
433         struct ceph_client *client = monc->client;
434         struct ceph_monmap *monmap = NULL, *old = monc->monmap;
435         void *p, *end;
436
437         mutex_lock(&monc->mutex);
438
439         dout("handle_monmap\n");
440         p = msg->front.iov_base;
441         end = p + msg->front.iov_len;
442
443         monmap = ceph_monmap_decode(p, end);
444         if (IS_ERR(monmap)) {
445                 pr_err("problem decoding monmap, %d\n",
446                        (int)PTR_ERR(monmap));
447                 goto out;
448         }
449
450         if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
451                 kfree(monmap);
452                 goto out;
453         }
454
455         client->monc.monmap = monmap;
456         kfree(old);
457
458         __ceph_monc_got_map(monc, CEPH_SUB_MONMAP, monc->monmap->epoch);
459         client->have_fsid = true;
460
461 out:
462         mutex_unlock(&monc->mutex);
463         wake_up_all(&client->auth_wq);
464 }
465
466 /*
467  * generic requests (currently statfs, mon_get_version)
468  */
469 static struct ceph_mon_generic_request *__lookup_generic_req(
470         struct ceph_mon_client *monc, u64 tid)
471 {
472         struct ceph_mon_generic_request *req;
473         struct rb_node *n = monc->generic_request_tree.rb_node;
474
475         while (n) {
476                 req = rb_entry(n, struct ceph_mon_generic_request, node);
477                 if (tid < req->tid)
478                         n = n->rb_left;
479                 else if (tid > req->tid)
480                         n = n->rb_right;
481                 else
482                         return req;
483         }
484         return NULL;
485 }
486
487 static void __insert_generic_request(struct ceph_mon_client *monc,
488                             struct ceph_mon_generic_request *new)
489 {
490         struct rb_node **p = &monc->generic_request_tree.rb_node;
491         struct rb_node *parent = NULL;
492         struct ceph_mon_generic_request *req = NULL;
493
494         while (*p) {
495                 parent = *p;
496                 req = rb_entry(parent, struct ceph_mon_generic_request, node);
497                 if (new->tid < req->tid)
498                         p = &(*p)->rb_left;
499                 else if (new->tid > req->tid)
500                         p = &(*p)->rb_right;
501                 else
502                         BUG();
503         }
504
505         rb_link_node(&new->node, parent, p);
506         rb_insert_color(&new->node, &monc->generic_request_tree);
507 }
508
509 static void release_generic_request(struct kref *kref)
510 {
511         struct ceph_mon_generic_request *req =
512                 container_of(kref, struct ceph_mon_generic_request, kref);
513
514         if (req->reply)
515                 ceph_msg_put(req->reply);
516         if (req->request)
517                 ceph_msg_put(req->request);
518
519         kfree(req);
520 }
521
522 static void put_generic_request(struct ceph_mon_generic_request *req)
523 {
524         kref_put(&req->kref, release_generic_request);
525 }
526
527 static void get_generic_request(struct ceph_mon_generic_request *req)
528 {
529         kref_get(&req->kref);
530 }
531
532 static struct ceph_msg *get_generic_reply(struct ceph_connection *con,
533                                          struct ceph_msg_header *hdr,
534                                          int *skip)
535 {
536         struct ceph_mon_client *monc = con->private;
537         struct ceph_mon_generic_request *req;
538         u64 tid = le64_to_cpu(hdr->tid);
539         struct ceph_msg *m;
540
541         mutex_lock(&monc->mutex);
542         req = __lookup_generic_req(monc, tid);
543         if (!req) {
544                 dout("get_generic_reply %lld dne\n", tid);
545                 *skip = 1;
546                 m = NULL;
547         } else {
548                 dout("get_generic_reply %lld got %p\n", tid, req->reply);
549                 *skip = 0;
550                 m = ceph_msg_get(req->reply);
551                 /*
552                  * we don't need to track the connection reading into
553                  * this reply because we only have one open connection
554                  * at a time, ever.
555                  */
556         }
557         mutex_unlock(&monc->mutex);
558         return m;
559 }
560
561 static int __do_generic_request(struct ceph_mon_client *monc, u64 tid,
562                                 struct ceph_mon_generic_request *req)
563 {
564         int err;
565
566         /* register request */
567         req->tid = tid != 0 ? tid : ++monc->last_tid;
568         req->request->hdr.tid = cpu_to_le64(req->tid);
569         __insert_generic_request(monc, req);
570         monc->num_generic_requests++;
571         ceph_con_send(&monc->con, ceph_msg_get(req->request));
572         mutex_unlock(&monc->mutex);
573
574         err = wait_for_completion_interruptible(&req->completion);
575
576         mutex_lock(&monc->mutex);
577         rb_erase(&req->node, &monc->generic_request_tree);
578         monc->num_generic_requests--;
579
580         if (!err)
581                 err = req->result;
582         return err;
583 }
584
585 static int do_generic_request(struct ceph_mon_client *monc,
586                               struct ceph_mon_generic_request *req)
587 {
588         int err;
589
590         mutex_lock(&monc->mutex);
591         err = __do_generic_request(monc, 0, req);
592         mutex_unlock(&monc->mutex);
593
594         return err;
595 }
596
597 /*
598  * statfs
599  */
600 static void handle_statfs_reply(struct ceph_mon_client *monc,
601                                 struct ceph_msg *msg)
602 {
603         struct ceph_mon_generic_request *req;
604         struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
605         u64 tid = le64_to_cpu(msg->hdr.tid);
606
607         if (msg->front.iov_len != sizeof(*reply))
608                 goto bad;
609         dout("handle_statfs_reply %p tid %llu\n", msg, tid);
610
611         mutex_lock(&monc->mutex);
612         req = __lookup_generic_req(monc, tid);
613         if (req) {
614                 *(struct ceph_statfs *)req->buf = reply->st;
615                 req->result = 0;
616                 get_generic_request(req);
617         }
618         mutex_unlock(&monc->mutex);
619         if (req) {
620                 complete_all(&req->completion);
621                 put_generic_request(req);
622         }
623         return;
624
625 bad:
626         pr_err("corrupt statfs reply, tid %llu\n", tid);
627         ceph_msg_dump(msg);
628 }
629
630 /*
631  * Do a synchronous statfs().
632  */
633 int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
634 {
635         struct ceph_mon_generic_request *req;
636         struct ceph_mon_statfs *h;
637         int err;
638
639         req = kzalloc(sizeof(*req), GFP_NOFS);
640         if (!req)
641                 return -ENOMEM;
642
643         kref_init(&req->kref);
644         req->buf = buf;
645         init_completion(&req->completion);
646
647         err = -ENOMEM;
648         req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), GFP_NOFS,
649                                     true);
650         if (!req->request)
651                 goto out;
652         req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 1024, GFP_NOFS,
653                                   true);
654         if (!req->reply)
655                 goto out;
656
657         /* fill out request */
658         h = req->request->front.iov_base;
659         h->monhdr.have_version = 0;
660         h->monhdr.session_mon = cpu_to_le16(-1);
661         h->monhdr.session_mon_tid = 0;
662         h->fsid = monc->monmap->fsid;
663
664         err = do_generic_request(monc, req);
665
666 out:
667         put_generic_request(req);
668         return err;
669 }
670 EXPORT_SYMBOL(ceph_monc_do_statfs);
671
672 static void handle_get_version_reply(struct ceph_mon_client *monc,
673                                      struct ceph_msg *msg)
674 {
675         struct ceph_mon_generic_request *req;
676         u64 tid = le64_to_cpu(msg->hdr.tid);
677         void *p = msg->front.iov_base;
678         void *end = p + msg->front_alloc_len;
679         u64 handle;
680
681         dout("%s %p tid %llu\n", __func__, msg, tid);
682
683         ceph_decode_need(&p, end, 2*sizeof(u64), bad);
684         handle = ceph_decode_64(&p);
685         if (tid != 0 && tid != handle)
686                 goto bad;
687
688         mutex_lock(&monc->mutex);
689         req = __lookup_generic_req(monc, handle);
690         if (req) {
691                 *(u64 *)req->buf = ceph_decode_64(&p);
692                 req->result = 0;
693                 get_generic_request(req);
694         }
695         mutex_unlock(&monc->mutex);
696         if (req) {
697                 complete_all(&req->completion);
698                 put_generic_request(req);
699         }
700
701         return;
702 bad:
703         pr_err("corrupt mon_get_version reply, tid %llu\n", tid);
704         ceph_msg_dump(msg);
705 }
706
707 /*
708  * Send MMonGetVersion and wait for the reply.
709  *
710  * @what: one of "mdsmap", "osdmap" or "monmap"
711  */
712 int ceph_monc_do_get_version(struct ceph_mon_client *monc, const char *what,
713                              u64 *newest)
714 {
715         struct ceph_mon_generic_request *req;
716         void *p, *end;
717         u64 tid;
718         int err;
719
720         req = kzalloc(sizeof(*req), GFP_NOFS);
721         if (!req)
722                 return -ENOMEM;
723
724         kref_init(&req->kref);
725         req->buf = newest;
726         init_completion(&req->completion);
727
728         req->request = ceph_msg_new(CEPH_MSG_MON_GET_VERSION,
729                                     sizeof(u64) + sizeof(u32) + strlen(what),
730                                     GFP_NOFS, true);
731         if (!req->request) {
732                 err = -ENOMEM;
733                 goto out;
734         }
735
736         req->reply = ceph_msg_new(CEPH_MSG_MON_GET_VERSION_REPLY, 1024,
737                                   GFP_NOFS, true);
738         if (!req->reply) {
739                 err = -ENOMEM;
740                 goto out;
741         }
742
743         p = req->request->front.iov_base;
744         end = p + req->request->front_alloc_len;
745
746         /* fill out request */
747         mutex_lock(&monc->mutex);
748         tid = ++monc->last_tid;
749         ceph_encode_64(&p, tid); /* handle */
750         ceph_encode_string(&p, end, what, strlen(what));
751
752         err = __do_generic_request(monc, tid, req);
753
754         mutex_unlock(&monc->mutex);
755 out:
756         put_generic_request(req);
757         return err;
758 }
759 EXPORT_SYMBOL(ceph_monc_do_get_version);
760
761 /*
762  * Resend pending generic requests.
763  */
764 static void __resend_generic_request(struct ceph_mon_client *monc)
765 {
766         struct ceph_mon_generic_request *req;
767         struct rb_node *p;
768
769         for (p = rb_first(&monc->generic_request_tree); p; p = rb_next(p)) {
770                 req = rb_entry(p, struct ceph_mon_generic_request, node);
771                 ceph_msg_revoke(req->request);
772                 ceph_msg_revoke_incoming(req->reply);
773                 ceph_con_send(&monc->con, ceph_msg_get(req->request));
774         }
775 }
776
777 /*
778  * Delayed work.  If we haven't mounted yet, retry.  Otherwise,
779  * renew/retry subscription as needed (in case it is timing out, or we
780  * got an ENOMEM).  And keep the monitor connection alive.
781  */
782 static void delayed_work(struct work_struct *work)
783 {
784         struct ceph_mon_client *monc =
785                 container_of(work, struct ceph_mon_client, delayed_work.work);
786
787         dout("monc delayed_work\n");
788         mutex_lock(&monc->mutex);
789         if (monc->hunting) {
790                 __close_session(monc);
791                 __open_session(monc);  /* continue hunting */
792         } else {
793                 int is_auth = ceph_auth_is_authenticated(monc->auth);
794                 if (ceph_con_keepalive_expired(&monc->con,
795                                                CEPH_MONC_PING_TIMEOUT)) {
796                         dout("monc keepalive timeout\n");
797                         is_auth = 0;
798                         __close_session(monc);
799                         monc->hunting = true;
800                         __open_session(monc);
801                 }
802
803                 if (!monc->hunting) {
804                         ceph_con_keepalive(&monc->con);
805                         __validate_auth(monc);
806                 }
807
808                 if (is_auth) {
809                         unsigned long now = jiffies;
810
811                         dout("%s renew subs? now %lu renew after %lu\n",
812                              __func__, now, monc->sub_renew_after);
813                         if (time_after_eq(now, monc->sub_renew_after))
814                                 __send_subscribe(monc);
815                 }
816         }
817         __schedule_delayed(monc);
818         mutex_unlock(&monc->mutex);
819 }
820
821 /*
822  * On startup, we build a temporary monmap populated with the IPs
823  * provided by mount(2).
824  */
825 static int build_initial_monmap(struct ceph_mon_client *monc)
826 {
827         struct ceph_options *opt = monc->client->options;
828         struct ceph_entity_addr *mon_addr = opt->mon_addr;
829         int num_mon = opt->num_mon;
830         int i;
831
832         /* build initial monmap */
833         monc->monmap = kzalloc(sizeof(*monc->monmap) +
834                                num_mon*sizeof(monc->monmap->mon_inst[0]),
835                                GFP_KERNEL);
836         if (!monc->monmap)
837                 return -ENOMEM;
838         for (i = 0; i < num_mon; i++) {
839                 monc->monmap->mon_inst[i].addr = mon_addr[i];
840                 monc->monmap->mon_inst[i].addr.nonce = 0;
841                 monc->monmap->mon_inst[i].name.type =
842                         CEPH_ENTITY_TYPE_MON;
843                 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
844         }
845         monc->monmap->num_mon = num_mon;
846         return 0;
847 }
848
849 int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
850 {
851         int err = 0;
852
853         dout("init\n");
854         memset(monc, 0, sizeof(*monc));
855         monc->client = cl;
856         monc->monmap = NULL;
857         mutex_init(&monc->mutex);
858
859         err = build_initial_monmap(monc);
860         if (err)
861                 goto out;
862
863         /* connection */
864         /* authentication */
865         monc->auth = ceph_auth_init(cl->options->name,
866                                     cl->options->key);
867         if (IS_ERR(monc->auth)) {
868                 err = PTR_ERR(monc->auth);
869                 goto out_monmap;
870         }
871         monc->auth->want_keys =
872                 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
873                 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
874
875         /* msgs */
876         err = -ENOMEM;
877         monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
878                                      sizeof(struct ceph_mon_subscribe_ack),
879                                      GFP_NOFS, true);
880         if (!monc->m_subscribe_ack)
881                 goto out_auth;
882
883         monc->m_subscribe = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, GFP_NOFS,
884                                          true);
885         if (!monc->m_subscribe)
886                 goto out_subscribe_ack;
887
888         monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096, GFP_NOFS,
889                                           true);
890         if (!monc->m_auth_reply)
891                 goto out_subscribe;
892
893         monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, GFP_NOFS, true);
894         monc->pending_auth = 0;
895         if (!monc->m_auth)
896                 goto out_auth_reply;
897
898         ceph_con_init(&monc->con, monc, &mon_con_ops,
899                       &monc->client->msgr);
900
901         monc->cur_mon = -1;
902         monc->hunting = true;
903         monc->sub_renew_after = jiffies;
904         monc->sub_renew_sent = 0;
905
906         INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
907         monc->generic_request_tree = RB_ROOT;
908         monc->num_generic_requests = 0;
909         monc->last_tid = 0;
910
911         return 0;
912
913 out_auth_reply:
914         ceph_msg_put(monc->m_auth_reply);
915 out_subscribe:
916         ceph_msg_put(monc->m_subscribe);
917 out_subscribe_ack:
918         ceph_msg_put(monc->m_subscribe_ack);
919 out_auth:
920         ceph_auth_destroy(monc->auth);
921 out_monmap:
922         kfree(monc->monmap);
923 out:
924         return err;
925 }
926 EXPORT_SYMBOL(ceph_monc_init);
927
928 void ceph_monc_stop(struct ceph_mon_client *monc)
929 {
930         dout("stop\n");
931         cancel_delayed_work_sync(&monc->delayed_work);
932
933         mutex_lock(&monc->mutex);
934         __close_session(monc);
935         monc->cur_mon = -1;
936         mutex_unlock(&monc->mutex);
937
938         /*
939          * flush msgr queue before we destroy ourselves to ensure that:
940          *  - any work that references our embedded con is finished.
941          *  - any osd_client or other work that may reference an authorizer
942          *    finishes before we shut down the auth subsystem.
943          */
944         ceph_msgr_flush();
945
946         ceph_auth_destroy(monc->auth);
947
948         ceph_msg_put(monc->m_auth);
949         ceph_msg_put(monc->m_auth_reply);
950         ceph_msg_put(monc->m_subscribe);
951         ceph_msg_put(monc->m_subscribe_ack);
952
953         kfree(monc->monmap);
954 }
955 EXPORT_SYMBOL(ceph_monc_stop);
956
957 static void finish_hunting(struct ceph_mon_client *monc)
958 {
959         if (monc->hunting) {
960                 dout("%s found mon%d\n", __func__, monc->cur_mon);
961                 monc->hunting = false;
962         }
963 }
964
965 static void handle_auth_reply(struct ceph_mon_client *monc,
966                               struct ceph_msg *msg)
967 {
968         int ret;
969         int was_auth = 0;
970
971         mutex_lock(&monc->mutex);
972         was_auth = ceph_auth_is_authenticated(monc->auth);
973         monc->pending_auth = 0;
974         ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
975                                      msg->front.iov_len,
976                                      monc->m_auth->front.iov_base,
977                                      monc->m_auth->front_alloc_len);
978         if (ret > 0) {
979                 __send_prepared_auth_request(monc, ret);
980                 goto out;
981         }
982
983         finish_hunting(monc);
984
985         if (ret < 0) {
986                 monc->client->auth_err = ret;
987         } else if (!was_auth && ceph_auth_is_authenticated(monc->auth)) {
988                 dout("authenticated, starting session\n");
989
990                 monc->client->msgr.inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
991                 monc->client->msgr.inst.name.num =
992                                         cpu_to_le64(monc->auth->global_id);
993
994                 __send_subscribe(monc);
995                 __resend_generic_request(monc);
996
997                 pr_info("mon%d %s session established\n", monc->cur_mon,
998                         ceph_pr_addr(&monc->con.peer_addr.in_addr));
999         }
1000
1001 out:
1002         mutex_unlock(&monc->mutex);
1003         if (monc->client->auth_err < 0)
1004                 wake_up_all(&monc->client->auth_wq);
1005 }
1006
1007 static int __validate_auth(struct ceph_mon_client *monc)
1008 {
1009         int ret;
1010
1011         if (monc->pending_auth)
1012                 return 0;
1013
1014         ret = ceph_build_auth(monc->auth, monc->m_auth->front.iov_base,
1015                               monc->m_auth->front_alloc_len);
1016         if (ret <= 0)
1017                 return ret; /* either an error, or no need to authenticate */
1018         __send_prepared_auth_request(monc, ret);
1019         return 0;
1020 }
1021
1022 int ceph_monc_validate_auth(struct ceph_mon_client *monc)
1023 {
1024         int ret;
1025
1026         mutex_lock(&monc->mutex);
1027         ret = __validate_auth(monc);
1028         mutex_unlock(&monc->mutex);
1029         return ret;
1030 }
1031 EXPORT_SYMBOL(ceph_monc_validate_auth);
1032
1033 /*
1034  * handle incoming message
1035  */
1036 static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
1037 {
1038         struct ceph_mon_client *monc = con->private;
1039         int type = le16_to_cpu(msg->hdr.type);
1040
1041         if (!monc)
1042                 return;
1043
1044         switch (type) {
1045         case CEPH_MSG_AUTH_REPLY:
1046                 handle_auth_reply(monc, msg);
1047                 break;
1048
1049         case CEPH_MSG_MON_SUBSCRIBE_ACK:
1050                 handle_subscribe_ack(monc, msg);
1051                 break;
1052
1053         case CEPH_MSG_STATFS_REPLY:
1054                 handle_statfs_reply(monc, msg);
1055                 break;
1056
1057         case CEPH_MSG_MON_GET_VERSION_REPLY:
1058                 handle_get_version_reply(monc, msg);
1059                 break;
1060
1061         case CEPH_MSG_MON_MAP:
1062                 ceph_monc_handle_map(monc, msg);
1063                 break;
1064
1065         case CEPH_MSG_OSD_MAP:
1066                 ceph_osdc_handle_map(&monc->client->osdc, msg);
1067                 break;
1068
1069         default:
1070                 /* can the chained handler handle it? */
1071                 if (monc->client->extra_mon_dispatch &&
1072                     monc->client->extra_mon_dispatch(monc->client, msg) == 0)
1073                         break;
1074                         
1075                 pr_err("received unknown message type %d %s\n", type,
1076                        ceph_msg_type_name(type));
1077         }
1078         ceph_msg_put(msg);
1079 }
1080
1081 /*
1082  * Allocate memory for incoming message
1083  */
1084 static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
1085                                       struct ceph_msg_header *hdr,
1086                                       int *skip)
1087 {
1088         struct ceph_mon_client *monc = con->private;
1089         int type = le16_to_cpu(hdr->type);
1090         int front_len = le32_to_cpu(hdr->front_len);
1091         struct ceph_msg *m = NULL;
1092
1093         *skip = 0;
1094
1095         switch (type) {
1096         case CEPH_MSG_MON_SUBSCRIBE_ACK:
1097                 m = ceph_msg_get(monc->m_subscribe_ack);
1098                 break;
1099         case CEPH_MSG_STATFS_REPLY:
1100                 return get_generic_reply(con, hdr, skip);
1101         case CEPH_MSG_AUTH_REPLY:
1102                 m = ceph_msg_get(monc->m_auth_reply);
1103                 break;
1104         case CEPH_MSG_MON_GET_VERSION_REPLY:
1105                 if (le64_to_cpu(hdr->tid) != 0)
1106                         return get_generic_reply(con, hdr, skip);
1107
1108                 /*
1109                  * Older OSDs don't set reply tid even if the orignal
1110                  * request had a non-zero tid.  Workaround this weirdness
1111                  * by falling through to the allocate case.
1112                  */
1113         case CEPH_MSG_MON_MAP:
1114         case CEPH_MSG_MDS_MAP:
1115         case CEPH_MSG_OSD_MAP:
1116                 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
1117                 if (!m)
1118                         return NULL;    /* ENOMEM--return skip == 0 */
1119                 break;
1120         }
1121
1122         if (!m) {
1123                 pr_info("alloc_msg unknown type %d\n", type);
1124                 *skip = 1;
1125         } else if (front_len > m->front_alloc_len) {
1126                 pr_warn("mon_alloc_msg front %d > prealloc %d (%u#%llu)\n",
1127                         front_len, m->front_alloc_len,
1128                         (unsigned int)con->peer_name.type,
1129                         le64_to_cpu(con->peer_name.num));
1130                 ceph_msg_put(m);
1131                 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
1132         }
1133
1134         return m;
1135 }
1136
1137 /*
1138  * If the monitor connection resets, pick a new monitor and resubmit
1139  * any pending requests.
1140  */
1141 static void mon_fault(struct ceph_connection *con)
1142 {
1143         struct ceph_mon_client *monc = con->private;
1144
1145         if (!monc)
1146                 return;
1147
1148         dout("mon_fault\n");
1149         mutex_lock(&monc->mutex);
1150         if (!con->private)
1151                 goto out;
1152
1153         if (!monc->hunting)
1154                 pr_info("mon%d %s session lost, "
1155                         "hunting for new mon\n", monc->cur_mon,
1156                         ceph_pr_addr(&monc->con.peer_addr.in_addr));
1157
1158         __close_session(monc);
1159         if (!monc->hunting) {
1160                 /* start hunting */
1161                 monc->hunting = true;
1162                 __open_session(monc);
1163         } else {
1164                 /* already hunting, let's wait a bit */
1165                 __schedule_delayed(monc);
1166         }
1167 out:
1168         mutex_unlock(&monc->mutex);
1169 }
1170
1171 /*
1172  * We can ignore refcounting on the connection struct, as all references
1173  * will come from the messenger workqueue, which is drained prior to
1174  * mon_client destruction.
1175  */
1176 static struct ceph_connection *con_get(struct ceph_connection *con)
1177 {
1178         return con;
1179 }
1180
1181 static void con_put(struct ceph_connection *con)
1182 {
1183 }
1184
1185 static const struct ceph_connection_operations mon_con_ops = {
1186         .get = con_get,
1187         .put = con_put,
1188         .dispatch = dispatch,
1189         .fault = mon_fault,
1190         .alloc_msg = mon_alloc_msg,
1191 };