blob: bdfd66ba3843146ca2e45fbc5a0e4affcc203758 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil31b80062009-10-06 11:31:13 -07003
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>
Ilya Dryomov757856d2015-06-25 17:47:45 +030010#include <linux/nsproxy.h>
Ilya Dryomov633ee4072017-03-21 13:44:28 +010011#include <linux/sched/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Sage Weil31b80062009-10-06 11:31:13 -070013#include <linux/socket.h>
14#include <linux/string.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060015#ifdef CONFIG_BLOCK
Yehuda Sadeh68b44762010-04-06 15:01:27 -070016#include <linux/bio.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060017#endif /* CONFIG_BLOCK */
Noah Watkinsee3b56f2011-09-23 11:48:42 -070018#include <linux/dns_resolver.h>
Sage Weil31b80062009-10-06 11:31:13 -070019#include <net/tcp.h>
20
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +020021#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070022#include <linux/ceph/libceph.h>
23#include <linux/ceph/messenger.h>
24#include <linux/ceph/decode.h>
25#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040026#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070027
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
Alex Elderbc18f4b2012-06-20 21:53:53 -050037/*
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() \
Sage Weilfbb85a42012-06-27 12:31:02 -070056 * |+--------------------------- \
57 * | \ \ \
58 * | ----------- \ \
59 * | | CLOSING | socket event; \ \
60 * | ----------- await close \ \
61 * | ^ \ |
62 * | | \ |
63 * | + con_sock_state_closing() \ |
64 * | / \ | |
65 * | / --------------- | |
66 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050067 * | / --------------
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 */
Alex Elderce2c8902012-05-22 22:15:49 -050078
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
Sage Weil8dacc7d2012-07-20 17:24:40 -070085/*
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
Sage Weil4a861692012-07-20 17:29:55 -070095/*
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 */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700104
Alex Elderc9ffc772013-02-20 10:25:12 -0600105static 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
Alex Eldere3d5d632013-05-01 12:43:04 -0500156/* Slab caches for frequently-allocated structures */
157
158static struct kmem_cache *ceph_msg_cache;
159
Sage Weil31b80062009-10-06 11:31:13 -0700160/* static tag bytes (protocol control messages) */
161static char tag_msg = CEPH_MSGR_TAG_MSG;
162static char tag_ack = CEPH_MSGR_TAG_ACK;
163static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800164static char tag_keepalive2 = CEPH_MSGR_TAG_KEEPALIVE2;
Sage Weil31b80062009-10-06 11:31:13 -0700165
Sage Weila6a53492010-04-13 14:07:07 -0700166#ifdef CONFIG_LOCKDEP
167static struct lock_class_key socket_class;
168#endif
169
Sage Weil31b80062009-10-06 11:31:13 -0700170static void queue_con(struct ceph_connection *con);
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400171static void cancel_con(struct ceph_connection *con);
Ilya Dryomov68931622015-07-03 15:44:41 +0300172static void ceph_con_workfn(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600173static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700174
Sage Weil31b80062009-10-06 11:31:13 -0700175/*
Alex Elderf64a9312012-01-23 15:49:27 -0600176 * Nicely render a sockaddr as a string. An array of formatted
177 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700178 */
Alex Elderf64a9312012-01-23 15:49:27 -0600179#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
180#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
181#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
182#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
183
184static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
185static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700186
Alex Elder57666512012-01-23 15:49:27 -0600187static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600188
Jeff Laytonb726ec92019-05-06 09:38:47 -0400189const char *ceph_pr_addr(const struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700190{
191 int i;
192 char *s;
Jeff Laytonb726ec92019-05-06 09:38:47 -0400193 struct sockaddr_storage ss = addr->in_addr; /* align */
194 struct sockaddr_in *in4 = (struct sockaddr_in *)&ss;
195 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *)&ss;
Sage Weil31b80062009-10-06 11:31:13 -0700196
Alex Elderf64a9312012-01-23 15:49:27 -0600197 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700198 s = addr_str[i];
199
Jeff Laytonb726ec92019-05-06 09:38:47 -0400200 switch (ss.ss_family) {
Sage Weil31b80062009-10-06 11:31:13 -0700201 case AF_INET:
Jeff Laytond3c3c0a2019-06-17 06:57:25 -0400202 snprintf(s, MAX_ADDR_STR_LEN, "(%d)%pI4:%hu",
203 le32_to_cpu(addr->type), &in4->sin_addr,
Alex Elderbd406142012-01-23 15:49:27 -0600204 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700205 break;
206
207 case AF_INET6:
Jeff Laytond3c3c0a2019-06-17 06:57:25 -0400208 snprintf(s, MAX_ADDR_STR_LEN, "(%d)[%pI6c]:%hu",
209 le32_to_cpu(addr->type), &in6->sin6_addr,
Alex Elderbd406142012-01-23 15:49:27 -0600210 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700211 break;
212
213 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600214 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
Jeff Laytonb726ec92019-05-06 09:38:47 -0400215 ss.ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700216 }
217
218 return s;
219}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700220EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700221
Sage Weil63f2d212009-11-03 15:17:56 -0800222static void encode_my_addr(struct ceph_messenger *msgr)
223{
224 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
Jeff Layton2c66de52019-06-17 09:24:31 -0400225 ceph_encode_banner_addr(&msgr->my_enc_addr);
Sage Weil63f2d212009-11-03 15:17:56 -0800226}
227
Sage Weil31b80062009-10-06 11:31:13 -0700228/*
229 * work queue for all reading and writing to/from the socket.
230 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600231static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700232
Alex Eldere3d5d632013-05-01 12:43:04 -0500233static int ceph_msgr_slab_init(void)
234{
235 BUG_ON(ceph_msg_cache);
Geliang Tang5ee61e92016-03-13 15:18:39 +0800236 ceph_msg_cache = KMEM_CACHE(ceph_msg, 0);
Alex Elder81b36be2013-05-01 12:43:04 -0500237 if (!ceph_msg_cache)
238 return -ENOMEM;
239
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +0200240 return 0;
Alex Eldere3d5d632013-05-01 12:43:04 -0500241}
242
243static void ceph_msgr_slab_exit(void)
244{
245 BUG_ON(!ceph_msg_cache);
246 kmem_cache_destroy(ceph_msg_cache);
247 ceph_msg_cache = NULL;
248}
249
Alex Elder15417162013-02-19 12:25:56 -0600250static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600251{
Alex Elderd3002b92012-02-14 14:05:33 -0600252 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600253 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600254 ceph_msgr_wq = NULL;
255 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600256
Alex Elder6173d1f2012-02-14 14:05:33 -0600257 BUG_ON(zero_page == NULL);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300258 put_page(zero_page);
Alex Elder6173d1f2012-02-14 14:05:33 -0600259 zero_page = NULL;
Benoît Canetd920ff62015-06-25 21:02:57 +0200260
261 ceph_msgr_slab_exit();
Alex Elder6173d1f2012-02-14 14:05:33 -0600262}
263
Chengguang Xu57a35df2018-03-10 20:32:05 +0800264int __init ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700265{
Benoît Canetd920ff62015-06-25 21:02:57 +0200266 if (ceph_msgr_slab_init())
267 return -ENOMEM;
268
Alex Elder57666512012-01-23 15:49:27 -0600269 BUG_ON(zero_page != NULL);
270 zero_page = ZERO_PAGE(0);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300271 get_page(zero_page);
Alex Elder57666512012-01-23 15:49:27 -0600272
Ilya Dryomovf9865f02014-10-10 16:39:05 +0400273 /*
274 * The number of active work items is limited by the number of
275 * connections, so leave @max_active at default.
276 */
277 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_MEM_RECLAIM, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600278 if (ceph_msgr_wq)
279 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600280
Alex Elder6173d1f2012-02-14 14:05:33 -0600281 pr_err("msgr_init failed to create workqueue\n");
282 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600283
Alex Elder6173d1f2012-02-14 14:05:33 -0600284 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700285}
286
287void ceph_msgr_exit(void)
288{
Alex Elder57666512012-01-23 15:49:27 -0600289 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600290
Alex Elder6173d1f2012-02-14 14:05:33 -0600291 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700292}
293
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700294void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700295{
296 flush_workqueue(ceph_msgr_wq);
297}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700298EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700299
Alex Elderce2c8902012-05-22 22:15:49 -0500300/* Connection socket state transition functions */
301
302static void con_sock_state_init(struct ceph_connection *con)
303{
304 int old_state;
305
306 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
307 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
308 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700309 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
310 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500311}
312
313static void con_sock_state_connecting(struct ceph_connection *con)
314{
315 int old_state;
316
317 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
318 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
319 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700320 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
321 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500322}
323
324static void con_sock_state_connected(struct ceph_connection *con)
325{
326 int old_state;
327
328 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
329 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
330 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700331 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
332 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500333}
334
335static void con_sock_state_closing(struct ceph_connection *con)
336{
337 int old_state;
338
339 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
340 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
341 old_state != CON_SOCK_STATE_CONNECTED &&
342 old_state != CON_SOCK_STATE_CLOSING))
343 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700344 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
345 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500346}
347
348static void con_sock_state_closed(struct ceph_connection *con)
349{
350 int old_state;
351
352 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
353 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700354 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700355 old_state != CON_SOCK_STATE_CONNECTING &&
356 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500357 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700358 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
359 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500360}
Sage Weila922d382010-05-29 09:41:23 -0700361
Sage Weil31b80062009-10-06 11:31:13 -0700362/*
363 * socket callback functions
364 */
365
366/* data available on socket, or listen socket received a connect */
David S. Miller676d2362014-04-11 16:15:36 -0400367static void ceph_sock_data_ready(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700368{
Alex Elderbd406142012-01-23 15:49:27 -0600369 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700370 if (atomic_read(&con->msgr->stopping)) {
371 return;
372 }
Alex Elderbd406142012-01-23 15:49:27 -0600373
Sage Weil31b80062009-10-06 11:31:13 -0700374 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500375 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700376 con, con->state);
377 queue_con(con);
378 }
379}
380
381/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500382static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700383{
Alex Elderd3002b92012-02-14 14:05:33 -0600384 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700385
Jim Schutt182fac22012-02-29 08:30:58 -0700386 /* only queue to workqueue if there is data we want to write,
387 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500388 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700389 * doesn't get called again until try_write() fills the socket
390 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
391 * and net/core/stream.c:sk_stream_write_space().
392 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600393 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Eric Dumazet64dc6132013-07-22 20:26:31 -0700394 if (sk_stream_is_writeable(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500395 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700396 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
397 queue_con(con);
398 }
Sage Weil31b80062009-10-06 11:31:13 -0700399 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500400 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700401 }
Sage Weil31b80062009-10-06 11:31:13 -0700402}
403
404/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500405static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700406{
Alex Elderbd406142012-01-23 15:49:27 -0600407 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700408
Alex Elder327800b2012-05-22 11:41:43 -0500409 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700410 con, con->state, sk->sk_state);
411
Sage Weil31b80062009-10-06 11:31:13 -0700412 switch (sk->sk_state) {
413 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500414 dout("%s TCP_CLOSE\n", __func__);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500415 fallthrough;
Sage Weil31b80062009-10-06 11:31:13 -0700416 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500417 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500418 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600419 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500420 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700421 break;
422 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500423 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500424 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700425 queue_con(con);
426 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600427 default: /* Everything else is uninteresting */
428 break;
Sage Weil31b80062009-10-06 11:31:13 -0700429 }
430}
431
432/*
433 * set up socket callbacks
434 */
435static void set_sock_callbacks(struct socket *sock,
436 struct ceph_connection *con)
437{
438 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600439 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500440 sk->sk_data_ready = ceph_sock_data_ready;
441 sk->sk_write_space = ceph_sock_write_space;
442 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700443}
444
445
446/*
447 * socket helpers
448 */
449
450/*
451 * initiate connection to a remote socket.
452 */
Alex Elder41617d02012-02-14 14:05:33 -0600453static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700454{
Jeff Laytoncede1852019-05-06 09:38:46 -0400455 struct sockaddr_storage ss = con->peer_addr.in_addr; /* align */
Sage Weil31b80062009-10-06 11:31:13 -0700456 struct socket *sock;
Ilya Dryomov633ee4072017-03-21 13:44:28 +0100457 unsigned int noio_flag;
Sage Weil31b80062009-10-06 11:31:13 -0700458 int ret;
459
460 BUG_ON(con->sock);
Ilya Dryomov633ee4072017-03-21 13:44:28 +0100461
462 /* sock_create_kern() allocates with GFP_KERNEL */
463 noio_flag = memalloc_noio_save();
Jeff Laytoncede1852019-05-06 09:38:46 -0400464 ret = sock_create_kern(read_pnet(&con->msgr->net), ss.ss_family,
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -0500465 SOCK_STREAM, IPPROTO_TCP, &sock);
Ilya Dryomov633ee4072017-03-21 13:44:28 +0100466 memalloc_noio_restore(noio_flag);
Sage Weil31b80062009-10-06 11:31:13 -0700467 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600468 return ret;
Ilya Dryomov6d7fdb02015-04-02 14:40:58 +0300469 sock->sk->sk_allocation = GFP_NOFS;
Sage Weil31b80062009-10-06 11:31:13 -0700470
Sage Weila6a53492010-04-13 14:07:07 -0700471#ifdef CONFIG_LOCKDEP
472 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
473#endif
474
Sage Weil31b80062009-10-06 11:31:13 -0700475 set_sock_callbacks(sock, con);
476
Jeff Laytonb726ec92019-05-06 09:38:47 -0400477 dout("connect %s\n", ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700478
Sage Weil89a86be2012-06-09 14:19:21 -0700479 con_sock_state_connecting(con);
Jeff Laytoncede1852019-05-06 09:38:46 -0400480 ret = sock->ops->connect(sock, (struct sockaddr *)&ss, sizeof(ss),
Sage Weilf91d3472010-07-01 15:18:31 -0700481 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700482 if (ret == -EINPROGRESS) {
483 dout("connect %s EINPROGRESS sk_state = %u\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -0400484 ceph_pr_addr(&con->peer_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700485 sock->sk->sk_state);
Alex Eldera5bc3122012-01-23 15:49:27 -0600486 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700487 pr_err("connect %s error %d\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -0400488 ceph_pr_addr(&con->peer_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700489 sock_release(sock);
Alex Elder41617d02012-02-14 14:05:33 -0600490 return ret;
Alex Eldera5bc3122012-01-23 15:49:27 -0600491 }
Mike Christie89baaa52014-10-16 01:50:19 -0500492
Christoph Hellwig12abc5e2020-05-28 07:12:19 +0200493 if (ceph_test_opt(from_msgr(con->msgr), TCP_NODELAY))
494 tcp_sock_set_nodelay(sock->sk);
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530495
Alex Eldera5bc3122012-01-23 15:49:27 -0600496 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600497 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700498}
499
Ilya Dryomove5c93882018-04-27 18:58:47 +0200500/*
501 * If @buf is NULL, discard up to @len bytes.
502 */
Sage Weil31b80062009-10-06 11:31:13 -0700503static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
504{
505 struct kvec iov = {buf, len};
506 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800507 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700508
Ilya Dryomove5c93882018-04-27 18:58:47 +0200509 if (!buf)
510 msg.msg_flags |= MSG_TRUNC;
511
David Howellsaa563d72018-10-20 00:57:56 +0100512 iov_iter_kvec(&msg.msg_iter, READ, &iov, 1, len);
Al Viro100803a2015-11-15 00:12:48 -0500513 r = sock_recvmsg(sock, &msg, msg.msg_flags);
Sage Weil98bdb0a2011-01-25 08:17:48 -0800514 if (r == -EAGAIN)
515 r = 0;
516 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700517}
518
Alex Elderafb3d902013-03-08 20:58:59 -0600519static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
520 int page_offset, size_t length)
521{
Al Viro100803a2015-11-15 00:12:48 -0500522 struct bio_vec bvec = {
523 .bv_page = page,
524 .bv_offset = page_offset,
525 .bv_len = length
526 };
527 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
528 int r;
Alex Elderafb3d902013-03-08 20:58:59 -0600529
530 BUG_ON(page_offset + length > PAGE_SIZE);
David Howellsaa563d72018-10-20 00:57:56 +0100531 iov_iter_bvec(&msg.msg_iter, READ, &bvec, 1, length);
Al Viro100803a2015-11-15 00:12:48 -0500532 r = sock_recvmsg(sock, &msg, msg.msg_flags);
533 if (r == -EAGAIN)
534 r = 0;
535 return r;
Alex Elderafb3d902013-03-08 20:58:59 -0600536}
537
Sage Weil31b80062009-10-06 11:31:13 -0700538/*
539 * write something. @more is true if caller will be sending more data
540 * shortly.
541 */
542static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
Ilya Dryomov87349cd2018-11-21 18:56:40 +0100543 size_t kvlen, size_t len, bool more)
Sage Weil31b80062009-10-06 11:31:13 -0700544{
545 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800546 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700547
548 if (more)
549 msg.msg_flags |= MSG_MORE;
550 else
551 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
552
Sage Weil42961d22011-01-25 08:19:34 -0800553 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
554 if (r == -EAGAIN)
555 r = 0;
556 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700557}
558
Ilya Dryomov433b0a12018-11-20 15:44:00 +0100559/*
560 * @more: either or both of MSG_MORE and MSG_SENDPAGE_NOTLAST
561 */
Chunwei Chen178eda292014-04-23 12:35:09 +0800562static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
Ilya Dryomov433b0a12018-11-20 15:44:00 +0100563 int offset, size_t size, int more)
Chunwei Chen178eda292014-04-23 12:35:09 +0800564{
Ilya Dryomov3239eb52018-11-16 11:58:19 +0100565 ssize_t (*sendpage)(struct socket *sock, struct page *page,
566 int offset, size_t size, int flags);
Ilya Dryomov433b0a12018-11-20 15:44:00 +0100567 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | more;
Chunwei Chen178eda292014-04-23 12:35:09 +0800568 int ret;
Chunwei Chen178eda292014-04-23 12:35:09 +0800569
Ilya Dryomov7e241f62018-11-08 15:55:37 +0100570 /*
571 * sendpage cannot properly handle pages with page_count == 0,
572 * we need to fall back to sendmsg if that's the case.
573 *
574 * Same goes for slab pages: skb_can_coalesce() allows
575 * coalescing neighboring slab objects into a single frag which
576 * triggers one of hardened usercopy checks.
577 */
578 if (page_count(page) >= 1 && !PageSlab(page))
Ilya Dryomov3239eb52018-11-16 11:58:19 +0100579 sendpage = sock->ops->sendpage;
Al Viro61ff6e92016-01-09 20:55:45 -0500580 else
Ilya Dryomov3239eb52018-11-16 11:58:19 +0100581 sendpage = sock_no_sendpage;
Al Viro61ff6e92016-01-09 20:55:45 -0500582
Ilya Dryomov3239eb52018-11-16 11:58:19 +0100583 ret = sendpage(sock, page, offset, size, flags);
Al Viro61ff6e92016-01-09 20:55:45 -0500584 if (ret == -EAGAIN)
585 ret = 0;
Chunwei Chen178eda292014-04-23 12:35:09 +0800586
587 return ret;
588}
Sage Weil31b80062009-10-06 11:31:13 -0700589
590/*
591 * Shutdown/close the socket for the given connection.
592 */
593static int con_close_socket(struct ceph_connection *con)
594{
Sage Weil8007b8d2012-07-30 18:16:16 -0700595 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700596
597 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700598 if (con->sock) {
599 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
600 sock_release(con->sock);
601 con->sock = NULL;
602 }
Alex Elder456ea462012-06-20 21:53:53 -0500603
604 /*
Sage Weil4a861692012-07-20 17:29:55 -0700605 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500606 * independent of the connection mutex, and we could have
607 * received a socket close event before we had the chance to
608 * shut the socket down.
609 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600610 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700611
Alex Elderce2c8902012-05-22 22:15:49 -0500612 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700613 return rc;
614}
615
616/*
617 * Reset a connection. Discard all incoming and outgoing messages
618 * and clear *_seq state.
619 */
620static void ceph_msg_remove(struct ceph_msg *msg)
621{
622 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500623
Sage Weil31b80062009-10-06 11:31:13 -0700624 ceph_msg_put(msg);
625}
626static void ceph_msg_remove_list(struct list_head *head)
627{
628 while (!list_empty(head)) {
629 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
630 list_head);
631 ceph_msg_remove(msg);
632 }
633}
634
635static void reset_connection(struct ceph_connection *con)
636{
637 /* reset connection, out_queue, msg_ and connect_seq */
638 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600639 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700640 ceph_msg_remove_list(&con->out_queue);
641 ceph_msg_remove_list(&con->out_sent);
642
Sage Weilcf3e5c42009-12-11 09:48:05 -0800643 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500644 BUG_ON(con->in_msg->con != con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800645 ceph_msg_put(con->in_msg);
646 con->in_msg = NULL;
647 }
648
Sage Weil31b80062009-10-06 11:31:13 -0700649 con->connect_seq = 0;
650 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800651 if (con->out_msg) {
Ilya Dryomov583d0fe2015-11-02 17:13:58 +0100652 BUG_ON(con->out_msg->con != con);
Sage Weilc86a2932009-12-14 14:04:30 -0800653 ceph_msg_put(con->out_msg);
654 con->out_msg = NULL;
655 }
Sage Weil31b80062009-10-06 11:31:13 -0700656 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700657 con->in_seq_acked = 0;
Ilya Dryomov67645d72015-12-28 13:18:34 +0300658
659 con->out_skip = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700660}
661
662/*
663 * mark a peer down. drop any open connections.
664 */
665void ceph_con_close(struct ceph_connection *con)
666{
Sage Weil8c50c812012-07-30 16:24:37 -0700667 mutex_lock(&con->mutex);
Jeff Laytonb726ec92019-05-06 09:38:47 -0400668 dout("con_close %p peer %s\n", con, ceph_pr_addr(&con->peer_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700669 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500670
Alex Elderc9ffc772013-02-20 10:25:12 -0600671 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
672 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
673 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
674 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500675
Sage Weil31b80062009-10-06 11:31:13 -0700676 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700677 con->peer_global_seq = 0;
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400678 cancel_con(con);
Sage Weilee76e072012-07-20 16:45:49 -0700679 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800680 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700681}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700682EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700683
684/*
Sage Weil31b80062009-10-06 11:31:13 -0700685 * Reopen a closed connection, with a new peer address.
686 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700687void ceph_con_open(struct ceph_connection *con,
688 __u8 entity_type, __u64 entity_num,
689 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700690{
Sage Weil54691552012-07-30 16:21:40 -0700691 mutex_lock(&con->mutex);
Jeff Laytonb726ec92019-05-06 09:38:47 -0400692 dout("con_open %p %s\n", con, ceph_pr_addr(addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700693
Alex Elder122070a2012-12-26 10:43:57 -0600694 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700695 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500696
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700697 con->peer_name.type = (__u8) entity_type;
698 con->peer_name.num = cpu_to_le64(entity_num);
699
Sage Weil31b80062009-10-06 11:31:13 -0700700 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800701 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700702 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700703 queue_con(con);
704}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700705EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700706
707/*
Sage Weil87b315a2010-03-22 14:51:18 -0700708 * return true if this connection ever successfully opened
709 */
710bool ceph_con_opened(struct ceph_connection *con)
711{
712 return con->connect_seq > 0;
713}
714
715/*
Sage Weil31b80062009-10-06 11:31:13 -0700716 * initialize a new connection.
717 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500718void ceph_con_init(struct ceph_connection *con, void *private,
719 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700720 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700721{
722 dout("con_init %p\n", con);
723 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500724 con->private = private;
725 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700726 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500727
728 con_sock_state_init(con);
729
Sage Weilec302642009-12-22 10:43:42 -0800730 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700731 INIT_LIST_HEAD(&con->out_queue);
732 INIT_LIST_HEAD(&con->out_sent);
Ilya Dryomov68931622015-07-03 15:44:41 +0300733 INIT_DELAYED_WORK(&con->work, ceph_con_workfn);
Alex Eldera5988c42012-05-29 11:04:58 -0500734
Sage Weil8dacc7d2012-07-20 17:24:40 -0700735 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700736}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700737EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700738
739
740/*
741 * We maintain a global counter to order connection attempts. Get
742 * a unique seq greater than @gt.
743 */
744static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
745{
746 u32 ret;
747
748 spin_lock(&msgr->global_seq_lock);
749 if (msgr->global_seq < gt)
750 msgr->global_seq = gt;
751 ret = ++msgr->global_seq;
752 spin_unlock(&msgr->global_seq_lock);
753 return ret;
754}
755
Alex Eldere2200422012-05-23 14:35:23 -0500756static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600757{
Ilya Dryomov67645d72015-12-28 13:18:34 +0300758 BUG_ON(con->out_skip);
759
Alex Elder859eb792012-02-14 14:05:33 -0600760 con->out_kvec_left = 0;
761 con->out_kvec_bytes = 0;
762 con->out_kvec_cur = &con->out_kvec[0];
763}
764
Alex Eldere2200422012-05-23 14:35:23 -0500765static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600766 size_t size, void *data)
767{
Ilya Dryomov67645d72015-12-28 13:18:34 +0300768 int index = con->out_kvec_left;
Alex Elder859eb792012-02-14 14:05:33 -0600769
Ilya Dryomov67645d72015-12-28 13:18:34 +0300770 BUG_ON(con->out_skip);
Alex Elder859eb792012-02-14 14:05:33 -0600771 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
772
773 con->out_kvec[index].iov_len = size;
774 con->out_kvec[index].iov_base = data;
775 con->out_kvec_left++;
776 con->out_kvec_bytes += size;
777}
Sage Weil31b80062009-10-06 11:31:13 -0700778
Ilya Dryomov67645d72015-12-28 13:18:34 +0300779/*
780 * Chop off a kvec from the end. Return residual number of bytes for
781 * that kvec, i.e. how many bytes would have been written if the kvec
782 * hadn't been nuked.
783 */
784static int con_out_kvec_skip(struct ceph_connection *con)
785{
786 int off = con->out_kvec_cur - con->out_kvec;
787 int skip = 0;
788
789 if (con->out_kvec_bytes > 0) {
790 skip = con->out_kvec[off + con->out_kvec_left - 1].iov_len;
791 BUG_ON(con->out_kvec_bytes < skip);
792 BUG_ON(!con->out_kvec_left);
793 con->out_kvec_bytes -= skip;
794 con->out_kvec_left--;
795 }
796
797 return skip;
798}
799
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500800#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600801
802/*
803 * For a bio data item, a piece is whatever remains of the next
804 * entry in the current bio iovec, or the first entry in the next
805 * bio in the list.
806 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500807static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500808 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600809{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500810 struct ceph_msg_data *data = cursor->data;
Ilya Dryomov5359a172018-01-20 10:30:10 +0100811 struct ceph_bio_iter *it = &cursor->bio_iter;
Alex Elder6aaa4512013-03-06 23:39:39 -0600812
Ilya Dryomov5359a172018-01-20 10:30:10 +0100813 cursor->resid = min_t(size_t, length, data->bio_length);
814 *it = data->bio_pos;
815 if (cursor->resid < it->iter.bi_size)
816 it->iter.bi_size = cursor->resid;
Alex Elder6aaa4512013-03-06 23:39:39 -0600817
Ilya Dryomov5359a172018-01-20 10:30:10 +0100818 BUG_ON(cursor->resid < bio_iter_len(it->bio, it->iter));
819 cursor->last_piece = cursor->resid == bio_iter_len(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600820}
821
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500822static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
Alex Elder6aaa4512013-03-06 23:39:39 -0600823 size_t *page_offset,
824 size_t *length)
825{
Ilya Dryomov5359a172018-01-20 10:30:10 +0100826 struct bio_vec bv = bio_iter_iovec(cursor->bio_iter.bio,
827 cursor->bio_iter.iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600828
Ilya Dryomov5359a172018-01-20 10:30:10 +0100829 *page_offset = bv.bv_offset;
830 *length = bv.bv_len;
831 return bv.bv_page;
Alex Elder6aaa4512013-03-06 23:39:39 -0600832}
833
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500834static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
835 size_t bytes)
Alex Elder6aaa4512013-03-06 23:39:39 -0600836{
Ilya Dryomov5359a172018-01-20 10:30:10 +0100837 struct ceph_bio_iter *it = &cursor->bio_iter;
Ilya Dryomov187df762019-03-22 22:14:19 +0100838 struct page *page = bio_iter_page(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600839
Ilya Dryomov5359a172018-01-20 10:30:10 +0100840 BUG_ON(bytes > cursor->resid);
841 BUG_ON(bytes > bio_iter_len(it->bio, it->iter));
Alex Elder25aff7c2013-03-11 23:34:22 -0500842 cursor->resid -= bytes;
Ilya Dryomov5359a172018-01-20 10:30:10 +0100843 bio_advance_iter(it->bio, &it->iter, bytes);
Kent Overstreetf38a5182013-08-07 14:30:24 -0700844
Ilya Dryomov5359a172018-01-20 10:30:10 +0100845 if (!cursor->resid) {
846 BUG_ON(!cursor->last_piece);
847 return false; /* no more data */
848 }
Kent Overstreetf38a5182013-08-07 14:30:24 -0700849
Ilya Dryomov187df762019-03-22 22:14:19 +0100850 if (!bytes || (it->iter.bi_size && it->iter.bi_bvec_done &&
851 page == bio_iter_page(it->bio, it->iter)))
Alex Elder6aaa4512013-03-06 23:39:39 -0600852 return false; /* more bytes to process in this segment */
853
Ilya Dryomov5359a172018-01-20 10:30:10 +0100854 if (!it->iter.bi_size) {
855 it->bio = it->bio->bi_next;
856 it->iter = it->bio->bi_iter;
857 if (cursor->resid < it->iter.bi_size)
858 it->iter.bi_size = cursor->resid;
Alex Elder6aaa4512013-03-06 23:39:39 -0600859 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600860
Ilya Dryomov5359a172018-01-20 10:30:10 +0100861 BUG_ON(cursor->last_piece);
862 BUG_ON(cursor->resid < bio_iter_len(it->bio, it->iter));
863 cursor->last_piece = cursor->resid == bio_iter_len(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600864 return true;
865}
Alex Elderea965712013-04-05 14:46:01 -0500866#endif /* CONFIG_BLOCK */
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500867
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100868static void ceph_msg_data_bvecs_cursor_init(struct ceph_msg_data_cursor *cursor,
869 size_t length)
870{
871 struct ceph_msg_data *data = cursor->data;
872 struct bio_vec *bvecs = data->bvec_pos.bvecs;
873
874 cursor->resid = min_t(size_t, length, data->bvec_pos.iter.bi_size);
875 cursor->bvec_iter = data->bvec_pos.iter;
876 cursor->bvec_iter.bi_size = cursor->resid;
877
878 BUG_ON(cursor->resid < bvec_iter_len(bvecs, cursor->bvec_iter));
879 cursor->last_piece =
880 cursor->resid == bvec_iter_len(bvecs, cursor->bvec_iter);
881}
882
883static struct page *ceph_msg_data_bvecs_next(struct ceph_msg_data_cursor *cursor,
884 size_t *page_offset,
885 size_t *length)
886{
887 struct bio_vec bv = bvec_iter_bvec(cursor->data->bvec_pos.bvecs,
888 cursor->bvec_iter);
889
890 *page_offset = bv.bv_offset;
891 *length = bv.bv_len;
892 return bv.bv_page;
893}
894
895static bool ceph_msg_data_bvecs_advance(struct ceph_msg_data_cursor *cursor,
896 size_t bytes)
897{
898 struct bio_vec *bvecs = cursor->data->bvec_pos.bvecs;
Ilya Dryomov187df762019-03-22 22:14:19 +0100899 struct page *page = bvec_iter_page(bvecs, cursor->bvec_iter);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100900
901 BUG_ON(bytes > cursor->resid);
902 BUG_ON(bytes > bvec_iter_len(bvecs, cursor->bvec_iter));
903 cursor->resid -= bytes;
904 bvec_iter_advance(bvecs, &cursor->bvec_iter, bytes);
905
906 if (!cursor->resid) {
907 BUG_ON(!cursor->last_piece);
908 return false; /* no more data */
909 }
910
Ilya Dryomov187df762019-03-22 22:14:19 +0100911 if (!bytes || (cursor->bvec_iter.bi_bvec_done &&
912 page == bvec_iter_page(bvecs, cursor->bvec_iter)))
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100913 return false; /* more bytes to process in this segment */
914
915 BUG_ON(cursor->last_piece);
916 BUG_ON(cursor->resid < bvec_iter_len(bvecs, cursor->bvec_iter));
917 cursor->last_piece =
918 cursor->resid == bvec_iter_len(bvecs, cursor->bvec_iter);
919 return true;
920}
921
Alex Elderfe38a2b2013-03-06 23:39:39 -0600922/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600923 * For a page array, a piece comes from the first page in the array
924 * that has not already been fully consumed.
925 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500926static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500927 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600928{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500929 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600930 int page_count;
931
932 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
933
934 BUG_ON(!data->pages);
935 BUG_ON(!data->length);
936
Alex Elderca8b3a62013-04-05 14:46:01 -0500937 cursor->resid = min(length, data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600938 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600939 cursor->page_offset = data->alignment & ~PAGE_MASK;
940 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500941 BUG_ON(page_count > (int)USHRT_MAX);
942 cursor->page_count = (unsigned short)page_count;
943 BUG_ON(length > SIZE_MAX - cursor->page_offset);
Ilya Dryomov5f740d72014-08-08 12:43:39 +0400944 cursor->last_piece = cursor->page_offset + cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600945}
946
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500947static struct page *
948ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
949 size_t *page_offset, size_t *length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600950{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500951 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600952
953 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
954
955 BUG_ON(cursor->page_index >= cursor->page_count);
956 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600957
958 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500959 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600960 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500961 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600962 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600963
964 return data->pages[cursor->page_index];
965}
966
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500967static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
Alex Eldere766d7b2013-03-07 15:38:28 -0600968 size_t bytes)
969{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500970 BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
Alex Eldere766d7b2013-03-07 15:38:28 -0600971
972 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600973
974 /* Advance the cursor page offset */
975
976 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500977 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
978 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -0600979 return false; /* more bytes to process in the current page */
980
Yan, Zhengd90deda2014-03-23 06:50:39 +0800981 if (!cursor->resid)
982 return false; /* no more data */
983
Alex Elder5df521b2013-03-30 15:09:59 -0500984 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -0600985
986 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -0600987 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500988 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600989
990 return true;
991}
992
993/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600994 * For a pagelist, a piece is whatever remains to be consumed in the
995 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600996 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500997static void
998ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500999 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001000{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001001 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001002 struct ceph_pagelist *pagelist;
1003 struct page *page;
1004
Alex Elderdd236fc2013-03-06 23:39:39 -06001005 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001006
1007 pagelist = data->pagelist;
1008 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001009
1010 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001011 return; /* pagelist can be assigned but empty */
1012
1013 BUG_ON(list_empty(&pagelist->head));
1014 page = list_first_entry(&pagelist->head, struct page, lru);
1015
Alex Elderca8b3a62013-04-05 14:46:01 -05001016 cursor->resid = min(length, pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001017 cursor->page = page;
1018 cursor->offset = 0;
Alex Eldera51b272e2013-04-19 15:34:49 -05001019 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001020}
1021
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001022static struct page *
1023ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
1024 size_t *page_offset, size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001025{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001026 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001027 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001028
1029 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1030
1031 pagelist = data->pagelist;
1032 BUG_ON(!pagelist);
1033
1034 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -05001035 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001036
Alex Elder5df521b2013-03-30 15:09:59 -05001037 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001038 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -05001039 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -05001040 *length = cursor->resid;
1041 else
1042 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001043
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001044 return cursor->page;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001045}
1046
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001047static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
Alex Elderdd236fc2013-03-06 23:39:39 -06001048 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001049{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001050 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001051 struct ceph_pagelist *pagelist;
1052
1053 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1054
1055 pagelist = data->pagelist;
1056 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001057
1058 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001059 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1060
1061 /* Advance the cursor offset */
1062
Alex Elder25aff7c2013-03-11 23:34:22 -05001063 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001064 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001065 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001066 if (!bytes || cursor->offset & ~PAGE_MASK)
1067 return false; /* more bytes to process in the current page */
1068
Yan, Zhengd90deda2014-03-23 06:50:39 +08001069 if (!cursor->resid)
1070 return false; /* no more data */
1071
Alex Elderfe38a2b2013-03-06 23:39:39 -06001072 /* Move on to the next page */
1073
1074 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
Geliang Tang17ddc492015-11-16 21:46:32 +08001075 cursor->page = list_next_entry(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -05001076 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001077
1078 return true;
1079}
1080
Alex Elderdd236fc2013-03-06 23:39:39 -06001081/*
1082 * Message data is handled (sent or received) in pieces, where each
1083 * piece resides on a single page. The network layer might not
1084 * consume an entire piece at once. A data item's cursor keeps
1085 * track of which piece is next to process and how much remains to
1086 * be processed in that piece. It also tracks whether the current
1087 * piece is the last one in the data item.
1088 */
Alex Elderca8b3a62013-04-05 14:46:01 -05001089static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
Alex Elderdd236fc2013-03-06 23:39:39 -06001090{
Alex Elderca8b3a62013-04-05 14:46:01 -05001091 size_t length = cursor->total_resid;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001092
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001093 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001094 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001095 ceph_msg_data_pagelist_cursor_init(cursor, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001096 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001097 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001098 ceph_msg_data_pages_cursor_init(cursor, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001099 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001100#ifdef CONFIG_BLOCK
1101 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001102 ceph_msg_data_bio_cursor_init(cursor, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001103 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001104#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001105 case CEPH_MSG_DATA_BVECS:
1106 ceph_msg_data_bvecs_cursor_init(cursor, length);
1107 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001108 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001109 default:
1110 /* BUG(); */
1111 break;
1112 }
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001113 cursor->need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001114}
1115
Alex Elderca8b3a62013-04-05 14:46:01 -05001116static void ceph_msg_data_cursor_init(struct ceph_msg *msg, size_t length)
1117{
1118 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elderca8b3a62013-04-05 14:46:01 -05001119
1120 BUG_ON(!length);
1121 BUG_ON(length > msg->data_length);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001122 BUG_ON(!msg->num_data_items);
Alex Elderca8b3a62013-04-05 14:46:01 -05001123
Alex Elderca8b3a62013-04-05 14:46:01 -05001124 cursor->total_resid = length;
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001125 cursor->data = msg->data;
Alex Elderca8b3a62013-04-05 14:46:01 -05001126
1127 __ceph_msg_data_cursor_init(cursor);
1128}
1129
Alex Elderdd236fc2013-03-06 23:39:39 -06001130/*
1131 * Return the page containing the next piece to process for a given
1132 * data item, and supply the page offset and length of that piece.
1133 * Indicate whether this is the last piece in this data item.
1134 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001135static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1136 size_t *page_offset, size_t *length,
Alex Elderdd236fc2013-03-06 23:39:39 -06001137 bool *last_piece)
1138{
1139 struct page *page;
1140
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001141 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001142 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001143 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001144 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001145 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001146 page = ceph_msg_data_pages_next(cursor, page_offset, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001147 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001148#ifdef CONFIG_BLOCK
1149 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001150 page = ceph_msg_data_bio_next(cursor, page_offset, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001151 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001152#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001153 case CEPH_MSG_DATA_BVECS:
1154 page = ceph_msg_data_bvecs_next(cursor, page_offset, length);
1155 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001156 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001157 default:
1158 page = NULL;
1159 break;
1160 }
Ilya Dryomov5359a172018-01-20 10:30:10 +01001161
Alex Elderdd236fc2013-03-06 23:39:39 -06001162 BUG_ON(!page);
1163 BUG_ON(*page_offset + *length > PAGE_SIZE);
1164 BUG_ON(!*length);
Ilya Dryomov5359a172018-01-20 10:30:10 +01001165 BUG_ON(*length > cursor->resid);
Alex Elderdd236fc2013-03-06 23:39:39 -06001166 if (last_piece)
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001167 *last_piece = cursor->last_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001168
1169 return page;
1170}
1171
1172/*
1173 * Returns true if the result moves the cursor on to the next piece
1174 * of the data item.
1175 */
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02001176static void ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1177 size_t bytes)
Alex Elderdd236fc2013-03-06 23:39:39 -06001178{
1179 bool new_piece;
1180
Alex Elder25aff7c2013-03-11 23:34:22 -05001181 BUG_ON(bytes > cursor->resid);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001182 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001183 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001184 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
Alex Elderdd236fc2013-03-06 23:39:39 -06001185 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001186 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001187 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
Alex Eldere766d7b2013-03-07 15:38:28 -06001188 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001189#ifdef CONFIG_BLOCK
1190 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001191 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
Alex Elder6aaa4512013-03-06 23:39:39 -06001192 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001193#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001194 case CEPH_MSG_DATA_BVECS:
1195 new_piece = ceph_msg_data_bvecs_advance(cursor, bytes);
1196 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001197 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001198 default:
1199 BUG();
1200 break;
1201 }
Alex Elderca8b3a62013-04-05 14:46:01 -05001202 cursor->total_resid -= bytes;
Alex Elderdd236fc2013-03-06 23:39:39 -06001203
Alex Elderca8b3a62013-04-05 14:46:01 -05001204 if (!cursor->resid && cursor->total_resid) {
1205 WARN_ON(!cursor->last_piece);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001206 cursor->data++;
Alex Elderca8b3a62013-04-05 14:46:01 -05001207 __ceph_msg_data_cursor_init(cursor);
Alex Eldera51b272e2013-04-19 15:34:49 -05001208 new_piece = true;
Alex Elderca8b3a62013-04-05 14:46:01 -05001209 }
Alex Eldera51b272e2013-04-19 15:34:49 -05001210 cursor->need_crc = new_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001211}
1212
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01001213static 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
Alex Elder98fa5dd2013-04-02 12:09:50 -05001220static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
Alex Elder739c9052012-06-11 14:57:13 -05001221{
Alex Elder4c59b4a2013-03-11 23:34:23 -05001222 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001223
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001224 ceph_msg_data_cursor_init(msg, (size_t)data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001225}
1226
Sage Weil31b80062009-10-06 11:31:13 -07001227/*
1228 * Prepare footer for currently outgoing message, and finish things
1229 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1230 */
Alex Elder859eb792012-02-14 14:05:33 -06001231static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001232{
1233 struct ceph_msg *m = con->out_msg;
1234
Alex Elderfd154f32012-06-11 14:57:13 -05001235 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1236
Sage Weil31b80062009-10-06 11:31:13 -07001237 dout("prepare_write_message_footer %p\n", con);
Ilya Dryomov89f08172016-02-20 15:56:07 +01001238 con_out_kvec_add(con, sizeof_footer(con), &m->footer);
Yan, Zheng33d07332014-11-04 16:33:37 +08001239 if (con->peer_features & CEPH_FEATURE_MSG_AUTH) {
1240 if (con->ops->sign_message)
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01001241 con->ops->sign_message(m);
Yan, Zheng33d07332014-11-04 16:33:37 +08001242 else
1243 m->footer.sig = 0;
Yan, Zheng33d07332014-11-04 16:33:37 +08001244 } else {
1245 m->old_footer.flags = m->footer.flags;
Yan, Zheng33d07332014-11-04 16:33:37 +08001246 }
Sage Weil31b80062009-10-06 11:31:13 -07001247 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001248 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001249}
1250
1251/*
1252 * Prepare headers for the next outgoing message.
1253 */
1254static void prepare_write_message(struct ceph_connection *con)
1255{
1256 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001257 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001258
Alex Eldere2200422012-05-23 14:35:23 -05001259 con_out_kvec_reset(con);
Sage Weilc86a2932009-12-14 14:04:30 -08001260 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001261
1262 /* Sneak an ack in there first? If we can get it into the same
1263 * TCP packet that's a good thing. */
1264 if (con->in_seq > con->in_seq_acked) {
1265 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001266 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001267 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001268 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001269 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001270 }
1271
Alex Elder38941f82012-06-01 14:56:43 -05001272 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001273 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001274 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001275 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001276
1277 /* put message on sent list */
1278 ceph_msg_get(m);
1279 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001280
Sage Weile84346b2010-05-11 21:20:38 -07001281 /*
1282 * only assign outgoing seq # if we haven't sent this message
1283 * yet. if it is requeued, resend with it's original seq.
1284 */
1285 if (m->needs_out_seq) {
1286 m->hdr.seq = cpu_to_le64(++con->out_seq);
1287 m->needs_out_seq = false;
Ilya Dryomov98ad5eb2017-06-15 16:30:54 +02001288
Ilya Dryomov4690faf2017-07-26 09:59:15 +02001289 if (con->ops->reencode_message)
1290 con->ops->reencode_message(m);
1291 }
Sage Weil31b80062009-10-06 11:31:13 -07001292
Alex Elder98fa5dd2013-04-02 12:09:50 -05001293 dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
Sage Weil31b80062009-10-06 11:31:13 -07001294 m, con->out_seq, le16_to_cpu(m->hdr.type),
1295 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder98fa5dd2013-04-02 12:09:50 -05001296 m->data_length);
Ilya Dryomov98ad5eb2017-06-15 16:30:54 +02001297 WARN_ON(m->front.iov_len != le32_to_cpu(m->hdr.front_len));
1298 WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001299
1300 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001301 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
Ilya Dryomov67645d72015-12-28 13:18:34 +03001302 con_out_kvec_add(con, sizeof(con->out_hdr), &con->out_hdr);
Alex Eldere2200422012-05-23 14:35:23 -05001303 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001304
Sage Weil31b80062009-10-06 11:31:13 -07001305 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001306 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001307 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001308
Ilya Dryomov67645d72015-12-28 13:18:34 +03001309 /* fill in hdr crc and finalize hdr */
Alex Eldera9a0c512012-02-15 07:43:54 -06001310 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1311 con->out_msg->hdr.crc = cpu_to_le32(crc);
Ilya Dryomov67645d72015-12-28 13:18:34 +03001312 memcpy(&con->out_hdr, &con->out_msg->hdr, sizeof(con->out_hdr));
Alex Eldera9a0c512012-02-15 07:43:54 -06001313
Ilya Dryomov67645d72015-12-28 13:18:34 +03001314 /* fill in front and middle crc, footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001315 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1316 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1317 if (m->middle) {
1318 crc = crc32c(0, m->middle->vec.iov_base,
1319 m->middle->vec.iov_len);
1320 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1321 } else
Sage Weil31b80062009-10-06 11:31:13 -07001322 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001323 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001324 le32_to_cpu(con->out_msg->footer.front_crc),
1325 le32_to_cpu(con->out_msg->footer.middle_crc));
Ilya Dryomov67645d72015-12-28 13:18:34 +03001326 con->out_msg->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001327
1328 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001329 con->out_msg->footer.data_crc = 0;
Alex Elder98fa5dd2013-04-02 12:09:50 -05001330 if (m->data_length) {
1331 prepare_message_data(con->out_msg, m->data_length);
Alex Elder78625052013-03-06 23:39:39 -06001332 con->out_more = 1; /* data + footer will follow */
1333 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001334 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001335 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001336 }
Sage Weil31b80062009-10-06 11:31:13 -07001337
Alex Elderc9ffc772013-02-20 10:25:12 -06001338 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001339}
1340
1341/*
1342 * Prepare an ack.
1343 */
1344static void prepare_write_ack(struct ceph_connection *con)
1345{
1346 dout("prepare_write_ack %p %llu -> %llu\n", con,
1347 con->in_seq_acked, con->in_seq);
1348 con->in_seq_acked = con->in_seq;
1349
Alex Eldere2200422012-05-23 14:35:23 -05001350 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001351
Alex Eldere2200422012-05-23 14:35:23 -05001352 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001353
Sage Weil31b80062009-10-06 11:31:13 -07001354 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001355 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001356 &con->out_temp_ack);
1357
Sage Weil31b80062009-10-06 11:31:13 -07001358 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001359 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001360}
1361
1362/*
Sage Weil3a230832013-03-25 08:47:40 -07001363 * Prepare to share the seq during handshake
1364 */
1365static void prepare_write_seq(struct ceph_connection *con)
1366{
1367 dout("prepare_write_seq %p %llu -> %llu\n", con,
1368 con->in_seq_acked, con->in_seq);
1369 con->in_seq_acked = con->in_seq;
1370
1371 con_out_kvec_reset(con);
1372
1373 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1374 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1375 &con->out_temp_ack);
1376
1377 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1378}
1379
1380/*
Sage Weil31b80062009-10-06 11:31:13 -07001381 * Prepare to write keepalive byte.
1382 */
1383static void prepare_write_keepalive(struct ceph_connection *con)
1384{
1385 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001386 con_out_kvec_reset(con);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001387 if (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2) {
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001388 struct timespec64 now;
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001389
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001390 ktime_get_real_ts64(&now);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001391 con_out_kvec_add(con, sizeof(tag_keepalive2), &tag_keepalive2);
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001392 ceph_encode_timespec64(&con->out_temp_keepalive2, &now);
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001393 con_out_kvec_add(con, sizeof(con->out_temp_keepalive2),
1394 &con->out_temp_keepalive2);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001395 } else {
1396 con_out_kvec_add(con, sizeof(tag_keepalive), &tag_keepalive);
1397 }
Alex Elderc9ffc772013-02-20 10:25:12 -06001398 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001399}
1400
1401/*
1402 * Connection negotiation.
1403 */
1404
Ilya Dryomov262614c2018-07-26 15:17:46 +02001405static int get_connect_authorizer(struct ceph_connection *con)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001406{
Alex Eldera3530df2012-05-16 15:16:39 -05001407 struct ceph_auth_handshake *auth;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001408 int auth_proto;
Alex Elderb1c6b982012-05-16 15:16:38 -05001409
1410 if (!con->ops->get_authorizer) {
Ilya Dryomov262614c2018-07-26 15:17:46 +02001411 con->auth = NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001412 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1413 con->out_connect.authorizer_len = 0;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001414 return 0;
Alex Elderb1c6b982012-05-16 15:16:38 -05001415 }
1416
Ilya Dryomov262614c2018-07-26 15:17:46 +02001417 auth = con->ops->get_authorizer(con, &auth_proto, con->auth_retry);
Alex Eldera3530df2012-05-16 15:16:39 -05001418 if (IS_ERR(auth))
Ilya Dryomov262614c2018-07-26 15:17:46 +02001419 return PTR_ERR(auth);
Sage Weil0da5d702011-05-19 11:21:05 -07001420
Ilya Dryomov262614c2018-07-26 15:17:46 +02001421 con->auth = auth;
1422 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
1423 con->out_connect.authorizer_len = cpu_to_le32(auth->authorizer_buf_len);
1424 return 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001425}
1426
Sage Weil31b80062009-10-06 11:31:13 -07001427/*
1428 * We connected to a peer and are saying hello.
1429 */
Alex Eldere825a662012-05-16 15:16:38 -05001430static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001431{
Alex Eldere2200422012-05-23 14:35:23 -05001432 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1433 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001434 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001435
Sage Weileed0ef22009-11-10 14:34:36 -08001436 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001437 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001438}
1439
Ilya Dryomovc0f56b42018-07-26 17:43:47 +02001440static void __prepare_write_connect(struct ceph_connection *con)
1441{
1442 con_out_kvec_add(con, sizeof(con->out_connect), &con->out_connect);
1443 if (con->auth)
1444 con_out_kvec_add(con, con->auth->authorizer_buf_len,
1445 con->auth->authorizer_buf);
1446
1447 con->out_more = 0;
1448 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1449}
1450
Alex Eldere825a662012-05-16 15:16:38 -05001451static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001452{
Eric Dumazet95c96172012-04-15 05:58:06 +00001453 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001454 int proto;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001455 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001456
1457 switch (con->peer_name.type) {
1458 case CEPH_ENTITY_TYPE_MON:
1459 proto = CEPH_MONC_PROTOCOL;
1460 break;
1461 case CEPH_ENTITY_TYPE_OSD:
1462 proto = CEPH_OSDC_PROTOCOL;
1463 break;
1464 case CEPH_ENTITY_TYPE_MDS:
1465 proto = CEPH_MDSC_PROTOCOL;
1466 break;
1467 default:
1468 BUG();
1469 }
1470
1471 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1472 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001473
Ilya Dryomov859bff52015-10-28 23:50:58 +01001474 con->out_connect.features =
1475 cpu_to_le64(from_msgr(con->msgr)->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001476 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1477 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1478 con->out_connect.global_seq = cpu_to_le32(global_seq);
1479 con->out_connect.protocol_version = cpu_to_le32(proto);
1480 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001481
Ilya Dryomov262614c2018-07-26 15:17:46 +02001482 ret = get_connect_authorizer(con);
1483 if (ret)
1484 return ret;
Alex Elder3da54772012-05-16 15:16:39 -05001485
Ilya Dryomovc0f56b42018-07-26 17:43:47 +02001486 __prepare_write_connect(con);
Alex Eldere10c7582012-05-16 15:16:38 -05001487 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001488}
1489
Sage Weil31b80062009-10-06 11:31:13 -07001490/*
1491 * write as much of pending kvecs to the socket as we can.
1492 * 1 -> done
1493 * 0 -> socket full, but more to do
1494 * <0 -> error
1495 */
1496static int write_partial_kvec(struct ceph_connection *con)
1497{
1498 int ret;
1499
1500 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1501 while (con->out_kvec_bytes > 0) {
1502 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1503 con->out_kvec_left, con->out_kvec_bytes,
1504 con->out_more);
1505 if (ret <= 0)
1506 goto out;
1507 con->out_kvec_bytes -= ret;
1508 if (con->out_kvec_bytes == 0)
1509 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001510
1511 /* account for full iov entries consumed */
1512 while (ret >= con->out_kvec_cur->iov_len) {
1513 BUG_ON(!con->out_kvec_left);
1514 ret -= con->out_kvec_cur->iov_len;
1515 con->out_kvec_cur++;
1516 con->out_kvec_left--;
1517 }
1518 /* and for a partially-consumed entry */
1519 if (ret) {
1520 con->out_kvec_cur->iov_len -= ret;
1521 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001522 }
1523 }
1524 con->out_kvec_left = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001525 ret = 1;
1526out:
1527 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1528 con->out_kvec_bytes, con->out_kvec_left, ret);
1529 return ret; /* done! */
1530}
1531
Alex Elder35b62802013-03-08 20:59:00 -06001532static u32 ceph_crc32c_page(u32 crc, struct page *page,
1533 unsigned int page_offset,
1534 unsigned int length)
1535{
1536 char *kaddr;
1537
1538 kaddr = kmap(page);
1539 BUG_ON(kaddr == NULL);
1540 crc = crc32c(crc, kaddr + page_offset, length);
1541 kunmap(page);
1542
1543 return crc;
1544}
Sage Weil31b80062009-10-06 11:31:13 -07001545/*
1546 * Write as much message data payload as we can. If we finish, queue
1547 * up the footer.
1548 * 1 -> done, footer is now queued in out_kvec[].
1549 * 0 -> socket full, but more to do
1550 * <0 -> error
1551 */
Alex Elder34d2d202013-03-08 20:58:59 -06001552static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001553{
1554 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001555 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Ilya Dryomov859bff52015-10-28 23:50:58 +01001556 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001557 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST;
Alex Elderf5db90b2013-03-11 23:34:23 -05001558 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001559
Alex Elder859a35d2013-03-11 23:34:23 -05001560 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001561
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001562 if (!msg->num_data_items)
Alex Elder4c59b4a2013-03-11 23:34:23 -05001563 return -EINVAL;
1564
Alex Elder5821bd82012-06-11 14:57:13 -05001565 /*
1566 * Iterate through each page that contains data to be
1567 * written, and send as much as possible for each.
1568 *
1569 * If we are calculating the data crc (the default), we will
1570 * need to map the page. If we have no pages, they have
1571 * been revoked, so use the zero page.
1572 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001573 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Ilya Dryomov45a267d2018-01-22 15:20:15 +01001574 while (cursor->total_resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001575 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001576 size_t page_offset;
1577 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05001578 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001579
Ilya Dryomov45a267d2018-01-22 15:20:15 +01001580 if (!cursor->resid) {
1581 ceph_msg_data_advance(cursor, 0);
1582 continue;
1583 }
1584
Ilya Dryomov1f6b8212018-11-14 12:24:01 +01001585 page = ceph_msg_data_next(cursor, &page_offset, &length, NULL);
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001586 if (length == cursor->total_resid)
1587 more = MSG_MORE;
Ilya Dryomov1f6b8212018-11-14 12:24:01 +01001588 ret = ceph_tcp_sendpage(con->sock, page, page_offset, length,
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001589 more);
Alex Elderf5db90b2013-03-11 23:34:23 -05001590 if (ret <= 0) {
1591 if (do_datacrc)
1592 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001593
Alex Elderf5db90b2013-03-11 23:34:23 -05001594 return ret;
1595 }
Alex Elder143334f2013-03-29 11:44:10 -05001596 if (do_datacrc && cursor->need_crc)
1597 crc = ceph_crc32c_page(crc, page, page_offset, length);
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02001598 ceph_msg_data_advance(cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001599 }
1600
Alex Elder34d2d202013-03-08 20:58:59 -06001601 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001602
1603 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001604 if (do_datacrc)
1605 msg->footer.data_crc = cpu_to_le32(crc);
1606 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001607 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001608 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001609 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001610
1611 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001612}
1613
1614/*
1615 * write some zeros
1616 */
1617static int write_partial_skip(struct ceph_connection *con)
1618{
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001619 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST;
Sage Weil31b80062009-10-06 11:31:13 -07001620 int ret;
1621
Ilya Dryomov67645d72015-12-28 13:18:34 +03001622 dout("%s %p %d left\n", __func__, con, con->out_skip);
Sage Weil31b80062009-10-06 11:31:13 -07001623 while (con->out_skip > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001624 size_t size = min(con->out_skip, (int) PAGE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001625
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001626 if (size == con->out_skip)
1627 more = MSG_MORE;
1628 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, more);
Sage Weil31b80062009-10-06 11:31:13 -07001629 if (ret <= 0)
1630 goto out;
1631 con->out_skip -= ret;
1632 }
1633 ret = 1;
1634out:
1635 return ret;
1636}
1637
1638/*
1639 * Prepare to read connection handshake, or an ack.
1640 */
Sage Weileed0ef22009-11-10 14:34:36 -08001641static void prepare_read_banner(struct ceph_connection *con)
1642{
1643 dout("prepare_read_banner %p\n", con);
1644 con->in_base_pos = 0;
1645}
1646
Sage Weil31b80062009-10-06 11:31:13 -07001647static void prepare_read_connect(struct ceph_connection *con)
1648{
1649 dout("prepare_read_connect %p\n", con);
1650 con->in_base_pos = 0;
1651}
1652
1653static void prepare_read_ack(struct ceph_connection *con)
1654{
1655 dout("prepare_read_ack %p\n", con);
1656 con->in_base_pos = 0;
1657}
1658
Sage Weil3a230832013-03-25 08:47:40 -07001659static void prepare_read_seq(struct ceph_connection *con)
1660{
1661 dout("prepare_read_seq %p\n", con);
1662 con->in_base_pos = 0;
1663 con->in_tag = CEPH_MSGR_TAG_SEQ;
1664}
1665
Sage Weil31b80062009-10-06 11:31:13 -07001666static void prepare_read_tag(struct ceph_connection *con)
1667{
1668 dout("prepare_read_tag %p\n", con);
1669 con->in_base_pos = 0;
1670 con->in_tag = CEPH_MSGR_TAG_READY;
1671}
1672
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001673static void prepare_read_keepalive_ack(struct ceph_connection *con)
1674{
1675 dout("prepare_read_keepalive_ack %p\n", con);
1676 con->in_base_pos = 0;
1677}
1678
Sage Weil31b80062009-10-06 11:31:13 -07001679/*
1680 * Prepare to read a message.
1681 */
1682static int prepare_read_message(struct ceph_connection *con)
1683{
1684 dout("prepare_read_message %p\n", con);
1685 BUG_ON(con->in_msg != NULL);
1686 con->in_base_pos = 0;
1687 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1688 return 0;
1689}
1690
1691
1692static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001693 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001694{
Alex Eldere6cee712012-05-10 10:29:50 -05001695 while (con->in_base_pos < end) {
1696 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001697 int have = size - left;
1698 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1699 if (ret <= 0)
1700 return ret;
1701 con->in_base_pos += ret;
1702 }
1703 return 1;
1704}
1705
1706
1707/*
1708 * Read all or part of the connect-side handshake on a new connection
1709 */
Sage Weileed0ef22009-11-10 14:34:36 -08001710static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001711{
Alex Elderfd516532012-05-10 10:29:50 -05001712 int size;
1713 int end;
1714 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001715
Sage Weileed0ef22009-11-10 14:34:36 -08001716 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001717
1718 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001719 size = strlen(CEPH_BANNER);
1720 end = size;
1721 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001722 if (ret <= 0)
1723 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001724
1725 size = sizeof (con->actual_peer_addr);
1726 end += size;
1727 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001728 if (ret <= 0)
1729 goto out;
Jeff Layton2c66de52019-06-17 09:24:31 -04001730 ceph_decode_banner_addr(&con->actual_peer_addr);
Alex Elderfd516532012-05-10 10:29:50 -05001731
1732 size = sizeof (con->peer_addr_for_me);
1733 end += size;
1734 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001735 if (ret <= 0)
1736 goto out;
Jeff Layton2c66de52019-06-17 09:24:31 -04001737 ceph_decode_banner_addr(&con->peer_addr_for_me);
Alex Elderfd516532012-05-10 10:29:50 -05001738
Sage Weileed0ef22009-11-10 14:34:36 -08001739out:
1740 return ret;
1741}
1742
1743static int read_partial_connect(struct ceph_connection *con)
1744{
Alex Elderfd516532012-05-10 10:29:50 -05001745 int size;
1746 int end;
1747 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001748
1749 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1750
Alex Elderfd516532012-05-10 10:29:50 -05001751 size = sizeof (con->in_reply);
1752 end = size;
1753 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001754 if (ret <= 0)
1755 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001756
Ilya Dryomov262614c2018-07-26 15:17:46 +02001757 if (con->auth) {
1758 size = le32_to_cpu(con->in_reply.authorizer_len);
Ilya Dryomov130f52f2018-07-27 19:40:30 +02001759 if (size > con->auth->authorizer_reply_buf_len) {
1760 pr_err("authorizer reply too big: %d > %zu\n", size,
1761 con->auth->authorizer_reply_buf_len);
1762 ret = -EINVAL;
1763 goto out;
1764 }
1765
Ilya Dryomov262614c2018-07-26 15:17:46 +02001766 end += size;
1767 ret = read_partial(con, end, size,
1768 con->auth->authorizer_reply_buf);
1769 if (ret <= 0)
1770 goto out;
1771 }
Sage Weil31b80062009-10-06 11:31:13 -07001772
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001773 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1774 con, (int)con->in_reply.tag,
1775 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001776 le32_to_cpu(con->in_reply.global_seq));
1777out:
1778 return ret;
1779}
1780
1781/*
1782 * Verify the hello banner looks okay.
1783 */
1784static int verify_hello(struct ceph_connection *con)
1785{
1786 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001787 pr_err("connect to %s got bad banner\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04001788 ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001789 con->error_msg = "protocol error, bad banner";
1790 return -1;
1791 }
1792 return 0;
1793}
1794
Jeff Laytoncede1852019-05-06 09:38:46 -04001795static bool addr_is_blank(struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -07001796{
Jeff Laytoncede1852019-05-06 09:38:46 -04001797 struct sockaddr_storage ss = addr->in_addr; /* align */
1798 struct in_addr *addr4 = &((struct sockaddr_in *)&ss)->sin_addr;
1799 struct in6_addr *addr6 = &((struct sockaddr_in6 *)&ss)->sin6_addr;
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001800
Jeff Laytoncede1852019-05-06 09:38:46 -04001801 switch (ss.ss_family) {
Sage Weil31b80062009-10-06 11:31:13 -07001802 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001803 return addr4->s_addr == htonl(INADDR_ANY);
Sage Weil31b80062009-10-06 11:31:13 -07001804 case AF_INET6:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001805 return ipv6_addr_any(addr6);
1806 default:
1807 return true;
Sage Weil31b80062009-10-06 11:31:13 -07001808 }
Sage Weil31b80062009-10-06 11:31:13 -07001809}
1810
Jeff Laytoncede1852019-05-06 09:38:46 -04001811static int addr_port(struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -07001812{
Jeff Laytoncede1852019-05-06 09:38:46 -04001813 switch (get_unaligned(&addr->in_addr.ss_family)) {
Sage Weil31b80062009-10-06 11:31:13 -07001814 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001815 return ntohs(get_unaligned(&((struct sockaddr_in *)&addr->in_addr)->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -07001816 case AF_INET6:
Jeff Laytoncede1852019-05-06 09:38:46 -04001817 return ntohs(get_unaligned(&((struct sockaddr_in6 *)&addr->in_addr)->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -07001818 }
1819 return 0;
1820}
1821
Jeff Laytoncede1852019-05-06 09:38:46 -04001822static void addr_set_port(struct ceph_entity_addr *addr, int p)
Sage Weil31b80062009-10-06 11:31:13 -07001823{
Jeff Laytoncede1852019-05-06 09:38:46 -04001824 switch (get_unaligned(&addr->in_addr.ss_family)) {
Sage Weil31b80062009-10-06 11:31:13 -07001825 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001826 put_unaligned(htons(p), &((struct sockaddr_in *)&addr->in_addr)->sin_port);
Sage Weila2a79602011-05-12 15:34:24 -07001827 break;
Sage Weil31b80062009-10-06 11:31:13 -07001828 case AF_INET6:
Jeff Laytoncede1852019-05-06 09:38:46 -04001829 put_unaligned(htons(p), &((struct sockaddr_in6 *)&addr->in_addr)->sin6_port);
Sage Weila2a79602011-05-12 15:34:24 -07001830 break;
Sage Weil31b80062009-10-06 11:31:13 -07001831 }
1832}
1833
1834/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001835 * Unlike other *_pton function semantics, zero indicates success.
1836 */
Jeff Laytoncede1852019-05-06 09:38:46 -04001837static int ceph_pton(const char *str, size_t len, struct ceph_entity_addr *addr,
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001838 char delim, const char **ipend)
1839{
Jeff Laytoncede1852019-05-06 09:38:46 -04001840 memset(&addr->in_addr, 0, sizeof(addr->in_addr));
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001841
Jeff Laytoncede1852019-05-06 09:38:46 -04001842 if (in4_pton(str, len, (u8 *)&((struct sockaddr_in *)&addr->in_addr)->sin_addr.s_addr, delim, ipend)) {
1843 put_unaligned(AF_INET, &addr->in_addr.ss_family);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001844 return 0;
1845 }
1846
Jeff Laytoncede1852019-05-06 09:38:46 -04001847 if (in6_pton(str, len, (u8 *)&((struct sockaddr_in6 *)&addr->in_addr)->sin6_addr.s6_addr, delim, ipend)) {
1848 put_unaligned(AF_INET6, &addr->in_addr.ss_family);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001849 return 0;
1850 }
1851
1852 return -EINVAL;
1853}
1854
1855/*
1856 * Extract hostname string and resolve using kernel DNS facility.
1857 */
1858#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1859static int ceph_dns_resolve_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001860 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001861{
1862 const char *end, *delim_p;
1863 char *colon_p, *ip_addr = NULL;
1864 int ip_len, ret;
1865
1866 /*
1867 * The end of the hostname occurs immediately preceding the delimiter or
1868 * the port marker (':') where the delimiter takes precedence.
1869 */
1870 delim_p = memchr(name, delim, namelen);
1871 colon_p = memchr(name, ':', namelen);
1872
1873 if (delim_p && colon_p)
1874 end = delim_p < colon_p ? delim_p : colon_p;
1875 else if (!delim_p && colon_p)
1876 end = colon_p;
1877 else {
1878 end = delim_p;
1879 if (!end) /* case: hostname:/ */
1880 end = name + namelen;
1881 }
1882
1883 if (end <= name)
1884 return -EINVAL;
1885
1886 /* do dns_resolve upcall */
David Howellsa58946c2019-06-26 21:02:33 +01001887 ip_len = dns_query(current->nsproxy->net_ns,
1888 NULL, name, end - name, NULL, &ip_addr, NULL, false);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001889 if (ip_len > 0)
Jeff Laytoncede1852019-05-06 09:38:46 -04001890 ret = ceph_pton(ip_addr, ip_len, addr, -1, NULL);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001891 else
1892 ret = -ESRCH;
1893
1894 kfree(ip_addr);
1895
1896 *ipend = end;
1897
1898 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
Jeff Laytonb726ec92019-05-06 09:38:47 -04001899 ret, ret ? "failed" : ceph_pr_addr(addr));
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001900
1901 return ret;
1902}
1903#else
1904static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001905 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001906{
1907 return -EINVAL;
1908}
1909#endif
1910
1911/*
1912 * Parse a server name (IP or hostname). If a valid IP address is not found
1913 * then try to extract a hostname to resolve using userspace DNS upcall.
1914 */
1915static int ceph_parse_server_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001916 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001917{
1918 int ret;
1919
Jeff Laytoncede1852019-05-06 09:38:46 -04001920 ret = ceph_pton(name, namelen, addr, delim, ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001921 if (ret)
Jeff Laytoncede1852019-05-06 09:38:46 -04001922 ret = ceph_dns_resolve_name(name, namelen, addr, delim, ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001923
1924 return ret;
1925}
1926
1927/*
Sage Weil31b80062009-10-06 11:31:13 -07001928 * Parse an ip[:port] list into an addr array. Use the default
1929 * monitor port if a port isn't specified.
1930 */
1931int ceph_parse_ips(const char *c, const char *end,
1932 struct ceph_entity_addr *addr,
1933 int max_count, int *count)
1934{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001935 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001936 const char *p = c;
1937
1938 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1939 for (i = 0; i < max_count; i++) {
1940 const char *ipend;
Sage Weil31b80062009-10-06 11:31:13 -07001941 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001942 char delim = ',';
1943
1944 if (*p == '[') {
1945 delim = ']';
1946 p++;
1947 }
Sage Weil31b80062009-10-06 11:31:13 -07001948
Jeff Laytoncede1852019-05-06 09:38:46 -04001949 ret = ceph_parse_server_name(p, end - p, &addr[i], delim, &ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001950 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001951 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001952 ret = -EINVAL;
1953
Sage Weil31b80062009-10-06 11:31:13 -07001954 p = ipend;
1955
Sage Weil39139f62010-07-08 09:54:52 -07001956 if (delim == ']') {
1957 if (*p != ']') {
1958 dout("missing matching ']'\n");
1959 goto bad;
1960 }
1961 p++;
1962 }
1963
Sage Weil31b80062009-10-06 11:31:13 -07001964 /* port? */
1965 if (p < end && *p == ':') {
1966 port = 0;
1967 p++;
1968 while (p < end && *p >= '0' && *p <= '9') {
1969 port = (port * 10) + (*p - '0');
1970 p++;
1971 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02001972 if (port == 0)
1973 port = CEPH_MON_PORT;
1974 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07001975 goto bad;
1976 } else {
1977 port = CEPH_MON_PORT;
1978 }
1979
Jeff Laytoncede1852019-05-06 09:38:46 -04001980 addr_set_port(&addr[i], port);
Jeff Laytond3c3c0a2019-06-17 06:57:25 -04001981 addr[i].type = CEPH_ENTITY_ADDR_TYPE_LEGACY;
Sage Weil31b80062009-10-06 11:31:13 -07001982
Jeff Laytonb726ec92019-05-06 09:38:47 -04001983 dout("parse_ips got %s\n", ceph_pr_addr(&addr[i]));
Sage Weil31b80062009-10-06 11:31:13 -07001984
1985 if (p == end)
1986 break;
1987 if (*p != ',')
1988 goto bad;
1989 p++;
1990 }
1991
1992 if (p != end)
1993 goto bad;
1994
1995 if (count)
1996 *count = i + 1;
1997 return 0;
1998
1999bad:
Noah Watkinsee3b56f2011-09-23 11:48:42 -07002000 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002001}
2002
Sage Weileed0ef22009-11-10 14:34:36 -08002003static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002004{
Sage Weileed0ef22009-11-10 14:34:36 -08002005 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07002006
2007 if (verify_hello(con) < 0)
2008 return -1;
2009
2010 /*
2011 * Make sure the other end is who we wanted. note that the other
2012 * end may not yet know their ip address, so if it's 0.0.0.0, give
2013 * them the benefit of the doubt.
2014 */
Sage Weil103e2d32010-01-07 16:12:36 -08002015 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
2016 sizeof(con->peer_addr)) != 0 &&
Jeff Laytoncede1852019-05-06 09:38:46 -04002017 !(addr_is_blank(&con->actual_peer_addr) &&
Sage Weil31b80062009-10-06 11:31:13 -07002018 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Joe Perchesb9a67892014-09-09 21:17:29 -07002019 pr_warn("wrong peer, want %s/%d, got %s/%d\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04002020 ceph_pr_addr(&con->peer_addr),
Joe Perchesb9a67892014-09-09 21:17:29 -07002021 (int)le32_to_cpu(con->peer_addr.nonce),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002022 ceph_pr_addr(&con->actual_peer_addr),
Joe Perchesb9a67892014-09-09 21:17:29 -07002023 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08002024 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07002025 return -1;
2026 }
2027
2028 /*
2029 * did we learn our address?
2030 */
Jeff Laytoncede1852019-05-06 09:38:46 -04002031 if (addr_is_blank(&con->msgr->inst.addr)) {
2032 int port = addr_port(&con->msgr->inst.addr);
Sage Weil31b80062009-10-06 11:31:13 -07002033
2034 memcpy(&con->msgr->inst.addr.in_addr,
2035 &con->peer_addr_for_me.in_addr,
2036 sizeof(con->peer_addr_for_me.in_addr));
Jeff Laytoncede1852019-05-06 09:38:46 -04002037 addr_set_port(&con->msgr->inst.addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08002038 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08002039 dout("process_banner learned my addr is %s\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04002040 ceph_pr_addr(&con->msgr->inst.addr));
Sage Weil31b80062009-10-06 11:31:13 -07002041 }
2042
Sage Weileed0ef22009-11-10 14:34:36 -08002043 return 0;
2044}
2045
2046static int process_connect(struct ceph_connection *con)
2047{
Ilya Dryomov859bff52015-10-28 23:50:58 +01002048 u64 sup_feat = from_msgr(con->msgr)->supported_features;
2049 u64 req_feat = from_msgr(con->msgr)->required_features;
Ilya Dryomovdcbbd972017-06-05 14:44:59 +02002050 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07002051 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08002052
Sage Weileed0ef22009-11-10 14:34:36 -08002053 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
2054
Ilya Dryomov262614c2018-07-26 15:17:46 +02002055 if (con->auth) {
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002056 int len = le32_to_cpu(con->in_reply.authorizer_len);
2057
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002058 /*
2059 * Any connection that defines ->get_authorizer()
Ilya Dryomov6daca132018-07-27 19:18:34 +02002060 * should also define ->add_authorizer_challenge() and
2061 * ->verify_authorizer_reply().
2062 *
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002063 * See get_connect_authorizer().
2064 */
Ilya Dryomov6daca132018-07-27 19:18:34 +02002065 if (con->in_reply.tag == CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER) {
2066 ret = con->ops->add_authorizer_challenge(
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002067 con, con->auth->authorizer_reply_buf, len);
Ilya Dryomov6daca132018-07-27 19:18:34 +02002068 if (ret < 0)
2069 return ret;
2070
2071 con_out_kvec_reset(con);
2072 __prepare_write_connect(con);
2073 prepare_read_connect(con);
2074 return 0;
2075 }
2076
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002077 if (len) {
2078 ret = con->ops->verify_authorizer_reply(con);
2079 if (ret < 0) {
2080 con->error_msg = "bad authorize reply";
2081 return ret;
2082 }
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002083 }
2084 }
2085
Sage Weil31b80062009-10-06 11:31:13 -07002086 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08002087 case CEPH_MSGR_TAG_FEATURES:
2088 pr_err("%s%lld %s feature set mismatch,"
2089 " my %llx < server's %llx, missing %llx\n",
2090 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002091 ceph_pr_addr(&con->peer_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002092 sup_feat, server_feat, server_feat & ~sup_feat);
2093 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002094 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002095 return -1;
2096
Sage Weil31b80062009-10-06 11:31:13 -07002097 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07002098 pr_err("%s%lld %s protocol version mismatch,"
2099 " my %d != server's %d\n",
2100 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002101 ceph_pr_addr(&con->peer_addr),
Sage Weil31b80062009-10-06 11:31:13 -07002102 le32_to_cpu(con->out_connect.protocol_version),
2103 le32_to_cpu(con->in_reply.protocol_version));
2104 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002105 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07002106 return -1;
2107
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002108 case CEPH_MSGR_TAG_BADAUTHORIZER:
2109 con->auth_retry++;
2110 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2111 con->auth_retry);
2112 if (con->auth_retry == 2) {
2113 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002114 return -1;
2115 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002116 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002117 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002118 if (ret < 0)
2119 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002120 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002121 break;
Sage Weil31b80062009-10-06 11:31:13 -07002122
2123 case CEPH_MSGR_TAG_RESETSESSION:
2124 /*
2125 * If we connected with a large connect_seq but the peer
2126 * has no record of a session with us (no connection, or
2127 * connect_seq == 0), they will send RESETSESION to indicate
2128 * that they must have reset their session, and may have
2129 * dropped messages.
2130 */
2131 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002132 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002133 pr_err("%s%lld %s connection reset\n",
2134 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002135 ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002136 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002137 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002138 ret = prepare_write_connect(con);
2139 if (ret < 0)
2140 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002141 prepare_read_connect(con);
2142
2143 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002144 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002145 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2146 if (con->ops->peer_reset)
2147 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002148 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002149 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002150 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002151 break;
2152
2153 case CEPH_MSGR_TAG_RETRY_SESSION:
2154 /*
2155 * If we sent a smaller connect_seq than the peer has, try
2156 * again with a larger value.
2157 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002158 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002159 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002160 le32_to_cpu(con->in_reply.connect_seq));
2161 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002162 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002163 ret = prepare_write_connect(con);
2164 if (ret < 0)
2165 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002166 prepare_read_connect(con);
2167 break;
2168
2169 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2170 /*
2171 * If we sent a smaller global_seq than the peer has, try
2172 * again with a larger value.
2173 */
Sage Weileed0ef22009-11-10 14:34:36 -08002174 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002175 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002176 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002177 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002178 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002179 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002180 ret = prepare_write_connect(con);
2181 if (ret < 0)
2182 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002183 prepare_read_connect(con);
2184 break;
2185
Sage Weil3a230832013-03-25 08:47:40 -07002186 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002187 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002188 if (req_feat & ~server_feat) {
2189 pr_err("%s%lld %s protocol feature mismatch,"
2190 " my required %llx > server's %llx, need %llx\n",
2191 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002192 ceph_pr_addr(&con->peer_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002193 req_feat, server_feat, req_feat & ~server_feat);
2194 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002195 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002196 return -1;
2197 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002198
Alex Elder122070a2012-12-26 10:43:57 -06002199 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002200 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002201 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002202 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2203 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002204 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002205 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2206 con->peer_global_seq,
2207 le32_to_cpu(con->in_reply.connect_seq),
2208 con->connect_seq);
2209 WARN_ON(con->connect_seq !=
2210 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002211
2212 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002213 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002214
Sage Weil85effe12012-07-30 16:22:05 -07002215 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002216
Sage Weil3a230832013-03-25 08:47:40 -07002217 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2218 prepare_write_seq(con);
2219 prepare_read_seq(con);
2220 } else {
2221 prepare_read_tag(con);
2222 }
Sage Weil31b80062009-10-06 11:31:13 -07002223 break;
2224
2225 case CEPH_MSGR_TAG_WAIT:
2226 /*
2227 * If there is a connection race (we are opening
2228 * connections to each other), one of us may just have
2229 * to WAIT. This shouldn't happen if we are the
2230 * client.
2231 */
Sage Weil04177882011-05-12 15:33:17 -07002232 con->error_msg = "protocol error, got WAIT as client";
2233 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002234
2235 default:
Sage Weil31b80062009-10-06 11:31:13 -07002236 con->error_msg = "protocol error, garbage tag during connect";
2237 return -1;
2238 }
2239 return 0;
2240}
2241
2242
2243/*
2244 * read (part of) an ack
2245 */
2246static int read_partial_ack(struct ceph_connection *con)
2247{
Alex Elderfd516532012-05-10 10:29:50 -05002248 int size = sizeof (con->in_temp_ack);
2249 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002250
Alex Elderfd516532012-05-10 10:29:50 -05002251 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002252}
2253
Sage Weil31b80062009-10-06 11:31:13 -07002254/*
2255 * We can finally discard anything that's been acked.
2256 */
2257static void process_ack(struct ceph_connection *con)
2258{
2259 struct ceph_msg *m;
2260 u64 ack = le64_to_cpu(con->in_temp_ack);
2261 u64 seq;
Yan, Zheng0a2ad542017-05-05 18:47:37 +08002262 bool reconnect = (con->in_tag == CEPH_MSGR_TAG_SEQ);
2263 struct list_head *list = reconnect ? &con->out_queue : &con->out_sent;
Sage Weil31b80062009-10-06 11:31:13 -07002264
Yan, Zheng0a2ad542017-05-05 18:47:37 +08002265 /*
2266 * In the reconnect case, con_fault() has requeued messages
2267 * in out_sent. We should cleanup old messages according to
2268 * the reconnect seq.
2269 */
2270 while (!list_empty(list)) {
2271 m = list_first_entry(list, struct ceph_msg, list_head);
2272 if (reconnect && m->needs_out_seq)
2273 break;
Sage Weil31b80062009-10-06 11:31:13 -07002274 seq = le64_to_cpu(m->hdr.seq);
2275 if (seq > ack)
2276 break;
2277 dout("got ack for seq %llu type %d at %p\n", seq,
2278 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002279 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002280 ceph_msg_remove(m);
2281 }
Yan, Zheng0a2ad542017-05-05 18:47:37 +08002282
Sage Weil31b80062009-10-06 11:31:13 -07002283 prepare_read_tag(con);
2284}
2285
2286
Yehuda Sadeh24504182010-01-08 13:58:34 -08002287static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002288 struct kvec *section,
2289 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002290{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002291 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002292
Yehuda Sadeh24504182010-01-08 13:58:34 -08002293 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002294
Yehuda Sadeh24504182010-01-08 13:58:34 -08002295 while (section->iov_len < sec_len) {
2296 BUG_ON(section->iov_base == NULL);
2297 left = sec_len - section->iov_len;
2298 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2299 section->iov_len, left);
2300 if (ret <= 0)
2301 return ret;
2302 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002303 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002304 if (section->iov_len == sec_len)
2305 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002306
2307 return 1;
2308}
2309
Alex Elder34d2d202013-03-08 20:58:59 -06002310static int read_partial_msg_data(struct ceph_connection *con)
2311{
2312 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002313 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Ilya Dryomov859bff52015-10-28 23:50:58 +01002314 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Alex Elder686be202013-03-11 23:34:23 -05002315 struct page *page;
2316 size_t page_offset;
2317 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002318 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002319 int ret;
2320
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02002321 if (!msg->num_data_items)
Alex Elder4c59b4a2013-03-11 23:34:23 -05002322 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002323
Alex Elderf5db90b2013-03-11 23:34:23 -05002324 if (do_datacrc)
2325 crc = con->in_data_crc;
Ilya Dryomov45a267d2018-01-22 15:20:15 +01002326 while (cursor->total_resid) {
2327 if (!cursor->resid) {
2328 ceph_msg_data_advance(cursor, 0);
2329 continue;
2330 }
2331
Shraddha Barke343128c2015-10-19 21:59:00 +05302332 page = ceph_msg_data_next(cursor, &page_offset, &length, NULL);
Alex Elder686be202013-03-11 23:34:23 -05002333 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002334 if (ret <= 0) {
2335 if (do_datacrc)
2336 con->in_data_crc = crc;
2337
Alex Elder686be202013-03-11 23:34:23 -05002338 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002339 }
Alex Elder686be202013-03-11 23:34:23 -05002340
2341 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002342 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02002343 ceph_msg_data_advance(cursor, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002344 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002345 if (do_datacrc)
2346 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002347
2348 return 1; /* must return > 0 to indicate success */
2349}
2350
Sage Weil31b80062009-10-06 11:31:13 -07002351/*
2352 * read (part of) a message.
2353 */
Alex Elder686be202013-03-11 23:34:23 -05002354static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2355
Sage Weil31b80062009-10-06 11:31:13 -07002356static int read_partial_message(struct ceph_connection *con)
2357{
2358 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002359 int size;
2360 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002361 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002362 unsigned int front_len, middle_len, data_len;
Ilya Dryomov859bff52015-10-28 23:50:58 +01002363 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Yan, Zheng33d07332014-11-04 16:33:37 +08002364 bool need_sign = (con->peer_features & CEPH_FEATURE_MSG_AUTH);
Sage Weilae187562010-04-22 07:47:01 -07002365 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002366 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002367
2368 dout("read_partial_message con %p msg %p\n", con, m);
2369
2370 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002371 size = sizeof (con->in_hdr);
2372 end = size;
2373 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002374 if (ret <= 0)
2375 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002376
2377 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2378 if (cpu_to_le32(crc) != con->in_hdr.crc) {
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002379 pr_err("read_partial_message bad hdr crc %u != expected %u\n",
Alex Elderfe3ad592012-02-15 07:43:54 -06002380 crc, con->in_hdr.crc);
2381 return -EBADMSG;
2382 }
2383
Sage Weil31b80062009-10-06 11:31:13 -07002384 front_len = le32_to_cpu(con->in_hdr.front_len);
2385 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2386 return -EIO;
2387 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002388 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002389 return -EIO;
2390 data_len = le32_to_cpu(con->in_hdr.data_len);
2391 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2392 return -EIO;
2393
Sage Weilae187562010-04-22 07:47:01 -07002394 /* verify seq# */
2395 seq = le64_to_cpu(con->in_hdr.seq);
2396 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002397 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002398 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002399 ceph_pr_addr(&con->peer_addr),
Sage Weilae187562010-04-22 07:47:01 -07002400 seq, con->in_seq + 1);
2401 con->in_base_pos = -front_len - middle_len - data_len -
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01002402 sizeof_footer(con);
Sage Weilae187562010-04-22 07:47:01 -07002403 con->in_tag = CEPH_MSGR_TAG_READY;
Ilya Dryomove7a88e82016-02-17 20:04:08 +01002404 return 1;
Sage Weilae187562010-04-22 07:47:01 -07002405 } else if ((s64)seq - (s64)con->in_seq > 1) {
2406 pr_err("read_partial_message bad seq %lld expected %lld\n",
2407 seq, con->in_seq + 1);
2408 con->error_msg = "bad message sequence # for incoming message";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002409 return -EBADE;
Sage Weilae187562010-04-22 07:47:01 -07002410 }
2411
Sage Weil31b80062009-10-06 11:31:13 -07002412 /* allocate message? */
2413 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002414 int skip = 0;
2415
Sage Weil31b80062009-10-06 11:31:13 -07002416 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002417 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002418 ret = ceph_con_in_msg_alloc(con, &skip);
2419 if (ret < 0)
2420 return ret;
Alex Elderf759ebb2013-04-05 14:46:01 -05002421
2422 BUG_ON(!con->in_msg ^ skip);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002423 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002424 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002425 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002426 con->in_base_pos = -front_len - middle_len - data_len -
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01002427 sizeof_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07002428 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002429 con->in_seq++;
Ilya Dryomove7a88e82016-02-17 20:04:08 +01002430 return 1;
Sage Weil31b80062009-10-06 11:31:13 -07002431 }
Alex Elder38941f82012-06-01 14:56:43 -05002432
Sage Weil4740a622012-07-30 18:19:30 -07002433 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002434 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002435 m = con->in_msg;
2436 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002437 if (m->middle)
2438 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002439
Alex Elder78625052013-03-06 23:39:39 -06002440 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002441
Alex Elder78625052013-03-06 23:39:39 -06002442 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002443 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002444 }
2445
2446 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002447 ret = read_partial_message_section(con, &m->front, front_len,
2448 &con->in_front_crc);
2449 if (ret <= 0)
2450 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002451
2452 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002453 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002454 ret = read_partial_message_section(con, &m->middle->vec,
2455 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002456 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002457 if (ret <= 0)
2458 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002459 }
2460
2461 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002462 if (data_len) {
2463 ret = read_partial_msg_data(con);
2464 if (ret <= 0)
2465 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002466 }
2467
Sage Weil31b80062009-10-06 11:31:13 -07002468 /* footer */
Ilya Dryomov89f08172016-02-20 15:56:07 +01002469 size = sizeof_footer(con);
Alex Elderfd516532012-05-10 10:29:50 -05002470 end += size;
2471 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002472 if (ret <= 0)
2473 return ret;
2474
Yan, Zheng33d07332014-11-04 16:33:37 +08002475 if (!need_sign) {
2476 m->footer.flags = m->old_footer.flags;
2477 m->footer.sig = 0;
2478 }
2479
Sage Weil31b80062009-10-06 11:31:13 -07002480 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2481 m, front_len, m->footer.front_crc, middle_len,
2482 m->footer.middle_crc, data_len, m->footer.data_crc);
2483
2484 /* crc ok? */
2485 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2486 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2487 m, con->in_front_crc, m->footer.front_crc);
2488 return -EBADMSG;
2489 }
2490 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2491 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2492 m, con->in_middle_crc, m->footer.middle_crc);
2493 return -EBADMSG;
2494 }
Alex Elderbca064d2012-02-15 07:43:54 -06002495 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002496 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2497 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2498 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2499 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2500 return -EBADMSG;
2501 }
2502
Yan, Zheng33d07332014-11-04 16:33:37 +08002503 if (need_sign && con->ops->check_message_signature &&
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01002504 con->ops->check_message_signature(m)) {
Yan, Zheng33d07332014-11-04 16:33:37 +08002505 pr_err("read_partial_message %p signature check failed\n", m);
2506 return -EBADMSG;
2507 }
2508
Sage Weil31b80062009-10-06 11:31:13 -07002509 return 1; /* done! */
2510}
2511
2512/*
2513 * Process message. This happens in the worker thread. The callback should
2514 * be careful not to do anything that waits on other incoming messages or it
2515 * may deadlock.
2516 */
2517static void process_message(struct ceph_connection *con)
2518{
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01002519 struct ceph_msg *msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002520
Alex Elder38941f82012-06-01 14:56:43 -05002521 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002522 con->in_msg = NULL;
2523
2524 /* if first message, set peer_name */
2525 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002526 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002527
Sage Weil31b80062009-10-06 11:31:13 -07002528 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002529 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002530
2531 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2532 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002533 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002534 le16_to_cpu(msg->hdr.type),
2535 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2536 le32_to_cpu(msg->hdr.front_len),
2537 le32_to_cpu(msg->hdr.data_len),
2538 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2539 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002540
2541 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002542}
2543
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002544static int read_keepalive_ack(struct ceph_connection *con)
2545{
2546 struct ceph_timespec ceph_ts;
2547 size_t size = sizeof(ceph_ts);
2548 int ret = read_partial(con, size, size, &ceph_ts);
2549 if (ret <= 0)
2550 return ret;
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02002551 ceph_decode_timespec64(&con->last_keepalive_ack, &ceph_ts);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002552 prepare_read_tag(con);
2553 return 1;
2554}
Sage Weil31b80062009-10-06 11:31:13 -07002555
2556/*
2557 * Write something to the socket. Called in a worker thread when the
2558 * socket appears to be writeable and we have something ready to send.
2559 */
2560static int try_write(struct ceph_connection *con)
2561{
Sage Weil31b80062009-10-06 11:31:13 -07002562 int ret = 1;
2563
Sage Weild59315c2012-06-21 12:49:23 -07002564 dout("try_write start %p state %lu\n", con, con->state);
Ilya Dryomov9c55ad12018-04-24 19:10:55 +02002565 if (con->state != CON_STATE_PREOPEN &&
2566 con->state != CON_STATE_CONNECTING &&
2567 con->state != CON_STATE_NEGOTIATING &&
2568 con->state != CON_STATE_OPEN)
2569 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07002570
Sage Weil31b80062009-10-06 11:31:13 -07002571 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002572 if (con->state == CON_STATE_PREOPEN) {
2573 BUG_ON(con->sock);
2574 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002575
Alex Eldere2200422012-05-23 14:35:23 -05002576 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002577 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002578 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002579
Sage Weilcf3e5c42009-12-11 09:48:05 -08002580 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002581 con->in_tag = CEPH_MSGR_TAG_READY;
2582 dout("try_write initiating connect on %p new state %lu\n",
2583 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002584 ret = ceph_tcp_connect(con);
2585 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002586 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002587 goto out;
2588 }
2589 }
2590
Ilya Dryomovd2935d62018-04-25 12:17:13 +02002591more:
2592 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
Ilya Dryomov9c55ad12018-04-24 19:10:55 +02002593 BUG_ON(!con->sock);
2594
Sage Weil31b80062009-10-06 11:31:13 -07002595 /* kvec data queued? */
Ilya Dryomov67645d72015-12-28 13:18:34 +03002596 if (con->out_kvec_left) {
2597 ret = write_partial_kvec(con);
Sage Weil31b80062009-10-06 11:31:13 -07002598 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002599 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002600 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03002601 if (con->out_skip) {
2602 ret = write_partial_skip(con);
Sage Weil31b80062009-10-06 11:31:13 -07002603 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002604 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002605 }
2606
2607 /* msg pages? */
2608 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002609 if (con->out_msg_done) {
2610 ceph_msg_put(con->out_msg);
2611 con->out_msg = NULL; /* we're done with this one */
2612 goto do_next;
2613 }
2614
Alex Elder34d2d202013-03-08 20:58:59 -06002615 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002616 if (ret == 1)
Ilya Dryomovd2935d62018-04-25 12:17:13 +02002617 goto more; /* we need to send the footer, too! */
Sage Weil31b80062009-10-06 11:31:13 -07002618 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002619 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002620 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002621 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002622 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002623 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002624 }
2625 }
2626
Sage Weilc86a2932009-12-14 14:04:30 -08002627do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002628 if (con->state == CON_STATE_OPEN) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002629 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
2630 prepare_write_keepalive(con);
2631 goto more;
2632 }
Sage Weil31b80062009-10-06 11:31:13 -07002633 /* is anything else pending? */
2634 if (!list_empty(&con->out_queue)) {
2635 prepare_write_message(con);
2636 goto more;
2637 }
2638 if (con->in_seq > con->in_seq_acked) {
2639 prepare_write_ack(con);
2640 goto more;
2641 }
Sage Weil31b80062009-10-06 11:31:13 -07002642 }
2643
2644 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002645 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002646 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002647 ret = 0;
2648out:
Sage Weil42961d22011-01-25 08:19:34 -08002649 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002650 return ret;
2651}
2652
Sage Weil31b80062009-10-06 11:31:13 -07002653/*
2654 * Read what we can from the socket.
2655 */
2656static int try_read(struct ceph_connection *con)
2657{
Sage Weil31b80062009-10-06 11:31:13 -07002658 int ret = -1;
2659
Sage Weil31b80062009-10-06 11:31:13 -07002660more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002661 dout("try_read start on %p state %lu\n", con, con->state);
2662 if (con->state != CON_STATE_CONNECTING &&
2663 con->state != CON_STATE_NEGOTIATING &&
2664 con->state != CON_STATE_OPEN)
2665 return 0;
2666
2667 BUG_ON(!con->sock);
2668
Sage Weil31b80062009-10-06 11:31:13 -07002669 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2670 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002671
Sage Weil8dacc7d2012-07-20 17:24:40 -07002672 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002673 dout("try_read connecting\n");
2674 ret = read_partial_banner(con);
2675 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002676 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002677 ret = process_banner(con);
2678 if (ret < 0)
2679 goto out;
2680
Sage Weil8dacc7d2012-07-20 17:24:40 -07002681 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002682
Jim Schutt6d4221b2012-08-10 10:37:38 -07002683 /*
2684 * Received banner is good, exchange connection info.
2685 * Do not reset out_kvec, as sending our banner raced
2686 * with receiving peer banner after connect completed.
2687 */
Alex Elder7593af92012-05-24 11:55:03 -05002688 ret = prepare_write_connect(con);
2689 if (ret < 0)
2690 goto out;
2691 prepare_read_connect(con);
2692
2693 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002694 goto out;
2695 }
2696
Sage Weil8dacc7d2012-07-20 17:24:40 -07002697 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002698 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002699 ret = read_partial_connect(con);
2700 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002701 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002702 ret = process_connect(con);
2703 if (ret < 0)
2704 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002705 goto more;
2706 }
2707
Alex Elder122070a2012-12-26 10:43:57 -06002708 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002709
Sage Weil31b80062009-10-06 11:31:13 -07002710 if (con->in_base_pos < 0) {
2711 /*
2712 * skipping + discarding content.
Sage Weil31b80062009-10-06 11:31:13 -07002713 */
Ilya Dryomove5c93882018-04-27 18:58:47 +02002714 ret = ceph_tcp_recvmsg(con->sock, NULL, -con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002715 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002716 goto out;
Ilya Dryomove5c93882018-04-27 18:58:47 +02002717 dout("skipped %d / %d bytes\n", ret, -con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002718 con->in_base_pos += ret;
2719 if (con->in_base_pos)
2720 goto more;
2721 }
2722 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2723 /*
2724 * what's next?
2725 */
2726 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2727 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002728 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002729 dout("try_read got tag %d\n", (int)con->in_tag);
2730 switch (con->in_tag) {
2731 case CEPH_MSGR_TAG_MSG:
2732 prepare_read_message(con);
2733 break;
2734 case CEPH_MSGR_TAG_ACK:
2735 prepare_read_ack(con);
2736 break;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002737 case CEPH_MSGR_TAG_KEEPALIVE2_ACK:
2738 prepare_read_keepalive_ack(con);
2739 break;
Sage Weil31b80062009-10-06 11:31:13 -07002740 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002741 con_close_socket(con);
2742 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002743 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002744 default:
2745 goto bad_tag;
2746 }
2747 }
2748 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2749 ret = read_partial_message(con);
2750 if (ret <= 0) {
2751 switch (ret) {
2752 case -EBADMSG:
Ilya Dryomova51983e2015-10-28 23:52:06 +01002753 con->error_msg = "bad crc/signature";
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002754 fallthrough;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002755 case -EBADE:
Sage Weil31b80062009-10-06 11:31:13 -07002756 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002757 break;
Sage Weil31b80062009-10-06 11:31:13 -07002758 case -EIO:
2759 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002760 break;
Sage Weil31b80062009-10-06 11:31:13 -07002761 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002762 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002763 }
2764 if (con->in_tag == CEPH_MSGR_TAG_READY)
2765 goto more;
2766 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002767 if (con->state == CON_STATE_OPEN)
2768 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002769 goto more;
2770 }
Sage Weil3a230832013-03-25 08:47:40 -07002771 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2772 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2773 /*
2774 * the final handshake seq exchange is semantically
2775 * equivalent to an ACK
2776 */
Sage Weil31b80062009-10-06 11:31:13 -07002777 ret = read_partial_ack(con);
2778 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002779 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002780 process_ack(con);
2781 goto more;
2782 }
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002783 if (con->in_tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) {
2784 ret = read_keepalive_ack(con);
2785 if (ret <= 0)
2786 goto out;
2787 goto more;
2788 }
Sage Weil31b80062009-10-06 11:31:13 -07002789
Sage Weil31b80062009-10-06 11:31:13 -07002790out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002791 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002792 return ret;
2793
2794bad_tag:
2795 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2796 con->error_msg = "protocol error, garbage tag";
2797 ret = -1;
2798 goto out;
2799}
2800
2801
2802/*
Alex Elder802c6d92012-10-08 20:37:30 -07002803 * Atomically queue work on a connection after the specified delay.
2804 * Bump @con reference to avoid races with connection teardown.
2805 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002806 */
Alex Elder802c6d92012-10-08 20:37:30 -07002807static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002808{
Sage Weil31b80062009-10-06 11:31:13 -07002809 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002810 dout("%s %p ref count 0\n", __func__, con);
Alex Elder802c6d92012-10-08 20:37:30 -07002811 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002812 }
2813
Alex Elder802c6d92012-10-08 20:37:30 -07002814 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2815 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002816 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002817 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002818 }
Alex Elder802c6d92012-10-08 20:37:30 -07002819
2820 dout("%s %p %lu\n", __func__, con, delay);
Alex Elder802c6d92012-10-08 20:37:30 -07002821 return 0;
2822}
2823
2824static void queue_con(struct ceph_connection *con)
2825{
2826 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002827}
2828
Ilya Dryomov37ab77a2014-06-24 16:21:45 +04002829static void cancel_con(struct ceph_connection *con)
2830{
2831 if (cancel_delayed_work(&con->work)) {
2832 dout("%s %p\n", __func__, con);
2833 con->ops->put(con);
2834 }
2835}
2836
Alex Elder7bb21d682012-12-07 19:50:07 -06002837static bool con_sock_closed(struct ceph_connection *con)
2838{
Alex Elderc9ffc772013-02-20 10:25:12 -06002839 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002840 return false;
2841
2842#define CASE(x) \
2843 case CON_STATE_ ## x: \
2844 con->error_msg = "socket closed (con state " #x ")"; \
2845 break;
2846
2847 switch (con->state) {
2848 CASE(CLOSED);
2849 CASE(PREOPEN);
2850 CASE(CONNECTING);
2851 CASE(NEGOTIATING);
2852 CASE(OPEN);
2853 CASE(STANDBY);
2854 default:
Joe Perchesb9a67892014-09-09 21:17:29 -07002855 pr_warn("%s con %p unrecognized state %lu\n",
Alex Elder7bb21d682012-12-07 19:50:07 -06002856 __func__, con, con->state);
2857 con->error_msg = "unrecognized con state";
2858 BUG();
2859 break;
2860 }
2861#undef CASE
2862
2863 return true;
2864}
2865
Alex Elderf20a39f2013-02-19 12:25:57 -06002866static bool con_backoff(struct ceph_connection *con)
2867{
2868 int ret;
2869
2870 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2871 return false;
2872
2873 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2874 if (ret) {
2875 dout("%s: con %p FAILED to back off %lu\n", __func__,
2876 con, con->delay);
2877 BUG_ON(ret == -ENOENT);
2878 con_flag_set(con, CON_FLAG_BACKOFF);
2879 }
2880
2881 return true;
2882}
2883
Alex Elder93209262013-02-19 12:25:57 -06002884/* Finish fault handling; con->mutex must *not* be held here */
2885
2886static void con_fault_finish(struct ceph_connection *con)
2887{
Ilya Dryomovf6330cc2016-01-13 14:32:57 +01002888 dout("%s %p\n", __func__, con);
2889
Alex Elder93209262013-02-19 12:25:57 -06002890 /*
2891 * in case we faulted due to authentication, invalidate our
2892 * current tickets so that we can get new ones.
2893 */
Ilya Dryomovf6330cc2016-01-13 14:32:57 +01002894 if (con->auth_retry) {
2895 dout("auth_retry %d, invalidating\n", con->auth_retry);
2896 if (con->ops->invalidate_authorizer)
2897 con->ops->invalidate_authorizer(con);
2898 con->auth_retry = 0;
Alex Elder93209262013-02-19 12:25:57 -06002899 }
2900
2901 if (con->ops->fault)
2902 con->ops->fault(con);
2903}
2904
Sage Weil31b80062009-10-06 11:31:13 -07002905/*
2906 * Do some work on a connection. Drop a connection ref when we're done.
2907 */
Ilya Dryomov68931622015-07-03 15:44:41 +03002908static void ceph_con_workfn(struct work_struct *work)
Sage Weil31b80062009-10-06 11:31:13 -07002909{
2910 struct ceph_connection *con = container_of(work, struct ceph_connection,
2911 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002912 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002913
Sage Weil9dd46582010-04-28 13:51:50 -07002914 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002915 while (true) {
2916 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002917
Alex Elder49659412013-02-19 12:25:57 -06002918 if ((fault = con_sock_closed(con))) {
2919 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2920 break;
2921 }
2922 if (con_backoff(con)) {
2923 dout("%s: con %p BACKOFF\n", __func__, con);
2924 break;
2925 }
2926 if (con->state == CON_STATE_STANDBY) {
2927 dout("%s: con %p STANDBY\n", __func__, con);
2928 break;
2929 }
2930 if (con->state == CON_STATE_CLOSED) {
2931 dout("%s: con %p CLOSED\n", __func__, con);
2932 BUG_ON(con->sock);
2933 break;
2934 }
2935 if (con->state == CON_STATE_PREOPEN) {
2936 dout("%s: con %p PREOPEN\n", __func__, con);
2937 BUG_ON(con->sock);
2938 }
Sage Weil0da5d702011-05-19 11:21:05 -07002939
Alex Elder49659412013-02-19 12:25:57 -06002940 ret = try_read(con);
2941 if (ret < 0) {
2942 if (ret == -EAGAIN)
2943 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002944 if (!con->error_msg)
2945 con->error_msg = "socket error on read";
Alex Elder49659412013-02-19 12:25:57 -06002946 fault = true;
2947 break;
2948 }
2949
2950 ret = try_write(con);
2951 if (ret < 0) {
2952 if (ret == -EAGAIN)
2953 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002954 if (!con->error_msg)
2955 con->error_msg = "socket error on write";
Alex Elder49659412013-02-19 12:25:57 -06002956 fault = true;
2957 }
2958
2959 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002960 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002961 if (fault)
2962 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002963 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002964
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002965 if (fault)
2966 con_fault_finish(con);
2967
2968 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002969}
2970
Sage Weil31b80062009-10-06 11:31:13 -07002971/*
2972 * Generic error/fault handler. A retry mechanism is used with
2973 * exponential backoff
2974 */
Alex Elder93209262013-02-19 12:25:57 -06002975static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002976{
Sage Weil31b80062009-10-06 11:31:13 -07002977 dout("fault %p state %lu to peer %s\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04002978 con, con->state, ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002979
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002980 pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002981 ceph_pr_addr(&con->peer_addr), con->error_msg);
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002982 con->error_msg = NULL;
2983
Alex Elder122070a2012-12-26 10:43:57 -06002984 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002985 con->state != CON_STATE_NEGOTIATING &&
2986 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002987
Sage Weil31b80062009-10-06 11:31:13 -07002988 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002989
Alex Elderc9ffc772013-02-20 10:25:12 -06002990 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002991 dout("fault on LOSSYTX channel, marking CLOSED\n");
2992 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002993 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002994 }
2995
Sage Weil5e095e82009-12-14 14:30:34 -08002996 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002997 BUG_ON(con->in_msg->con != con);
Sage Weil5e095e82009-12-14 14:30:34 -08002998 ceph_msg_put(con->in_msg);
2999 con->in_msg = NULL;
3000 }
Sage Weil31b80062009-10-06 11:31:13 -07003001
Sage Weile80a52d2010-02-25 12:40:45 -08003002 /* Requeue anything that hasn't been acked */
3003 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08003004
Sage Weile76661d2011-03-03 10:10:15 -08003005 /* If there are no messages queued or keepalive pending, place
3006 * the connection in a STANDBY state */
3007 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06003008 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08003009 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06003010 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07003011 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08003012 } else {
3013 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07003014 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08003015 if (con->delay == 0)
3016 con->delay = BASE_DELAY_INTERVAL;
3017 else if (con->delay < MAX_DELAY_INTERVAL)
3018 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06003019 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07003020 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07003021 }
Sage Weil31b80062009-10-06 11:31:13 -07003022}
3023
3024
Yan, Zheng120a75e2019-07-25 20:16:39 +08003025void ceph_messenger_reset_nonce(struct ceph_messenger *msgr)
3026{
3027 u32 nonce = le32_to_cpu(msgr->inst.addr.nonce) + 1000000;
3028 msgr->inst.addr.nonce = cpu_to_le32(nonce);
3029 encode_my_addr(msgr);
3030}
Sage Weil31b80062009-10-06 11:31:13 -07003031
3032/*
Alex Elder15d98822012-05-26 23:26:43 -05003033 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07003034 */
Alex Elder15d98822012-05-26 23:26:43 -05003035void ceph_messenger_init(struct ceph_messenger *msgr,
Ilya Dryomov859bff52015-10-28 23:50:58 +01003036 struct ceph_entity_addr *myaddr)
Sage Weil31b80062009-10-06 11:31:13 -07003037{
Sage Weil31b80062009-10-06 11:31:13 -07003038 spin_lock_init(&msgr->global_seq_lock);
3039
Sage Weil31b80062009-10-06 11:31:13 -07003040 if (myaddr)
3041 msgr->inst.addr = *myaddr;
3042
3043 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08003044 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08003045 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08003046 encode_my_addr(msgr);
Sage Weil31b80062009-10-06 11:31:13 -07003047
Guanjun Hea2a32582012-07-08 19:50:33 -07003048 atomic_set(&msgr->stopping, 0);
Ilya Dryomov757856d2015-06-25 17:47:45 +03003049 write_pnet(&msgr->net, get_net(current->nsproxy->net_ns));
Sage Weil31b80062009-10-06 11:31:13 -07003050
Alex Elder15d98822012-05-26 23:26:43 -05003051 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07003052}
Alex Elder15d98822012-05-26 23:26:43 -05003053EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07003054
Ilya Dryomov757856d2015-06-25 17:47:45 +03003055void ceph_messenger_fini(struct ceph_messenger *msgr)
3056{
3057 put_net(read_pnet(&msgr->net));
3058}
3059EXPORT_SYMBOL(ceph_messenger_fini);
3060
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003061static void msg_con_set(struct ceph_msg *msg, struct ceph_connection *con)
3062{
3063 if (msg->con)
3064 msg->con->ops->put(msg->con);
3065
3066 msg->con = con ? con->ops->get(con) : NULL;
3067 BUG_ON(msg->con != con);
3068}
3069
Sage Weile00de342011-03-04 12:25:05 -08003070static void clear_standby(struct ceph_connection *con)
3071{
3072 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07003073 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08003074 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07003075 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08003076 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06003077 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
3078 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08003079 }
3080}
3081
Sage Weil31b80062009-10-06 11:31:13 -07003082/*
3083 * Queue up an outgoing message on the given connection.
3084 */
3085void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
3086{
Sage Weila59b55a2012-07-20 15:34:04 -07003087 /* set src+dst */
3088 msg->hdr.src = con->msgr->inst.name;
3089 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
3090 msg->needs_out_seq = true;
3091
3092 mutex_lock(&con->mutex);
3093
Sage Weil8dacc7d2012-07-20 17:24:40 -07003094 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07003095 dout("con_send %p closed, dropping %p\n", con, msg);
3096 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07003097 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003098 return;
3099 }
3100
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003101 msg_con_set(msg, con);
Sage Weil31b80062009-10-06 11:31:13 -07003102
Sage Weil31b80062009-10-06 11:31:13 -07003103 BUG_ON(!list_empty(&msg->list_head));
3104 list_add_tail(&msg->list_head, &con->out_queue);
3105 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
3106 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
3107 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
3108 le32_to_cpu(msg->hdr.front_len),
3109 le32_to_cpu(msg->hdr.middle_len),
3110 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07003111
3112 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08003113 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003114
3115 /* if there wasn't anything waiting to send before, queue
3116 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06003117 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003118 queue_con(con);
3119}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003120EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07003121
3122/*
3123 * Revoke a message that was previously queued for send
3124 */
Alex Elder6740a842012-06-01 14:56:43 -05003125void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003126{
Alex Elder6740a842012-06-01 14:56:43 -05003127 struct ceph_connection *con = msg->con;
3128
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003129 if (!con) {
3130 dout("%s msg %p null con\n", __func__, msg);
Alex Elder6740a842012-06-01 14:56:43 -05003131 return; /* Message not in our possession */
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003132 }
Alex Elder6740a842012-06-01 14:56:43 -05003133
Sage Weilec302642009-12-22 10:43:42 -08003134 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003135 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003136 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003137 list_del_init(&msg->list_head);
Sage Weil31b80062009-10-06 11:31:13 -07003138 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003139
Sage Weil31b80062009-10-06 11:31:13 -07003140 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003141 }
3142 if (con->out_msg == msg) {
Ilya Dryomov67645d72015-12-28 13:18:34 +03003143 BUG_ON(con->out_skip);
3144 /* footer */
3145 if (con->out_msg_done) {
3146 con->out_skip += con_out_kvec_skip(con);
3147 } else {
3148 BUG_ON(!msg->data_length);
Ilya Dryomov89f08172016-02-20 15:56:07 +01003149 con->out_skip += sizeof_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07003150 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03003151 /* data, middle, front */
3152 if (msg->data_length)
3153 con->out_skip += msg->cursor.total_resid;
3154 if (msg->middle)
3155 con->out_skip += con_out_kvec_skip(con);
3156 con->out_skip += con_out_kvec_skip(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003157
Ilya Dryomov67645d72015-12-28 13:18:34 +03003158 dout("%s %p msg %p - was sending, will write %d skip %d\n",
3159 __func__, con, msg, con->out_kvec_bytes, con->out_skip);
3160 msg->hdr.seq = 0;
3161 con->out_msg = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05003162 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003163 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03003164
Sage Weilec302642009-12-22 10:43:42 -08003165 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003166}
3167
3168/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003169 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003170 */
Alex Elder8921d112012-06-01 14:56:43 -05003171void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003172{
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003173 struct ceph_connection *con = msg->con;
Alex Elder8921d112012-06-01 14:56:43 -05003174
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003175 if (!con) {
Alex Elder8921d112012-06-01 14:56:43 -05003176 dout("%s msg %p null con\n", __func__, msg);
Alex Elder8921d112012-06-01 14:56:43 -05003177 return; /* Message not in our possession */
3178 }
3179
Sage Weil350b1c32009-12-22 10:45:45 -08003180 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003181 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003182 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3183 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3184 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003185
3186 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003187 dout("%s %p msg %p revoked\n", __func__, con, msg);
3188 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003189 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003190 front_len -
3191 middle_len -
3192 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003193 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003194 ceph_msg_put(con->in_msg);
3195 con->in_msg = NULL;
3196 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003197 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003198 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003199 dout("%s %p in_msg %p msg %p no-op\n",
3200 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003201 }
3202 mutex_unlock(&con->mutex);
3203}
3204
3205/*
Sage Weil31b80062009-10-06 11:31:13 -07003206 * Queue a keepalive byte to ensure the tcp connection is alive.
3207 */
3208void ceph_con_keepalive(struct ceph_connection *con)
3209{
Sage Weile00de342011-03-04 12:25:05 -08003210 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003211 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003212 clear_standby(con);
Ilya Dryomov4aac9222019-01-14 21:13:10 +01003213 con_flag_set(con, CON_FLAG_KEEPALIVE_PENDING);
Sage Weil00650932012-07-20 15:33:04 -07003214 mutex_unlock(&con->mutex);
Ilya Dryomov4aac9222019-01-14 21:13:10 +01003215
3216 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003217 queue_con(con);
3218}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003219EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003220
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003221bool ceph_con_keepalive_expired(struct ceph_connection *con,
3222 unsigned long interval)
3223{
3224 if (interval > 0 &&
3225 (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2)) {
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02003226 struct timespec64 now;
3227 struct timespec64 ts;
3228 ktime_get_real_ts64(&now);
3229 jiffies_to_timespec64(interval, &ts);
3230 ts = timespec64_add(con->last_keepalive_ack, ts);
3231 return timespec64_compare(&now, &ts) >= 0;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003232 }
3233 return false;
3234}
3235
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003236static struct ceph_msg_data *ceph_msg_data_add(struct ceph_msg *msg)
Alex Elder43794502013-03-01 18:00:16 -06003237{
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003238 BUG_ON(msg->num_data_items >= msg->max_data_items);
3239 return &msg->data[msg->num_data_items++];
Alex Elder6644ed72013-03-11 23:34:24 -05003240}
3241
3242static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3243{
Ilya Dryomove8862742020-03-10 16:19:01 +01003244 if (data->type == CEPH_MSG_DATA_PAGES && data->own_pages) {
3245 int num_pages = calc_pages_for(data->alignment, data->length);
3246 ceph_release_page_vector(data->pages, num_pages);
3247 } else if (data->type == CEPH_MSG_DATA_PAGELIST) {
Alex Elder6644ed72013-03-11 23:34:24 -05003248 ceph_pagelist_release(data->pagelist);
Ilya Dryomove8862742020-03-10 16:19:01 +01003249 }
Alex Elder43794502013-03-01 18:00:16 -06003250}
3251
Alex Elder90af3602013-04-05 14:46:01 -05003252void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Ilya Dryomove8862742020-03-10 16:19:01 +01003253 size_t length, size_t alignment, bool own_pages)
Alex Elder02afca62013-02-14 12:16:43 -06003254{
Alex Elder6644ed72013-03-11 23:34:24 -05003255 struct ceph_msg_data *data;
3256
Alex Elder07aa1552013-03-04 18:29:06 -06003257 BUG_ON(!pages);
3258 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003259
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003260 data = ceph_msg_data_add(msg);
3261 data->type = CEPH_MSG_DATA_PAGES;
Alex Elder6644ed72013-03-11 23:34:24 -05003262 data->pages = pages;
3263 data->length = length;
3264 data->alignment = alignment & ~PAGE_MASK;
Ilya Dryomove8862742020-03-10 16:19:01 +01003265 data->own_pages = own_pages;
Alex Elder6644ed72013-03-11 23:34:24 -05003266
Alex Elder5240d9f2013-03-14 14:09:06 -05003267 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003268}
Alex Elder90af3602013-04-05 14:46:01 -05003269EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003270
Alex Elder90af3602013-04-05 14:46:01 -05003271void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003272 struct ceph_pagelist *pagelist)
3273{
Alex Elder6644ed72013-03-11 23:34:24 -05003274 struct ceph_msg_data *data;
3275
Alex Elder07aa1552013-03-04 18:29:06 -06003276 BUG_ON(!pagelist);
3277 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003278
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003279 data = ceph_msg_data_add(msg);
3280 data->type = CEPH_MSG_DATA_PAGELIST;
Ilya Dryomov894868332018-09-28 16:02:53 +02003281 refcount_inc(&pagelist->refcnt);
Alex Elder6644ed72013-03-11 23:34:24 -05003282 data->pagelist = pagelist;
3283
Alex Elder5240d9f2013-03-14 14:09:06 -05003284 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003285}
Alex Elder90af3602013-04-05 14:46:01 -05003286EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003287
Alex Elderea965712013-04-05 14:46:01 -05003288#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +01003289void ceph_msg_data_add_bio(struct ceph_msg *msg, struct ceph_bio_iter *bio_pos,
3290 u32 length)
Alex Elder27fa8382013-02-14 12:16:43 -06003291{
Alex Elder6644ed72013-03-11 23:34:24 -05003292 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003293
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003294 data = ceph_msg_data_add(msg);
3295 data->type = CEPH_MSG_DATA_BIO;
Ilya Dryomov5359a172018-01-20 10:30:10 +01003296 data->bio_pos = *bio_pos;
Alex Elderc851c492013-04-05 14:46:01 -05003297 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003298
Alex Elder5240d9f2013-03-14 14:09:06 -05003299 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003300}
Alex Elder90af3602013-04-05 14:46:01 -05003301EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003302#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003303
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003304void ceph_msg_data_add_bvecs(struct ceph_msg *msg,
3305 struct ceph_bvec_iter *bvec_pos)
3306{
3307 struct ceph_msg_data *data;
3308
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003309 data = ceph_msg_data_add(msg);
3310 data->type = CEPH_MSG_DATA_BVECS;
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003311 data->bvec_pos = *bvec_pos;
3312
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003313 msg->data_length += bvec_pos->iter.bi_size;
3314}
3315EXPORT_SYMBOL(ceph_msg_data_add_bvecs);
3316
Sage Weil31b80062009-10-06 11:31:13 -07003317/*
3318 * construct a new message with given type, size
3319 * the new msg has a ref count of 1.
3320 */
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003321struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
3322 gfp_t flags, bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003323{
3324 struct ceph_msg *m;
3325
Alex Eldere3d5d632013-05-01 12:43:04 -05003326 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003327 if (m == NULL)
3328 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003329
Sage Weil31b80062009-10-06 11:31:13 -07003330 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003331 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003332 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003333
Alex Elder9516e452013-03-01 18:00:16 -06003334 INIT_LIST_HEAD(&m->list_head);
3335 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003336
Sage Weil31b80062009-10-06 11:31:13 -07003337 /* front */
3338 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003339 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003340 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003341 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003342 front_len);
3343 goto out2;
3344 }
3345 } else {
3346 m->front.iov_base = NULL;
3347 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003348 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003349
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003350 if (max_data_items) {
3351 m->data = kmalloc_array(max_data_items, sizeof(*m->data),
3352 flags);
3353 if (!m->data)
3354 goto out2;
3355
3356 m->max_data_items = max_data_items;
3357 }
3358
Sage Weilbb257662010-04-01 16:07:23 -07003359 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003360 return m;
3361
3362out2:
3363 ceph_msg_put(m);
3364out:
Sage Weilb61c2762011-08-09 15:03:46 -07003365 if (!can_fail) {
3366 pr_err("msg_new can't create type %d front %d\n", type,
3367 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003368 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003369 } else {
3370 dout("msg_new can't create type %d front %d\n", type,
3371 front_len);
3372 }
Sage Weila79832f2010-04-01 16:06:19 -07003373 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003374}
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003375EXPORT_SYMBOL(ceph_msg_new2);
3376
3377struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3378 bool can_fail)
3379{
3380 return ceph_msg_new2(type, front_len, 0, flags, can_fail);
3381}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003382EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003383
3384/*
Sage Weil31b80062009-10-06 11:31:13 -07003385 * Allocate "middle" portion of a message, if it is needed and wasn't
3386 * allocated by alloc_msg. This allows us to read a small fixed-size
3387 * per-type header in the front and then gracefully fail (i.e.,
3388 * propagate the error to the caller based on info in the front) when
3389 * the middle is too large.
3390 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003391static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003392{
3393 int type = le16_to_cpu(msg->hdr.type);
3394 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3395
3396 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3397 ceph_msg_type_name(type), middle_len);
3398 BUG_ON(!middle_len);
3399 BUG_ON(msg->middle);
3400
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003401 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003402 if (!msg->middle)
3403 return -ENOMEM;
3404 return 0;
3405}
3406
Yehuda Sadeh24504182010-01-08 13:58:34 -08003407/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003408 * Allocate a message for receiving an incoming message on a
3409 * connection, and save the result in con->in_msg. Uses the
3410 * connection's private alloc_msg op if available.
3411 *
Sage Weil4740a622012-07-30 18:19:30 -07003412 * Returns 0 on success, or a negative error code.
3413 *
3414 * On success, if we set *skip = 1:
3415 * - the next message should be skipped and ignored.
3416 * - con->in_msg == NULL
3417 * or if we set *skip = 0:
3418 * - con->in_msg is non-null.
3419 * On error (ENOMEM, EAGAIN, ...),
3420 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003421 */
Sage Weil4740a622012-07-30 18:19:30 -07003422static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003423{
Sage Weil4740a622012-07-30 18:19:30 -07003424 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003425 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003426 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003427 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003428
Alex Elder1c20f2d2012-06-04 14:43:32 -05003429 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003430 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003431
Alex Elder53ded492013-03-01 18:00:14 -06003432 mutex_unlock(&con->mutex);
3433 msg = con->ops->alloc_msg(con, hdr, skip);
3434 mutex_lock(&con->mutex);
3435 if (con->state != CON_STATE_OPEN) {
3436 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003437 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003438 return -EAGAIN;
3439 }
Alex Elder41375772013-03-05 09:25:10 -06003440 if (msg) {
3441 BUG_ON(*skip);
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003442 msg_con_set(msg, con);
Alex Elder41375772013-03-05 09:25:10 -06003443 con->in_msg = msg;
Alex Elder41375772013-03-05 09:25:10 -06003444 } else {
3445 /*
3446 * Null message pointer means either we should skip
3447 * this message or we couldn't allocate memory. The
3448 * former is not an error.
3449 */
3450 if (*skip)
3451 return 0;
Alex Elder41375772013-03-05 09:25:10 -06003452
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003453 con->error_msg = "error allocating memory for incoming message";
Alex Elder53ded492013-03-01 18:00:14 -06003454 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003455 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003456 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003457
Alex Elder1c20f2d2012-06-04 14:43:32 -05003458 if (middle_len && !con->in_msg->middle) {
3459 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003460 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003461 ceph_msg_put(con->in_msg);
3462 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003463 }
3464 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003465
Sage Weil4740a622012-07-30 18:19:30 -07003466 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003467}
3468
Sage Weil31b80062009-10-06 11:31:13 -07003469
3470/*
3471 * Free a generically kmalloc'd message.
3472 */
Ilya Dryomov0215e442014-06-20 14:14:41 +04003473static void ceph_msg_free(struct ceph_msg *m)
Sage Weil31b80062009-10-06 11:31:13 -07003474{
Ilya Dryomov0215e442014-06-20 14:14:41 +04003475 dout("%s %p\n", __func__, m);
Ilya Dryomov4965fc32014-10-23 16:32:57 +04003476 kvfree(m->front.iov_base);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003477 kfree(m->data);
Alex Eldere3d5d632013-05-01 12:43:04 -05003478 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003479}
3480
Ilya Dryomov0215e442014-06-20 14:14:41 +04003481static void ceph_msg_release(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003482{
Sage Weilc2e552e2009-12-07 15:55:05 -08003483 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003484 int i;
Sage Weil31b80062009-10-06 11:31:13 -07003485
Ilya Dryomov0215e442014-06-20 14:14:41 +04003486 dout("%s %p\n", __func__, m);
Sage Weilc2e552e2009-12-07 15:55:05 -08003487 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003488
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003489 msg_con_set(m, NULL);
3490
Sage Weilc2e552e2009-12-07 15:55:05 -08003491 /* drop middle, data, if any */
3492 if (m->middle) {
3493 ceph_buffer_put(m->middle);
3494 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003495 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003496
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003497 for (i = 0; i < m->num_data_items; i++)
3498 ceph_msg_data_destroy(&m->data[i]);
Sage Weil58bb3b32009-12-23 12:12:31 -08003499
Sage Weilc2e552e2009-12-07 15:55:05 -08003500 if (m->pool)
3501 ceph_msgpool_put(m->pool, m);
3502 else
Ilya Dryomov0215e442014-06-20 14:14:41 +04003503 ceph_msg_free(m);
Sage Weil31b80062009-10-06 11:31:13 -07003504}
Ilya Dryomov0215e442014-06-20 14:14:41 +04003505
3506struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3507{
3508 dout("%s %p (was %d)\n", __func__, msg,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003509 kref_read(&msg->kref));
Ilya Dryomov0215e442014-06-20 14:14:41 +04003510 kref_get(&msg->kref);
3511 return msg;
3512}
3513EXPORT_SYMBOL(ceph_msg_get);
3514
3515void ceph_msg_put(struct ceph_msg *msg)
3516{
3517 dout("%s %p (was %d)\n", __func__, msg,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003518 kref_read(&msg->kref));
Ilya Dryomov0215e442014-06-20 14:14:41 +04003519 kref_put(&msg->kref, ceph_msg_release);
3520}
3521EXPORT_SYMBOL(ceph_msg_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003522
3523void ceph_msg_dump(struct ceph_msg *msg)
3524{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003525 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3526 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003527 print_hex_dump(KERN_DEBUG, "header: ",
3528 DUMP_PREFIX_OFFSET, 16, 1,
3529 &msg->hdr, sizeof(msg->hdr), true);
3530 print_hex_dump(KERN_DEBUG, " front: ",
3531 DUMP_PREFIX_OFFSET, 16, 1,
3532 msg->front.iov_base, msg->front.iov_len, true);
3533 if (msg->middle)
3534 print_hex_dump(KERN_DEBUG, "middle: ",
3535 DUMP_PREFIX_OFFSET, 16, 1,
3536 msg->middle->vec.iov_base,
3537 msg->middle->vec.iov_len, true);
3538 print_hex_dump(KERN_DEBUG, "footer: ",
3539 DUMP_PREFIX_OFFSET, 16, 1,
3540 &msg->footer, sizeof(msg->footer), true);
3541}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003542EXPORT_SYMBOL(ceph_msg_dump);