blob: 35f593e7e36409387c6e329af3774a253e727dd5 [file] [log] [blame]
Sage Weilba75bb92009-10-06 11:31:11 -07001#include "ceph_debug.h"
2
3#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Sage Weilba75bb92009-10-06 11:31:11 -07005#include <linux/random.h>
6#include <linux/sched.h>
7
8#include "mon_client.h"
9#include "super.h"
Sage Weil4e7a5dc2009-11-18 16:19:57 -080010#include "auth.h"
Sage Weilba75bb92009-10-06 11:31:11 -070011#include "decode.h"
12
13/*
14 * Interact with Ceph monitor cluster. Handle requests for new map
15 * versions, and periodically resend as needed. Also implement
16 * statfs() and umount().
17 *
18 * A small cluster of Ceph "monitors" are responsible for managing critical
19 * cluster configuration and state information. An odd number (e.g., 3, 5)
20 * of cmon daemons use a modified version of the Paxos part-time parliament
21 * algorithm to manage the MDS map (mds cluster membership), OSD map, and
22 * list of clients who have mounted the file system.
23 *
24 * We maintain an open, active session with a monitor at all times in order to
25 * receive timely MDSMap updates. We periodically send a keepalive byte on the
26 * TCP socket to ensure we detect a failure. If the connection does break, we
27 * randomly hunt for a new monitor. Once the connection is reestablished, we
28 * resend any outstanding requests.
29 */
30
31const static struct ceph_connection_operations mon_con_ops;
32
Sage Weil9bd2e6f2010-02-02 16:21:06 -080033static int __validate_auth(struct ceph_mon_client *monc);
34
Sage Weilba75bb92009-10-06 11:31:11 -070035/*
36 * Decode a monmap blob (e.g., during mount).
37 */
38struct ceph_monmap *ceph_monmap_decode(void *p, void *end)
39{
40 struct ceph_monmap *m = NULL;
41 int i, err = -EINVAL;
42 struct ceph_fsid fsid;
43 u32 epoch, num_mon;
44 u16 version;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080045 u32 len;
46
47 ceph_decode_32_safe(&p, end, len, bad);
48 ceph_decode_need(&p, end, len, bad);
Sage Weilba75bb92009-10-06 11:31:11 -070049
50 dout("monmap_decode %p %p len %d\n", p, end, (int)(end-p));
51
52 ceph_decode_16_safe(&p, end, version, bad);
53
54 ceph_decode_need(&p, end, sizeof(fsid) + 2*sizeof(u32), bad);
55 ceph_decode_copy(&p, &fsid, sizeof(fsid));
Sage Weilc89136e2009-10-14 09:59:09 -070056 epoch = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070057
Sage Weilc89136e2009-10-14 09:59:09 -070058 num_mon = ceph_decode_32(&p);
Sage Weilba75bb92009-10-06 11:31:11 -070059 ceph_decode_need(&p, end, num_mon*sizeof(m->mon_inst[0]), bad);
60
61 if (num_mon >= CEPH_MAX_MON)
62 goto bad;
63 m = kmalloc(sizeof(*m) + sizeof(m->mon_inst[0])*num_mon, GFP_NOFS);
64 if (m == NULL)
65 return ERR_PTR(-ENOMEM);
66 m->fsid = fsid;
67 m->epoch = epoch;
68 m->num_mon = num_mon;
69 ceph_decode_copy(&p, m->mon_inst, num_mon*sizeof(m->mon_inst[0]));
Sage Weil63f2d212009-11-03 15:17:56 -080070 for (i = 0; i < num_mon; i++)
71 ceph_decode_addr(&m->mon_inst[i].addr);
Sage Weilba75bb92009-10-06 11:31:11 -070072
Sage Weilba75bb92009-10-06 11:31:11 -070073 dout("monmap_decode epoch %d, num_mon %d\n", m->epoch,
74 m->num_mon);
75 for (i = 0; i < m->num_mon; i++)
76 dout("monmap_decode mon%d is %s\n", i,
77 pr_addr(&m->mon_inst[i].addr.in_addr));
78 return m;
79
80bad:
81 dout("monmap_decode failed with %d\n", err);
82 kfree(m);
83 return ERR_PTR(err);
84}
85
86/*
87 * return true if *addr is included in the monmap.
88 */
89int ceph_monmap_contains(struct ceph_monmap *m, struct ceph_entity_addr *addr)
90{
91 int i;
92
93 for (i = 0; i < m->num_mon; i++)
Sage Weil103e2d32010-01-07 16:12:36 -080094 if (memcmp(addr, &m->mon_inst[i].addr, sizeof(*addr)) == 0)
Sage Weilba75bb92009-10-06 11:31:11 -070095 return 1;
96 return 0;
97}
98
99/*
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800100 * Send an auth request.
101 */
102static void __send_prepared_auth_request(struct ceph_mon_client *monc, int len)
103{
104 monc->pending_auth = 1;
105 monc->m_auth->front.iov_len = len;
106 monc->m_auth->hdr.front_len = cpu_to_le32(len);
107 ceph_msg_get(monc->m_auth); /* keep our ref */
108 ceph_con_send(monc->con, monc->m_auth);
109}
110
111/*
Sage Weilba75bb92009-10-06 11:31:11 -0700112 * Close monitor session, if any.
113 */
114static void __close_session(struct ceph_mon_client *monc)
115{
116 if (monc->con) {
117 dout("__close_session closing mon%d\n", monc->cur_mon);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800118 ceph_con_revoke(monc->con, monc->m_auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700119 ceph_con_close(monc->con);
120 monc->cur_mon = -1;
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800121 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800122 ceph_auth_reset(monc->auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700123 }
124}
125
126/*
127 * Open a session with a (new) monitor.
128 */
129static int __open_session(struct ceph_mon_client *monc)
130{
131 char r;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800132 int ret;
Sage Weilba75bb92009-10-06 11:31:11 -0700133
134 if (monc->cur_mon < 0) {
135 get_random_bytes(&r, 1);
136 monc->cur_mon = r % monc->monmap->num_mon;
137 dout("open_session num=%d r=%d -> mon%d\n",
138 monc->monmap->num_mon, r, monc->cur_mon);
139 monc->sub_sent = 0;
140 monc->sub_renew_after = jiffies; /* i.e., expired */
141 monc->want_next_osdmap = !!monc->want_next_osdmap;
142
143 dout("open_session mon%d opening\n", monc->cur_mon);
144 monc->con->peer_name.type = CEPH_ENTITY_TYPE_MON;
145 monc->con->peer_name.num = cpu_to_le64(monc->cur_mon);
146 ceph_con_open(monc->con,
147 &monc->monmap->mon_inst[monc->cur_mon].addr);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800148
149 /* initiatiate authentication handshake */
150 ret = ceph_auth_build_hello(monc->auth,
151 monc->m_auth->front.iov_base,
152 monc->m_auth->front_max);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800153 __send_prepared_auth_request(monc, ret);
Sage Weilba75bb92009-10-06 11:31:11 -0700154 } else {
155 dout("open_session mon%d already open\n", monc->cur_mon);
156 }
157 return 0;
158}
159
160static bool __sub_expired(struct ceph_mon_client *monc)
161{
162 return time_after_eq(jiffies, monc->sub_renew_after);
163}
164
165/*
166 * Reschedule delayed work timer.
167 */
168static void __schedule_delayed(struct ceph_mon_client *monc)
169{
170 unsigned delay;
171
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800172 if (monc->cur_mon < 0 || __sub_expired(monc))
Sage Weilba75bb92009-10-06 11:31:11 -0700173 delay = 10 * HZ;
174 else
175 delay = 20 * HZ;
176 dout("__schedule_delayed after %u\n", delay);
177 schedule_delayed_work(&monc->delayed_work, delay);
178}
179
180/*
181 * Send subscribe request for mdsmap and/or osdmap.
182 */
183static void __send_subscribe(struct ceph_mon_client *monc)
184{
185 dout("__send_subscribe sub_sent=%u exp=%u want_osd=%d\n",
186 (unsigned)monc->sub_sent, __sub_expired(monc),
187 monc->want_next_osdmap);
188 if ((__sub_expired(monc) && !monc->sub_sent) ||
189 monc->want_next_osdmap == 1) {
190 struct ceph_msg *msg;
191 struct ceph_mon_subscribe_item *i;
192 void *p, *end;
193
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800194 msg = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, 0, 0, NULL);
Sage Weilba75bb92009-10-06 11:31:11 -0700195 if (!msg)
196 return;
197
198 p = msg->front.iov_base;
199 end = p + msg->front.iov_len;
200
201 dout("__send_subscribe to 'mdsmap' %u+\n",
202 (unsigned)monc->have_mdsmap);
203 if (monc->want_next_osdmap) {
204 dout("__send_subscribe to 'osdmap' %u\n",
205 (unsigned)monc->have_osdmap);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800206 ceph_encode_32(&p, 3);
Sage Weilba75bb92009-10-06 11:31:11 -0700207 ceph_encode_string(&p, end, "osdmap", 6);
208 i = p;
209 i->have = cpu_to_le64(monc->have_osdmap);
210 i->onetime = 1;
211 p += sizeof(*i);
212 monc->want_next_osdmap = 2; /* requested */
213 } else {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800214 ceph_encode_32(&p, 2);
Sage Weilba75bb92009-10-06 11:31:11 -0700215 }
216 ceph_encode_string(&p, end, "mdsmap", 6);
217 i = p;
218 i->have = cpu_to_le64(monc->have_mdsmap);
219 i->onetime = 0;
220 p += sizeof(*i);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800221 ceph_encode_string(&p, end, "monmap", 6);
222 i = p;
223 i->have = 0;
224 i->onetime = 0;
225 p += sizeof(*i);
Sage Weilba75bb92009-10-06 11:31:11 -0700226
227 msg->front.iov_len = p - msg->front.iov_base;
228 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
229 ceph_con_send(monc->con, msg);
230
231 monc->sub_sent = jiffies | 1; /* never 0 */
232 }
233}
234
235static void handle_subscribe_ack(struct ceph_mon_client *monc,
236 struct ceph_msg *msg)
237{
238 unsigned seconds;
Sage Weil07bd10f2009-10-14 17:26:40 -0700239 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
Sage Weilba75bb92009-10-06 11:31:11 -0700240
Sage Weil07bd10f2009-10-14 17:26:40 -0700241 if (msg->front.iov_len < sizeof(*h))
242 goto bad;
243 seconds = le32_to_cpu(h->duration);
244
Sage Weilba75bb92009-10-06 11:31:11 -0700245 mutex_lock(&monc->mutex);
246 if (monc->hunting) {
247 pr_info("mon%d %s session established\n",
248 monc->cur_mon, pr_addr(&monc->con->peer_addr.in_addr));
249 monc->hunting = false;
250 }
251 dout("handle_subscribe_ack after %d seconds\n", seconds);
Sage Weil0656d112009-10-08 10:25:46 -0700252 monc->sub_renew_after = monc->sub_sent + (seconds >> 1)*HZ - 1;
Sage Weilba75bb92009-10-06 11:31:11 -0700253 monc->sub_sent = 0;
254 mutex_unlock(&monc->mutex);
255 return;
256bad:
257 pr_err("got corrupt subscribe-ack msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800258 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700259}
260
261/*
262 * Keep track of which maps we have
263 */
264int ceph_monc_got_mdsmap(struct ceph_mon_client *monc, u32 got)
265{
266 mutex_lock(&monc->mutex);
267 monc->have_mdsmap = got;
268 mutex_unlock(&monc->mutex);
269 return 0;
270}
271
272int ceph_monc_got_osdmap(struct ceph_mon_client *monc, u32 got)
273{
274 mutex_lock(&monc->mutex);
275 monc->have_osdmap = got;
276 monc->want_next_osdmap = 0;
277 mutex_unlock(&monc->mutex);
278 return 0;
279}
280
281/*
282 * Register interest in the next osdmap
283 */
284void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
285{
286 dout("request_next_osdmap have %u\n", monc->have_osdmap);
287 mutex_lock(&monc->mutex);
288 if (!monc->want_next_osdmap)
289 monc->want_next_osdmap = 1;
290 if (monc->want_next_osdmap < 2)
291 __send_subscribe(monc);
292 mutex_unlock(&monc->mutex);
293}
294
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800295/*
Sage Weil50b885b2009-12-01 14:12:07 -0800296 *
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800297 */
298int ceph_monc_open_session(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700299{
300 if (!monc->con) {
301 monc->con = kmalloc(sizeof(*monc->con), GFP_KERNEL);
302 if (!monc->con)
303 return -ENOMEM;
304 ceph_con_init(monc->client->msgr, monc->con);
305 monc->con->private = monc;
306 monc->con->ops = &mon_con_ops;
307 }
308
309 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800310 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700311 __schedule_delayed(monc);
312 mutex_unlock(&monc->mutex);
313 return 0;
314}
315
316/*
317 * The monitor responds with mount ack indicate mount success. The
318 * included client ticket allows the client to talk to MDSs and OSDs.
319 */
Sage Weil07433042009-11-18 16:50:41 -0800320static void ceph_monc_handle_map(struct ceph_mon_client *monc,
321 struct ceph_msg *msg)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800322{
323 struct ceph_client *client = monc->client;
324 struct ceph_monmap *monmap = NULL, *old = monc->monmap;
325 void *p, *end;
326
327 mutex_lock(&monc->mutex);
328
329 dout("handle_monmap\n");
330 p = msg->front.iov_base;
331 end = p + msg->front.iov_len;
332
333 monmap = ceph_monmap_decode(p, end);
334 if (IS_ERR(monmap)) {
335 pr_err("problem decoding monmap, %d\n",
336 (int)PTR_ERR(monmap));
Sage Weild4a780c2009-12-11 08:55:23 -0800337 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800338 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800339
Sage Weil07433042009-11-18 16:50:41 -0800340 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800341 kfree(monmap);
Sage Weild4a780c2009-12-11 08:55:23 -0800342 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800343 }
344
345 client->monc.monmap = monmap;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800346 kfree(old);
347
Sage Weild4a780c2009-12-11 08:55:23 -0800348out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800349 mutex_unlock(&monc->mutex);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800350 wake_up(&client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800351}
Sage Weilba75bb92009-10-06 11:31:11 -0700352
Sage Weilba75bb92009-10-06 11:31:11 -0700353/*
354 * statfs
355 */
Sage Weil85ff03f2010-02-15 14:47:28 -0800356static struct ceph_mon_statfs_request *__lookup_statfs(
357 struct ceph_mon_client *monc, u64 tid)
358{
359 struct ceph_mon_statfs_request *req;
360 struct rb_node *n = monc->statfs_request_tree.rb_node;
361
362 while (n) {
363 req = rb_entry(n, struct ceph_mon_statfs_request, node);
364 if (tid < req->tid)
365 n = n->rb_left;
366 else if (tid > req->tid)
367 n = n->rb_right;
368 else
369 return req;
370 }
371 return NULL;
372}
373
374static void __insert_statfs(struct ceph_mon_client *monc,
375 struct ceph_mon_statfs_request *new)
376{
377 struct rb_node **p = &monc->statfs_request_tree.rb_node;
378 struct rb_node *parent = NULL;
379 struct ceph_mon_statfs_request *req = NULL;
380
381 while (*p) {
382 parent = *p;
383 req = rb_entry(parent, struct ceph_mon_statfs_request, node);
384 if (new->tid < req->tid)
385 p = &(*p)->rb_left;
386 else if (new->tid > req->tid)
387 p = &(*p)->rb_right;
388 else
389 BUG();
390 }
391
392 rb_link_node(&new->node, parent, p);
393 rb_insert_color(&new->node, &monc->statfs_request_tree);
394}
395
Sage Weil3143edd2010-03-24 21:43:33 -0700396static void release_statfs_request(struct kref *kref)
397{
398 struct ceph_mon_statfs_request *req =
399 container_of(kref, struct ceph_mon_statfs_request, kref);
400
401 if (req->reply)
402 ceph_msg_put(req->reply);
403 if (req->request)
404 ceph_msg_put(req->request);
405}
406
407static void put_statfs_request(struct ceph_mon_statfs_request *req)
408{
409 kref_put(&req->kref, release_statfs_request);
410}
411
412static void get_statfs_request(struct ceph_mon_statfs_request *req)
413{
414 kref_get(&req->kref);
415}
416
417static struct ceph_msg *get_statfs_reply(struct ceph_connection *con,
418 struct ceph_msg_header *hdr,
419 int *skip)
420{
421 struct ceph_mon_client *monc = con->private;
422 struct ceph_mon_statfs_request *req;
423 u64 tid = le64_to_cpu(hdr->tid);
424 struct ceph_msg *m;
425
426 mutex_lock(&monc->mutex);
427 req = __lookup_statfs(monc, tid);
428 if (!req) {
429 dout("get_statfs_reply %lld dne\n", tid);
430 *skip = 1;
431 m = NULL;
432 } else {
433 dout("get_statfs_reply %lld got %p\n", tid, req->reply);
434 m = ceph_msg_get(req->reply);
435 /*
436 * we don't need to track the connection reading into
437 * this reply because we only have one open connection
438 * at a time, ever.
439 */
440 }
441 mutex_unlock(&monc->mutex);
442 return m;
443}
444
Sage Weilba75bb92009-10-06 11:31:11 -0700445static void handle_statfs_reply(struct ceph_mon_client *monc,
446 struct ceph_msg *msg)
447{
448 struct ceph_mon_statfs_request *req;
449 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
Sage Weil3143edd2010-03-24 21:43:33 -0700450 u64 tid = le64_to_cpu(msg->hdr.tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700451
452 if (msg->front.iov_len != sizeof(*reply))
453 goto bad;
Sage Weilba75bb92009-10-06 11:31:11 -0700454 dout("handle_statfs_reply %p tid %llu\n", msg, tid);
455
456 mutex_lock(&monc->mutex);
Sage Weil85ff03f2010-02-15 14:47:28 -0800457 req = __lookup_statfs(monc, tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700458 if (req) {
459 *req->buf = reply->st;
460 req->result = 0;
Sage Weil3143edd2010-03-24 21:43:33 -0700461 get_statfs_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700462 }
463 mutex_unlock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700464 if (req) {
Sage Weilba75bb92009-10-06 11:31:11 -0700465 complete(&req->completion);
Sage Weil3143edd2010-03-24 21:43:33 -0700466 put_statfs_request(req);
467 }
Sage Weilba75bb92009-10-06 11:31:11 -0700468 return;
469
470bad:
471 pr_err("corrupt statfs reply, no tid\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800472 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700473}
474
475/*
Sage Weilba75bb92009-10-06 11:31:11 -0700476 * Do a synchronous statfs().
477 */
478int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
479{
Sage Weil3143edd2010-03-24 21:43:33 -0700480 struct ceph_mon_statfs_request *req;
481 struct ceph_mon_statfs *h;
Sage Weilba75bb92009-10-06 11:31:11 -0700482 int err;
483
Sage Weil3143edd2010-03-24 21:43:33 -0700484 req = kmalloc(sizeof(*req), GFP_NOFS);
485 if (!req)
486 return -ENOMEM;
Sage Weilba75bb92009-10-06 11:31:11 -0700487
Sage Weil3143edd2010-03-24 21:43:33 -0700488 memset(req, 0, sizeof(*req));
489 kref_init(&req->kref);
490 req->buf = buf;
491 init_completion(&req->completion);
492
Sage Weila79832f2010-04-01 16:06:19 -0700493 err = -ENOMEM;
Sage Weil3143edd2010-03-24 21:43:33 -0700494 req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), 0, 0, NULL);
Sage Weila79832f2010-04-01 16:06:19 -0700495 if (!req->request)
Sage Weil3143edd2010-03-24 21:43:33 -0700496 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700497 req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 1024, 0, 0, NULL);
Sage Weila79832f2010-04-01 16:06:19 -0700498 if (!req->reply)
Sage Weil3143edd2010-03-24 21:43:33 -0700499 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700500
501 /* fill out request */
502 h = req->request->front.iov_base;
503 h->monhdr.have_version = 0;
504 h->monhdr.session_mon = cpu_to_le16(-1);
505 h->monhdr.session_mon_tid = 0;
506 h->fsid = monc->monmap->fsid;
Sage Weilba75bb92009-10-06 11:31:11 -0700507
508 /* register request */
509 mutex_lock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700510 req->tid = ++monc->last_tid;
511 req->request->hdr.tid = cpu_to_le64(req->tid);
512 __insert_statfs(monc, req);
Sage Weilba75bb92009-10-06 11:31:11 -0700513 monc->num_statfs_requests++;
514 mutex_unlock(&monc->mutex);
515
516 /* send request and wait */
Sage Weil3143edd2010-03-24 21:43:33 -0700517 ceph_con_send(monc->con, ceph_msg_get(req->request));
518 err = wait_for_completion_interruptible(&req->completion);
Sage Weilba75bb92009-10-06 11:31:11 -0700519
520 mutex_lock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700521 rb_erase(&req->node, &monc->statfs_request_tree);
Sage Weilba75bb92009-10-06 11:31:11 -0700522 monc->num_statfs_requests--;
Sage Weilba75bb92009-10-06 11:31:11 -0700523 mutex_unlock(&monc->mutex);
524
525 if (!err)
Sage Weil3143edd2010-03-24 21:43:33 -0700526 err = req->result;
527
528out:
529 kref_put(&req->kref, release_statfs_request);
Sage Weilba75bb92009-10-06 11:31:11 -0700530 return err;
531}
532
533/*
534 * Resend pending statfs requests.
535 */
536static void __resend_statfs(struct ceph_mon_client *monc)
537{
Sage Weilba75bb92009-10-06 11:31:11 -0700538 struct ceph_mon_statfs_request *req;
Sage Weil85ff03f2010-02-15 14:47:28 -0800539 struct rb_node *p;
Sage Weilba75bb92009-10-06 11:31:11 -0700540
Sage Weil85ff03f2010-02-15 14:47:28 -0800541 for (p = rb_first(&monc->statfs_request_tree); p; p = rb_next(p)) {
542 req = rb_entry(p, struct ceph_mon_statfs_request, node);
Sage Weil3143edd2010-03-24 21:43:33 -0700543 ceph_con_send(monc->con, ceph_msg_get(req->request));
Sage Weilba75bb92009-10-06 11:31:11 -0700544 }
545}
546
547/*
548 * Delayed work. If we haven't mounted yet, retry. Otherwise,
549 * renew/retry subscription as needed (in case it is timing out, or we
550 * got an ENOMEM). And keep the monitor connection alive.
551 */
552static void delayed_work(struct work_struct *work)
553{
554 struct ceph_mon_client *monc =
555 container_of(work, struct ceph_mon_client, delayed_work.work);
556
557 dout("monc delayed_work\n");
558 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800559 if (monc->hunting) {
560 __close_session(monc);
561 __open_session(monc); /* continue hunting */
Sage Weilba75bb92009-10-06 11:31:11 -0700562 } else {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800563 ceph_con_keepalive(monc->con);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800564
565 __validate_auth(monc);
566
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800567 if (monc->auth->ops->is_authenticated(monc->auth))
568 __send_subscribe(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700569 }
Sage Weilba75bb92009-10-06 11:31:11 -0700570 __schedule_delayed(monc);
571 mutex_unlock(&monc->mutex);
572}
573
Sage Weil6b805182009-10-27 11:50:50 -0700574/*
575 * On startup, we build a temporary monmap populated with the IPs
576 * provided by mount(2).
577 */
578static int build_initial_monmap(struct ceph_mon_client *monc)
579{
580 struct ceph_mount_args *args = monc->client->mount_args;
581 struct ceph_entity_addr *mon_addr = args->mon_addr;
582 int num_mon = args->num_mon;
583 int i;
584
585 /* build initial monmap */
586 monc->monmap = kzalloc(sizeof(*monc->monmap) +
587 num_mon*sizeof(monc->monmap->mon_inst[0]),
588 GFP_KERNEL);
589 if (!monc->monmap)
590 return -ENOMEM;
591 for (i = 0; i < num_mon; i++) {
592 monc->monmap->mon_inst[i].addr = mon_addr[i];
Sage Weil6b805182009-10-27 11:50:50 -0700593 monc->monmap->mon_inst[i].addr.nonce = 0;
594 monc->monmap->mon_inst[i].name.type =
595 CEPH_ENTITY_TYPE_MON;
596 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
597 }
598 monc->monmap->num_mon = num_mon;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800599 monc->have_fsid = false;
Sage Weil6b805182009-10-27 11:50:50 -0700600
601 /* release addr memory */
602 kfree(args->mon_addr);
603 args->mon_addr = NULL;
604 args->num_mon = 0;
605 return 0;
606}
607
Sage Weilba75bb92009-10-06 11:31:11 -0700608int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
609{
610 int err = 0;
611
612 dout("init\n");
613 memset(monc, 0, sizeof(*monc));
614 monc->client = cl;
615 monc->monmap = NULL;
616 mutex_init(&monc->mutex);
617
Sage Weil6b805182009-10-27 11:50:50 -0700618 err = build_initial_monmap(monc);
619 if (err)
620 goto out;
621
Sage Weilba75bb92009-10-06 11:31:11 -0700622 monc->con = NULL;
623
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800624 /* authentication */
625 monc->auth = ceph_auth_init(cl->mount_args->name,
626 cl->mount_args->secret);
627 if (IS_ERR(monc->auth))
628 return PTR_ERR(monc->auth);
629 monc->auth->want_keys =
630 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
631 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
632
Sage Weilba75bb92009-10-06 11:31:11 -0700633 /* msg pools */
Sage Weila79832f2010-04-01 16:06:19 -0700634 err = -ENOMEM;
Sage Weil7c315c52010-03-24 21:52:30 -0700635 monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
636 sizeof(struct ceph_mon_subscribe_ack),
637 0, 0, NULL);
Sage Weila79832f2010-04-01 16:06:19 -0700638 if (!monc->m_subscribe_ack)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800639 goto out_monmap;
Sage Weil6694d6b2010-03-24 21:48:05 -0700640
641 monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096, 0, 0,
642 NULL);
Sage Weila79832f2010-04-01 16:06:19 -0700643 if (!monc->m_auth_reply)
Sage Weil7c315c52010-03-24 21:52:30 -0700644 goto out_subscribe_ack;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800645
646 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, 0, 0, NULL);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800647 monc->pending_auth = 0;
Sage Weila79832f2010-04-01 16:06:19 -0700648 if (!monc->m_auth)
Sage Weil6694d6b2010-03-24 21:48:05 -0700649 goto out_auth_reply;
Sage Weilba75bb92009-10-06 11:31:11 -0700650
651 monc->cur_mon = -1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800652 monc->hunting = true;
Sage Weilba75bb92009-10-06 11:31:11 -0700653 monc->sub_renew_after = jiffies;
654 monc->sub_sent = 0;
655
656 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
Sage Weil85ff03f2010-02-15 14:47:28 -0800657 monc->statfs_request_tree = RB_ROOT;
Sage Weilba75bb92009-10-06 11:31:11 -0700658 monc->num_statfs_requests = 0;
659 monc->last_tid = 0;
660
661 monc->have_mdsmap = 0;
662 monc->have_osdmap = 0;
663 monc->want_next_osdmap = 1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800664 return 0;
665
Sage Weil6694d6b2010-03-24 21:48:05 -0700666out_auth_reply:
667 ceph_msg_put(monc->m_auth_reply);
Sage Weil7c315c52010-03-24 21:52:30 -0700668out_subscribe_ack:
669 ceph_msg_put(monc->m_subscribe_ack);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800670out_monmap:
671 kfree(monc->monmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700672out:
673 return err;
674}
675
676void ceph_monc_stop(struct ceph_mon_client *monc)
677{
678 dout("stop\n");
679 cancel_delayed_work_sync(&monc->delayed_work);
680
681 mutex_lock(&monc->mutex);
682 __close_session(monc);
683 if (monc->con) {
684 monc->con->private = NULL;
685 monc->con->ops->put(monc->con);
686 monc->con = NULL;
687 }
688 mutex_unlock(&monc->mutex);
689
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800690 ceph_auth_destroy(monc->auth);
691
692 ceph_msg_put(monc->m_auth);
Sage Weil6694d6b2010-03-24 21:48:05 -0700693 ceph_msg_put(monc->m_auth_reply);
Sage Weil7c315c52010-03-24 21:52:30 -0700694 ceph_msg_put(monc->m_subscribe_ack);
Sage Weilba75bb92009-10-06 11:31:11 -0700695
696 kfree(monc->monmap);
697}
698
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800699static void handle_auth_reply(struct ceph_mon_client *monc,
700 struct ceph_msg *msg)
701{
702 int ret;
703
704 mutex_lock(&monc->mutex);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800705 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800706 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
707 msg->front.iov_len,
708 monc->m_auth->front.iov_base,
709 monc->m_auth->front_max);
710 if (ret < 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800711 monc->client->auth_err = ret;
712 wake_up(&monc->client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800713 } else if (ret > 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800714 __send_prepared_auth_request(monc, ret);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800715 } else if (monc->auth->ops->is_authenticated(monc->auth)) {
716 dout("authenticated, starting session\n");
Sage Weil07433042009-11-18 16:50:41 -0800717
718 monc->client->msgr->inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
719 monc->client->msgr->inst.name.num = monc->auth->global_id;
720
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800721 __send_subscribe(monc);
722 __resend_statfs(monc);
723 }
724 mutex_unlock(&monc->mutex);
725}
726
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800727static int __validate_auth(struct ceph_mon_client *monc)
728{
729 int ret;
730
731 if (monc->pending_auth)
732 return 0;
733
734 ret = ceph_build_auth(monc->auth, monc->m_auth->front.iov_base,
735 monc->m_auth->front_max);
736 if (ret <= 0)
737 return ret; /* either an error, or no need to authenticate */
738 __send_prepared_auth_request(monc, ret);
739 return 0;
740}
741
742int ceph_monc_validate_auth(struct ceph_mon_client *monc)
743{
744 int ret;
745
746 mutex_lock(&monc->mutex);
747 ret = __validate_auth(monc);
748 mutex_unlock(&monc->mutex);
749 return ret;
750}
751
Sage Weilba75bb92009-10-06 11:31:11 -0700752/*
753 * handle incoming message
754 */
755static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
756{
757 struct ceph_mon_client *monc = con->private;
758 int type = le16_to_cpu(msg->hdr.type);
759
760 if (!monc)
761 return;
762
763 switch (type) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800764 case CEPH_MSG_AUTH_REPLY:
765 handle_auth_reply(monc, msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700766 break;
767
768 case CEPH_MSG_MON_SUBSCRIBE_ACK:
769 handle_subscribe_ack(monc, msg);
770 break;
771
772 case CEPH_MSG_STATFS_REPLY:
773 handle_statfs_reply(monc, msg);
774 break;
775
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800776 case CEPH_MSG_MON_MAP:
777 ceph_monc_handle_map(monc, msg);
778 break;
779
Sage Weilba75bb92009-10-06 11:31:11 -0700780 case CEPH_MSG_MDS_MAP:
781 ceph_mdsc_handle_map(&monc->client->mdsc, msg);
782 break;
783
784 case CEPH_MSG_OSD_MAP:
785 ceph_osdc_handle_map(&monc->client->osdc, msg);
786 break;
787
788 default:
789 pr_err("received unknown message type %d %s\n", type,
790 ceph_msg_type_name(type));
791 }
792 ceph_msg_put(msg);
793}
794
795/*
796 * Allocate memory for incoming message
797 */
798static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -0800799 struct ceph_msg_header *hdr,
800 int *skip)
Sage Weilba75bb92009-10-06 11:31:11 -0700801{
802 struct ceph_mon_client *monc = con->private;
803 int type = le16_to_cpu(hdr->type);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800804 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -0800805 struct ceph_msg *m = NULL;
Sage Weilba75bb92009-10-06 11:31:11 -0700806
Yehuda Sadeh24504182010-01-08 13:58:34 -0800807 *skip = 0;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -0800808
Sage Weilba75bb92009-10-06 11:31:11 -0700809 switch (type) {
Sage Weilba75bb92009-10-06 11:31:11 -0700810 case CEPH_MSG_MON_SUBSCRIBE_ACK:
Sage Weil7c315c52010-03-24 21:52:30 -0700811 m = ceph_msg_get(monc->m_subscribe_ack);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800812 break;
Sage Weilba75bb92009-10-06 11:31:11 -0700813 case CEPH_MSG_STATFS_REPLY:
Sage Weil3143edd2010-03-24 21:43:33 -0700814 return get_statfs_reply(con, hdr, skip);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800815 case CEPH_MSG_AUTH_REPLY:
Sage Weil6694d6b2010-03-24 21:48:05 -0700816 m = ceph_msg_get(monc->m_auth_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800817 break;
Sage Weil5b3a4db2010-02-19 21:43:23 -0800818 case CEPH_MSG_MON_MAP:
819 case CEPH_MSG_MDS_MAP:
820 case CEPH_MSG_OSD_MAP:
821 m = ceph_msg_new(type, front_len, 0, 0, NULL);
822 break;
Sage Weilba75bb92009-10-06 11:31:11 -0700823 }
Yehuda Sadeh24504182010-01-08 13:58:34 -0800824
Sage Weil5b3a4db2010-02-19 21:43:23 -0800825 if (!m) {
826 pr_info("alloc_msg unknown type %d\n", type);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800827 *skip = 1;
Sage Weil5b3a4db2010-02-19 21:43:23 -0800828 }
Yehuda Sadeh24504182010-01-08 13:58:34 -0800829 return m;
Sage Weilba75bb92009-10-06 11:31:11 -0700830}
831
832/*
833 * If the monitor connection resets, pick a new monitor and resubmit
834 * any pending requests.
835 */
836static void mon_fault(struct ceph_connection *con)
837{
838 struct ceph_mon_client *monc = con->private;
839
840 if (!monc)
841 return;
842
843 dout("mon_fault\n");
844 mutex_lock(&monc->mutex);
845 if (!con->private)
846 goto out;
847
848 if (monc->con && !monc->hunting)
849 pr_info("mon%d %s session lost, "
850 "hunting for new mon\n", monc->cur_mon,
851 pr_addr(&monc->con->peer_addr.in_addr));
852
853 __close_session(monc);
854 if (!monc->hunting) {
855 /* start hunting */
856 monc->hunting = true;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800857 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700858 } else {
859 /* already hunting, let's wait a bit */
860 __schedule_delayed(monc);
861 }
862out:
863 mutex_unlock(&monc->mutex);
864}
865
866const static struct ceph_connection_operations mon_con_ops = {
867 .get = ceph_con_get,
868 .put = ceph_con_put,
869 .dispatch = dispatch,
870 .fault = mon_fault,
871 .alloc_msg = mon_alloc_msg,
Sage Weilba75bb92009-10-06 11:31:11 -0700872};