blob: accfded53baeda69179c953cae66d796801b9ac6 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weilba75bb92009-10-06 11:31:11 -07002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/module.h>
Sage Weilba75bb92009-10-06 11:31:11 -07004#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/slab.h>
Sage Weilba75bb92009-10-06 11:31:11 -07006#include <linux/random.h>
7#include <linux/sched.h>
8
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07009#include <linux/ceph/mon_client.h>
10#include <linux/ceph/libceph.h>
Sage Weilab434b62012-01-13 22:22:03 -080011#include <linux/ceph/debugfs.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070012#include <linux/ceph/decode.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070013#include <linux/ceph/auth.h>
Sage Weilba75bb92009-10-06 11:31:11 -070014
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
Tobias Klauser9e327892010-05-20 10:40:19 +020033static const struct ceph_connection_operations mon_con_ops;
Sage Weilba75bb92009-10-06 11:31:11 -070034
Sage Weil9bd2e6f2010-02-02 16:21:06 -080035static int __validate_auth(struct ceph_mon_client *monc);
36
Sage Weilba75bb92009-10-06 11:31:11 -070037/*
38 * Decode a monmap blob (e.g., during mount).
39 */
40struct 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;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080047 u32 len;
48
49 ceph_decode_32_safe(&p, end, len, bad);
50 ceph_decode_need(&p, end, len, bad);
Sage Weilba75bb92009-10-06 11:31:11 -070051
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));
Sage Weilc89136e2009-10-14 09:59:09 -070058 epoch = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070059
Sage Weilc89136e2009-10-14 09:59:09 -070060 num_mon = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070061 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]));
Sage Weil63f2d212009-11-03 15:17:56 -080072 for (i = 0; i < num_mon; i++)
73 ceph_decode_addr(&m->mon_inst[i].addr);
Sage Weilba75bb92009-10-06 11:31:11 -070074
Sage Weilba75bb92009-10-06 11:31:11 -070075 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,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070079 ceph_pr_addr(&m->mon_inst[i].addr.in_addr));
Sage Weilba75bb92009-10-06 11:31:11 -070080 return m;
81
82bad:
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 */
91int 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++)
Sage Weil103e2d32010-01-07 16:12:36 -080096 if (memcmp(addr, &m->mon_inst[i].addr, sizeof(*addr)) == 0)
Sage Weilba75bb92009-10-06 11:31:11 -070097 return 1;
98 return 0;
99}
100
101/*
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800102 * Send an auth request.
103 */
104static 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);
Alex Elder6740a842012-06-01 14:56:43 -0500109 ceph_msg_revoke(monc->m_auth);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800110 ceph_msg_get(monc->m_auth); /* keep our ref */
Alex Elder67130932012-05-26 23:26:43 -0500111 ceph_con_send(&monc->con, monc->m_auth);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800112}
113
114/*
Sage Weilba75bb92009-10-06 11:31:11 -0700115 * Close monitor session, if any.
116 */
117static void __close_session(struct ceph_mon_client *monc)
118{
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700119 dout("__close_session closing mon%d\n", monc->cur_mon);
Alex Elder6740a842012-06-01 14:56:43 -0500120 ceph_msg_revoke(monc->m_auth);
Sage Weil4f471e42012-07-30 18:16:40 -0700121 ceph_msg_revoke_incoming(monc->m_auth_reply);
122 ceph_msg_revoke(monc->m_subscribe);
123 ceph_msg_revoke_incoming(monc->m_subscribe_ack);
Alex Elder67130932012-05-26 23:26:43 -0500124 ceph_con_close(&monc->con);
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100125
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700126 monc->pending_auth = 0;
127 ceph_auth_reset(monc->auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700128}
129
130/*
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100131 * 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.
Sage Weilba75bb92009-10-06 11:31:11 -0700133 */
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100134static void pick_new_mon(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700135{
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100136 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 */
168static void __open_session(struct ceph_mon_client *monc)
169{
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800170 int ret;
Sage Weilba75bb92009-10-06 11:31:11 -0700171
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100172 pick_new_mon(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700173
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100174 monc->sub_renew_after = jiffies; /* i.e., expired */
175 monc->sub_renew_sent = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800176
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100177 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);
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800180
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100181 /*
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);
Sage Weilba75bb92009-10-06 11:31:11 -0700193}
194
195static 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 */
203static void __schedule_delayed(struct ceph_mon_client *monc)
204{
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800205 struct ceph_options *opt = monc->client->options;
206 unsigned long delay;
Sage Weilba75bb92009-10-06 11:31:11 -0700207
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800208 if (monc->cur_mon < 0 || __sub_expired(monc)) {
Sage Weilba75bb92009-10-06 11:31:11 -0700209 delay = 10 * HZ;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800210 } else {
Sage Weilba75bb92009-10-06 11:31:11 -0700211 delay = 20 * HZ;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800212 if (opt->monc_ping_timeout > 0)
213 delay = min(delay, opt->monc_ping_timeout / 3);
214 }
215 dout("__schedule_delayed after %lu\n", delay);
216 schedule_delayed_work(&monc->delayed_work,
217 round_jiffies_relative(delay));
Sage Weilba75bb92009-10-06 11:31:11 -0700218}
219
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100220const char *ceph_sub_str[] = {
221 [CEPH_SUB_MDSMAP] = "mdsmap",
222 [CEPH_SUB_MONMAP] = "monmap",
223 [CEPH_SUB_OSDMAP] = "osdmap",
224};
225
Sage Weilba75bb92009-10-06 11:31:11 -0700226/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100227 * Send subscribe request for one or more maps, according to
228 * monc->subs.
Sage Weilba75bb92009-10-06 11:31:11 -0700229 */
230static void __send_subscribe(struct ceph_mon_client *monc)
231{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100232 struct ceph_msg *msg = monc->m_subscribe;
233 void *p = msg->front.iov_base;
234 void *const end = p + msg->front_alloc_len;
235 int num = 0;
236 int i;
Sage Weilba75bb92009-10-06 11:31:11 -0700237
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100238 dout("%s sent %lu\n", __func__, monc->sub_renew_sent);
Sage Weilba75bb92009-10-06 11:31:11 -0700239
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100240 BUG_ON(monc->cur_mon < 0);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700241
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100242 if (!monc->sub_renew_sent)
243 monc->sub_renew_sent = jiffies | 1; /* never 0 */
Sage Weilba75bb92009-10-06 11:31:11 -0700244
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100245 msg->hdr.version = cpu_to_le16(2);
Sage Weilba75bb92009-10-06 11:31:11 -0700246
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100247 for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
248 if (monc->subs[i].want)
249 num++;
Sage Weilba75bb92009-10-06 11:31:11 -0700250 }
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100251 BUG_ON(num < 1); /* monmap sub is always there */
252 ceph_encode_32(&p, num);
253 for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
254 const char *s = ceph_sub_str[i];
255
256 if (!monc->subs[i].want)
257 continue;
258
259 dout("%s %s start %llu flags 0x%x\n", __func__, s,
260 le64_to_cpu(monc->subs[i].item.start),
261 monc->subs[i].item.flags);
262 ceph_encode_string(&p, end, s, strlen(s));
263 memcpy(p, &monc->subs[i].item, sizeof(monc->subs[i].item));
264 p += sizeof(monc->subs[i].item);
265 }
266
267 BUG_ON(p != (end - 35 - (ARRAY_SIZE(monc->subs) - num) * 19));
268 msg->front.iov_len = p - msg->front.iov_base;
269 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
270 ceph_msg_revoke(msg);
271 ceph_con_send(&monc->con, ceph_msg_get(msg));
Sage Weilba75bb92009-10-06 11:31:11 -0700272}
273
274static void handle_subscribe_ack(struct ceph_mon_client *monc,
275 struct ceph_msg *msg)
276{
Eric Dumazet95c96172012-04-15 05:58:06 +0000277 unsigned int seconds;
Sage Weil07bd10f2009-10-14 17:26:40 -0700278 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
Sage Weilba75bb92009-10-06 11:31:11 -0700279
Sage Weil07bd10f2009-10-14 17:26:40 -0700280 if (msg->front.iov_len < sizeof(*h))
281 goto bad;
282 seconds = le32_to_cpu(h->duration);
283
Sage Weilba75bb92009-10-06 11:31:11 -0700284 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100285 if (monc->sub_renew_sent) {
286 monc->sub_renew_after = monc->sub_renew_sent +
287 (seconds >> 1) * HZ - 1;
288 dout("%s sent %lu duration %d renew after %lu\n", __func__,
289 monc->sub_renew_sent, seconds, monc->sub_renew_after);
290 monc->sub_renew_sent = 0;
291 } else {
292 dout("%s sent %lu renew after %lu, ignoring\n", __func__,
293 monc->sub_renew_sent, monc->sub_renew_after);
294 }
Sage Weilba75bb92009-10-06 11:31:11 -0700295 mutex_unlock(&monc->mutex);
296 return;
297bad:
298 pr_err("got corrupt subscribe-ack msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800299 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700300}
301
302/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100303 * Register interest in a map
304 *
305 * @sub: one of CEPH_SUB_*
306 * @epoch: X for "every map since X", or 0 for "just the latest"
Sage Weilba75bb92009-10-06 11:31:11 -0700307 */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100308static bool __ceph_monc_want_map(struct ceph_mon_client *monc, int sub,
309 u32 epoch, bool continuous)
Sage Weilba75bb92009-10-06 11:31:11 -0700310{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100311 __le64 start = cpu_to_le64(epoch);
312 u8 flags = !continuous ? CEPH_SUBSCRIBE_ONETIME : 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700313
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100314 dout("%s %s epoch %u continuous %d\n", __func__, ceph_sub_str[sub],
315 epoch, continuous);
316
317 if (monc->subs[sub].want &&
318 monc->subs[sub].item.start == start &&
319 monc->subs[sub].item.flags == flags)
320 return false;
321
322 monc->subs[sub].item.start = start;
323 monc->subs[sub].item.flags = flags;
324 monc->subs[sub].want = true;
325
326 return true;
327}
328
329bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch,
330 bool continuous)
331{
332 bool need_request;
333
334 mutex_lock(&monc->mutex);
335 need_request = __ceph_monc_want_map(monc, sub, epoch, continuous);
336 mutex_unlock(&monc->mutex);
337
338 return need_request;
339}
340EXPORT_SYMBOL(ceph_monc_want_map);
341
342/*
343 * Keep track of which maps we have
344 *
345 * @sub: one of CEPH_SUB_*
346 */
347static void __ceph_monc_got_map(struct ceph_mon_client *monc, int sub,
348 u32 epoch)
349{
350 dout("%s %s epoch %u\n", __func__, ceph_sub_str[sub], epoch);
351
352 if (monc->subs[sub].want) {
353 if (monc->subs[sub].item.flags & CEPH_SUBSCRIBE_ONETIME)
354 monc->subs[sub].want = false;
355 else
356 monc->subs[sub].item.start = cpu_to_le64(epoch + 1);
357 }
358
359 monc->subs[sub].have = epoch;
360}
361
362void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch)
Sage Weilba75bb92009-10-06 11:31:11 -0700363{
364 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100365 __ceph_monc_got_map(monc, sub, epoch);
Sage Weilba75bb92009-10-06 11:31:11 -0700366 mutex_unlock(&monc->mutex);
Sage Weilba75bb92009-10-06 11:31:11 -0700367}
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100368EXPORT_SYMBOL(ceph_monc_got_map);
Sage Weilba75bb92009-10-06 11:31:11 -0700369
370/*
371 * Register interest in the next osdmap
372 */
373void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
374{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100375 dout("%s have %u\n", __func__, monc->subs[CEPH_SUB_OSDMAP].have);
Sage Weilba75bb92009-10-06 11:31:11 -0700376 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100377 if (__ceph_monc_want_map(monc, CEPH_SUB_OSDMAP,
378 monc->subs[CEPH_SUB_OSDMAP].have + 1, false))
Sage Weilba75bb92009-10-06 11:31:11 -0700379 __send_subscribe(monc);
380 mutex_unlock(&monc->mutex);
381}
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400382EXPORT_SYMBOL(ceph_monc_request_next_osdmap);
383
Ilya Dryomova319bf52015-05-15 12:02:17 +0300384/*
385 * Wait for an osdmap with a given epoch.
386 *
387 * @epoch: epoch to wait for
388 * @timeout: in jiffies, 0 means "wait forever"
389 */
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400390int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
391 unsigned long timeout)
392{
393 unsigned long started = jiffies;
Ilya Dryomov216639d2015-05-19 12:03:33 +0300394 long ret;
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400395
396 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100397 while (monc->subs[CEPH_SUB_OSDMAP].have < epoch) {
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400398 mutex_unlock(&monc->mutex);
399
Ilya Dryomova319bf52015-05-15 12:02:17 +0300400 if (timeout && time_after_eq(jiffies, started + timeout))
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400401 return -ETIMEDOUT;
402
403 ret = wait_event_interruptible_timeout(monc->client->auth_wq,
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100404 monc->subs[CEPH_SUB_OSDMAP].have >= epoch,
405 ceph_timeout_jiffies(timeout));
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400406 if (ret < 0)
407 return ret;
408
409 mutex_lock(&monc->mutex);
410 }
411
412 mutex_unlock(&monc->mutex);
413 return 0;
414}
415EXPORT_SYMBOL(ceph_monc_wait_osdmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700416
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800417/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100418 * Open a session with a random monitor. Request monmap and osdmap,
419 * which are waited upon in __ceph_open_session().
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800420 */
421int ceph_monc_open_session(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700422{
Sage Weilba75bb92009-10-06 11:31:11 -0700423 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100424 __ceph_monc_want_map(monc, CEPH_SUB_MONMAP, 0, true);
425 __ceph_monc_want_map(monc, CEPH_SUB_OSDMAP, 0, false);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800426 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700427 __schedule_delayed(monc);
428 mutex_unlock(&monc->mutex);
429 return 0;
430}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700431EXPORT_SYMBOL(ceph_monc_open_session);
Sage Weilba75bb92009-10-06 11:31:11 -0700432
Sage Weil07433042009-11-18 16:50:41 -0800433static void ceph_monc_handle_map(struct ceph_mon_client *monc,
434 struct ceph_msg *msg)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800435{
436 struct ceph_client *client = monc->client;
437 struct ceph_monmap *monmap = NULL, *old = monc->monmap;
438 void *p, *end;
439
440 mutex_lock(&monc->mutex);
441
442 dout("handle_monmap\n");
443 p = msg->front.iov_base;
444 end = p + msg->front.iov_len;
445
446 monmap = ceph_monmap_decode(p, end);
447 if (IS_ERR(monmap)) {
448 pr_err("problem decoding monmap, %d\n",
449 (int)PTR_ERR(monmap));
Sage Weild4a780c2009-12-11 08:55:23 -0800450 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800451 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800452
Sage Weil07433042009-11-18 16:50:41 -0800453 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800454 kfree(monmap);
Sage Weild4a780c2009-12-11 08:55:23 -0800455 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800456 }
457
458 client->monc.monmap = monmap;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800459 kfree(old);
460
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100461 __ceph_monc_got_map(monc, CEPH_SUB_MONMAP, monc->monmap->epoch);
Ilya Dryomov02ac9562016-01-06 12:56:21 +0300462 client->have_fsid = true;
Sage Weild1c338a2012-08-19 12:29:16 -0700463
Sage Weild4a780c2009-12-11 08:55:23 -0800464out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800465 mutex_unlock(&monc->mutex);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700466 wake_up_all(&client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800467}
Sage Weilba75bb92009-10-06 11:31:11 -0700468
Sage Weilba75bb92009-10-06 11:31:11 -0700469/*
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300470 * generic requests (currently statfs, mon_get_version)
Sage Weilba75bb92009-10-06 11:31:11 -0700471 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700472static struct ceph_mon_generic_request *__lookup_generic_req(
Sage Weil85ff03f2010-02-15 14:47:28 -0800473 struct ceph_mon_client *monc, u64 tid)
474{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700475 struct ceph_mon_generic_request *req;
476 struct rb_node *n = monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800477
478 while (n) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700479 req = rb_entry(n, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800480 if (tid < req->tid)
481 n = n->rb_left;
482 else if (tid > req->tid)
483 n = n->rb_right;
484 else
485 return req;
486 }
487 return NULL;
488}
489
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700490static void __insert_generic_request(struct ceph_mon_client *monc,
491 struct ceph_mon_generic_request *new)
Sage Weil85ff03f2010-02-15 14:47:28 -0800492{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700493 struct rb_node **p = &monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800494 struct rb_node *parent = NULL;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700495 struct ceph_mon_generic_request *req = NULL;
Sage Weil85ff03f2010-02-15 14:47:28 -0800496
497 while (*p) {
498 parent = *p;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700499 req = rb_entry(parent, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800500 if (new->tid < req->tid)
501 p = &(*p)->rb_left;
502 else if (new->tid > req->tid)
503 p = &(*p)->rb_right;
504 else
505 BUG();
506 }
507
508 rb_link_node(&new->node, parent, p);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700509 rb_insert_color(&new->node, &monc->generic_request_tree);
Sage Weil85ff03f2010-02-15 14:47:28 -0800510}
511
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700512static void release_generic_request(struct kref *kref)
Sage Weil3143edd2010-03-24 21:43:33 -0700513{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700514 struct ceph_mon_generic_request *req =
515 container_of(kref, struct ceph_mon_generic_request, kref);
Sage Weil3143edd2010-03-24 21:43:33 -0700516
517 if (req->reply)
518 ceph_msg_put(req->reply);
519 if (req->request)
520 ceph_msg_put(req->request);
Yehuda Sadeh20547562010-06-01 10:37:40 -0700521
522 kfree(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700523}
524
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700525static void put_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700526{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700527 kref_put(&req->kref, release_generic_request);
Sage Weil3143edd2010-03-24 21:43:33 -0700528}
529
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700530static void get_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700531{
532 kref_get(&req->kref);
533}
534
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700535static struct ceph_msg *get_generic_reply(struct ceph_connection *con,
Sage Weil3143edd2010-03-24 21:43:33 -0700536 struct ceph_msg_header *hdr,
537 int *skip)
538{
539 struct ceph_mon_client *monc = con->private;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700540 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700541 u64 tid = le64_to_cpu(hdr->tid);
542 struct ceph_msg *m;
543
544 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700545 req = __lookup_generic_req(monc, tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700546 if (!req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700547 dout("get_generic_reply %lld dne\n", tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700548 *skip = 1;
549 m = NULL;
550 } else {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700551 dout("get_generic_reply %lld got %p\n", tid, req->reply);
Alex Elder1c20f2d2012-06-04 14:43:32 -0500552 *skip = 0;
Sage Weil3143edd2010-03-24 21:43:33 -0700553 m = ceph_msg_get(req->reply);
554 /*
555 * we don't need to track the connection reading into
556 * this reply because we only have one open connection
557 * at a time, ever.
558 */
559 }
560 mutex_unlock(&monc->mutex);
561 return m;
562}
563
Ilya Dryomov513a8242014-05-13 11:19:26 +0400564static int __do_generic_request(struct ceph_mon_client *monc, u64 tid,
565 struct ceph_mon_generic_request *req)
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700566{
567 int err;
568
569 /* register request */
Ilya Dryomov513a8242014-05-13 11:19:26 +0400570 req->tid = tid != 0 ? tid : ++monc->last_tid;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700571 req->request->hdr.tid = cpu_to_le64(req->tid);
572 __insert_generic_request(monc, req);
573 monc->num_generic_requests++;
Alex Elder67130932012-05-26 23:26:43 -0500574 ceph_con_send(&monc->con, ceph_msg_get(req->request));
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700575 mutex_unlock(&monc->mutex);
576
577 err = wait_for_completion_interruptible(&req->completion);
578
579 mutex_lock(&monc->mutex);
580 rb_erase(&req->node, &monc->generic_request_tree);
581 monc->num_generic_requests--;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700582
583 if (!err)
584 err = req->result;
585 return err;
586}
587
Ilya Dryomov513a8242014-05-13 11:19:26 +0400588static int do_generic_request(struct ceph_mon_client *monc,
589 struct ceph_mon_generic_request *req)
590{
591 int err;
592
593 mutex_lock(&monc->mutex);
594 err = __do_generic_request(monc, 0, req);
595 mutex_unlock(&monc->mutex);
596
597 return err;
598}
599
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700600/*
601 * statfs
602 */
Sage Weilba75bb92009-10-06 11:31:11 -0700603static void handle_statfs_reply(struct ceph_mon_client *monc,
604 struct ceph_msg *msg)
605{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700606 struct ceph_mon_generic_request *req;
Sage Weilba75bb92009-10-06 11:31:11 -0700607 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
Sage Weil3143edd2010-03-24 21:43:33 -0700608 u64 tid = le64_to_cpu(msg->hdr.tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700609
610 if (msg->front.iov_len != sizeof(*reply))
611 goto bad;
Sage Weilba75bb92009-10-06 11:31:11 -0700612 dout("handle_statfs_reply %p tid %llu\n", msg, tid);
613
614 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700615 req = __lookup_generic_req(monc, tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700616 if (req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700617 *(struct ceph_statfs *)req->buf = reply->st;
Sage Weilba75bb92009-10-06 11:31:11 -0700618 req->result = 0;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700619 get_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700620 }
621 mutex_unlock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700622 if (req) {
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700623 complete_all(&req->completion);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700624 put_generic_request(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700625 }
Sage Weilba75bb92009-10-06 11:31:11 -0700626 return;
627
628bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300629 pr_err("corrupt statfs reply, tid %llu\n", tid);
Sage Weil9ec7cab2009-12-14 15:13:47 -0800630 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700631}
632
633/*
Sage Weilba75bb92009-10-06 11:31:11 -0700634 * Do a synchronous statfs().
635 */
636int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
637{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700638 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700639 struct ceph_mon_statfs *h;
Sage Weilba75bb92009-10-06 11:31:11 -0700640 int err;
641
Julia Lawallcffe7b62010-05-13 22:07:29 +0200642 req = kzalloc(sizeof(*req), GFP_NOFS);
Sage Weil3143edd2010-03-24 21:43:33 -0700643 if (!req)
644 return -ENOMEM;
Sage Weilba75bb92009-10-06 11:31:11 -0700645
Sage Weil3143edd2010-03-24 21:43:33 -0700646 kref_init(&req->kref);
647 req->buf = buf;
648 init_completion(&req->completion);
649
Sage Weila79832f2010-04-01 16:06:19 -0700650 err = -ENOMEM;
Sage Weilb61c2762011-08-09 15:03:46 -0700651 req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), GFP_NOFS,
652 true);
Sage Weila79832f2010-04-01 16:06:19 -0700653 if (!req->request)
Sage Weil3143edd2010-03-24 21:43:33 -0700654 goto out;
Sage Weilb61c2762011-08-09 15:03:46 -0700655 req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 1024, GFP_NOFS,
656 true);
Sage Weila79832f2010-04-01 16:06:19 -0700657 if (!req->reply)
Sage Weil3143edd2010-03-24 21:43:33 -0700658 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700659
660 /* fill out request */
661 h = req->request->front.iov_base;
662 h->monhdr.have_version = 0;
663 h->monhdr.session_mon = cpu_to_le16(-1);
664 h->monhdr.session_mon_tid = 0;
665 h->fsid = monc->monmap->fsid;
Sage Weilba75bb92009-10-06 11:31:11 -0700666
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700667 err = do_generic_request(monc, req);
Sage Weil3143edd2010-03-24 21:43:33 -0700668
669out:
Ilya Dryomovf6469122014-12-22 19:35:17 +0300670 put_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700671 return err;
672}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700673EXPORT_SYMBOL(ceph_monc_do_statfs);
Sage Weilba75bb92009-10-06 11:31:11 -0700674
Ilya Dryomov513a8242014-05-13 11:19:26 +0400675static void handle_get_version_reply(struct ceph_mon_client *monc,
676 struct ceph_msg *msg)
677{
678 struct ceph_mon_generic_request *req;
679 u64 tid = le64_to_cpu(msg->hdr.tid);
680 void *p = msg->front.iov_base;
681 void *end = p + msg->front_alloc_len;
682 u64 handle;
683
684 dout("%s %p tid %llu\n", __func__, msg, tid);
685
686 ceph_decode_need(&p, end, 2*sizeof(u64), bad);
687 handle = ceph_decode_64(&p);
688 if (tid != 0 && tid != handle)
689 goto bad;
690
691 mutex_lock(&monc->mutex);
692 req = __lookup_generic_req(monc, handle);
693 if (req) {
694 *(u64 *)req->buf = ceph_decode_64(&p);
695 req->result = 0;
696 get_generic_request(req);
697 }
698 mutex_unlock(&monc->mutex);
699 if (req) {
700 complete_all(&req->completion);
701 put_generic_request(req);
702 }
703
704 return;
705bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300706 pr_err("corrupt mon_get_version reply, tid %llu\n", tid);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400707 ceph_msg_dump(msg);
708}
709
710/*
711 * Send MMonGetVersion and wait for the reply.
712 *
713 * @what: one of "mdsmap", "osdmap" or "monmap"
714 */
715int ceph_monc_do_get_version(struct ceph_mon_client *monc, const char *what,
716 u64 *newest)
717{
718 struct ceph_mon_generic_request *req;
719 void *p, *end;
720 u64 tid;
721 int err;
722
723 req = kzalloc(sizeof(*req), GFP_NOFS);
724 if (!req)
725 return -ENOMEM;
726
727 kref_init(&req->kref);
728 req->buf = newest;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400729 init_completion(&req->completion);
730
731 req->request = ceph_msg_new(CEPH_MSG_MON_GET_VERSION,
732 sizeof(u64) + sizeof(u32) + strlen(what),
733 GFP_NOFS, true);
734 if (!req->request) {
735 err = -ENOMEM;
736 goto out;
737 }
738
739 req->reply = ceph_msg_new(CEPH_MSG_MON_GET_VERSION_REPLY, 1024,
740 GFP_NOFS, true);
741 if (!req->reply) {
742 err = -ENOMEM;
743 goto out;
744 }
745
746 p = req->request->front.iov_base;
747 end = p + req->request->front_alloc_len;
748
749 /* fill out request */
750 mutex_lock(&monc->mutex);
751 tid = ++monc->last_tid;
752 ceph_encode_64(&p, tid); /* handle */
753 ceph_encode_string(&p, end, what, strlen(what));
754
755 err = __do_generic_request(monc, tid, req);
756
757 mutex_unlock(&monc->mutex);
758out:
Ilya Dryomovf6469122014-12-22 19:35:17 +0300759 put_generic_request(req);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400760 return err;
761}
762EXPORT_SYMBOL(ceph_monc_do_get_version);
763
Sage Weilba75bb92009-10-06 11:31:11 -0700764/*
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700765 * Resend pending generic requests.
Sage Weilba75bb92009-10-06 11:31:11 -0700766 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700767static void __resend_generic_request(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700768{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700769 struct ceph_mon_generic_request *req;
Sage Weil85ff03f2010-02-15 14:47:28 -0800770 struct rb_node *p;
Sage Weilba75bb92009-10-06 11:31:11 -0700771
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700772 for (p = rb_first(&monc->generic_request_tree); p; p = rb_next(p)) {
773 req = rb_entry(p, struct ceph_mon_generic_request, node);
Alex Elder6740a842012-06-01 14:56:43 -0500774 ceph_msg_revoke(req->request);
Sage Weil4f471e42012-07-30 18:16:40 -0700775 ceph_msg_revoke_incoming(req->reply);
Alex Elder67130932012-05-26 23:26:43 -0500776 ceph_con_send(&monc->con, ceph_msg_get(req->request));
Sage Weilba75bb92009-10-06 11:31:11 -0700777 }
778}
779
780/*
781 * Delayed work. If we haven't mounted yet, retry. Otherwise,
782 * renew/retry subscription as needed (in case it is timing out, or we
783 * got an ENOMEM). And keep the monitor connection alive.
784 */
785static void delayed_work(struct work_struct *work)
786{
787 struct ceph_mon_client *monc =
788 container_of(work, struct ceph_mon_client, delayed_work.work);
789
790 dout("monc delayed_work\n");
791 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800792 if (monc->hunting) {
793 __close_session(monc);
794 __open_session(monc); /* continue hunting */
Sage Weilba75bb92009-10-06 11:31:11 -0700795 } else {
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800796 struct ceph_options *opt = monc->client->options;
797 int is_auth = ceph_auth_is_authenticated(monc->auth);
798 if (ceph_con_keepalive_expired(&monc->con,
799 opt->monc_ping_timeout)) {
800 dout("monc keepalive timeout\n");
801 is_auth = 0;
802 __close_session(monc);
803 monc->hunting = true;
804 __open_session(monc);
805 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800806
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800807 if (!monc->hunting) {
808 ceph_con_keepalive(&monc->con);
809 __validate_auth(monc);
810 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800811
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100812 if (is_auth) {
813 unsigned long now = jiffies;
814
815 dout("%s renew subs? now %lu renew after %lu\n",
816 __func__, now, monc->sub_renew_after);
817 if (time_after_eq(now, monc->sub_renew_after))
818 __send_subscribe(monc);
819 }
Sage Weilba75bb92009-10-06 11:31:11 -0700820 }
Sage Weilba75bb92009-10-06 11:31:11 -0700821 __schedule_delayed(monc);
822 mutex_unlock(&monc->mutex);
823}
824
Sage Weil6b805182009-10-27 11:50:50 -0700825/*
826 * On startup, we build a temporary monmap populated with the IPs
827 * provided by mount(2).
828 */
829static int build_initial_monmap(struct ceph_mon_client *monc)
830{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700831 struct ceph_options *opt = monc->client->options;
832 struct ceph_entity_addr *mon_addr = opt->mon_addr;
833 int num_mon = opt->num_mon;
Sage Weil6b805182009-10-27 11:50:50 -0700834 int i;
835
836 /* build initial monmap */
837 monc->monmap = kzalloc(sizeof(*monc->monmap) +
838 num_mon*sizeof(monc->monmap->mon_inst[0]),
839 GFP_KERNEL);
840 if (!monc->monmap)
841 return -ENOMEM;
842 for (i = 0; i < num_mon; i++) {
843 monc->monmap->mon_inst[i].addr = mon_addr[i];
Sage Weil6b805182009-10-27 11:50:50 -0700844 monc->monmap->mon_inst[i].addr.nonce = 0;
845 monc->monmap->mon_inst[i].name.type =
846 CEPH_ENTITY_TYPE_MON;
847 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
848 }
849 monc->monmap->num_mon = num_mon;
Sage Weil6b805182009-10-27 11:50:50 -0700850 return 0;
851}
852
Sage Weilba75bb92009-10-06 11:31:11 -0700853int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
854{
855 int err = 0;
856
857 dout("init\n");
858 memset(monc, 0, sizeof(*monc));
859 monc->client = cl;
860 monc->monmap = NULL;
861 mutex_init(&monc->mutex);
862
Sage Weil6b805182009-10-27 11:50:50 -0700863 err = build_initial_monmap(monc);
864 if (err)
865 goto out;
866
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700867 /* connection */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800868 /* authentication */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700869 monc->auth = ceph_auth_init(cl->options->name,
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700870 cl->options->key);
Noah Watkins49d92242011-09-12 14:51:58 -0700871 if (IS_ERR(monc->auth)) {
872 err = PTR_ERR(monc->auth);
Alex Elder67130932012-05-26 23:26:43 -0500873 goto out_monmap;
Noah Watkins49d92242011-09-12 14:51:58 -0700874 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800875 monc->auth->want_keys =
876 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
877 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
878
Sage Weil240ed682010-05-21 14:57:25 -0700879 /* msgs */
Sage Weila79832f2010-04-01 16:06:19 -0700880 err = -ENOMEM;
Sage Weil7c315c52010-03-24 21:52:30 -0700881 monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700882 sizeof(struct ceph_mon_subscribe_ack),
Sage Weilb61c2762011-08-09 15:03:46 -0700883 GFP_NOFS, true);
Sage Weila79832f2010-04-01 16:06:19 -0700884 if (!monc->m_subscribe_ack)
Noah Watkins49d92242011-09-12 14:51:58 -0700885 goto out_auth;
Sage Weil6694d6b2010-03-24 21:48:05 -0700886
Sage Weilb61c2762011-08-09 15:03:46 -0700887 monc->m_subscribe = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, GFP_NOFS,
888 true);
Sage Weil240ed682010-05-21 14:57:25 -0700889 if (!monc->m_subscribe)
890 goto out_subscribe_ack;
891
Sage Weilb61c2762011-08-09 15:03:46 -0700892 monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096, GFP_NOFS,
893 true);
Sage Weila79832f2010-04-01 16:06:19 -0700894 if (!monc->m_auth_reply)
Sage Weil240ed682010-05-21 14:57:25 -0700895 goto out_subscribe;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800896
Sage Weilb61c2762011-08-09 15:03:46 -0700897 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, GFP_NOFS, true);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800898 monc->pending_auth = 0;
Sage Weila79832f2010-04-01 16:06:19 -0700899 if (!monc->m_auth)
Sage Weil6694d6b2010-03-24 21:48:05 -0700900 goto out_auth_reply;
Sage Weilba75bb92009-10-06 11:31:11 -0700901
Sage Weil735a72e2012-06-27 12:24:34 -0700902 ceph_con_init(&monc->con, monc, &mon_con_ops,
903 &monc->client->msgr);
904
Sage Weilba75bb92009-10-06 11:31:11 -0700905 monc->cur_mon = -1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800906 monc->hunting = true;
Sage Weilba75bb92009-10-06 11:31:11 -0700907 monc->sub_renew_after = jiffies;
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100908 monc->sub_renew_sent = 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700909
910 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700911 monc->generic_request_tree = RB_ROOT;
912 monc->num_generic_requests = 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700913 monc->last_tid = 0;
914
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800915 return 0;
916
Sage Weil6694d6b2010-03-24 21:48:05 -0700917out_auth_reply:
918 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700919out_subscribe:
920 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700921out_subscribe_ack:
922 ceph_msg_put(monc->m_subscribe_ack);
Noah Watkins49d92242011-09-12 14:51:58 -0700923out_auth:
924 ceph_auth_destroy(monc->auth);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800925out_monmap:
926 kfree(monc->monmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700927out:
928 return err;
929}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700930EXPORT_SYMBOL(ceph_monc_init);
Sage Weilba75bb92009-10-06 11:31:11 -0700931
932void ceph_monc_stop(struct ceph_mon_client *monc)
933{
934 dout("stop\n");
935 cancel_delayed_work_sync(&monc->delayed_work);
936
937 mutex_lock(&monc->mutex);
938 __close_session(monc);
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100939 monc->cur_mon = -1;
Sage Weilba75bb92009-10-06 11:31:11 -0700940 mutex_unlock(&monc->mutex);
941
Sage Weilf3dea7e2012-06-10 20:43:56 -0700942 /*
943 * flush msgr queue before we destroy ourselves to ensure that:
944 * - any work that references our embedded con is finished.
945 * - any osd_client or other work that may reference an authorizer
946 * finishes before we shut down the auth subsystem.
947 */
948 ceph_msgr_flush();
949
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800950 ceph_auth_destroy(monc->auth);
951
952 ceph_msg_put(monc->m_auth);
Sage Weil6694d6b2010-03-24 21:48:05 -0700953 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700954 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700955 ceph_msg_put(monc->m_subscribe_ack);
Sage Weilba75bb92009-10-06 11:31:11 -0700956
957 kfree(monc->monmap);
958}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700959EXPORT_SYMBOL(ceph_monc_stop);
Sage Weilba75bb92009-10-06 11:31:11 -0700960
Ilya Dryomov0f9af162016-01-08 21:17:22 +0300961static void finish_hunting(struct ceph_mon_client *monc)
962{
963 if (monc->hunting) {
964 dout("%s found mon%d\n", __func__, monc->cur_mon);
965 monc->hunting = false;
966 }
967}
968
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800969static void handle_auth_reply(struct ceph_mon_client *monc,
970 struct ceph_msg *msg)
971{
972 int ret;
Sage Weil09c4d6a2010-05-25 15:38:06 -0700973 int was_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800974
975 mutex_lock(&monc->mutex);
Sage Weil27859f92013-03-25 10:26:14 -0700976 was_auth = ceph_auth_is_authenticated(monc->auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800977 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800978 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
979 msg->front.iov_len,
980 monc->m_auth->front.iov_base,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +0200981 monc->m_auth->front_alloc_len);
Ilya Dryomov0f9af162016-01-08 21:17:22 +0300982 if (ret > 0) {
983 __send_prepared_auth_request(monc, ret);
984 goto out;
985 }
986
987 finish_hunting(monc);
988
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800989 if (ret < 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800990 monc->client->auth_err = ret;
Sage Weil27859f92013-03-25 10:26:14 -0700991 } else if (!was_auth && ceph_auth_is_authenticated(monc->auth)) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800992 dout("authenticated, starting session\n");
Sage Weil07433042009-11-18 16:50:41 -0800993
Alex Elder15d98822012-05-26 23:26:43 -0500994 monc->client->msgr.inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
995 monc->client->msgr.inst.name.num =
Yehuda Sadeh0cf55372010-06-11 15:57:06 -0700996 cpu_to_le64(monc->auth->global_id);
Sage Weil07433042009-11-18 16:50:41 -0800997
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800998 __send_subscribe(monc);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700999 __resend_generic_request(monc);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001000
1001 pr_info("mon%d %s session established\n", monc->cur_mon,
1002 ceph_pr_addr(&monc->con.peer_addr.in_addr));
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001003 }
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001004
1005out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001006 mutex_unlock(&monc->mutex);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001007 if (monc->client->auth_err < 0)
1008 wake_up_all(&monc->client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001009}
1010
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001011static int __validate_auth(struct ceph_mon_client *monc)
1012{
1013 int ret;
1014
1015 if (monc->pending_auth)
1016 return 0;
1017
1018 ret = ceph_build_auth(monc->auth, monc->m_auth->front.iov_base,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02001019 monc->m_auth->front_alloc_len);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001020 if (ret <= 0)
1021 return ret; /* either an error, or no need to authenticate */
1022 __send_prepared_auth_request(monc, ret);
1023 return 0;
1024}
1025
1026int ceph_monc_validate_auth(struct ceph_mon_client *monc)
1027{
1028 int ret;
1029
1030 mutex_lock(&monc->mutex);
1031 ret = __validate_auth(monc);
1032 mutex_unlock(&monc->mutex);
1033 return ret;
1034}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001035EXPORT_SYMBOL(ceph_monc_validate_auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001036
Sage Weilba75bb92009-10-06 11:31:11 -07001037/*
1038 * handle incoming message
1039 */
1040static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
1041{
1042 struct ceph_mon_client *monc = con->private;
1043 int type = le16_to_cpu(msg->hdr.type);
1044
1045 if (!monc)
1046 return;
1047
1048 switch (type) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001049 case CEPH_MSG_AUTH_REPLY:
1050 handle_auth_reply(monc, msg);
Sage Weilba75bb92009-10-06 11:31:11 -07001051 break;
1052
1053 case CEPH_MSG_MON_SUBSCRIBE_ACK:
1054 handle_subscribe_ack(monc, msg);
1055 break;
1056
1057 case CEPH_MSG_STATFS_REPLY:
1058 handle_statfs_reply(monc, msg);
1059 break;
1060
Ilya Dryomov513a8242014-05-13 11:19:26 +04001061 case CEPH_MSG_MON_GET_VERSION_REPLY:
1062 handle_get_version_reply(monc, msg);
1063 break;
1064
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001065 case CEPH_MSG_MON_MAP:
1066 ceph_monc_handle_map(monc, msg);
1067 break;
1068
Sage Weilba75bb92009-10-06 11:31:11 -07001069 case CEPH_MSG_OSD_MAP:
1070 ceph_osdc_handle_map(&monc->client->osdc, msg);
1071 break;
1072
1073 default:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001074 /* can the chained handler handle it? */
1075 if (monc->client->extra_mon_dispatch &&
1076 monc->client->extra_mon_dispatch(monc->client, msg) == 0)
1077 break;
1078
Sage Weilba75bb92009-10-06 11:31:11 -07001079 pr_err("received unknown message type %d %s\n", type,
1080 ceph_msg_type_name(type));
1081 }
1082 ceph_msg_put(msg);
1083}
1084
1085/*
1086 * Allocate memory for incoming message
1087 */
1088static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001089 struct ceph_msg_header *hdr,
1090 int *skip)
Sage Weilba75bb92009-10-06 11:31:11 -07001091{
1092 struct ceph_mon_client *monc = con->private;
1093 int type = le16_to_cpu(hdr->type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001094 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001095 struct ceph_msg *m = NULL;
Sage Weilba75bb92009-10-06 11:31:11 -07001096
Yehuda Sadeh24504182010-01-08 13:58:34 -08001097 *skip = 0;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08001098
Sage Weilba75bb92009-10-06 11:31:11 -07001099 switch (type) {
Sage Weilba75bb92009-10-06 11:31:11 -07001100 case CEPH_MSG_MON_SUBSCRIBE_ACK:
Sage Weil7c315c52010-03-24 21:52:30 -07001101 m = ceph_msg_get(monc->m_subscribe_ack);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001102 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001103 case CEPH_MSG_STATFS_REPLY:
Yehuda Sadehf8c76f62010-04-22 15:40:37 -07001104 return get_generic_reply(con, hdr, skip);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001105 case CEPH_MSG_AUTH_REPLY:
Sage Weil6694d6b2010-03-24 21:48:05 -07001106 m = ceph_msg_get(monc->m_auth_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001107 break;
Ilya Dryomov513a8242014-05-13 11:19:26 +04001108 case CEPH_MSG_MON_GET_VERSION_REPLY:
1109 if (le64_to_cpu(hdr->tid) != 0)
1110 return get_generic_reply(con, hdr, skip);
1111
1112 /*
1113 * Older OSDs don't set reply tid even if the orignal
1114 * request had a non-zero tid. Workaround this weirdness
1115 * by falling through to the allocate case.
1116 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001117 case CEPH_MSG_MON_MAP:
1118 case CEPH_MSG_MDS_MAP:
1119 case CEPH_MSG_OSD_MAP:
Sage Weilb61c2762011-08-09 15:03:46 -07001120 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001121 if (!m)
1122 return NULL; /* ENOMEM--return skip == 0 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001123 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001124 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08001125
Sage Weil5b3a4db2010-02-19 21:43:23 -08001126 if (!m) {
1127 pr_info("alloc_msg unknown type %d\n", type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001128 *skip = 1;
Sage Weil73c3d482014-08-04 07:01:54 -07001129 } else if (front_len > m->front_alloc_len) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001130 pr_warn("mon_alloc_msg front %d > prealloc %d (%u#%llu)\n",
1131 front_len, m->front_alloc_len,
1132 (unsigned int)con->peer_name.type,
1133 le64_to_cpu(con->peer_name.num));
Sage Weil73c3d482014-08-04 07:01:54 -07001134 ceph_msg_put(m);
1135 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001136 }
Sage Weil73c3d482014-08-04 07:01:54 -07001137
Yehuda Sadeh24504182010-01-08 13:58:34 -08001138 return m;
Sage Weilba75bb92009-10-06 11:31:11 -07001139}
1140
1141/*
1142 * If the monitor connection resets, pick a new monitor and resubmit
1143 * any pending requests.
1144 */
1145static void mon_fault(struct ceph_connection *con)
1146{
1147 struct ceph_mon_client *monc = con->private;
1148
1149 if (!monc)
1150 return;
1151
1152 dout("mon_fault\n");
1153 mutex_lock(&monc->mutex);
1154 if (!con->private)
1155 goto out;
1156
Sage Weilf6a2f5b2011-08-09 09:27:44 -07001157 if (!monc->hunting)
Sage Weilba75bb92009-10-06 11:31:11 -07001158 pr_info("mon%d %s session lost, "
1159 "hunting for new mon\n", monc->cur_mon,
Alex Elder67130932012-05-26 23:26:43 -05001160 ceph_pr_addr(&monc->con.peer_addr.in_addr));
Sage Weilba75bb92009-10-06 11:31:11 -07001161
1162 __close_session(monc);
1163 if (!monc->hunting) {
1164 /* start hunting */
1165 monc->hunting = true;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001166 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -07001167 } else {
1168 /* already hunting, let's wait a bit */
1169 __schedule_delayed(monc);
1170 }
1171out:
1172 mutex_unlock(&monc->mutex);
1173}
1174
Sage Weilec87ef42012-05-31 20:27:50 -07001175/*
1176 * We can ignore refcounting on the connection struct, as all references
1177 * will come from the messenger workqueue, which is drained prior to
1178 * mon_client destruction.
1179 */
1180static struct ceph_connection *con_get(struct ceph_connection *con)
1181{
1182 return con;
1183}
1184
1185static void con_put(struct ceph_connection *con)
1186{
1187}
1188
Tobias Klauser9e327892010-05-20 10:40:19 +02001189static const struct ceph_connection_operations mon_con_ops = {
Sage Weilec87ef42012-05-31 20:27:50 -07001190 .get = con_get,
1191 .put = con_put,
Sage Weilba75bb92009-10-06 11:31:11 -07001192 .dispatch = dispatch,
1193 .fault = mon_fault,
1194 .alloc_msg = mon_alloc_msg,
Sage Weilba75bb92009-10-06 11:31:11 -07001195};