libceph: move msgr clear_standby under con mutex protection
[deliverable/linux.git] / net / ceph / messenger.c
CommitLineData
3d14c5d2 1#include <linux/ceph/ceph_debug.h>
31b8006e
SW
2
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>
5a0e3ad6 9#include <linux/slab.h>
31b8006e
SW
10#include <linux/socket.h>
11#include <linux/string.h>
68b4476b
YS
12#include <linux/bio.h>
13#include <linux/blkdev.h>
ee3b56f2 14#include <linux/dns_resolver.h>
31b8006e
SW
15#include <net/tcp.h>
16
3d14c5d2
YS
17#include <linux/ceph/libceph.h>
18#include <linux/ceph/messenger.h>
19#include <linux/ceph/decode.h>
20#include <linux/ceph/pagelist.h>
bc3b2d7f 21#include <linux/export.h>
31b8006e
SW
22
23/*
24 * Ceph uses the messenger to exchange ceph_msg messages with other
25 * hosts in the system. The messenger provides ordered and reliable
26 * delivery. We tolerate TCP disconnects by reconnecting (with
27 * exponential backoff) in the case of a fault (disconnection, bad
28 * crc, protocol error). Acks allow sent messages to be discarded by
29 * the sender.
30 */
31
bc18f4b1
AE
32/*
33 * We track the state of the socket on a given connection using
34 * values defined below. The transition to a new socket state is
35 * handled by a function which verifies we aren't coming from an
36 * unexpected state.
37 *
38 * --------
39 * | NEW* | transient initial state
40 * --------
41 * | con_sock_state_init()
42 * v
43 * ----------
44 * | CLOSED | initialized, but no socket (and no
45 * ---------- TCP connection)
46 * ^ \
47 * | \ con_sock_state_connecting()
48 * | ----------------------
49 * | \
50 * + con_sock_state_closed() \
fbb85a47
SW
51 * |+--------------------------- \
52 * | \ \ \
53 * | ----------- \ \
54 * | | CLOSING | socket event; \ \
55 * | ----------- await close \ \
56 * | ^ \ |
57 * | | \ |
58 * | + con_sock_state_closing() \ |
59 * | / \ | |
60 * | / --------------- | |
61 * | / \ v v
bc18f4b1
AE
62 * | / --------------
63 * | / -----------------| CONNECTING | socket created, TCP
64 * | | / -------------- connect initiated
65 * | | | con_sock_state_connected()
66 * | | v
67 * -------------
68 * | CONNECTED | TCP connection established
69 * -------------
70 *
71 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
72 */
ce2c8903
AE
73
74#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
75#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
76#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
77#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
78#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
79
31b8006e
SW
80/* static tag bytes (protocol control messages) */
81static char tag_msg = CEPH_MSGR_TAG_MSG;
82static char tag_ack = CEPH_MSGR_TAG_ACK;
83static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
84
a6a5349d
SW
85#ifdef CONFIG_LOCKDEP
86static struct lock_class_key socket_class;
87#endif
88
84495f49
AE
89/*
90 * When skipping (ignoring) a block of input we read it into a "skip
91 * buffer," which is this many bytes in size.
92 */
93#define SKIP_BUF_SIZE 1024
31b8006e
SW
94
95static void queue_con(struct ceph_connection *con);
96static void con_work(struct work_struct *);
97static void ceph_fault(struct ceph_connection *con);
98
31b8006e 99/*
f64a9317
AE
100 * Nicely render a sockaddr as a string. An array of formatted
101 * strings is used, to approximate reentrancy.
31b8006e 102 */
f64a9317
AE
103#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
104#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
105#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
106#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
107
108static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
109static atomic_t addr_str_seq = ATOMIC_INIT(0);
31b8006e 110
57666519 111static struct page *zero_page; /* used in certain error cases */
57666519 112
3d14c5d2 113const char *ceph_pr_addr(const struct sockaddr_storage *ss)
31b8006e
SW
114{
115 int i;
116 char *s;
99f0f3b2
AE
117 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
118 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
31b8006e 119
f64a9317 120 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
31b8006e
SW
121 s = addr_str[i];
122
123 switch (ss->ss_family) {
124 case AF_INET:
bd406145
AE
125 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
126 ntohs(in4->sin_port));
31b8006e
SW
127 break;
128
129 case AF_INET6:
bd406145
AE
130 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
131 ntohs(in6->sin6_port));
31b8006e
SW
132 break;
133
134 default:
d3002b97
AE
135 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
136 ss->ss_family);
31b8006e
SW
137 }
138
139 return s;
140}
3d14c5d2 141EXPORT_SYMBOL(ceph_pr_addr);
31b8006e 142
63f2d211
SW
143static void encode_my_addr(struct ceph_messenger *msgr)
144{
145 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
146 ceph_encode_addr(&msgr->my_enc_addr);
147}
148
31b8006e
SW
149/*
150 * work queue for all reading and writing to/from the socket.
151 */
e0f43c94 152static struct workqueue_struct *ceph_msgr_wq;
31b8006e 153
6173d1f0
AE
154void _ceph_msgr_exit(void)
155{
d3002b97 156 if (ceph_msgr_wq) {
6173d1f0 157 destroy_workqueue(ceph_msgr_wq);
d3002b97
AE
158 ceph_msgr_wq = NULL;
159 }
6173d1f0 160
6173d1f0
AE
161 BUG_ON(zero_page == NULL);
162 kunmap(zero_page);
163 page_cache_release(zero_page);
164 zero_page = NULL;
165}
166
3d14c5d2 167int ceph_msgr_init(void)
31b8006e 168{
57666519
AE
169 BUG_ON(zero_page != NULL);
170 zero_page = ZERO_PAGE(0);
171 page_cache_get(zero_page);
172
f363e45f 173 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
6173d1f0
AE
174 if (ceph_msgr_wq)
175 return 0;
57666519 176
6173d1f0
AE
177 pr_err("msgr_init failed to create workqueue\n");
178 _ceph_msgr_exit();
57666519 179
6173d1f0 180 return -ENOMEM;
31b8006e 181}
3d14c5d2 182EXPORT_SYMBOL(ceph_msgr_init);
31b8006e
SW
183
184void ceph_msgr_exit(void)
185{
57666519 186 BUG_ON(ceph_msgr_wq == NULL);
57666519 187
6173d1f0 188 _ceph_msgr_exit();
31b8006e 189}
3d14c5d2 190EXPORT_SYMBOL(ceph_msgr_exit);
31b8006e 191
cd84db6e 192void ceph_msgr_flush(void)
a922d38f
SW
193{
194 flush_workqueue(ceph_msgr_wq);
195}
3d14c5d2 196EXPORT_SYMBOL(ceph_msgr_flush);
a922d38f 197
ce2c8903
AE
198/* Connection socket state transition functions */
199
200static void con_sock_state_init(struct ceph_connection *con)
201{
202 int old_state;
203
204 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
205 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
206 printk("%s: unexpected old state %d\n", __func__, old_state);
207}
208
209static void con_sock_state_connecting(struct ceph_connection *con)
210{
211 int old_state;
212
213 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
214 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
215 printk("%s: unexpected old state %d\n", __func__, old_state);
216}
217
218static void con_sock_state_connected(struct ceph_connection *con)
219{
220 int old_state;
221
222 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
223 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
224 printk("%s: unexpected old state %d\n", __func__, old_state);
225}
226
227static void con_sock_state_closing(struct ceph_connection *con)
228{
229 int old_state;
230
231 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
232 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
233 old_state != CON_SOCK_STATE_CONNECTED &&
234 old_state != CON_SOCK_STATE_CLOSING))
235 printk("%s: unexpected old state %d\n", __func__, old_state);
236}
237
238static void con_sock_state_closed(struct ceph_connection *con)
239{
240 int old_state;
241
242 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
243 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
fbb85a47
SW
244 old_state != CON_SOCK_STATE_CLOSING &&
245 old_state != CON_SOCK_STATE_CONNECTING))
ce2c8903
AE
246 printk("%s: unexpected old state %d\n", __func__, old_state);
247}
a922d38f 248
31b8006e
SW
249/*
250 * socket callback functions
251 */
252
253/* data available on socket, or listen socket received a connect */
327800bd 254static void ceph_sock_data_ready(struct sock *sk, int count_unused)
31b8006e 255{
bd406145 256 struct ceph_connection *con = sk->sk_user_data;
a2a32584
GH
257 if (atomic_read(&con->msgr->stopping)) {
258 return;
259 }
bd406145 260
31b8006e 261 if (sk->sk_state != TCP_CLOSE_WAIT) {
327800bd 262 dout("%s on %p state = %lu, queueing work\n", __func__,
31b8006e
SW
263 con, con->state);
264 queue_con(con);
265 }
266}
267
268/* socket has buffer space for writing */
327800bd 269static void ceph_sock_write_space(struct sock *sk)
31b8006e 270{
d3002b97 271 struct ceph_connection *con = sk->sk_user_data;
31b8006e 272
182fac26
JS
273 /* only queue to workqueue if there is data we want to write,
274 * and there is sufficient space in the socket buffer to accept
327800bd 275 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
182fac26
JS
276 * doesn't get called again until try_write() fills the socket
277 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
278 * and net/core/stream.c:sk_stream_write_space().
279 */
928443cd 280 if (test_bit(WRITE_PENDING, &con->flags)) {
182fac26 281 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
327800bd 282 dout("%s %p queueing write work\n", __func__, con);
182fac26
JS
283 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
284 queue_con(con);
285 }
31b8006e 286 } else {
327800bd 287 dout("%s %p nothing to write\n", __func__, con);
31b8006e 288 }
31b8006e
SW
289}
290
291/* socket's state has changed */
327800bd 292static void ceph_sock_state_change(struct sock *sk)
31b8006e 293{
bd406145 294 struct ceph_connection *con = sk->sk_user_data;
31b8006e 295
327800bd 296 dout("%s %p state = %lu sk_state = %u\n", __func__,
31b8006e
SW
297 con, con->state, sk->sk_state);
298
299 if (test_bit(CLOSED, &con->state))
300 return;
301
302 switch (sk->sk_state) {
303 case TCP_CLOSE:
327800bd 304 dout("%s TCP_CLOSE\n", __func__);
31b8006e 305 case TCP_CLOSE_WAIT:
327800bd 306 dout("%s TCP_CLOSE_WAIT\n", __func__);
ce2c8903 307 con_sock_state_closing(con);
d65c9e0b
AE
308 set_bit(SOCK_CLOSED, &con->flags);
309 queue_con(con);
31b8006e
SW
310 break;
311 case TCP_ESTABLISHED:
327800bd 312 dout("%s TCP_ESTABLISHED\n", __func__);
ce2c8903 313 con_sock_state_connected(con);
31b8006e
SW
314 queue_con(con);
315 break;
d3002b97
AE
316 default: /* Everything else is uninteresting */
317 break;
31b8006e
SW
318 }
319}
320
321/*
322 * set up socket callbacks
323 */
324static void set_sock_callbacks(struct socket *sock,
325 struct ceph_connection *con)
326{
327 struct sock *sk = sock->sk;
bd406145 328 sk->sk_user_data = con;
327800bd
AE
329 sk->sk_data_ready = ceph_sock_data_ready;
330 sk->sk_write_space = ceph_sock_write_space;
331 sk->sk_state_change = ceph_sock_state_change;
31b8006e
SW
332}
333
334
335/*
336 * socket helpers
337 */
338
339/*
340 * initiate connection to a remote socket.
341 */
41617d0c 342static int ceph_tcp_connect(struct ceph_connection *con)
31b8006e 343{
f91d3471 344 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
31b8006e
SW
345 struct socket *sock;
346 int ret;
347
348 BUG_ON(con->sock);
f91d3471
SW
349 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
350 IPPROTO_TCP, &sock);
31b8006e 351 if (ret)
41617d0c 352 return ret;
31b8006e
SW
353 sock->sk->sk_allocation = GFP_NOFS;
354
a6a5349d
SW
355#ifdef CONFIG_LOCKDEP
356 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
357#endif
358
31b8006e
SW
359 set_sock_callbacks(sock, con);
360
3d14c5d2 361 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
31b8006e 362
89a86be0 363 con_sock_state_connecting(con);
f91d3471
SW
364 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
365 O_NONBLOCK);
31b8006e
SW
366 if (ret == -EINPROGRESS) {
367 dout("connect %s EINPROGRESS sk_state = %u\n",
3d14c5d2 368 ceph_pr_addr(&con->peer_addr.in_addr),
31b8006e 369 sock->sk->sk_state);
a5bc3129 370 } else if (ret < 0) {
31b8006e 371 pr_err("connect %s error %d\n",
3d14c5d2 372 ceph_pr_addr(&con->peer_addr.in_addr), ret);
31b8006e 373 sock_release(sock);
31b8006e 374 con->error_msg = "connect error";
31b8006e 375
41617d0c 376 return ret;
a5bc3129
AE
377 }
378 con->sock = sock;
41617d0c 379 return 0;
31b8006e
SW
380}
381
382static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
383{
384 struct kvec iov = {buf, len};
385 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
98bdb0aa 386 int r;
31b8006e 387
98bdb0aa
SW
388 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
389 if (r == -EAGAIN)
390 r = 0;
391 return r;
31b8006e
SW
392}
393
394/*
395 * write something. @more is true if caller will be sending more data
396 * shortly.
397 */
398static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
399 size_t kvlen, size_t len, int more)
400{
401 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
42961d23 402 int r;
31b8006e
SW
403
404 if (more)
405 msg.msg_flags |= MSG_MORE;
406 else
407 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
408
42961d23
SW
409 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
410 if (r == -EAGAIN)
411 r = 0;
412 return r;
31b8006e
SW
413}
414
31739139
AE
415static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
416 int offset, size_t size, int more)
417{
418 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
419 int ret;
420
421 ret = kernel_sendpage(sock, page, offset, size, flags);
422 if (ret == -EAGAIN)
423 ret = 0;
424
425 return ret;
426}
427
31b8006e
SW
428
429/*
430 * Shutdown/close the socket for the given connection.
431 */
432static int con_close_socket(struct ceph_connection *con)
433{
434 int rc;
435
436 dout("con_close_socket on %p sock %p\n", con, con->sock);
437 if (!con->sock)
438 return 0;
31b8006e
SW
439 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
440 sock_release(con->sock);
441 con->sock = NULL;
456ea468
AE
442
443 /*
444 * Forcibly clear the SOCK_CLOSE flag. It gets set
445 * independent of the connection mutex, and we could have
446 * received a socket close event before we had the chance to
447 * shut the socket down.
448 */
a8d00e3c 449 clear_bit(SOCK_CLOSED, &con->flags);
ce2c8903 450 con_sock_state_closed(con);
31b8006e
SW
451 return rc;
452}
453
454/*
455 * Reset a connection. Discard all incoming and outgoing messages
456 * and clear *_seq state.
457 */
458static void ceph_msg_remove(struct ceph_msg *msg)
459{
460 list_del_init(&msg->list_head);
38941f80 461 BUG_ON(msg->con == NULL);
36eb71aa 462 msg->con->ops->put(msg->con);
38941f80
AE
463 msg->con = NULL;
464
31b8006e
SW
465 ceph_msg_put(msg);
466}
467static void ceph_msg_remove_list(struct list_head *head)
468{
469 while (!list_empty(head)) {
470 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
471 list_head);
472 ceph_msg_remove(msg);
473 }
474}
475
476static void reset_connection(struct ceph_connection *con)
477{
478 /* reset connection, out_queue, msg_ and connect_seq */
479 /* discard existing out_queue and msg_seq */
31b8006e
SW
480 ceph_msg_remove_list(&con->out_queue);
481 ceph_msg_remove_list(&con->out_sent);
482
cf3e5c40 483 if (con->in_msg) {
38941f80
AE
484 BUG_ON(con->in_msg->con != con);
485 con->in_msg->con = NULL;
cf3e5c40
SW
486 ceph_msg_put(con->in_msg);
487 con->in_msg = NULL;
36eb71aa 488 con->ops->put(con);
cf3e5c40
SW
489 }
490
31b8006e
SW
491 con->connect_seq = 0;
492 con->out_seq = 0;
c86a2930
SW
493 if (con->out_msg) {
494 ceph_msg_put(con->out_msg);
495 con->out_msg = NULL;
496 }
31b8006e 497 con->in_seq = 0;
0e0d5e0c 498 con->in_seq_acked = 0;
31b8006e
SW
499}
500
501/*
502 * mark a peer down. drop any open connections.
503 */
504void ceph_con_close(struct ceph_connection *con)
505{
8c50c817 506 mutex_lock(&con->mutex);
3d14c5d2
YS
507 dout("con_close %p peer %s\n", con,
508 ceph_pr_addr(&con->peer_addr.in_addr));
a5988c49 509 clear_bit(NEGOTIATING, &con->state);
bb9e6bba 510 clear_bit(CONNECTING, &con->state);
e27947c7 511 clear_bit(CONNECTED, &con->state);
31b8006e 512 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
a5988c49
AE
513 set_bit(CLOSED, &con->state);
514
928443cd
AE
515 clear_bit(LOSSYTX, &con->flags); /* so we retry next connect */
516 clear_bit(KEEPALIVE_PENDING, &con->flags);
517 clear_bit(WRITE_PENDING, &con->flags);
a5988c49 518
31b8006e 519 reset_connection(con);
6f2bc3ff 520 con->peer_global_seq = 0;
91e45ce3 521 cancel_delayed_work(&con->work);
ec302645 522 mutex_unlock(&con->mutex);
8c50c817
SW
523
524 /*
525 * We cannot close the socket directly from here because the
526 * work threads use it without holding the mutex. Instead, let
527 * con_work() do it.
528 */
31b8006e
SW
529 queue_con(con);
530}
3d14c5d2 531EXPORT_SYMBOL(ceph_con_close);
31b8006e 532
31b8006e
SW
533/*
534 * Reopen a closed connection, with a new peer address.
535 */
b7a9e5dd
SW
536void ceph_con_open(struct ceph_connection *con,
537 __u8 entity_type, __u64 entity_num,
538 struct ceph_entity_addr *addr)
31b8006e 539{
5469155f 540 mutex_lock(&con->mutex);
3d14c5d2 541 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
31b8006e 542 set_bit(OPENING, &con->state);
a5988c49
AE
543 WARN_ON(!test_and_clear_bit(CLOSED, &con->state));
544
b7a9e5dd
SW
545 con->peer_name.type = (__u8) entity_type;
546 con->peer_name.num = cpu_to_le64(entity_num);
547
31b8006e 548 memcpy(&con->peer_addr, addr, sizeof(*addr));
03c677e1 549 con->delay = 0; /* reset backoff memory */
5469155f 550 mutex_unlock(&con->mutex);
31b8006e
SW
551 queue_con(con);
552}
3d14c5d2 553EXPORT_SYMBOL(ceph_con_open);
31b8006e 554
87b315a5
SW
555/*
556 * return true if this connection ever successfully opened
557 */
558bool ceph_con_opened(struct ceph_connection *con)
559{
560 return con->connect_seq > 0;
561}
562
31b8006e
SW
563/*
564 * initialize a new connection.
565 */
1bfd89f4
AE
566void ceph_con_init(struct ceph_connection *con, void *private,
567 const struct ceph_connection_operations *ops,
b7a9e5dd 568 struct ceph_messenger *msgr)
31b8006e
SW
569{
570 dout("con_init %p\n", con);
571 memset(con, 0, sizeof(*con));
1bfd89f4
AE
572 con->private = private;
573 con->ops = ops;
31b8006e 574 con->msgr = msgr;
ce2c8903
AE
575
576 con_sock_state_init(con);
577
ec302645 578 mutex_init(&con->mutex);
31b8006e
SW
579 INIT_LIST_HEAD(&con->out_queue);
580 INIT_LIST_HEAD(&con->out_sent);
581 INIT_DELAYED_WORK(&con->work, con_work);
a5988c49
AE
582
583 set_bit(CLOSED, &con->state);
31b8006e 584}
3d14c5d2 585EXPORT_SYMBOL(ceph_con_init);
31b8006e
SW
586
587
588/*
589 * We maintain a global counter to order connection attempts. Get
590 * a unique seq greater than @gt.
591 */
592static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
593{
594 u32 ret;
595
596 spin_lock(&msgr->global_seq_lock);
597 if (msgr->global_seq < gt)
598 msgr->global_seq = gt;
599 ret = ++msgr->global_seq;
600 spin_unlock(&msgr->global_seq_lock);
601 return ret;
602}
603
e2200423 604static void con_out_kvec_reset(struct ceph_connection *con)
859eb799
AE
605{
606 con->out_kvec_left = 0;
607 con->out_kvec_bytes = 0;
608 con->out_kvec_cur = &con->out_kvec[0];
609}
610
e2200423 611static void con_out_kvec_add(struct ceph_connection *con,
859eb799
AE
612 size_t size, void *data)
613{
614 int index;
615
616 index = con->out_kvec_left;
617 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
618
619 con->out_kvec[index].iov_len = size;
620 con->out_kvec[index].iov_base = data;
621 con->out_kvec_left++;
622 con->out_kvec_bytes += size;
623}
31b8006e 624
df6ad1f9
AE
625#ifdef CONFIG_BLOCK
626static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
627{
628 if (!bio) {
629 *iter = NULL;
630 *seg = 0;
631 return;
632 }
633 *iter = bio;
634 *seg = bio->bi_idx;
635}
636
637static void iter_bio_next(struct bio **bio_iter, int *seg)
638{
639 if (*bio_iter == NULL)
640 return;
641
642 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
643
644 (*seg)++;
645 if (*seg == (*bio_iter)->bi_vcnt)
646 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
647}
648#endif
649
739c905b
AE
650static void prepare_write_message_data(struct ceph_connection *con)
651{
652 struct ceph_msg *msg = con->out_msg;
653
654 BUG_ON(!msg);
655 BUG_ON(!msg->hdr.data_len);
656
657 /* initialize page iterator */
658 con->out_msg_pos.page = 0;
659 if (msg->pages)
660 con->out_msg_pos.page_pos = msg->page_alignment;
661 else
662 con->out_msg_pos.page_pos = 0;
572c588e 663#ifdef CONFIG_BLOCK
abdaa6a8 664 if (msg->bio)
572c588e
AE
665 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
666#endif
739c905b
AE
667 con->out_msg_pos.data_pos = 0;
668 con->out_msg_pos.did_page_crc = false;
669 con->out_more = 1; /* data + footer will follow */
670}
671
31b8006e
SW
672/*
673 * Prepare footer for currently outgoing message, and finish things
674 * off. Assumes out_kvec* are already valid.. we just add on to the end.
675 */
859eb799 676static void prepare_write_message_footer(struct ceph_connection *con)
31b8006e
SW
677{
678 struct ceph_msg *m = con->out_msg;
859eb799 679 int v = con->out_kvec_left;
31b8006e 680
fd154f3c
AE
681 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
682
31b8006e
SW
683 dout("prepare_write_message_footer %p\n", con);
684 con->out_kvec_is_msg = true;
685 con->out_kvec[v].iov_base = &m->footer;
686 con->out_kvec[v].iov_len = sizeof(m->footer);
687 con->out_kvec_bytes += sizeof(m->footer);
688 con->out_kvec_left++;
689 con->out_more = m->more_to_follow;
c86a2930 690 con->out_msg_done = true;
31b8006e
SW
691}
692
693/*
694 * Prepare headers for the next outgoing message.
695 */
696static void prepare_write_message(struct ceph_connection *con)
697{
698 struct ceph_msg *m;
a9a0c51a 699 u32 crc;
31b8006e 700
e2200423 701 con_out_kvec_reset(con);
31b8006e 702 con->out_kvec_is_msg = true;
c86a2930 703 con->out_msg_done = false;
31b8006e
SW
704
705 /* Sneak an ack in there first? If we can get it into the same
706 * TCP packet that's a good thing. */
707 if (con->in_seq > con->in_seq_acked) {
708 con->in_seq_acked = con->in_seq;
e2200423 709 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
31b8006e 710 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
e2200423 711 con_out_kvec_add(con, sizeof (con->out_temp_ack),
859eb799 712 &con->out_temp_ack);
31b8006e
SW
713 }
714
38941f80 715 BUG_ON(list_empty(&con->out_queue));
859eb799 716 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
c86a2930 717 con->out_msg = m;
38941f80 718 BUG_ON(m->con != con);
4cf9d544
SW
719
720 /* put message on sent list */
721 ceph_msg_get(m);
722 list_move_tail(&m->list_head, &con->out_sent);
31b8006e 723
e84346b7
SW
724 /*
725 * only assign outgoing seq # if we haven't sent this message
726 * yet. if it is requeued, resend with it's original seq.
727 */
728 if (m->needs_out_seq) {
729 m->hdr.seq = cpu_to_le64(++con->out_seq);
730 m->needs_out_seq = false;
731 }
31b8006e
SW
732
733 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
734 m, con->out_seq, le16_to_cpu(m->hdr.type),
735 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
736 le32_to_cpu(m->hdr.data_len),
737 m->nr_pages);
738 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
739
740 /* tag + hdr + front + middle */
e2200423
AE
741 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
742 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
743 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
859eb799 744
31b8006e 745 if (m->middle)
e2200423 746 con_out_kvec_add(con, m->middle->vec.iov_len,
859eb799 747 m->middle->vec.iov_base);
31b8006e
SW
748
749 /* fill in crc (except data pages), footer */
a9a0c51a
AE
750 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
751 con->out_msg->hdr.crc = cpu_to_le32(crc);
fd154f3c 752 con->out_msg->footer.flags = 0;
a9a0c51a
AE
753
754 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
755 con->out_msg->footer.front_crc = cpu_to_le32(crc);
756 if (m->middle) {
757 crc = crc32c(0, m->middle->vec.iov_base,
758 m->middle->vec.iov_len);
759 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
760 } else
31b8006e 761 con->out_msg->footer.middle_crc = 0;
739c905b 762 dout("%s front_crc %u middle_crc %u\n", __func__,
31b8006e
SW
763 le32_to_cpu(con->out_msg->footer.front_crc),
764 le32_to_cpu(con->out_msg->footer.middle_crc));
765
766 /* is there a data payload? */
739c905b
AE
767 con->out_msg->footer.data_crc = 0;
768 if (m->hdr.data_len)
769 prepare_write_message_data(con);
770 else
31b8006e 771 /* no, queue up footer too and be done */
859eb799 772 prepare_write_message_footer(con);
31b8006e 773
928443cd 774 set_bit(WRITE_PENDING, &con->flags);
31b8006e
SW
775}
776
777/*
778 * Prepare an ack.
779 */
780static void prepare_write_ack(struct ceph_connection *con)
781{
782 dout("prepare_write_ack %p %llu -> %llu\n", con,
783 con->in_seq_acked, con->in_seq);
784 con->in_seq_acked = con->in_seq;
785
e2200423 786 con_out_kvec_reset(con);
859eb799 787
e2200423 788 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
859eb799 789
31b8006e 790 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
e2200423 791 con_out_kvec_add(con, sizeof (con->out_temp_ack),
859eb799
AE
792 &con->out_temp_ack);
793
31b8006e 794 con->out_more = 1; /* more will follow.. eventually.. */
928443cd 795 set_bit(WRITE_PENDING, &con->flags);
31b8006e
SW
796}
797
798/*
799 * Prepare to write keepalive byte.
800 */
801static void prepare_write_keepalive(struct ceph_connection *con)
802{
803 dout("prepare_write_keepalive %p\n", con);
e2200423
AE
804 con_out_kvec_reset(con);
805 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
928443cd 806 set_bit(WRITE_PENDING, &con->flags);
31b8006e
SW
807}
808
809/*
810 * Connection negotiation.
811 */
812
dac1e716
AE
813static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
814 int *auth_proto)
4e7a5dcd 815{
a3530df3 816 struct ceph_auth_handshake *auth;
b1c6b980
AE
817
818 if (!con->ops->get_authorizer) {
819 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
820 con->out_connect.authorizer_len = 0;
821
729796be 822 return NULL;
b1c6b980
AE
823 }
824
825 /* Can't hold the mutex while getting authorizer */
4e7a5dcd 826
ec302645 827 mutex_unlock(&con->mutex);
b1c6b980 828
dac1e716 829 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
8f43fb53 830
ec302645 831 mutex_lock(&con->mutex);
4e7a5dcd 832
a3530df3 833 if (IS_ERR(auth))
729796be 834 return auth;
928443cd 835 if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->flags))
729796be 836 return ERR_PTR(-EAGAIN);
0da5d703 837
8f43fb53
AE
838 con->auth_reply_buf = auth->authorizer_reply_buf;
839 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
840
859eb799 841
729796be 842 return auth;
4e7a5dcd
SW
843}
844
31b8006e
SW
845/*
846 * We connected to a peer and are saying hello.
847 */
e825a66d 848static void prepare_write_banner(struct ceph_connection *con)
31b8006e 849{
e2200423
AE
850 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
851 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
e825a66d 852 &con->msgr->my_enc_addr);
eed0ef2c 853
eed0ef2c 854 con->out_more = 0;
928443cd 855 set_bit(WRITE_PENDING, &con->flags);
eed0ef2c
SW
856}
857
e825a66d 858static int prepare_write_connect(struct ceph_connection *con)
eed0ef2c 859{
95c96174 860 unsigned int global_seq = get_global_seq(con->msgr, 0);
31b8006e 861 int proto;
dac1e716 862 int auth_proto;
729796be 863 struct ceph_auth_handshake *auth;
31b8006e
SW
864
865 switch (con->peer_name.type) {
866 case CEPH_ENTITY_TYPE_MON:
867 proto = CEPH_MONC_PROTOCOL;
868 break;
869 case CEPH_ENTITY_TYPE_OSD:
870 proto = CEPH_OSDC_PROTOCOL;
871 break;
872 case CEPH_ENTITY_TYPE_MDS:
873 proto = CEPH_MDSC_PROTOCOL;
874 break;
875 default:
876 BUG();
877 }
878
879 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
880 con->connect_seq, global_seq, proto);
4e7a5dcd 881
e825a66d 882 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
31b8006e
SW
883 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
884 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
885 con->out_connect.global_seq = cpu_to_le32(global_seq);
886 con->out_connect.protocol_version = cpu_to_le32(proto);
887 con->out_connect.flags = 0;
31b8006e 888
dac1e716
AE
889 auth_proto = CEPH_AUTH_UNKNOWN;
890 auth = get_connect_authorizer(con, &auth_proto);
729796be
AE
891 if (IS_ERR(auth))
892 return PTR_ERR(auth);
3da54776 893
dac1e716 894 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
3da54776
AE
895 con->out_connect.authorizer_len = auth ?
896 cpu_to_le32(auth->authorizer_buf_len) : 0;
897
ab166d5a 898 con_out_kvec_reset(con);
e2200423 899 con_out_kvec_add(con, sizeof (con->out_connect),
3da54776
AE
900 &con->out_connect);
901 if (auth && auth->authorizer_buf_len)
e2200423 902 con_out_kvec_add(con, auth->authorizer_buf_len,
3da54776 903 auth->authorizer_buf);
859eb799 904
31b8006e 905 con->out_more = 0;
928443cd 906 set_bit(WRITE_PENDING, &con->flags);
4e7a5dcd 907
e10c758e 908 return 0;
31b8006e
SW
909}
910
31b8006e
SW
911/*
912 * write as much of pending kvecs to the socket as we can.
913 * 1 -> done
914 * 0 -> socket full, but more to do
915 * <0 -> error
916 */
917static int write_partial_kvec(struct ceph_connection *con)
918{
919 int ret;
920
921 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
922 while (con->out_kvec_bytes > 0) {
923 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
924 con->out_kvec_left, con->out_kvec_bytes,
925 con->out_more);
926 if (ret <= 0)
927 goto out;
928 con->out_kvec_bytes -= ret;
929 if (con->out_kvec_bytes == 0)
930 break; /* done */
f42299e6
AE
931
932 /* account for full iov entries consumed */
933 while (ret >= con->out_kvec_cur->iov_len) {
934 BUG_ON(!con->out_kvec_left);
935 ret -= con->out_kvec_cur->iov_len;
936 con->out_kvec_cur++;
937 con->out_kvec_left--;
938 }
939 /* and for a partially-consumed entry */
940 if (ret) {
941 con->out_kvec_cur->iov_len -= ret;
942 con->out_kvec_cur->iov_base += ret;
31b8006e
SW
943 }
944 }
945 con->out_kvec_left = 0;
946 con->out_kvec_is_msg = false;
947 ret = 1;
948out:
949 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
950 con->out_kvec_bytes, con->out_kvec_left, ret);
951 return ret; /* done! */
952}
953
84ca8fc8
AE
954static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
955 size_t len, size_t sent, bool in_trail)
956{
957 struct ceph_msg *msg = con->out_msg;
958
959 BUG_ON(!msg);
960 BUG_ON(!sent);
961
962 con->out_msg_pos.data_pos += sent;
963 con->out_msg_pos.page_pos += sent;
5821bd8c
AE
964 if (sent < len)
965 return;
966
967 BUG_ON(sent != len);
968 con->out_msg_pos.page_pos = 0;
969 con->out_msg_pos.page++;
970 con->out_msg_pos.did_page_crc = false;
971 if (in_trail)
972 list_move_tail(&page->lru,
973 &msg->trail->head);
974 else if (msg->pagelist)
975 list_move_tail(&page->lru,
976 &msg->pagelist->head);
84ca8fc8 977#ifdef CONFIG_BLOCK
5821bd8c
AE
978 else if (msg->bio)
979 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
84ca8fc8 980#endif
84ca8fc8
AE
981}
982
31b8006e
SW
983/*
984 * Write as much message data payload as we can. If we finish, queue
985 * up the footer.
986 * 1 -> done, footer is now queued in out_kvec[].
987 * 0 -> socket full, but more to do
988 * <0 -> error
989 */
990static int write_partial_msg_pages(struct ceph_connection *con)
991{
992 struct ceph_msg *msg = con->out_msg;
95c96174 993 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
31b8006e 994 size_t len;
37675b0f 995 bool do_datacrc = !con->msgr->nocrc;
31b8006e 996 int ret;
68b4476b 997 int total_max_write;
84ca8fc8 998 bool in_trail = false;
5821bd8c
AE
999 const size_t trail_len = (msg->trail ? msg->trail->length : 0);
1000 const size_t trail_off = data_len - trail_len;
31b8006e
SW
1001
1002 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
84ca8fc8 1003 con, msg, con->out_msg_pos.page, msg->nr_pages,
31b8006e
SW
1004 con->out_msg_pos.page_pos);
1005
5821bd8c
AE
1006 /*
1007 * Iterate through each page that contains data to be
1008 * written, and send as much as possible for each.
1009 *
1010 * If we are calculating the data crc (the default), we will
1011 * need to map the page. If we have no pages, they have
1012 * been revoked, so use the zero page.
1013 */
68b4476b 1014 while (data_len > con->out_msg_pos.data_pos) {
31b8006e 1015 struct page *page = NULL;
68b4476b 1016 int max_write = PAGE_SIZE;
9bd19663 1017 int bio_offset = 0;
68b4476b 1018
5821bd8c
AE
1019 in_trail = in_trail || con->out_msg_pos.data_pos >= trail_off;
1020 if (!in_trail)
1021 total_max_write = trail_off - con->out_msg_pos.data_pos;
68b4476b 1022
5821bd8c 1023 if (in_trail) {
68b4476b
YS
1024 total_max_write = data_len - con->out_msg_pos.data_pos;
1025
1026 page = list_first_entry(&msg->trail->head,
1027 struct page, lru);
68b4476b 1028 } else if (msg->pages) {
31b8006e 1029 page = msg->pages[con->out_msg_pos.page];
58bb3b37
SW
1030 } else if (msg->pagelist) {
1031 page = list_first_entry(&msg->pagelist->head,
1032 struct page, lru);
68b4476b
YS
1033#ifdef CONFIG_BLOCK
1034 } else if (msg->bio) {
1035 struct bio_vec *bv;
1036
1037 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
1038 page = bv->bv_page;
9bd19663 1039 bio_offset = bv->bv_offset;
68b4476b
YS
1040 max_write = bv->bv_len;
1041#endif
31b8006e 1042 } else {
57666519 1043 page = zero_page;
31b8006e 1044 }
68b4476b
YS
1045 len = min_t(int, max_write - con->out_msg_pos.page_pos,
1046 total_max_write);
1047
37675b0f 1048 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
9bd19663 1049 void *base;
5821bd8c 1050 u32 crc = le32_to_cpu(msg->footer.data_crc);
8d63e318 1051 char *kaddr;
31b8006e 1052
8d63e318 1053 kaddr = kmap(page);
31b8006e 1054 BUG_ON(kaddr == NULL);
9bd19663 1055 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
5821bd8c 1056 crc = crc32c(crc, base, len);
84ca8fc8 1057 msg->footer.data_crc = cpu_to_le32(crc);
bca064d2 1058 con->out_msg_pos.did_page_crc = true;
31b8006e 1059 }
e36b13cc 1060 ret = ceph_tcp_sendpage(con->sock, page,
9bd19663 1061 con->out_msg_pos.page_pos + bio_offset,
e36b13cc 1062 len, 1);
31b8006e 1063
0cdf9e60 1064 if (do_datacrc)
31b8006e
SW
1065 kunmap(page);
1066
1067 if (ret <= 0)
1068 goto out;
1069
84ca8fc8 1070 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
31b8006e
SW
1071 }
1072
1073 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1074
1075 /* prepare and queue up footer, too */
37675b0f 1076 if (!do_datacrc)
84ca8fc8 1077 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
e2200423 1078 con_out_kvec_reset(con);
859eb799 1079 prepare_write_message_footer(con);
31b8006e
SW
1080 ret = 1;
1081out:
1082 return ret;
1083}
1084
1085/*
1086 * write some zeros
1087 */
1088static int write_partial_skip(struct ceph_connection *con)
1089{
1090 int ret;
1091
1092 while (con->out_skip > 0) {
31739139 1093 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
31b8006e 1094
31739139 1095 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, 1);
31b8006e
SW
1096 if (ret <= 0)
1097 goto out;
1098 con->out_skip -= ret;
1099 }
1100 ret = 1;
1101out:
1102 return ret;
1103}
1104
1105/*
1106 * Prepare to read connection handshake, or an ack.
1107 */
eed0ef2c
SW
1108static void prepare_read_banner(struct ceph_connection *con)
1109{
1110 dout("prepare_read_banner %p\n", con);
1111 con->in_base_pos = 0;
1112}
1113
31b8006e
SW
1114static void prepare_read_connect(struct ceph_connection *con)
1115{
1116 dout("prepare_read_connect %p\n", con);
1117 con->in_base_pos = 0;
1118}
1119
1120static void prepare_read_ack(struct ceph_connection *con)
1121{
1122 dout("prepare_read_ack %p\n", con);
1123 con->in_base_pos = 0;
1124}
1125
1126static void prepare_read_tag(struct ceph_connection *con)
1127{
1128 dout("prepare_read_tag %p\n", con);
1129 con->in_base_pos = 0;
1130 con->in_tag = CEPH_MSGR_TAG_READY;
1131}
1132
1133/*
1134 * Prepare to read a message.
1135 */
1136static int prepare_read_message(struct ceph_connection *con)
1137{
1138 dout("prepare_read_message %p\n", con);
1139 BUG_ON(con->in_msg != NULL);
1140 con->in_base_pos = 0;
1141 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1142 return 0;
1143}
1144
1145
1146static int read_partial(struct ceph_connection *con,
fd51653f 1147 int end, int size, void *object)
31b8006e 1148{
e6cee71f
AE
1149 while (con->in_base_pos < end) {
1150 int left = end - con->in_base_pos;
31b8006e
SW
1151 int have = size - left;
1152 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1153 if (ret <= 0)
1154 return ret;
1155 con->in_base_pos += ret;
1156 }
1157 return 1;
1158}
1159
1160
1161/*
1162 * Read all or part of the connect-side handshake on a new connection
1163 */
eed0ef2c 1164static int read_partial_banner(struct ceph_connection *con)
31b8006e 1165{
fd51653f
AE
1166 int size;
1167 int end;
1168 int ret;
31b8006e 1169
eed0ef2c 1170 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
31b8006e
SW
1171
1172 /* peer's banner */
fd51653f
AE
1173 size = strlen(CEPH_BANNER);
1174 end = size;
1175 ret = read_partial(con, end, size, con->in_banner);
31b8006e
SW
1176 if (ret <= 0)
1177 goto out;
fd51653f
AE
1178
1179 size = sizeof (con->actual_peer_addr);
1180 end += size;
1181 ret = read_partial(con, end, size, &con->actual_peer_addr);
31b8006e
SW
1182 if (ret <= 0)
1183 goto out;
fd51653f
AE
1184
1185 size = sizeof (con->peer_addr_for_me);
1186 end += size;
1187 ret = read_partial(con, end, size, &con->peer_addr_for_me);
31b8006e
SW
1188 if (ret <= 0)
1189 goto out;
fd51653f 1190
eed0ef2c
SW
1191out:
1192 return ret;
1193}
1194
1195static int read_partial_connect(struct ceph_connection *con)
1196{
fd51653f
AE
1197 int size;
1198 int end;
1199 int ret;
eed0ef2c
SW
1200
1201 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1202
fd51653f
AE
1203 size = sizeof (con->in_reply);
1204 end = size;
1205 ret = read_partial(con, end, size, &con->in_reply);
31b8006e
SW
1206 if (ret <= 0)
1207 goto out;
fd51653f
AE
1208
1209 size = le32_to_cpu(con->in_reply.authorizer_len);
1210 end += size;
1211 ret = read_partial(con, end, size, con->auth_reply_buf);
4e7a5dcd
SW
1212 if (ret <= 0)
1213 goto out;
31b8006e 1214
4e7a5dcd
SW
1215 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1216 con, (int)con->in_reply.tag,
1217 le32_to_cpu(con->in_reply.connect_seq),
31b8006e
SW
1218 le32_to_cpu(con->in_reply.global_seq));
1219out:
1220 return ret;
eed0ef2c 1221
31b8006e
SW
1222}
1223
1224/*
1225 * Verify the hello banner looks okay.
1226 */
1227static int verify_hello(struct ceph_connection *con)
1228{
1229 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
13e38c8a 1230 pr_err("connect to %s got bad banner\n",
3d14c5d2 1231 ceph_pr_addr(&con->peer_addr.in_addr));
31b8006e
SW
1232 con->error_msg = "protocol error, bad banner";
1233 return -1;
1234 }
1235 return 0;
1236}
1237
1238static bool addr_is_blank(struct sockaddr_storage *ss)
1239{
1240 switch (ss->ss_family) {
1241 case AF_INET:
1242 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1243 case AF_INET6:
1244 return
1245 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1246 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1247 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1248 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1249 }
1250 return false;
1251}
1252
1253static int addr_port(struct sockaddr_storage *ss)
1254{
1255 switch (ss->ss_family) {
1256 case AF_INET:
f28bcfbe 1257 return ntohs(((struct sockaddr_in *)ss)->sin_port);
31b8006e 1258 case AF_INET6:
f28bcfbe 1259 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
31b8006e
SW
1260 }
1261 return 0;
1262}
1263
1264static void addr_set_port(struct sockaddr_storage *ss, int p)
1265{
1266 switch (ss->ss_family) {
1267 case AF_INET:
1268 ((struct sockaddr_in *)ss)->sin_port = htons(p);
a2a79609 1269 break;
31b8006e
SW
1270 case AF_INET6:
1271 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
a2a79609 1272 break;
31b8006e
SW
1273 }
1274}
1275
ee3b56f2
NW
1276/*
1277 * Unlike other *_pton function semantics, zero indicates success.
1278 */
1279static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1280 char delim, const char **ipend)
1281{
99f0f3b2
AE
1282 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1283 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
ee3b56f2
NW
1284
1285 memset(ss, 0, sizeof(*ss));
1286
1287 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1288 ss->ss_family = AF_INET;
1289 return 0;
1290 }
1291
1292 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1293 ss->ss_family = AF_INET6;
1294 return 0;
1295 }
1296
1297 return -EINVAL;
1298}
1299
1300/*
1301 * Extract hostname string and resolve using kernel DNS facility.
1302 */
1303#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1304static int ceph_dns_resolve_name(const char *name, size_t namelen,
1305 struct sockaddr_storage *ss, char delim, const char **ipend)
1306{
1307 const char *end, *delim_p;
1308 char *colon_p, *ip_addr = NULL;
1309 int ip_len, ret;
1310
1311 /*
1312 * The end of the hostname occurs immediately preceding the delimiter or
1313 * the port marker (':') where the delimiter takes precedence.
1314 */
1315 delim_p = memchr(name, delim, namelen);
1316 colon_p = memchr(name, ':', namelen);
1317
1318 if (delim_p && colon_p)
1319 end = delim_p < colon_p ? delim_p : colon_p;
1320 else if (!delim_p && colon_p)
1321 end = colon_p;
1322 else {
1323 end = delim_p;
1324 if (!end) /* case: hostname:/ */
1325 end = name + namelen;
1326 }
1327
1328 if (end <= name)
1329 return -EINVAL;
1330
1331 /* do dns_resolve upcall */
1332 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1333 if (ip_len > 0)
1334 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1335 else
1336 ret = -ESRCH;
1337
1338 kfree(ip_addr);
1339
1340 *ipend = end;
1341
1342 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1343 ret, ret ? "failed" : ceph_pr_addr(ss));
1344
1345 return ret;
1346}
1347#else
1348static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1349 struct sockaddr_storage *ss, char delim, const char **ipend)
1350{
1351 return -EINVAL;
1352}
1353#endif
1354
1355/*
1356 * Parse a server name (IP or hostname). If a valid IP address is not found
1357 * then try to extract a hostname to resolve using userspace DNS upcall.
1358 */
1359static int ceph_parse_server_name(const char *name, size_t namelen,
1360 struct sockaddr_storage *ss, char delim, const char **ipend)
1361{
1362 int ret;
1363
1364 ret = ceph_pton(name, namelen, ss, delim, ipend);
1365 if (ret)
1366 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1367
1368 return ret;
1369}
1370
31b8006e
SW
1371/*
1372 * Parse an ip[:port] list into an addr array. Use the default
1373 * monitor port if a port isn't specified.
1374 */
1375int ceph_parse_ips(const char *c, const char *end,
1376 struct ceph_entity_addr *addr,
1377 int max_count, int *count)
1378{
ee3b56f2 1379 int i, ret = -EINVAL;
31b8006e
SW
1380 const char *p = c;
1381
1382 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1383 for (i = 0; i < max_count; i++) {
1384 const char *ipend;
1385 struct sockaddr_storage *ss = &addr[i].in_addr;
31b8006e 1386 int port;
39139f64
SW
1387 char delim = ',';
1388
1389 if (*p == '[') {
1390 delim = ']';
1391 p++;
1392 }
31b8006e 1393
ee3b56f2
NW
1394 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1395 if (ret)
31b8006e 1396 goto bad;
ee3b56f2
NW
1397 ret = -EINVAL;
1398
31b8006e
SW
1399 p = ipend;
1400
39139f64
SW
1401 if (delim == ']') {
1402 if (*p != ']') {
1403 dout("missing matching ']'\n");
1404 goto bad;
1405 }
1406 p++;
1407 }
1408
31b8006e
SW
1409 /* port? */
1410 if (p < end && *p == ':') {
1411 port = 0;
1412 p++;
1413 while (p < end && *p >= '0' && *p <= '9') {
1414 port = (port * 10) + (*p - '0');
1415 p++;
1416 }
1417 if (port > 65535 || port == 0)
1418 goto bad;
1419 } else {
1420 port = CEPH_MON_PORT;
1421 }
1422
1423 addr_set_port(ss, port);
1424
3d14c5d2 1425 dout("parse_ips got %s\n", ceph_pr_addr(ss));
31b8006e
SW
1426
1427 if (p == end)
1428 break;
1429 if (*p != ',')
1430 goto bad;
1431 p++;
1432 }
1433
1434 if (p != end)
1435 goto bad;
1436
1437 if (count)
1438 *count = i + 1;
1439 return 0;
1440
1441bad:
39139f64 1442 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
ee3b56f2 1443 return ret;
31b8006e 1444}
3d14c5d2 1445EXPORT_SYMBOL(ceph_parse_ips);
31b8006e 1446
eed0ef2c 1447static int process_banner(struct ceph_connection *con)
31b8006e 1448{
eed0ef2c 1449 dout("process_banner on %p\n", con);
31b8006e
SW
1450
1451 if (verify_hello(con) < 0)
1452 return -1;
1453
63f2d211
SW
1454 ceph_decode_addr(&con->actual_peer_addr);
1455 ceph_decode_addr(&con->peer_addr_for_me);
1456
31b8006e
SW
1457 /*
1458 * Make sure the other end is who we wanted. note that the other
1459 * end may not yet know their ip address, so if it's 0.0.0.0, give
1460 * them the benefit of the doubt.
1461 */
103e2d3a
SW
1462 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1463 sizeof(con->peer_addr)) != 0 &&
31b8006e
SW
1464 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1465 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
cd84db6e 1466 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
3d14c5d2 1467 ceph_pr_addr(&con->peer_addr.in_addr),
cd84db6e 1468 (int)le32_to_cpu(con->peer_addr.nonce),
3d14c5d2 1469 ceph_pr_addr(&con->actual_peer_addr.in_addr),
cd84db6e 1470 (int)le32_to_cpu(con->actual_peer_addr.nonce));
58bb3b37 1471 con->error_msg = "wrong peer at address";
31b8006e
SW
1472 return -1;
1473 }
1474
1475 /*
1476 * did we learn our address?
1477 */
1478 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1479 int port = addr_port(&con->msgr->inst.addr.in_addr);
1480
1481 memcpy(&con->msgr->inst.addr.in_addr,
1482 &con->peer_addr_for_me.in_addr,
1483 sizeof(con->peer_addr_for_me.in_addr));
1484 addr_set_port(&con->msgr->inst.addr.in_addr, port);
63f2d211 1485 encode_my_addr(con->msgr);
eed0ef2c 1486 dout("process_banner learned my addr is %s\n",
3d14c5d2 1487 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
31b8006e
SW
1488 }
1489
eed0ef2c
SW
1490 return 0;
1491}
1492
04a419f9
SW
1493static void fail_protocol(struct ceph_connection *con)
1494{
1495 reset_connection(con);
1496 set_bit(CLOSED, &con->state); /* in case there's queued work */
04a419f9
SW
1497}
1498
eed0ef2c
SW
1499static int process_connect(struct ceph_connection *con)
1500{
3d14c5d2
YS
1501 u64 sup_feat = con->msgr->supported_features;
1502 u64 req_feat = con->msgr->required_features;
04a419f9 1503 u64 server_feat = le64_to_cpu(con->in_reply.features);
0da5d703 1504 int ret;
04a419f9 1505
eed0ef2c
SW
1506 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1507
31b8006e 1508 switch (con->in_reply.tag) {
04a419f9
SW
1509 case CEPH_MSGR_TAG_FEATURES:
1510 pr_err("%s%lld %s feature set mismatch,"
1511 " my %llx < server's %llx, missing %llx\n",
1512 ENTITY_NAME(con->peer_name),
3d14c5d2 1513 ceph_pr_addr(&con->peer_addr.in_addr),
04a419f9
SW
1514 sup_feat, server_feat, server_feat & ~sup_feat);
1515 con->error_msg = "missing required protocol features";
1516 fail_protocol(con);
1517 return -1;
1518
31b8006e 1519 case CEPH_MSGR_TAG_BADPROTOVER:
31b8006e
SW
1520 pr_err("%s%lld %s protocol version mismatch,"
1521 " my %d != server's %d\n",
1522 ENTITY_NAME(con->peer_name),
3d14c5d2 1523 ceph_pr_addr(&con->peer_addr.in_addr),
31b8006e
SW
1524 le32_to_cpu(con->out_connect.protocol_version),
1525 le32_to_cpu(con->in_reply.protocol_version));
1526 con->error_msg = "protocol version mismatch";
04a419f9 1527 fail_protocol(con);
31b8006e
SW
1528 return -1;
1529
4e7a5dcd
SW
1530 case CEPH_MSGR_TAG_BADAUTHORIZER:
1531 con->auth_retry++;
1532 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1533 con->auth_retry);
1534 if (con->auth_retry == 2) {
1535 con->error_msg = "connect authorization failure";
4e7a5dcd
SW
1536 return -1;
1537 }
1538 con->auth_retry = 1;
e825a66d 1539 ret = prepare_write_connect(con);
0da5d703
SW
1540 if (ret < 0)
1541 return ret;
63733a0f 1542 prepare_read_connect(con);
4e7a5dcd 1543 break;
31b8006e
SW
1544
1545 case CEPH_MSGR_TAG_RESETSESSION:
1546 /*
1547 * If we connected with a large connect_seq but the peer
1548 * has no record of a session with us (no connection, or
1549 * connect_seq == 0), they will send RESETSESION to indicate
1550 * that they must have reset their session, and may have
1551 * dropped messages.
1552 */
1553 dout("process_connect got RESET peer seq %u\n",
a16cb1f7 1554 le32_to_cpu(con->in_reply.connect_seq));
31b8006e
SW
1555 pr_err("%s%lld %s connection reset\n",
1556 ENTITY_NAME(con->peer_name),
3d14c5d2 1557 ceph_pr_addr(&con->peer_addr.in_addr));
31b8006e 1558 reset_connection(con);
5a0f8fdd
AE
1559 ret = prepare_write_connect(con);
1560 if (ret < 0)
1561 return ret;
31b8006e
SW
1562 prepare_read_connect(con);
1563
1564 /* Tell ceph about it. */
ec302645 1565 mutex_unlock(&con->mutex);
31b8006e
SW
1566 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1567 if (con->ops->peer_reset)
1568 con->ops->peer_reset(con);
ec302645 1569 mutex_lock(&con->mutex);
0da5d703
SW
1570 if (test_bit(CLOSED, &con->state) ||
1571 test_bit(OPENING, &con->state))
1572 return -EAGAIN;
31b8006e
SW
1573 break;
1574
1575 case CEPH_MSGR_TAG_RETRY_SESSION:
1576 /*
1577 * If we sent a smaller connect_seq than the peer has, try
1578 * again with a larger value.
1579 */
a16cb1f7 1580 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
31b8006e 1581 le32_to_cpu(con->out_connect.connect_seq),
a16cb1f7
SW
1582 le32_to_cpu(con->in_reply.connect_seq));
1583 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
5a0f8fdd
AE
1584 ret = prepare_write_connect(con);
1585 if (ret < 0)
1586 return ret;
31b8006e
SW
1587 prepare_read_connect(con);
1588 break;
1589
1590 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1591 /*
1592 * If we sent a smaller global_seq than the peer has, try
1593 * again with a larger value.
1594 */
eed0ef2c 1595 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
31b8006e 1596 con->peer_global_seq,
a16cb1f7 1597 le32_to_cpu(con->in_reply.global_seq));
31b8006e 1598 get_global_seq(con->msgr,
a16cb1f7 1599 le32_to_cpu(con->in_reply.global_seq));
5a0f8fdd
AE
1600 ret = prepare_write_connect(con);
1601 if (ret < 0)
1602 return ret;
31b8006e
SW
1603 prepare_read_connect(con);
1604 break;
1605
1606 case CEPH_MSGR_TAG_READY:
04a419f9
SW
1607 if (req_feat & ~server_feat) {
1608 pr_err("%s%lld %s protocol feature mismatch,"
1609 " my required %llx > server's %llx, need %llx\n",
1610 ENTITY_NAME(con->peer_name),
3d14c5d2 1611 ceph_pr_addr(&con->peer_addr.in_addr),
04a419f9
SW
1612 req_feat, server_feat, req_feat & ~server_feat);
1613 con->error_msg = "missing required protocol features";
1614 fail_protocol(con);
1615 return -1;
1616 }
3ec50d18 1617 clear_bit(NEGOTIATING, &con->state);
e27947c7 1618 set_bit(CONNECTED, &con->state);
31b8006e
SW
1619 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1620 con->connect_seq++;
aba558e2 1621 con->peer_features = server_feat;
31b8006e
SW
1622 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1623 con->peer_global_seq,
1624 le32_to_cpu(con->in_reply.connect_seq),
1625 con->connect_seq);
1626 WARN_ON(con->connect_seq !=
1627 le32_to_cpu(con->in_reply.connect_seq));
92ac41d0
SW
1628
1629 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
928443cd 1630 set_bit(LOSSYTX, &con->flags);
92ac41d0 1631
85effe18
SW
1632 con->delay = 0; /* reset backoff memory */
1633
31b8006e
SW
1634 prepare_read_tag(con);
1635 break;
1636
1637 case CEPH_MSGR_TAG_WAIT:
1638 /*
1639 * If there is a connection race (we are opening
1640 * connections to each other), one of us may just have
1641 * to WAIT. This shouldn't happen if we are the
1642 * client.
1643 */
04177882
SW
1644 pr_err("process_connect got WAIT as client\n");
1645 con->error_msg = "protocol error, got WAIT as client";
1646 return -1;
31b8006e
SW
1647
1648 default:
1649 pr_err("connect protocol error, will retry\n");
1650 con->error_msg = "protocol error, garbage tag during connect";
1651 return -1;
1652 }
1653 return 0;
1654}
1655
1656
1657/*
1658 * read (part of) an ack
1659 */
1660static int read_partial_ack(struct ceph_connection *con)
1661{
fd51653f
AE
1662 int size = sizeof (con->in_temp_ack);
1663 int end = size;
1664
1665 return read_partial(con, end, size, &con->in_temp_ack);
31b8006e
SW
1666}
1667
1668
1669/*
1670 * We can finally discard anything that's been acked.
1671 */
1672static void process_ack(struct ceph_connection *con)
1673{
1674 struct ceph_msg *m;
1675 u64 ack = le64_to_cpu(con->in_temp_ack);
1676 u64 seq;
1677
31b8006e
SW
1678 while (!list_empty(&con->out_sent)) {
1679 m = list_first_entry(&con->out_sent, struct ceph_msg,
1680 list_head);
1681 seq = le64_to_cpu(m->hdr.seq);
1682 if (seq > ack)
1683 break;
1684 dout("got ack for seq %llu type %d at %p\n", seq,
1685 le16_to_cpu(m->hdr.type), m);
4cf9d544 1686 m->ack_stamp = jiffies;
31b8006e
SW
1687 ceph_msg_remove(m);
1688 }
31b8006e
SW
1689 prepare_read_tag(con);
1690}
1691
1692
1693
1694
2450418c 1695static int read_partial_message_section(struct ceph_connection *con,
213c99ee
SW
1696 struct kvec *section,
1697 unsigned int sec_len, u32 *crc)
2450418c 1698{
68b4476b 1699 int ret, left;
2450418c
YS
1700
1701 BUG_ON(!section);
1702
1703 while (section->iov_len < sec_len) {
1704 BUG_ON(section->iov_base == NULL);
1705 left = sec_len - section->iov_len;
1706 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1707 section->iov_len, left);
1708 if (ret <= 0)
1709 return ret;
1710 section->iov_len += ret;
2450418c 1711 }
fe3ad593
AE
1712 if (section->iov_len == sec_len)
1713 *crc = crc32c(0, section->iov_base, section->iov_len);
31b8006e 1714
2450418c
YS
1715 return 1;
1716}
31b8006e 1717
1c20f2d2
AE
1718static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
1719 struct ceph_msg_header *hdr);
68b4476b
YS
1720
1721
1722static int read_partial_message_pages(struct ceph_connection *con,
1723 struct page **pages,
95c96174 1724 unsigned int data_len, bool do_datacrc)
68b4476b
YS
1725{
1726 void *p;
1727 int ret;
1728 int left;
1729
1730 left = min((int)(data_len - con->in_msg_pos.data_pos),
1731 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1732 /* (page) data */
1733 BUG_ON(pages == NULL);
1734 p = kmap(pages[con->in_msg_pos.page]);
1735 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1736 left);
bca064d2 1737 if (ret > 0 && do_datacrc)
68b4476b
YS
1738 con->in_data_crc =
1739 crc32c(con->in_data_crc,
1740 p + con->in_msg_pos.page_pos, ret);
1741 kunmap(pages[con->in_msg_pos.page]);
1742 if (ret <= 0)
1743 return ret;
1744 con->in_msg_pos.data_pos += ret;
1745 con->in_msg_pos.page_pos += ret;
1746 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1747 con->in_msg_pos.page_pos = 0;
1748 con->in_msg_pos.page++;
1749 }
1750
1751 return ret;
1752}
1753
1754#ifdef CONFIG_BLOCK
1755static int read_partial_message_bio(struct ceph_connection *con,
1756 struct bio **bio_iter, int *bio_seg,
95c96174 1757 unsigned int data_len, bool do_datacrc)
68b4476b
YS
1758{
1759 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1760 void *p;
1761 int ret, left;
1762
68b4476b
YS
1763 left = min((int)(data_len - con->in_msg_pos.data_pos),
1764 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1765
1766 p = kmap(bv->bv_page) + bv->bv_offset;
1767
1768 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1769 left);
bca064d2 1770 if (ret > 0 && do_datacrc)
68b4476b
YS
1771 con->in_data_crc =
1772 crc32c(con->in_data_crc,
1773 p + con->in_msg_pos.page_pos, ret);
1774 kunmap(bv->bv_page);
1775 if (ret <= 0)
1776 return ret;
1777 con->in_msg_pos.data_pos += ret;
1778 con->in_msg_pos.page_pos += ret;
1779 if (con->in_msg_pos.page_pos == bv->bv_len) {
1780 con->in_msg_pos.page_pos = 0;
1781 iter_bio_next(bio_iter, bio_seg);
1782 }
1783
1784 return ret;
1785}
1786#endif
1787
31b8006e
SW
1788/*
1789 * read (part of) a message.
1790 */
1791static int read_partial_message(struct ceph_connection *con)
1792{
1793 struct ceph_msg *m = con->in_msg;
fd51653f
AE
1794 int size;
1795 int end;
31b8006e 1796 int ret;
95c96174 1797 unsigned int front_len, middle_len, data_len;
37675b0f 1798 bool do_datacrc = !con->msgr->nocrc;
ae18756b 1799 u64 seq;
fe3ad593 1800 u32 crc;
31b8006e
SW
1801
1802 dout("read_partial_message con %p msg %p\n", con, m);
1803
1804 /* header */
fd51653f
AE
1805 size = sizeof (con->in_hdr);
1806 end = size;
1807 ret = read_partial(con, end, size, &con->in_hdr);
57dac9d1
AE
1808 if (ret <= 0)
1809 return ret;
fe3ad593
AE
1810
1811 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1812 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1813 pr_err("read_partial_message bad hdr "
1814 " crc %u != expected %u\n",
1815 crc, con->in_hdr.crc);
1816 return -EBADMSG;
1817 }
1818
31b8006e
SW
1819 front_len = le32_to_cpu(con->in_hdr.front_len);
1820 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1821 return -EIO;
1822 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1823 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1824 return -EIO;
1825 data_len = le32_to_cpu(con->in_hdr.data_len);
1826 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1827 return -EIO;
1828
ae18756b
SW
1829 /* verify seq# */
1830 seq = le64_to_cpu(con->in_hdr.seq);
1831 if ((s64)seq - (s64)con->in_seq < 1) {
df9f86fa 1832 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
ae18756b 1833 ENTITY_NAME(con->peer_name),
3d14c5d2 1834 ceph_pr_addr(&con->peer_addr.in_addr),
ae18756b
SW
1835 seq, con->in_seq + 1);
1836 con->in_base_pos = -front_len - middle_len - data_len -
1837 sizeof(m->footer);
1838 con->in_tag = CEPH_MSGR_TAG_READY;
ae18756b
SW
1839 return 0;
1840 } else if ((s64)seq - (s64)con->in_seq > 1) {
1841 pr_err("read_partial_message bad seq %lld expected %lld\n",
1842 seq, con->in_seq + 1);
1843 con->error_msg = "bad message sequence # for incoming message";
1844 return -EBADMSG;
1845 }
1846
31b8006e
SW
1847 /* allocate message? */
1848 if (!con->in_msg) {
1849 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1850 con->in_hdr.front_len, con->in_hdr.data_len);
1c20f2d2 1851 if (ceph_con_in_msg_alloc(con, &con->in_hdr)) {
31b8006e 1852 /* skip this message */
a79832f2 1853 dout("alloc_msg said skip message\n");
ae32be31 1854 BUG_ON(con->in_msg);
31b8006e
SW
1855 con->in_base_pos = -front_len - middle_len - data_len -
1856 sizeof(m->footer);
1857 con->in_tag = CEPH_MSGR_TAG_READY;
684be25c 1858 con->in_seq++;
31b8006e
SW
1859 return 0;
1860 }
a79832f2 1861 if (!con->in_msg) {
5b3a4db3
SW
1862 con->error_msg =
1863 "error allocating memory for incoming message";
a79832f2 1864 return -ENOMEM;
31b8006e 1865 }
38941f80
AE
1866
1867 BUG_ON(con->in_msg->con != con);
31b8006e
SW
1868 m = con->in_msg;
1869 m->front.iov_len = 0; /* haven't read it yet */
2450418c
YS
1870 if (m->middle)
1871 m->middle->vec.iov_len = 0;
9d7f0f13
YS
1872
1873 con->in_msg_pos.page = 0;
68b4476b 1874 if (m->pages)
c5c6b19d 1875 con->in_msg_pos.page_pos = m->page_alignment;
68b4476b
YS
1876 else
1877 con->in_msg_pos.page_pos = 0;
9d7f0f13 1878 con->in_msg_pos.data_pos = 0;
a4107026
SW
1879
1880#ifdef CONFIG_BLOCK
1881 if (m->bio)
1882 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1883#endif
31b8006e
SW
1884 }
1885
1886 /* front */
2450418c
YS
1887 ret = read_partial_message_section(con, &m->front, front_len,
1888 &con->in_front_crc);
1889 if (ret <= 0)
1890 return ret;
31b8006e
SW
1891
1892 /* middle */
2450418c 1893 if (m->middle) {
213c99ee
SW
1894 ret = read_partial_message_section(con, &m->middle->vec,
1895 middle_len,
2450418c 1896 &con->in_middle_crc);
31b8006e
SW
1897 if (ret <= 0)
1898 return ret;
31b8006e
SW
1899 }
1900
1901 /* (page) data */
31b8006e 1902 while (con->in_msg_pos.data_pos < data_len) {
68b4476b
YS
1903 if (m->pages) {
1904 ret = read_partial_message_pages(con, m->pages,
bca064d2 1905 data_len, do_datacrc);
68b4476b
YS
1906 if (ret <= 0)
1907 return ret;
1908#ifdef CONFIG_BLOCK
1909 } else if (m->bio) {
a4107026 1910 BUG_ON(!m->bio_iter);
68b4476b
YS
1911 ret = read_partial_message_bio(con,
1912 &m->bio_iter, &m->bio_seg,
bca064d2 1913 data_len, do_datacrc);
68b4476b
YS
1914 if (ret <= 0)
1915 return ret;
1916#endif
1917 } else {
1918 BUG_ON(1);
31b8006e
SW
1919 }
1920 }
1921
31b8006e 1922 /* footer */
fd51653f
AE
1923 size = sizeof (m->footer);
1924 end += size;
1925 ret = read_partial(con, end, size, &m->footer);
57dac9d1
AE
1926 if (ret <= 0)
1927 return ret;
1928
31b8006e
SW
1929 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1930 m, front_len, m->footer.front_crc, middle_len,
1931 m->footer.middle_crc, data_len, m->footer.data_crc);
1932
1933 /* crc ok? */
1934 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1935 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1936 m, con->in_front_crc, m->footer.front_crc);
1937 return -EBADMSG;
1938 }
1939 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1940 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1941 m, con->in_middle_crc, m->footer.middle_crc);
1942 return -EBADMSG;
1943 }
bca064d2 1944 if (do_datacrc &&
31b8006e
SW
1945 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1946 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1947 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1948 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1949 return -EBADMSG;
1950 }
1951
1952 return 1; /* done! */
1953}
1954
1955/*
1956 * Process message. This happens in the worker thread. The callback should
1957 * be careful not to do anything that waits on other incoming messages or it
1958 * may deadlock.
1959 */
1960static void process_message(struct ceph_connection *con)
1961{
5e095e8b 1962 struct ceph_msg *msg;
31b8006e 1963
38941f80
AE
1964 BUG_ON(con->in_msg->con != con);
1965 con->in_msg->con = NULL;
5e095e8b 1966 msg = con->in_msg;
31b8006e 1967 con->in_msg = NULL;
36eb71aa 1968 con->ops->put(con);
31b8006e
SW
1969
1970 /* if first message, set peer_name */
1971 if (con->peer_name.type == 0)
dbad185d 1972 con->peer_name = msg->hdr.src;
31b8006e 1973
31b8006e 1974 con->in_seq++;
ec302645 1975 mutex_unlock(&con->mutex);
31b8006e
SW
1976
1977 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1978 msg, le64_to_cpu(msg->hdr.seq),
dbad185d 1979 ENTITY_NAME(msg->hdr.src),
31b8006e
SW
1980 le16_to_cpu(msg->hdr.type),
1981 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1982 le32_to_cpu(msg->hdr.front_len),
1983 le32_to_cpu(msg->hdr.data_len),
1984 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1985 con->ops->dispatch(con, msg);
ec302645
SW
1986
1987 mutex_lock(&con->mutex);
31b8006e
SW
1988 prepare_read_tag(con);
1989}
1990
1991
1992/*
1993 * Write something to the socket. Called in a worker thread when the
1994 * socket appears to be writeable and we have something ready to send.
1995 */
1996static int try_write(struct ceph_connection *con)
1997{
31b8006e
SW
1998 int ret = 1;
1999
d59315ca 2000 dout("try_write start %p state %lu\n", con, con->state);
31b8006e 2001
31b8006e
SW
2002more:
2003 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2004
2005 /* open the socket first? */
2006 if (con->sock == NULL) {
a5988c49
AE
2007 set_bit(CONNECTING, &con->state);
2008
e2200423 2009 con_out_kvec_reset(con);
e825a66d 2010 prepare_write_banner(con);
eed0ef2c 2011 prepare_read_banner(con);
31b8006e 2012
cf3e5c40 2013 BUG_ON(con->in_msg);
31b8006e
SW
2014 con->in_tag = CEPH_MSGR_TAG_READY;
2015 dout("try_write initiating connect on %p new state %lu\n",
2016 con, con->state);
41617d0c
AE
2017 ret = ceph_tcp_connect(con);
2018 if (ret < 0) {
31b8006e 2019 con->error_msg = "connect error";
31b8006e
SW
2020 goto out;
2021 }
2022 }
2023
2024more_kvec:
2025 /* kvec data queued? */
2026 if (con->out_skip) {
2027 ret = write_partial_skip(con);
2028 if (ret <= 0)
42961d23 2029 goto out;
31b8006e
SW
2030 }
2031 if (con->out_kvec_left) {
2032 ret = write_partial_kvec(con);
2033 if (ret <= 0)
42961d23 2034 goto out;
31b8006e
SW
2035 }
2036
2037 /* msg pages? */
2038 if (con->out_msg) {
c86a2930
SW
2039 if (con->out_msg_done) {
2040 ceph_msg_put(con->out_msg);
2041 con->out_msg = NULL; /* we're done with this one */
2042 goto do_next;
2043 }
2044
31b8006e
SW
2045 ret = write_partial_msg_pages(con);
2046 if (ret == 1)
2047 goto more_kvec; /* we need to send the footer, too! */
2048 if (ret == 0)
42961d23 2049 goto out;
31b8006e
SW
2050 if (ret < 0) {
2051 dout("try_write write_partial_msg_pages err %d\n",
2052 ret);
42961d23 2053 goto out;
31b8006e
SW
2054 }
2055 }
2056
c86a2930 2057do_next:
7593af92
AE
2058 if (!test_bit(CONNECTING, &con->state) &&
2059 !test_bit(NEGOTIATING, &con->state)) {
31b8006e
SW
2060 /* is anything else pending? */
2061 if (!list_empty(&con->out_queue)) {
2062 prepare_write_message(con);
2063 goto more;
2064 }
2065 if (con->in_seq > con->in_seq_acked) {
2066 prepare_write_ack(con);
2067 goto more;
2068 }
928443cd 2069 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->flags)) {
31b8006e
SW
2070 prepare_write_keepalive(con);
2071 goto more;
2072 }
2073 }
2074
2075 /* Nothing to do! */
928443cd 2076 clear_bit(WRITE_PENDING, &con->flags);
31b8006e 2077 dout("try_write nothing else to write.\n");
31b8006e
SW
2078 ret = 0;
2079out:
42961d23 2080 dout("try_write done on %p ret %d\n", con, ret);
31b8006e
SW
2081 return ret;
2082}
2083
2084
2085
2086/*
2087 * Read what we can from the socket.
2088 */
2089static int try_read(struct ceph_connection *con)
2090{
31b8006e
SW
2091 int ret = -1;
2092
2093 if (!con->sock)
2094 return 0;
2095
2096 if (test_bit(STANDBY, &con->state))
2097 return 0;
2098
2099 dout("try_read start on %p\n", con);
ec302645 2100
31b8006e
SW
2101more:
2102 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2103 con->in_base_pos);
0da5d703
SW
2104
2105 /*
2106 * process_connect and process_message drop and re-take
2107 * con->mutex. make sure we handle a racing close or reopen.
2108 */
2109 if (test_bit(CLOSED, &con->state) ||
2110 test_bit(OPENING, &con->state)) {
2111 ret = -EAGAIN;
2112 goto out;
2113 }
2114
31b8006e 2115 if (test_bit(CONNECTING, &con->state)) {
7593af92
AE
2116 dout("try_read connecting\n");
2117 ret = read_partial_banner(con);
2118 if (ret <= 0)
ab166d5a 2119 goto out;
7593af92
AE
2120 ret = process_banner(con);
2121 if (ret < 0)
2122 goto out;
2123
2124 clear_bit(CONNECTING, &con->state);
2125 set_bit(NEGOTIATING, &con->state);
2126
2127 /* Banner is good, exchange connection info */
2128 ret = prepare_write_connect(con);
2129 if (ret < 0)
2130 goto out;
2131 prepare_read_connect(con);
2132
2133 /* Send connection info before awaiting response */
2134 goto out;
2135 }
2136
2137 if (test_bit(NEGOTIATING, &con->state)) {
2138 dout("try_read negotiating\n");
31b8006e
SW
2139 ret = read_partial_connect(con);
2140 if (ret <= 0)
31b8006e 2141 goto out;
98bdb0aa
SW
2142 ret = process_connect(con);
2143 if (ret < 0)
2144 goto out;
31b8006e
SW
2145 goto more;
2146 }
2147
2148 if (con->in_base_pos < 0) {
2149 /*
2150 * skipping + discarding content.
2151 *
2152 * FIXME: there must be a better way to do this!
2153 */
84495f49
AE
2154 static char buf[SKIP_BUF_SIZE];
2155 int skip = min((int) sizeof (buf), -con->in_base_pos);
2156
31b8006e
SW
2157 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2158 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2159 if (ret <= 0)
98bdb0aa 2160 goto out;
31b8006e
SW
2161 con->in_base_pos += ret;
2162 if (con->in_base_pos)
2163 goto more;
2164 }
2165 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2166 /*
2167 * what's next?
2168 */
2169 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2170 if (ret <= 0)
98bdb0aa 2171 goto out;
31b8006e
SW
2172 dout("try_read got tag %d\n", (int)con->in_tag);
2173 switch (con->in_tag) {
2174 case CEPH_MSGR_TAG_MSG:
2175 prepare_read_message(con);
2176 break;
2177 case CEPH_MSGR_TAG_ACK:
2178 prepare_read_ack(con);
2179 break;
2180 case CEPH_MSGR_TAG_CLOSE:
e27947c7 2181 clear_bit(CONNECTED, &con->state);
31b8006e 2182 set_bit(CLOSED, &con->state); /* fixme */
98bdb0aa 2183 goto out;
31b8006e
SW
2184 default:
2185 goto bad_tag;
2186 }
2187 }
2188 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2189 ret = read_partial_message(con);
2190 if (ret <= 0) {
2191 switch (ret) {
2192 case -EBADMSG:
2193 con->error_msg = "bad crc";
2194 ret = -EIO;
98bdb0aa 2195 break;
31b8006e
SW
2196 case -EIO:
2197 con->error_msg = "io error";
98bdb0aa 2198 break;
31b8006e 2199 }
98bdb0aa 2200 goto out;
31b8006e
SW
2201 }
2202 if (con->in_tag == CEPH_MSGR_TAG_READY)
2203 goto more;
2204 process_message(con);
2205 goto more;
2206 }
2207 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2208 ret = read_partial_ack(con);
2209 if (ret <= 0)
98bdb0aa 2210 goto out;
31b8006e
SW
2211 process_ack(con);
2212 goto more;
2213 }
2214
31b8006e 2215out:
98bdb0aa 2216 dout("try_read done on %p ret %d\n", con, ret);
31b8006e
SW
2217 return ret;
2218
2219bad_tag:
2220 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2221 con->error_msg = "protocol error, garbage tag";
2222 ret = -1;
2223 goto out;
2224}
2225
2226
2227/*
2228 * Atomically queue work on a connection. Bump @con reference to
2229 * avoid races with connection teardown.
31b8006e
SW
2230 */
2231static void queue_con(struct ceph_connection *con)
2232{
31b8006e
SW
2233 if (!con->ops->get(con)) {
2234 dout("queue_con %p ref count 0\n", con);
2235 return;
2236 }
2237
f363e45f 2238 if (!queue_delayed_work(ceph_msgr_wq, &con->work, 0)) {
31b8006e
SW
2239 dout("queue_con %p - already queued\n", con);
2240 con->ops->put(con);
2241 } else {
2242 dout("queue_con %p\n", con);
2243 }
2244}
2245
2246/*
2247 * Do some work on a connection. Drop a connection ref when we're done.
2248 */
2249static void con_work(struct work_struct *work)
2250{
2251 struct ceph_connection *con = container_of(work, struct ceph_connection,
2252 work.work);
0da5d703 2253 int ret;
31b8006e 2254
9dd4658d 2255 mutex_lock(&con->mutex);
0da5d703 2256restart:
188048bc 2257 if (test_and_clear_bit(SOCK_CLOSED, &con->flags)) {
e27947c7
AE
2258 if (test_and_clear_bit(CONNECTED, &con->state))
2259 con->error_msg = "socket closed";
7593af92
AE
2260 else if (test_and_clear_bit(NEGOTIATING, &con->state))
2261 con->error_msg = "negotiation failed";
2262 else if (test_and_clear_bit(CONNECTING, &con->state))
188048bc 2263 con->error_msg = "connection failed";
7593af92 2264 else
e27947c7 2265 con->error_msg = "unrecognized con state";
188048bc
AE
2266 goto fault;
2267 }
2268
928443cd 2269 if (test_and_clear_bit(BACKOFF, &con->flags)) {
60bf8bf8
SW
2270 dout("con_work %p backing off\n", con);
2271 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2272 round_jiffies_relative(con->delay))) {
2273 dout("con_work %p backoff %lu\n", con, con->delay);
2274 mutex_unlock(&con->mutex);
2275 return;
2276 } else {
2277 con->ops->put(con);
2278 dout("con_work %p FAILED to back off %lu\n", con,
2279 con->delay);
2280 }
2281 }
9dd4658d 2282
e00de341
SW
2283 if (test_bit(STANDBY, &con->state)) {
2284 dout("con_work %p STANDBY\n", con);
2285 goto done;
2286 }
31b8006e
SW
2287 if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
2288 dout("con_work CLOSED\n");
2289 con_close_socket(con);
2290 goto done;
2291 }
2292 if (test_and_clear_bit(OPENING, &con->state)) {
2293 /* reopen w/ new peer */
2294 dout("con_work OPENING\n");
2295 con_close_socket(con);
2296 }
2297
0da5d703
SW
2298 ret = try_read(con);
2299 if (ret == -EAGAIN)
2300 goto restart;
3a140a0d
SW
2301 if (ret < 0) {
2302 con->error_msg = "socket error on read";
0da5d703 2303 goto fault;
3a140a0d 2304 }
0da5d703
SW
2305
2306 ret = try_write(con);
2307 if (ret == -EAGAIN)
2308 goto restart;
3a140a0d
SW
2309 if (ret < 0) {
2310 con->error_msg = "socket error on write";
0da5d703 2311 goto fault;
3a140a0d 2312 }
31b8006e
SW
2313
2314done:
9dd4658d 2315 mutex_unlock(&con->mutex);
9dd4658d 2316done_unlocked:
31b8006e 2317 con->ops->put(con);
0da5d703
SW
2318 return;
2319
2320fault:
2321 mutex_unlock(&con->mutex);
2322 ceph_fault(con); /* error/fault path */
2323 goto done_unlocked;
31b8006e
SW
2324}
2325
2326
2327/*
2328 * Generic error/fault handler. A retry mechanism is used with
2329 * exponential backoff
2330 */
2331static void ceph_fault(struct ceph_connection *con)
2332{
3b5ede07
SW
2333 mutex_lock(&con->mutex);
2334
31b8006e 2335 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
3d14c5d2 2336 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
31b8006e 2337 dout("fault %p state %lu to peer %s\n",
3d14c5d2 2338 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
31b8006e 2339
91e45ce3
SW
2340 if (test_bit(CLOSED, &con->state))
2341 goto out_unlock;
ec302645 2342
31b8006e 2343 con_close_socket(con);
5e095e8b 2344
3b5ede07
SW
2345 if (test_bit(LOSSYTX, &con->flags)) {
2346 dout("fault on LOSSYTX channel\n");
2347 goto out_unlock;
2348 }
2349
5e095e8b 2350 if (con->in_msg) {
38941f80
AE
2351 BUG_ON(con->in_msg->con != con);
2352 con->in_msg->con = NULL;
5e095e8b
SW
2353 ceph_msg_put(con->in_msg);
2354 con->in_msg = NULL;
36eb71aa 2355 con->ops->put(con);
5e095e8b 2356 }
31b8006e 2357
e80a52d1
SW
2358 /* Requeue anything that hasn't been acked */
2359 list_splice_init(&con->out_sent, &con->out_queue);
9bd2e6f8 2360
e76661d0
SW
2361 /* If there are no messages queued or keepalive pending, place
2362 * the connection in a STANDBY state */
2363 if (list_empty(&con->out_queue) &&
928443cd 2364 !test_bit(KEEPALIVE_PENDING, &con->flags)) {
e00de341 2365 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
928443cd 2366 clear_bit(WRITE_PENDING, &con->flags);
31b8006e 2367 set_bit(STANDBY, &con->state);
e80a52d1
SW
2368 } else {
2369 /* retry after a delay. */
2370 if (con->delay == 0)
2371 con->delay = BASE_DELAY_INTERVAL;
2372 else if (con->delay < MAX_DELAY_INTERVAL)
2373 con->delay *= 2;
e80a52d1
SW
2374 con->ops->get(con);
2375 if (queue_delayed_work(ceph_msgr_wq, &con->work,
60bf8bf8
SW
2376 round_jiffies_relative(con->delay))) {
2377 dout("fault queued %p delay %lu\n", con, con->delay);
2378 } else {
e80a52d1 2379 con->ops->put(con);
60bf8bf8
SW
2380 dout("fault failed to queue %p delay %lu, backoff\n",
2381 con, con->delay);
2382 /*
2383 * In many cases we see a socket state change
2384 * while con_work is running and end up
2385 * queuing (non-delayed) work, such that we
2386 * can't backoff with a delay. Set a flag so
2387 * that when con_work restarts we schedule the
2388 * delay then.
2389 */
928443cd 2390 set_bit(BACKOFF, &con->flags);
60bf8bf8 2391 }
31b8006e
SW
2392 }
2393
91e45ce3
SW
2394out_unlock:
2395 mutex_unlock(&con->mutex);
161fd65a
SW
2396 /*
2397 * in case we faulted due to authentication, invalidate our
2398 * current tickets so that we can get new ones.
213c99ee 2399 */
161fd65a
SW
2400 if (con->auth_retry && con->ops->invalidate_authorizer) {
2401 dout("calling invalidate_authorizer()\n");
2402 con->ops->invalidate_authorizer(con);
2403 }
2404
31b8006e
SW
2405 if (con->ops->fault)
2406 con->ops->fault(con);
2407}
2408
2409
2410
2411/*
15d9882c 2412 * initialize a new messenger instance
31b8006e 2413 */
15d9882c
AE
2414void ceph_messenger_init(struct ceph_messenger *msgr,
2415 struct ceph_entity_addr *myaddr,
2416 u32 supported_features,
2417 u32 required_features,
2418 bool nocrc)
31b8006e 2419{
3d14c5d2
YS
2420 msgr->supported_features = supported_features;
2421 msgr->required_features = required_features;
2422
31b8006e
SW
2423 spin_lock_init(&msgr->global_seq_lock);
2424
31b8006e
SW
2425 if (myaddr)
2426 msgr->inst.addr = *myaddr;
2427
2428 /* select a random nonce */
ac8839d7 2429 msgr->inst.addr.type = 0;
103e2d3a 2430 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
63f2d211 2431 encode_my_addr(msgr);
15d9882c 2432 msgr->nocrc = nocrc;
31b8006e 2433
a2a32584
GH
2434 atomic_set(&msgr->stopping, 0);
2435
15d9882c 2436 dout("%s %p\n", __func__, msgr);
31b8006e 2437}
15d9882c 2438EXPORT_SYMBOL(ceph_messenger_init);
31b8006e 2439
e00de341
SW
2440static void clear_standby(struct ceph_connection *con)
2441{
2442 /* come back from STANDBY? */
2443 if (test_and_clear_bit(STANDBY, &con->state)) {
e00de341
SW
2444 dout("clear_standby %p and ++connect_seq\n", con);
2445 con->connect_seq++;
928443cd
AE
2446 WARN_ON(test_bit(WRITE_PENDING, &con->flags));
2447 WARN_ON(test_bit(KEEPALIVE_PENDING, &con->flags));
e00de341
SW
2448 }
2449}
2450
31b8006e
SW
2451/*
2452 * Queue up an outgoing message on the given connection.
2453 */
2454void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2455{
2456 if (test_bit(CLOSED, &con->state)) {
2457 dout("con_send %p closed, dropping %p\n", con, msg);
2458 ceph_msg_put(msg);
2459 return;
2460 }
2461
2462 /* set src+dst */
dbad185d 2463 msg->hdr.src = con->msgr->inst.name;
31b8006e 2464
3ca02ef9
SW
2465 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2466
e84346b7
SW
2467 msg->needs_out_seq = true;
2468
31b8006e 2469 /* queue */
ec302645 2470 mutex_lock(&con->mutex);
92ce034b 2471
38941f80 2472 BUG_ON(msg->con != NULL);
36eb71aa 2473 msg->con = con->ops->get(con);
92ce034b
AE
2474 BUG_ON(msg->con == NULL);
2475
31b8006e
SW
2476 BUG_ON(!list_empty(&msg->list_head));
2477 list_add_tail(&msg->list_head, &con->out_queue);
2478 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2479 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2480 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2481 le32_to_cpu(msg->hdr.front_len),
2482 le32_to_cpu(msg->hdr.middle_len),
2483 le32_to_cpu(msg->hdr.data_len));
00650931
SW
2484
2485 clear_standby(con);
ec302645 2486 mutex_unlock(&con->mutex);
31b8006e
SW
2487
2488 /* if there wasn't anything waiting to send before, queue
2489 * new work */
928443cd 2490 if (test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
31b8006e
SW
2491 queue_con(con);
2492}
3d14c5d2 2493EXPORT_SYMBOL(ceph_con_send);
31b8006e
SW
2494
2495/*
2496 * Revoke a message that was previously queued for send
2497 */
6740a845 2498void ceph_msg_revoke(struct ceph_msg *msg)
31b8006e 2499{
6740a845
AE
2500 struct ceph_connection *con = msg->con;
2501
2502 if (!con)
2503 return; /* Message not in our possession */
2504
ec302645 2505 mutex_lock(&con->mutex);
31b8006e 2506 if (!list_empty(&msg->list_head)) {
38941f80 2507 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
31b8006e 2508 list_del_init(&msg->list_head);
38941f80 2509 BUG_ON(msg->con == NULL);
36eb71aa 2510 msg->con->ops->put(msg->con);
38941f80 2511 msg->con = NULL;
92ce034b 2512 msg->hdr.seq = 0;
38941f80 2513
31b8006e 2514 ceph_msg_put(msg);
ed98adad
SW
2515 }
2516 if (con->out_msg == msg) {
38941f80 2517 dout("%s %p msg %p - was sending\n", __func__, con, msg);
ed98adad 2518 con->out_msg = NULL;
31b8006e
SW
2519 if (con->out_kvec_is_msg) {
2520 con->out_skip = con->out_kvec_bytes;
2521 con->out_kvec_is_msg = false;
2522 }
ed98adad 2523 msg->hdr.seq = 0;
92ce034b
AE
2524
2525 ceph_msg_put(msg);
31b8006e 2526 }
ec302645 2527 mutex_unlock(&con->mutex);
31b8006e
SW
2528}
2529
350b1c32 2530/*
0d59ab81 2531 * Revoke a message that we may be reading data into
350b1c32 2532 */
8921d114 2533void ceph_msg_revoke_incoming(struct ceph_msg *msg)
350b1c32 2534{
8921d114
AE
2535 struct ceph_connection *con;
2536
2537 BUG_ON(msg == NULL);
2538 if (!msg->con) {
2539 dout("%s msg %p null con\n", __func__, msg);
2540
2541 return; /* Message not in our possession */
2542 }
2543
2544 con = msg->con;
350b1c32 2545 mutex_lock(&con->mutex);
8921d114 2546 if (con->in_msg == msg) {
95c96174
ED
2547 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2548 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2549 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
350b1c32
SW
2550
2551 /* skip rest of message */
8921d114
AE
2552 dout("%s %p msg %p revoked\n", __func__, con, msg);
2553 con->in_base_pos = con->in_base_pos -
350b1c32 2554 sizeof(struct ceph_msg_header) -
0d59ab81
YS
2555 front_len -
2556 middle_len -
2557 data_len -
350b1c32 2558 sizeof(struct ceph_msg_footer);
350b1c32
SW
2559 ceph_msg_put(con->in_msg);
2560 con->in_msg = NULL;
2561 con->in_tag = CEPH_MSGR_TAG_READY;
684be25c 2562 con->in_seq++;
350b1c32 2563 } else {
8921d114
AE
2564 dout("%s %p in_msg %p msg %p no-op\n",
2565 __func__, con, con->in_msg, msg);
350b1c32
SW
2566 }
2567 mutex_unlock(&con->mutex);
2568}
2569
31b8006e
SW
2570/*
2571 * Queue a keepalive byte to ensure the tcp connection is alive.
2572 */
2573void ceph_con_keepalive(struct ceph_connection *con)
2574{
e00de341 2575 dout("con_keepalive %p\n", con);
00650931 2576 mutex_lock(&con->mutex);
e00de341 2577 clear_standby(con);
00650931 2578 mutex_unlock(&con->mutex);
928443cd
AE
2579 if (test_and_set_bit(KEEPALIVE_PENDING, &con->flags) == 0 &&
2580 test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
31b8006e
SW
2581 queue_con(con);
2582}
3d14c5d2 2583EXPORT_SYMBOL(ceph_con_keepalive);
31b8006e
SW
2584
2585
2586/*
2587 * construct a new message with given type, size
2588 * the new msg has a ref count of 1.
2589 */
b61c2763
SW
2590struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2591 bool can_fail)
31b8006e
SW
2592{
2593 struct ceph_msg *m;
2594
34d23762 2595 m = kmalloc(sizeof(*m), flags);
31b8006e
SW
2596 if (m == NULL)
2597 goto out;
c2e552e7 2598 kref_init(&m->kref);
38941f80
AE
2599
2600 m->con = NULL;
31b8006e
SW
2601 INIT_LIST_HEAD(&m->list_head);
2602
45c6ceb5 2603 m->hdr.tid = 0;
31b8006e 2604 m->hdr.type = cpu_to_le16(type);
45c6ceb5
SW
2605 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2606 m->hdr.version = 0;
31b8006e
SW
2607 m->hdr.front_len = cpu_to_le32(front_len);
2608 m->hdr.middle_len = 0;
bb257664
SW
2609 m->hdr.data_len = 0;
2610 m->hdr.data_off = 0;
45c6ceb5 2611 m->hdr.reserved = 0;
31b8006e
SW
2612 m->footer.front_crc = 0;
2613 m->footer.middle_crc = 0;
2614 m->footer.data_crc = 0;
45c6ceb5 2615 m->footer.flags = 0;
31b8006e
SW
2616 m->front_max = front_len;
2617 m->front_is_vmalloc = false;
2618 m->more_to_follow = false;
c0d5f9db 2619 m->ack_stamp = 0;
31b8006e
SW
2620 m->pool = NULL;
2621
ca20892d
HC
2622 /* middle */
2623 m->middle = NULL;
2624
2625 /* data */
2626 m->nr_pages = 0;
2627 m->page_alignment = 0;
2628 m->pages = NULL;
2629 m->pagelist = NULL;
2630 m->bio = NULL;
2631 m->bio_iter = NULL;
2632 m->bio_seg = 0;
2633 m->trail = NULL;
2634
31b8006e
SW
2635 /* front */
2636 if (front_len) {
2637 if (front_len > PAGE_CACHE_SIZE) {
34d23762 2638 m->front.iov_base = __vmalloc(front_len, flags,
31b8006e
SW
2639 PAGE_KERNEL);
2640 m->front_is_vmalloc = true;
2641 } else {
34d23762 2642 m->front.iov_base = kmalloc(front_len, flags);
31b8006e
SW
2643 }
2644 if (m->front.iov_base == NULL) {
b61c2763 2645 dout("ceph_msg_new can't allocate %d bytes\n",
31b8006e
SW
2646 front_len);
2647 goto out2;
2648 }
2649 } else {
2650 m->front.iov_base = NULL;
2651 }
2652 m->front.iov_len = front_len;
2653
bb257664 2654 dout("ceph_msg_new %p front %d\n", m, front_len);
31b8006e
SW
2655 return m;
2656
2657out2:
2658 ceph_msg_put(m);
2659out:
b61c2763
SW
2660 if (!can_fail) {
2661 pr_err("msg_new can't create type %d front %d\n", type,
2662 front_len);
f0ed1b7c 2663 WARN_ON(1);
b61c2763
SW
2664 } else {
2665 dout("msg_new can't create type %d front %d\n", type,
2666 front_len);
2667 }
a79832f2 2668 return NULL;
31b8006e 2669}
3d14c5d2 2670EXPORT_SYMBOL(ceph_msg_new);
31b8006e 2671
31b8006e
SW
2672/*
2673 * Allocate "middle" portion of a message, if it is needed and wasn't
2674 * allocated by alloc_msg. This allows us to read a small fixed-size
2675 * per-type header in the front and then gracefully fail (i.e.,
2676 * propagate the error to the caller based on info in the front) when
2677 * the middle is too large.
2678 */
2450418c 2679static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
31b8006e
SW
2680{
2681 int type = le16_to_cpu(msg->hdr.type);
2682 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2683
2684 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2685 ceph_msg_type_name(type), middle_len);
2686 BUG_ON(!middle_len);
2687 BUG_ON(msg->middle);
2688
b6c1d5b8 2689 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
31b8006e
SW
2690 if (!msg->middle)
2691 return -ENOMEM;
2692 return 0;
2693}
2694
2450418c 2695/*
1c20f2d2
AE
2696 * Allocate a message for receiving an incoming message on a
2697 * connection, and save the result in con->in_msg. Uses the
2698 * connection's private alloc_msg op if available.
2699 *
2700 * Returns true if the message should be skipped, false otherwise.
2701 * If true is returned (skip message), con->in_msg will be NULL.
2702 * If false is returned, con->in_msg will contain a pointer to the
2703 * newly-allocated message, or NULL in case of memory exhaustion.
2450418c 2704 */
1c20f2d2
AE
2705static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
2706 struct ceph_msg_header *hdr)
2450418c
YS
2707{
2708 int type = le16_to_cpu(hdr->type);
2709 int front_len = le32_to_cpu(hdr->front_len);
2710 int middle_len = le32_to_cpu(hdr->middle_len);
2450418c
YS
2711 int ret;
2712
1c20f2d2
AE
2713 BUG_ON(con->in_msg != NULL);
2714
2450418c 2715 if (con->ops->alloc_msg) {
1c20f2d2
AE
2716 int skip = 0;
2717
0547a9b3 2718 mutex_unlock(&con->mutex);
1c20f2d2 2719 con->in_msg = con->ops->alloc_msg(con, hdr, &skip);
0547a9b3 2720 mutex_lock(&con->mutex);
92ce034b 2721 if (con->in_msg) {
36eb71aa 2722 con->in_msg->con = con->ops->get(con);
92ce034b
AE
2723 BUG_ON(con->in_msg->con == NULL);
2724 }
1c20f2d2
AE
2725 if (skip)
2726 con->in_msg = NULL;
2727
2728 if (!con->in_msg)
2729 return skip != 0;
2450418c 2730 }
1c20f2d2
AE
2731 if (!con->in_msg) {
2732 con->in_msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
2733 if (!con->in_msg) {
2450418c
YS
2734 pr_err("unable to allocate msg type %d len %d\n",
2735 type, front_len);
1c20f2d2 2736 return false;
2450418c 2737 }
36eb71aa 2738 con->in_msg->con = con->ops->get(con);
92ce034b 2739 BUG_ON(con->in_msg->con == NULL);
1c20f2d2 2740 con->in_msg->page_alignment = le16_to_cpu(hdr->data_off);
2450418c 2741 }
1c20f2d2 2742 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
2450418c 2743
1c20f2d2
AE
2744 if (middle_len && !con->in_msg->middle) {
2745 ret = ceph_alloc_middle(con, con->in_msg);
2450418c 2746 if (ret < 0) {
1c20f2d2
AE
2747 ceph_msg_put(con->in_msg);
2748 con->in_msg = NULL;
2450418c
YS
2749 }
2750 }
9d7f0f13 2751
1c20f2d2 2752 return false;
2450418c
YS
2753}
2754
31b8006e
SW
2755
2756/*
2757 * Free a generically kmalloc'd message.
2758 */
2759void ceph_msg_kfree(struct ceph_msg *m)
2760{
2761 dout("msg_kfree %p\n", m);
2762 if (m->front_is_vmalloc)
2763 vfree(m->front.iov_base);
2764 else
2765 kfree(m->front.iov_base);
2766 kfree(m);
2767}
2768
2769/*
2770 * Drop a msg ref. Destroy as needed.
2771 */
c2e552e7
SW
2772void ceph_msg_last_put(struct kref *kref)
2773{
2774 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
31b8006e 2775
c2e552e7
SW
2776 dout("ceph_msg_put last one on %p\n", m);
2777 WARN_ON(!list_empty(&m->list_head));
2778
2779 /* drop middle, data, if any */
2780 if (m->middle) {
2781 ceph_buffer_put(m->middle);
2782 m->middle = NULL;
31b8006e 2783 }
c2e552e7
SW
2784 m->nr_pages = 0;
2785 m->pages = NULL;
2786
58bb3b37
SW
2787 if (m->pagelist) {
2788 ceph_pagelist_release(m->pagelist);
2789 kfree(m->pagelist);
2790 m->pagelist = NULL;
2791 }
2792
68b4476b
YS
2793 m->trail = NULL;
2794
c2e552e7
SW
2795 if (m->pool)
2796 ceph_msgpool_put(m->pool, m);
2797 else
2798 ceph_msg_kfree(m);
31b8006e 2799}
3d14c5d2 2800EXPORT_SYMBOL(ceph_msg_last_put);
9ec7cab1
SW
2801
2802void ceph_msg_dump(struct ceph_msg *msg)
2803{
2804 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2805 msg->front_max, msg->nr_pages);
2806 print_hex_dump(KERN_DEBUG, "header: ",
2807 DUMP_PREFIX_OFFSET, 16, 1,
2808 &msg->hdr, sizeof(msg->hdr), true);
2809 print_hex_dump(KERN_DEBUG, " front: ",
2810 DUMP_PREFIX_OFFSET, 16, 1,
2811 msg->front.iov_base, msg->front.iov_len, true);
2812 if (msg->middle)
2813 print_hex_dump(KERN_DEBUG, "middle: ",
2814 DUMP_PREFIX_OFFSET, 16, 1,
2815 msg->middle->vec.iov_base,
2816 msg->middle->vec.iov_len, true);
2817 print_hex_dump(KERN_DEBUG, "footer: ",
2818 DUMP_PREFIX_OFFSET, 16, 1,
2819 &msg->footer, sizeof(msg->footer), true);
2820}
3d14c5d2 2821EXPORT_SYMBOL(ceph_msg_dump);
This page took 0.275721 seconds and 5 git commands to generate.