blob: 23a270c49baf25798251eb12f9fdc365e4012e07 [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 unsigned long delay;
Sage Weilba75bb92009-10-06 11:31:11 -0700206
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800207 if (monc->cur_mon < 0 || __sub_expired(monc)) {
Sage Weilba75bb92009-10-06 11:31:11 -0700208 delay = 10 * HZ;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800209 } else {
Ilya Dryomov58d81b12016-01-21 16:33:15 +0100210 delay = CEPH_MONC_PING_INTERVAL;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800211 }
212 dout("__schedule_delayed after %lu\n", delay);
213 schedule_delayed_work(&monc->delayed_work,
214 round_jiffies_relative(delay));
Sage Weilba75bb92009-10-06 11:31:11 -0700215}
216
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100217const char *ceph_sub_str[] = {
218 [CEPH_SUB_MDSMAP] = "mdsmap",
219 [CEPH_SUB_MONMAP] = "monmap",
220 [CEPH_SUB_OSDMAP] = "osdmap",
221};
222
Sage Weilba75bb92009-10-06 11:31:11 -0700223/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100224 * Send subscribe request for one or more maps, according to
225 * monc->subs.
Sage Weilba75bb92009-10-06 11:31:11 -0700226 */
227static void __send_subscribe(struct ceph_mon_client *monc)
228{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100229 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;
Sage Weilba75bb92009-10-06 11:31:11 -0700234
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100235 dout("%s sent %lu\n", __func__, monc->sub_renew_sent);
Sage Weilba75bb92009-10-06 11:31:11 -0700236
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100237 BUG_ON(monc->cur_mon < 0);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700238
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100239 if (!monc->sub_renew_sent)
240 monc->sub_renew_sent = jiffies | 1; /* never 0 */
Sage Weilba75bb92009-10-06 11:31:11 -0700241
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100242 msg->hdr.version = cpu_to_le16(2);
Sage Weilba75bb92009-10-06 11:31:11 -0700243
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100244 for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
245 if (monc->subs[i].want)
246 num++;
Sage Weilba75bb92009-10-06 11:31:11 -0700247 }
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100248 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));
Sage Weilba75bb92009-10-06 11:31:11 -0700269}
270
271static void handle_subscribe_ack(struct ceph_mon_client *monc,
272 struct ceph_msg *msg)
273{
Eric Dumazet95c96172012-04-15 05:58:06 +0000274 unsigned int seconds;
Sage Weil07bd10f2009-10-14 17:26:40 -0700275 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
Sage Weilba75bb92009-10-06 11:31:11 -0700276
Sage Weil07bd10f2009-10-14 17:26:40 -0700277 if (msg->front.iov_len < sizeof(*h))
278 goto bad;
279 seconds = le32_to_cpu(h->duration);
280
Sage Weilba75bb92009-10-06 11:31:11 -0700281 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100282 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 }
Sage Weilba75bb92009-10-06 11:31:11 -0700292 mutex_unlock(&monc->mutex);
293 return;
294bad:
295 pr_err("got corrupt subscribe-ack msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800296 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700297}
298
299/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100300 * 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"
Sage Weilba75bb92009-10-06 11:31:11 -0700304 */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100305static bool __ceph_monc_want_map(struct ceph_mon_client *monc, int sub,
306 u32 epoch, bool continuous)
Sage Weilba75bb92009-10-06 11:31:11 -0700307{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100308 __le64 start = cpu_to_le64(epoch);
309 u8 flags = !continuous ? CEPH_SUBSCRIBE_ONETIME : 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700310
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100311 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
326bool 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}
337EXPORT_SYMBOL(ceph_monc_want_map);
338
339/*
340 * Keep track of which maps we have
341 *
342 * @sub: one of CEPH_SUB_*
343 */
344static 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
359void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch)
Sage Weilba75bb92009-10-06 11:31:11 -0700360{
361 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100362 __ceph_monc_got_map(monc, sub, epoch);
Sage Weilba75bb92009-10-06 11:31:11 -0700363 mutex_unlock(&monc->mutex);
Sage Weilba75bb92009-10-06 11:31:11 -0700364}
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100365EXPORT_SYMBOL(ceph_monc_got_map);
Sage Weilba75bb92009-10-06 11:31:11 -0700366
367/*
368 * Register interest in the next osdmap
369 */
370void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
371{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100372 dout("%s have %u\n", __func__, monc->subs[CEPH_SUB_OSDMAP].have);
Sage Weilba75bb92009-10-06 11:31:11 -0700373 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100374 if (__ceph_monc_want_map(monc, CEPH_SUB_OSDMAP,
375 monc->subs[CEPH_SUB_OSDMAP].have + 1, false))
Sage Weilba75bb92009-10-06 11:31:11 -0700376 __send_subscribe(monc);
377 mutex_unlock(&monc->mutex);
378}
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400379EXPORT_SYMBOL(ceph_monc_request_next_osdmap);
380
Ilya Dryomova319bf52015-05-15 12:02:17 +0300381/*
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 */
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400387int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
388 unsigned long timeout)
389{
390 unsigned long started = jiffies;
Ilya Dryomov216639d2015-05-19 12:03:33 +0300391 long ret;
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400392
393 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100394 while (monc->subs[CEPH_SUB_OSDMAP].have < epoch) {
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400395 mutex_unlock(&monc->mutex);
396
Ilya Dryomova319bf52015-05-15 12:02:17 +0300397 if (timeout && time_after_eq(jiffies, started + timeout))
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400398 return -ETIMEDOUT;
399
400 ret = wait_event_interruptible_timeout(monc->client->auth_wq,
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100401 monc->subs[CEPH_SUB_OSDMAP].have >= epoch,
402 ceph_timeout_jiffies(timeout));
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400403 if (ret < 0)
404 return ret;
405
406 mutex_lock(&monc->mutex);
407 }
408
409 mutex_unlock(&monc->mutex);
410 return 0;
411}
412EXPORT_SYMBOL(ceph_monc_wait_osdmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700413
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800414/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100415 * Open a session with a random monitor. Request monmap and osdmap,
416 * which are waited upon in __ceph_open_session().
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800417 */
418int ceph_monc_open_session(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700419{
Sage Weilba75bb92009-10-06 11:31:11 -0700420 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100421 __ceph_monc_want_map(monc, CEPH_SUB_MONMAP, 0, true);
422 __ceph_monc_want_map(monc, CEPH_SUB_OSDMAP, 0, false);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800423 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700424 __schedule_delayed(monc);
425 mutex_unlock(&monc->mutex);
426 return 0;
427}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700428EXPORT_SYMBOL(ceph_monc_open_session);
Sage Weilba75bb92009-10-06 11:31:11 -0700429
Sage Weil07433042009-11-18 16:50:41 -0800430static void ceph_monc_handle_map(struct ceph_mon_client *monc,
431 struct ceph_msg *msg)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800432{
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));
Sage Weild4a780c2009-12-11 08:55:23 -0800447 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800448 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800449
Sage Weil07433042009-11-18 16:50:41 -0800450 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800451 kfree(monmap);
Sage Weild4a780c2009-12-11 08:55:23 -0800452 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800453 }
454
455 client->monc.monmap = monmap;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800456 kfree(old);
457
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100458 __ceph_monc_got_map(monc, CEPH_SUB_MONMAP, monc->monmap->epoch);
Ilya Dryomov02ac9562016-01-06 12:56:21 +0300459 client->have_fsid = true;
Sage Weild1c338a2012-08-19 12:29:16 -0700460
Sage Weild4a780c2009-12-11 08:55:23 -0800461out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800462 mutex_unlock(&monc->mutex);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700463 wake_up_all(&client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800464}
Sage Weilba75bb92009-10-06 11:31:11 -0700465
Sage Weilba75bb92009-10-06 11:31:11 -0700466/*
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300467 * generic requests (currently statfs, mon_get_version)
Sage Weilba75bb92009-10-06 11:31:11 -0700468 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700469static struct ceph_mon_generic_request *__lookup_generic_req(
Sage Weil85ff03f2010-02-15 14:47:28 -0800470 struct ceph_mon_client *monc, u64 tid)
471{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700472 struct ceph_mon_generic_request *req;
473 struct rb_node *n = monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800474
475 while (n) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700476 req = rb_entry(n, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800477 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
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700487static void __insert_generic_request(struct ceph_mon_client *monc,
488 struct ceph_mon_generic_request *new)
Sage Weil85ff03f2010-02-15 14:47:28 -0800489{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700490 struct rb_node **p = &monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800491 struct rb_node *parent = NULL;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700492 struct ceph_mon_generic_request *req = NULL;
Sage Weil85ff03f2010-02-15 14:47:28 -0800493
494 while (*p) {
495 parent = *p;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700496 req = rb_entry(parent, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800497 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);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700506 rb_insert_color(&new->node, &monc->generic_request_tree);
Sage Weil85ff03f2010-02-15 14:47:28 -0800507}
508
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700509static void release_generic_request(struct kref *kref)
Sage Weil3143edd2010-03-24 21:43:33 -0700510{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700511 struct ceph_mon_generic_request *req =
512 container_of(kref, struct ceph_mon_generic_request, kref);
Sage Weil3143edd2010-03-24 21:43:33 -0700513
514 if (req->reply)
515 ceph_msg_put(req->reply);
516 if (req->request)
517 ceph_msg_put(req->request);
Yehuda Sadeh20547562010-06-01 10:37:40 -0700518
519 kfree(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700520}
521
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700522static void put_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700523{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700524 kref_put(&req->kref, release_generic_request);
Sage Weil3143edd2010-03-24 21:43:33 -0700525}
526
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700527static void get_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700528{
529 kref_get(&req->kref);
530}
531
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700532static struct ceph_msg *get_generic_reply(struct ceph_connection *con,
Sage Weil3143edd2010-03-24 21:43:33 -0700533 struct ceph_msg_header *hdr,
534 int *skip)
535{
536 struct ceph_mon_client *monc = con->private;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700537 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700538 u64 tid = le64_to_cpu(hdr->tid);
539 struct ceph_msg *m;
540
541 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700542 req = __lookup_generic_req(monc, tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700543 if (!req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700544 dout("get_generic_reply %lld dne\n", tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700545 *skip = 1;
546 m = NULL;
547 } else {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700548 dout("get_generic_reply %lld got %p\n", tid, req->reply);
Alex Elder1c20f2d2012-06-04 14:43:32 -0500549 *skip = 0;
Sage Weil3143edd2010-03-24 21:43:33 -0700550 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
Ilya Dryomov513a8242014-05-13 11:19:26 +0400561static int __do_generic_request(struct ceph_mon_client *monc, u64 tid,
562 struct ceph_mon_generic_request *req)
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700563{
564 int err;
565
566 /* register request */
Ilya Dryomov513a8242014-05-13 11:19:26 +0400567 req->tid = tid != 0 ? tid : ++monc->last_tid;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700568 req->request->hdr.tid = cpu_to_le64(req->tid);
569 __insert_generic_request(monc, req);
570 monc->num_generic_requests++;
Alex Elder67130932012-05-26 23:26:43 -0500571 ceph_con_send(&monc->con, ceph_msg_get(req->request));
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700572 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--;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700579
580 if (!err)
581 err = req->result;
582 return err;
583}
584
Ilya Dryomov513a8242014-05-13 11:19:26 +0400585static 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
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700597/*
598 * statfs
599 */
Sage Weilba75bb92009-10-06 11:31:11 -0700600static void handle_statfs_reply(struct ceph_mon_client *monc,
601 struct ceph_msg *msg)
602{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700603 struct ceph_mon_generic_request *req;
Sage Weilba75bb92009-10-06 11:31:11 -0700604 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
Sage Weil3143edd2010-03-24 21:43:33 -0700605 u64 tid = le64_to_cpu(msg->hdr.tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700606
607 if (msg->front.iov_len != sizeof(*reply))
608 goto bad;
Sage Weilba75bb92009-10-06 11:31:11 -0700609 dout("handle_statfs_reply %p tid %llu\n", msg, tid);
610
611 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700612 req = __lookup_generic_req(monc, tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700613 if (req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700614 *(struct ceph_statfs *)req->buf = reply->st;
Sage Weilba75bb92009-10-06 11:31:11 -0700615 req->result = 0;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700616 get_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700617 }
618 mutex_unlock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700619 if (req) {
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700620 complete_all(&req->completion);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700621 put_generic_request(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700622 }
Sage Weilba75bb92009-10-06 11:31:11 -0700623 return;
624
625bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300626 pr_err("corrupt statfs reply, tid %llu\n", tid);
Sage Weil9ec7cab2009-12-14 15:13:47 -0800627 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700628}
629
630/*
Sage Weilba75bb92009-10-06 11:31:11 -0700631 * Do a synchronous statfs().
632 */
633int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
634{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700635 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700636 struct ceph_mon_statfs *h;
Sage Weilba75bb92009-10-06 11:31:11 -0700637 int err;
638
Julia Lawallcffe7b62010-05-13 22:07:29 +0200639 req = kzalloc(sizeof(*req), GFP_NOFS);
Sage Weil3143edd2010-03-24 21:43:33 -0700640 if (!req)
641 return -ENOMEM;
Sage Weilba75bb92009-10-06 11:31:11 -0700642
Sage Weil3143edd2010-03-24 21:43:33 -0700643 kref_init(&req->kref);
644 req->buf = buf;
645 init_completion(&req->completion);
646
Sage Weila79832f2010-04-01 16:06:19 -0700647 err = -ENOMEM;
Sage Weilb61c2762011-08-09 15:03:46 -0700648 req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), GFP_NOFS,
649 true);
Sage Weila79832f2010-04-01 16:06:19 -0700650 if (!req->request)
Sage Weil3143edd2010-03-24 21:43:33 -0700651 goto out;
Sage Weilb61c2762011-08-09 15:03:46 -0700652 req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 1024, GFP_NOFS,
653 true);
Sage Weila79832f2010-04-01 16:06:19 -0700654 if (!req->reply)
Sage Weil3143edd2010-03-24 21:43:33 -0700655 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700656
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;
Sage Weilba75bb92009-10-06 11:31:11 -0700663
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700664 err = do_generic_request(monc, req);
Sage Weil3143edd2010-03-24 21:43:33 -0700665
666out:
Ilya Dryomovf6469122014-12-22 19:35:17 +0300667 put_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700668 return err;
669}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700670EXPORT_SYMBOL(ceph_monc_do_statfs);
Sage Weilba75bb92009-10-06 11:31:11 -0700671
Ilya Dryomov513a8242014-05-13 11:19:26 +0400672static 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;
702bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300703 pr_err("corrupt mon_get_version reply, tid %llu\n", tid);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400704 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 */
712int 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;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400726 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);
755out:
Ilya Dryomovf6469122014-12-22 19:35:17 +0300756 put_generic_request(req);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400757 return err;
758}
759EXPORT_SYMBOL(ceph_monc_do_get_version);
760
Sage Weilba75bb92009-10-06 11:31:11 -0700761/*
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700762 * Resend pending generic requests.
Sage Weilba75bb92009-10-06 11:31:11 -0700763 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700764static void __resend_generic_request(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700765{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700766 struct ceph_mon_generic_request *req;
Sage Weil85ff03f2010-02-15 14:47:28 -0800767 struct rb_node *p;
Sage Weilba75bb92009-10-06 11:31:11 -0700768
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700769 for (p = rb_first(&monc->generic_request_tree); p; p = rb_next(p)) {
770 req = rb_entry(p, struct ceph_mon_generic_request, node);
Alex Elder6740a842012-06-01 14:56:43 -0500771 ceph_msg_revoke(req->request);
Sage Weil4f471e42012-07-30 18:16:40 -0700772 ceph_msg_revoke_incoming(req->reply);
Alex Elder67130932012-05-26 23:26:43 -0500773 ceph_con_send(&monc->con, ceph_msg_get(req->request));
Sage Weilba75bb92009-10-06 11:31:11 -0700774 }
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 */
782static 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);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800789 if (monc->hunting) {
790 __close_session(monc);
791 __open_session(monc); /* continue hunting */
Sage Weilba75bb92009-10-06 11:31:11 -0700792 } else {
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800793 int is_auth = ceph_auth_is_authenticated(monc->auth);
794 if (ceph_con_keepalive_expired(&monc->con,
Ilya Dryomov58d81b12016-01-21 16:33:15 +0100795 CEPH_MONC_PING_TIMEOUT)) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800796 dout("monc keepalive timeout\n");
797 is_auth = 0;
798 __close_session(monc);
799 monc->hunting = true;
800 __open_session(monc);
801 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800802
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800803 if (!monc->hunting) {
804 ceph_con_keepalive(&monc->con);
805 __validate_auth(monc);
806 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800807
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100808 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 }
Sage Weilba75bb92009-10-06 11:31:11 -0700816 }
Sage Weilba75bb92009-10-06 11:31:11 -0700817 __schedule_delayed(monc);
818 mutex_unlock(&monc->mutex);
819}
820
Sage Weil6b805182009-10-27 11:50:50 -0700821/*
822 * On startup, we build a temporary monmap populated with the IPs
823 * provided by mount(2).
824 */
825static int build_initial_monmap(struct ceph_mon_client *monc)
826{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700827 struct ceph_options *opt = monc->client->options;
828 struct ceph_entity_addr *mon_addr = opt->mon_addr;
829 int num_mon = opt->num_mon;
Sage Weil6b805182009-10-27 11:50:50 -0700830 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];
Sage Weil6b805182009-10-27 11:50:50 -0700840 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;
Sage Weil6b805182009-10-27 11:50:50 -0700846 return 0;
847}
848
Sage Weilba75bb92009-10-06 11:31:11 -0700849int 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
Sage Weil6b805182009-10-27 11:50:50 -0700859 err = build_initial_monmap(monc);
860 if (err)
861 goto out;
862
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700863 /* connection */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800864 /* authentication */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700865 monc->auth = ceph_auth_init(cl->options->name,
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700866 cl->options->key);
Noah Watkins49d92242011-09-12 14:51:58 -0700867 if (IS_ERR(monc->auth)) {
868 err = PTR_ERR(monc->auth);
Alex Elder67130932012-05-26 23:26:43 -0500869 goto out_monmap;
Noah Watkins49d92242011-09-12 14:51:58 -0700870 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800871 monc->auth->want_keys =
872 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
873 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
874
Sage Weil240ed682010-05-21 14:57:25 -0700875 /* msgs */
Sage Weila79832f2010-04-01 16:06:19 -0700876 err = -ENOMEM;
Sage Weil7c315c52010-03-24 21:52:30 -0700877 monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700878 sizeof(struct ceph_mon_subscribe_ack),
Sage Weilb61c2762011-08-09 15:03:46 -0700879 GFP_NOFS, true);
Sage Weila79832f2010-04-01 16:06:19 -0700880 if (!monc->m_subscribe_ack)
Noah Watkins49d92242011-09-12 14:51:58 -0700881 goto out_auth;
Sage Weil6694d6b2010-03-24 21:48:05 -0700882
Sage Weilb61c2762011-08-09 15:03:46 -0700883 monc->m_subscribe = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, GFP_NOFS,
884 true);
Sage Weil240ed682010-05-21 14:57:25 -0700885 if (!monc->m_subscribe)
886 goto out_subscribe_ack;
887
Sage Weilb61c2762011-08-09 15:03:46 -0700888 monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096, GFP_NOFS,
889 true);
Sage Weila79832f2010-04-01 16:06:19 -0700890 if (!monc->m_auth_reply)
Sage Weil240ed682010-05-21 14:57:25 -0700891 goto out_subscribe;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800892
Sage Weilb61c2762011-08-09 15:03:46 -0700893 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, GFP_NOFS, true);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800894 monc->pending_auth = 0;
Sage Weila79832f2010-04-01 16:06:19 -0700895 if (!monc->m_auth)
Sage Weil6694d6b2010-03-24 21:48:05 -0700896 goto out_auth_reply;
Sage Weilba75bb92009-10-06 11:31:11 -0700897
Sage Weil735a72e2012-06-27 12:24:34 -0700898 ceph_con_init(&monc->con, monc, &mon_con_ops,
899 &monc->client->msgr);
900
Sage Weilba75bb92009-10-06 11:31:11 -0700901 monc->cur_mon = -1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800902 monc->hunting = true;
Sage Weilba75bb92009-10-06 11:31:11 -0700903 monc->sub_renew_after = jiffies;
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100904 monc->sub_renew_sent = 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700905
906 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700907 monc->generic_request_tree = RB_ROOT;
908 monc->num_generic_requests = 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700909 monc->last_tid = 0;
910
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800911 return 0;
912
Sage Weil6694d6b2010-03-24 21:48:05 -0700913out_auth_reply:
914 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700915out_subscribe:
916 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700917out_subscribe_ack:
918 ceph_msg_put(monc->m_subscribe_ack);
Noah Watkins49d92242011-09-12 14:51:58 -0700919out_auth:
920 ceph_auth_destroy(monc->auth);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800921out_monmap:
922 kfree(monc->monmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700923out:
924 return err;
925}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700926EXPORT_SYMBOL(ceph_monc_init);
Sage Weilba75bb92009-10-06 11:31:11 -0700927
928void 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);
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100935 monc->cur_mon = -1;
Sage Weilba75bb92009-10-06 11:31:11 -0700936 mutex_unlock(&monc->mutex);
937
Sage Weilf3dea7e2012-06-10 20:43:56 -0700938 /*
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
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800946 ceph_auth_destroy(monc->auth);
947
948 ceph_msg_put(monc->m_auth);
Sage Weil6694d6b2010-03-24 21:48:05 -0700949 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700950 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700951 ceph_msg_put(monc->m_subscribe_ack);
Sage Weilba75bb92009-10-06 11:31:11 -0700952
953 kfree(monc->monmap);
954}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700955EXPORT_SYMBOL(ceph_monc_stop);
Sage Weilba75bb92009-10-06 11:31:11 -0700956
Ilya Dryomov0f9af162016-01-08 21:17:22 +0300957static 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
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800965static void handle_auth_reply(struct ceph_mon_client *monc,
966 struct ceph_msg *msg)
967{
968 int ret;
Sage Weil09c4d6a2010-05-25 15:38:06 -0700969 int was_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800970
971 mutex_lock(&monc->mutex);
Sage Weil27859f92013-03-25 10:26:14 -0700972 was_auth = ceph_auth_is_authenticated(monc->auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800973 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800974 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
975 msg->front.iov_len,
976 monc->m_auth->front.iov_base,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +0200977 monc->m_auth->front_alloc_len);
Ilya Dryomov0f9af162016-01-08 21:17:22 +0300978 if (ret > 0) {
979 __send_prepared_auth_request(monc, ret);
980 goto out;
981 }
982
983 finish_hunting(monc);
984
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800985 if (ret < 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800986 monc->client->auth_err = ret;
Sage Weil27859f92013-03-25 10:26:14 -0700987 } else if (!was_auth && ceph_auth_is_authenticated(monc->auth)) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800988 dout("authenticated, starting session\n");
Sage Weil07433042009-11-18 16:50:41 -0800989
Alex Elder15d98822012-05-26 23:26:43 -0500990 monc->client->msgr.inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
991 monc->client->msgr.inst.name.num =
Yehuda Sadeh0cf55372010-06-11 15:57:06 -0700992 cpu_to_le64(monc->auth->global_id);
Sage Weil07433042009-11-18 16:50:41 -0800993
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800994 __send_subscribe(monc);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700995 __resend_generic_request(monc);
Ilya Dryomov0f9af162016-01-08 21:17:22 +0300996
997 pr_info("mon%d %s session established\n", monc->cur_mon,
998 ceph_pr_addr(&monc->con.peer_addr.in_addr));
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800999 }
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001000
1001out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001002 mutex_unlock(&monc->mutex);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001003 if (monc->client->auth_err < 0)
1004 wake_up_all(&monc->client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001005}
1006
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001007static 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,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02001015 monc->m_auth->front_alloc_len);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001016 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
1022int 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}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001031EXPORT_SYMBOL(ceph_monc_validate_auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001032
Sage Weilba75bb92009-10-06 11:31:11 -07001033/*
1034 * handle incoming message
1035 */
1036static 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) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001045 case CEPH_MSG_AUTH_REPLY:
1046 handle_auth_reply(monc, msg);
Sage Weilba75bb92009-10-06 11:31:11 -07001047 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
Ilya Dryomov513a8242014-05-13 11:19:26 +04001057 case CEPH_MSG_MON_GET_VERSION_REPLY:
1058 handle_get_version_reply(monc, msg);
1059 break;
1060
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001061 case CEPH_MSG_MON_MAP:
1062 ceph_monc_handle_map(monc, msg);
1063 break;
1064
Sage Weilba75bb92009-10-06 11:31:11 -07001065 case CEPH_MSG_OSD_MAP:
1066 ceph_osdc_handle_map(&monc->client->osdc, msg);
1067 break;
1068
1069 default:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001070 /* 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
Sage Weilba75bb92009-10-06 11:31:11 -07001075 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 */
1084static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001085 struct ceph_msg_header *hdr,
1086 int *skip)
Sage Weilba75bb92009-10-06 11:31:11 -07001087{
1088 struct ceph_mon_client *monc = con->private;
1089 int type = le16_to_cpu(hdr->type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001090 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001091 struct ceph_msg *m = NULL;
Sage Weilba75bb92009-10-06 11:31:11 -07001092
Yehuda Sadeh24504182010-01-08 13:58:34 -08001093 *skip = 0;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08001094
Sage Weilba75bb92009-10-06 11:31:11 -07001095 switch (type) {
Sage Weilba75bb92009-10-06 11:31:11 -07001096 case CEPH_MSG_MON_SUBSCRIBE_ACK:
Sage Weil7c315c52010-03-24 21:52:30 -07001097 m = ceph_msg_get(monc->m_subscribe_ack);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001098 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001099 case CEPH_MSG_STATFS_REPLY:
Yehuda Sadehf8c76f62010-04-22 15:40:37 -07001100 return get_generic_reply(con, hdr, skip);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001101 case CEPH_MSG_AUTH_REPLY:
Sage Weil6694d6b2010-03-24 21:48:05 -07001102 m = ceph_msg_get(monc->m_auth_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001103 break;
Ilya Dryomov513a8242014-05-13 11:19:26 +04001104 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 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001113 case CEPH_MSG_MON_MAP:
1114 case CEPH_MSG_MDS_MAP:
1115 case CEPH_MSG_OSD_MAP:
Sage Weilb61c2762011-08-09 15:03:46 -07001116 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001117 if (!m)
1118 return NULL; /* ENOMEM--return skip == 0 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001119 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001120 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08001121
Sage Weil5b3a4db2010-02-19 21:43:23 -08001122 if (!m) {
1123 pr_info("alloc_msg unknown type %d\n", type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001124 *skip = 1;
Sage Weil73c3d482014-08-04 07:01:54 -07001125 } else if (front_len > m->front_alloc_len) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001126 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));
Sage Weil73c3d482014-08-04 07:01:54 -07001130 ceph_msg_put(m);
1131 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001132 }
Sage Weil73c3d482014-08-04 07:01:54 -07001133
Yehuda Sadeh24504182010-01-08 13:58:34 -08001134 return m;
Sage Weilba75bb92009-10-06 11:31:11 -07001135}
1136
1137/*
1138 * If the monitor connection resets, pick a new monitor and resubmit
1139 * any pending requests.
1140 */
1141static 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
Sage Weilf6a2f5b2011-08-09 09:27:44 -07001153 if (!monc->hunting)
Sage Weilba75bb92009-10-06 11:31:11 -07001154 pr_info("mon%d %s session lost, "
1155 "hunting for new mon\n", monc->cur_mon,
Alex Elder67130932012-05-26 23:26:43 -05001156 ceph_pr_addr(&monc->con.peer_addr.in_addr));
Sage Weilba75bb92009-10-06 11:31:11 -07001157
1158 __close_session(monc);
1159 if (!monc->hunting) {
1160 /* start hunting */
1161 monc->hunting = true;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001162 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -07001163 } else {
1164 /* already hunting, let's wait a bit */
1165 __schedule_delayed(monc);
1166 }
1167out:
1168 mutex_unlock(&monc->mutex);
1169}
1170
Sage Weilec87ef42012-05-31 20:27:50 -07001171/*
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 */
1176static struct ceph_connection *con_get(struct ceph_connection *con)
1177{
1178 return con;
1179}
1180
1181static void con_put(struct ceph_connection *con)
1182{
1183}
1184
Tobias Klauser9e327892010-05-20 10:40:19 +02001185static const struct ceph_connection_operations mon_con_ops = {
Sage Weilec87ef42012-05-31 20:27:50 -07001186 .get = con_get,
1187 .put = con_put,
Sage Weilba75bb92009-10-06 11:31:11 -07001188 .dispatch = dispatch,
1189 .fault = mon_fault,
1190 .alloc_msg = mon_alloc_msg,
Sage Weilba75bb92009-10-06 11:31:11 -07001191};