blob: b6ff4a1519ab664c43d9bff871dc95d8efb52daa [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil31b80062009-10-06 11:31:13 -07002
3#include <linux/crc32c.h>
4#include <linux/ctype.h>
5#include <linux/highmem.h>
6#include <linux/inet.h>
7#include <linux/kthread.h>
8#include <linux/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Sage Weil31b80062009-10-06 11:31:13 -070010#include <linux/socket.h>
11#include <linux/string.h>
Yehuda Sadeh68b44762010-04-06 15:01:27 -070012#include <linux/bio.h>
13#include <linux/blkdev.h>
Sage Weil31b80062009-10-06 11:31:13 -070014#include <net/tcp.h>
15
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070016#include <linux/ceph/libceph.h>
17#include <linux/ceph/messenger.h>
18#include <linux/ceph/decode.h>
19#include <linux/ceph/pagelist.h>
Sage Weil31b80062009-10-06 11:31:13 -070020
21/*
22 * Ceph uses the messenger to exchange ceph_msg messages with other
23 * hosts in the system. The messenger provides ordered and reliable
24 * delivery. We tolerate TCP disconnects by reconnecting (with
25 * exponential backoff) in the case of a fault (disconnection, bad
26 * crc, protocol error). Acks allow sent messages to be discarded by
27 * the sender.
28 */
29
30/* static tag bytes (protocol control messages) */
31static char tag_msg = CEPH_MSGR_TAG_MSG;
32static char tag_ack = CEPH_MSGR_TAG_ACK;
33static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
34
Sage Weila6a53492010-04-13 14:07:07 -070035#ifdef CONFIG_LOCKDEP
36static struct lock_class_key socket_class;
37#endif
38
Sage Weil31b80062009-10-06 11:31:13 -070039
40static void queue_con(struct ceph_connection *con);
41static void con_work(struct work_struct *);
42static void ceph_fault(struct ceph_connection *con);
43
Sage Weil31b80062009-10-06 11:31:13 -070044/*
45 * nicely render a sockaddr as a string.
46 */
47#define MAX_ADDR_STR 20
Sage Weild06dbaf2010-07-08 10:47:16 -070048#define MAX_ADDR_STR_LEN 60
49static char addr_str[MAX_ADDR_STR][MAX_ADDR_STR_LEN];
Sage Weil31b80062009-10-06 11:31:13 -070050static DEFINE_SPINLOCK(addr_str_lock);
51static int last_addr_str;
52
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070053const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -070054{
55 int i;
56 char *s;
57 struct sockaddr_in *in4 = (void *)ss;
Sage Weil31b80062009-10-06 11:31:13 -070058 struct sockaddr_in6 *in6 = (void *)ss;
59
60 spin_lock(&addr_str_lock);
61 i = last_addr_str++;
62 if (last_addr_str == MAX_ADDR_STR)
63 last_addr_str = 0;
64 spin_unlock(&addr_str_lock);
65 s = addr_str[i];
66
67 switch (ss->ss_family) {
68 case AF_INET:
Sage Weild06dbaf2010-07-08 10:47:16 -070069 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%u", &in4->sin_addr,
70 (unsigned int)ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -070071 break;
72
73 case AF_INET6:
Sage Weild06dbaf2010-07-08 10:47:16 -070074 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%u", &in6->sin6_addr,
75 (unsigned int)ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -070076 break;
77
78 default:
79 sprintf(s, "(unknown sockaddr family %d)", (int)ss->ss_family);
80 }
81
82 return s;
83}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070084EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -070085
Sage Weil63f2d212009-11-03 15:17:56 -080086static void encode_my_addr(struct ceph_messenger *msgr)
87{
88 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
89 ceph_encode_addr(&msgr->my_enc_addr);
90}
91
Sage Weil31b80062009-10-06 11:31:13 -070092/*
93 * work queue for all reading and writing to/from the socket.
94 */
95struct workqueue_struct *ceph_msgr_wq;
96
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070097int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -070098{
99 ceph_msgr_wq = create_workqueue("ceph-msgr");
Sage Weild96c9042010-12-13 20:30:28 -0800100 if (!ceph_msgr_wq) {
101 pr_err("msgr_init failed to create workqueue\n");
102 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700103 }
104 return 0;
105}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700106EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700107
108void ceph_msgr_exit(void)
109{
110 destroy_workqueue(ceph_msgr_wq);
111}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700112EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700113
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700114void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700115{
116 flush_workqueue(ceph_msgr_wq);
117}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700118EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700119
120
Sage Weil31b80062009-10-06 11:31:13 -0700121/*
122 * socket callback functions
123 */
124
125/* data available on socket, or listen socket received a connect */
126static void ceph_data_ready(struct sock *sk, int count_unused)
127{
128 struct ceph_connection *con =
129 (struct ceph_connection *)sk->sk_user_data;
130 if (sk->sk_state != TCP_CLOSE_WAIT) {
131 dout("ceph_data_ready on %p state = %lu, queueing work\n",
132 con, con->state);
133 queue_con(con);
134 }
135}
136
137/* socket has buffer space for writing */
138static void ceph_write_space(struct sock *sk)
139{
140 struct ceph_connection *con =
141 (struct ceph_connection *)sk->sk_user_data;
142
143 /* only queue to workqueue if there is data we want to write. */
144 if (test_bit(WRITE_PENDING, &con->state)) {
145 dout("ceph_write_space %p queueing write work\n", con);
146 queue_con(con);
147 } else {
148 dout("ceph_write_space %p nothing to write\n", con);
149 }
150
151 /* since we have our own write_space, clear the SOCK_NOSPACE flag */
152 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
153}
154
155/* socket's state has changed */
156static void ceph_state_change(struct sock *sk)
157{
158 struct ceph_connection *con =
159 (struct ceph_connection *)sk->sk_user_data;
160
161 dout("ceph_state_change %p state = %lu sk_state = %u\n",
162 con, con->state, sk->sk_state);
163
164 if (test_bit(CLOSED, &con->state))
165 return;
166
167 switch (sk->sk_state) {
168 case TCP_CLOSE:
169 dout("ceph_state_change TCP_CLOSE\n");
170 case TCP_CLOSE_WAIT:
171 dout("ceph_state_change TCP_CLOSE_WAIT\n");
172 if (test_and_set_bit(SOCK_CLOSED, &con->state) == 0) {
173 if (test_bit(CONNECTING, &con->state))
174 con->error_msg = "connection failed";
175 else
176 con->error_msg = "socket closed";
177 queue_con(con);
178 }
179 break;
180 case TCP_ESTABLISHED:
181 dout("ceph_state_change TCP_ESTABLISHED\n");
182 queue_con(con);
183 break;
184 }
185}
186
187/*
188 * set up socket callbacks
189 */
190static void set_sock_callbacks(struct socket *sock,
191 struct ceph_connection *con)
192{
193 struct sock *sk = sock->sk;
194 sk->sk_user_data = (void *)con;
195 sk->sk_data_ready = ceph_data_ready;
196 sk->sk_write_space = ceph_write_space;
197 sk->sk_state_change = ceph_state_change;
198}
199
200
201/*
202 * socket helpers
203 */
204
205/*
206 * initiate connection to a remote socket.
207 */
208static struct socket *ceph_tcp_connect(struct ceph_connection *con)
209{
Sage Weilf91d3472010-07-01 15:18:31 -0700210 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700211 struct socket *sock;
212 int ret;
213
214 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700215 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
216 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700217 if (ret)
218 return ERR_PTR(ret);
219 con->sock = sock;
220 sock->sk->sk_allocation = GFP_NOFS;
221
Sage Weila6a53492010-04-13 14:07:07 -0700222#ifdef CONFIG_LOCKDEP
223 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
224#endif
225
Sage Weil31b80062009-10-06 11:31:13 -0700226 set_sock_callbacks(sock, con);
227
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700228 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700229
Sage Weilf91d3472010-07-01 15:18:31 -0700230 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
231 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700232 if (ret == -EINPROGRESS) {
233 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700234 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700235 sock->sk->sk_state);
236 ret = 0;
237 }
238 if (ret < 0) {
239 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700240 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700241 sock_release(sock);
242 con->sock = NULL;
243 con->error_msg = "connect error";
244 }
245
246 if (ret < 0)
247 return ERR_PTR(ret);
248 return sock;
249}
250
251static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
252{
253 struct kvec iov = {buf, len};
254 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
255
256 return kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
257}
258
259/*
260 * write something. @more is true if caller will be sending more data
261 * shortly.
262 */
263static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
264 size_t kvlen, size_t len, int more)
265{
266 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
267
268 if (more)
269 msg.msg_flags |= MSG_MORE;
270 else
271 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
272
273 return kernel_sendmsg(sock, &msg, iov, kvlen, len);
274}
275
276
277/*
278 * Shutdown/close the socket for the given connection.
279 */
280static int con_close_socket(struct ceph_connection *con)
281{
282 int rc;
283
284 dout("con_close_socket on %p sock %p\n", con, con->sock);
285 if (!con->sock)
286 return 0;
287 set_bit(SOCK_CLOSED, &con->state);
288 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
289 sock_release(con->sock);
290 con->sock = NULL;
291 clear_bit(SOCK_CLOSED, &con->state);
292 return rc;
293}
294
295/*
296 * Reset a connection. Discard all incoming and outgoing messages
297 * and clear *_seq state.
298 */
299static void ceph_msg_remove(struct ceph_msg *msg)
300{
301 list_del_init(&msg->list_head);
302 ceph_msg_put(msg);
303}
304static void ceph_msg_remove_list(struct list_head *head)
305{
306 while (!list_empty(head)) {
307 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
308 list_head);
309 ceph_msg_remove(msg);
310 }
311}
312
313static void reset_connection(struct ceph_connection *con)
314{
315 /* reset connection, out_queue, msg_ and connect_seq */
316 /* discard existing out_queue and msg_seq */
Sage Weil31b80062009-10-06 11:31:13 -0700317 ceph_msg_remove_list(&con->out_queue);
318 ceph_msg_remove_list(&con->out_sent);
319
Sage Weilcf3e5c42009-12-11 09:48:05 -0800320 if (con->in_msg) {
321 ceph_msg_put(con->in_msg);
322 con->in_msg = NULL;
323 }
324
Sage Weil31b80062009-10-06 11:31:13 -0700325 con->connect_seq = 0;
326 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800327 if (con->out_msg) {
328 ceph_msg_put(con->out_msg);
329 con->out_msg = NULL;
330 }
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700331 con->out_keepalive_pending = false;
Sage Weil31b80062009-10-06 11:31:13 -0700332 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700333 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700334}
335
336/*
337 * mark a peer down. drop any open connections.
338 */
339void ceph_con_close(struct ceph_connection *con)
340{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700341 dout("con_close %p peer %s\n", con,
342 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700343 set_bit(CLOSED, &con->state); /* in case there's queued work */
344 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
Sage Weil1679f872010-02-26 13:55:51 -0800345 clear_bit(LOSSYTX, &con->state); /* so we retry next connect */
346 clear_bit(KEEPALIVE_PENDING, &con->state);
347 clear_bit(WRITE_PENDING, &con->state);
Sage Weilec302642009-12-22 10:43:42 -0800348 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700349 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700350 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800351 cancel_delayed_work(&con->work);
Sage Weilec302642009-12-22 10:43:42 -0800352 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700353 queue_con(con);
354}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700355EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700356
357/*
Sage Weil31b80062009-10-06 11:31:13 -0700358 * Reopen a closed connection, with a new peer address.
359 */
360void ceph_con_open(struct ceph_connection *con, struct ceph_entity_addr *addr)
361{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700362 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700363 set_bit(OPENING, &con->state);
364 clear_bit(CLOSED, &con->state);
365 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800366 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -0700367 queue_con(con);
368}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700369EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700370
371/*
Sage Weil87b315a2010-03-22 14:51:18 -0700372 * return true if this connection ever successfully opened
373 */
374bool ceph_con_opened(struct ceph_connection *con)
375{
376 return con->connect_seq > 0;
377}
378
379/*
Sage Weil31b80062009-10-06 11:31:13 -0700380 * generic get/put
381 */
382struct ceph_connection *ceph_con_get(struct ceph_connection *con)
383{
384 dout("con_get %p nref = %d -> %d\n", con,
385 atomic_read(&con->nref), atomic_read(&con->nref) + 1);
386 if (atomic_inc_not_zero(&con->nref))
387 return con;
388 return NULL;
389}
390
391void ceph_con_put(struct ceph_connection *con)
392{
393 dout("con_put %p nref = %d -> %d\n", con,
394 atomic_read(&con->nref), atomic_read(&con->nref) - 1);
395 BUG_ON(atomic_read(&con->nref) == 0);
396 if (atomic_dec_and_test(&con->nref)) {
Sage Weil71ececd2009-11-18 11:27:06 -0800397 BUG_ON(con->sock);
Sage Weil31b80062009-10-06 11:31:13 -0700398 kfree(con);
399 }
400}
401
402/*
403 * initialize a new connection.
404 */
405void ceph_con_init(struct ceph_messenger *msgr, struct ceph_connection *con)
406{
407 dout("con_init %p\n", con);
408 memset(con, 0, sizeof(*con));
409 atomic_set(&con->nref, 1);
410 con->msgr = msgr;
Sage Weilec302642009-12-22 10:43:42 -0800411 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700412 INIT_LIST_HEAD(&con->out_queue);
413 INIT_LIST_HEAD(&con->out_sent);
414 INIT_DELAYED_WORK(&con->work, con_work);
415}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700416EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700417
418
419/*
420 * We maintain a global counter to order connection attempts. Get
421 * a unique seq greater than @gt.
422 */
423static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
424{
425 u32 ret;
426
427 spin_lock(&msgr->global_seq_lock);
428 if (msgr->global_seq < gt)
429 msgr->global_seq = gt;
430 ret = ++msgr->global_seq;
431 spin_unlock(&msgr->global_seq_lock);
432 return ret;
433}
434
435
436/*
437 * Prepare footer for currently outgoing message, and finish things
438 * off. Assumes out_kvec* are already valid.. we just add on to the end.
439 */
440static void prepare_write_message_footer(struct ceph_connection *con, int v)
441{
442 struct ceph_msg *m = con->out_msg;
443
444 dout("prepare_write_message_footer %p\n", con);
445 con->out_kvec_is_msg = true;
446 con->out_kvec[v].iov_base = &m->footer;
447 con->out_kvec[v].iov_len = sizeof(m->footer);
448 con->out_kvec_bytes += sizeof(m->footer);
449 con->out_kvec_left++;
450 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800451 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700452}
453
454/*
455 * Prepare headers for the next outgoing message.
456 */
457static void prepare_write_message(struct ceph_connection *con)
458{
459 struct ceph_msg *m;
460 int v = 0;
461
462 con->out_kvec_bytes = 0;
463 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800464 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700465
466 /* Sneak an ack in there first? If we can get it into the same
467 * TCP packet that's a good thing. */
468 if (con->in_seq > con->in_seq_acked) {
469 con->in_seq_acked = con->in_seq;
470 con->out_kvec[v].iov_base = &tag_ack;
471 con->out_kvec[v++].iov_len = 1;
472 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
473 con->out_kvec[v].iov_base = &con->out_temp_ack;
474 con->out_kvec[v++].iov_len = sizeof(con->out_temp_ack);
475 con->out_kvec_bytes = 1 + sizeof(con->out_temp_ack);
476 }
477
Sage Weil31b80062009-10-06 11:31:13 -0700478 m = list_first_entry(&con->out_queue,
479 struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800480 con->out_msg = m;
Sage Weilb3d1dbb2009-12-14 14:58:11 -0800481 if (test_bit(LOSSYTX, &con->state)) {
Sage Weil6c5d1a42010-02-13 20:29:31 -0800482 list_del_init(&m->list_head);
483 } else {
Sage Weilb3d1dbb2009-12-14 14:58:11 -0800484 /* put message on sent list */
485 ceph_msg_get(m);
486 list_move_tail(&m->list_head, &con->out_sent);
Sage Weilb3d1dbb2009-12-14 14:58:11 -0800487 }
Sage Weil31b80062009-10-06 11:31:13 -0700488
Sage Weile84346b2010-05-11 21:20:38 -0700489 /*
490 * only assign outgoing seq # if we haven't sent this message
491 * yet. if it is requeued, resend with it's original seq.
492 */
493 if (m->needs_out_seq) {
494 m->hdr.seq = cpu_to_le64(++con->out_seq);
495 m->needs_out_seq = false;
496 }
Sage Weil31b80062009-10-06 11:31:13 -0700497
498 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
499 m, con->out_seq, le16_to_cpu(m->hdr.type),
500 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
501 le32_to_cpu(m->hdr.data_len),
502 m->nr_pages);
503 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
504
505 /* tag + hdr + front + middle */
506 con->out_kvec[v].iov_base = &tag_msg;
507 con->out_kvec[v++].iov_len = 1;
508 con->out_kvec[v].iov_base = &m->hdr;
509 con->out_kvec[v++].iov_len = sizeof(m->hdr);
510 con->out_kvec[v++] = m->front;
511 if (m->middle)
512 con->out_kvec[v++] = m->middle->vec;
513 con->out_kvec_left = v;
514 con->out_kvec_bytes += 1 + sizeof(m->hdr) + m->front.iov_len +
515 (m->middle ? m->middle->vec.iov_len : 0);
516 con->out_kvec_cur = con->out_kvec;
517
518 /* fill in crc (except data pages), footer */
519 con->out_msg->hdr.crc =
520 cpu_to_le32(crc32c(0, (void *)&m->hdr,
521 sizeof(m->hdr) - sizeof(m->hdr.crc)));
522 con->out_msg->footer.flags = CEPH_MSG_FOOTER_COMPLETE;
523 con->out_msg->footer.front_crc =
524 cpu_to_le32(crc32c(0, m->front.iov_base, m->front.iov_len));
525 if (m->middle)
526 con->out_msg->footer.middle_crc =
527 cpu_to_le32(crc32c(0, m->middle->vec.iov_base,
528 m->middle->vec.iov_len));
529 else
530 con->out_msg->footer.middle_crc = 0;
531 con->out_msg->footer.data_crc = 0;
532 dout("prepare_write_message front_crc %u data_crc %u\n",
533 le32_to_cpu(con->out_msg->footer.front_crc),
534 le32_to_cpu(con->out_msg->footer.middle_crc));
535
536 /* is there a data payload? */
537 if (le32_to_cpu(m->hdr.data_len) > 0) {
538 /* initialize page iterator */
539 con->out_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700540 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -0800541 con->out_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700542 else
543 con->out_msg_pos.page_pos = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700544 con->out_msg_pos.data_pos = 0;
545 con->out_msg_pos.did_page_crc = 0;
546 con->out_more = 1; /* data + footer will follow */
547 } else {
548 /* no, queue up footer too and be done */
549 prepare_write_message_footer(con, v);
550 }
551
552 set_bit(WRITE_PENDING, &con->state);
553}
554
555/*
556 * Prepare an ack.
557 */
558static void prepare_write_ack(struct ceph_connection *con)
559{
560 dout("prepare_write_ack %p %llu -> %llu\n", con,
561 con->in_seq_acked, con->in_seq);
562 con->in_seq_acked = con->in_seq;
563
564 con->out_kvec[0].iov_base = &tag_ack;
565 con->out_kvec[0].iov_len = 1;
566 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
567 con->out_kvec[1].iov_base = &con->out_temp_ack;
568 con->out_kvec[1].iov_len = sizeof(con->out_temp_ack);
569 con->out_kvec_left = 2;
570 con->out_kvec_bytes = 1 + sizeof(con->out_temp_ack);
571 con->out_kvec_cur = con->out_kvec;
572 con->out_more = 1; /* more will follow.. eventually.. */
573 set_bit(WRITE_PENDING, &con->state);
574}
575
576/*
577 * Prepare to write keepalive byte.
578 */
579static void prepare_write_keepalive(struct ceph_connection *con)
580{
581 dout("prepare_write_keepalive %p\n", con);
582 con->out_kvec[0].iov_base = &tag_keepalive;
583 con->out_kvec[0].iov_len = 1;
584 con->out_kvec_left = 1;
585 con->out_kvec_bytes = 1;
586 con->out_kvec_cur = con->out_kvec;
587 set_bit(WRITE_PENDING, &con->state);
588}
589
590/*
591 * Connection negotiation.
592 */
593
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800594static void prepare_connect_authorizer(struct ceph_connection *con)
595{
596 void *auth_buf;
597 int auth_len = 0;
598 int auth_protocol = 0;
599
Sage Weilec302642009-12-22 10:43:42 -0800600 mutex_unlock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800601 if (con->ops->get_authorizer)
602 con->ops->get_authorizer(con, &auth_buf, &auth_len,
603 &auth_protocol, &con->auth_reply_buf,
604 &con->auth_reply_buf_len,
605 con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -0800606 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800607
608 con->out_connect.authorizer_protocol = cpu_to_le32(auth_protocol);
609 con->out_connect.authorizer_len = cpu_to_le32(auth_len);
610
611 con->out_kvec[con->out_kvec_left].iov_base = auth_buf;
612 con->out_kvec[con->out_kvec_left].iov_len = auth_len;
613 con->out_kvec_left++;
614 con->out_kvec_bytes += auth_len;
615}
616
Sage Weil31b80062009-10-06 11:31:13 -0700617/*
618 * We connected to a peer and are saying hello.
619 */
Sage Weileed0ef22009-11-10 14:34:36 -0800620static void prepare_write_banner(struct ceph_messenger *msgr,
621 struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700622{
623 int len = strlen(CEPH_BANNER);
Sage Weileed0ef22009-11-10 14:34:36 -0800624
625 con->out_kvec[0].iov_base = CEPH_BANNER;
626 con->out_kvec[0].iov_len = len;
627 con->out_kvec[1].iov_base = &msgr->my_enc_addr;
628 con->out_kvec[1].iov_len = sizeof(msgr->my_enc_addr);
629 con->out_kvec_left = 2;
630 con->out_kvec_bytes = len + sizeof(msgr->my_enc_addr);
631 con->out_kvec_cur = con->out_kvec;
632 con->out_more = 0;
633 set_bit(WRITE_PENDING, &con->state);
634}
635
636static void prepare_write_connect(struct ceph_messenger *msgr,
637 struct ceph_connection *con,
638 int after_banner)
639{
Sage Weil31b80062009-10-06 11:31:13 -0700640 unsigned global_seq = get_global_seq(con->msgr, 0);
641 int proto;
642
643 switch (con->peer_name.type) {
644 case CEPH_ENTITY_TYPE_MON:
645 proto = CEPH_MONC_PROTOCOL;
646 break;
647 case CEPH_ENTITY_TYPE_OSD:
648 proto = CEPH_OSDC_PROTOCOL;
649 break;
650 case CEPH_ENTITY_TYPE_MDS:
651 proto = CEPH_MDSC_PROTOCOL;
652 break;
653 default:
654 BUG();
655 }
656
657 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
658 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800659
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700660 con->out_connect.features = cpu_to_le64(msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700661 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
662 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
663 con->out_connect.global_seq = cpu_to_le32(global_seq);
664 con->out_connect.protocol_version = cpu_to_le32(proto);
665 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700666
Sage Weileed0ef22009-11-10 14:34:36 -0800667 if (!after_banner) {
668 con->out_kvec_left = 0;
669 con->out_kvec_bytes = 0;
670 }
671 con->out_kvec[con->out_kvec_left].iov_base = &con->out_connect;
672 con->out_kvec[con->out_kvec_left].iov_len = sizeof(con->out_connect);
673 con->out_kvec_left++;
674 con->out_kvec_bytes += sizeof(con->out_connect);
Sage Weil31b80062009-10-06 11:31:13 -0700675 con->out_kvec_cur = con->out_kvec;
676 con->out_more = 0;
677 set_bit(WRITE_PENDING, &con->state);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800678
679 prepare_connect_authorizer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700680}
681
682
683/*
684 * write as much of pending kvecs to the socket as we can.
685 * 1 -> done
686 * 0 -> socket full, but more to do
687 * <0 -> error
688 */
689static int write_partial_kvec(struct ceph_connection *con)
690{
691 int ret;
692
693 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
694 while (con->out_kvec_bytes > 0) {
695 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
696 con->out_kvec_left, con->out_kvec_bytes,
697 con->out_more);
698 if (ret <= 0)
699 goto out;
700 con->out_kvec_bytes -= ret;
701 if (con->out_kvec_bytes == 0)
702 break; /* done */
703 while (ret > 0) {
704 if (ret >= con->out_kvec_cur->iov_len) {
705 ret -= con->out_kvec_cur->iov_len;
706 con->out_kvec_cur++;
707 con->out_kvec_left--;
708 } else {
709 con->out_kvec_cur->iov_len -= ret;
710 con->out_kvec_cur->iov_base += ret;
711 ret = 0;
712 break;
713 }
714 }
715 }
716 con->out_kvec_left = 0;
717 con->out_kvec_is_msg = false;
718 ret = 1;
719out:
720 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
721 con->out_kvec_bytes, con->out_kvec_left, ret);
722 return ret; /* done! */
723}
724
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700725#ifdef CONFIG_BLOCK
726static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
727{
728 if (!bio) {
729 *iter = NULL;
730 *seg = 0;
731 return;
732 }
733 *iter = bio;
734 *seg = bio->bi_idx;
735}
736
737static void iter_bio_next(struct bio **bio_iter, int *seg)
738{
739 if (*bio_iter == NULL)
740 return;
741
742 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
743
744 (*seg)++;
745 if (*seg == (*bio_iter)->bi_vcnt)
746 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
747}
748#endif
749
Sage Weil31b80062009-10-06 11:31:13 -0700750/*
751 * Write as much message data payload as we can. If we finish, queue
752 * up the footer.
753 * 1 -> done, footer is now queued in out_kvec[].
754 * 0 -> socket full, but more to do
755 * <0 -> error
756 */
757static int write_partial_msg_pages(struct ceph_connection *con)
758{
759 struct ceph_msg *msg = con->out_msg;
760 unsigned data_len = le32_to_cpu(msg->hdr.data_len);
761 size_t len;
762 int crc = con->msgr->nocrc;
763 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700764 int total_max_write;
765 int in_trail = 0;
766 size_t trail_len = (msg->trail ? msg->trail->length : 0);
Sage Weil31b80062009-10-06 11:31:13 -0700767
768 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
769 con, con->out_msg, con->out_msg_pos.page, con->out_msg->nr_pages,
770 con->out_msg_pos.page_pos);
771
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700772#ifdef CONFIG_BLOCK
773 if (msg->bio && !msg->bio_iter)
774 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
775#endif
776
777 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -0700778 struct page *page = NULL;
779 void *kaddr = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700780 int max_write = PAGE_SIZE;
781 int page_shift = 0;
782
783 total_max_write = data_len - trail_len -
784 con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -0700785
786 /*
787 * if we are calculating the data crc (the default), we need
788 * to map the page. if our pages[] has been revoked, use the
789 * zero page.
790 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700791
792 /* have we reached the trail part of the data? */
793 if (con->out_msg_pos.data_pos >= data_len - trail_len) {
794 in_trail = 1;
795
796 total_max_write = data_len - con->out_msg_pos.data_pos;
797
798 page = list_first_entry(&msg->trail->head,
799 struct page, lru);
800 if (crc)
801 kaddr = kmap(page);
802 max_write = PAGE_SIZE;
803 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -0700804 page = msg->pages[con->out_msg_pos.page];
805 if (crc)
806 kaddr = kmap(page);
Sage Weil58bb3b32009-12-23 12:12:31 -0800807 } else if (msg->pagelist) {
808 page = list_first_entry(&msg->pagelist->head,
809 struct page, lru);
810 if (crc)
811 kaddr = kmap(page);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700812#ifdef CONFIG_BLOCK
813 } else if (msg->bio) {
814 struct bio_vec *bv;
815
816 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
817 page = bv->bv_page;
818 page_shift = bv->bv_offset;
819 if (crc)
820 kaddr = kmap(page) + page_shift;
821 max_write = bv->bv_len;
822#endif
Sage Weil31b80062009-10-06 11:31:13 -0700823 } else {
824 page = con->msgr->zero_page;
825 if (crc)
826 kaddr = page_address(con->msgr->zero_page);
827 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700828 len = min_t(int, max_write - con->out_msg_pos.page_pos,
829 total_max_write);
830
Sage Weil31b80062009-10-06 11:31:13 -0700831 if (crc && !con->out_msg_pos.did_page_crc) {
832 void *base = kaddr + con->out_msg_pos.page_pos;
833 u32 tmpcrc = le32_to_cpu(con->out_msg->footer.data_crc);
834
835 BUG_ON(kaddr == NULL);
836 con->out_msg->footer.data_crc =
837 cpu_to_le32(crc32c(tmpcrc, base, len));
838 con->out_msg_pos.did_page_crc = 1;
839 }
Sage Weil31b80062009-10-06 11:31:13 -0700840 ret = kernel_sendpage(con->sock, page,
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700841 con->out_msg_pos.page_pos + page_shift,
842 len,
Sage Weil31b80062009-10-06 11:31:13 -0700843 MSG_DONTWAIT | MSG_NOSIGNAL |
844 MSG_MORE);
845
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700846 if (crc &&
847 (msg->pages || msg->pagelist || msg->bio || in_trail))
Sage Weil31b80062009-10-06 11:31:13 -0700848 kunmap(page);
849
850 if (ret <= 0)
851 goto out;
852
853 con->out_msg_pos.data_pos += ret;
854 con->out_msg_pos.page_pos += ret;
855 if (ret == len) {
856 con->out_msg_pos.page_pos = 0;
857 con->out_msg_pos.page++;
858 con->out_msg_pos.did_page_crc = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700859 if (in_trail)
860 list_move_tail(&page->lru,
861 &msg->trail->head);
862 else if (msg->pagelist)
Sage Weil58bb3b32009-12-23 12:12:31 -0800863 list_move_tail(&page->lru,
864 &msg->pagelist->head);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700865#ifdef CONFIG_BLOCK
866 else if (msg->bio)
867 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
868#endif
Sage Weil31b80062009-10-06 11:31:13 -0700869 }
870 }
871
872 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
873
874 /* prepare and queue up footer, too */
875 if (!crc)
876 con->out_msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
877 con->out_kvec_bytes = 0;
878 con->out_kvec_left = 0;
879 con->out_kvec_cur = con->out_kvec;
880 prepare_write_message_footer(con, 0);
881 ret = 1;
882out:
883 return ret;
884}
885
886/*
887 * write some zeros
888 */
889static int write_partial_skip(struct ceph_connection *con)
890{
891 int ret;
892
893 while (con->out_skip > 0) {
894 struct kvec iov = {
895 .iov_base = page_address(con->msgr->zero_page),
896 .iov_len = min(con->out_skip, (int)PAGE_CACHE_SIZE)
897 };
898
899 ret = ceph_tcp_sendmsg(con->sock, &iov, 1, iov.iov_len, 1);
900 if (ret <= 0)
901 goto out;
902 con->out_skip -= ret;
903 }
904 ret = 1;
905out:
906 return ret;
907}
908
909/*
910 * Prepare to read connection handshake, or an ack.
911 */
Sage Weileed0ef22009-11-10 14:34:36 -0800912static void prepare_read_banner(struct ceph_connection *con)
913{
914 dout("prepare_read_banner %p\n", con);
915 con->in_base_pos = 0;
916}
917
Sage Weil31b80062009-10-06 11:31:13 -0700918static void prepare_read_connect(struct ceph_connection *con)
919{
920 dout("prepare_read_connect %p\n", con);
921 con->in_base_pos = 0;
922}
923
924static void prepare_read_ack(struct ceph_connection *con)
925{
926 dout("prepare_read_ack %p\n", con);
927 con->in_base_pos = 0;
928}
929
930static void prepare_read_tag(struct ceph_connection *con)
931{
932 dout("prepare_read_tag %p\n", con);
933 con->in_base_pos = 0;
934 con->in_tag = CEPH_MSGR_TAG_READY;
935}
936
937/*
938 * Prepare to read a message.
939 */
940static int prepare_read_message(struct ceph_connection *con)
941{
942 dout("prepare_read_message %p\n", con);
943 BUG_ON(con->in_msg != NULL);
944 con->in_base_pos = 0;
945 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
946 return 0;
947}
948
949
950static int read_partial(struct ceph_connection *con,
951 int *to, int size, void *object)
952{
953 *to += size;
954 while (con->in_base_pos < *to) {
955 int left = *to - con->in_base_pos;
956 int have = size - left;
957 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
958 if (ret <= 0)
959 return ret;
960 con->in_base_pos += ret;
961 }
962 return 1;
963}
964
965
966/*
967 * Read all or part of the connect-side handshake on a new connection
968 */
Sage Weileed0ef22009-11-10 14:34:36 -0800969static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700970{
971 int ret, to = 0;
972
Sage Weileed0ef22009-11-10 14:34:36 -0800973 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -0700974
975 /* peer's banner */
976 ret = read_partial(con, &to, strlen(CEPH_BANNER), con->in_banner);
977 if (ret <= 0)
978 goto out;
979 ret = read_partial(con, &to, sizeof(con->actual_peer_addr),
980 &con->actual_peer_addr);
981 if (ret <= 0)
982 goto out;
983 ret = read_partial(con, &to, sizeof(con->peer_addr_for_me),
984 &con->peer_addr_for_me);
985 if (ret <= 0)
986 goto out;
Sage Weileed0ef22009-11-10 14:34:36 -0800987out:
988 return ret;
989}
990
991static int read_partial_connect(struct ceph_connection *con)
992{
993 int ret, to = 0;
994
995 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
996
Sage Weil31b80062009-10-06 11:31:13 -0700997 ret = read_partial(con, &to, sizeof(con->in_reply), &con->in_reply);
998 if (ret <= 0)
999 goto out;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001000 ret = read_partial(con, &to, le32_to_cpu(con->in_reply.authorizer_len),
1001 con->auth_reply_buf);
1002 if (ret <= 0)
1003 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001004
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001005 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1006 con, (int)con->in_reply.tag,
1007 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001008 le32_to_cpu(con->in_reply.global_seq));
1009out:
1010 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001011
Sage Weil31b80062009-10-06 11:31:13 -07001012}
1013
1014/*
1015 * Verify the hello banner looks okay.
1016 */
1017static int verify_hello(struct ceph_connection *con)
1018{
1019 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001020 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001021 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001022 con->error_msg = "protocol error, bad banner";
1023 return -1;
1024 }
1025 return 0;
1026}
1027
1028static bool addr_is_blank(struct sockaddr_storage *ss)
1029{
1030 switch (ss->ss_family) {
1031 case AF_INET:
1032 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1033 case AF_INET6:
1034 return
1035 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1036 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1037 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1038 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1039 }
1040 return false;
1041}
1042
1043static int addr_port(struct sockaddr_storage *ss)
1044{
1045 switch (ss->ss_family) {
1046 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001047 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001048 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001049 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001050 }
1051 return 0;
1052}
1053
1054static void addr_set_port(struct sockaddr_storage *ss, int p)
1055{
1056 switch (ss->ss_family) {
1057 case AF_INET:
1058 ((struct sockaddr_in *)ss)->sin_port = htons(p);
1059 case AF_INET6:
1060 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
1061 }
1062}
1063
1064/*
1065 * Parse an ip[:port] list into an addr array. Use the default
1066 * monitor port if a port isn't specified.
1067 */
1068int ceph_parse_ips(const char *c, const char *end,
1069 struct ceph_entity_addr *addr,
1070 int max_count, int *count)
1071{
1072 int i;
1073 const char *p = c;
1074
1075 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1076 for (i = 0; i < max_count; i++) {
1077 const char *ipend;
1078 struct sockaddr_storage *ss = &addr[i].in_addr;
1079 struct sockaddr_in *in4 = (void *)ss;
1080 struct sockaddr_in6 *in6 = (void *)ss;
1081 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001082 char delim = ',';
1083
1084 if (*p == '[') {
1085 delim = ']';
1086 p++;
1087 }
Sage Weil31b80062009-10-06 11:31:13 -07001088
1089 memset(ss, 0, sizeof(*ss));
1090 if (in4_pton(p, end - p, (u8 *)&in4->sin_addr.s_addr,
Sage Weil39139f62010-07-08 09:54:52 -07001091 delim, &ipend))
Sage Weil31b80062009-10-06 11:31:13 -07001092 ss->ss_family = AF_INET;
Sage Weil39139f62010-07-08 09:54:52 -07001093 else if (in6_pton(p, end - p, (u8 *)&in6->sin6_addr.s6_addr,
1094 delim, &ipend))
Sage Weil31b80062009-10-06 11:31:13 -07001095 ss->ss_family = AF_INET6;
Sage Weil39139f62010-07-08 09:54:52 -07001096 else
Sage Weil31b80062009-10-06 11:31:13 -07001097 goto bad;
Sage Weil31b80062009-10-06 11:31:13 -07001098 p = ipend;
1099
Sage Weil39139f62010-07-08 09:54:52 -07001100 if (delim == ']') {
1101 if (*p != ']') {
1102 dout("missing matching ']'\n");
1103 goto bad;
1104 }
1105 p++;
1106 }
1107
Sage Weil31b80062009-10-06 11:31:13 -07001108 /* port? */
1109 if (p < end && *p == ':') {
1110 port = 0;
1111 p++;
1112 while (p < end && *p >= '0' && *p <= '9') {
1113 port = (port * 10) + (*p - '0');
1114 p++;
1115 }
1116 if (port > 65535 || port == 0)
1117 goto bad;
1118 } else {
1119 port = CEPH_MON_PORT;
1120 }
1121
1122 addr_set_port(ss, port);
1123
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001124 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001125
1126 if (p == end)
1127 break;
1128 if (*p != ',')
1129 goto bad;
1130 p++;
1131 }
1132
1133 if (p != end)
1134 goto bad;
1135
1136 if (count)
1137 *count = i + 1;
1138 return 0;
1139
1140bad:
Sage Weil39139f62010-07-08 09:54:52 -07001141 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Sage Weil31b80062009-10-06 11:31:13 -07001142 return -EINVAL;
1143}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001144EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001145
Sage Weileed0ef22009-11-10 14:34:36 -08001146static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001147{
Sage Weileed0ef22009-11-10 14:34:36 -08001148 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001149
1150 if (verify_hello(con) < 0)
1151 return -1;
1152
Sage Weil63f2d212009-11-03 15:17:56 -08001153 ceph_decode_addr(&con->actual_peer_addr);
1154 ceph_decode_addr(&con->peer_addr_for_me);
1155
Sage Weil31b80062009-10-06 11:31:13 -07001156 /*
1157 * Make sure the other end is who we wanted. note that the other
1158 * end may not yet know their ip address, so if it's 0.0.0.0, give
1159 * them the benefit of the doubt.
1160 */
Sage Weil103e2d32010-01-07 16:12:36 -08001161 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1162 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001163 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1164 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001165 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001166 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001167 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001168 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001169 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001170 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001171 return -1;
1172 }
1173
1174 /*
1175 * did we learn our address?
1176 */
1177 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1178 int port = addr_port(&con->msgr->inst.addr.in_addr);
1179
1180 memcpy(&con->msgr->inst.addr.in_addr,
1181 &con->peer_addr_for_me.in_addr,
1182 sizeof(con->peer_addr_for_me.in_addr));
1183 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001184 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001185 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001186 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001187 }
1188
Sage Weileed0ef22009-11-10 14:34:36 -08001189 set_bit(NEGOTIATING, &con->state);
1190 prepare_read_connect(con);
1191 return 0;
1192}
1193
Sage Weil04a419f2009-12-23 09:30:21 -08001194static void fail_protocol(struct ceph_connection *con)
1195{
1196 reset_connection(con);
1197 set_bit(CLOSED, &con->state); /* in case there's queued work */
1198
1199 mutex_unlock(&con->mutex);
1200 if (con->ops->bad_proto)
1201 con->ops->bad_proto(con);
1202 mutex_lock(&con->mutex);
1203}
1204
Sage Weileed0ef22009-11-10 14:34:36 -08001205static int process_connect(struct ceph_connection *con)
1206{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001207 u64 sup_feat = con->msgr->supported_features;
1208 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001209 u64 server_feat = le64_to_cpu(con->in_reply.features);
1210
Sage Weileed0ef22009-11-10 14:34:36 -08001211 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1212
Sage Weil31b80062009-10-06 11:31:13 -07001213 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001214 case CEPH_MSGR_TAG_FEATURES:
1215 pr_err("%s%lld %s feature set mismatch,"
1216 " my %llx < server's %llx, missing %llx\n",
1217 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001218 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001219 sup_feat, server_feat, server_feat & ~sup_feat);
1220 con->error_msg = "missing required protocol features";
1221 fail_protocol(con);
1222 return -1;
1223
Sage Weil31b80062009-10-06 11:31:13 -07001224 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001225 pr_err("%s%lld %s protocol version mismatch,"
1226 " my %d != server's %d\n",
1227 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001228 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001229 le32_to_cpu(con->out_connect.protocol_version),
1230 le32_to_cpu(con->in_reply.protocol_version));
1231 con->error_msg = "protocol version mismatch";
Sage Weil04a419f2009-12-23 09:30:21 -08001232 fail_protocol(con);
Sage Weil31b80062009-10-06 11:31:13 -07001233 return -1;
1234
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001235 case CEPH_MSGR_TAG_BADAUTHORIZER:
1236 con->auth_retry++;
1237 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1238 con->auth_retry);
1239 if (con->auth_retry == 2) {
1240 con->error_msg = "connect authorization failure";
1241 reset_connection(con);
1242 set_bit(CLOSED, &con->state);
1243 return -1;
1244 }
1245 con->auth_retry = 1;
1246 prepare_write_connect(con->msgr, con, 0);
Sage Weil63733a02010-03-15 15:47:22 -07001247 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001248 break;
Sage Weil31b80062009-10-06 11:31:13 -07001249
1250 case CEPH_MSGR_TAG_RESETSESSION:
1251 /*
1252 * If we connected with a large connect_seq but the peer
1253 * has no record of a session with us (no connection, or
1254 * connect_seq == 0), they will send RESETSESION to indicate
1255 * that they must have reset their session, and may have
1256 * dropped messages.
1257 */
1258 dout("process_connect got RESET peer seq %u\n",
1259 le32_to_cpu(con->in_connect.connect_seq));
1260 pr_err("%s%lld %s connection reset\n",
1261 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001262 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001263 reset_connection(con);
Sage Weileed0ef22009-11-10 14:34:36 -08001264 prepare_write_connect(con->msgr, con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001265 prepare_read_connect(con);
1266
1267 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001268 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001269 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1270 if (con->ops->peer_reset)
1271 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001272 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001273 break;
1274
1275 case CEPH_MSGR_TAG_RETRY_SESSION:
1276 /*
1277 * If we sent a smaller connect_seq than the peer has, try
1278 * again with a larger value.
1279 */
1280 dout("process_connect got RETRY my seq = %u, peer_seq = %u\n",
1281 le32_to_cpu(con->out_connect.connect_seq),
1282 le32_to_cpu(con->in_connect.connect_seq));
1283 con->connect_seq = le32_to_cpu(con->in_connect.connect_seq);
Sage Weileed0ef22009-11-10 14:34:36 -08001284 prepare_write_connect(con->msgr, con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001285 prepare_read_connect(con);
1286 break;
1287
1288 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1289 /*
1290 * If we sent a smaller global_seq than the peer has, try
1291 * again with a larger value.
1292 */
Sage Weileed0ef22009-11-10 14:34:36 -08001293 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001294 con->peer_global_seq,
1295 le32_to_cpu(con->in_connect.global_seq));
1296 get_global_seq(con->msgr,
1297 le32_to_cpu(con->in_connect.global_seq));
Sage Weileed0ef22009-11-10 14:34:36 -08001298 prepare_write_connect(con->msgr, con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001299 prepare_read_connect(con);
1300 break;
1301
1302 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001303 if (req_feat & ~server_feat) {
1304 pr_err("%s%lld %s protocol feature mismatch,"
1305 " my required %llx > server's %llx, need %llx\n",
1306 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001307 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001308 req_feat, server_feat, req_feat & ~server_feat);
1309 con->error_msg = "missing required protocol features";
1310 fail_protocol(con);
1311 return -1;
1312 }
Sage Weil31b80062009-10-06 11:31:13 -07001313 clear_bit(CONNECTING, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001314 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1315 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001316 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001317 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1318 con->peer_global_seq,
1319 le32_to_cpu(con->in_reply.connect_seq),
1320 con->connect_seq);
1321 WARN_ON(con->connect_seq !=
1322 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001323
1324 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
1325 set_bit(LOSSYTX, &con->state);
1326
Sage Weil31b80062009-10-06 11:31:13 -07001327 prepare_read_tag(con);
1328 break;
1329
1330 case CEPH_MSGR_TAG_WAIT:
1331 /*
1332 * If there is a connection race (we are opening
1333 * connections to each other), one of us may just have
1334 * to WAIT. This shouldn't happen if we are the
1335 * client.
1336 */
1337 pr_err("process_connect peer connecting WAIT\n");
1338
1339 default:
1340 pr_err("connect protocol error, will retry\n");
1341 con->error_msg = "protocol error, garbage tag during connect";
1342 return -1;
1343 }
1344 return 0;
1345}
1346
1347
1348/*
1349 * read (part of) an ack
1350 */
1351static int read_partial_ack(struct ceph_connection *con)
1352{
1353 int to = 0;
1354
1355 return read_partial(con, &to, sizeof(con->in_temp_ack),
1356 &con->in_temp_ack);
1357}
1358
1359
1360/*
1361 * We can finally discard anything that's been acked.
1362 */
1363static void process_ack(struct ceph_connection *con)
1364{
1365 struct ceph_msg *m;
1366 u64 ack = le64_to_cpu(con->in_temp_ack);
1367 u64 seq;
1368
Sage Weil31b80062009-10-06 11:31:13 -07001369 while (!list_empty(&con->out_sent)) {
1370 m = list_first_entry(&con->out_sent, struct ceph_msg,
1371 list_head);
1372 seq = le64_to_cpu(m->hdr.seq);
1373 if (seq > ack)
1374 break;
1375 dout("got ack for seq %llu type %d at %p\n", seq,
1376 le16_to_cpu(m->hdr.type), m);
1377 ceph_msg_remove(m);
1378 }
Sage Weil31b80062009-10-06 11:31:13 -07001379 prepare_read_tag(con);
1380}
1381
1382
1383
1384
Yehuda Sadeh24504182010-01-08 13:58:34 -08001385static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001386 struct kvec *section,
1387 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001388{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001389 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001390
Yehuda Sadeh24504182010-01-08 13:58:34 -08001391 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001392
Yehuda Sadeh24504182010-01-08 13:58:34 -08001393 while (section->iov_len < sec_len) {
1394 BUG_ON(section->iov_base == NULL);
1395 left = sec_len - section->iov_len;
1396 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1397 section->iov_len, left);
1398 if (ret <= 0)
1399 return ret;
1400 section->iov_len += ret;
1401 if (section->iov_len == sec_len)
1402 *crc = crc32c(0, section->iov_base,
1403 section->iov_len);
1404 }
1405
1406 return 1;
1407}
1408
1409static struct ceph_msg *ceph_alloc_msg(struct ceph_connection *con,
1410 struct ceph_msg_header *hdr,
1411 int *skip);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001412
1413
1414static int read_partial_message_pages(struct ceph_connection *con,
1415 struct page **pages,
1416 unsigned data_len, int datacrc)
1417{
1418 void *p;
1419 int ret;
1420 int left;
1421
1422 left = min((int)(data_len - con->in_msg_pos.data_pos),
1423 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1424 /* (page) data */
1425 BUG_ON(pages == NULL);
1426 p = kmap(pages[con->in_msg_pos.page]);
1427 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1428 left);
1429 if (ret > 0 && datacrc)
1430 con->in_data_crc =
1431 crc32c(con->in_data_crc,
1432 p + con->in_msg_pos.page_pos, ret);
1433 kunmap(pages[con->in_msg_pos.page]);
1434 if (ret <= 0)
1435 return ret;
1436 con->in_msg_pos.data_pos += ret;
1437 con->in_msg_pos.page_pos += ret;
1438 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1439 con->in_msg_pos.page_pos = 0;
1440 con->in_msg_pos.page++;
1441 }
1442
1443 return ret;
1444}
1445
1446#ifdef CONFIG_BLOCK
1447static int read_partial_message_bio(struct ceph_connection *con,
1448 struct bio **bio_iter, int *bio_seg,
1449 unsigned data_len, int datacrc)
1450{
1451 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1452 void *p;
1453 int ret, left;
1454
1455 if (IS_ERR(bv))
1456 return PTR_ERR(bv);
1457
1458 left = min((int)(data_len - con->in_msg_pos.data_pos),
1459 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1460
1461 p = kmap(bv->bv_page) + bv->bv_offset;
1462
1463 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1464 left);
1465 if (ret > 0 && datacrc)
1466 con->in_data_crc =
1467 crc32c(con->in_data_crc,
1468 p + con->in_msg_pos.page_pos, ret);
1469 kunmap(bv->bv_page);
1470 if (ret <= 0)
1471 return ret;
1472 con->in_msg_pos.data_pos += ret;
1473 con->in_msg_pos.page_pos += ret;
1474 if (con->in_msg_pos.page_pos == bv->bv_len) {
1475 con->in_msg_pos.page_pos = 0;
1476 iter_bio_next(bio_iter, bio_seg);
1477 }
1478
1479 return ret;
1480}
1481#endif
1482
Sage Weil31b80062009-10-06 11:31:13 -07001483/*
1484 * read (part of) a message.
1485 */
1486static int read_partial_message(struct ceph_connection *con)
1487{
1488 struct ceph_msg *m = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001489 int ret;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001490 int to, left;
Sage Weilc5c6b192010-11-09 12:40:00 -08001491 unsigned front_len, middle_len, data_len;
Sage Weil31b80062009-10-06 11:31:13 -07001492 int datacrc = con->msgr->nocrc;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001493 int skip;
Sage Weilae187562010-04-22 07:47:01 -07001494 u64 seq;
Sage Weil31b80062009-10-06 11:31:13 -07001495
1496 dout("read_partial_message con %p msg %p\n", con, m);
1497
1498 /* header */
1499 while (con->in_base_pos < sizeof(con->in_hdr)) {
1500 left = sizeof(con->in_hdr) - con->in_base_pos;
1501 ret = ceph_tcp_recvmsg(con->sock,
1502 (char *)&con->in_hdr + con->in_base_pos,
1503 left);
1504 if (ret <= 0)
1505 return ret;
1506 con->in_base_pos += ret;
1507 if (con->in_base_pos == sizeof(con->in_hdr)) {
1508 u32 crc = crc32c(0, (void *)&con->in_hdr,
1509 sizeof(con->in_hdr) - sizeof(con->in_hdr.crc));
1510 if (crc != le32_to_cpu(con->in_hdr.crc)) {
1511 pr_err("read_partial_message bad hdr "
1512 " crc %u != expected %u\n",
1513 crc, con->in_hdr.crc);
1514 return -EBADMSG;
1515 }
1516 }
1517 }
Sage Weil31b80062009-10-06 11:31:13 -07001518 front_len = le32_to_cpu(con->in_hdr.front_len);
1519 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1520 return -EIO;
1521 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1522 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1523 return -EIO;
1524 data_len = le32_to_cpu(con->in_hdr.data_len);
1525 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1526 return -EIO;
1527
Sage Weilae187562010-04-22 07:47:01 -07001528 /* verify seq# */
1529 seq = le64_to_cpu(con->in_hdr.seq);
1530 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001531 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001532 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001533 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001534 seq, con->in_seq + 1);
1535 con->in_base_pos = -front_len - middle_len - data_len -
1536 sizeof(m->footer);
1537 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001538 return 0;
1539 } else if ((s64)seq - (s64)con->in_seq > 1) {
1540 pr_err("read_partial_message bad seq %lld expected %lld\n",
1541 seq, con->in_seq + 1);
1542 con->error_msg = "bad message sequence # for incoming message";
1543 return -EBADMSG;
1544 }
1545
Sage Weil31b80062009-10-06 11:31:13 -07001546 /* allocate message? */
1547 if (!con->in_msg) {
1548 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1549 con->in_hdr.front_len, con->in_hdr.data_len);
Sage Weilae32be32010-06-13 10:30:19 -07001550 skip = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001551 con->in_msg = ceph_alloc_msg(con, &con->in_hdr, &skip);
1552 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07001553 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001554 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001555 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001556 con->in_base_pos = -front_len - middle_len - data_len -
1557 sizeof(m->footer);
1558 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001559 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001560 return 0;
1561 }
Sage Weila79832f2010-04-01 16:06:19 -07001562 if (!con->in_msg) {
Sage Weil5b3a4db2010-02-19 21:43:23 -08001563 con->error_msg =
1564 "error allocating memory for incoming message";
Sage Weila79832f2010-04-01 16:06:19 -07001565 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -07001566 }
1567 m = con->in_msg;
1568 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001569 if (m->middle)
1570 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001571
1572 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001573 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001574 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001575 else
1576 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001577 con->in_msg_pos.data_pos = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001578 }
1579
1580 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001581 ret = read_partial_message_section(con, &m->front, front_len,
1582 &con->in_front_crc);
1583 if (ret <= 0)
1584 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001585
1586 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001587 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001588 ret = read_partial_message_section(con, &m->middle->vec,
1589 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001590 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001591 if (ret <= 0)
1592 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001593 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001594#ifdef CONFIG_BLOCK
1595 if (m->bio && !m->bio_iter)
1596 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1597#endif
Sage Weil31b80062009-10-06 11:31:13 -07001598
1599 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001600 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001601 if (m->pages) {
1602 ret = read_partial_message_pages(con, m->pages,
1603 data_len, datacrc);
1604 if (ret <= 0)
1605 return ret;
1606#ifdef CONFIG_BLOCK
1607 } else if (m->bio) {
1608
1609 ret = read_partial_message_bio(con,
1610 &m->bio_iter, &m->bio_seg,
1611 data_len, datacrc);
1612 if (ret <= 0)
1613 return ret;
1614#endif
1615 } else {
1616 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07001617 }
1618 }
1619
Sage Weil31b80062009-10-06 11:31:13 -07001620 /* footer */
1621 to = sizeof(m->hdr) + sizeof(m->footer);
1622 while (con->in_base_pos < to) {
1623 left = to - con->in_base_pos;
1624 ret = ceph_tcp_recvmsg(con->sock, (char *)&m->footer +
1625 (con->in_base_pos - sizeof(m->hdr)),
1626 left);
1627 if (ret <= 0)
1628 return ret;
1629 con->in_base_pos += ret;
1630 }
1631 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1632 m, front_len, m->footer.front_crc, middle_len,
1633 m->footer.middle_crc, data_len, m->footer.data_crc);
1634
1635 /* crc ok? */
1636 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1637 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1638 m, con->in_front_crc, m->footer.front_crc);
1639 return -EBADMSG;
1640 }
1641 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1642 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1643 m, con->in_middle_crc, m->footer.middle_crc);
1644 return -EBADMSG;
1645 }
1646 if (datacrc &&
1647 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1648 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1649 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1650 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1651 return -EBADMSG;
1652 }
1653
1654 return 1; /* done! */
1655}
1656
1657/*
1658 * Process message. This happens in the worker thread. The callback should
1659 * be careful not to do anything that waits on other incoming messages or it
1660 * may deadlock.
1661 */
1662static void process_message(struct ceph_connection *con)
1663{
Sage Weil5e095e82009-12-14 14:30:34 -08001664 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07001665
Sage Weil5e095e82009-12-14 14:30:34 -08001666 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001667 con->in_msg = NULL;
1668
1669 /* if first message, set peer_name */
1670 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07001671 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07001672
Sage Weil31b80062009-10-06 11:31:13 -07001673 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08001674 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001675
1676 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1677 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07001678 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07001679 le16_to_cpu(msg->hdr.type),
1680 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1681 le32_to_cpu(msg->hdr.front_len),
1682 le32_to_cpu(msg->hdr.data_len),
1683 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1684 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08001685
1686 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001687 prepare_read_tag(con);
1688}
1689
1690
1691/*
1692 * Write something to the socket. Called in a worker thread when the
1693 * socket appears to be writeable and we have something ready to send.
1694 */
1695static int try_write(struct ceph_connection *con)
1696{
1697 struct ceph_messenger *msgr = con->msgr;
1698 int ret = 1;
1699
1700 dout("try_write start %p state %lu nref %d\n", con, con->state,
1701 atomic_read(&con->nref));
1702
Sage Weil31b80062009-10-06 11:31:13 -07001703more:
1704 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
1705
1706 /* open the socket first? */
1707 if (con->sock == NULL) {
1708 /*
1709 * if we were STANDBY and are reconnecting _this_
1710 * connection, bump connect_seq now. Always bump
1711 * global_seq.
1712 */
1713 if (test_and_clear_bit(STANDBY, &con->state))
1714 con->connect_seq++;
1715
Sage Weileed0ef22009-11-10 14:34:36 -08001716 prepare_write_banner(msgr, con);
1717 prepare_write_connect(msgr, con, 1);
1718 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07001719 set_bit(CONNECTING, &con->state);
Sage Weileed0ef22009-11-10 14:34:36 -08001720 clear_bit(NEGOTIATING, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001721
Sage Weilcf3e5c42009-12-11 09:48:05 -08001722 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001723 con->in_tag = CEPH_MSGR_TAG_READY;
1724 dout("try_write initiating connect on %p new state %lu\n",
1725 con, con->state);
1726 con->sock = ceph_tcp_connect(con);
1727 if (IS_ERR(con->sock)) {
1728 con->sock = NULL;
1729 con->error_msg = "connect error";
1730 ret = -1;
1731 goto out;
1732 }
1733 }
1734
1735more_kvec:
1736 /* kvec data queued? */
1737 if (con->out_skip) {
1738 ret = write_partial_skip(con);
1739 if (ret <= 0)
1740 goto done;
1741 if (ret < 0) {
1742 dout("try_write write_partial_skip err %d\n", ret);
1743 goto done;
1744 }
1745 }
1746 if (con->out_kvec_left) {
1747 ret = write_partial_kvec(con);
1748 if (ret <= 0)
1749 goto done;
Sage Weil31b80062009-10-06 11:31:13 -07001750 }
1751
1752 /* msg pages? */
1753 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08001754 if (con->out_msg_done) {
1755 ceph_msg_put(con->out_msg);
1756 con->out_msg = NULL; /* we're done with this one */
1757 goto do_next;
1758 }
1759
Sage Weil31b80062009-10-06 11:31:13 -07001760 ret = write_partial_msg_pages(con);
1761 if (ret == 1)
1762 goto more_kvec; /* we need to send the footer, too! */
1763 if (ret == 0)
1764 goto done;
1765 if (ret < 0) {
1766 dout("try_write write_partial_msg_pages err %d\n",
1767 ret);
1768 goto done;
1769 }
1770 }
1771
Sage Weilc86a2932009-12-14 14:04:30 -08001772do_next:
Sage Weil31b80062009-10-06 11:31:13 -07001773 if (!test_bit(CONNECTING, &con->state)) {
1774 /* is anything else pending? */
1775 if (!list_empty(&con->out_queue)) {
1776 prepare_write_message(con);
1777 goto more;
1778 }
1779 if (con->in_seq > con->in_seq_acked) {
1780 prepare_write_ack(con);
1781 goto more;
1782 }
1783 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->state)) {
1784 prepare_write_keepalive(con);
1785 goto more;
1786 }
1787 }
1788
1789 /* Nothing to do! */
1790 clear_bit(WRITE_PENDING, &con->state);
1791 dout("try_write nothing else to write.\n");
1792done:
1793 ret = 0;
1794out:
Sage Weil31b80062009-10-06 11:31:13 -07001795 dout("try_write done on %p\n", con);
1796 return ret;
1797}
1798
1799
1800
1801/*
1802 * Read what we can from the socket.
1803 */
1804static int try_read(struct ceph_connection *con)
1805{
Sage Weil31b80062009-10-06 11:31:13 -07001806 int ret = -1;
1807
1808 if (!con->sock)
1809 return 0;
1810
1811 if (test_bit(STANDBY, &con->state))
1812 return 0;
1813
1814 dout("try_read start on %p\n", con);
Sage Weilec302642009-12-22 10:43:42 -08001815
Sage Weil31b80062009-10-06 11:31:13 -07001816more:
1817 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
1818 con->in_base_pos);
1819 if (test_bit(CONNECTING, &con->state)) {
Sage Weileed0ef22009-11-10 14:34:36 -08001820 if (!test_bit(NEGOTIATING, &con->state)) {
1821 dout("try_read connecting\n");
1822 ret = read_partial_banner(con);
1823 if (ret <= 0)
1824 goto done;
1825 if (process_banner(con) < 0) {
1826 ret = -1;
1827 goto out;
1828 }
1829 }
Sage Weil31b80062009-10-06 11:31:13 -07001830 ret = read_partial_connect(con);
1831 if (ret <= 0)
1832 goto done;
1833 if (process_connect(con) < 0) {
1834 ret = -1;
1835 goto out;
1836 }
1837 goto more;
1838 }
1839
1840 if (con->in_base_pos < 0) {
1841 /*
1842 * skipping + discarding content.
1843 *
1844 * FIXME: there must be a better way to do this!
1845 */
1846 static char buf[1024];
1847 int skip = min(1024, -con->in_base_pos);
1848 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
1849 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
1850 if (ret <= 0)
1851 goto done;
1852 con->in_base_pos += ret;
1853 if (con->in_base_pos)
1854 goto more;
1855 }
1856 if (con->in_tag == CEPH_MSGR_TAG_READY) {
1857 /*
1858 * what's next?
1859 */
1860 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
1861 if (ret <= 0)
1862 goto done;
1863 dout("try_read got tag %d\n", (int)con->in_tag);
1864 switch (con->in_tag) {
1865 case CEPH_MSGR_TAG_MSG:
1866 prepare_read_message(con);
1867 break;
1868 case CEPH_MSGR_TAG_ACK:
1869 prepare_read_ack(con);
1870 break;
1871 case CEPH_MSGR_TAG_CLOSE:
1872 set_bit(CLOSED, &con->state); /* fixme */
1873 goto done;
1874 default:
1875 goto bad_tag;
1876 }
1877 }
1878 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
1879 ret = read_partial_message(con);
1880 if (ret <= 0) {
1881 switch (ret) {
1882 case -EBADMSG:
1883 con->error_msg = "bad crc";
1884 ret = -EIO;
1885 goto out;
1886 case -EIO:
1887 con->error_msg = "io error";
1888 goto out;
1889 default:
1890 goto done;
1891 }
1892 }
1893 if (con->in_tag == CEPH_MSGR_TAG_READY)
1894 goto more;
1895 process_message(con);
1896 goto more;
1897 }
1898 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
1899 ret = read_partial_ack(con);
1900 if (ret <= 0)
1901 goto done;
1902 process_ack(con);
1903 goto more;
1904 }
1905
1906done:
1907 ret = 0;
1908out:
1909 dout("try_read done on %p\n", con);
1910 return ret;
1911
1912bad_tag:
1913 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
1914 con->error_msg = "protocol error, garbage tag";
1915 ret = -1;
1916 goto out;
1917}
1918
1919
1920/*
1921 * Atomically queue work on a connection. Bump @con reference to
1922 * avoid races with connection teardown.
1923 *
1924 * There is some trickery going on with QUEUED and BUSY because we
1925 * only want a _single_ thread operating on each connection at any
1926 * point in time, but we want to use all available CPUs.
1927 *
1928 * The worker thread only proceeds if it can atomically set BUSY. It
1929 * clears QUEUED and does it's thing. When it thinks it's done, it
1930 * clears BUSY, then rechecks QUEUED.. if it's set again, it loops
1931 * (tries again to set BUSY).
1932 *
1933 * To queue work, we first set QUEUED, _then_ if BUSY isn't set, we
1934 * try to queue work. If that fails (work is already queued, or BUSY)
1935 * we give up (work also already being done or is queued) but leave QUEUED
1936 * set so that the worker thread will loop if necessary.
1937 */
1938static void queue_con(struct ceph_connection *con)
1939{
1940 if (test_bit(DEAD, &con->state)) {
1941 dout("queue_con %p ignoring: DEAD\n",
1942 con);
1943 return;
1944 }
1945
1946 if (!con->ops->get(con)) {
1947 dout("queue_con %p ref count 0\n", con);
1948 return;
1949 }
1950
1951 set_bit(QUEUED, &con->state);
1952 if (test_bit(BUSY, &con->state)) {
1953 dout("queue_con %p - already BUSY\n", con);
1954 con->ops->put(con);
1955 } else if (!queue_work(ceph_msgr_wq, &con->work.work)) {
1956 dout("queue_con %p - already queued\n", con);
1957 con->ops->put(con);
1958 } else {
1959 dout("queue_con %p\n", con);
1960 }
1961}
1962
1963/*
1964 * Do some work on a connection. Drop a connection ref when we're done.
1965 */
1966static void con_work(struct work_struct *work)
1967{
1968 struct ceph_connection *con = container_of(work, struct ceph_connection,
1969 work.work);
1970 int backoff = 0;
1971
1972more:
1973 if (test_and_set_bit(BUSY, &con->state) != 0) {
1974 dout("con_work %p BUSY already set\n", con);
1975 goto out;
1976 }
1977 dout("con_work %p start, clearing QUEUED\n", con);
1978 clear_bit(QUEUED, &con->state);
1979
Sage Weil9dd46582010-04-28 13:51:50 -07001980 mutex_lock(&con->mutex);
1981
Sage Weil31b80062009-10-06 11:31:13 -07001982 if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
1983 dout("con_work CLOSED\n");
1984 con_close_socket(con);
1985 goto done;
1986 }
1987 if (test_and_clear_bit(OPENING, &con->state)) {
1988 /* reopen w/ new peer */
1989 dout("con_work OPENING\n");
1990 con_close_socket(con);
1991 }
1992
1993 if (test_and_clear_bit(SOCK_CLOSED, &con->state) ||
1994 try_read(con) < 0 ||
1995 try_write(con) < 0) {
Sage Weil9dd46582010-04-28 13:51:50 -07001996 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001997 backoff = 1;
1998 ceph_fault(con); /* error/fault path */
Sage Weil9dd46582010-04-28 13:51:50 -07001999 goto done_unlocked;
Sage Weil31b80062009-10-06 11:31:13 -07002000 }
2001
2002done:
Sage Weil9dd46582010-04-28 13:51:50 -07002003 mutex_unlock(&con->mutex);
2004
2005done_unlocked:
Sage Weil31b80062009-10-06 11:31:13 -07002006 clear_bit(BUSY, &con->state);
2007 dout("con->state=%lu\n", con->state);
2008 if (test_bit(QUEUED, &con->state)) {
Sage Weile2663ab2010-02-16 22:01:03 -08002009 if (!backoff || test_bit(OPENING, &con->state)) {
Sage Weil31b80062009-10-06 11:31:13 -07002010 dout("con_work %p QUEUED reset, looping\n", con);
2011 goto more;
2012 }
2013 dout("con_work %p QUEUED reset, but just faulted\n", con);
2014 clear_bit(QUEUED, &con->state);
2015 }
2016 dout("con_work %p done\n", con);
2017
2018out:
2019 con->ops->put(con);
2020}
2021
2022
2023/*
2024 * Generic error/fault handler. A retry mechanism is used with
2025 * exponential backoff
2026 */
2027static void ceph_fault(struct ceph_connection *con)
2028{
2029 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002030 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002031 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002032 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002033
2034 if (test_bit(LOSSYTX, &con->state)) {
2035 dout("fault on LOSSYTX channel\n");
2036 goto out;
2037 }
2038
Sage Weilec302642009-12-22 10:43:42 -08002039 mutex_lock(&con->mutex);
Sage Weil91e45ce32010-02-15 12:05:09 -08002040 if (test_bit(CLOSED, &con->state))
2041 goto out_unlock;
Sage Weilec302642009-12-22 10:43:42 -08002042
Sage Weil31b80062009-10-06 11:31:13 -07002043 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002044
2045 if (con->in_msg) {
2046 ceph_msg_put(con->in_msg);
2047 con->in_msg = NULL;
2048 }
Sage Weil31b80062009-10-06 11:31:13 -07002049
Sage Weile80a52d2010-02-25 12:40:45 -08002050 /* Requeue anything that hasn't been acked */
2051 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002052
Sage Weil31b80062009-10-06 11:31:13 -07002053 /* If there are no messages in the queue, place the connection
2054 * in a STANDBY state (i.e., don't try to reconnect just yet). */
Sage Weil31b80062009-10-06 11:31:13 -07002055 if (list_empty(&con->out_queue) && !con->out_keepalive_pending) {
2056 dout("fault setting STANDBY\n");
2057 set_bit(STANDBY, &con->state);
Sage Weile80a52d2010-02-25 12:40:45 -08002058 } else {
2059 /* retry after a delay. */
2060 if (con->delay == 0)
2061 con->delay = BASE_DELAY_INTERVAL;
2062 else if (con->delay < MAX_DELAY_INTERVAL)
2063 con->delay *= 2;
2064 dout("fault queueing %p delay %lu\n", con, con->delay);
2065 con->ops->get(con);
2066 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2067 round_jiffies_relative(con->delay)) == 0)
2068 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002069 }
2070
Sage Weil91e45ce32010-02-15 12:05:09 -08002071out_unlock:
2072 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002073out:
Sage Weil161fd652010-02-25 12:38:57 -08002074 /*
2075 * in case we faulted due to authentication, invalidate our
2076 * current tickets so that we can get new ones.
Sage Weil213c99e2010-08-03 10:25:11 -07002077 */
Sage Weil161fd652010-02-25 12:38:57 -08002078 if (con->auth_retry && con->ops->invalidate_authorizer) {
2079 dout("calling invalidate_authorizer()\n");
2080 con->ops->invalidate_authorizer(con);
2081 }
2082
Sage Weil31b80062009-10-06 11:31:13 -07002083 if (con->ops->fault)
2084 con->ops->fault(con);
2085}
2086
2087
2088
2089/*
2090 * create a new messenger instance
2091 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002092struct ceph_messenger *ceph_messenger_create(struct ceph_entity_addr *myaddr,
2093 u32 supported_features,
2094 u32 required_features)
Sage Weil31b80062009-10-06 11:31:13 -07002095{
2096 struct ceph_messenger *msgr;
2097
2098 msgr = kzalloc(sizeof(*msgr), GFP_KERNEL);
2099 if (msgr == NULL)
2100 return ERR_PTR(-ENOMEM);
2101
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002102 msgr->supported_features = supported_features;
2103 msgr->required_features = required_features;
2104
Sage Weil31b80062009-10-06 11:31:13 -07002105 spin_lock_init(&msgr->global_seq_lock);
2106
2107 /* the zero page is needed if a request is "canceled" while the message
2108 * is being written over the socket */
Yehuda Sadeh31459fe2010-03-17 13:54:02 -07002109 msgr->zero_page = __page_cache_alloc(GFP_KERNEL | __GFP_ZERO);
Sage Weil31b80062009-10-06 11:31:13 -07002110 if (!msgr->zero_page) {
2111 kfree(msgr);
2112 return ERR_PTR(-ENOMEM);
2113 }
2114 kmap(msgr->zero_page);
2115
2116 if (myaddr)
2117 msgr->inst.addr = *myaddr;
2118
2119 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002120 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002121 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002122 encode_my_addr(msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002123
2124 dout("messenger_create %p\n", msgr);
2125 return msgr;
2126}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002127EXPORT_SYMBOL(ceph_messenger_create);
Sage Weil31b80062009-10-06 11:31:13 -07002128
2129void ceph_messenger_destroy(struct ceph_messenger *msgr)
2130{
2131 dout("destroy %p\n", msgr);
2132 kunmap(msgr->zero_page);
2133 __free_page(msgr->zero_page);
2134 kfree(msgr);
2135 dout("destroyed messenger %p\n", msgr);
2136}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002137EXPORT_SYMBOL(ceph_messenger_destroy);
Sage Weil31b80062009-10-06 11:31:13 -07002138
2139/*
2140 * Queue up an outgoing message on the given connection.
2141 */
2142void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2143{
2144 if (test_bit(CLOSED, &con->state)) {
2145 dout("con_send %p closed, dropping %p\n", con, msg);
2146 ceph_msg_put(msg);
2147 return;
2148 }
2149
2150 /* set src+dst */
Sage Weildbad1852010-03-25 15:45:38 -07002151 msg->hdr.src = con->msgr->inst.name;
Sage Weil31b80062009-10-06 11:31:13 -07002152
Sage Weil3ca02ef2010-03-01 15:25:00 -08002153 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2154
Sage Weile84346b2010-05-11 21:20:38 -07002155 msg->needs_out_seq = true;
2156
Sage Weil31b80062009-10-06 11:31:13 -07002157 /* queue */
Sage Weilec302642009-12-22 10:43:42 -08002158 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002159 BUG_ON(!list_empty(&msg->list_head));
2160 list_add_tail(&msg->list_head, &con->out_queue);
2161 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2162 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2163 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2164 le32_to_cpu(msg->hdr.front_len),
2165 le32_to_cpu(msg->hdr.middle_len),
2166 le32_to_cpu(msg->hdr.data_len));
Sage Weilec302642009-12-22 10:43:42 -08002167 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002168
2169 /* if there wasn't anything waiting to send before, queue
2170 * new work */
2171 if (test_and_set_bit(WRITE_PENDING, &con->state) == 0)
2172 queue_con(con);
2173}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002174EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002175
2176/*
2177 * Revoke a message that was previously queued for send
2178 */
2179void ceph_con_revoke(struct ceph_connection *con, struct ceph_msg *msg)
2180{
Sage Weilec302642009-12-22 10:43:42 -08002181 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002182 if (!list_empty(&msg->list_head)) {
Sage Weiled98ada2010-07-05 12:15:14 -07002183 dout("con_revoke %p msg %p - was on queue\n", con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002184 list_del_init(&msg->list_head);
2185 ceph_msg_put(msg);
2186 msg->hdr.seq = 0;
Sage Weiled98ada2010-07-05 12:15:14 -07002187 }
2188 if (con->out_msg == msg) {
2189 dout("con_revoke %p msg %p - was sending\n", con, msg);
2190 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002191 if (con->out_kvec_is_msg) {
2192 con->out_skip = con->out_kvec_bytes;
2193 con->out_kvec_is_msg = false;
2194 }
Sage Weiled98ada2010-07-05 12:15:14 -07002195 ceph_msg_put(msg);
2196 msg->hdr.seq = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002197 }
Sage Weilec302642009-12-22 10:43:42 -08002198 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002199}
2200
2201/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002202 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002203 */
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002204void ceph_con_revoke_message(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002205{
2206 mutex_lock(&con->mutex);
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002207 if (con->in_msg && con->in_msg == msg) {
2208 unsigned front_len = le32_to_cpu(con->in_hdr.front_len);
2209 unsigned middle_len = le32_to_cpu(con->in_hdr.middle_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002210 unsigned data_len = le32_to_cpu(con->in_hdr.data_len);
2211
2212 /* skip rest of message */
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002213 dout("con_revoke_pages %p msg %p revoked\n", con, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002214 con->in_base_pos = con->in_base_pos -
2215 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002216 front_len -
2217 middle_len -
2218 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002219 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002220 ceph_msg_put(con->in_msg);
2221 con->in_msg = NULL;
2222 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002223 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002224 } else {
2225 dout("con_revoke_pages %p msg %p pages %p no-op\n",
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002226 con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002227 }
2228 mutex_unlock(&con->mutex);
2229}
2230
2231/*
Sage Weil31b80062009-10-06 11:31:13 -07002232 * Queue a keepalive byte to ensure the tcp connection is alive.
2233 */
2234void ceph_con_keepalive(struct ceph_connection *con)
2235{
2236 if (test_and_set_bit(KEEPALIVE_PENDING, &con->state) == 0 &&
2237 test_and_set_bit(WRITE_PENDING, &con->state) == 0)
2238 queue_con(con);
2239}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002240EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002241
2242
2243/*
2244 * construct a new message with given type, size
2245 * the new msg has a ref count of 1.
2246 */
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002247struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags)
Sage Weil31b80062009-10-06 11:31:13 -07002248{
2249 struct ceph_msg *m;
2250
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002251 m = kmalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002252 if (m == NULL)
2253 goto out;
Sage Weilc2e552e2009-12-07 15:55:05 -08002254 kref_init(&m->kref);
Sage Weil31b80062009-10-06 11:31:13 -07002255 INIT_LIST_HEAD(&m->list_head);
2256
Sage Weil45c6ceb2010-05-11 15:01:51 -07002257 m->hdr.tid = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002258 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002259 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2260 m->hdr.version = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002261 m->hdr.front_len = cpu_to_le32(front_len);
2262 m->hdr.middle_len = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002263 m->hdr.data_len = 0;
2264 m->hdr.data_off = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002265 m->hdr.reserved = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002266 m->footer.front_crc = 0;
2267 m->footer.middle_crc = 0;
2268 m->footer.data_crc = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002269 m->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002270 m->front_max = front_len;
2271 m->front_is_vmalloc = false;
2272 m->more_to_follow = false;
2273 m->pool = NULL;
2274
2275 /* front */
2276 if (front_len) {
2277 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002278 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002279 PAGE_KERNEL);
2280 m->front_is_vmalloc = true;
2281 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002282 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002283 }
2284 if (m->front.iov_base == NULL) {
2285 pr_err("msg_new can't allocate %d bytes\n",
2286 front_len);
2287 goto out2;
2288 }
2289 } else {
2290 m->front.iov_base = NULL;
2291 }
2292 m->front.iov_len = front_len;
2293
2294 /* middle */
2295 m->middle = NULL;
2296
2297 /* data */
Sage Weilbb257662010-04-01 16:07:23 -07002298 m->nr_pages = 0;
Sage Weilc5c6b192010-11-09 12:40:00 -08002299 m->page_alignment = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002300 m->pages = NULL;
Sage Weil58bb3b32009-12-23 12:12:31 -08002301 m->pagelist = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002302 m->bio = NULL;
2303 m->bio_iter = NULL;
2304 m->bio_seg = 0;
2305 m->trail = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002306
Sage Weilbb257662010-04-01 16:07:23 -07002307 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002308 return m;
2309
2310out2:
2311 ceph_msg_put(m);
2312out:
Sage Weilbb257662010-04-01 16:07:23 -07002313 pr_err("msg_new can't create type %d front %d\n", type, front_len);
Sage Weila79832f2010-04-01 16:06:19 -07002314 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002315}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002316EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002317
2318/*
Sage Weil31b80062009-10-06 11:31:13 -07002319 * Allocate "middle" portion of a message, if it is needed and wasn't
2320 * allocated by alloc_msg. This allows us to read a small fixed-size
2321 * per-type header in the front and then gracefully fail (i.e.,
2322 * propagate the error to the caller based on info in the front) when
2323 * the middle is too large.
2324 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002325static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002326{
2327 int type = le16_to_cpu(msg->hdr.type);
2328 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2329
2330 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2331 ceph_msg_type_name(type), middle_len);
2332 BUG_ON(!middle_len);
2333 BUG_ON(msg->middle);
2334
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002335 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002336 if (!msg->middle)
2337 return -ENOMEM;
2338 return 0;
2339}
2340
Yehuda Sadeh24504182010-01-08 13:58:34 -08002341/*
2342 * Generic message allocator, for incoming messages.
2343 */
2344static struct ceph_msg *ceph_alloc_msg(struct ceph_connection *con,
2345 struct ceph_msg_header *hdr,
2346 int *skip)
2347{
2348 int type = le16_to_cpu(hdr->type);
2349 int front_len = le32_to_cpu(hdr->front_len);
2350 int middle_len = le32_to_cpu(hdr->middle_len);
2351 struct ceph_msg *msg = NULL;
2352 int ret;
2353
2354 if (con->ops->alloc_msg) {
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002355 mutex_unlock(&con->mutex);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002356 msg = con->ops->alloc_msg(con, hdr, skip);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002357 mutex_lock(&con->mutex);
Sage Weila79832f2010-04-01 16:06:19 -07002358 if (!msg || *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002359 return NULL;
2360 }
2361 if (!msg) {
2362 *skip = 0;
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002363 msg = ceph_msg_new(type, front_len, GFP_NOFS);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002364 if (!msg) {
2365 pr_err("unable to allocate msg type %d len %d\n",
2366 type, front_len);
Sage Weila79832f2010-04-01 16:06:19 -07002367 return NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002368 }
Sage Weilc5c6b192010-11-09 12:40:00 -08002369 msg->page_alignment = le16_to_cpu(hdr->data_off);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002370 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002371 memcpy(&msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002372
Sage Weilbb257662010-04-01 16:07:23 -07002373 if (middle_len && !msg->middle) {
Yehuda Sadeh24504182010-01-08 13:58:34 -08002374 ret = ceph_alloc_middle(con, msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002375 if (ret < 0) {
2376 ceph_msg_put(msg);
Sage Weila79832f2010-04-01 16:06:19 -07002377 return NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002378 }
2379 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002380
Yehuda Sadeh24504182010-01-08 13:58:34 -08002381 return msg;
2382}
2383
Sage Weil31b80062009-10-06 11:31:13 -07002384
2385/*
2386 * Free a generically kmalloc'd message.
2387 */
2388void ceph_msg_kfree(struct ceph_msg *m)
2389{
2390 dout("msg_kfree %p\n", m);
2391 if (m->front_is_vmalloc)
2392 vfree(m->front.iov_base);
2393 else
2394 kfree(m->front.iov_base);
2395 kfree(m);
2396}
2397
2398/*
2399 * Drop a msg ref. Destroy as needed.
2400 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002401void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002402{
Sage Weilc2e552e2009-12-07 15:55:05 -08002403 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002404
Sage Weilc2e552e2009-12-07 15:55:05 -08002405 dout("ceph_msg_put last one on %p\n", m);
2406 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002407
Sage Weilc2e552e2009-12-07 15:55:05 -08002408 /* drop middle, data, if any */
2409 if (m->middle) {
2410 ceph_buffer_put(m->middle);
2411 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002412 }
Sage Weilc2e552e2009-12-07 15:55:05 -08002413 m->nr_pages = 0;
2414 m->pages = NULL;
2415
Sage Weil58bb3b32009-12-23 12:12:31 -08002416 if (m->pagelist) {
2417 ceph_pagelist_release(m->pagelist);
2418 kfree(m->pagelist);
2419 m->pagelist = NULL;
2420 }
2421
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002422 m->trail = NULL;
2423
Sage Weilc2e552e2009-12-07 15:55:05 -08002424 if (m->pool)
2425 ceph_msgpool_put(m->pool, m);
2426 else
2427 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002428}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002429EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002430
2431void ceph_msg_dump(struct ceph_msg *msg)
2432{
2433 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2434 msg->front_max, msg->nr_pages);
2435 print_hex_dump(KERN_DEBUG, "header: ",
2436 DUMP_PREFIX_OFFSET, 16, 1,
2437 &msg->hdr, sizeof(msg->hdr), true);
2438 print_hex_dump(KERN_DEBUG, " front: ",
2439 DUMP_PREFIX_OFFSET, 16, 1,
2440 msg->front.iov_base, msg->front.iov_len, true);
2441 if (msg->middle)
2442 print_hex_dump(KERN_DEBUG, "middle: ",
2443 DUMP_PREFIX_OFFSET, 16, 1,
2444 msg->middle->vec.iov_base,
2445 msg->middle->vec.iov_len, true);
2446 print_hex_dump(KERN_DEBUG, "footer: ",
2447 DUMP_PREFIX_OFFSET, 16, 1,
2448 &msg->footer, sizeof(msg->footer), true);
2449}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002450EXPORT_SYMBOL(ceph_msg_dump);