blob: 0b432ce03a42ba49c3756eed7cf3acb7ae567206 [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 */
Coly Li40efc4d2020-10-02 16:27:34 +0800578 if (sendpage_ok(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
Ilya Dryomov3596f4c2020-11-06 17:07:07 +0100616static void ceph_con_reset_protocol(struct ceph_connection *con)
617{
618 dout("%s con %p\n", __func__, con);
619
620 con_close_socket(con);
621 if (con->in_msg) {
622 WARN_ON(con->in_msg->con != con);
623 ceph_msg_put(con->in_msg);
624 con->in_msg = NULL;
625 }
626 if (con->out_msg) {
627 WARN_ON(con->out_msg->con != con);
628 ceph_msg_put(con->out_msg);
629 con->out_msg = NULL;
630 }
631
632 con->out_skip = 0;
633}
634
Sage Weil31b80062009-10-06 11:31:13 -0700635/*
636 * Reset a connection. Discard all incoming and outgoing messages
637 * and clear *_seq state.
638 */
639static void ceph_msg_remove(struct ceph_msg *msg)
640{
641 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500642
Sage Weil31b80062009-10-06 11:31:13 -0700643 ceph_msg_put(msg);
644}
645static void ceph_msg_remove_list(struct list_head *head)
646{
647 while (!list_empty(head)) {
648 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
649 list_head);
650 ceph_msg_remove(msg);
651 }
652}
653
Ilya Dryomov5963c3d2020-11-06 19:04:30 +0100654static void ceph_con_reset_session(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700655{
Ilya Dryomov5963c3d2020-11-06 19:04:30 +0100656 dout("%s con %p\n", __func__, con);
Ilya Dryomov3596f4c2020-11-06 17:07:07 +0100657
658 WARN_ON(con->in_msg);
659 WARN_ON(con->out_msg);
Sage Weil31b80062009-10-06 11:31:13 -0700660 ceph_msg_remove_list(&con->out_queue);
661 ceph_msg_remove_list(&con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700662 con->out_seq = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700663 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700664 con->in_seq_acked = 0;
Ilya Dryomova3da0572020-11-11 14:08:59 +0100665
666 con->connect_seq = 0;
667 con->peer_global_seq = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700668}
669
670/*
671 * mark a peer down. drop any open connections.
672 */
673void ceph_con_close(struct ceph_connection *con)
674{
Sage Weil8c50c812012-07-30 16:24:37 -0700675 mutex_lock(&con->mutex);
Jeff Laytonb726ec92019-05-06 09:38:47 -0400676 dout("con_close %p peer %s\n", con, ceph_pr_addr(&con->peer_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700677 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500678
Alex Elderc9ffc772013-02-20 10:25:12 -0600679 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
680 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
681 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
682 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500683
Ilya Dryomov3596f4c2020-11-06 17:07:07 +0100684 ceph_con_reset_protocol(con);
Ilya Dryomov5963c3d2020-11-06 19:04:30 +0100685 ceph_con_reset_session(con);
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400686 cancel_con(con);
Sage Weilec302642009-12-22 10:43:42 -0800687 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700688}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700689EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700690
691/*
Sage Weil31b80062009-10-06 11:31:13 -0700692 * Reopen a closed connection, with a new peer address.
693 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700694void ceph_con_open(struct ceph_connection *con,
695 __u8 entity_type, __u64 entity_num,
696 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700697{
Sage Weil54691552012-07-30 16:21:40 -0700698 mutex_lock(&con->mutex);
Jeff Laytonb726ec92019-05-06 09:38:47 -0400699 dout("con_open %p %s\n", con, ceph_pr_addr(addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700700
Alex Elder122070a2012-12-26 10:43:57 -0600701 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700702 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500703
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700704 con->peer_name.type = (__u8) entity_type;
705 con->peer_name.num = cpu_to_le64(entity_num);
706
Sage Weil31b80062009-10-06 11:31:13 -0700707 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800708 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700709 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700710 queue_con(con);
711}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700712EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700713
714/*
Sage Weil87b315a2010-03-22 14:51:18 -0700715 * return true if this connection ever successfully opened
716 */
717bool ceph_con_opened(struct ceph_connection *con)
718{
719 return con->connect_seq > 0;
720}
721
722/*
Sage Weil31b80062009-10-06 11:31:13 -0700723 * initialize a new connection.
724 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500725void ceph_con_init(struct ceph_connection *con, void *private,
726 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700727 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700728{
729 dout("con_init %p\n", con);
730 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500731 con->private = private;
732 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700733 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500734
735 con_sock_state_init(con);
736
Sage Weilec302642009-12-22 10:43:42 -0800737 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700738 INIT_LIST_HEAD(&con->out_queue);
739 INIT_LIST_HEAD(&con->out_sent);
Ilya Dryomov68931622015-07-03 15:44:41 +0300740 INIT_DELAYED_WORK(&con->work, ceph_con_workfn);
Alex Eldera5988c42012-05-29 11:04:58 -0500741
Sage Weil8dacc7d2012-07-20 17:24:40 -0700742 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700743}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700744EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700745
746
747/*
748 * We maintain a global counter to order connection attempts. Get
749 * a unique seq greater than @gt.
750 */
751static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
752{
753 u32 ret;
754
755 spin_lock(&msgr->global_seq_lock);
756 if (msgr->global_seq < gt)
757 msgr->global_seq = gt;
758 ret = ++msgr->global_seq;
759 spin_unlock(&msgr->global_seq_lock);
760 return ret;
761}
762
Ilya Dryomov02471922020-10-13 17:38:53 +0200763/*
764 * Discard messages that have been acked by the server.
765 */
766static void ceph_con_discard_sent(struct ceph_connection *con, u64 ack_seq)
767{
768 struct ceph_msg *msg;
769 u64 seq;
770
771 dout("%s con %p ack_seq %llu\n", __func__, con, ack_seq);
772 while (!list_empty(&con->out_sent)) {
773 msg = list_first_entry(&con->out_sent, struct ceph_msg,
774 list_head);
775 WARN_ON(msg->needs_out_seq);
776 seq = le64_to_cpu(msg->hdr.seq);
777 if (seq > ack_seq)
778 break;
779
780 dout("%s con %p discarding msg %p seq %llu\n", __func__, con,
781 msg, seq);
782 ceph_msg_remove(msg);
783 }
784}
785
786/*
787 * Discard messages that have been requeued in con_fault(), up to
788 * reconnect_seq. This avoids gratuitously resending messages that
789 * the server had received and handled prior to reconnect.
790 */
791static void ceph_con_discard_requeued(struct ceph_connection *con,
792 u64 reconnect_seq)
793{
794 struct ceph_msg *msg;
795 u64 seq;
796
797 dout("%s con %p reconnect_seq %llu\n", __func__, con, reconnect_seq);
798 while (!list_empty(&con->out_queue)) {
799 msg = list_first_entry(&con->out_queue, struct ceph_msg,
800 list_head);
801 if (msg->needs_out_seq)
802 break;
803 seq = le64_to_cpu(msg->hdr.seq);
804 if (seq > reconnect_seq)
805 break;
806
807 dout("%s con %p discarding msg %p seq %llu\n", __func__, con,
808 msg, seq);
809 ceph_msg_remove(msg);
810 }
811}
812
Alex Eldere2200422012-05-23 14:35:23 -0500813static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600814{
Ilya Dryomov67645d72015-12-28 13:18:34 +0300815 BUG_ON(con->out_skip);
816
Alex Elder859eb792012-02-14 14:05:33 -0600817 con->out_kvec_left = 0;
818 con->out_kvec_bytes = 0;
819 con->out_kvec_cur = &con->out_kvec[0];
820}
821
Alex Eldere2200422012-05-23 14:35:23 -0500822static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600823 size_t size, void *data)
824{
Ilya Dryomov67645d72015-12-28 13:18:34 +0300825 int index = con->out_kvec_left;
Alex Elder859eb792012-02-14 14:05:33 -0600826
Ilya Dryomov67645d72015-12-28 13:18:34 +0300827 BUG_ON(con->out_skip);
Alex Elder859eb792012-02-14 14:05:33 -0600828 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
829
830 con->out_kvec[index].iov_len = size;
831 con->out_kvec[index].iov_base = data;
832 con->out_kvec_left++;
833 con->out_kvec_bytes += size;
834}
Sage Weil31b80062009-10-06 11:31:13 -0700835
Ilya Dryomov67645d72015-12-28 13:18:34 +0300836/*
837 * Chop off a kvec from the end. Return residual number of bytes for
838 * that kvec, i.e. how many bytes would have been written if the kvec
839 * hadn't been nuked.
840 */
841static int con_out_kvec_skip(struct ceph_connection *con)
842{
843 int off = con->out_kvec_cur - con->out_kvec;
844 int skip = 0;
845
846 if (con->out_kvec_bytes > 0) {
847 skip = con->out_kvec[off + con->out_kvec_left - 1].iov_len;
848 BUG_ON(con->out_kvec_bytes < skip);
849 BUG_ON(!con->out_kvec_left);
850 con->out_kvec_bytes -= skip;
851 con->out_kvec_left--;
852 }
853
854 return skip;
855}
856
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500857#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600858
859/*
860 * For a bio data item, a piece is whatever remains of the next
861 * entry in the current bio iovec, or the first entry in the next
862 * bio in the list.
863 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500864static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500865 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600866{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500867 struct ceph_msg_data *data = cursor->data;
Ilya Dryomov5359a172018-01-20 10:30:10 +0100868 struct ceph_bio_iter *it = &cursor->bio_iter;
Alex Elder6aaa4512013-03-06 23:39:39 -0600869
Ilya Dryomov5359a172018-01-20 10:30:10 +0100870 cursor->resid = min_t(size_t, length, data->bio_length);
871 *it = data->bio_pos;
872 if (cursor->resid < it->iter.bi_size)
873 it->iter.bi_size = cursor->resid;
Alex Elder6aaa4512013-03-06 23:39:39 -0600874
Ilya Dryomov5359a172018-01-20 10:30:10 +0100875 BUG_ON(cursor->resid < bio_iter_len(it->bio, it->iter));
876 cursor->last_piece = cursor->resid == bio_iter_len(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600877}
878
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500879static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
Alex Elder6aaa4512013-03-06 23:39:39 -0600880 size_t *page_offset,
881 size_t *length)
882{
Ilya Dryomov5359a172018-01-20 10:30:10 +0100883 struct bio_vec bv = bio_iter_iovec(cursor->bio_iter.bio,
884 cursor->bio_iter.iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600885
Ilya Dryomov5359a172018-01-20 10:30:10 +0100886 *page_offset = bv.bv_offset;
887 *length = bv.bv_len;
888 return bv.bv_page;
Alex Elder6aaa4512013-03-06 23:39:39 -0600889}
890
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500891static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
892 size_t bytes)
Alex Elder6aaa4512013-03-06 23:39:39 -0600893{
Ilya Dryomov5359a172018-01-20 10:30:10 +0100894 struct ceph_bio_iter *it = &cursor->bio_iter;
Ilya Dryomov187df762019-03-22 22:14:19 +0100895 struct page *page = bio_iter_page(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600896
Ilya Dryomov5359a172018-01-20 10:30:10 +0100897 BUG_ON(bytes > cursor->resid);
898 BUG_ON(bytes > bio_iter_len(it->bio, it->iter));
Alex Elder25aff7c2013-03-11 23:34:22 -0500899 cursor->resid -= bytes;
Ilya Dryomov5359a172018-01-20 10:30:10 +0100900 bio_advance_iter(it->bio, &it->iter, bytes);
Kent Overstreetf38a5182013-08-07 14:30:24 -0700901
Ilya Dryomov5359a172018-01-20 10:30:10 +0100902 if (!cursor->resid) {
903 BUG_ON(!cursor->last_piece);
904 return false; /* no more data */
905 }
Kent Overstreetf38a5182013-08-07 14:30:24 -0700906
Ilya Dryomov187df762019-03-22 22:14:19 +0100907 if (!bytes || (it->iter.bi_size && it->iter.bi_bvec_done &&
908 page == bio_iter_page(it->bio, it->iter)))
Alex Elder6aaa4512013-03-06 23:39:39 -0600909 return false; /* more bytes to process in this segment */
910
Ilya Dryomov5359a172018-01-20 10:30:10 +0100911 if (!it->iter.bi_size) {
912 it->bio = it->bio->bi_next;
913 it->iter = it->bio->bi_iter;
914 if (cursor->resid < it->iter.bi_size)
915 it->iter.bi_size = cursor->resid;
Alex Elder6aaa4512013-03-06 23:39:39 -0600916 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600917
Ilya Dryomov5359a172018-01-20 10:30:10 +0100918 BUG_ON(cursor->last_piece);
919 BUG_ON(cursor->resid < bio_iter_len(it->bio, it->iter));
920 cursor->last_piece = cursor->resid == bio_iter_len(it->bio, it->iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600921 return true;
922}
Alex Elderea965712013-04-05 14:46:01 -0500923#endif /* CONFIG_BLOCK */
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500924
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100925static void ceph_msg_data_bvecs_cursor_init(struct ceph_msg_data_cursor *cursor,
926 size_t length)
927{
928 struct ceph_msg_data *data = cursor->data;
929 struct bio_vec *bvecs = data->bvec_pos.bvecs;
930
931 cursor->resid = min_t(size_t, length, data->bvec_pos.iter.bi_size);
932 cursor->bvec_iter = data->bvec_pos.iter;
933 cursor->bvec_iter.bi_size = cursor->resid;
934
935 BUG_ON(cursor->resid < bvec_iter_len(bvecs, cursor->bvec_iter));
936 cursor->last_piece =
937 cursor->resid == bvec_iter_len(bvecs, cursor->bvec_iter);
938}
939
940static struct page *ceph_msg_data_bvecs_next(struct ceph_msg_data_cursor *cursor,
941 size_t *page_offset,
942 size_t *length)
943{
944 struct bio_vec bv = bvec_iter_bvec(cursor->data->bvec_pos.bvecs,
945 cursor->bvec_iter);
946
947 *page_offset = bv.bv_offset;
948 *length = bv.bv_len;
949 return bv.bv_page;
950}
951
952static bool ceph_msg_data_bvecs_advance(struct ceph_msg_data_cursor *cursor,
953 size_t bytes)
954{
955 struct bio_vec *bvecs = cursor->data->bvec_pos.bvecs;
Ilya Dryomov187df762019-03-22 22:14:19 +0100956 struct page *page = bvec_iter_page(bvecs, cursor->bvec_iter);
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100957
958 BUG_ON(bytes > cursor->resid);
959 BUG_ON(bytes > bvec_iter_len(bvecs, cursor->bvec_iter));
960 cursor->resid -= bytes;
961 bvec_iter_advance(bvecs, &cursor->bvec_iter, bytes);
962
963 if (!cursor->resid) {
964 BUG_ON(!cursor->last_piece);
965 return false; /* no more data */
966 }
967
Ilya Dryomov187df762019-03-22 22:14:19 +0100968 if (!bytes || (cursor->bvec_iter.bi_bvec_done &&
969 page == bvec_iter_page(bvecs, cursor->bvec_iter)))
Ilya Dryomovb9e281c2018-01-20 10:30:11 +0100970 return false; /* more bytes to process in this segment */
971
972 BUG_ON(cursor->last_piece);
973 BUG_ON(cursor->resid < bvec_iter_len(bvecs, cursor->bvec_iter));
974 cursor->last_piece =
975 cursor->resid == bvec_iter_len(bvecs, cursor->bvec_iter);
976 return true;
977}
978
Alex Elderfe38a2b2013-03-06 23:39:39 -0600979/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600980 * For a page array, a piece comes from the first page in the array
981 * that has not already been fully consumed.
982 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500983static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500984 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600985{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500986 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600987 int page_count;
988
989 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
990
991 BUG_ON(!data->pages);
992 BUG_ON(!data->length);
993
Alex Elderca8b3a62013-04-05 14:46:01 -0500994 cursor->resid = min(length, data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600995 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600996 cursor->page_offset = data->alignment & ~PAGE_MASK;
997 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500998 BUG_ON(page_count > (int)USHRT_MAX);
999 cursor->page_count = (unsigned short)page_count;
1000 BUG_ON(length > SIZE_MAX - cursor->page_offset);
Ilya Dryomov5f740d72014-08-08 12:43:39 +04001001 cursor->last_piece = cursor->page_offset + cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -06001002}
1003
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001004static struct page *
1005ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
1006 size_t *page_offset, size_t *length)
Alex Eldere766d7b2013-03-07 15:38:28 -06001007{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001008 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -06001009
1010 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
1011
1012 BUG_ON(cursor->page_index >= cursor->page_count);
1013 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -06001014
1015 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -05001016 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -06001017 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -05001018 else
Alex Eldere766d7b2013-03-07 15:38:28 -06001019 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -06001020
1021 return data->pages[cursor->page_index];
1022}
1023
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001024static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
Alex Eldere766d7b2013-03-07 15:38:28 -06001025 size_t bytes)
1026{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001027 BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
Alex Eldere766d7b2013-03-07 15:38:28 -06001028
1029 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -06001030
1031 /* Advance the cursor page offset */
1032
1033 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001034 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
1035 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -06001036 return false; /* more bytes to process in the current page */
1037
Yan, Zhengd90deda2014-03-23 06:50:39 +08001038 if (!cursor->resid)
1039 return false; /* no more data */
1040
Alex Elder5df521b2013-03-30 15:09:59 -05001041 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -06001042
1043 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -06001044 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -05001045 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -06001046
1047 return true;
1048}
1049
1050/*
Alex Elderdd236fc2013-03-06 23:39:39 -06001051 * For a pagelist, a piece is whatever remains to be consumed in the
1052 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -06001053 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001054static void
1055ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -05001056 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001057{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001058 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001059 struct ceph_pagelist *pagelist;
1060 struct page *page;
1061
Alex Elderdd236fc2013-03-06 23:39:39 -06001062 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001063
1064 pagelist = data->pagelist;
1065 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001066
1067 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001068 return; /* pagelist can be assigned but empty */
1069
1070 BUG_ON(list_empty(&pagelist->head));
1071 page = list_first_entry(&pagelist->head, struct page, lru);
1072
Alex Elderca8b3a62013-04-05 14:46:01 -05001073 cursor->resid = min(length, pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001074 cursor->page = page;
1075 cursor->offset = 0;
Alex Eldera51b272e2013-04-19 15:34:49 -05001076 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001077}
1078
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001079static struct page *
1080ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
1081 size_t *page_offset, size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001082{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001083 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001084 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001085
1086 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1087
1088 pagelist = data->pagelist;
1089 BUG_ON(!pagelist);
1090
1091 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -05001092 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001093
Alex Elder5df521b2013-03-30 15:09:59 -05001094 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001095 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -05001096 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -05001097 *length = cursor->resid;
1098 else
1099 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001100
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001101 return cursor->page;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001102}
1103
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001104static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
Alex Elderdd236fc2013-03-06 23:39:39 -06001105 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001106{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001107 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001108 struct ceph_pagelist *pagelist;
1109
1110 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1111
1112 pagelist = data->pagelist;
1113 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001114
1115 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001116 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1117
1118 /* Advance the cursor offset */
1119
Alex Elder25aff7c2013-03-11 23:34:22 -05001120 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001121 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001122 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001123 if (!bytes || cursor->offset & ~PAGE_MASK)
1124 return false; /* more bytes to process in the current page */
1125
Yan, Zhengd90deda2014-03-23 06:50:39 +08001126 if (!cursor->resid)
1127 return false; /* no more data */
1128
Alex Elderfe38a2b2013-03-06 23:39:39 -06001129 /* Move on to the next page */
1130
1131 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
Geliang Tang17ddc492015-11-16 21:46:32 +08001132 cursor->page = list_next_entry(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -05001133 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001134
1135 return true;
1136}
1137
Alex Elderdd236fc2013-03-06 23:39:39 -06001138/*
1139 * Message data is handled (sent or received) in pieces, where each
1140 * piece resides on a single page. The network layer might not
1141 * consume an entire piece at once. A data item's cursor keeps
1142 * track of which piece is next to process and how much remains to
1143 * be processed in that piece. It also tracks whether the current
1144 * piece is the last one in the data item.
1145 */
Alex Elderca8b3a62013-04-05 14:46:01 -05001146static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
Alex Elderdd236fc2013-03-06 23:39:39 -06001147{
Alex Elderca8b3a62013-04-05 14:46:01 -05001148 size_t length = cursor->total_resid;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001149
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001150 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001151 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001152 ceph_msg_data_pagelist_cursor_init(cursor, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001153 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001154 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001155 ceph_msg_data_pages_cursor_init(cursor, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001156 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001157#ifdef CONFIG_BLOCK
1158 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001159 ceph_msg_data_bio_cursor_init(cursor, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001160 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001161#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001162 case CEPH_MSG_DATA_BVECS:
1163 ceph_msg_data_bvecs_cursor_init(cursor, length);
1164 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001165 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001166 default:
1167 /* BUG(); */
1168 break;
1169 }
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001170 cursor->need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001171}
1172
Ilya Dryomov8ee8abf2020-11-04 10:26:39 +01001173static void ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor,
1174 struct ceph_msg *msg, size_t length)
Alex Elderca8b3a62013-04-05 14:46:01 -05001175{
Alex Elderca8b3a62013-04-05 14:46:01 -05001176 BUG_ON(!length);
1177 BUG_ON(length > msg->data_length);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001178 BUG_ON(!msg->num_data_items);
Alex Elderca8b3a62013-04-05 14:46:01 -05001179
Alex Elderca8b3a62013-04-05 14:46:01 -05001180 cursor->total_resid = length;
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001181 cursor->data = msg->data;
Alex Elderca8b3a62013-04-05 14:46:01 -05001182
1183 __ceph_msg_data_cursor_init(cursor);
1184}
1185
Alex Elderdd236fc2013-03-06 23:39:39 -06001186/*
1187 * Return the page containing the next piece to process for a given
1188 * data item, and supply the page offset and length of that piece.
1189 * Indicate whether this is the last piece in this data item.
1190 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001191static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1192 size_t *page_offset, size_t *length,
Alex Elderdd236fc2013-03-06 23:39:39 -06001193 bool *last_piece)
1194{
1195 struct page *page;
1196
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001197 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001198 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001199 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001200 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001201 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001202 page = ceph_msg_data_pages_next(cursor, page_offset, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001203 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001204#ifdef CONFIG_BLOCK
1205 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001206 page = ceph_msg_data_bio_next(cursor, page_offset, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001207 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001208#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001209 case CEPH_MSG_DATA_BVECS:
1210 page = ceph_msg_data_bvecs_next(cursor, page_offset, length);
1211 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001212 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001213 default:
1214 page = NULL;
1215 break;
1216 }
Ilya Dryomov5359a172018-01-20 10:30:10 +01001217
Alex Elderdd236fc2013-03-06 23:39:39 -06001218 BUG_ON(!page);
1219 BUG_ON(*page_offset + *length > PAGE_SIZE);
1220 BUG_ON(!*length);
Ilya Dryomov5359a172018-01-20 10:30:10 +01001221 BUG_ON(*length > cursor->resid);
Alex Elderdd236fc2013-03-06 23:39:39 -06001222 if (last_piece)
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001223 *last_piece = cursor->last_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001224
1225 return page;
1226}
1227
1228/*
1229 * Returns true if the result moves the cursor on to the next piece
1230 * of the data item.
1231 */
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02001232static void ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1233 size_t bytes)
Alex Elderdd236fc2013-03-06 23:39:39 -06001234{
1235 bool new_piece;
1236
Alex Elder25aff7c2013-03-11 23:34:22 -05001237 BUG_ON(bytes > cursor->resid);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001238 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001239 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001240 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
Alex Elderdd236fc2013-03-06 23:39:39 -06001241 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001242 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001243 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
Alex Eldere766d7b2013-03-07 15:38:28 -06001244 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001245#ifdef CONFIG_BLOCK
1246 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001247 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
Alex Elder6aaa4512013-03-06 23:39:39 -06001248 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001249#endif /* CONFIG_BLOCK */
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01001250 case CEPH_MSG_DATA_BVECS:
1251 new_piece = ceph_msg_data_bvecs_advance(cursor, bytes);
1252 break;
Alex Elder6aaa4512013-03-06 23:39:39 -06001253 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001254 default:
1255 BUG();
1256 break;
1257 }
Alex Elderca8b3a62013-04-05 14:46:01 -05001258 cursor->total_resid -= bytes;
Alex Elderdd236fc2013-03-06 23:39:39 -06001259
Alex Elderca8b3a62013-04-05 14:46:01 -05001260 if (!cursor->resid && cursor->total_resid) {
1261 WARN_ON(!cursor->last_piece);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001262 cursor->data++;
Alex Elderca8b3a62013-04-05 14:46:01 -05001263 __ceph_msg_data_cursor_init(cursor);
Alex Eldera51b272e2013-04-19 15:34:49 -05001264 new_piece = true;
Alex Elderca8b3a62013-04-05 14:46:01 -05001265 }
Alex Eldera51b272e2013-04-19 15:34:49 -05001266 cursor->need_crc = new_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001267}
1268
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01001269static size_t sizeof_footer(struct ceph_connection *con)
1270{
1271 return (con->peer_features & CEPH_FEATURE_MSG_AUTH) ?
1272 sizeof(struct ceph_msg_footer) :
1273 sizeof(struct ceph_msg_footer_old);
1274}
1275
Alex Elder98fa5dd2013-04-02 12:09:50 -05001276static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
Alex Elder739c9052012-06-11 14:57:13 -05001277{
Alex Elder4c59b4a2013-03-11 23:34:23 -05001278 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001279
Ilya Dryomov8ee8abf2020-11-04 10:26:39 +01001280 ceph_msg_data_cursor_init(&msg->cursor, msg, data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001281}
1282
Sage Weil31b80062009-10-06 11:31:13 -07001283/*
1284 * Prepare footer for currently outgoing message, and finish things
1285 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1286 */
Alex Elder859eb792012-02-14 14:05:33 -06001287static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001288{
1289 struct ceph_msg *m = con->out_msg;
1290
Alex Elderfd154f32012-06-11 14:57:13 -05001291 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1292
Sage Weil31b80062009-10-06 11:31:13 -07001293 dout("prepare_write_message_footer %p\n", con);
Ilya Dryomov89f08172016-02-20 15:56:07 +01001294 con_out_kvec_add(con, sizeof_footer(con), &m->footer);
Yan, Zheng33d07332014-11-04 16:33:37 +08001295 if (con->peer_features & CEPH_FEATURE_MSG_AUTH) {
1296 if (con->ops->sign_message)
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01001297 con->ops->sign_message(m);
Yan, Zheng33d07332014-11-04 16:33:37 +08001298 else
1299 m->footer.sig = 0;
Yan, Zheng33d07332014-11-04 16:33:37 +08001300 } else {
1301 m->old_footer.flags = m->footer.flags;
Yan, Zheng33d07332014-11-04 16:33:37 +08001302 }
Sage Weil31b80062009-10-06 11:31:13 -07001303 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001304 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001305}
1306
Ilya Dryomov771294f2020-11-18 16:37:14 +01001307static void ceph_con_get_out_msg(struct ceph_connection *con);
1308
Sage Weil31b80062009-10-06 11:31:13 -07001309/*
1310 * Prepare headers for the next outgoing message.
1311 */
1312static void prepare_write_message(struct ceph_connection *con)
1313{
1314 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001315 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001316
Alex Eldere2200422012-05-23 14:35:23 -05001317 con_out_kvec_reset(con);
Sage Weilc86a2932009-12-14 14:04:30 -08001318 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001319
1320 /* Sneak an ack in there first? If we can get it into the same
1321 * TCP packet that's a good thing. */
1322 if (con->in_seq > con->in_seq_acked) {
1323 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001324 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001325 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001326 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001327 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001328 }
1329
Ilya Dryomov771294f2020-11-18 16:37:14 +01001330 ceph_con_get_out_msg(con);
1331 m = con->out_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001332
Alex Elder98fa5dd2013-04-02 12:09:50 -05001333 dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
Sage Weil31b80062009-10-06 11:31:13 -07001334 m, con->out_seq, le16_to_cpu(m->hdr.type),
1335 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder98fa5dd2013-04-02 12:09:50 -05001336 m->data_length);
Ilya Dryomov98ad5eb2017-06-15 16:30:54 +02001337 WARN_ON(m->front.iov_len != le32_to_cpu(m->hdr.front_len));
1338 WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001339
1340 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001341 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
Ilya Dryomov67645d72015-12-28 13:18:34 +03001342 con_out_kvec_add(con, sizeof(con->out_hdr), &con->out_hdr);
Alex Eldere2200422012-05-23 14:35:23 -05001343 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001344
Sage Weil31b80062009-10-06 11:31:13 -07001345 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001346 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001347 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001348
Ilya Dryomov67645d72015-12-28 13:18:34 +03001349 /* fill in hdr crc and finalize hdr */
Alex Eldera9a0c512012-02-15 07:43:54 -06001350 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1351 con->out_msg->hdr.crc = cpu_to_le32(crc);
Ilya Dryomov67645d72015-12-28 13:18:34 +03001352 memcpy(&con->out_hdr, &con->out_msg->hdr, sizeof(con->out_hdr));
Alex Eldera9a0c512012-02-15 07:43:54 -06001353
Ilya Dryomov67645d72015-12-28 13:18:34 +03001354 /* fill in front and middle crc, footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001355 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1356 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1357 if (m->middle) {
1358 crc = crc32c(0, m->middle->vec.iov_base,
1359 m->middle->vec.iov_len);
1360 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1361 } else
Sage Weil31b80062009-10-06 11:31:13 -07001362 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001363 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001364 le32_to_cpu(con->out_msg->footer.front_crc),
1365 le32_to_cpu(con->out_msg->footer.middle_crc));
Ilya Dryomov67645d72015-12-28 13:18:34 +03001366 con->out_msg->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001367
1368 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001369 con->out_msg->footer.data_crc = 0;
Alex Elder98fa5dd2013-04-02 12:09:50 -05001370 if (m->data_length) {
1371 prepare_message_data(con->out_msg, m->data_length);
Alex Elder78625052013-03-06 23:39:39 -06001372 con->out_more = 1; /* data + footer will follow */
1373 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001374 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001375 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001376 }
Sage Weil31b80062009-10-06 11:31:13 -07001377
Alex Elderc9ffc772013-02-20 10:25:12 -06001378 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001379}
1380
1381/*
1382 * Prepare an ack.
1383 */
1384static void prepare_write_ack(struct ceph_connection *con)
1385{
1386 dout("prepare_write_ack %p %llu -> %llu\n", con,
1387 con->in_seq_acked, con->in_seq);
1388 con->in_seq_acked = con->in_seq;
1389
Alex Eldere2200422012-05-23 14:35:23 -05001390 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001391
Alex Eldere2200422012-05-23 14:35:23 -05001392 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001393
Sage Weil31b80062009-10-06 11:31:13 -07001394 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001395 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001396 &con->out_temp_ack);
1397
Sage Weil31b80062009-10-06 11:31:13 -07001398 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001399 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001400}
1401
1402/*
Sage Weil3a230832013-03-25 08:47:40 -07001403 * Prepare to share the seq during handshake
1404 */
1405static void prepare_write_seq(struct ceph_connection *con)
1406{
1407 dout("prepare_write_seq %p %llu -> %llu\n", con,
1408 con->in_seq_acked, con->in_seq);
1409 con->in_seq_acked = con->in_seq;
1410
1411 con_out_kvec_reset(con);
1412
1413 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1414 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1415 &con->out_temp_ack);
1416
1417 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1418}
1419
1420/*
Sage Weil31b80062009-10-06 11:31:13 -07001421 * Prepare to write keepalive byte.
1422 */
1423static void prepare_write_keepalive(struct ceph_connection *con)
1424{
1425 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001426 con_out_kvec_reset(con);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001427 if (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2) {
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001428 struct timespec64 now;
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001429
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001430 ktime_get_real_ts64(&now);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001431 con_out_kvec_add(con, sizeof(tag_keepalive2), &tag_keepalive2);
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02001432 ceph_encode_timespec64(&con->out_temp_keepalive2, &now);
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001433 con_out_kvec_add(con, sizeof(con->out_temp_keepalive2),
1434 &con->out_temp_keepalive2);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001435 } else {
1436 con_out_kvec_add(con, sizeof(tag_keepalive), &tag_keepalive);
1437 }
Alex Elderc9ffc772013-02-20 10:25:12 -06001438 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001439}
1440
1441/*
1442 * Connection negotiation.
1443 */
1444
Ilya Dryomov262614c2018-07-26 15:17:46 +02001445static int get_connect_authorizer(struct ceph_connection *con)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001446{
Alex Eldera3530df2012-05-16 15:16:39 -05001447 struct ceph_auth_handshake *auth;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001448 int auth_proto;
Alex Elderb1c6b982012-05-16 15:16:38 -05001449
1450 if (!con->ops->get_authorizer) {
Ilya Dryomov262614c2018-07-26 15:17:46 +02001451 con->auth = NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001452 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1453 con->out_connect.authorizer_len = 0;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001454 return 0;
Alex Elderb1c6b982012-05-16 15:16:38 -05001455 }
1456
Ilya Dryomov262614c2018-07-26 15:17:46 +02001457 auth = con->ops->get_authorizer(con, &auth_proto, con->auth_retry);
Alex Eldera3530df2012-05-16 15:16:39 -05001458 if (IS_ERR(auth))
Ilya Dryomov262614c2018-07-26 15:17:46 +02001459 return PTR_ERR(auth);
Sage Weil0da5d702011-05-19 11:21:05 -07001460
Ilya Dryomov262614c2018-07-26 15:17:46 +02001461 con->auth = auth;
1462 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
1463 con->out_connect.authorizer_len = cpu_to_le32(auth->authorizer_buf_len);
1464 return 0;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001465}
1466
Sage Weil31b80062009-10-06 11:31:13 -07001467/*
1468 * We connected to a peer and are saying hello.
1469 */
Alex Eldere825a662012-05-16 15:16:38 -05001470static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001471{
Alex Eldere2200422012-05-23 14:35:23 -05001472 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1473 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001474 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001475
Sage Weileed0ef22009-11-10 14:34:36 -08001476 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001477 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001478}
1479
Ilya Dryomovc0f56b42018-07-26 17:43:47 +02001480static void __prepare_write_connect(struct ceph_connection *con)
1481{
1482 con_out_kvec_add(con, sizeof(con->out_connect), &con->out_connect);
1483 if (con->auth)
1484 con_out_kvec_add(con, con->auth->authorizer_buf_len,
1485 con->auth->authorizer_buf);
1486
1487 con->out_more = 0;
1488 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1489}
1490
Alex Eldere825a662012-05-16 15:16:38 -05001491static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001492{
Eric Dumazet95c96172012-04-15 05:58:06 +00001493 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001494 int proto;
Ilya Dryomov262614c2018-07-26 15:17:46 +02001495 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001496
1497 switch (con->peer_name.type) {
1498 case CEPH_ENTITY_TYPE_MON:
1499 proto = CEPH_MONC_PROTOCOL;
1500 break;
1501 case CEPH_ENTITY_TYPE_OSD:
1502 proto = CEPH_OSDC_PROTOCOL;
1503 break;
1504 case CEPH_ENTITY_TYPE_MDS:
1505 proto = CEPH_MDSC_PROTOCOL;
1506 break;
1507 default:
1508 BUG();
1509 }
1510
1511 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1512 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001513
Ilya Dryomov859bff52015-10-28 23:50:58 +01001514 con->out_connect.features =
1515 cpu_to_le64(from_msgr(con->msgr)->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001516 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1517 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1518 con->out_connect.global_seq = cpu_to_le32(global_seq);
1519 con->out_connect.protocol_version = cpu_to_le32(proto);
1520 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001521
Ilya Dryomov262614c2018-07-26 15:17:46 +02001522 ret = get_connect_authorizer(con);
1523 if (ret)
1524 return ret;
Alex Elder3da54772012-05-16 15:16:39 -05001525
Ilya Dryomovc0f56b42018-07-26 17:43:47 +02001526 __prepare_write_connect(con);
Alex Eldere10c7582012-05-16 15:16:38 -05001527 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001528}
1529
Sage Weil31b80062009-10-06 11:31:13 -07001530/*
1531 * write as much of pending kvecs to the socket as we can.
1532 * 1 -> done
1533 * 0 -> socket full, but more to do
1534 * <0 -> error
1535 */
1536static int write_partial_kvec(struct ceph_connection *con)
1537{
1538 int ret;
1539
1540 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1541 while (con->out_kvec_bytes > 0) {
1542 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1543 con->out_kvec_left, con->out_kvec_bytes,
1544 con->out_more);
1545 if (ret <= 0)
1546 goto out;
1547 con->out_kvec_bytes -= ret;
1548 if (con->out_kvec_bytes == 0)
1549 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001550
1551 /* account for full iov entries consumed */
1552 while (ret >= con->out_kvec_cur->iov_len) {
1553 BUG_ON(!con->out_kvec_left);
1554 ret -= con->out_kvec_cur->iov_len;
1555 con->out_kvec_cur++;
1556 con->out_kvec_left--;
1557 }
1558 /* and for a partially-consumed entry */
1559 if (ret) {
1560 con->out_kvec_cur->iov_len -= ret;
1561 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001562 }
1563 }
1564 con->out_kvec_left = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001565 ret = 1;
1566out:
1567 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1568 con->out_kvec_bytes, con->out_kvec_left, ret);
1569 return ret; /* done! */
1570}
1571
Alex Elder35b62802013-03-08 20:59:00 -06001572static u32 ceph_crc32c_page(u32 crc, struct page *page,
1573 unsigned int page_offset,
1574 unsigned int length)
1575{
1576 char *kaddr;
1577
1578 kaddr = kmap(page);
1579 BUG_ON(kaddr == NULL);
1580 crc = crc32c(crc, kaddr + page_offset, length);
1581 kunmap(page);
1582
1583 return crc;
1584}
Sage Weil31b80062009-10-06 11:31:13 -07001585/*
1586 * Write as much message data payload as we can. If we finish, queue
1587 * up the footer.
1588 * 1 -> done, footer is now queued in out_kvec[].
1589 * 0 -> socket full, but more to do
1590 * <0 -> error
1591 */
Alex Elder34d2d202013-03-08 20:58:59 -06001592static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001593{
1594 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001595 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Ilya Dryomov859bff52015-10-28 23:50:58 +01001596 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001597 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST;
Alex Elderf5db90b2013-03-11 23:34:23 -05001598 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001599
Alex Elder859a35d2013-03-11 23:34:23 -05001600 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001601
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02001602 if (!msg->num_data_items)
Alex Elder4c59b4a2013-03-11 23:34:23 -05001603 return -EINVAL;
1604
Alex Elder5821bd82012-06-11 14:57:13 -05001605 /*
1606 * Iterate through each page that contains data to be
1607 * written, and send as much as possible for each.
1608 *
1609 * If we are calculating the data crc (the default), we will
1610 * need to map the page. If we have no pages, they have
1611 * been revoked, so use the zero page.
1612 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001613 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Ilya Dryomov45a267d2018-01-22 15:20:15 +01001614 while (cursor->total_resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001615 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001616 size_t page_offset;
1617 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05001618 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001619
Ilya Dryomov45a267d2018-01-22 15:20:15 +01001620 if (!cursor->resid) {
1621 ceph_msg_data_advance(cursor, 0);
1622 continue;
1623 }
1624
Ilya Dryomov1f6b8212018-11-14 12:24:01 +01001625 page = ceph_msg_data_next(cursor, &page_offset, &length, NULL);
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001626 if (length == cursor->total_resid)
1627 more = MSG_MORE;
Ilya Dryomov1f6b8212018-11-14 12:24:01 +01001628 ret = ceph_tcp_sendpage(con->sock, page, page_offset, length,
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001629 more);
Alex Elderf5db90b2013-03-11 23:34:23 -05001630 if (ret <= 0) {
1631 if (do_datacrc)
1632 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001633
Alex Elderf5db90b2013-03-11 23:34:23 -05001634 return ret;
1635 }
Alex Elder143334f2013-03-29 11:44:10 -05001636 if (do_datacrc && cursor->need_crc)
1637 crc = ceph_crc32c_page(crc, page, page_offset, length);
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02001638 ceph_msg_data_advance(cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001639 }
1640
Alex Elder34d2d202013-03-08 20:58:59 -06001641 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001642
1643 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001644 if (do_datacrc)
1645 msg->footer.data_crc = cpu_to_le32(crc);
1646 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001647 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001648 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001649 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001650
1651 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001652}
1653
1654/*
1655 * write some zeros
1656 */
1657static int write_partial_skip(struct ceph_connection *con)
1658{
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001659 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST;
Sage Weil31b80062009-10-06 11:31:13 -07001660 int ret;
1661
Ilya Dryomov67645d72015-12-28 13:18:34 +03001662 dout("%s %p %d left\n", __func__, con, con->out_skip);
Sage Weil31b80062009-10-06 11:31:13 -07001663 while (con->out_skip > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001664 size_t size = min(con->out_skip, (int) PAGE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001665
Ilya Dryomov433b0a12018-11-20 15:44:00 +01001666 if (size == con->out_skip)
1667 more = MSG_MORE;
1668 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, more);
Sage Weil31b80062009-10-06 11:31:13 -07001669 if (ret <= 0)
1670 goto out;
1671 con->out_skip -= ret;
1672 }
1673 ret = 1;
1674out:
1675 return ret;
1676}
1677
1678/*
1679 * Prepare to read connection handshake, or an ack.
1680 */
Sage Weileed0ef22009-11-10 14:34:36 -08001681static void prepare_read_banner(struct ceph_connection *con)
1682{
1683 dout("prepare_read_banner %p\n", con);
1684 con->in_base_pos = 0;
1685}
1686
Sage Weil31b80062009-10-06 11:31:13 -07001687static void prepare_read_connect(struct ceph_connection *con)
1688{
1689 dout("prepare_read_connect %p\n", con);
1690 con->in_base_pos = 0;
1691}
1692
1693static void prepare_read_ack(struct ceph_connection *con)
1694{
1695 dout("prepare_read_ack %p\n", con);
1696 con->in_base_pos = 0;
1697}
1698
Sage Weil3a230832013-03-25 08:47:40 -07001699static void prepare_read_seq(struct ceph_connection *con)
1700{
1701 dout("prepare_read_seq %p\n", con);
1702 con->in_base_pos = 0;
1703 con->in_tag = CEPH_MSGR_TAG_SEQ;
1704}
1705
Sage Weil31b80062009-10-06 11:31:13 -07001706static void prepare_read_tag(struct ceph_connection *con)
1707{
1708 dout("prepare_read_tag %p\n", con);
1709 con->in_base_pos = 0;
1710 con->in_tag = CEPH_MSGR_TAG_READY;
1711}
1712
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001713static void prepare_read_keepalive_ack(struct ceph_connection *con)
1714{
1715 dout("prepare_read_keepalive_ack %p\n", con);
1716 con->in_base_pos = 0;
1717}
1718
Sage Weil31b80062009-10-06 11:31:13 -07001719/*
1720 * Prepare to read a message.
1721 */
1722static int prepare_read_message(struct ceph_connection *con)
1723{
1724 dout("prepare_read_message %p\n", con);
1725 BUG_ON(con->in_msg != NULL);
1726 con->in_base_pos = 0;
1727 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1728 return 0;
1729}
1730
1731
1732static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001733 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001734{
Alex Eldere6cee712012-05-10 10:29:50 -05001735 while (con->in_base_pos < end) {
1736 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001737 int have = size - left;
1738 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1739 if (ret <= 0)
1740 return ret;
1741 con->in_base_pos += ret;
1742 }
1743 return 1;
1744}
1745
1746
1747/*
1748 * Read all or part of the connect-side handshake on a new connection
1749 */
Sage Weileed0ef22009-11-10 14:34:36 -08001750static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001751{
Alex Elderfd516532012-05-10 10:29:50 -05001752 int size;
1753 int end;
1754 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001755
Sage Weileed0ef22009-11-10 14:34:36 -08001756 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001757
1758 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001759 size = strlen(CEPH_BANNER);
1760 end = size;
1761 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001762 if (ret <= 0)
1763 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001764
1765 size = sizeof (con->actual_peer_addr);
1766 end += size;
1767 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001768 if (ret <= 0)
1769 goto out;
Jeff Layton2c66de52019-06-17 09:24:31 -04001770 ceph_decode_banner_addr(&con->actual_peer_addr);
Alex Elderfd516532012-05-10 10:29:50 -05001771
1772 size = sizeof (con->peer_addr_for_me);
1773 end += size;
1774 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001775 if (ret <= 0)
1776 goto out;
Jeff Layton2c66de52019-06-17 09:24:31 -04001777 ceph_decode_banner_addr(&con->peer_addr_for_me);
Alex Elderfd516532012-05-10 10:29:50 -05001778
Sage Weileed0ef22009-11-10 14:34:36 -08001779out:
1780 return ret;
1781}
1782
1783static int read_partial_connect(struct ceph_connection *con)
1784{
Alex Elderfd516532012-05-10 10:29:50 -05001785 int size;
1786 int end;
1787 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001788
1789 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1790
Alex Elderfd516532012-05-10 10:29:50 -05001791 size = sizeof (con->in_reply);
1792 end = size;
1793 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001794 if (ret <= 0)
1795 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001796
Ilya Dryomov262614c2018-07-26 15:17:46 +02001797 if (con->auth) {
1798 size = le32_to_cpu(con->in_reply.authorizer_len);
Ilya Dryomov130f52f2018-07-27 19:40:30 +02001799 if (size > con->auth->authorizer_reply_buf_len) {
1800 pr_err("authorizer reply too big: %d > %zu\n", size,
1801 con->auth->authorizer_reply_buf_len);
1802 ret = -EINVAL;
1803 goto out;
1804 }
1805
Ilya Dryomov262614c2018-07-26 15:17:46 +02001806 end += size;
1807 ret = read_partial(con, end, size,
1808 con->auth->authorizer_reply_buf);
1809 if (ret <= 0)
1810 goto out;
1811 }
Sage Weil31b80062009-10-06 11:31:13 -07001812
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001813 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1814 con, (int)con->in_reply.tag,
1815 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001816 le32_to_cpu(con->in_reply.global_seq));
1817out:
1818 return ret;
1819}
1820
1821/*
1822 * Verify the hello banner looks okay.
1823 */
1824static int verify_hello(struct ceph_connection *con)
1825{
1826 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001827 pr_err("connect to %s got bad banner\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04001828 ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001829 con->error_msg = "protocol error, bad banner";
1830 return -1;
1831 }
1832 return 0;
1833}
1834
Jeff Laytoncede1852019-05-06 09:38:46 -04001835static bool addr_is_blank(struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -07001836{
Jeff Laytoncede1852019-05-06 09:38:46 -04001837 struct sockaddr_storage ss = addr->in_addr; /* align */
1838 struct in_addr *addr4 = &((struct sockaddr_in *)&ss)->sin_addr;
1839 struct in6_addr *addr6 = &((struct sockaddr_in6 *)&ss)->sin6_addr;
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001840
Jeff Laytoncede1852019-05-06 09:38:46 -04001841 switch (ss.ss_family) {
Sage Weil31b80062009-10-06 11:31:13 -07001842 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001843 return addr4->s_addr == htonl(INADDR_ANY);
Sage Weil31b80062009-10-06 11:31:13 -07001844 case AF_INET6:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001845 return ipv6_addr_any(addr6);
1846 default:
1847 return true;
Sage Weil31b80062009-10-06 11:31:13 -07001848 }
Sage Weil31b80062009-10-06 11:31:13 -07001849}
1850
Jeff Laytoncede1852019-05-06 09:38:46 -04001851static int addr_port(struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -07001852{
Jeff Laytoncede1852019-05-06 09:38:46 -04001853 switch (get_unaligned(&addr->in_addr.ss_family)) {
Sage Weil31b80062009-10-06 11:31:13 -07001854 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001855 return ntohs(get_unaligned(&((struct sockaddr_in *)&addr->in_addr)->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -07001856 case AF_INET6:
Jeff Laytoncede1852019-05-06 09:38:46 -04001857 return ntohs(get_unaligned(&((struct sockaddr_in6 *)&addr->in_addr)->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -07001858 }
1859 return 0;
1860}
1861
Jeff Laytoncede1852019-05-06 09:38:46 -04001862static void addr_set_port(struct ceph_entity_addr *addr, int p)
Sage Weil31b80062009-10-06 11:31:13 -07001863{
Jeff Laytoncede1852019-05-06 09:38:46 -04001864 switch (get_unaligned(&addr->in_addr.ss_family)) {
Sage Weil31b80062009-10-06 11:31:13 -07001865 case AF_INET:
Jeff Laytoncede1852019-05-06 09:38:46 -04001866 put_unaligned(htons(p), &((struct sockaddr_in *)&addr->in_addr)->sin_port);
Sage Weila2a79602011-05-12 15:34:24 -07001867 break;
Sage Weil31b80062009-10-06 11:31:13 -07001868 case AF_INET6:
Jeff Laytoncede1852019-05-06 09:38:46 -04001869 put_unaligned(htons(p), &((struct sockaddr_in6 *)&addr->in_addr)->sin6_port);
Sage Weila2a79602011-05-12 15:34:24 -07001870 break;
Sage Weil31b80062009-10-06 11:31:13 -07001871 }
1872}
1873
1874/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001875 * Unlike other *_pton function semantics, zero indicates success.
1876 */
Jeff Laytoncede1852019-05-06 09:38:46 -04001877static int ceph_pton(const char *str, size_t len, struct ceph_entity_addr *addr,
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001878 char delim, const char **ipend)
1879{
Jeff Laytoncede1852019-05-06 09:38:46 -04001880 memset(&addr->in_addr, 0, sizeof(addr->in_addr));
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001881
Jeff Laytoncede1852019-05-06 09:38:46 -04001882 if (in4_pton(str, len, (u8 *)&((struct sockaddr_in *)&addr->in_addr)->sin_addr.s_addr, delim, ipend)) {
1883 put_unaligned(AF_INET, &addr->in_addr.ss_family);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001884 return 0;
1885 }
1886
Jeff Laytoncede1852019-05-06 09:38:46 -04001887 if (in6_pton(str, len, (u8 *)&((struct sockaddr_in6 *)&addr->in_addr)->sin6_addr.s6_addr, delim, ipend)) {
1888 put_unaligned(AF_INET6, &addr->in_addr.ss_family);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001889 return 0;
1890 }
1891
1892 return -EINVAL;
1893}
1894
1895/*
1896 * Extract hostname string and resolve using kernel DNS facility.
1897 */
1898#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1899static int ceph_dns_resolve_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001900 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001901{
1902 const char *end, *delim_p;
1903 char *colon_p, *ip_addr = NULL;
1904 int ip_len, ret;
1905
1906 /*
1907 * The end of the hostname occurs immediately preceding the delimiter or
1908 * the port marker (':') where the delimiter takes precedence.
1909 */
1910 delim_p = memchr(name, delim, namelen);
1911 colon_p = memchr(name, ':', namelen);
1912
1913 if (delim_p && colon_p)
1914 end = delim_p < colon_p ? delim_p : colon_p;
1915 else if (!delim_p && colon_p)
1916 end = colon_p;
1917 else {
1918 end = delim_p;
1919 if (!end) /* case: hostname:/ */
1920 end = name + namelen;
1921 }
1922
1923 if (end <= name)
1924 return -EINVAL;
1925
1926 /* do dns_resolve upcall */
David Howellsa58946c2019-06-26 21:02:33 +01001927 ip_len = dns_query(current->nsproxy->net_ns,
1928 NULL, name, end - name, NULL, &ip_addr, NULL, false);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001929 if (ip_len > 0)
Jeff Laytoncede1852019-05-06 09:38:46 -04001930 ret = ceph_pton(ip_addr, ip_len, addr, -1, NULL);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001931 else
1932 ret = -ESRCH;
1933
1934 kfree(ip_addr);
1935
1936 *ipend = end;
1937
1938 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
Jeff Laytonb726ec92019-05-06 09:38:47 -04001939 ret, ret ? "failed" : ceph_pr_addr(addr));
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001940
1941 return ret;
1942}
1943#else
1944static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001945 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001946{
1947 return -EINVAL;
1948}
1949#endif
1950
1951/*
1952 * Parse a server name (IP or hostname). If a valid IP address is not found
1953 * then try to extract a hostname to resolve using userspace DNS upcall.
1954 */
1955static int ceph_parse_server_name(const char *name, size_t namelen,
Jeff Laytoncede1852019-05-06 09:38:46 -04001956 struct ceph_entity_addr *addr, char delim, const char **ipend)
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001957{
1958 int ret;
1959
Jeff Laytoncede1852019-05-06 09:38:46 -04001960 ret = ceph_pton(name, namelen, addr, delim, ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001961 if (ret)
Jeff Laytoncede1852019-05-06 09:38:46 -04001962 ret = ceph_dns_resolve_name(name, namelen, addr, delim, ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001963
1964 return ret;
1965}
1966
1967/*
Sage Weil31b80062009-10-06 11:31:13 -07001968 * Parse an ip[:port] list into an addr array. Use the default
1969 * monitor port if a port isn't specified.
1970 */
1971int ceph_parse_ips(const char *c, const char *end,
1972 struct ceph_entity_addr *addr,
1973 int max_count, int *count)
1974{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001975 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001976 const char *p = c;
1977
1978 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1979 for (i = 0; i < max_count; i++) {
1980 const char *ipend;
Sage Weil31b80062009-10-06 11:31:13 -07001981 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001982 char delim = ',';
1983
1984 if (*p == '[') {
1985 delim = ']';
1986 p++;
1987 }
Sage Weil31b80062009-10-06 11:31:13 -07001988
Jeff Laytoncede1852019-05-06 09:38:46 -04001989 ret = ceph_parse_server_name(p, end - p, &addr[i], delim, &ipend);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001990 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001991 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001992 ret = -EINVAL;
1993
Sage Weil31b80062009-10-06 11:31:13 -07001994 p = ipend;
1995
Sage Weil39139f62010-07-08 09:54:52 -07001996 if (delim == ']') {
1997 if (*p != ']') {
1998 dout("missing matching ']'\n");
1999 goto bad;
2000 }
2001 p++;
2002 }
2003
Sage Weil31b80062009-10-06 11:31:13 -07002004 /* port? */
2005 if (p < end && *p == ':') {
2006 port = 0;
2007 p++;
2008 while (p < end && *p >= '0' && *p <= '9') {
2009 port = (port * 10) + (*p - '0');
2010 p++;
2011 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02002012 if (port == 0)
2013 port = CEPH_MON_PORT;
2014 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07002015 goto bad;
2016 } else {
2017 port = CEPH_MON_PORT;
2018 }
2019
Jeff Laytoncede1852019-05-06 09:38:46 -04002020 addr_set_port(&addr[i], port);
Jeff Laytond3c3c0a2019-06-17 06:57:25 -04002021 addr[i].type = CEPH_ENTITY_ADDR_TYPE_LEGACY;
Sage Weil31b80062009-10-06 11:31:13 -07002022
Jeff Laytonb726ec92019-05-06 09:38:47 -04002023 dout("parse_ips got %s\n", ceph_pr_addr(&addr[i]));
Sage Weil31b80062009-10-06 11:31:13 -07002024
2025 if (p == end)
2026 break;
2027 if (*p != ',')
2028 goto bad;
2029 p++;
2030 }
2031
2032 if (p != end)
2033 goto bad;
2034
2035 if (count)
2036 *count = i + 1;
2037 return 0;
2038
2039bad:
Noah Watkinsee3b56f2011-09-23 11:48:42 -07002040 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002041}
2042
Sage Weileed0ef22009-11-10 14:34:36 -08002043static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002044{
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01002045 struct ceph_entity_addr *my_addr = &con->msgr->inst.addr;
2046
Sage Weileed0ef22009-11-10 14:34:36 -08002047 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07002048
2049 if (verify_hello(con) < 0)
2050 return -1;
2051
2052 /*
2053 * Make sure the other end is who we wanted. note that the other
2054 * end may not yet know their ip address, so if it's 0.0.0.0, give
2055 * them the benefit of the doubt.
2056 */
Sage Weil103e2d32010-01-07 16:12:36 -08002057 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
2058 sizeof(con->peer_addr)) != 0 &&
Jeff Laytoncede1852019-05-06 09:38:46 -04002059 !(addr_is_blank(&con->actual_peer_addr) &&
Sage Weil31b80062009-10-06 11:31:13 -07002060 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Ilya Dryomova9dfe312020-10-03 11:52:15 +02002061 pr_warn("wrong peer, want %s/%u, got %s/%u\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04002062 ceph_pr_addr(&con->peer_addr),
Ilya Dryomova9dfe312020-10-03 11:52:15 +02002063 le32_to_cpu(con->peer_addr.nonce),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002064 ceph_pr_addr(&con->actual_peer_addr),
Ilya Dryomova9dfe312020-10-03 11:52:15 +02002065 le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08002066 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07002067 return -1;
2068 }
2069
2070 /*
2071 * did we learn our address?
2072 */
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01002073 if (addr_is_blank(my_addr)) {
2074 memcpy(&my_addr->in_addr,
Sage Weil31b80062009-10-06 11:31:13 -07002075 &con->peer_addr_for_me.in_addr,
2076 sizeof(con->peer_addr_for_me.in_addr));
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01002077 addr_set_port(my_addr, 0);
Sage Weil63f2d212009-11-03 15:17:56 -08002078 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08002079 dout("process_banner learned my addr is %s\n",
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01002080 ceph_pr_addr(my_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002081 }
2082
Sage Weileed0ef22009-11-10 14:34:36 -08002083 return 0;
2084}
2085
2086static int process_connect(struct ceph_connection *con)
2087{
Ilya Dryomov859bff52015-10-28 23:50:58 +01002088 u64 sup_feat = from_msgr(con->msgr)->supported_features;
2089 u64 req_feat = from_msgr(con->msgr)->required_features;
Ilya Dryomovdcbbd972017-06-05 14:44:59 +02002090 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07002091 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08002092
Sage Weileed0ef22009-11-10 14:34:36 -08002093 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
2094
Ilya Dryomov262614c2018-07-26 15:17:46 +02002095 if (con->auth) {
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002096 int len = le32_to_cpu(con->in_reply.authorizer_len);
2097
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002098 /*
2099 * Any connection that defines ->get_authorizer()
Ilya Dryomov6daca132018-07-27 19:18:34 +02002100 * should also define ->add_authorizer_challenge() and
2101 * ->verify_authorizer_reply().
2102 *
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002103 * See get_connect_authorizer().
2104 */
Ilya Dryomov6daca132018-07-27 19:18:34 +02002105 if (con->in_reply.tag == CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER) {
2106 ret = con->ops->add_authorizer_challenge(
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002107 con, con->auth->authorizer_reply_buf, len);
Ilya Dryomov6daca132018-07-27 19:18:34 +02002108 if (ret < 0)
2109 return ret;
2110
2111 con_out_kvec_reset(con);
2112 __prepare_write_connect(con);
2113 prepare_read_connect(con);
2114 return 0;
2115 }
2116
Ilya Dryomov0fd3fd02019-02-05 20:30:27 +01002117 if (len) {
2118 ret = con->ops->verify_authorizer_reply(con);
2119 if (ret < 0) {
2120 con->error_msg = "bad authorize reply";
2121 return ret;
2122 }
Ilya Dryomov5c056fd2016-12-02 16:35:09 +01002123 }
2124 }
2125
Sage Weil31b80062009-10-06 11:31:13 -07002126 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08002127 case CEPH_MSGR_TAG_FEATURES:
2128 pr_err("%s%lld %s feature set mismatch,"
2129 " my %llx < server's %llx, missing %llx\n",
2130 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002131 ceph_pr_addr(&con->peer_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002132 sup_feat, server_feat, server_feat & ~sup_feat);
2133 con->error_msg = "missing required protocol features";
Sage Weil04a419f2009-12-23 09:30:21 -08002134 return -1;
2135
Sage Weil31b80062009-10-06 11:31:13 -07002136 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07002137 pr_err("%s%lld %s protocol version mismatch,"
2138 " my %d != server's %d\n",
2139 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002140 ceph_pr_addr(&con->peer_addr),
Sage Weil31b80062009-10-06 11:31:13 -07002141 le32_to_cpu(con->out_connect.protocol_version),
2142 le32_to_cpu(con->in_reply.protocol_version));
2143 con->error_msg = "protocol version mismatch";
Sage Weil31b80062009-10-06 11:31:13 -07002144 return -1;
2145
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002146 case CEPH_MSGR_TAG_BADAUTHORIZER:
2147 con->auth_retry++;
2148 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2149 con->auth_retry);
2150 if (con->auth_retry == 2) {
2151 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002152 return -1;
2153 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002154 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002155 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002156 if (ret < 0)
2157 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002158 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002159 break;
Sage Weil31b80062009-10-06 11:31:13 -07002160
2161 case CEPH_MSGR_TAG_RESETSESSION:
2162 /*
2163 * If we connected with a large connect_seq but the peer
2164 * has no record of a session with us (no connection, or
2165 * connect_seq == 0), they will send RESETSESION to indicate
2166 * that they must have reset their session, and may have
2167 * dropped messages.
2168 */
2169 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002170 le32_to_cpu(con->in_reply.connect_seq));
Ilya Dryomovd3c12482020-11-11 14:16:45 +01002171 pr_info("%s%lld %s session reset\n",
2172 ENTITY_NAME(con->peer_name),
2173 ceph_pr_addr(&con->peer_addr));
Ilya Dryomov5963c3d2020-11-06 19:04:30 +01002174 ceph_con_reset_session(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002175 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002176 ret = prepare_write_connect(con);
2177 if (ret < 0)
2178 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002179 prepare_read_connect(con);
2180
2181 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002182 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002183 if (con->ops->peer_reset)
2184 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002185 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002186 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002187 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002188 break;
2189
2190 case CEPH_MSGR_TAG_RETRY_SESSION:
2191 /*
2192 * If we sent a smaller connect_seq than the peer has, try
2193 * again with a larger value.
2194 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002195 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002196 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002197 le32_to_cpu(con->in_reply.connect_seq));
2198 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002199 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002200 ret = prepare_write_connect(con);
2201 if (ret < 0)
2202 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002203 prepare_read_connect(con);
2204 break;
2205
2206 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2207 /*
2208 * If we sent a smaller global_seq than the peer has, try
2209 * again with a larger value.
2210 */
Sage Weileed0ef22009-11-10 14:34:36 -08002211 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002212 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002213 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002214 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002215 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002216 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002217 ret = prepare_write_connect(con);
2218 if (ret < 0)
2219 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002220 prepare_read_connect(con);
2221 break;
2222
Sage Weil3a230832013-03-25 08:47:40 -07002223 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002224 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002225 if (req_feat & ~server_feat) {
2226 pr_err("%s%lld %s protocol feature mismatch,"
2227 " my required %llx > server's %llx, need %llx\n",
2228 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002229 ceph_pr_addr(&con->peer_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002230 req_feat, server_feat, req_feat & ~server_feat);
2231 con->error_msg = "missing required protocol features";
Sage Weil04a419f2009-12-23 09:30:21 -08002232 return -1;
2233 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002234
Alex Elder122070a2012-12-26 10:43:57 -06002235 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002236 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002237 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002238 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2239 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002240 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002241 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2242 con->peer_global_seq,
2243 le32_to_cpu(con->in_reply.connect_seq),
2244 con->connect_seq);
2245 WARN_ON(con->connect_seq !=
2246 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002247
2248 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002249 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002250
Sage Weil85effe12012-07-30 16:22:05 -07002251 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002252
Sage Weil3a230832013-03-25 08:47:40 -07002253 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2254 prepare_write_seq(con);
2255 prepare_read_seq(con);
2256 } else {
2257 prepare_read_tag(con);
2258 }
Sage Weil31b80062009-10-06 11:31:13 -07002259 break;
2260
2261 case CEPH_MSGR_TAG_WAIT:
2262 /*
2263 * If there is a connection race (we are opening
2264 * connections to each other), one of us may just have
2265 * to WAIT. This shouldn't happen if we are the
2266 * client.
2267 */
Sage Weil04177882011-05-12 15:33:17 -07002268 con->error_msg = "protocol error, got WAIT as client";
2269 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002270
2271 default:
Sage Weil31b80062009-10-06 11:31:13 -07002272 con->error_msg = "protocol error, garbage tag during connect";
2273 return -1;
2274 }
2275 return 0;
2276}
2277
2278
2279/*
2280 * read (part of) an ack
2281 */
2282static int read_partial_ack(struct ceph_connection *con)
2283{
Alex Elderfd516532012-05-10 10:29:50 -05002284 int size = sizeof (con->in_temp_ack);
2285 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002286
Alex Elderfd516532012-05-10 10:29:50 -05002287 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002288}
2289
Sage Weil31b80062009-10-06 11:31:13 -07002290/*
2291 * We can finally discard anything that's been acked.
2292 */
2293static void process_ack(struct ceph_connection *con)
2294{
Sage Weil31b80062009-10-06 11:31:13 -07002295 u64 ack = le64_to_cpu(con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002296
Ilya Dryomov02471922020-10-13 17:38:53 +02002297 if (con->in_tag == CEPH_MSGR_TAG_ACK)
2298 ceph_con_discard_sent(con, ack);
2299 else
2300 ceph_con_discard_requeued(con, ack);
Yan, Zheng0a2ad542017-05-05 18:47:37 +08002301
Sage Weil31b80062009-10-06 11:31:13 -07002302 prepare_read_tag(con);
2303}
2304
2305
Yehuda Sadeh24504182010-01-08 13:58:34 -08002306static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002307 struct kvec *section,
2308 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002309{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002310 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002311
Yehuda Sadeh24504182010-01-08 13:58:34 -08002312 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002313
Yehuda Sadeh24504182010-01-08 13:58:34 -08002314 while (section->iov_len < sec_len) {
2315 BUG_ON(section->iov_base == NULL);
2316 left = sec_len - section->iov_len;
2317 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2318 section->iov_len, left);
2319 if (ret <= 0)
2320 return ret;
2321 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002322 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002323 if (section->iov_len == sec_len)
2324 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002325
2326 return 1;
2327}
2328
Alex Elder34d2d202013-03-08 20:58:59 -06002329static int read_partial_msg_data(struct ceph_connection *con)
2330{
2331 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002332 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Ilya Dryomov859bff52015-10-28 23:50:58 +01002333 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Alex Elder686be202013-03-11 23:34:23 -05002334 struct page *page;
2335 size_t page_offset;
2336 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002337 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002338 int ret;
2339
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02002340 if (!msg->num_data_items)
Alex Elder4c59b4a2013-03-11 23:34:23 -05002341 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002342
Alex Elderf5db90b2013-03-11 23:34:23 -05002343 if (do_datacrc)
2344 crc = con->in_data_crc;
Ilya Dryomov45a267d2018-01-22 15:20:15 +01002345 while (cursor->total_resid) {
2346 if (!cursor->resid) {
2347 ceph_msg_data_advance(cursor, 0);
2348 continue;
2349 }
2350
Shraddha Barke343128c2015-10-19 21:59:00 +05302351 page = ceph_msg_data_next(cursor, &page_offset, &length, NULL);
Alex Elder686be202013-03-11 23:34:23 -05002352 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002353 if (ret <= 0) {
2354 if (do_datacrc)
2355 con->in_data_crc = crc;
2356
Alex Elder686be202013-03-11 23:34:23 -05002357 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002358 }
Alex Elder686be202013-03-11 23:34:23 -05002359
2360 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002361 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Ilya Dryomov1759f7b2017-05-19 11:38:17 +02002362 ceph_msg_data_advance(cursor, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002363 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002364 if (do_datacrc)
2365 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002366
2367 return 1; /* must return > 0 to indicate success */
2368}
2369
Sage Weil31b80062009-10-06 11:31:13 -07002370/*
2371 * read (part of) a message.
2372 */
Ilya Dryomovfc4c1282020-11-16 17:27:50 +01002373static int ceph_con_in_msg_alloc(struct ceph_connection *con,
2374 struct ceph_msg_header *hdr, int *skip);
Alex Elder686be202013-03-11 23:34:23 -05002375
Sage Weil31b80062009-10-06 11:31:13 -07002376static int read_partial_message(struct ceph_connection *con)
2377{
2378 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002379 int size;
2380 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002381 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002382 unsigned int front_len, middle_len, data_len;
Ilya Dryomov859bff52015-10-28 23:50:58 +01002383 bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
Yan, Zheng33d07332014-11-04 16:33:37 +08002384 bool need_sign = (con->peer_features & CEPH_FEATURE_MSG_AUTH);
Sage Weilae187562010-04-22 07:47:01 -07002385 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002386 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002387
2388 dout("read_partial_message con %p msg %p\n", con, m);
2389
2390 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002391 size = sizeof (con->in_hdr);
2392 end = size;
2393 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002394 if (ret <= 0)
2395 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002396
2397 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2398 if (cpu_to_le32(crc) != con->in_hdr.crc) {
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002399 pr_err("read_partial_message bad hdr crc %u != expected %u\n",
Alex Elderfe3ad592012-02-15 07:43:54 -06002400 crc, con->in_hdr.crc);
2401 return -EBADMSG;
2402 }
2403
Sage Weil31b80062009-10-06 11:31:13 -07002404 front_len = le32_to_cpu(con->in_hdr.front_len);
2405 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2406 return -EIO;
2407 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002408 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002409 return -EIO;
2410 data_len = le32_to_cpu(con->in_hdr.data_len);
2411 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2412 return -EIO;
2413
Sage Weilae187562010-04-22 07:47:01 -07002414 /* verify seq# */
2415 seq = le64_to_cpu(con->in_hdr.seq);
2416 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002417 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002418 ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04002419 ceph_pr_addr(&con->peer_addr),
Sage Weilae187562010-04-22 07:47:01 -07002420 seq, con->in_seq + 1);
2421 con->in_base_pos = -front_len - middle_len - data_len -
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01002422 sizeof_footer(con);
Sage Weilae187562010-04-22 07:47:01 -07002423 con->in_tag = CEPH_MSGR_TAG_READY;
Ilya Dryomove7a88e82016-02-17 20:04:08 +01002424 return 1;
Sage Weilae187562010-04-22 07:47:01 -07002425 } else if ((s64)seq - (s64)con->in_seq > 1) {
2426 pr_err("read_partial_message bad seq %lld expected %lld\n",
2427 seq, con->in_seq + 1);
2428 con->error_msg = "bad message sequence # for incoming message";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002429 return -EBADE;
Sage Weilae187562010-04-22 07:47:01 -07002430 }
2431
Sage Weil31b80062009-10-06 11:31:13 -07002432 /* allocate message? */
2433 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002434 int skip = 0;
2435
Sage Weil31b80062009-10-06 11:31:13 -07002436 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002437 front_len, data_len);
Ilya Dryomovfc4c1282020-11-16 17:27:50 +01002438 ret = ceph_con_in_msg_alloc(con, &con->in_hdr, &skip);
Sage Weil4740a622012-07-30 18:19:30 -07002439 if (ret < 0)
2440 return ret;
Alex Elderf759ebb2013-04-05 14:46:01 -05002441
2442 BUG_ON(!con->in_msg ^ skip);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002443 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002444 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002445 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002446 con->in_base_pos = -front_len - middle_len - data_len -
Ilya Dryomovdbc0d3c2016-02-19 11:38:57 +01002447 sizeof_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07002448 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002449 con->in_seq++;
Ilya Dryomove7a88e82016-02-17 20:04:08 +01002450 return 1;
Sage Weil31b80062009-10-06 11:31:13 -07002451 }
Alex Elder38941f82012-06-01 14:56:43 -05002452
Sage Weil4740a622012-07-30 18:19:30 -07002453 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002454 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002455 m = con->in_msg;
2456 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002457 if (m->middle)
2458 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002459
Alex Elder78625052013-03-06 23:39:39 -06002460 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002461
Alex Elder78625052013-03-06 23:39:39 -06002462 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002463 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002464 }
2465
2466 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002467 ret = read_partial_message_section(con, &m->front, front_len,
2468 &con->in_front_crc);
2469 if (ret <= 0)
2470 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002471
2472 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002473 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002474 ret = read_partial_message_section(con, &m->middle->vec,
2475 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002476 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002477 if (ret <= 0)
2478 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002479 }
2480
2481 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002482 if (data_len) {
2483 ret = read_partial_msg_data(con);
2484 if (ret <= 0)
2485 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002486 }
2487
Sage Weil31b80062009-10-06 11:31:13 -07002488 /* footer */
Ilya Dryomov89f08172016-02-20 15:56:07 +01002489 size = sizeof_footer(con);
Alex Elderfd516532012-05-10 10:29:50 -05002490 end += size;
2491 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002492 if (ret <= 0)
2493 return ret;
2494
Yan, Zheng33d07332014-11-04 16:33:37 +08002495 if (!need_sign) {
2496 m->footer.flags = m->old_footer.flags;
2497 m->footer.sig = 0;
2498 }
2499
Sage Weil31b80062009-10-06 11:31:13 -07002500 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2501 m, front_len, m->footer.front_crc, middle_len,
2502 m->footer.middle_crc, data_len, m->footer.data_crc);
2503
2504 /* crc ok? */
2505 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2506 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2507 m, con->in_front_crc, m->footer.front_crc);
2508 return -EBADMSG;
2509 }
2510 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2511 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2512 m, con->in_middle_crc, m->footer.middle_crc);
2513 return -EBADMSG;
2514 }
Alex Elderbca064d2012-02-15 07:43:54 -06002515 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002516 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2517 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2518 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2519 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2520 return -EBADMSG;
2521 }
2522
Yan, Zheng33d07332014-11-04 16:33:37 +08002523 if (need_sign && con->ops->check_message_signature &&
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01002524 con->ops->check_message_signature(m)) {
Yan, Zheng33d07332014-11-04 16:33:37 +08002525 pr_err("read_partial_message %p signature check failed\n", m);
2526 return -EBADMSG;
2527 }
2528
Sage Weil31b80062009-10-06 11:31:13 -07002529 return 1; /* done! */
2530}
2531
2532/*
2533 * Process message. This happens in the worker thread. The callback should
2534 * be careful not to do anything that waits on other incoming messages or it
2535 * may deadlock.
2536 */
2537static void process_message(struct ceph_connection *con)
2538{
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01002539 struct ceph_msg *msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002540
Alex Elder38941f82012-06-01 14:56:43 -05002541 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002542 con->in_msg = NULL;
2543
2544 /* if first message, set peer_name */
2545 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002546 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002547
Sage Weil31b80062009-10-06 11:31:13 -07002548 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002549 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002550
Ilya Dryomovb77f8f0e2020-11-05 15:01:53 +01002551 dout("===== %p %llu from %s%lld %d=%s len %d+%d+%d (%u %u %u) =====\n",
Sage Weil31b80062009-10-06 11:31:13 -07002552 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002553 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002554 le16_to_cpu(msg->hdr.type),
2555 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2556 le32_to_cpu(msg->hdr.front_len),
Ilya Dryomovb77f8f0e2020-11-05 15:01:53 +01002557 le32_to_cpu(msg->hdr.middle_len),
Sage Weil31b80062009-10-06 11:31:13 -07002558 le32_to_cpu(msg->hdr.data_len),
2559 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2560 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002561
2562 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002563}
2564
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002565static int read_keepalive_ack(struct ceph_connection *con)
2566{
2567 struct ceph_timespec ceph_ts;
2568 size_t size = sizeof(ceph_ts);
2569 int ret = read_partial(con, size, size, &ceph_ts);
2570 if (ret <= 0)
2571 return ret;
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02002572 ceph_decode_timespec64(&con->last_keepalive_ack, &ceph_ts);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002573 prepare_read_tag(con);
2574 return 1;
2575}
Sage Weil31b80062009-10-06 11:31:13 -07002576
2577/*
2578 * Write something to the socket. Called in a worker thread when the
2579 * socket appears to be writeable and we have something ready to send.
2580 */
2581static int try_write(struct ceph_connection *con)
2582{
Sage Weil31b80062009-10-06 11:31:13 -07002583 int ret = 1;
2584
Sage Weild59315c2012-06-21 12:49:23 -07002585 dout("try_write start %p state %lu\n", con, con->state);
Ilya Dryomov9c55ad12018-04-24 19:10:55 +02002586 if (con->state != CON_STATE_PREOPEN &&
2587 con->state != CON_STATE_CONNECTING &&
2588 con->state != CON_STATE_NEGOTIATING &&
2589 con->state != CON_STATE_OPEN)
2590 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07002591
Sage Weil31b80062009-10-06 11:31:13 -07002592 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002593 if (con->state == CON_STATE_PREOPEN) {
2594 BUG_ON(con->sock);
2595 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002596
Alex Eldere2200422012-05-23 14:35:23 -05002597 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002598 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002599 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002600
Sage Weilcf3e5c42009-12-11 09:48:05 -08002601 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002602 con->in_tag = CEPH_MSGR_TAG_READY;
2603 dout("try_write initiating connect on %p new state %lu\n",
2604 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002605 ret = ceph_tcp_connect(con);
2606 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002607 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002608 goto out;
2609 }
2610 }
2611
Ilya Dryomovd2935d62018-04-25 12:17:13 +02002612more:
2613 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
Ilya Dryomov9c55ad12018-04-24 19:10:55 +02002614 BUG_ON(!con->sock);
2615
Sage Weil31b80062009-10-06 11:31:13 -07002616 /* kvec data queued? */
Ilya Dryomov67645d72015-12-28 13:18:34 +03002617 if (con->out_kvec_left) {
2618 ret = write_partial_kvec(con);
Sage Weil31b80062009-10-06 11:31:13 -07002619 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002620 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002621 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03002622 if (con->out_skip) {
2623 ret = write_partial_skip(con);
Sage Weil31b80062009-10-06 11:31:13 -07002624 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002625 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002626 }
2627
2628 /* msg pages? */
2629 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002630 if (con->out_msg_done) {
2631 ceph_msg_put(con->out_msg);
2632 con->out_msg = NULL; /* we're done with this one */
2633 goto do_next;
2634 }
2635
Alex Elder34d2d202013-03-08 20:58:59 -06002636 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002637 if (ret == 1)
Ilya Dryomovd2935d62018-04-25 12:17:13 +02002638 goto more; /* we need to send the footer, too! */
Sage Weil31b80062009-10-06 11:31:13 -07002639 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002640 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002641 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002642 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002643 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002644 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002645 }
2646 }
2647
Sage Weilc86a2932009-12-14 14:04:30 -08002648do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002649 if (con->state == CON_STATE_OPEN) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002650 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
2651 prepare_write_keepalive(con);
2652 goto more;
2653 }
Sage Weil31b80062009-10-06 11:31:13 -07002654 /* is anything else pending? */
2655 if (!list_empty(&con->out_queue)) {
2656 prepare_write_message(con);
2657 goto more;
2658 }
2659 if (con->in_seq > con->in_seq_acked) {
2660 prepare_write_ack(con);
2661 goto more;
2662 }
Sage Weil31b80062009-10-06 11:31:13 -07002663 }
2664
2665 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002666 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002667 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002668 ret = 0;
2669out:
Sage Weil42961d22011-01-25 08:19:34 -08002670 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002671 return ret;
2672}
2673
Sage Weil31b80062009-10-06 11:31:13 -07002674/*
2675 * Read what we can from the socket.
2676 */
2677static int try_read(struct ceph_connection *con)
2678{
Sage Weil31b80062009-10-06 11:31:13 -07002679 int ret = -1;
2680
Sage Weil31b80062009-10-06 11:31:13 -07002681more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002682 dout("try_read start on %p state %lu\n", con, con->state);
2683 if (con->state != CON_STATE_CONNECTING &&
2684 con->state != CON_STATE_NEGOTIATING &&
2685 con->state != CON_STATE_OPEN)
2686 return 0;
2687
2688 BUG_ON(!con->sock);
2689
Sage Weil31b80062009-10-06 11:31:13 -07002690 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2691 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002692
Sage Weil8dacc7d2012-07-20 17:24:40 -07002693 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002694 dout("try_read connecting\n");
2695 ret = read_partial_banner(con);
2696 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002697 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002698 ret = process_banner(con);
2699 if (ret < 0)
2700 goto out;
2701
Sage Weil8dacc7d2012-07-20 17:24:40 -07002702 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002703
Jim Schutt6d4221b2012-08-10 10:37:38 -07002704 /*
2705 * Received banner is good, exchange connection info.
2706 * Do not reset out_kvec, as sending our banner raced
2707 * with receiving peer banner after connect completed.
2708 */
Alex Elder7593af92012-05-24 11:55:03 -05002709 ret = prepare_write_connect(con);
2710 if (ret < 0)
2711 goto out;
2712 prepare_read_connect(con);
2713
2714 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002715 goto out;
2716 }
2717
Sage Weil8dacc7d2012-07-20 17:24:40 -07002718 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002719 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002720 ret = read_partial_connect(con);
2721 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002722 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002723 ret = process_connect(con);
2724 if (ret < 0)
2725 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002726 goto more;
2727 }
2728
Alex Elder122070a2012-12-26 10:43:57 -06002729 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002730
Sage Weil31b80062009-10-06 11:31:13 -07002731 if (con->in_base_pos < 0) {
2732 /*
2733 * skipping + discarding content.
Sage Weil31b80062009-10-06 11:31:13 -07002734 */
Ilya Dryomove5c93882018-04-27 18:58:47 +02002735 ret = ceph_tcp_recvmsg(con->sock, NULL, -con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002736 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002737 goto out;
Ilya Dryomove5c93882018-04-27 18:58:47 +02002738 dout("skipped %d / %d bytes\n", ret, -con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002739 con->in_base_pos += ret;
2740 if (con->in_base_pos)
2741 goto more;
2742 }
2743 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2744 /*
2745 * what's next?
2746 */
2747 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2748 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002749 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002750 dout("try_read got tag %d\n", (int)con->in_tag);
2751 switch (con->in_tag) {
2752 case CEPH_MSGR_TAG_MSG:
2753 prepare_read_message(con);
2754 break;
2755 case CEPH_MSGR_TAG_ACK:
2756 prepare_read_ack(con);
2757 break;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002758 case CEPH_MSGR_TAG_KEEPALIVE2_ACK:
2759 prepare_read_keepalive_ack(con);
2760 break;
Sage Weil31b80062009-10-06 11:31:13 -07002761 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002762 con_close_socket(con);
2763 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002764 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002765 default:
2766 goto bad_tag;
2767 }
2768 }
2769 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2770 ret = read_partial_message(con);
2771 if (ret <= 0) {
2772 switch (ret) {
2773 case -EBADMSG:
Ilya Dryomova51983e2015-10-28 23:52:06 +01002774 con->error_msg = "bad crc/signature";
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002775 fallthrough;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002776 case -EBADE:
Sage Weil31b80062009-10-06 11:31:13 -07002777 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002778 break;
Sage Weil31b80062009-10-06 11:31:13 -07002779 case -EIO:
2780 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002781 break;
Sage Weil31b80062009-10-06 11:31:13 -07002782 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002783 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002784 }
2785 if (con->in_tag == CEPH_MSGR_TAG_READY)
2786 goto more;
2787 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002788 if (con->state == CON_STATE_OPEN)
2789 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002790 goto more;
2791 }
Sage Weil3a230832013-03-25 08:47:40 -07002792 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2793 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2794 /*
2795 * the final handshake seq exchange is semantically
2796 * equivalent to an ACK
2797 */
Sage Weil31b80062009-10-06 11:31:13 -07002798 ret = read_partial_ack(con);
2799 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002800 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002801 process_ack(con);
2802 goto more;
2803 }
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002804 if (con->in_tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) {
2805 ret = read_keepalive_ack(con);
2806 if (ret <= 0)
2807 goto out;
2808 goto more;
2809 }
Sage Weil31b80062009-10-06 11:31:13 -07002810
Sage Weil31b80062009-10-06 11:31:13 -07002811out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002812 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002813 return ret;
2814
2815bad_tag:
2816 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2817 con->error_msg = "protocol error, garbage tag";
2818 ret = -1;
2819 goto out;
2820}
2821
2822
2823/*
Alex Elder802c6d92012-10-08 20:37:30 -07002824 * Atomically queue work on a connection after the specified delay.
2825 * Bump @con reference to avoid races with connection teardown.
2826 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002827 */
Alex Elder802c6d92012-10-08 20:37:30 -07002828static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002829{
Sage Weil31b80062009-10-06 11:31:13 -07002830 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002831 dout("%s %p ref count 0\n", __func__, con);
Alex Elder802c6d92012-10-08 20:37:30 -07002832 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002833 }
2834
Ilya Dryomov418af5b2020-10-29 14:49:10 +01002835 if (delay >= HZ)
2836 delay = round_jiffies_relative(delay);
2837
Ilya Dryomov5a5036c2020-10-02 14:15:59 +02002838 dout("%s %p %lu\n", __func__, con, delay);
Alex Elder802c6d92012-10-08 20:37:30 -07002839 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2840 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002841 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002842 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002843 }
Alex Elder802c6d92012-10-08 20:37:30 -07002844
Alex Elder802c6d92012-10-08 20:37:30 -07002845 return 0;
2846}
2847
2848static void queue_con(struct ceph_connection *con)
2849{
2850 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002851}
2852
Ilya Dryomov37ab77a2014-06-24 16:21:45 +04002853static void cancel_con(struct ceph_connection *con)
2854{
2855 if (cancel_delayed_work(&con->work)) {
2856 dout("%s %p\n", __func__, con);
2857 con->ops->put(con);
2858 }
2859}
2860
Alex Elder7bb21d682012-12-07 19:50:07 -06002861static bool con_sock_closed(struct ceph_connection *con)
2862{
Alex Elderc9ffc772013-02-20 10:25:12 -06002863 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002864 return false;
2865
2866#define CASE(x) \
2867 case CON_STATE_ ## x: \
2868 con->error_msg = "socket closed (con state " #x ")"; \
2869 break;
2870
2871 switch (con->state) {
2872 CASE(CLOSED);
2873 CASE(PREOPEN);
2874 CASE(CONNECTING);
2875 CASE(NEGOTIATING);
2876 CASE(OPEN);
2877 CASE(STANDBY);
2878 default:
Joe Perchesb9a67892014-09-09 21:17:29 -07002879 pr_warn("%s con %p unrecognized state %lu\n",
Alex Elder7bb21d682012-12-07 19:50:07 -06002880 __func__, con, con->state);
2881 con->error_msg = "unrecognized con state";
2882 BUG();
2883 break;
2884 }
2885#undef CASE
2886
2887 return true;
2888}
2889
Alex Elderf20a39f2013-02-19 12:25:57 -06002890static bool con_backoff(struct ceph_connection *con)
2891{
2892 int ret;
2893
2894 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2895 return false;
2896
Ilya Dryomov418af5b2020-10-29 14:49:10 +01002897 ret = queue_con_delay(con, con->delay);
Alex Elderf20a39f2013-02-19 12:25:57 -06002898 if (ret) {
2899 dout("%s: con %p FAILED to back off %lu\n", __func__,
2900 con, con->delay);
2901 BUG_ON(ret == -ENOENT);
2902 con_flag_set(con, CON_FLAG_BACKOFF);
2903 }
2904
2905 return true;
2906}
2907
Alex Elder93209262013-02-19 12:25:57 -06002908/* Finish fault handling; con->mutex must *not* be held here */
2909
2910static void con_fault_finish(struct ceph_connection *con)
2911{
Ilya Dryomovf6330cc2016-01-13 14:32:57 +01002912 dout("%s %p\n", __func__, con);
2913
Alex Elder93209262013-02-19 12:25:57 -06002914 /*
2915 * in case we faulted due to authentication, invalidate our
2916 * current tickets so that we can get new ones.
2917 */
Ilya Dryomovf6330cc2016-01-13 14:32:57 +01002918 if (con->auth_retry) {
2919 dout("auth_retry %d, invalidating\n", con->auth_retry);
2920 if (con->ops->invalidate_authorizer)
2921 con->ops->invalidate_authorizer(con);
2922 con->auth_retry = 0;
Alex Elder93209262013-02-19 12:25:57 -06002923 }
2924
2925 if (con->ops->fault)
2926 con->ops->fault(con);
2927}
2928
Sage Weil31b80062009-10-06 11:31:13 -07002929/*
2930 * Do some work on a connection. Drop a connection ref when we're done.
2931 */
Ilya Dryomov68931622015-07-03 15:44:41 +03002932static void ceph_con_workfn(struct work_struct *work)
Sage Weil31b80062009-10-06 11:31:13 -07002933{
2934 struct ceph_connection *con = container_of(work, struct ceph_connection,
2935 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002936 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002937
Sage Weil9dd46582010-04-28 13:51:50 -07002938 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002939 while (true) {
2940 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002941
Alex Elder49659412013-02-19 12:25:57 -06002942 if ((fault = con_sock_closed(con))) {
2943 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2944 break;
2945 }
2946 if (con_backoff(con)) {
2947 dout("%s: con %p BACKOFF\n", __func__, con);
2948 break;
2949 }
2950 if (con->state == CON_STATE_STANDBY) {
2951 dout("%s: con %p STANDBY\n", __func__, con);
2952 break;
2953 }
2954 if (con->state == CON_STATE_CLOSED) {
2955 dout("%s: con %p CLOSED\n", __func__, con);
2956 BUG_ON(con->sock);
2957 break;
2958 }
2959 if (con->state == CON_STATE_PREOPEN) {
2960 dout("%s: con %p PREOPEN\n", __func__, con);
2961 BUG_ON(con->sock);
2962 }
Sage Weil0da5d702011-05-19 11:21:05 -07002963
Alex Elder49659412013-02-19 12:25:57 -06002964 ret = try_read(con);
2965 if (ret < 0) {
2966 if (ret == -EAGAIN)
2967 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002968 if (!con->error_msg)
2969 con->error_msg = "socket error on read";
Alex Elder49659412013-02-19 12:25:57 -06002970 fault = true;
2971 break;
2972 }
2973
2974 ret = try_write(con);
2975 if (ret < 0) {
2976 if (ret == -EAGAIN)
2977 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002978 if (!con->error_msg)
2979 con->error_msg = "socket error on write";
Alex Elder49659412013-02-19 12:25:57 -06002980 fault = true;
2981 }
2982
2983 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002984 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002985 if (fault)
2986 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002987 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002988
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002989 if (fault)
2990 con_fault_finish(con);
2991
2992 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002993}
2994
Sage Weil31b80062009-10-06 11:31:13 -07002995/*
2996 * Generic error/fault handler. A retry mechanism is used with
2997 * exponential backoff
2998 */
Alex Elder93209262013-02-19 12:25:57 -06002999static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07003000{
Sage Weil31b80062009-10-06 11:31:13 -07003001 dout("fault %p state %lu to peer %s\n",
Jeff Laytonb726ec92019-05-06 09:38:47 -04003002 con, con->state, ceph_pr_addr(&con->peer_addr));
Sage Weil31b80062009-10-06 11:31:13 -07003003
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003004 pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Jeff Laytonb726ec92019-05-06 09:38:47 -04003005 ceph_pr_addr(&con->peer_addr), con->error_msg);
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003006 con->error_msg = NULL;
3007
Alex Elder122070a2012-12-26 10:43:57 -06003008 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07003009 con->state != CON_STATE_NEGOTIATING &&
3010 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08003011
Ilya Dryomov3596f4c2020-11-06 17:07:07 +01003012 ceph_con_reset_protocol(con);
Sage Weil5e095e82009-12-14 14:30:34 -08003013
Alex Elderc9ffc772013-02-20 10:25:12 -06003014 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07003015 dout("fault on LOSSYTX channel, marking CLOSED\n");
3016 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06003017 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07003018 }
3019
Sage Weile80a52d2010-02-25 12:40:45 -08003020 /* Requeue anything that hasn't been acked */
3021 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08003022
Sage Weile76661d2011-03-03 10:10:15 -08003023 /* If there are no messages queued or keepalive pending, place
3024 * the connection in a STANDBY state */
3025 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06003026 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08003027 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06003028 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07003029 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08003030 } else {
3031 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07003032 con->state = CON_STATE_PREOPEN;
Ilya Dryomov418af5b2020-10-29 14:49:10 +01003033 if (!con->delay) {
Sage Weile80a52d2010-02-25 12:40:45 -08003034 con->delay = BASE_DELAY_INTERVAL;
Ilya Dryomov418af5b2020-10-29 14:49:10 +01003035 } else if (con->delay < MAX_DELAY_INTERVAL) {
Sage Weile80a52d2010-02-25 12:40:45 -08003036 con->delay *= 2;
Ilya Dryomov418af5b2020-10-29 14:49:10 +01003037 if (con->delay > MAX_DELAY_INTERVAL)
3038 con->delay = MAX_DELAY_INTERVAL;
3039 }
Alex Elderc9ffc772013-02-20 10:25:12 -06003040 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07003041 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07003042 }
Sage Weil31b80062009-10-06 11:31:13 -07003043}
3044
3045
Yan, Zheng120a75e2019-07-25 20:16:39 +08003046void ceph_messenger_reset_nonce(struct ceph_messenger *msgr)
3047{
3048 u32 nonce = le32_to_cpu(msgr->inst.addr.nonce) + 1000000;
3049 msgr->inst.addr.nonce = cpu_to_le32(nonce);
3050 encode_my_addr(msgr);
3051}
Sage Weil31b80062009-10-06 11:31:13 -07003052
3053/*
Alex Elder15d98822012-05-26 23:26:43 -05003054 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07003055 */
Alex Elder15d98822012-05-26 23:26:43 -05003056void ceph_messenger_init(struct ceph_messenger *msgr,
Ilya Dryomov859bff52015-10-28 23:50:58 +01003057 struct ceph_entity_addr *myaddr)
Sage Weil31b80062009-10-06 11:31:13 -07003058{
Sage Weil31b80062009-10-06 11:31:13 -07003059 spin_lock_init(&msgr->global_seq_lock);
3060
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01003061 if (myaddr) {
3062 memcpy(&msgr->inst.addr.in_addr, &myaddr->in_addr,
3063 sizeof(msgr->inst.addr.in_addr));
3064 addr_set_port(&msgr->inst.addr, 0);
3065 }
Sage Weil31b80062009-10-06 11:31:13 -07003066
Sage Weilac8839d2010-01-27 14:28:10 -08003067 msgr->inst.addr.type = 0;
Ilya Dryomovfd1a1542020-11-05 18:48:04 +01003068
3069 /* generate a random non-zero nonce */
3070 do {
3071 get_random_bytes(&msgr->inst.addr.nonce,
3072 sizeof(msgr->inst.addr.nonce));
3073 } while (!msgr->inst.addr.nonce);
Sage Weil63f2d212009-11-03 15:17:56 -08003074 encode_my_addr(msgr);
Sage Weil31b80062009-10-06 11:31:13 -07003075
Guanjun Hea2a32582012-07-08 19:50:33 -07003076 atomic_set(&msgr->stopping, 0);
Ilya Dryomov757856d2015-06-25 17:47:45 +03003077 write_pnet(&msgr->net, get_net(current->nsproxy->net_ns));
Sage Weil31b80062009-10-06 11:31:13 -07003078
Alex Elder15d98822012-05-26 23:26:43 -05003079 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07003080}
Alex Elder15d98822012-05-26 23:26:43 -05003081EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07003082
Ilya Dryomov757856d2015-06-25 17:47:45 +03003083void ceph_messenger_fini(struct ceph_messenger *msgr)
3084{
3085 put_net(read_pnet(&msgr->net));
3086}
3087EXPORT_SYMBOL(ceph_messenger_fini);
3088
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003089static void msg_con_set(struct ceph_msg *msg, struct ceph_connection *con)
3090{
3091 if (msg->con)
3092 msg->con->ops->put(msg->con);
3093
3094 msg->con = con ? con->ops->get(con) : NULL;
3095 BUG_ON(msg->con != con);
3096}
3097
Sage Weile00de342011-03-04 12:25:05 -08003098static void clear_standby(struct ceph_connection *con)
3099{
3100 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07003101 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08003102 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07003103 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08003104 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06003105 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
3106 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08003107 }
3108}
3109
Sage Weil31b80062009-10-06 11:31:13 -07003110/*
3111 * Queue up an outgoing message on the given connection.
Ilya Dryomov771294f2020-11-18 16:37:14 +01003112 *
3113 * Consumes a ref on @msg.
Sage Weil31b80062009-10-06 11:31:13 -07003114 */
3115void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
3116{
Sage Weila59b55a2012-07-20 15:34:04 -07003117 /* set src+dst */
3118 msg->hdr.src = con->msgr->inst.name;
3119 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
3120 msg->needs_out_seq = true;
3121
3122 mutex_lock(&con->mutex);
3123
Sage Weil8dacc7d2012-07-20 17:24:40 -07003124 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07003125 dout("con_send %p closed, dropping %p\n", con, msg);
3126 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07003127 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003128 return;
3129 }
3130
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003131 msg_con_set(msg, con);
Sage Weil31b80062009-10-06 11:31:13 -07003132
Sage Weil31b80062009-10-06 11:31:13 -07003133 BUG_ON(!list_empty(&msg->list_head));
3134 list_add_tail(&msg->list_head, &con->out_queue);
3135 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
3136 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
3137 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
3138 le32_to_cpu(msg->hdr.front_len),
3139 le32_to_cpu(msg->hdr.middle_len),
3140 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07003141
3142 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08003143 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003144
3145 /* if there wasn't anything waiting to send before, queue
3146 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06003147 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003148 queue_con(con);
3149}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003150EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07003151
3152/*
3153 * Revoke a message that was previously queued for send
3154 */
Alex Elder6740a842012-06-01 14:56:43 -05003155void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003156{
Alex Elder6740a842012-06-01 14:56:43 -05003157 struct ceph_connection *con = msg->con;
3158
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003159 if (!con) {
3160 dout("%s msg %p null con\n", __func__, msg);
Alex Elder6740a842012-06-01 14:56:43 -05003161 return; /* Message not in our possession */
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003162 }
Alex Elder6740a842012-06-01 14:56:43 -05003163
Sage Weilec302642009-12-22 10:43:42 -08003164 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003165 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003166 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003167 list_del_init(&msg->list_head);
Sage Weil31b80062009-10-06 11:31:13 -07003168 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003169
Sage Weil31b80062009-10-06 11:31:13 -07003170 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003171 }
3172 if (con->out_msg == msg) {
Ilya Dryomov67645d72015-12-28 13:18:34 +03003173 BUG_ON(con->out_skip);
3174 /* footer */
3175 if (con->out_msg_done) {
3176 con->out_skip += con_out_kvec_skip(con);
3177 } else {
3178 BUG_ON(!msg->data_length);
Ilya Dryomov89f08172016-02-20 15:56:07 +01003179 con->out_skip += sizeof_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07003180 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03003181 /* data, middle, front */
3182 if (msg->data_length)
3183 con->out_skip += msg->cursor.total_resid;
3184 if (msg->middle)
3185 con->out_skip += con_out_kvec_skip(con);
3186 con->out_skip += con_out_kvec_skip(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003187
Ilya Dryomov67645d72015-12-28 13:18:34 +03003188 dout("%s %p msg %p - was sending, will write %d skip %d\n",
3189 __func__, con, msg, con->out_kvec_bytes, con->out_skip);
3190 msg->hdr.seq = 0;
3191 con->out_msg = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05003192 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003193 }
Ilya Dryomov67645d72015-12-28 13:18:34 +03003194
Sage Weilec302642009-12-22 10:43:42 -08003195 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003196}
3197
3198/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003199 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003200 */
Alex Elder8921d112012-06-01 14:56:43 -05003201void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003202{
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003203 struct ceph_connection *con = msg->con;
Alex Elder8921d112012-06-01 14:56:43 -05003204
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003205 if (!con) {
Alex Elder8921d112012-06-01 14:56:43 -05003206 dout("%s msg %p null con\n", __func__, msg);
Alex Elder8921d112012-06-01 14:56:43 -05003207 return; /* Message not in our possession */
3208 }
3209
Sage Weil350b1c32009-12-22 10:45:45 -08003210 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003211 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003212 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3213 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3214 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003215
3216 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003217 dout("%s %p msg %p revoked\n", __func__, con, msg);
3218 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003219 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003220 front_len -
3221 middle_len -
3222 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003223 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003224 ceph_msg_put(con->in_msg);
3225 con->in_msg = NULL;
3226 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003227 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003228 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003229 dout("%s %p in_msg %p msg %p no-op\n",
3230 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003231 }
3232 mutex_unlock(&con->mutex);
3233}
3234
3235/*
Sage Weil31b80062009-10-06 11:31:13 -07003236 * Queue a keepalive byte to ensure the tcp connection is alive.
3237 */
3238void ceph_con_keepalive(struct ceph_connection *con)
3239{
Sage Weile00de342011-03-04 12:25:05 -08003240 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003241 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003242 clear_standby(con);
Ilya Dryomov4aac9222019-01-14 21:13:10 +01003243 con_flag_set(con, CON_FLAG_KEEPALIVE_PENDING);
Sage Weil00650932012-07-20 15:33:04 -07003244 mutex_unlock(&con->mutex);
Ilya Dryomov4aac9222019-01-14 21:13:10 +01003245
3246 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003247 queue_con(con);
3248}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003249EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003250
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003251bool ceph_con_keepalive_expired(struct ceph_connection *con,
3252 unsigned long interval)
3253{
3254 if (interval > 0 &&
3255 (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2)) {
Arnd Bergmann473bd2d2018-07-13 22:18:34 +02003256 struct timespec64 now;
3257 struct timespec64 ts;
3258 ktime_get_real_ts64(&now);
3259 jiffies_to_timespec64(interval, &ts);
3260 ts = timespec64_add(con->last_keepalive_ack, ts);
3261 return timespec64_compare(&now, &ts) >= 0;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003262 }
3263 return false;
3264}
3265
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003266static struct ceph_msg_data *ceph_msg_data_add(struct ceph_msg *msg)
Alex Elder43794502013-03-01 18:00:16 -06003267{
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003268 BUG_ON(msg->num_data_items >= msg->max_data_items);
3269 return &msg->data[msg->num_data_items++];
Alex Elder6644ed72013-03-11 23:34:24 -05003270}
3271
3272static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3273{
Ilya Dryomove8862742020-03-10 16:19:01 +01003274 if (data->type == CEPH_MSG_DATA_PAGES && data->own_pages) {
3275 int num_pages = calc_pages_for(data->alignment, data->length);
3276 ceph_release_page_vector(data->pages, num_pages);
3277 } else if (data->type == CEPH_MSG_DATA_PAGELIST) {
Alex Elder6644ed72013-03-11 23:34:24 -05003278 ceph_pagelist_release(data->pagelist);
Ilya Dryomove8862742020-03-10 16:19:01 +01003279 }
Alex Elder43794502013-03-01 18:00:16 -06003280}
3281
Alex Elder90af3602013-04-05 14:46:01 -05003282void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Ilya Dryomove8862742020-03-10 16:19:01 +01003283 size_t length, size_t alignment, bool own_pages)
Alex Elder02afca62013-02-14 12:16:43 -06003284{
Alex Elder6644ed72013-03-11 23:34:24 -05003285 struct ceph_msg_data *data;
3286
Alex Elder07aa1552013-03-04 18:29:06 -06003287 BUG_ON(!pages);
3288 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003289
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003290 data = ceph_msg_data_add(msg);
3291 data->type = CEPH_MSG_DATA_PAGES;
Alex Elder6644ed72013-03-11 23:34:24 -05003292 data->pages = pages;
3293 data->length = length;
3294 data->alignment = alignment & ~PAGE_MASK;
Ilya Dryomove8862742020-03-10 16:19:01 +01003295 data->own_pages = own_pages;
Alex Elder6644ed72013-03-11 23:34:24 -05003296
Alex Elder5240d9f2013-03-14 14:09:06 -05003297 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003298}
Alex Elder90af3602013-04-05 14:46:01 -05003299EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003300
Alex Elder90af3602013-04-05 14:46:01 -05003301void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003302 struct ceph_pagelist *pagelist)
3303{
Alex Elder6644ed72013-03-11 23:34:24 -05003304 struct ceph_msg_data *data;
3305
Alex Elder07aa1552013-03-04 18:29:06 -06003306 BUG_ON(!pagelist);
3307 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003308
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003309 data = ceph_msg_data_add(msg);
3310 data->type = CEPH_MSG_DATA_PAGELIST;
Ilya Dryomov894868332018-09-28 16:02:53 +02003311 refcount_inc(&pagelist->refcnt);
Alex Elder6644ed72013-03-11 23:34:24 -05003312 data->pagelist = pagelist;
3313
Alex Elder5240d9f2013-03-14 14:09:06 -05003314 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003315}
Alex Elder90af3602013-04-05 14:46:01 -05003316EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003317
Alex Elderea965712013-04-05 14:46:01 -05003318#ifdef CONFIG_BLOCK
Ilya Dryomov5359a172018-01-20 10:30:10 +01003319void ceph_msg_data_add_bio(struct ceph_msg *msg, struct ceph_bio_iter *bio_pos,
3320 u32 length)
Alex Elder27fa8382013-02-14 12:16:43 -06003321{
Alex Elder6644ed72013-03-11 23:34:24 -05003322 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003323
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003324 data = ceph_msg_data_add(msg);
3325 data->type = CEPH_MSG_DATA_BIO;
Ilya Dryomov5359a172018-01-20 10:30:10 +01003326 data->bio_pos = *bio_pos;
Alex Elderc851c492013-04-05 14:46:01 -05003327 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003328
Alex Elder5240d9f2013-03-14 14:09:06 -05003329 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003330}
Alex Elder90af3602013-04-05 14:46:01 -05003331EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003332#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003333
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003334void ceph_msg_data_add_bvecs(struct ceph_msg *msg,
3335 struct ceph_bvec_iter *bvec_pos)
3336{
3337 struct ceph_msg_data *data;
3338
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003339 data = ceph_msg_data_add(msg);
3340 data->type = CEPH_MSG_DATA_BVECS;
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003341 data->bvec_pos = *bvec_pos;
3342
Ilya Dryomovb9e281c2018-01-20 10:30:11 +01003343 msg->data_length += bvec_pos->iter.bi_size;
3344}
3345EXPORT_SYMBOL(ceph_msg_data_add_bvecs);
3346
Sage Weil31b80062009-10-06 11:31:13 -07003347/*
3348 * construct a new message with given type, size
3349 * the new msg has a ref count of 1.
3350 */
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003351struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
3352 gfp_t flags, bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003353{
3354 struct ceph_msg *m;
3355
Alex Eldere3d5d632013-05-01 12:43:04 -05003356 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003357 if (m == NULL)
3358 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003359
Sage Weil31b80062009-10-06 11:31:13 -07003360 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003361 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003362 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003363
Alex Elder9516e452013-03-01 18:00:16 -06003364 INIT_LIST_HEAD(&m->list_head);
3365 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003366
Sage Weil31b80062009-10-06 11:31:13 -07003367 /* front */
3368 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003369 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003370 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003371 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003372 front_len);
3373 goto out2;
3374 }
3375 } else {
3376 m->front.iov_base = NULL;
3377 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003378 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003379
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003380 if (max_data_items) {
3381 m->data = kmalloc_array(max_data_items, sizeof(*m->data),
3382 flags);
3383 if (!m->data)
3384 goto out2;
3385
3386 m->max_data_items = max_data_items;
3387 }
3388
Sage Weilbb257662010-04-01 16:07:23 -07003389 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003390 return m;
3391
3392out2:
3393 ceph_msg_put(m);
3394out:
Sage Weilb61c2762011-08-09 15:03:46 -07003395 if (!can_fail) {
3396 pr_err("msg_new can't create type %d front %d\n", type,
3397 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003398 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003399 } else {
3400 dout("msg_new can't create type %d front %d\n", type,
3401 front_len);
3402 }
Sage Weila79832f2010-04-01 16:06:19 -07003403 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003404}
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003405EXPORT_SYMBOL(ceph_msg_new2);
3406
3407struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3408 bool can_fail)
3409{
3410 return ceph_msg_new2(type, front_len, 0, flags, can_fail);
3411}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003412EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003413
3414/*
Sage Weil31b80062009-10-06 11:31:13 -07003415 * Allocate "middle" portion of a message, if it is needed and wasn't
3416 * allocated by alloc_msg. This allows us to read a small fixed-size
3417 * per-type header in the front and then gracefully fail (i.e.,
3418 * propagate the error to the caller based on info in the front) when
3419 * the middle is too large.
3420 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003421static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003422{
3423 int type = le16_to_cpu(msg->hdr.type);
3424 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3425
3426 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3427 ceph_msg_type_name(type), middle_len);
3428 BUG_ON(!middle_len);
3429 BUG_ON(msg->middle);
3430
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003431 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003432 if (!msg->middle)
3433 return -ENOMEM;
3434 return 0;
3435}
3436
Yehuda Sadeh24504182010-01-08 13:58:34 -08003437/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003438 * Allocate a message for receiving an incoming message on a
3439 * connection, and save the result in con->in_msg. Uses the
3440 * connection's private alloc_msg op if available.
3441 *
Sage Weil4740a622012-07-30 18:19:30 -07003442 * Returns 0 on success, or a negative error code.
3443 *
3444 * On success, if we set *skip = 1:
3445 * - the next message should be skipped and ignored.
3446 * - con->in_msg == NULL
3447 * or if we set *skip = 0:
3448 * - con->in_msg is non-null.
3449 * On error (ENOMEM, EAGAIN, ...),
3450 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003451 */
Ilya Dryomovfc4c1282020-11-16 17:27:50 +01003452static int ceph_con_in_msg_alloc(struct ceph_connection *con,
3453 struct ceph_msg_header *hdr, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003454{
Yehuda Sadeh24504182010-01-08 13:58:34 -08003455 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003456 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003457 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003458
Alex Elder1c20f2d2012-06-04 14:43:32 -05003459 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003460 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003461
Alex Elder53ded492013-03-01 18:00:14 -06003462 mutex_unlock(&con->mutex);
3463 msg = con->ops->alloc_msg(con, hdr, skip);
3464 mutex_lock(&con->mutex);
3465 if (con->state != CON_STATE_OPEN) {
3466 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003467 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003468 return -EAGAIN;
3469 }
Alex Elder41375772013-03-05 09:25:10 -06003470 if (msg) {
3471 BUG_ON(*skip);
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003472 msg_con_set(msg, con);
Alex Elder41375772013-03-05 09:25:10 -06003473 con->in_msg = msg;
Alex Elder41375772013-03-05 09:25:10 -06003474 } else {
3475 /*
3476 * Null message pointer means either we should skip
3477 * this message or we couldn't allocate memory. The
3478 * former is not an error.
3479 */
3480 if (*skip)
3481 return 0;
Alex Elder41375772013-03-05 09:25:10 -06003482
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003483 con->error_msg = "error allocating memory for incoming message";
Alex Elder53ded492013-03-01 18:00:14 -06003484 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003485 }
Ilya Dryomovfc4c1282020-11-16 17:27:50 +01003486 memcpy(&con->in_msg->hdr, hdr, sizeof(*hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003487
Alex Elder1c20f2d2012-06-04 14:43:32 -05003488 if (middle_len && !con->in_msg->middle) {
3489 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003490 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003491 ceph_msg_put(con->in_msg);
3492 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003493 }
3494 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003495
Sage Weil4740a622012-07-30 18:19:30 -07003496 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003497}
3498
Ilya Dryomov771294f2020-11-18 16:37:14 +01003499static void ceph_con_get_out_msg(struct ceph_connection *con)
3500{
3501 struct ceph_msg *msg;
3502
3503 BUG_ON(list_empty(&con->out_queue));
3504 msg = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
3505 WARN_ON(msg->con != con);
3506
3507 /*
3508 * Put the message on "sent" list using a ref from ceph_con_send().
3509 * It is put when the message is acked or revoked.
3510 */
3511 list_move_tail(&msg->list_head, &con->out_sent);
3512
3513 /*
3514 * Only assign outgoing seq # if we haven't sent this message
3515 * yet. If it is requeued, resend with it's original seq.
3516 */
3517 if (msg->needs_out_seq) {
3518 msg->hdr.seq = cpu_to_le64(++con->out_seq);
3519 msg->needs_out_seq = false;
3520
3521 if (con->ops->reencode_message)
3522 con->ops->reencode_message(msg);
3523 }
3524
3525 /*
3526 * Get a ref for out_msg. It is put when we are done sending the
3527 * message or in case of a fault.
3528 */
3529 WARN_ON(con->out_msg);
3530 con->out_msg = ceph_msg_get(msg);
3531}
Sage Weil31b80062009-10-06 11:31:13 -07003532
3533/*
3534 * Free a generically kmalloc'd message.
3535 */
Ilya Dryomov0215e442014-06-20 14:14:41 +04003536static void ceph_msg_free(struct ceph_msg *m)
Sage Weil31b80062009-10-06 11:31:13 -07003537{
Ilya Dryomov0215e442014-06-20 14:14:41 +04003538 dout("%s %p\n", __func__, m);
Ilya Dryomov4965fc32014-10-23 16:32:57 +04003539 kvfree(m->front.iov_base);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003540 kfree(m->data);
Alex Eldere3d5d632013-05-01 12:43:04 -05003541 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003542}
3543
Ilya Dryomov0215e442014-06-20 14:14:41 +04003544static void ceph_msg_release(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003545{
Sage Weilc2e552e2009-12-07 15:55:05 -08003546 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003547 int i;
Sage Weil31b80062009-10-06 11:31:13 -07003548
Ilya Dryomov0215e442014-06-20 14:14:41 +04003549 dout("%s %p\n", __func__, m);
Sage Weilc2e552e2009-12-07 15:55:05 -08003550 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003551
Ilya Dryomov583d0fe2015-11-02 17:13:58 +01003552 msg_con_set(m, NULL);
3553
Sage Weilc2e552e2009-12-07 15:55:05 -08003554 /* drop middle, data, if any */
3555 if (m->middle) {
3556 ceph_buffer_put(m->middle);
3557 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003558 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003559
Ilya Dryomov0d9c1ab2018-10-15 17:38:23 +02003560 for (i = 0; i < m->num_data_items; i++)
3561 ceph_msg_data_destroy(&m->data[i]);
Sage Weil58bb3b32009-12-23 12:12:31 -08003562
Sage Weilc2e552e2009-12-07 15:55:05 -08003563 if (m->pool)
3564 ceph_msgpool_put(m->pool, m);
3565 else
Ilya Dryomov0215e442014-06-20 14:14:41 +04003566 ceph_msg_free(m);
Sage Weil31b80062009-10-06 11:31:13 -07003567}
Ilya Dryomov0215e442014-06-20 14:14:41 +04003568
3569struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3570{
3571 dout("%s %p (was %d)\n", __func__, msg,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003572 kref_read(&msg->kref));
Ilya Dryomov0215e442014-06-20 14:14:41 +04003573 kref_get(&msg->kref);
3574 return msg;
3575}
3576EXPORT_SYMBOL(ceph_msg_get);
3577
3578void ceph_msg_put(struct ceph_msg *msg)
3579{
3580 dout("%s %p (was %d)\n", __func__, msg,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003581 kref_read(&msg->kref));
Ilya Dryomov0215e442014-06-20 14:14:41 +04003582 kref_put(&msg->kref, ceph_msg_release);
3583}
3584EXPORT_SYMBOL(ceph_msg_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003585
3586void ceph_msg_dump(struct ceph_msg *msg)
3587{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003588 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3589 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003590 print_hex_dump(KERN_DEBUG, "header: ",
3591 DUMP_PREFIX_OFFSET, 16, 1,
3592 &msg->hdr, sizeof(msg->hdr), true);
3593 print_hex_dump(KERN_DEBUG, " front: ",
3594 DUMP_PREFIX_OFFSET, 16, 1,
3595 msg->front.iov_base, msg->front.iov_len, true);
3596 if (msg->middle)
3597 print_hex_dump(KERN_DEBUG, "middle: ",
3598 DUMP_PREFIX_OFFSET, 16, 1,
3599 msg->middle->vec.iov_base,
3600 msg->middle->vec.iov_len, true);
3601 print_hex_dump(KERN_DEBUG, "footer: ",
3602 DUMP_PREFIX_OFFSET, 16, 1,
3603 &msg->footer, sizeof(msg->footer), true);
3604}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003605EXPORT_SYMBOL(ceph_msg_dump);