blob: b2a5a3e4a671c336fc7495d473792ddc25f71110 [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
Tobias Klauser9e327892010-05-20 10:40:19 +020031static const struct ceph_connection_operations mon_con_ops;
Sage Weilba75bb92009-10-06 11:31:11 -070032
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);
Sage Weil97069002010-05-21 12:31:49 -0700107 ceph_con_revoke(monc->con, monc->m_auth);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800108 ceph_msg_get(monc->m_auth); /* keep our ref */
109 ceph_con_send(monc->con, monc->m_auth);
110}
111
112/*
Sage Weilba75bb92009-10-06 11:31:11 -0700113 * Close monitor session, if any.
114 */
115static void __close_session(struct ceph_mon_client *monc)
116{
117 if (monc->con) {
118 dout("__close_session closing mon%d\n", monc->cur_mon);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800119 ceph_con_revoke(monc->con, monc->m_auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700120 ceph_con_close(monc->con);
121 monc->cur_mon = -1;
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800122 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800123 ceph_auth_reset(monc->auth);
Sage Weilba75bb92009-10-06 11:31:11 -0700124 }
125}
126
127/*
128 * Open a session with a (new) monitor.
129 */
130static int __open_session(struct ceph_mon_client *monc)
131{
132 char r;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800133 int ret;
Sage Weilba75bb92009-10-06 11:31:11 -0700134
135 if (monc->cur_mon < 0) {
136 get_random_bytes(&r, 1);
137 monc->cur_mon = r % monc->monmap->num_mon;
138 dout("open_session num=%d r=%d -> mon%d\n",
139 monc->monmap->num_mon, r, monc->cur_mon);
140 monc->sub_sent = 0;
141 monc->sub_renew_after = jiffies; /* i.e., expired */
142 monc->want_next_osdmap = !!monc->want_next_osdmap;
143
144 dout("open_session mon%d opening\n", monc->cur_mon);
145 monc->con->peer_name.type = CEPH_ENTITY_TYPE_MON;
146 monc->con->peer_name.num = cpu_to_le64(monc->cur_mon);
147 ceph_con_open(monc->con,
148 &monc->monmap->mon_inst[monc->cur_mon].addr);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800149
150 /* initiatiate authentication handshake */
151 ret = ceph_auth_build_hello(monc->auth,
152 monc->m_auth->front.iov_base,
153 monc->m_auth->front_max);
Sage Weil5ce6e9d2010-02-15 16:22:28 -0800154 __send_prepared_auth_request(monc, ret);
Sage Weilba75bb92009-10-06 11:31:11 -0700155 } else {
156 dout("open_session mon%d already open\n", monc->cur_mon);
157 }
158 return 0;
159}
160
161static bool __sub_expired(struct ceph_mon_client *monc)
162{
163 return time_after_eq(jiffies, monc->sub_renew_after);
164}
165
166/*
167 * Reschedule delayed work timer.
168 */
169static void __schedule_delayed(struct ceph_mon_client *monc)
170{
171 unsigned delay;
172
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800173 if (monc->cur_mon < 0 || __sub_expired(monc))
Sage Weilba75bb92009-10-06 11:31:11 -0700174 delay = 10 * HZ;
175 else
176 delay = 20 * HZ;
177 dout("__schedule_delayed after %u\n", delay);
178 schedule_delayed_work(&monc->delayed_work, delay);
179}
180
181/*
182 * Send subscribe request for mdsmap and/or osdmap.
183 */
184static void __send_subscribe(struct ceph_mon_client *monc)
185{
186 dout("__send_subscribe sub_sent=%u exp=%u want_osd=%d\n",
187 (unsigned)monc->sub_sent, __sub_expired(monc),
188 monc->want_next_osdmap);
189 if ((__sub_expired(monc) && !monc->sub_sent) ||
190 monc->want_next_osdmap == 1) {
Sage Weil240ed682010-05-21 14:57:25 -0700191 struct ceph_msg *msg = monc->m_subscribe;
Sage Weilba75bb92009-10-06 11:31:11 -0700192 struct ceph_mon_subscribe_item *i;
193 void *p, *end;
194
Sage Weilba75bb92009-10-06 11:31:11 -0700195 p = msg->front.iov_base;
Sage Weil240ed682010-05-21 14:57:25 -0700196 end = p + msg->front_max;
Sage Weilba75bb92009-10-06 11:31:11 -0700197
198 dout("__send_subscribe to 'mdsmap' %u+\n",
199 (unsigned)monc->have_mdsmap);
200 if (monc->want_next_osdmap) {
201 dout("__send_subscribe to 'osdmap' %u\n",
202 (unsigned)monc->have_osdmap);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800203 ceph_encode_32(&p, 3);
Sage Weilba75bb92009-10-06 11:31:11 -0700204 ceph_encode_string(&p, end, "osdmap", 6);
205 i = p;
206 i->have = cpu_to_le64(monc->have_osdmap);
207 i->onetime = 1;
208 p += sizeof(*i);
209 monc->want_next_osdmap = 2; /* requested */
210 } else {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800211 ceph_encode_32(&p, 2);
Sage Weilba75bb92009-10-06 11:31:11 -0700212 }
213 ceph_encode_string(&p, end, "mdsmap", 6);
214 i = p;
215 i->have = cpu_to_le64(monc->have_mdsmap);
216 i->onetime = 0;
217 p += sizeof(*i);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800218 ceph_encode_string(&p, end, "monmap", 6);
219 i = p;
220 i->have = 0;
221 i->onetime = 0;
222 p += sizeof(*i);
Sage Weilba75bb92009-10-06 11:31:11 -0700223
224 msg->front.iov_len = p - msg->front.iov_base;
225 msg->hdr.front_len = cpu_to_le32(msg->front.iov_len);
Sage Weil240ed682010-05-21 14:57:25 -0700226 ceph_con_revoke(monc->con, msg);
227 ceph_con_send(monc->con, ceph_msg_get(msg));
Sage Weilba75bb92009-10-06 11:31:11 -0700228
229 monc->sub_sent = jiffies | 1; /* never 0 */
230 }
231}
232
233static void handle_subscribe_ack(struct ceph_mon_client *monc,
234 struct ceph_msg *msg)
235{
236 unsigned seconds;
Sage Weil07bd10f2009-10-14 17:26:40 -0700237 struct ceph_mon_subscribe_ack *h = msg->front.iov_base;
Sage Weilba75bb92009-10-06 11:31:11 -0700238
Sage Weil07bd10f2009-10-14 17:26:40 -0700239 if (msg->front.iov_len < sizeof(*h))
240 goto bad;
241 seconds = le32_to_cpu(h->duration);
242
Sage Weilba75bb92009-10-06 11:31:11 -0700243 mutex_lock(&monc->mutex);
244 if (monc->hunting) {
245 pr_info("mon%d %s session established\n",
246 monc->cur_mon, pr_addr(&monc->con->peer_addr.in_addr));
247 monc->hunting = false;
248 }
249 dout("handle_subscribe_ack after %d seconds\n", seconds);
Sage Weil0656d112009-10-08 10:25:46 -0700250 monc->sub_renew_after = monc->sub_sent + (seconds >> 1)*HZ - 1;
Sage Weilba75bb92009-10-06 11:31:11 -0700251 monc->sub_sent = 0;
252 mutex_unlock(&monc->mutex);
253 return;
254bad:
255 pr_err("got corrupt subscribe-ack msg\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -0800256 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700257}
258
259/*
260 * Keep track of which maps we have
261 */
262int ceph_monc_got_mdsmap(struct ceph_mon_client *monc, u32 got)
263{
264 mutex_lock(&monc->mutex);
265 monc->have_mdsmap = got;
266 mutex_unlock(&monc->mutex);
267 return 0;
268}
269
270int ceph_monc_got_osdmap(struct ceph_mon_client *monc, u32 got)
271{
272 mutex_lock(&monc->mutex);
273 monc->have_osdmap = got;
274 monc->want_next_osdmap = 0;
275 mutex_unlock(&monc->mutex);
276 return 0;
277}
278
279/*
280 * Register interest in the next osdmap
281 */
282void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc)
283{
284 dout("request_next_osdmap have %u\n", monc->have_osdmap);
285 mutex_lock(&monc->mutex);
286 if (!monc->want_next_osdmap)
287 monc->want_next_osdmap = 1;
288 if (monc->want_next_osdmap < 2)
289 __send_subscribe(monc);
290 mutex_unlock(&monc->mutex);
291}
292
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800293/*
Sage Weil50b885b2009-12-01 14:12:07 -0800294 *
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800295 */
296int ceph_monc_open_session(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700297{
298 if (!monc->con) {
299 monc->con = kmalloc(sizeof(*monc->con), GFP_KERNEL);
300 if (!monc->con)
301 return -ENOMEM;
302 ceph_con_init(monc->client->msgr, monc->con);
303 monc->con->private = monc;
304 monc->con->ops = &mon_con_ops;
305 }
306
307 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800308 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700309 __schedule_delayed(monc);
310 mutex_unlock(&monc->mutex);
311 return 0;
312}
313
314/*
315 * The monitor responds with mount ack indicate mount success. The
316 * included client ticket allows the client to talk to MDSs and OSDs.
317 */
Sage Weil07433042009-11-18 16:50:41 -0800318static void ceph_monc_handle_map(struct ceph_mon_client *monc,
319 struct ceph_msg *msg)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800320{
321 struct ceph_client *client = monc->client;
322 struct ceph_monmap *monmap = NULL, *old = monc->monmap;
323 void *p, *end;
324
325 mutex_lock(&monc->mutex);
326
327 dout("handle_monmap\n");
328 p = msg->front.iov_base;
329 end = p + msg->front.iov_len;
330
331 monmap = ceph_monmap_decode(p, end);
332 if (IS_ERR(monmap)) {
333 pr_err("problem decoding monmap, %d\n",
334 (int)PTR_ERR(monmap));
Sage Weild4a780c2009-12-11 08:55:23 -0800335 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800336 }
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800337
Sage Weil07433042009-11-18 16:50:41 -0800338 if (ceph_check_fsid(monc->client, &monmap->fsid) < 0) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800339 kfree(monmap);
Sage Weild4a780c2009-12-11 08:55:23 -0800340 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800341 }
342
343 client->monc.monmap = monmap;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800344 kfree(old);
345
Sage Weild4a780c2009-12-11 08:55:23 -0800346out:
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800347 mutex_unlock(&monc->mutex);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700348 wake_up_all(&client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800349}
Sage Weilba75bb92009-10-06 11:31:11 -0700350
Sage Weilba75bb92009-10-06 11:31:11 -0700351/*
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700352 * generic requests (e.g., statfs, poolop)
Sage Weilba75bb92009-10-06 11:31:11 -0700353 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700354static struct ceph_mon_generic_request *__lookup_generic_req(
Sage Weil85ff03f2010-02-15 14:47:28 -0800355 struct ceph_mon_client *monc, u64 tid)
356{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700357 struct ceph_mon_generic_request *req;
358 struct rb_node *n = monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800359
360 while (n) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700361 req = rb_entry(n, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800362 if (tid < req->tid)
363 n = n->rb_left;
364 else if (tid > req->tid)
365 n = n->rb_right;
366 else
367 return req;
368 }
369 return NULL;
370}
371
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700372static void __insert_generic_request(struct ceph_mon_client *monc,
373 struct ceph_mon_generic_request *new)
Sage Weil85ff03f2010-02-15 14:47:28 -0800374{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700375 struct rb_node **p = &monc->generic_request_tree.rb_node;
Sage Weil85ff03f2010-02-15 14:47:28 -0800376 struct rb_node *parent = NULL;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700377 struct ceph_mon_generic_request *req = NULL;
Sage Weil85ff03f2010-02-15 14:47:28 -0800378
379 while (*p) {
380 parent = *p;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700381 req = rb_entry(parent, struct ceph_mon_generic_request, node);
Sage Weil85ff03f2010-02-15 14:47:28 -0800382 if (new->tid < req->tid)
383 p = &(*p)->rb_left;
384 else if (new->tid > req->tid)
385 p = &(*p)->rb_right;
386 else
387 BUG();
388 }
389
390 rb_link_node(&new->node, parent, p);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700391 rb_insert_color(&new->node, &monc->generic_request_tree);
Sage Weil85ff03f2010-02-15 14:47:28 -0800392}
393
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700394static void release_generic_request(struct kref *kref)
Sage Weil3143edd2010-03-24 21:43:33 -0700395{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700396 struct ceph_mon_generic_request *req =
397 container_of(kref, struct ceph_mon_generic_request, kref);
Sage Weil3143edd2010-03-24 21:43:33 -0700398
399 if (req->reply)
400 ceph_msg_put(req->reply);
401 if (req->request)
402 ceph_msg_put(req->request);
Yehuda Sadeh20547562010-06-01 10:37:40 -0700403
404 kfree(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700405}
406
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700407static void put_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700408{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700409 kref_put(&req->kref, release_generic_request);
Sage Weil3143edd2010-03-24 21:43:33 -0700410}
411
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700412static void get_generic_request(struct ceph_mon_generic_request *req)
Sage Weil3143edd2010-03-24 21:43:33 -0700413{
414 kref_get(&req->kref);
415}
416
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700417static struct ceph_msg *get_generic_reply(struct ceph_connection *con,
Sage Weil3143edd2010-03-24 21:43:33 -0700418 struct ceph_msg_header *hdr,
419 int *skip)
420{
421 struct ceph_mon_client *monc = con->private;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700422 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700423 u64 tid = le64_to_cpu(hdr->tid);
424 struct ceph_msg *m;
425
426 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700427 req = __lookup_generic_req(monc, tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700428 if (!req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700429 dout("get_generic_reply %lld dne\n", tid);
Sage Weil3143edd2010-03-24 21:43:33 -0700430 *skip = 1;
431 m = NULL;
432 } else {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700433 dout("get_generic_reply %lld got %p\n", tid, req->reply);
Sage Weil3143edd2010-03-24 21:43:33 -0700434 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
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700445static int do_generic_request(struct ceph_mon_client *monc,
446 struct ceph_mon_generic_request *req)
447{
448 int err;
449
450 /* register request */
451 mutex_lock(&monc->mutex);
452 req->tid = ++monc->last_tid;
453 req->request->hdr.tid = cpu_to_le64(req->tid);
454 __insert_generic_request(monc, req);
455 monc->num_generic_requests++;
456 ceph_con_send(monc->con, ceph_msg_get(req->request));
457 mutex_unlock(&monc->mutex);
458
459 err = wait_for_completion_interruptible(&req->completion);
460
461 mutex_lock(&monc->mutex);
462 rb_erase(&req->node, &monc->generic_request_tree);
463 monc->num_generic_requests--;
464 mutex_unlock(&monc->mutex);
465
466 if (!err)
467 err = req->result;
468 return err;
469}
470
471/*
472 * statfs
473 */
Sage Weilba75bb92009-10-06 11:31:11 -0700474static void handle_statfs_reply(struct ceph_mon_client *monc,
475 struct ceph_msg *msg)
476{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700477 struct ceph_mon_generic_request *req;
Sage Weilba75bb92009-10-06 11:31:11 -0700478 struct ceph_mon_statfs_reply *reply = msg->front.iov_base;
Sage Weil3143edd2010-03-24 21:43:33 -0700479 u64 tid = le64_to_cpu(msg->hdr.tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700480
481 if (msg->front.iov_len != sizeof(*reply))
482 goto bad;
Sage Weilba75bb92009-10-06 11:31:11 -0700483 dout("handle_statfs_reply %p tid %llu\n", msg, tid);
484
485 mutex_lock(&monc->mutex);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700486 req = __lookup_generic_req(monc, tid);
Sage Weilba75bb92009-10-06 11:31:11 -0700487 if (req) {
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700488 *(struct ceph_statfs *)req->buf = reply->st;
Sage Weilba75bb92009-10-06 11:31:11 -0700489 req->result = 0;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700490 get_generic_request(req);
Sage Weilba75bb92009-10-06 11:31:11 -0700491 }
492 mutex_unlock(&monc->mutex);
Sage Weil3143edd2010-03-24 21:43:33 -0700493 if (req) {
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700494 complete_all(&req->completion);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700495 put_generic_request(req);
Sage Weil3143edd2010-03-24 21:43:33 -0700496 }
Sage Weilba75bb92009-10-06 11:31:11 -0700497 return;
498
499bad:
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700500 pr_err("corrupt generic reply, tid %llu\n", tid);
Sage Weil9ec7cab2009-12-14 15:13:47 -0800501 ceph_msg_dump(msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700502}
503
504/*
Sage Weilba75bb92009-10-06 11:31:11 -0700505 * Do a synchronous statfs().
506 */
507int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
508{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700509 struct ceph_mon_generic_request *req;
Sage Weil3143edd2010-03-24 21:43:33 -0700510 struct ceph_mon_statfs *h;
Sage Weilba75bb92009-10-06 11:31:11 -0700511 int err;
512
Julia Lawallcffe7b62010-05-13 22:07:29 +0200513 req = kzalloc(sizeof(*req), GFP_NOFS);
Sage Weil3143edd2010-03-24 21:43:33 -0700514 if (!req)
515 return -ENOMEM;
Sage Weilba75bb92009-10-06 11:31:11 -0700516
Sage Weil3143edd2010-03-24 21:43:33 -0700517 kref_init(&req->kref);
518 req->buf = buf;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700519 req->buf_len = sizeof(*buf);
Sage Weil3143edd2010-03-24 21:43:33 -0700520 init_completion(&req->completion);
521
Sage Weila79832f2010-04-01 16:06:19 -0700522 err = -ENOMEM;
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700523 req->request = ceph_msg_new(CEPH_MSG_STATFS, sizeof(*h), GFP_NOFS);
Sage Weila79832f2010-04-01 16:06:19 -0700524 if (!req->request)
Sage Weil3143edd2010-03-24 21:43:33 -0700525 goto out;
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700526 req->reply = ceph_msg_new(CEPH_MSG_STATFS_REPLY, 1024, GFP_NOFS);
Sage Weila79832f2010-04-01 16:06:19 -0700527 if (!req->reply)
Sage Weil3143edd2010-03-24 21:43:33 -0700528 goto out;
Sage Weil3143edd2010-03-24 21:43:33 -0700529
530 /* fill out request */
531 h = req->request->front.iov_base;
532 h->monhdr.have_version = 0;
533 h->monhdr.session_mon = cpu_to_le16(-1);
534 h->monhdr.session_mon_tid = 0;
535 h->fsid = monc->monmap->fsid;
Sage Weilba75bb92009-10-06 11:31:11 -0700536
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700537 err = do_generic_request(monc, req);
Sage Weil3143edd2010-03-24 21:43:33 -0700538
539out:
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700540 kref_put(&req->kref, release_generic_request);
Sage Weilba75bb92009-10-06 11:31:11 -0700541 return err;
542}
543
544/*
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700545 * pool ops
546 */
547static int get_poolop_reply_buf(const char *src, size_t src_len,
548 char *dst, size_t dst_len)
549{
550 u32 buf_len;
551
552 if (src_len != sizeof(u32) + dst_len)
553 return -EINVAL;
554
555 buf_len = le32_to_cpu(*(u32 *)src);
556 if (buf_len != dst_len)
557 return -EINVAL;
558
559 memcpy(dst, src + sizeof(u32), dst_len);
560 return 0;
561}
562
563static void handle_poolop_reply(struct ceph_mon_client *monc,
564 struct ceph_msg *msg)
565{
566 struct ceph_mon_generic_request *req;
567 struct ceph_mon_poolop_reply *reply = msg->front.iov_base;
568 u64 tid = le64_to_cpu(msg->hdr.tid);
569
570 if (msg->front.iov_len < sizeof(*reply))
571 goto bad;
572 dout("handle_poolop_reply %p tid %llu\n", msg, tid);
573
574 mutex_lock(&monc->mutex);
575 req = __lookup_generic_req(monc, tid);
576 if (req) {
577 if (req->buf_len &&
578 get_poolop_reply_buf(msg->front.iov_base + sizeof(*reply),
579 msg->front.iov_len - sizeof(*reply),
580 req->buf, req->buf_len) < 0) {
581 mutex_unlock(&monc->mutex);
582 goto bad;
583 }
584 req->result = le32_to_cpu(reply->reply_code);
585 get_generic_request(req);
586 }
587 mutex_unlock(&monc->mutex);
588 if (req) {
589 complete(&req->completion);
590 put_generic_request(req);
591 }
592 return;
593
594bad:
595 pr_err("corrupt generic reply, tid %llu\n", tid);
596 ceph_msg_dump(msg);
597}
598
599/*
600 * Do a synchronous pool op.
601 */
602int ceph_monc_do_poolop(struct ceph_mon_client *monc, u32 op,
603 u32 pool, u64 snapid,
604 char *buf, int len)
605{
606 struct ceph_mon_generic_request *req;
607 struct ceph_mon_poolop *h;
608 int err;
609
610 req = kzalloc(sizeof(*req), GFP_NOFS);
611 if (!req)
612 return -ENOMEM;
613
614 kref_init(&req->kref);
615 req->buf = buf;
616 req->buf_len = len;
617 init_completion(&req->completion);
618
619 err = -ENOMEM;
620 req->request = ceph_msg_new(CEPH_MSG_POOLOP, sizeof(*h), GFP_NOFS);
621 if (!req->request)
622 goto out;
623 req->reply = ceph_msg_new(CEPH_MSG_POOLOP_REPLY, 1024, GFP_NOFS);
624 if (!req->reply)
625 goto out;
626
627 /* fill out request */
628 req->request->hdr.version = cpu_to_le16(2);
629 h = req->request->front.iov_base;
630 h->monhdr.have_version = 0;
631 h->monhdr.session_mon = cpu_to_le16(-1);
632 h->monhdr.session_mon_tid = 0;
633 h->fsid = monc->monmap->fsid;
634 h->pool = cpu_to_le32(pool);
635 h->op = cpu_to_le32(op);
636 h->auid = 0;
637 h->snapid = cpu_to_le64(snapid);
638 h->name_len = 0;
639
640 err = do_generic_request(monc, req);
641
642out:
643 kref_put(&req->kref, release_generic_request);
644 return err;
645}
646
647int ceph_monc_create_snapid(struct ceph_mon_client *monc,
648 u32 pool, u64 *snapid)
649{
650 return ceph_monc_do_poolop(monc, POOL_OP_CREATE_UNMANAGED_SNAP,
651 pool, 0, (char *)snapid, sizeof(*snapid));
652
653}
654
655int ceph_monc_delete_snapid(struct ceph_mon_client *monc,
656 u32 pool, u64 snapid)
657{
658 return ceph_monc_do_poolop(monc, POOL_OP_CREATE_UNMANAGED_SNAP,
659 pool, snapid, 0, 0);
660
661}
662
663/*
664 * Resend pending generic requests.
Sage Weilba75bb92009-10-06 11:31:11 -0700665 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700666static void __resend_generic_request(struct ceph_mon_client *monc)
Sage Weilba75bb92009-10-06 11:31:11 -0700667{
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700668 struct ceph_mon_generic_request *req;
Sage Weil85ff03f2010-02-15 14:47:28 -0800669 struct rb_node *p;
Sage Weilba75bb92009-10-06 11:31:11 -0700670
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700671 for (p = rb_first(&monc->generic_request_tree); p; p = rb_next(p)) {
672 req = rb_entry(p, struct ceph_mon_generic_request, node);
Sage Weil97069002010-05-21 12:31:49 -0700673 ceph_con_revoke(monc->con, req->request);
Sage Weil3143edd2010-03-24 21:43:33 -0700674 ceph_con_send(monc->con, ceph_msg_get(req->request));
Sage Weilba75bb92009-10-06 11:31:11 -0700675 }
676}
677
678/*
679 * Delayed work. If we haven't mounted yet, retry. Otherwise,
680 * renew/retry subscription as needed (in case it is timing out, or we
681 * got an ENOMEM). And keep the monitor connection alive.
682 */
683static void delayed_work(struct work_struct *work)
684{
685 struct ceph_mon_client *monc =
686 container_of(work, struct ceph_mon_client, delayed_work.work);
687
688 dout("monc delayed_work\n");
689 mutex_lock(&monc->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800690 if (monc->hunting) {
691 __close_session(monc);
692 __open_session(monc); /* continue hunting */
Sage Weilba75bb92009-10-06 11:31:11 -0700693 } else {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800694 ceph_con_keepalive(monc->con);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800695
696 __validate_auth(monc);
697
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800698 if (monc->auth->ops->is_authenticated(monc->auth))
699 __send_subscribe(monc);
Sage Weilba75bb92009-10-06 11:31:11 -0700700 }
Sage Weilba75bb92009-10-06 11:31:11 -0700701 __schedule_delayed(monc);
702 mutex_unlock(&monc->mutex);
703}
704
Sage Weil6b805182009-10-27 11:50:50 -0700705/*
706 * On startup, we build a temporary monmap populated with the IPs
707 * provided by mount(2).
708 */
709static int build_initial_monmap(struct ceph_mon_client *monc)
710{
711 struct ceph_mount_args *args = monc->client->mount_args;
712 struct ceph_entity_addr *mon_addr = args->mon_addr;
713 int num_mon = args->num_mon;
714 int i;
715
716 /* build initial monmap */
717 monc->monmap = kzalloc(sizeof(*monc->monmap) +
718 num_mon*sizeof(monc->monmap->mon_inst[0]),
719 GFP_KERNEL);
720 if (!monc->monmap)
721 return -ENOMEM;
722 for (i = 0; i < num_mon; i++) {
723 monc->monmap->mon_inst[i].addr = mon_addr[i];
Sage Weil6b805182009-10-27 11:50:50 -0700724 monc->monmap->mon_inst[i].addr.nonce = 0;
725 monc->monmap->mon_inst[i].name.type =
726 CEPH_ENTITY_TYPE_MON;
727 monc->monmap->mon_inst[i].name.num = cpu_to_le64(i);
728 }
729 monc->monmap->num_mon = num_mon;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800730 monc->have_fsid = false;
Sage Weil6b805182009-10-27 11:50:50 -0700731
732 /* release addr memory */
733 kfree(args->mon_addr);
734 args->mon_addr = NULL;
735 args->num_mon = 0;
736 return 0;
737}
738
Sage Weilba75bb92009-10-06 11:31:11 -0700739int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl)
740{
741 int err = 0;
742
743 dout("init\n");
744 memset(monc, 0, sizeof(*monc));
745 monc->client = cl;
746 monc->monmap = NULL;
747 mutex_init(&monc->mutex);
748
Sage Weil6b805182009-10-27 11:50:50 -0700749 err = build_initial_monmap(monc);
750 if (err)
751 goto out;
752
Sage Weilba75bb92009-10-06 11:31:11 -0700753 monc->con = NULL;
754
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800755 /* authentication */
756 monc->auth = ceph_auth_init(cl->mount_args->name,
757 cl->mount_args->secret);
758 if (IS_ERR(monc->auth))
759 return PTR_ERR(monc->auth);
760 monc->auth->want_keys =
761 CEPH_ENTITY_TYPE_AUTH | CEPH_ENTITY_TYPE_MON |
762 CEPH_ENTITY_TYPE_OSD | CEPH_ENTITY_TYPE_MDS;
763
Sage Weil240ed682010-05-21 14:57:25 -0700764 /* msgs */
Sage Weila79832f2010-04-01 16:06:19 -0700765 err = -ENOMEM;
Sage Weil7c315c52010-03-24 21:52:30 -0700766 monc->m_subscribe_ack = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE_ACK,
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700767 sizeof(struct ceph_mon_subscribe_ack),
768 GFP_NOFS);
Sage Weila79832f2010-04-01 16:06:19 -0700769 if (!monc->m_subscribe_ack)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800770 goto out_monmap;
Sage Weil6694d6b2010-03-24 21:48:05 -0700771
Sage Weil240ed682010-05-21 14:57:25 -0700772 monc->m_subscribe = ceph_msg_new(CEPH_MSG_MON_SUBSCRIBE, 96, GFP_NOFS);
773 if (!monc->m_subscribe)
774 goto out_subscribe_ack;
775
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700776 monc->m_auth_reply = ceph_msg_new(CEPH_MSG_AUTH_REPLY, 4096, GFP_NOFS);
Sage Weila79832f2010-04-01 16:06:19 -0700777 if (!monc->m_auth_reply)
Sage Weil240ed682010-05-21 14:57:25 -0700778 goto out_subscribe;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800779
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700780 monc->m_auth = ceph_msg_new(CEPH_MSG_AUTH, 4096, GFP_NOFS);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800781 monc->pending_auth = 0;
Sage Weila79832f2010-04-01 16:06:19 -0700782 if (!monc->m_auth)
Sage Weil6694d6b2010-03-24 21:48:05 -0700783 goto out_auth_reply;
Sage Weilba75bb92009-10-06 11:31:11 -0700784
785 monc->cur_mon = -1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800786 monc->hunting = true;
Sage Weilba75bb92009-10-06 11:31:11 -0700787 monc->sub_renew_after = jiffies;
788 monc->sub_sent = 0;
789
790 INIT_DELAYED_WORK(&monc->delayed_work, delayed_work);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700791 monc->generic_request_tree = RB_ROOT;
792 monc->num_generic_requests = 0;
Sage Weilba75bb92009-10-06 11:31:11 -0700793 monc->last_tid = 0;
794
795 monc->have_mdsmap = 0;
796 monc->have_osdmap = 0;
797 monc->want_next_osdmap = 1;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800798 return 0;
799
Sage Weil6694d6b2010-03-24 21:48:05 -0700800out_auth_reply:
801 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700802out_subscribe:
803 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700804out_subscribe_ack:
805 ceph_msg_put(monc->m_subscribe_ack);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800806out_monmap:
807 kfree(monc->monmap);
Sage Weilba75bb92009-10-06 11:31:11 -0700808out:
809 return err;
810}
811
812void ceph_monc_stop(struct ceph_mon_client *monc)
813{
814 dout("stop\n");
815 cancel_delayed_work_sync(&monc->delayed_work);
816
817 mutex_lock(&monc->mutex);
818 __close_session(monc);
819 if (monc->con) {
820 monc->con->private = NULL;
821 monc->con->ops->put(monc->con);
822 monc->con = NULL;
823 }
824 mutex_unlock(&monc->mutex);
825
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800826 ceph_auth_destroy(monc->auth);
827
828 ceph_msg_put(monc->m_auth);
Sage Weil6694d6b2010-03-24 21:48:05 -0700829 ceph_msg_put(monc->m_auth_reply);
Sage Weil240ed682010-05-21 14:57:25 -0700830 ceph_msg_put(monc->m_subscribe);
Sage Weil7c315c52010-03-24 21:52:30 -0700831 ceph_msg_put(monc->m_subscribe_ack);
Sage Weilba75bb92009-10-06 11:31:11 -0700832
833 kfree(monc->monmap);
834}
835
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800836static void handle_auth_reply(struct ceph_mon_client *monc,
837 struct ceph_msg *msg)
838{
839 int ret;
Sage Weil09c4d6a2010-05-25 15:38:06 -0700840 int was_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800841
842 mutex_lock(&monc->mutex);
Sage Weil09c4d6a2010-05-25 15:38:06 -0700843 if (monc->auth->ops)
844 was_auth = monc->auth->ops->is_authenticated(monc->auth);
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800845 monc->pending_auth = 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800846 ret = ceph_handle_auth_reply(monc->auth, msg->front.iov_base,
847 msg->front.iov_len,
848 monc->m_auth->front.iov_base,
849 monc->m_auth->front_max);
850 if (ret < 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800851 monc->client->auth_err = ret;
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700852 wake_up_all(&monc->client->auth_wq);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800853 } else if (ret > 0) {
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800854 __send_prepared_auth_request(monc, ret);
Sage Weil09c4d6a2010-05-25 15:38:06 -0700855 } else if (!was_auth && monc->auth->ops->is_authenticated(monc->auth)) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800856 dout("authenticated, starting session\n");
Sage Weil07433042009-11-18 16:50:41 -0800857
858 monc->client->msgr->inst.name.type = CEPH_ENTITY_TYPE_CLIENT;
Yehuda Sadeh0cf55372010-06-11 15:57:06 -0700859 monc->client->msgr->inst.name.num =
860 cpu_to_le64(monc->auth->global_id);
Sage Weil07433042009-11-18 16:50:41 -0800861
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800862 __send_subscribe(monc);
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700863 __resend_generic_request(monc);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800864 }
865 mutex_unlock(&monc->mutex);
866}
867
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800868static int __validate_auth(struct ceph_mon_client *monc)
869{
870 int ret;
871
872 if (monc->pending_auth)
873 return 0;
874
875 ret = ceph_build_auth(monc->auth, monc->m_auth->front.iov_base,
876 monc->m_auth->front_max);
877 if (ret <= 0)
878 return ret; /* either an error, or no need to authenticate */
879 __send_prepared_auth_request(monc, ret);
880 return 0;
881}
882
883int ceph_monc_validate_auth(struct ceph_mon_client *monc)
884{
885 int ret;
886
887 mutex_lock(&monc->mutex);
888 ret = __validate_auth(monc);
889 mutex_unlock(&monc->mutex);
890 return ret;
891}
892
Sage Weilba75bb92009-10-06 11:31:11 -0700893/*
894 * handle incoming message
895 */
896static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
897{
898 struct ceph_mon_client *monc = con->private;
899 int type = le16_to_cpu(msg->hdr.type);
900
901 if (!monc)
902 return;
903
904 switch (type) {
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800905 case CEPH_MSG_AUTH_REPLY:
906 handle_auth_reply(monc, msg);
Sage Weilba75bb92009-10-06 11:31:11 -0700907 break;
908
909 case CEPH_MSG_MON_SUBSCRIBE_ACK:
910 handle_subscribe_ack(monc, msg);
911 break;
912
913 case CEPH_MSG_STATFS_REPLY:
914 handle_statfs_reply(monc, msg);
915 break;
916
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700917 case CEPH_MSG_POOLOP_REPLY:
918 handle_poolop_reply(monc, msg);
919 break;
920
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800921 case CEPH_MSG_MON_MAP:
922 ceph_monc_handle_map(monc, msg);
923 break;
924
Sage Weilba75bb92009-10-06 11:31:11 -0700925 case CEPH_MSG_MDS_MAP:
926 ceph_mdsc_handle_map(&monc->client->mdsc, msg);
927 break;
928
929 case CEPH_MSG_OSD_MAP:
930 ceph_osdc_handle_map(&monc->client->osdc, msg);
931 break;
932
933 default:
934 pr_err("received unknown message type %d %s\n", type,
935 ceph_msg_type_name(type));
936 }
937 ceph_msg_put(msg);
938}
939
940/*
941 * Allocate memory for incoming message
942 */
943static struct ceph_msg *mon_alloc_msg(struct ceph_connection *con,
Yehuda Sadeh24504182010-01-08 13:58:34 -0800944 struct ceph_msg_header *hdr,
945 int *skip)
Sage Weilba75bb92009-10-06 11:31:11 -0700946{
947 struct ceph_mon_client *monc = con->private;
948 int type = le16_to_cpu(hdr->type);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800949 int front_len = le32_to_cpu(hdr->front_len);
Sage Weil5b3a4db2010-02-19 21:43:23 -0800950 struct ceph_msg *m = NULL;
Sage Weilba75bb92009-10-06 11:31:11 -0700951
Yehuda Sadeh24504182010-01-08 13:58:34 -0800952 *skip = 0;
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -0800953
Sage Weilba75bb92009-10-06 11:31:11 -0700954 switch (type) {
Sage Weilba75bb92009-10-06 11:31:11 -0700955 case CEPH_MSG_MON_SUBSCRIBE_ACK:
Sage Weil7c315c52010-03-24 21:52:30 -0700956 m = ceph_msg_get(monc->m_subscribe_ack);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800957 break;
Yehuda Sadehe56fa102010-05-17 12:40:28 -0700958 case CEPH_MSG_POOLOP_REPLY:
Sage Weilba75bb92009-10-06 11:31:11 -0700959 case CEPH_MSG_STATFS_REPLY:
Yehuda Sadehf8c76f62010-04-22 15:40:37 -0700960 return get_generic_reply(con, hdr, skip);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800961 case CEPH_MSG_AUTH_REPLY:
Sage Weil6694d6b2010-03-24 21:48:05 -0700962 m = ceph_msg_get(monc->m_auth_reply);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800963 break;
Sage Weil5b3a4db2010-02-19 21:43:23 -0800964 case CEPH_MSG_MON_MAP:
965 case CEPH_MSG_MDS_MAP:
966 case CEPH_MSG_OSD_MAP:
Yehuda Sadeh34d23762010-04-06 14:33:58 -0700967 m = ceph_msg_new(type, front_len, GFP_NOFS);
Sage Weil5b3a4db2010-02-19 21:43:23 -0800968 break;
Sage Weilba75bb92009-10-06 11:31:11 -0700969 }
Yehuda Sadeh24504182010-01-08 13:58:34 -0800970
Sage Weil5b3a4db2010-02-19 21:43:23 -0800971 if (!m) {
972 pr_info("alloc_msg unknown type %d\n", type);
Yehuda Sadeh24504182010-01-08 13:58:34 -0800973 *skip = 1;
Sage Weil5b3a4db2010-02-19 21:43:23 -0800974 }
Yehuda Sadeh24504182010-01-08 13:58:34 -0800975 return m;
Sage Weilba75bb92009-10-06 11:31:11 -0700976}
977
978/*
979 * If the monitor connection resets, pick a new monitor and resubmit
980 * any pending requests.
981 */
982static void mon_fault(struct ceph_connection *con)
983{
984 struct ceph_mon_client *monc = con->private;
985
986 if (!monc)
987 return;
988
989 dout("mon_fault\n");
990 mutex_lock(&monc->mutex);
991 if (!con->private)
992 goto out;
993
994 if (monc->con && !monc->hunting)
995 pr_info("mon%d %s session lost, "
996 "hunting for new mon\n", monc->cur_mon,
997 pr_addr(&monc->con->peer_addr.in_addr));
998
999 __close_session(monc);
1000 if (!monc->hunting) {
1001 /* start hunting */
1002 monc->hunting = true;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001003 __open_session(monc);
Sage Weilba75bb92009-10-06 11:31:11 -07001004 } else {
1005 /* already hunting, let's wait a bit */
1006 __schedule_delayed(monc);
1007 }
1008out:
1009 mutex_unlock(&monc->mutex);
1010}
1011
Tobias Klauser9e327892010-05-20 10:40:19 +02001012static const struct ceph_connection_operations mon_con_ops = {
Sage Weilba75bb92009-10-06 11:31:11 -07001013 .get = ceph_con_get,
1014 .put = ceph_con_put,
1015 .dispatch = dispatch,
1016 .fault = mon_fault,
1017 .alloc_msg = mon_alloc_msg,
Sage Weilba75bb92009-10-06 11:31:11 -07001018};