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