blob: 63edc6e5f0269f21275d6b7be5673e41ba5a9177 [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
Ilya Dryomov220abf52017-06-05 14:45:00 +02009#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/ceph/mon_client.h>
11#include <linux/ceph/libceph.h>
Sage Weilab434b62012-01-13 22:22:03 -080012#include <linux/ceph/debugfs.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070013#include <linux/ceph/decode.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070014#include <linux/ceph/auth.h>
Sage Weilba75bb92009-10-06 11:31:11 -070015
16/*
17 * Interact with Ceph monitor cluster. Handle requests for new map
18 * versions, and periodically resend as needed. Also implement
19 * statfs() and umount().
20 *
21 * A small cluster of Ceph "monitors" are responsible for managing critical
22 * cluster configuration and state information. An odd number (e.g., 3, 5)
23 * of cmon daemons use a modified version of the Paxos part-time parliament
24 * algorithm to manage the MDS map (mds cluster membership), OSD map, and
25 * list of clients who have mounted the file system.
26 *
27 * We maintain an open, active session with a monitor at all times in order to
28 * receive timely MDSMap updates. We periodically send a keepalive byte on the
29 * TCP socket to ensure we detect a failure. If the connection does break, we
30 * randomly hunt for a new monitor. Once the connection is reestablished, we
31 * resend any outstanding requests.
32 */
33
Tobias Klauser9e327892010-05-20 10:40:19 +020034static const struct ceph_connection_operations mon_con_ops;
Sage Weilba75bb92009-10-06 11:31:11 -070035
Sage Weil9bd2e6f2010-02-02 16:21:06 -080036static int __validate_auth(struct ceph_mon_client *monc);
37
Sage Weilba75bb92009-10-06 11:31:11 -070038/*
39 * Decode a monmap blob (e.g., during mount).
40 */
41struct ceph_monmap *ceph_monmap_decode(void *p, void *end)
42{
43 struct ceph_monmap *m = NULL;
44 int i, err = -EINVAL;
45 struct ceph_fsid fsid;
46 u32 epoch, num_mon;
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));
Ilya Dryomovf3b4e552017-05-19 11:59:22 +020053 p += sizeof(u16); /* skip version */
Sage Weilba75bb92009-10-06 11:31:11 -070054
55 ceph_decode_need(&p, end, sizeof(fsid) + 2*sizeof(u32), bad);
56 ceph_decode_copy(&p, &fsid, sizeof(fsid));
Sage Weilc89136e2009-10-14 09:59:09 -070057 epoch = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070058
Sage Weilc89136e2009-10-14 09:59:09 -070059 num_mon = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070060 ceph_decode_need(&p, end, num_mon*sizeof(m->mon_inst[0]), bad);
61
62 if (num_mon >= CEPH_MAX_MON)
63 goto bad;
64 m = kmalloc(sizeof(*m) + sizeof(m->mon_inst[0])*num_mon, GFP_NOFS);
65 if (m == NULL)
66 return ERR_PTR(-ENOMEM);
67 m->fsid = fsid;
68 m->epoch = epoch;
69 m->num_mon = num_mon;
70 ceph_decode_copy(&p, m->mon_inst, num_mon*sizeof(m->mon_inst[0]));
Sage Weil63f2d212009-11-03 15:17:56 -080071 for (i = 0; i < num_mon; i++)
72 ceph_decode_addr(&m->mon_inst[i].addr);
Sage Weilba75bb92009-10-06 11:31:11 -070073
Sage Weilba75bb92009-10-06 11:31:11 -070074 dout("monmap_decode epoch %d, num_mon %d\n", m->epoch,
75 m->num_mon);
76 for (i = 0; i < m->num_mon; i++)
77 dout("monmap_decode mon%d is %s\n", i,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070078 ceph_pr_addr(&m->mon_inst[i].addr.in_addr));
Sage Weilba75bb92009-10-06 11:31:11 -070079 return m;
80
81bad:
82 dout("monmap_decode failed with %d\n", err);
83 kfree(m);
84 return ERR_PTR(err);
85}
86
87/*
88 * return true if *addr is included in the monmap.
89 */
90int ceph_monmap_contains(struct ceph_monmap *m, struct ceph_entity_addr *addr)
91{
92 int i;
93
94 for (i = 0; i < m->num_mon; i++)
Sage Weil103e2d32010-01-07 16:12:36 -080095 if (memcmp(addr, &m->mon_inst[i].addr, sizeof(*addr)) == 0)
Sage Weilba75bb92009-10-06 11:31:11 -070096 return 1;
97 return 0;
98}
99
100/*
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800101 * Send an auth request.
102 */
103static void __send_prepared_auth_request(struct ceph_mon_client *monc, int len)
104{
105 monc->pending_auth = 1;
106 monc->m_auth->front.iov_len = len;
107 monc->m_auth->hdr.front_len = cpu_to_le32(len);
Alex Elder6740a842012-06-01 14:56:43 -0500108 ceph_msg_revoke(monc->m_auth);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800109 ceph_msg_get(monc->m_auth); /* keep our ref */
Alex Elder67130932012-05-26 23:26:43 -0500110 ceph_con_send(&monc->con, monc->m_auth);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800111}
112
113/*
Sage Weilba75bb92009-10-06 11:31:11 -0700114 * Close monitor session, if any.
115 */
116static void __close_session(struct ceph_mon_client *monc)
117{
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700118 dout("__close_session closing mon%d\n", monc->cur_mon);
Alex Elder6740a842012-06-01 14:56:43 -0500119 ceph_msg_revoke(monc->m_auth);
Sage Weil4f471e42012-07-30 18:16:40 -0700120 ceph_msg_revoke_incoming(monc->m_auth_reply);
121 ceph_msg_revoke(monc->m_subscribe);
122 ceph_msg_revoke_incoming(monc->m_subscribe_ack);
Alex Elder67130932012-05-26 23:26:43 -0500123 ceph_con_close(&monc->con);
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100124
Sage Weilf6a2f5b2011-08-09 09:27:44 -0700125 monc->pending_auth = 0;
126 ceph_auth_reset(monc->auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700127}
128
129/*
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100130 * Pick a new monitor at random and set cur_mon. If we are repicking
131 * (i.e. cur_mon is already set), be sure to pick a different one.
Sage Weilba75bb92009-10-06 11:31:11 -0700132 */
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100133static void pick_new_mon(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700134{
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100135 int old_mon = monc->cur_mon;
136
137 BUG_ON(monc->monmap->num_mon < 1);
138
139 if (monc->monmap->num_mon == 1) {
140 monc->cur_mon = 0;
141 } else {
142 int max = monc->monmap->num_mon;
143 int o = -1;
144 int n;
145
146 if (monc->cur_mon >= 0) {
147 if (monc->cur_mon < monc->monmap->num_mon)
148 o = monc->cur_mon;
149 if (o >= 0)
150 max--;
151 }
152
153 n = prandom_u32() % max;
154 if (o >= 0 && n >= o)
155 n++;
156
157 monc->cur_mon = n;
158 }
159
160 dout("%s mon%d -> mon%d out of %d mons\n", __func__, old_mon,
161 monc->cur_mon, monc->monmap->num_mon);
162}
163
164/*
165 * Open a session with a new monitor.
166 */
167static void __open_session(struct ceph_mon_client *monc)
168{
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800169 int ret;
Sage Weilba75bb92009-10-06 11:31:11 -0700170
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100171 pick_new_mon(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700172
Ilya Dryomov1752b502016-01-21 16:33:25 +0100173 monc->hunting = true;
Ilya Dryomov168b9092016-01-21 16:33:19 +0100174 if (monc->had_a_connection) {
175 monc->hunt_mult *= CEPH_MONC_HUNT_BACKOFF;
176 if (monc->hunt_mult > CEPH_MONC_HUNT_MAX_MULT)
177 monc->hunt_mult = CEPH_MONC_HUNT_MAX_MULT;
178 }
179
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100180 monc->sub_renew_after = jiffies; /* i.e., expired */
181 monc->sub_renew_sent = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800182
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100183 dout("%s opening mon%d\n", __func__, monc->cur_mon);
184 ceph_con_open(&monc->con, CEPH_ENTITY_TYPE_MON, monc->cur_mon,
185 &monc->monmap->mon_inst[monc->cur_mon].addr);
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800186
Ilya Dryomov0e04dc22016-01-20 17:50:31 +0100187 /*
188 * send an initial keepalive to ensure our timestamp is valid
189 * by the time we are in an OPENED state
190 */
191 ceph_con_keepalive(&monc->con);
192
193 /* initiate authentication handshake */
194 ret = ceph_auth_build_hello(monc->auth,
195 monc->m_auth->front.iov_base,
196 monc->m_auth->front_alloc_len);
197 BUG_ON(ret <= 0);
198 __send_prepared_auth_request(monc, ret);
Sage Weilba75bb92009-10-06 11:31:11 -0700199}
200
Ilya Dryomov1752b502016-01-21 16:33:25 +0100201static void reopen_session(struct ceph_mon_client *monc)
202{
203 if (!monc->hunting)
204 pr_info("mon%d %s session lost, hunting for new mon\n",
205 monc->cur_mon, ceph_pr_addr(&monc->con.peer_addr.in_addr));
206
207 __close_session(monc);
208 __open_session(monc);
209}
210
Sage Weilba75bb92009-10-06 11:31:11 -0700211/*
212 * Reschedule delayed work timer.
213 */
214static void __schedule_delayed(struct ceph_mon_client *monc)
215{
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800216 unsigned long delay;
Sage Weilba75bb92009-10-06 11:31:11 -0700217
Ilya Dryomov168b9092016-01-21 16:33:19 +0100218 if (monc->hunting)
219 delay = CEPH_MONC_HUNT_INTERVAL * monc->hunt_mult;
220 else
Ilya Dryomov58d81b12016-01-21 16:33:15 +0100221 delay = CEPH_MONC_PING_INTERVAL;
Ilya Dryomov168b9092016-01-21 16:33:19 +0100222
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800223 dout("__schedule_delayed after %lu\n", delay);
Ilya Dryomovbee3a372016-01-22 18:42:17 +0100224 mod_delayed_work(system_wq, &monc->delayed_work,
225 round_jiffies_relative(delay));
Sage Weilba75bb92009-10-06 11:31:11 -0700226}
227
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100228const char *ceph_sub_str[] = {
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100229 [CEPH_SUB_MONMAP] = "monmap",
230 [CEPH_SUB_OSDMAP] = "osdmap",
Yan, Zheng0cabbd92016-04-07 11:34:43 +0800231 [CEPH_SUB_FSMAP] = "fsmap.user",
232 [CEPH_SUB_MDSMAP] = "mdsmap",
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100233};
234
Sage Weilba75bb92009-10-06 11:31:11 -0700235/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100236 * Send subscribe request for one or more maps, according to
237 * monc->subs.
Sage Weilba75bb92009-10-06 11:31:11 -0700238 */
239static void __send_subscribe(struct ceph_mon_client *monc)
240{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100241 struct ceph_msg *msg = monc->m_subscribe;
242 void *p = msg->front.iov_base;
243 void *const end = p + msg->front_alloc_len;
244 int num = 0;
245 int i;
Sage Weilba75bb92009-10-06 11:31:11 -0700246
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100247 dout("%s sent %lu\n", __func__, monc->sub_renew_sent);
Sage Weilba75bb92009-10-06 11:31:11 -0700248
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100249 BUG_ON(monc->cur_mon < 0);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700250
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100251 if (!monc->sub_renew_sent)
252 monc->sub_renew_sent = jiffies | 1; /* never 0 */
Sage Weilba75bb92009-10-06 11:31:11 -0700253
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100254 msg->hdr.version = cpu_to_le16(2);
Sage Weilba75bb92009-10-06 11:31:11 -0700255
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100256 for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
257 if (monc->subs[i].want)
258 num++;
Sage Weilba75bb92009-10-06 11:31:11 -0700259 }
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100260 BUG_ON(num < 1); /* monmap sub is always there */
261 ceph_encode_32(&p, num);
262 for (i = 0; i < ARRAY_SIZE(monc->subs); i++) {
Ilya Dryomov737cc81e2016-05-26 00:05:01 +0200263 char buf[32];
264 int len;
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100265
266 if (!monc->subs[i].want)
267 continue;
268
Ilya Dryomov737cc81e2016-05-26 00:05:01 +0200269 len = sprintf(buf, "%s", ceph_sub_str[i]);
270 if (i == CEPH_SUB_MDSMAP &&
271 monc->fs_cluster_id != CEPH_FS_CLUSTER_ID_NONE)
272 len += sprintf(buf + len, ".%d", monc->fs_cluster_id);
273
274 dout("%s %s start %llu flags 0x%x\n", __func__, buf,
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100275 le64_to_cpu(monc->subs[i].item.start),
276 monc->subs[i].item.flags);
Ilya Dryomov737cc81e2016-05-26 00:05:01 +0200277 ceph_encode_string(&p, end, buf, len);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100278 memcpy(p, &monc->subs[i].item, sizeof(monc->subs[i].item));
279 p += sizeof(monc->subs[i].item);
280 }
281
Ilya Dryomov737cc81e2016-05-26 00:05:01 +0200282 BUG_ON(p > end);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100283 msg->front.iov_len = p - msg->front.iov_base;
284 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
285 ceph_msg_revoke(msg);
286 ceph_con_send(&monc->con, ceph_msg_get(msg));
Sage Weilba75bb92009-10-06 11:31:11 -0700287}
288
289static void handle_subscribe_ack(struct ceph_mon_client *monc,
290 struct ceph_msg *msg)
291{
Eric Dumazet95c96172012-04-15 05:58:06 +0000292 unsigned int seconds;
Sage Weil07bd10f2009-10-14 17:26:40 -0700293 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
Sage Weilba75bb92009-10-06 11:31:11 -0700294
Sage Weil07bd10f2009-10-14 17:26:40 -0700295 if (msg->front.iov_len < sizeof(*h))
296 goto bad;
297 seconds = le32_to_cpu(h->duration);
298
Sage Weilba75bb92009-10-06 11:31:11 -0700299 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100300 if (monc->sub_renew_sent) {
Ilya Dryomov220abf52017-06-05 14:45:00 +0200301 /*
302 * This is only needed for legacy (infernalis or older)
303 * MONs -- see delayed_work().
304 */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100305 monc->sub_renew_after = monc->sub_renew_sent +
306 (seconds >> 1) * HZ - 1;
307 dout("%s sent %lu duration %d renew after %lu\n", __func__,
308 monc->sub_renew_sent, seconds, monc->sub_renew_after);
309 monc->sub_renew_sent = 0;
310 } else {
311 dout("%s sent %lu renew after %lu, ignoring\n", __func__,
312 monc->sub_renew_sent, monc->sub_renew_after);
313 }
Sage Weilba75bb92009-10-06 11:31:11 -0700314 mutex_unlock(&monc->mutex);
315 return;
316bad:
317 pr_err("got corrupt subscribe-ack msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800318 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700319}
320
321/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100322 * Register interest in a map
323 *
324 * @sub: one of CEPH_SUB_*
325 * @epoch: X for "every map since X", or 0 for "just the latest"
Sage Weilba75bb92009-10-06 11:31:11 -0700326 */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100327static bool __ceph_monc_want_map(struct ceph_mon_client *monc, int sub,
328 u32 epoch, bool continuous)
Sage Weilba75bb92009-10-06 11:31:11 -0700329{
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100330 __le64 start = cpu_to_le64(epoch);
331 u8 flags = !continuous ? CEPH_SUBSCRIBE_ONETIME : 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700332
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100333 dout("%s %s epoch %u continuous %d\n", __func__, ceph_sub_str[sub],
334 epoch, continuous);
335
336 if (monc->subs[sub].want &&
337 monc->subs[sub].item.start == start &&
338 monc->subs[sub].item.flags == flags)
339 return false;
340
341 monc->subs[sub].item.start = start;
342 monc->subs[sub].item.flags = flags;
343 monc->subs[sub].want = true;
344
345 return true;
346}
347
348bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch,
349 bool continuous)
350{
351 bool need_request;
352
353 mutex_lock(&monc->mutex);
354 need_request = __ceph_monc_want_map(monc, sub, epoch, continuous);
355 mutex_unlock(&monc->mutex);
356
357 return need_request;
358}
359EXPORT_SYMBOL(ceph_monc_want_map);
360
361/*
362 * Keep track of which maps we have
363 *
364 * @sub: one of CEPH_SUB_*
365 */
366static void __ceph_monc_got_map(struct ceph_mon_client *monc, int sub,
367 u32 epoch)
368{
369 dout("%s %s epoch %u\n", __func__, ceph_sub_str[sub], epoch);
370
371 if (monc->subs[sub].want) {
372 if (monc->subs[sub].item.flags & CEPH_SUBSCRIBE_ONETIME)
373 monc->subs[sub].want = false;
374 else
375 monc->subs[sub].item.start = cpu_to_le64(epoch + 1);
376 }
377
378 monc->subs[sub].have = epoch;
379}
380
381void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch)
Sage Weilba75bb92009-10-06 11:31:11 -0700382{
383 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100384 __ceph_monc_got_map(monc, sub, epoch);
Sage Weilba75bb92009-10-06 11:31:11 -0700385 mutex_unlock(&monc->mutex);
Sage Weilba75bb92009-10-06 11:31:11 -0700386}
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100387EXPORT_SYMBOL(ceph_monc_got_map);
Sage Weilba75bb92009-10-06 11:31:11 -0700388
Ilya Dryomov42c1b122016-04-28 16:07:25 +0200389void ceph_monc_renew_subs(struct ceph_mon_client *monc)
390{
391 mutex_lock(&monc->mutex);
392 __send_subscribe(monc);
393 mutex_unlock(&monc->mutex);
394}
395EXPORT_SYMBOL(ceph_monc_renew_subs);
396
Sage Weilba75bb92009-10-06 11:31:11 -0700397/*
Ilya Dryomova319bf52015-05-15 12:02:17 +0300398 * Wait for an osdmap with a given epoch.
399 *
400 * @epoch: epoch to wait for
401 * @timeout: in jiffies, 0 means "wait forever"
402 */
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400403int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
404 unsigned long timeout)
405{
406 unsigned long started = jiffies;
Ilya Dryomov216639d2015-05-19 12:03:33 +0300407 long ret;
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400408
409 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100410 while (monc->subs[CEPH_SUB_OSDMAP].have < epoch) {
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400411 mutex_unlock(&monc->mutex);
412
Ilya Dryomova319bf52015-05-15 12:02:17 +0300413 if (timeout && time_after_eq(jiffies, started + timeout))
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400414 return -ETIMEDOUT;
415
416 ret = wait_event_interruptible_timeout(monc->client->auth_wq,
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100417 monc->subs[CEPH_SUB_OSDMAP].have >= epoch,
418 ceph_timeout_jiffies(timeout));
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400419 if (ret < 0)
420 return ret;
421
422 mutex_lock(&monc->mutex);
423 }
424
425 mutex_unlock(&monc->mutex);
426 return 0;
427}
428EXPORT_SYMBOL(ceph_monc_wait_osdmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700429
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800430/*
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100431 * Open a session with a random monitor. Request monmap and osdmap,
432 * which are waited upon in __ceph_open_session().
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800433 */
434int ceph_monc_open_session(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700435{
Sage Weilba75bb92009-10-06 11:31:11 -0700436 mutex_lock(&monc->mutex);
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100437 __ceph_monc_want_map(monc, CEPH_SUB_MONMAP, 0, true);
438 __ceph_monc_want_map(monc, CEPH_SUB_OSDMAP, 0, false);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800439 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700440 __schedule_delayed(monc);
441 mutex_unlock(&monc->mutex);
442 return 0;
443}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700444EXPORT_SYMBOL(ceph_monc_open_session);
Sage Weilba75bb92009-10-06 11:31:11 -0700445
Sage Weil07433042009-11-18 16:50:41 -0800446static void ceph_monc_handle_map(struct ceph_mon_client *monc,
447 struct ceph_msg *msg)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800448{
449 struct ceph_client *client = monc->client;
450 struct ceph_monmap *monmap = NULL, *old = monc->monmap;
451 void *p, *end;
452
453 mutex_lock(&monc->mutex);
454
455 dout("handle_monmap\n");
456 p = msg->front.iov_base;
457 end = p + msg->front.iov_len;
458
459 monmap = ceph_monmap_decode(p, end);
460 if (IS_ERR(monmap)) {
461 pr_err("problem decoding monmap, %d\n",
462 (int)PTR_ERR(monmap));
Sage Weild4a780c2009-12-11 08:55:23 -0800463 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800464 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800465
Sage Weil07433042009-11-18 16:50:41 -0800466 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800467 kfree(monmap);
Sage Weild4a780c2009-12-11 08:55:23 -0800468 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800469 }
470
471 client->monc.monmap = monmap;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800472 kfree(old);
473
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100474 __ceph_monc_got_map(monc, CEPH_SUB_MONMAP, monc->monmap->epoch);
Ilya Dryomov02ac9562016-01-06 12:56:21 +0300475 client->have_fsid = true;
Sage Weild1c338a2012-08-19 12:29:16 -0700476
Sage Weild4a780c2009-12-11 08:55:23 -0800477out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800478 mutex_unlock(&monc->mutex);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700479 wake_up_all(&client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800480}
Sage Weilba75bb92009-10-06 11:31:11 -0700481
Sage Weilba75bb92009-10-06 11:31:11 -0700482/*
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300483 * generic requests (currently statfs, mon_get_version)
Sage Weilba75bb92009-10-06 11:31:11 -0700484 */
Ilya Dryomovfcd00b62016-04-28 16:07:22 +0200485DEFINE_RB_FUNCS(generic_request, struct ceph_mon_generic_request, tid, node)
Sage Weil85ff03f2010-02-15 14:47:28 -0800486
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700487static void release_generic_request(struct kref *kref)
Sage Weil3143edd2010-03-24 21:43:33 -0700488{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700489 struct ceph_mon_generic_request *req =
490 container_of(kref, struct ceph_mon_generic_request, kref);
Sage Weil3143edd2010-03-24 21:43:33 -0700491
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200492 dout("%s greq %p request %p reply %p\n", __func__, req, req->request,
493 req->reply);
494 WARN_ON(!RB_EMPTY_NODE(&req->node));
495
Sage Weil3143edd2010-03-24 21:43:33 -0700496 if (req->reply)
497 ceph_msg_put(req->reply);
498 if (req->request)
499 ceph_msg_put(req->request);
Yehuda Sadeh20547562010-06-01 10:37:40 -0700500
501 kfree(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700502}
503
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700504static void put_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700505{
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200506 if (req)
507 kref_put(&req->kref, release_generic_request);
Sage Weil3143edd2010-03-24 21:43:33 -0700508}
509
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700510static void get_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700511{
512 kref_get(&req->kref);
513}
514
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200515static struct ceph_mon_generic_request *
516alloc_generic_request(struct ceph_mon_client *monc, gfp_t gfp)
517{
518 struct ceph_mon_generic_request *req;
519
520 req = kzalloc(sizeof(*req), gfp);
521 if (!req)
522 return NULL;
523
524 req->monc = monc;
525 kref_init(&req->kref);
526 RB_CLEAR_NODE(&req->node);
527 init_completion(&req->completion);
528
529 dout("%s greq %p\n", __func__, req);
530 return req;
531}
532
533static void register_generic_request(struct ceph_mon_generic_request *req)
534{
535 struct ceph_mon_client *monc = req->monc;
536
537 WARN_ON(req->tid);
538
539 get_generic_request(req);
540 req->tid = ++monc->last_tid;
541 insert_generic_request(&monc->generic_request_tree, req);
542}
543
544static void send_generic_request(struct ceph_mon_client *monc,
545 struct ceph_mon_generic_request *req)
546{
547 WARN_ON(!req->tid);
548
549 dout("%s greq %p tid %llu\n", __func__, req, req->tid);
550 req->request->hdr.tid = cpu_to_le64(req->tid);
551 ceph_con_send(&monc->con, ceph_msg_get(req->request));
552}
553
554static void __finish_generic_request(struct ceph_mon_generic_request *req)
555{
556 struct ceph_mon_client *monc = req->monc;
557
558 dout("%s greq %p tid %llu\n", __func__, req, req->tid);
559 erase_generic_request(&monc->generic_request_tree, req);
560
561 ceph_msg_revoke(req->request);
562 ceph_msg_revoke_incoming(req->reply);
563}
564
565static void finish_generic_request(struct ceph_mon_generic_request *req)
566{
567 __finish_generic_request(req);
568 put_generic_request(req);
569}
570
571static void complete_generic_request(struct ceph_mon_generic_request *req)
572{
573 if (req->complete_cb)
574 req->complete_cb(req);
575 else
576 complete_all(&req->completion);
577 put_generic_request(req);
578}
579
Wei Yongjunf52ec332016-07-30 00:37:31 +0000580static void cancel_generic_request(struct ceph_mon_generic_request *req)
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200581{
582 struct ceph_mon_client *monc = req->monc;
583 struct ceph_mon_generic_request *lookup_req;
584
585 dout("%s greq %p tid %llu\n", __func__, req, req->tid);
586
587 mutex_lock(&monc->mutex);
588 lookup_req = lookup_generic_request(&monc->generic_request_tree,
589 req->tid);
590 if (lookup_req) {
591 WARN_ON(lookup_req != req);
592 finish_generic_request(req);
593 }
594
595 mutex_unlock(&monc->mutex);
596}
597
598static int wait_generic_request(struct ceph_mon_generic_request *req)
599{
600 int ret;
601
602 dout("%s greq %p tid %llu\n", __func__, req, req->tid);
603 ret = wait_for_completion_interruptible(&req->completion);
604 if (ret)
605 cancel_generic_request(req);
606 else
607 ret = req->result; /* completed */
608
609 return ret;
610}
611
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700612static struct ceph_msg *get_generic_reply(struct ceph_connection *con,
Sage Weil3143edd2010-03-24 21:43:33 -0700613 struct ceph_msg_header *hdr,
614 int *skip)
615{
616 struct ceph_mon_client *monc = con->private;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700617 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700618 u64 tid = le64_to_cpu(hdr->tid);
619 struct ceph_msg *m;
620
621 mutex_lock(&monc->mutex);
Ilya Dryomovfcd00b62016-04-28 16:07:22 +0200622 req = lookup_generic_request(&monc->generic_request_tree, tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700623 if (!req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700624 dout("get_generic_reply %lld dne\n", tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700625 *skip = 1;
626 m = NULL;
627 } else {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700628 dout("get_generic_reply %lld got %p\n", tid, req->reply);
Alex Elder1c20f2d2012-06-04 14:43:32 -0500629 *skip = 0;
Sage Weil3143edd2010-03-24 21:43:33 -0700630 m = ceph_msg_get(req->reply);
631 /*
632 * we don't need to track the connection reading into
633 * this reply because we only have one open connection
634 * at a time, ever.
635 */
636 }
637 mutex_unlock(&monc->mutex);
638 return m;
639}
640
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700641/*
642 * statfs
643 */
Sage Weilba75bb92009-10-06 11:31:11 -0700644static void handle_statfs_reply(struct ceph_mon_client *monc,
645 struct ceph_msg *msg)
646{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700647 struct ceph_mon_generic_request *req;
Sage Weilba75bb92009-10-06 11:31:11 -0700648 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
Sage Weil3143edd2010-03-24 21:43:33 -0700649 u64 tid = le64_to_cpu(msg->hdr.tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700650
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200651 dout("%s msg %p tid %llu\n", __func__, msg, tid);
652
Sage Weilba75bb92009-10-06 11:31:11 -0700653 if (msg->front.iov_len != sizeof(*reply))
654 goto bad;
Sage Weilba75bb92009-10-06 11:31:11 -0700655
656 mutex_lock(&monc->mutex);
Ilya Dryomovfcd00b62016-04-28 16:07:22 +0200657 req = lookup_generic_request(&monc->generic_request_tree, tid);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200658 if (!req) {
659 mutex_unlock(&monc->mutex);
660 return;
Sage Weilba75bb92009-10-06 11:31:11 -0700661 }
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200662
663 req->result = 0;
664 *req->u.st = reply->st; /* struct */
665 __finish_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700666 mutex_unlock(&monc->mutex);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200667
668 complete_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700669 return;
670
671bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300672 pr_err("corrupt statfs reply, tid %llu\n", tid);
Sage Weil9ec7cab2009-12-14 15:13:47 -0800673 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700674}
675
676/*
Sage Weilba75bb92009-10-06 11:31:11 -0700677 * Do a synchronous statfs().
678 */
Douglas Fuller06d74372017-08-16 10:19:27 -0400679int ceph_monc_do_statfs(struct ceph_mon_client *monc, u64 data_pool,
680 struct ceph_statfs *buf)
Sage Weilba75bb92009-10-06 11:31:11 -0700681{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700682 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700683 struct ceph_mon_statfs *h;
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200684 int ret = -ENOMEM;
Sage Weilba75bb92009-10-06 11:31:11 -0700685
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200686 req = alloc_generic_request(monc, GFP_NOFS);
Sage Weil3143edd2010-03-24 21:43:33 -0700687 if (!req)
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200688 goto out;
Sage Weilba75bb92009-10-06 11:31:11 -0700689
Sage Weilb61c2762011-08-09 15:03:46 -0700690 req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), GFP_NOFS,
691 true);
Sage Weila79832f2010-04-01 16:06:19 -0700692 if (!req->request)
Sage Weil3143edd2010-03-24 21:43:33 -0700693 goto out;
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200694
695 req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 64, GFP_NOFS, true);
Sage Weila79832f2010-04-01 16:06:19 -0700696 if (!req->reply)
Sage Weil3143edd2010-03-24 21:43:33 -0700697 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700698
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200699 req->u.st = buf;
Douglas Fuller06d74372017-08-16 10:19:27 -0400700 req->request->hdr.version = cpu_to_le16(2);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200701
702 mutex_lock(&monc->mutex);
703 register_generic_request(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700704 /* fill out request */
705 h = req->request->front.iov_base;
706 h->monhdr.have_version = 0;
707 h->monhdr.session_mon = cpu_to_le16(-1);
708 h->monhdr.session_mon_tid = 0;
709 h->fsid = monc->monmap->fsid;
Douglas Fuller06d74372017-08-16 10:19:27 -0400710 h->contains_data_pool = (data_pool != CEPH_NOPOOL);
711 h->data_pool = cpu_to_le64(data_pool);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200712 send_generic_request(monc, req);
713 mutex_unlock(&monc->mutex);
Sage Weilba75bb92009-10-06 11:31:11 -0700714
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200715 ret = wait_generic_request(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700716out:
Ilya Dryomovf6469122014-12-22 19:35:17 +0300717 put_generic_request(req);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200718 return ret;
Sage Weilba75bb92009-10-06 11:31:11 -0700719}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700720EXPORT_SYMBOL(ceph_monc_do_statfs);
Sage Weilba75bb92009-10-06 11:31:11 -0700721
Ilya Dryomov513a8242014-05-13 11:19:26 +0400722static void handle_get_version_reply(struct ceph_mon_client *monc,
723 struct ceph_msg *msg)
724{
725 struct ceph_mon_generic_request *req;
726 u64 tid = le64_to_cpu(msg->hdr.tid);
727 void *p = msg->front.iov_base;
728 void *end = p + msg->front_alloc_len;
729 u64 handle;
730
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200731 dout("%s msg %p tid %llu\n", __func__, msg, tid);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400732
733 ceph_decode_need(&p, end, 2*sizeof(u64), bad);
734 handle = ceph_decode_64(&p);
735 if (tid != 0 && tid != handle)
736 goto bad;
737
738 mutex_lock(&monc->mutex);
Ilya Dryomovfcd00b62016-04-28 16:07:22 +0200739 req = lookup_generic_request(&monc->generic_request_tree, handle);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200740 if (!req) {
741 mutex_unlock(&monc->mutex);
742 return;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400743 }
744
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200745 req->result = 0;
746 req->u.newest = ceph_decode_64(&p);
747 __finish_generic_request(req);
748 mutex_unlock(&monc->mutex);
749
750 complete_generic_request(req);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400751 return;
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200752
Ilya Dryomov513a8242014-05-13 11:19:26 +0400753bad:
Ilya Dryomov7a6fdeb2014-12-22 19:14:26 +0300754 pr_err("corrupt mon_get_version reply, tid %llu\n", tid);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400755 ceph_msg_dump(msg);
756}
757
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200758static struct ceph_mon_generic_request *
759__ceph_monc_get_version(struct ceph_mon_client *monc, const char *what,
760 ceph_monc_callback_t cb, u64 private_data)
761{
762 struct ceph_mon_generic_request *req;
763
764 req = alloc_generic_request(monc, GFP_NOIO);
765 if (!req)
766 goto err_put_req;
767
768 req->request = ceph_msg_new(CEPH_MSG_MON_GET_VERSION,
769 sizeof(u64) + sizeof(u32) + strlen(what),
770 GFP_NOIO, true);
771 if (!req->request)
772 goto err_put_req;
773
774 req->reply = ceph_msg_new(CEPH_MSG_MON_GET_VERSION_REPLY, 32, GFP_NOIO,
775 true);
776 if (!req->reply)
777 goto err_put_req;
778
779 req->complete_cb = cb;
780 req->private_data = private_data;
781
782 mutex_lock(&monc->mutex);
783 register_generic_request(req);
784 {
785 void *p = req->request->front.iov_base;
786 void *const end = p + req->request->front_alloc_len;
787
788 ceph_encode_64(&p, req->tid); /* handle */
789 ceph_encode_string(&p, end, what, strlen(what));
790 WARN_ON(p != end);
791 }
792 send_generic_request(monc, req);
793 mutex_unlock(&monc->mutex);
794
795 return req;
796
797err_put_req:
798 put_generic_request(req);
799 return ERR_PTR(-ENOMEM);
800}
801
Ilya Dryomov513a8242014-05-13 11:19:26 +0400802/*
803 * Send MMonGetVersion and wait for the reply.
804 *
805 * @what: one of "mdsmap", "osdmap" or "monmap"
806 */
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200807int ceph_monc_get_version(struct ceph_mon_client *monc, const char *what,
808 u64 *newest)
Ilya Dryomov513a8242014-05-13 11:19:26 +0400809{
810 struct ceph_mon_generic_request *req;
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200811 int ret;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400812
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200813 req = __ceph_monc_get_version(monc, what, NULL, 0);
814 if (IS_ERR(req))
815 return PTR_ERR(req);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400816
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200817 ret = wait_generic_request(req);
818 if (!ret)
819 *newest = req->u.newest;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400820
Ilya Dryomovf6469122014-12-22 19:35:17 +0300821 put_generic_request(req);
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200822 return ret;
Ilya Dryomov513a8242014-05-13 11:19:26 +0400823}
Ilya Dryomovd0b19702016-04-28 16:07:27 +0200824EXPORT_SYMBOL(ceph_monc_get_version);
825
826/*
827 * Send MMonGetVersion,
828 *
829 * @what: one of "mdsmap", "osdmap" or "monmap"
830 */
831int ceph_monc_get_version_async(struct ceph_mon_client *monc, const char *what,
832 ceph_monc_callback_t cb, u64 private_data)
833{
834 struct ceph_mon_generic_request *req;
835
836 req = __ceph_monc_get_version(monc, what, cb, private_data);
837 if (IS_ERR(req))
838 return PTR_ERR(req);
839
840 put_generic_request(req);
841 return 0;
842}
843EXPORT_SYMBOL(ceph_monc_get_version_async);
Ilya Dryomov513a8242014-05-13 11:19:26 +0400844
Douglas Fuller6305a3b2015-07-22 20:59:52 -0400845static void handle_command_ack(struct ceph_mon_client *monc,
846 struct ceph_msg *msg)
847{
848 struct ceph_mon_generic_request *req;
849 void *p = msg->front.iov_base;
850 void *const end = p + msg->front_alloc_len;
851 u64 tid = le64_to_cpu(msg->hdr.tid);
852
853 dout("%s msg %p tid %llu\n", __func__, msg, tid);
854
855 ceph_decode_need(&p, end, sizeof(struct ceph_mon_request_header) +
856 sizeof(u32), bad);
857 p += sizeof(struct ceph_mon_request_header);
858
859 mutex_lock(&monc->mutex);
860 req = lookup_generic_request(&monc->generic_request_tree, tid);
861 if (!req) {
862 mutex_unlock(&monc->mutex);
863 return;
864 }
865
866 req->result = ceph_decode_32(&p);
867 __finish_generic_request(req);
868 mutex_unlock(&monc->mutex);
869
870 complete_generic_request(req);
871 return;
872
873bad:
874 pr_err("corrupt mon_command ack, tid %llu\n", tid);
875 ceph_msg_dump(msg);
876}
877
878int ceph_monc_blacklist_add(struct ceph_mon_client *monc,
879 struct ceph_entity_addr *client_addr)
880{
881 struct ceph_mon_generic_request *req;
882 struct ceph_mon_command *h;
883 int ret = -ENOMEM;
884 int len;
885
886 req = alloc_generic_request(monc, GFP_NOIO);
887 if (!req)
888 goto out;
889
890 req->request = ceph_msg_new(CEPH_MSG_MON_COMMAND, 256, GFP_NOIO, true);
891 if (!req->request)
892 goto out;
893
894 req->reply = ceph_msg_new(CEPH_MSG_MON_COMMAND_ACK, 512, GFP_NOIO,
895 true);
896 if (!req->reply)
897 goto out;
898
899 mutex_lock(&monc->mutex);
900 register_generic_request(req);
901 h = req->request->front.iov_base;
902 h->monhdr.have_version = 0;
903 h->monhdr.session_mon = cpu_to_le16(-1);
904 h->monhdr.session_mon_tid = 0;
905 h->fsid = monc->monmap->fsid;
906 h->num_strs = cpu_to_le32(1);
907 len = sprintf(h->str, "{ \"prefix\": \"osd blacklist\", \
908 \"blacklistop\": \"add\", \
909 \"addr\": \"%pISpc/%u\" }",
910 &client_addr->in_addr, le32_to_cpu(client_addr->nonce));
911 h->str_len = cpu_to_le32(len);
912 send_generic_request(monc, req);
913 mutex_unlock(&monc->mutex);
914
915 ret = wait_generic_request(req);
916out:
917 put_generic_request(req);
918 return ret;
919}
920EXPORT_SYMBOL(ceph_monc_blacklist_add);
921
Sage Weilba75bb92009-10-06 11:31:11 -0700922/*
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700923 * Resend pending generic requests.
Sage Weilba75bb92009-10-06 11:31:11 -0700924 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700925static void __resend_generic_request(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700926{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700927 struct ceph_mon_generic_request *req;
Sage Weil85ff03f2010-02-15 14:47:28 -0800928 struct rb_node *p;
Sage Weilba75bb92009-10-06 11:31:11 -0700929
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700930 for (p = rb_first(&monc->generic_request_tree); p; p = rb_next(p)) {
931 req = rb_entry(p, struct ceph_mon_generic_request, node);
Alex Elder6740a842012-06-01 14:56:43 -0500932 ceph_msg_revoke(req->request);
Sage Weil4f471e42012-07-30 18:16:40 -0700933 ceph_msg_revoke_incoming(req->reply);
Alex Elder67130932012-05-26 23:26:43 -0500934 ceph_con_send(&monc->con, ceph_msg_get(req->request));
Sage Weilba75bb92009-10-06 11:31:11 -0700935 }
936}
937
938/*
939 * Delayed work. If we haven't mounted yet, retry. Otherwise,
940 * renew/retry subscription as needed (in case it is timing out, or we
941 * got an ENOMEM). And keep the monitor connection alive.
942 */
943static void delayed_work(struct work_struct *work)
944{
945 struct ceph_mon_client *monc =
946 container_of(work, struct ceph_mon_client, delayed_work.work);
947
948 dout("monc delayed_work\n");
949 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800950 if (monc->hunting) {
Ilya Dryomov1752b502016-01-21 16:33:25 +0100951 dout("%s continuing hunt\n", __func__);
952 reopen_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700953 } else {
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800954 int is_auth = ceph_auth_is_authenticated(monc->auth);
955 if (ceph_con_keepalive_expired(&monc->con,
Ilya Dryomov58d81b12016-01-21 16:33:15 +0100956 CEPH_MONC_PING_TIMEOUT)) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800957 dout("monc keepalive timeout\n");
958 is_auth = 0;
Ilya Dryomov1752b502016-01-21 16:33:25 +0100959 reopen_session(monc);
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800960 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800961
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800962 if (!monc->hunting) {
963 ceph_con_keepalive(&monc->con);
964 __validate_auth(monc);
965 }
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800966
Ilya Dryomov220abf52017-06-05 14:45:00 +0200967 if (is_auth &&
968 !(monc->con.peer_features & CEPH_FEATURE_MON_STATEFUL_SUB)) {
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100969 unsigned long now = jiffies;
970
971 dout("%s renew subs? now %lu renew after %lu\n",
972 __func__, now, monc->sub_renew_after);
973 if (time_after_eq(now, monc->sub_renew_after))
974 __send_subscribe(monc);
975 }
Sage Weilba75bb92009-10-06 11:31:11 -0700976 }
Sage Weilba75bb92009-10-06 11:31:11 -0700977 __schedule_delayed(monc);
978 mutex_unlock(&monc->mutex);
979}
980
Sage Weil6b805182009-10-27 11:50:50 -0700981/*
982 * On startup, we build a temporary monmap populated with the IPs
983 * provided by mount(2).
984 */
985static int build_initial_monmap(struct ceph_mon_client *monc)
986{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700987 struct ceph_options *opt = monc->client->options;
988 struct ceph_entity_addr *mon_addr = opt->mon_addr;
989 int num_mon = opt->num_mon;
Sage Weil6b805182009-10-27 11:50:50 -0700990 int i;
991
992 /* build initial monmap */
993 monc->monmap = kzalloc(sizeof(*monc->monmap) +
994 num_mon*sizeof(monc->monmap->mon_inst[0]),
995 GFP_KERNEL);
996 if (!monc->monmap)
997 return -ENOMEM;
998 for (i = 0; i < num_mon; i++) {
999 monc->monmap->mon_inst[i].addr = mon_addr[i];
Sage Weil6b805182009-10-27 11:50:50 -07001000 monc->monmap->mon_inst[i].addr.nonce = 0;
1001 monc->monmap->mon_inst[i].name.type =
1002 CEPH_ENTITY_TYPE_MON;
1003 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
1004 }
1005 monc->monmap->num_mon = num_mon;
Sage Weil6b805182009-10-27 11:50:50 -07001006 return 0;
1007}
1008
Sage Weilba75bb92009-10-06 11:31:11 -07001009int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
1010{
1011 int err = 0;
1012
1013 dout("init\n");
1014 memset(monc, 0, sizeof(*monc));
1015 monc->client = cl;
1016 monc->monmap = NULL;
1017 mutex_init(&monc->mutex);
1018
Sage Weil6b805182009-10-27 11:50:50 -07001019 err = build_initial_monmap(monc);
1020 if (err)
1021 goto out;
1022
Sage Weilf6a2f5b2011-08-09 09:27:44 -07001023 /* connection */
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001024 /* authentication */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001025 monc->auth = ceph_auth_init(cl->options->name,
Tommi Virtanen8323c3a2011-03-25 16:32:57 -07001026 cl->options->key);
Noah Watkins49d92242011-09-12 14:51:58 -07001027 if (IS_ERR(monc->auth)) {
1028 err = PTR_ERR(monc->auth);
Alex Elder67130932012-05-26 23:26:43 -05001029 goto out_monmap;
Noah Watkins49d92242011-09-12 14:51:58 -07001030 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001031 monc->auth->want_keys =
1032 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
1033 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
1034
Sage Weil240ed682010-05-21 14:57:25 -07001035 /* msgs */
Sage Weila79832f2010-04-01 16:06:19 -07001036 err = -ENOMEM;
Sage Weil7c315c52010-03-24 21:52:30 -07001037 monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
Yehuda Sadeh34d23762010-04-06 14:33:58 -07001038 sizeof(struct ceph_mon_subscribe_ack),
Ilya Dryomov5418d0a22016-12-02 16:35:08 +01001039 GFP_KERNEL, true);
Sage Weila79832f2010-04-01 16:06:19 -07001040 if (!monc->m_subscribe_ack)
Noah Watkins49d92242011-09-12 14:51:58 -07001041 goto out_auth;
Sage Weil6694d6b2010-03-24 21:48:05 -07001042
Ilya Dryomov5418d0a22016-12-02 16:35:08 +01001043 monc->m_subscribe = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 128,
1044 GFP_KERNEL, true);
Sage Weil240ed682010-05-21 14:57:25 -07001045 if (!monc->m_subscribe)
1046 goto out_subscribe_ack;
1047
Ilya Dryomov5418d0a22016-12-02 16:35:08 +01001048 monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096,
1049 GFP_KERNEL, true);
Sage Weila79832f2010-04-01 16:06:19 -07001050 if (!monc->m_auth_reply)
Sage Weil240ed682010-05-21 14:57:25 -07001051 goto out_subscribe;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001052
Ilya Dryomov5418d0a22016-12-02 16:35:08 +01001053 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, GFP_KERNEL, true);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001054 monc->pending_auth = 0;
Sage Weila79832f2010-04-01 16:06:19 -07001055 if (!monc->m_auth)
Sage Weil6694d6b2010-03-24 21:48:05 -07001056 goto out_auth_reply;
Sage Weilba75bb92009-10-06 11:31:11 -07001057
Sage Weil735a72e2012-06-27 12:24:34 -07001058 ceph_con_init(&monc->con, monc, &mon_con_ops,
1059 &monc->client->msgr);
1060
Sage Weilba75bb92009-10-06 11:31:11 -07001061 monc->cur_mon = -1;
Ilya Dryomov168b9092016-01-21 16:33:19 +01001062 monc->had_a_connection = false;
1063 monc->hunt_mult = 1;
Sage Weilba75bb92009-10-06 11:31:11 -07001064
1065 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -07001066 monc->generic_request_tree = RB_ROOT;
Sage Weilba75bb92009-10-06 11:31:11 -07001067 monc->last_tid = 0;
1068
Ilya Dryomov737cc81e2016-05-26 00:05:01 +02001069 monc->fs_cluster_id = CEPH_FS_CLUSTER_ID_NONE;
1070
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001071 return 0;
1072
Sage Weil6694d6b2010-03-24 21:48:05 -07001073out_auth_reply:
1074 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -07001075out_subscribe:
1076 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -07001077out_subscribe_ack:
1078 ceph_msg_put(monc->m_subscribe_ack);
Noah Watkins49d92242011-09-12 14:51:58 -07001079out_auth:
1080 ceph_auth_destroy(monc->auth);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001081out_monmap:
1082 kfree(monc->monmap);
Sage Weilba75bb92009-10-06 11:31:11 -07001083out:
1084 return err;
1085}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001086EXPORT_SYMBOL(ceph_monc_init);
Sage Weilba75bb92009-10-06 11:31:11 -07001087
1088void ceph_monc_stop(struct ceph_mon_client *monc)
1089{
1090 dout("stop\n");
1091 cancel_delayed_work_sync(&monc->delayed_work);
1092
1093 mutex_lock(&monc->mutex);
1094 __close_session(monc);
Ilya Dryomov0e04dc22016-01-20 17:50:31 +01001095 monc->cur_mon = -1;
Sage Weilba75bb92009-10-06 11:31:11 -07001096 mutex_unlock(&monc->mutex);
1097
Sage Weilf3dea7e2012-06-10 20:43:56 -07001098 /*
1099 * flush msgr queue before we destroy ourselves to ensure that:
1100 * - any work that references our embedded con is finished.
1101 * - any osd_client or other work that may reference an authorizer
1102 * finishes before we shut down the auth subsystem.
1103 */
1104 ceph_msgr_flush();
1105
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001106 ceph_auth_destroy(monc->auth);
1107
Ilya Dryomovd0b19702016-04-28 16:07:27 +02001108 WARN_ON(!RB_EMPTY_ROOT(&monc->generic_request_tree));
1109
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001110 ceph_msg_put(monc->m_auth);
Sage Weil6694d6b2010-03-24 21:48:05 -07001111 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -07001112 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -07001113 ceph_msg_put(monc->m_subscribe_ack);
Sage Weilba75bb92009-10-06 11:31:11 -07001114
1115 kfree(monc->monmap);
1116}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001117EXPORT_SYMBOL(ceph_monc_stop);
Sage Weilba75bb92009-10-06 11:31:11 -07001118
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001119static void finish_hunting(struct ceph_mon_client *monc)
1120{
1121 if (monc->hunting) {
1122 dout("%s found mon%d\n", __func__, monc->cur_mon);
1123 monc->hunting = false;
Ilya Dryomov168b9092016-01-21 16:33:19 +01001124 monc->had_a_connection = true;
1125 monc->hunt_mult /= 2; /* reduce by 50% */
1126 if (monc->hunt_mult < 1)
1127 monc->hunt_mult = 1;
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001128 }
1129}
1130
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001131static void handle_auth_reply(struct ceph_mon_client *monc,
1132 struct ceph_msg *msg)
1133{
1134 int ret;
Sage Weil09c4d6a2010-05-25 15:38:06 -07001135 int was_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001136
1137 mutex_lock(&monc->mutex);
Sage Weil27859f92013-03-25 10:26:14 -07001138 was_auth = ceph_auth_is_authenticated(monc->auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001139 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001140 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
1141 msg->front.iov_len,
1142 monc->m_auth->front.iov_base,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02001143 monc->m_auth->front_alloc_len);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001144 if (ret > 0) {
1145 __send_prepared_auth_request(monc, ret);
1146 goto out;
1147 }
1148
1149 finish_hunting(monc);
1150
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001151 if (ret < 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001152 monc->client->auth_err = ret;
Sage Weil27859f92013-03-25 10:26:14 -07001153 } else if (!was_auth && ceph_auth_is_authenticated(monc->auth)) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001154 dout("authenticated, starting session\n");
Sage Weil07433042009-11-18 16:50:41 -08001155
Alex Elder15d98822012-05-26 23:26:43 -05001156 monc->client->msgr.inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
1157 monc->client->msgr.inst.name.num =
Yehuda Sadeh0cf55372010-06-11 15:57:06 -07001158 cpu_to_le64(monc->auth->global_id);
Sage Weil07433042009-11-18 16:50:41 -08001159
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001160 __send_subscribe(monc);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -07001161 __resend_generic_request(monc);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001162
1163 pr_info("mon%d %s session established\n", monc->cur_mon,
1164 ceph_pr_addr(&monc->con.peer_addr.in_addr));
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001165 }
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001166
1167out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001168 mutex_unlock(&monc->mutex);
Ilya Dryomov0f9af162016-01-08 21:17:22 +03001169 if (monc->client->auth_err < 0)
1170 wake_up_all(&monc->client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001171}
1172
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001173static int __validate_auth(struct ceph_mon_client *monc)
1174{
1175 int ret;
1176
1177 if (monc->pending_auth)
1178 return 0;
1179
1180 ret = ceph_build_auth(monc->auth, monc->m_auth->front.iov_base,
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02001181 monc->m_auth->front_alloc_len);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001182 if (ret <= 0)
1183 return ret; /* either an error, or no need to authenticate */
1184 __send_prepared_auth_request(monc, ret);
1185 return 0;
1186}
1187
1188int ceph_monc_validate_auth(struct ceph_mon_client *monc)
1189{
1190 int ret;
1191
1192 mutex_lock(&monc->mutex);
1193 ret = __validate_auth(monc);
1194 mutex_unlock(&monc->mutex);
1195 return ret;
1196}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001197EXPORT_SYMBOL(ceph_monc_validate_auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08001198
Sage Weilba75bb92009-10-06 11:31:11 -07001199/*
1200 * handle incoming message
1201 */
1202static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
1203{
1204 struct ceph_mon_client *monc = con->private;
1205 int type = le16_to_cpu(msg->hdr.type);
1206
1207 if (!monc)
1208 return;
1209
1210 switch (type) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001211 case CEPH_MSG_AUTH_REPLY:
1212 handle_auth_reply(monc, msg);
Sage Weilba75bb92009-10-06 11:31:11 -07001213 break;
1214
1215 case CEPH_MSG_MON_SUBSCRIBE_ACK:
1216 handle_subscribe_ack(monc, msg);
1217 break;
1218
1219 case CEPH_MSG_STATFS_REPLY:
1220 handle_statfs_reply(monc, msg);
1221 break;
1222
Ilya Dryomov513a8242014-05-13 11:19:26 +04001223 case CEPH_MSG_MON_GET_VERSION_REPLY:
1224 handle_get_version_reply(monc, msg);
1225 break;
1226
Douglas Fuller6305a3b2015-07-22 20:59:52 -04001227 case CEPH_MSG_MON_COMMAND_ACK:
1228 handle_command_ack(monc, msg);
1229 break;
1230
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001231 case CEPH_MSG_MON_MAP:
1232 ceph_monc_handle_map(monc, msg);
1233 break;
1234
Sage Weilba75bb92009-10-06 11:31:11 -07001235 case CEPH_MSG_OSD_MAP:
1236 ceph_osdc_handle_map(&monc->client->osdc, msg);
1237 break;
1238
1239 default:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001240 /* can the chained handler handle it? */
1241 if (monc->client->extra_mon_dispatch &&
1242 monc->client->extra_mon_dispatch(monc->client, msg) == 0)
1243 break;
1244
Sage Weilba75bb92009-10-06 11:31:11 -07001245 pr_err("received unknown message type %d %s\n", type,
1246 ceph_msg_type_name(type));
1247 }
1248 ceph_msg_put(msg);
1249}
1250
1251/*
1252 * Allocate memory for incoming message
1253 */
1254static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001255 struct ceph_msg_header *hdr,
1256 int *skip)
Sage Weilba75bb92009-10-06 11:31:11 -07001257{
1258 struct ceph_mon_client *monc = con->private;
1259 int type = le16_to_cpu(hdr->type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001260 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001261 struct ceph_msg *m = NULL;
Sage Weilba75bb92009-10-06 11:31:11 -07001262
Yehuda Sadeh24504182010-01-08 13:58:34 -08001263 *skip = 0;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08001264
Sage Weilba75bb92009-10-06 11:31:11 -07001265 switch (type) {
Sage Weilba75bb92009-10-06 11:31:11 -07001266 case CEPH_MSG_MON_SUBSCRIBE_ACK:
Sage Weil7c315c52010-03-24 21:52:30 -07001267 m = ceph_msg_get(monc->m_subscribe_ack);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001268 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001269 case CEPH_MSG_STATFS_REPLY:
Douglas Fuller6305a3b2015-07-22 20:59:52 -04001270 case CEPH_MSG_MON_COMMAND_ACK:
Yehuda Sadehf8c76f62010-04-22 15:40:37 -07001271 return get_generic_reply(con, hdr, skip);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001272 case CEPH_MSG_AUTH_REPLY:
Sage Weil6694d6b2010-03-24 21:48:05 -07001273 m = ceph_msg_get(monc->m_auth_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001274 break;
Ilya Dryomov513a8242014-05-13 11:19:26 +04001275 case CEPH_MSG_MON_GET_VERSION_REPLY:
1276 if (le64_to_cpu(hdr->tid) != 0)
1277 return get_generic_reply(con, hdr, skip);
1278
1279 /*
1280 * Older OSDs don't set reply tid even if the orignal
1281 * request had a non-zero tid. Workaround this weirdness
1282 * by falling through to the allocate case.
1283 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001284 case CEPH_MSG_MON_MAP:
1285 case CEPH_MSG_MDS_MAP:
1286 case CEPH_MSG_OSD_MAP:
Yan, Zheng0cabbd92016-04-07 11:34:43 +08001287 case CEPH_MSG_FS_MAP_USER:
Sage Weilb61c2762011-08-09 15:03:46 -07001288 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001289 if (!m)
1290 return NULL; /* ENOMEM--return skip == 0 */
Sage Weil5b3a4db2010-02-19 21:43:23 -08001291 break;
Sage Weilba75bb92009-10-06 11:31:11 -07001292 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08001293
Sage Weil5b3a4db2010-02-19 21:43:23 -08001294 if (!m) {
1295 pr_info("alloc_msg unknown type %d\n", type);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001296 *skip = 1;
Sage Weil73c3d482014-08-04 07:01:54 -07001297 } else if (front_len > m->front_alloc_len) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001298 pr_warn("mon_alloc_msg front %d > prealloc %d (%u#%llu)\n",
1299 front_len, m->front_alloc_len,
1300 (unsigned int)con->peer_name.type,
1301 le64_to_cpu(con->peer_name.num));
Sage Weil73c3d482014-08-04 07:01:54 -07001302 ceph_msg_put(m);
1303 m = ceph_msg_new(type, front_len, GFP_NOFS, false);
Sage Weil5b3a4db2010-02-19 21:43:23 -08001304 }
Sage Weil73c3d482014-08-04 07:01:54 -07001305
Yehuda Sadeh24504182010-01-08 13:58:34 -08001306 return m;
Sage Weilba75bb92009-10-06 11:31:11 -07001307}
1308
1309/*
1310 * If the monitor connection resets, pick a new monitor and resubmit
1311 * any pending requests.
1312 */
1313static void mon_fault(struct ceph_connection *con)
1314{
1315 struct ceph_mon_client *monc = con->private;
1316
Sage Weilba75bb92009-10-06 11:31:11 -07001317 mutex_lock(&monc->mutex);
Ilya Dryomovb5d91702016-01-23 15:57:51 +01001318 dout("%s mon%d\n", __func__, monc->cur_mon);
1319 if (monc->cur_mon >= 0) {
1320 if (!monc->hunting) {
1321 dout("%s hunting for new mon\n", __func__);
1322 reopen_session(monc);
1323 __schedule_delayed(monc);
1324 } else {
1325 dout("%s already hunting\n", __func__);
1326 }
Sage Weilba75bb92009-10-06 11:31:11 -07001327 }
Sage Weilba75bb92009-10-06 11:31:11 -07001328 mutex_unlock(&monc->mutex);
1329}
1330
Sage Weilec87ef42012-05-31 20:27:50 -07001331/*
1332 * We can ignore refcounting on the connection struct, as all references
1333 * will come from the messenger workqueue, which is drained prior to
1334 * mon_client destruction.
1335 */
1336static struct ceph_connection *con_get(struct ceph_connection *con)
1337{
1338 return con;
1339}
1340
1341static void con_put(struct ceph_connection *con)
1342{
1343}
1344
Tobias Klauser9e327892010-05-20 10:40:19 +02001345static const struct ceph_connection_operations mon_con_ops = {
Sage Weilec87ef42012-05-31 20:27:50 -07001346 .get = con_get,
1347 .put = con_put,
Sage Weilba75bb92009-10-06 11:31:11 -07001348 .dispatch = dispatch,
1349 .fault = mon_fault,
1350 .alloc_msg = mon_alloc_msg,
Sage Weilba75bb92009-10-06 11:31:11 -07001351};