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