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