blob: 36757d46ac406d300b20a92790fea1b957e27108 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil31b80062009-10-06 11:31:13 -07002
3#include <linux/crc32c.h>
4#include <linux/ctype.h>
5#include <linux/highmem.h>
6#include <linux/inet.h>
7#include <linux/kthread.h>
8#include <linux/net.h>
Ilya Dryomov757856d2015-06-25 17:47:45 +03009#include <linux/nsproxy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Sage Weil31b80062009-10-06 11:31:13 -070011#include <linux/socket.h>
12#include <linux/string.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060013#ifdef CONFIG_BLOCK
Yehuda Sadeh68b44762010-04-06 15:01:27 -070014#include <linux/bio.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060015#endif /* CONFIG_BLOCK */
Noah Watkinsee3b56f2011-09-23 11:48:42 -070016#include <linux/dns_resolver.h>
Sage Weil31b80062009-10-06 11:31:13 -070017#include <net/tcp.h>
18
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +020019#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070020#include <linux/ceph/libceph.h>
21#include <linux/ceph/messenger.h>
22#include <linux/ceph/decode.h>
23#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070025
Alex Elderfe38a2b2013-03-06 23:39:39 -060026#define list_entry_next(pos, member) \
27 list_entry(pos->member.next, typeof(*pos), member)
28
Sage Weil31b80062009-10-06 11:31:13 -070029/*
30 * Ceph uses the messenger to exchange ceph_msg messages with other
31 * hosts in the system. The messenger provides ordered and reliable
32 * delivery. We tolerate TCP disconnects by reconnecting (with
33 * exponential backoff) in the case of a fault (disconnection, bad
34 * crc, protocol error). Acks allow sent messages to be discarded by
35 * the sender.
36 */
37
Alex Elderbc18f4b2012-06-20 21:53:53 -050038/*
39 * We track the state of the socket on a given connection using
40 * values defined below. The transition to a new socket state is
41 * handled by a function which verifies we aren't coming from an
42 * unexpected state.
43 *
44 * --------
45 * | NEW* | transient initial state
46 * --------
47 * | con_sock_state_init()
48 * v
49 * ----------
50 * | CLOSED | initialized, but no socket (and no
51 * ---------- TCP connection)
52 * ^ \
53 * | \ con_sock_state_connecting()
54 * | ----------------------
55 * | \
56 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070057 * |+--------------------------- \
58 * | \ \ \
59 * | ----------- \ \
60 * | | CLOSING | socket event; \ \
61 * | ----------- await close \ \
62 * | ^ \ |
63 * | | \ |
64 * | + con_sock_state_closing() \ |
65 * | / \ | |
66 * | / --------------- | |
67 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050068 * | / --------------
69 * | / -----------------| CONNECTING | socket created, TCP
70 * | | / -------------- connect initiated
71 * | | | con_sock_state_connected()
72 * | | v
73 * -------------
74 * | CONNECTED | TCP connection established
75 * -------------
76 *
77 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
78 */
Alex Elderce2c8902012-05-22 22:15:49 -050079
80#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
81#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
82#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
83#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
84#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
85
Sage Weil8dacc7d2012-07-20 17:24:40 -070086/*
87 * connection states
88 */
89#define CON_STATE_CLOSED 1 /* -> PREOPEN */
90#define CON_STATE_PREOPEN 2 /* -> CONNECTING, CLOSED */
91#define CON_STATE_CONNECTING 3 /* -> NEGOTIATING, CLOSED */
92#define CON_STATE_NEGOTIATING 4 /* -> OPEN, CLOSED */
93#define CON_STATE_OPEN 5 /* -> STANDBY, CLOSED */
94#define CON_STATE_STANDBY 6 /* -> PREOPEN, CLOSED */
95
Sage Weil4a861692012-07-20 17:29:55 -070096/*
97 * ceph_connection flag bits
98 */
99#define CON_FLAG_LOSSYTX 0 /* we can close channel or drop
100 * messages on errors */
101#define CON_FLAG_KEEPALIVE_PENDING 1 /* we need to send a keepalive */
102#define CON_FLAG_WRITE_PENDING 2 /* we have data ready to send */
103#define CON_FLAG_SOCK_CLOSED 3 /* socket state changed to closed */
104#define CON_FLAG_BACKOFF 4 /* need to retry queuing delayed work */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700105
Alex Elderc9ffc772013-02-20 10:25:12 -0600106static bool con_flag_valid(unsigned long con_flag)
107{
108 switch (con_flag) {
109 case CON_FLAG_LOSSYTX:
110 case CON_FLAG_KEEPALIVE_PENDING:
111 case CON_FLAG_WRITE_PENDING:
112 case CON_FLAG_SOCK_CLOSED:
113 case CON_FLAG_BACKOFF:
114 return true;
115 default:
116 return false;
117 }
118}
119
120static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
121{
122 BUG_ON(!con_flag_valid(con_flag));
123
124 clear_bit(con_flag, &con->flags);
125}
126
127static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
128{
129 BUG_ON(!con_flag_valid(con_flag));
130
131 set_bit(con_flag, &con->flags);
132}
133
134static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
135{
136 BUG_ON(!con_flag_valid(con_flag));
137
138 return test_bit(con_flag, &con->flags);
139}
140
141static bool con_flag_test_and_clear(struct ceph_connection *con,
142 unsigned long con_flag)
143{
144 BUG_ON(!con_flag_valid(con_flag));
145
146 return test_and_clear_bit(con_flag, &con->flags);
147}
148
149static bool con_flag_test_and_set(struct ceph_connection *con,
150 unsigned long con_flag)
151{
152 BUG_ON(!con_flag_valid(con_flag));
153
154 return test_and_set_bit(con_flag, &con->flags);
155}
156
Alex Eldere3d5d632013-05-01 12:43:04 -0500157/* Slab caches for frequently-allocated structures */
158
159static struct kmem_cache *ceph_msg_cache;
Alex Elder81b36be2013-05-01 12:43:04 -0500160static struct kmem_cache *ceph_msg_data_cache;
Alex Eldere3d5d632013-05-01 12:43:04 -0500161
Sage Weil31b80062009-10-06 11:31:13 -0700162/* static tag bytes (protocol control messages) */
163static char tag_msg = CEPH_MSGR_TAG_MSG;
164static char tag_ack = CEPH_MSGR_TAG_ACK;
165static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
Yan, Zheng8b9558a2015-09-01 17:19:38 +0800166static char tag_keepalive2 = CEPH_MSGR_TAG_KEEPALIVE2;
Sage Weil31b80062009-10-06 11:31:13 -0700167
Sage Weila6a53492010-04-13 14:07:07 -0700168#ifdef CONFIG_LOCKDEP
169static struct lock_class_key socket_class;
170#endif
171
Alex Elder84495f42012-02-15 07:43:55 -0600172/*
173 * When skipping (ignoring) a block of input we read it into a "skip
174 * buffer," which is this many bytes in size.
175 */
176#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -0700177
178static void queue_con(struct ceph_connection *con);
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400179static void cancel_con(struct ceph_connection *con);
Ilya Dryomov68931622015-07-03 15:44:41 +0300180static void ceph_con_workfn(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600181static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700182
Sage Weil31b80062009-10-06 11:31:13 -0700183/*
Alex Elderf64a9312012-01-23 15:49:27 -0600184 * Nicely render a sockaddr as a string. An array of formatted
185 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700186 */
Alex Elderf64a9312012-01-23 15:49:27 -0600187#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
188#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
189#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
190#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
191
192static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
193static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700194
Alex Elder57666512012-01-23 15:49:27 -0600195static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600196
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700197const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700198{
199 int i;
200 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600201 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
202 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700203
Alex Elderf64a9312012-01-23 15:49:27 -0600204 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700205 s = addr_str[i];
206
207 switch (ss->ss_family) {
208 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600209 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
210 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700211 break;
212
213 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600214 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
215 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700216 break;
217
218 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600219 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
220 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700221 }
222
223 return s;
224}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700225EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700226
Sage Weil63f2d212009-11-03 15:17:56 -0800227static void encode_my_addr(struct ceph_messenger *msgr)
228{
229 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
230 ceph_encode_addr(&msgr->my_enc_addr);
231}
232
Sage Weil31b80062009-10-06 11:31:13 -0700233/*
234 * work queue for all reading and writing to/from the socket.
235 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600236static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700237
Alex Eldere3d5d632013-05-01 12:43:04 -0500238static int ceph_msgr_slab_init(void)
239{
240 BUG_ON(ceph_msg_cache);
241 ceph_msg_cache = kmem_cache_create("ceph_msg",
242 sizeof (struct ceph_msg),
243 __alignof__(struct ceph_msg), 0, NULL);
Alex Elder81b36be2013-05-01 12:43:04 -0500244
245 if (!ceph_msg_cache)
246 return -ENOMEM;
247
248 BUG_ON(ceph_msg_data_cache);
249 ceph_msg_data_cache = kmem_cache_create("ceph_msg_data",
250 sizeof (struct ceph_msg_data),
251 __alignof__(struct ceph_msg_data),
252 0, NULL);
253 if (ceph_msg_data_cache)
254 return 0;
255
256 kmem_cache_destroy(ceph_msg_cache);
257 ceph_msg_cache = NULL;
258
259 return -ENOMEM;
Alex Eldere3d5d632013-05-01 12:43:04 -0500260}
261
262static void ceph_msgr_slab_exit(void)
263{
Alex Elder81b36be2013-05-01 12:43:04 -0500264 BUG_ON(!ceph_msg_data_cache);
265 kmem_cache_destroy(ceph_msg_data_cache);
266 ceph_msg_data_cache = NULL;
267
Alex Eldere3d5d632013-05-01 12:43:04 -0500268 BUG_ON(!ceph_msg_cache);
269 kmem_cache_destroy(ceph_msg_cache);
270 ceph_msg_cache = NULL;
271}
272
Alex Elder15417162013-02-19 12:25:56 -0600273static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600274{
Alex Elderd3002b92012-02-14 14:05:33 -0600275 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600276 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600277 ceph_msgr_wq = NULL;
278 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600279
Alex Elder6173d1f2012-02-14 14:05:33 -0600280 BUG_ON(zero_page == NULL);
Alex Elder6173d1f2012-02-14 14:05:33 -0600281 page_cache_release(zero_page);
282 zero_page = NULL;
Benoît Canetd920ff62015-06-25 21:02:57 +0200283
284 ceph_msgr_slab_exit();
Alex Elder6173d1f2012-02-14 14:05:33 -0600285}
286
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700287int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700288{
Benoît Canetd920ff62015-06-25 21:02:57 +0200289 if (ceph_msgr_slab_init())
290 return -ENOMEM;
291
Alex Elder57666512012-01-23 15:49:27 -0600292 BUG_ON(zero_page != NULL);
293 zero_page = ZERO_PAGE(0);
294 page_cache_get(zero_page);
295
Ilya Dryomovf9865f02014-10-10 16:39:05 +0400296 /*
297 * The number of active work items is limited by the number of
298 * connections, so leave @max_active at default.
299 */
300 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_MEM_RECLAIM, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600301 if (ceph_msgr_wq)
302 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600303
Alex Elder6173d1f2012-02-14 14:05:33 -0600304 pr_err("msgr_init failed to create workqueue\n");
305 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600306
Alex Elder6173d1f2012-02-14 14:05:33 -0600307 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700308}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700309EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700310
311void ceph_msgr_exit(void)
312{
Alex Elder57666512012-01-23 15:49:27 -0600313 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600314
Alex Elder6173d1f2012-02-14 14:05:33 -0600315 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700316}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700317EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700318
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700319void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700320{
321 flush_workqueue(ceph_msgr_wq);
322}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700323EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700324
Alex Elderce2c8902012-05-22 22:15:49 -0500325/* Connection socket state transition functions */
326
327static void con_sock_state_init(struct ceph_connection *con)
328{
329 int old_state;
330
331 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
332 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
333 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700334 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
335 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500336}
337
338static void con_sock_state_connecting(struct ceph_connection *con)
339{
340 int old_state;
341
342 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
343 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
344 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700345 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
346 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500347}
348
349static void con_sock_state_connected(struct ceph_connection *con)
350{
351 int old_state;
352
353 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
354 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
355 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700356 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
357 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500358}
359
360static void con_sock_state_closing(struct ceph_connection *con)
361{
362 int old_state;
363
364 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
365 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
366 old_state != CON_SOCK_STATE_CONNECTED &&
367 old_state != CON_SOCK_STATE_CLOSING))
368 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700369 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
370 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500371}
372
373static void con_sock_state_closed(struct ceph_connection *con)
374{
375 int old_state;
376
377 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
378 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700379 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700380 old_state != CON_SOCK_STATE_CONNECTING &&
381 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500382 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700383 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
384 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500385}
Sage Weila922d382010-05-29 09:41:23 -0700386
Sage Weil31b80062009-10-06 11:31:13 -0700387/*
388 * socket callback functions
389 */
390
391/* data available on socket, or listen socket received a connect */
David S. Miller676d2362014-04-11 16:15:36 -0400392static void ceph_sock_data_ready(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700393{
Alex Elderbd406142012-01-23 15:49:27 -0600394 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700395 if (atomic_read(&con->msgr->stopping)) {
396 return;
397 }
Alex Elderbd406142012-01-23 15:49:27 -0600398
Sage Weil31b80062009-10-06 11:31:13 -0700399 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500400 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700401 con, con->state);
402 queue_con(con);
403 }
404}
405
406/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500407static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700408{
Alex Elderd3002b92012-02-14 14:05:33 -0600409 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700410
Jim Schutt182fac22012-02-29 08:30:58 -0700411 /* only queue to workqueue if there is data we want to write,
412 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500413 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700414 * doesn't get called again until try_write() fills the socket
415 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
416 * and net/core/stream.c:sk_stream_write_space().
417 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600418 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Eric Dumazet64dc6132013-07-22 20:26:31 -0700419 if (sk_stream_is_writeable(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500420 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700421 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
422 queue_con(con);
423 }
Sage Weil31b80062009-10-06 11:31:13 -0700424 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500425 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700426 }
Sage Weil31b80062009-10-06 11:31:13 -0700427}
428
429/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500430static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700431{
Alex Elderbd406142012-01-23 15:49:27 -0600432 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700433
Alex Elder327800b2012-05-22 11:41:43 -0500434 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700435 con, con->state, sk->sk_state);
436
Sage Weil31b80062009-10-06 11:31:13 -0700437 switch (sk->sk_state) {
438 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500439 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700440 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500441 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500442 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600443 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500444 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700445 break;
446 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500447 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500448 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700449 queue_con(con);
450 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600451 default: /* Everything else is uninteresting */
452 break;
Sage Weil31b80062009-10-06 11:31:13 -0700453 }
454}
455
456/*
457 * set up socket callbacks
458 */
459static void set_sock_callbacks(struct socket *sock,
460 struct ceph_connection *con)
461{
462 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600463 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500464 sk->sk_data_ready = ceph_sock_data_ready;
465 sk->sk_write_space = ceph_sock_write_space;
466 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700467}
468
469
470/*
471 * socket helpers
472 */
473
474/*
475 * initiate connection to a remote socket.
476 */
Alex Elder41617d02012-02-14 14:05:33 -0600477static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700478{
Sage Weilf91d3472010-07-01 15:18:31 -0700479 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700480 struct socket *sock;
481 int ret;
482
483 BUG_ON(con->sock);
Ilya Dryomov757856d2015-06-25 17:47:45 +0300484 ret = sock_create_kern(read_pnet(&con->msgr->net), paddr->ss_family,
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -0500485 SOCK_STREAM, IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700486 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600487 return ret;
Ilya Dryomov6d7fdb02015-04-02 14:40:58 +0300488 sock->sk->sk_allocation = GFP_NOFS;
Sage Weil31b80062009-10-06 11:31:13 -0700489
Sage Weila6a53492010-04-13 14:07:07 -0700490#ifdef CONFIG_LOCKDEP
491 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
492#endif
493
Sage Weil31b80062009-10-06 11:31:13 -0700494 set_sock_callbacks(sock, con);
495
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700496 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700497
Sage Weil89a86be2012-06-09 14:19:21 -0700498 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700499 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
500 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700501 if (ret == -EINPROGRESS) {
502 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700503 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700504 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600505 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700506 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700507 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700508 sock_release(sock);
Alex Elder41617d02012-02-14 14:05:33 -0600509 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600510 }
Mike Christie89baaa52014-10-16 01:50:19 -0500511
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530512 if (con->msgr->tcp_nodelay) {
513 int optval = 1;
514
515 ret = kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY,
516 (char *)&optval, sizeof(optval));
517 if (ret)
518 pr_err("kernel_setsockopt(TCP_NODELAY) failed: %d",
519 ret);
520 }
521
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600522 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600523 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700524}
525
526static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
527{
528 struct kvec iov = {buf, len};
529 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800530 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700531
Sage Weil98bdb0a2011-01-25 08:17:48 -0800532 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
533 if (r == -EAGAIN)
534 r = 0;
535 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700536}
537
Alex Elderafb3d902013-03-08 20:58:59 -0600538static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
539 int page_offset, size_t length)
540{
541 void *kaddr;
542 int ret;
543
544 BUG_ON(page_offset + length > PAGE_SIZE);
545
546 kaddr = kmap(page);
547 BUG_ON(!kaddr);
548 ret = ceph_tcp_recvmsg(sock, kaddr + page_offset, length);
549 kunmap(page);
550
551 return ret;
552}
553
Sage Weil31b80062009-10-06 11:31:13 -0700554/*
555 * write something. @more is true if caller will be sending more data
556 * shortly.
557 */
558static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
559 size_t kvlen, size_t len, int more)
560{
561 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800562 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700563
564 if (more)
565 msg.msg_flags |= MSG_MORE;
566 else
567 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
568
Sage Weil42961d22011-01-25 08:19:34 -0800569 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
570 if (r == -EAGAIN)
571 r = 0;
572 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700573}
574
Chunwei Chen178eda22014-04-23 12:35:09 +0800575static int __ceph_tcp_sendpage(struct socket *sock, struct page *page,
Alex Eldere1dcb122013-03-06 23:39:38 -0600576 int offset, size_t size, bool more)
Alex Elder31739132012-03-07 11:40:08 -0600577{
578 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
579 int ret;
580
581 ret = kernel_sendpage(sock, page, offset, size, flags);
582 if (ret == -EAGAIN)
583 ret = 0;
584
585 return ret;
586}
587
Chunwei Chen178eda22014-04-23 12:35:09 +0800588static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
589 int offset, size_t size, bool more)
590{
591 int ret;
592 struct kvec iov;
593
594 /* sendpage cannot properly handle pages with page_count == 0,
595 * we need to fallback to sendmsg if that's the case */
596 if (page_count(page) >= 1)
597 return __ceph_tcp_sendpage(sock, page, offset, size, more);
598
599 iov.iov_base = kmap(page) + offset;
600 iov.iov_len = size;
601 ret = ceph_tcp_sendmsg(sock, &iov, 1, size, more);
602 kunmap(page);
603
604 return ret;
605}
Sage Weil31b80062009-10-06 11:31:13 -0700606
607/*
608 * Shutdown/close the socket for the given connection.
609 */
610static int con_close_socket(struct ceph_connection *con)
611{
Sage Weil8007b8d2012-07-30 18:16:16 -0700612 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700613
614 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700615 if (con->sock) {
616 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
617 sock_release(con->sock);
618 con->sock = NULL;
619 }
Alex Elder456ea462012-06-20 21:53:53 -0500620
621 /*
Sage Weil4a861692012-07-20 17:29:55 -0700622 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500623 * independent of the connection mutex, and we could have
624 * received a socket close event before we had the chance to
625 * shut the socket down.
626 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600627 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700628
Alex Elderce2c8902012-05-22 22:15:49 -0500629 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700630 return rc;
631}
632
633/*
634 * Reset a connection. Discard all incoming and outgoing messages
635 * and clear *_seq state.
636 */
637static void ceph_msg_remove(struct ceph_msg *msg)
638{
639 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500640 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700641 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500642 msg->con = NULL;
643
Sage Weil31b80062009-10-06 11:31:13 -0700644 ceph_msg_put(msg);
645}
646static void ceph_msg_remove_list(struct list_head *head)
647{
648 while (!list_empty(head)) {
649 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
650 list_head);
651 ceph_msg_remove(msg);
652 }
653}
654
655static void reset_connection(struct ceph_connection *con)
656{
657 /* reset connection, out_queue, msg_ and connect_seq */
658 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600659 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700660 ceph_msg_remove_list(&con->out_queue);
661 ceph_msg_remove_list(&con->out_sent);
662
Sage Weilcf3e5c42009-12-11 09:48:05 -0800663 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500664 BUG_ON(con->in_msg->con != con);
665 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800666 ceph_msg_put(con->in_msg);
667 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700668 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800669 }
670
Sage Weil31b80062009-10-06 11:31:13 -0700671 con->connect_seq = 0;
672 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800673 if (con->out_msg) {
674 ceph_msg_put(con->out_msg);
675 con->out_msg = NULL;
676 }
Sage Weil31b80062009-10-06 11:31:13 -0700677 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700678 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700679}
680
681/*
682 * mark a peer down. drop any open connections.
683 */
684void ceph_con_close(struct ceph_connection *con)
685{
Sage Weil8c50c812012-07-30 16:24:37 -0700686 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700687 dout("con_close %p peer %s\n", con,
688 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700689 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500690
Alex Elderc9ffc772013-02-20 10:25:12 -0600691 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
692 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
693 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
694 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500695
Sage Weil31b80062009-10-06 11:31:13 -0700696 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700697 con->peer_global_seq = 0;
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400698 cancel_con(con);
Sage Weilee76e072012-07-20 16:45:49 -0700699 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800700 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700701}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700702EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700703
704/*
Sage Weil31b80062009-10-06 11:31:13 -0700705 * Reopen a closed connection, with a new peer address.
706 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700707void ceph_con_open(struct ceph_connection *con,
708 __u8 entity_type, __u64 entity_num,
709 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700710{
Sage Weil54691552012-07-30 16:21:40 -0700711 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700712 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700713
Alex Elder122070a2012-12-26 10:43:57 -0600714 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700715 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500716
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700717 con->peer_name.type = (__u8) entity_type;
718 con->peer_name.num = cpu_to_le64(entity_num);
719
Sage Weil31b80062009-10-06 11:31:13 -0700720 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800721 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700722 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700723 queue_con(con);
724}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700725EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700726
727/*
Sage Weil87b315a2010-03-22 14:51:18 -0700728 * return true if this connection ever successfully opened
729 */
730bool ceph_con_opened(struct ceph_connection *con)
731{
732 return con->connect_seq > 0;
733}
734
735/*
Sage Weil31b80062009-10-06 11:31:13 -0700736 * initialize a new connection.
737 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500738void ceph_con_init(struct ceph_connection *con, void *private,
739 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700740 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700741{
742 dout("con_init %p\n", con);
743 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500744 con->private = private;
745 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700746 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500747
748 con_sock_state_init(con);
749
Sage Weilec302642009-12-22 10:43:42 -0800750 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700751 INIT_LIST_HEAD(&con->out_queue);
752 INIT_LIST_HEAD(&con->out_sent);
Ilya Dryomov68931622015-07-03 15:44:41 +0300753 INIT_DELAYED_WORK(&con->work, ceph_con_workfn);
Alex Eldera5988c42012-05-29 11:04:58 -0500754
Sage Weil8dacc7d2012-07-20 17:24:40 -0700755 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700756}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700757EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700758
759
760/*
761 * We maintain a global counter to order connection attempts. Get
762 * a unique seq greater than @gt.
763 */
764static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
765{
766 u32 ret;
767
768 spin_lock(&msgr->global_seq_lock);
769 if (msgr->global_seq < gt)
770 msgr->global_seq = gt;
771 ret = ++msgr->global_seq;
772 spin_unlock(&msgr->global_seq_lock);
773 return ret;
774}
775
Alex Eldere2200422012-05-23 14:35:23 -0500776static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600777{
778 con->out_kvec_left = 0;
779 con->out_kvec_bytes = 0;
780 con->out_kvec_cur = &con->out_kvec[0];
781}
782
Alex Eldere2200422012-05-23 14:35:23 -0500783static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600784 size_t size, void *data)
785{
786 int index;
787
788 index = con->out_kvec_left;
789 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
790
791 con->out_kvec[index].iov_len = size;
792 con->out_kvec[index].iov_base = data;
793 con->out_kvec_left++;
794 con->out_kvec_bytes += size;
795}
Sage Weil31b80062009-10-06 11:31:13 -0700796
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500797#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600798
799/*
800 * For a bio data item, a piece is whatever remains of the next
801 * entry in the current bio iovec, or the first entry in the next
802 * bio in the list.
803 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500804static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500805 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600806{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500807 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600808 struct bio *bio;
809
810 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
811
812 bio = data->bio;
813 BUG_ON(!bio);
Alex Elder6aaa4512013-03-06 23:39:39 -0600814
Alex Elderca8b3a62013-04-05 14:46:01 -0500815 cursor->resid = min(length, data->bio_length);
Alex Elder6aaa4512013-03-06 23:39:39 -0600816 cursor->bio = bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700817 cursor->bvec_iter = bio->bi_iter;
818 cursor->last_piece =
819 cursor->resid <= bio_iter_len(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600820}
821
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500822static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
Alex Elder6aaa4512013-03-06 23:39:39 -0600823 size_t *page_offset,
824 size_t *length)
825{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500826 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600827 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700828 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600829
830 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
831
832 bio = cursor->bio;
833 BUG_ON(!bio);
834
Kent Overstreetf38a5182013-08-07 14:30:24 -0700835 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600836
Kent Overstreetf38a5182013-08-07 14:30:24 -0700837 *page_offset = (size_t) bio_vec.bv_offset;
Alex Elder6aaa4512013-03-06 23:39:39 -0600838 BUG_ON(*page_offset >= PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500839 if (cursor->last_piece) /* pagelist offset is always 0 */
840 *length = cursor->resid;
841 else
Kent Overstreetf38a5182013-08-07 14:30:24 -0700842 *length = (size_t) bio_vec.bv_len;
Alex Elder25aff7c2013-03-11 23:34:22 -0500843 BUG_ON(*length > cursor->resid);
Alex Elder5df521b2013-03-30 15:09:59 -0500844 BUG_ON(*page_offset + *length > PAGE_SIZE);
Alex Elder6aaa4512013-03-06 23:39:39 -0600845
Kent Overstreetf38a5182013-08-07 14:30:24 -0700846 return bio_vec.bv_page;
Alex Elder6aaa4512013-03-06 23:39:39 -0600847}
848
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500849static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
850 size_t bytes)
Alex Elder6aaa4512013-03-06 23:39:39 -0600851{
Alex Elder6aaa4512013-03-06 23:39:39 -0600852 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700853 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600854
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500855 BUG_ON(cursor->data->type != CEPH_MSG_DATA_BIO);
Alex Elder6aaa4512013-03-06 23:39:39 -0600856
857 bio = cursor->bio;
858 BUG_ON(!bio);
859
Kent Overstreetf38a5182013-08-07 14:30:24 -0700860 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600861
862 /* Advance the cursor offset */
863
Alex Elder25aff7c2013-03-11 23:34:22 -0500864 BUG_ON(cursor->resid < bytes);
865 cursor->resid -= bytes;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700866
867 bio_advance_iter(bio, &cursor->bvec_iter, bytes);
868
869 if (bytes < bio_vec.bv_len)
Alex Elder6aaa4512013-03-06 23:39:39 -0600870 return false; /* more bytes to process in this segment */
871
872 /* Move on to the next segment, and possibly the next bio */
873
Kent Overstreetf38a5182013-08-07 14:30:24 -0700874 if (!cursor->bvec_iter.bi_size) {
Alex Elder6aaa4512013-03-06 23:39:39 -0600875 bio = bio->bi_next;
Ilya Dryomov0ec1d152014-02-05 15:19:55 +0200876 cursor->bio = bio;
877 if (bio)
878 cursor->bvec_iter = bio->bi_iter;
879 else
880 memset(&cursor->bvec_iter, 0,
881 sizeof(cursor->bvec_iter));
Alex Elder6aaa4512013-03-06 23:39:39 -0600882 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600883
Alex Elder25aff7c2013-03-11 23:34:22 -0500884 if (!cursor->last_piece) {
885 BUG_ON(!cursor->resid);
886 BUG_ON(!bio);
887 /* A short read is OK, so use <= rather than == */
Kent Overstreetf38a5182013-08-07 14:30:24 -0700888 if (cursor->resid <= bio_iter_len(bio, cursor->bvec_iter))
Alex Elder6aaa4512013-03-06 23:39:39 -0600889 cursor->last_piece = true;
Alex Elder25aff7c2013-03-11 23:34:22 -0500890 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600891
892 return true;
893}
Alex Elderea965712013-04-05 14:46:01 -0500894#endif /* CONFIG_BLOCK */
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500895
Alex Elderfe38a2b2013-03-06 23:39:39 -0600896/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600897 * For a page array, a piece comes from the first page in the array
898 * that has not already been fully consumed.
899 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500900static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500901 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600902{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500903 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600904 int page_count;
905
906 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
907
908 BUG_ON(!data->pages);
909 BUG_ON(!data->length);
910
Alex Elderca8b3a62013-04-05 14:46:01 -0500911 cursor->resid = min(length, data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600912 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600913 cursor->page_offset = data->alignment & ~PAGE_MASK;
914 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500915 BUG_ON(page_count > (int)USHRT_MAX);
916 cursor->page_count = (unsigned short)page_count;
917 BUG_ON(length > SIZE_MAX - cursor->page_offset);
Ilya Dryomov5f740d72014-08-08 12:43:39 +0400918 cursor->last_piece = cursor->page_offset + cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600919}
920
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500921static struct page *
922ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
923 size_t *page_offset, size_t *length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600924{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500925 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600926
927 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
928
929 BUG_ON(cursor->page_index >= cursor->page_count);
930 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600931
932 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500933 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600934 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500935 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600936 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600937
938 return data->pages[cursor->page_index];
939}
940
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500941static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
Alex Eldere766d7b2013-03-07 15:38:28 -0600942 size_t bytes)
943{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500944 BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
Alex Eldere766d7b2013-03-07 15:38:28 -0600945
946 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600947
948 /* Advance the cursor page offset */
949
950 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500951 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
952 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -0600953 return false; /* more bytes to process in the current page */
954
Yan, Zhengd90deda2014-03-23 06:50:39 +0800955 if (!cursor->resid)
956 return false; /* no more data */
957
Alex Elder5df521b2013-03-30 15:09:59 -0500958 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -0600959
960 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -0600961 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500962 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600963
964 return true;
965}
966
967/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600968 * For a pagelist, a piece is whatever remains to be consumed in the
969 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600970 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500971static void
972ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500973 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600974{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500975 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600976 struct ceph_pagelist *pagelist;
977 struct page *page;
978
Alex Elderdd236fc2013-03-06 23:39:39 -0600979 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600980
981 pagelist = data->pagelist;
982 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500983
984 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600985 return; /* pagelist can be assigned but empty */
986
987 BUG_ON(list_empty(&pagelist->head));
988 page = list_first_entry(&pagelist->head, struct page, lru);
989
Alex Elderca8b3a62013-04-05 14:46:01 -0500990 cursor->resid = min(length, pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600991 cursor->page = page;
992 cursor->offset = 0;
Alex Eldera51b272e2013-04-19 15:34:49 -0500993 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600994}
995
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500996static struct page *
997ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
998 size_t *page_offset, size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600999{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001000 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001001 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001002
1003 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1004
1005 pagelist = data->pagelist;
1006 BUG_ON(!pagelist);
1007
1008 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -05001009 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001010
Alex Elder5df521b2013-03-30 15:09:59 -05001011 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001012 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -05001013 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -05001014 *length = cursor->resid;
1015 else
1016 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001017
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001018 return cursor->page;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001019}
1020
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001021static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
Alex Elderdd236fc2013-03-06 23:39:39 -06001022 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001023{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001024 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001025 struct ceph_pagelist *pagelist;
1026
1027 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1028
1029 pagelist = data->pagelist;
1030 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001031
1032 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001033 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1034
1035 /* Advance the cursor offset */
1036
Alex Elder25aff7c2013-03-11 23:34:22 -05001037 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001038 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001039 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001040 if (!bytes || cursor->offset & ~PAGE_MASK)
1041 return false; /* more bytes to process in the current page */
1042
Yan, Zhengd90deda2014-03-23 06:50:39 +08001043 if (!cursor->resid)
1044 return false; /* no more data */
1045
Alex Elderfe38a2b2013-03-06 23:39:39 -06001046 /* Move on to the next page */
1047
1048 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
1049 cursor->page = list_entry_next(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -05001050 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001051
1052 return true;
1053}
1054
Alex Elderdd236fc2013-03-06 23:39:39 -06001055/*
1056 * Message data is handled (sent or received) in pieces, where each
1057 * piece resides on a single page. The network layer might not
1058 * consume an entire piece at once. A data item's cursor keeps
1059 * track of which piece is next to process and how much remains to
1060 * be processed in that piece. It also tracks whether the current
1061 * piece is the last one in the data item.
1062 */
Alex Elderca8b3a62013-04-05 14:46:01 -05001063static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
Alex Elderdd236fc2013-03-06 23:39:39 -06001064{
Alex Elderca8b3a62013-04-05 14:46:01 -05001065 size_t length = cursor->total_resid;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001066
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001067 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001068 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001069 ceph_msg_data_pagelist_cursor_init(cursor, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001070 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001071 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001072 ceph_msg_data_pages_cursor_init(cursor, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001073 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001074#ifdef CONFIG_BLOCK
1075 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001076 ceph_msg_data_bio_cursor_init(cursor, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001077 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001078#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001079 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001080 default:
1081 /* BUG(); */
1082 break;
1083 }
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001084 cursor->need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001085}
1086
Alex Elderca8b3a62013-04-05 14:46:01 -05001087static void ceph_msg_data_cursor_init(struct ceph_msg *msg, size_t length)
1088{
1089 struct ceph_msg_data_cursor *cursor = &msg->cursor;
1090 struct ceph_msg_data *data;
1091
1092 BUG_ON(!length);
1093 BUG_ON(length > msg->data_length);
1094 BUG_ON(list_empty(&msg->data));
1095
Alex Elderca8b3a62013-04-05 14:46:01 -05001096 cursor->data_head = &msg->data;
1097 cursor->total_resid = length;
1098 data = list_first_entry(&msg->data, struct ceph_msg_data, links);
1099 cursor->data = data;
1100
1101 __ceph_msg_data_cursor_init(cursor);
1102}
1103
Alex Elderdd236fc2013-03-06 23:39:39 -06001104/*
1105 * Return the page containing the next piece to process for a given
1106 * data item, and supply the page offset and length of that piece.
1107 * Indicate whether this is the last piece in this data item.
1108 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001109static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1110 size_t *page_offset, size_t *length,
Alex Elderdd236fc2013-03-06 23:39:39 -06001111 bool *last_piece)
1112{
1113 struct page *page;
1114
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001115 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001116 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001117 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001118 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001119 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001120 page = ceph_msg_data_pages_next(cursor, page_offset, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001121 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001122#ifdef CONFIG_BLOCK
1123 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001124 page = ceph_msg_data_bio_next(cursor, page_offset, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001125 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001126#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001127 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001128 default:
1129 page = NULL;
1130 break;
1131 }
1132 BUG_ON(!page);
1133 BUG_ON(*page_offset + *length > PAGE_SIZE);
1134 BUG_ON(!*length);
1135 if (last_piece)
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001136 *last_piece = cursor->last_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001137
1138 return page;
1139}
1140
1141/*
1142 * Returns true if the result moves the cursor on to the next piece
1143 * of the data item.
1144 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001145static bool ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1146 size_t bytes)
Alex Elderdd236fc2013-03-06 23:39:39 -06001147{
1148 bool new_piece;
1149
Alex Elder25aff7c2013-03-11 23:34:22 -05001150 BUG_ON(bytes > cursor->resid);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001151 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001152 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001153 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
Alex Elderdd236fc2013-03-06 23:39:39 -06001154 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001155 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001156 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
Alex Eldere766d7b2013-03-07 15:38:28 -06001157 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001158#ifdef CONFIG_BLOCK
1159 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001160 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
Alex Elder6aaa4512013-03-06 23:39:39 -06001161 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001162#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001163 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001164 default:
1165 BUG();
1166 break;
1167 }
Alex Elderca8b3a62013-04-05 14:46:01 -05001168 cursor->total_resid -= bytes;
Alex Elderdd236fc2013-03-06 23:39:39 -06001169
Alex Elderca8b3a62013-04-05 14:46:01 -05001170 if (!cursor->resid && cursor->total_resid) {
1171 WARN_ON(!cursor->last_piece);
1172 BUG_ON(list_is_last(&cursor->data->links, cursor->data_head));
1173 cursor->data = list_entry_next(cursor->data, links);
1174 __ceph_msg_data_cursor_init(cursor);
Alex Eldera51b272e2013-04-19 15:34:49 -05001175 new_piece = true;
Alex Elderca8b3a62013-04-05 14:46:01 -05001176 }
Alex Eldera51b272e2013-04-19 15:34:49 -05001177 cursor->need_crc = new_piece;
Alex Elderca8b3a62013-04-05 14:46:01 -05001178
Alex Elderdd236fc2013-03-06 23:39:39 -06001179 return new_piece;
1180}
1181
Alex Elder98fa5dd2013-04-02 12:09:50 -05001182static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
Alex Elder739c9052012-06-11 14:57:13 -05001183{
Alex Elder739c9052012-06-11 14:57:13 -05001184 BUG_ON(!msg);
Alex Elder25aff7c2013-03-11 23:34:22 -05001185 BUG_ON(!data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001186
Alex Elder4c59b4a2013-03-11 23:34:23 -05001187 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001188
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001189 ceph_msg_data_cursor_init(msg, (size_t)data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001190}
1191
Sage Weil31b80062009-10-06 11:31:13 -07001192/*
1193 * Prepare footer for currently outgoing message, and finish things
1194 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1195 */
Alex Elder859eb792012-02-14 14:05:33 -06001196static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001197{
1198 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001199 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001200
Alex Elderfd154f32012-06-11 14:57:13 -05001201 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1202
Sage Weil31b80062009-10-06 11:31:13 -07001203 dout("prepare_write_message_footer %p\n", con);
1204 con->out_kvec_is_msg = true;
1205 con->out_kvec[v].iov_base = &m->footer;
Yan, Zheng33d07332014-11-04 16:33:37 +08001206 if (con->peer_features & CEPH_FEATURE_MSG_AUTH) {
1207 if (con->ops->sign_message)
1208 con->ops->sign_message(con, m);
1209 else
1210 m->footer.sig = 0;
1211 con->out_kvec[v].iov_len = sizeof(m->footer);
1212 con->out_kvec_bytes += sizeof(m->footer);
1213 } else {
1214 m->old_footer.flags = m->footer.flags;
1215 con->out_kvec[v].iov_len = sizeof(m->old_footer);
1216 con->out_kvec_bytes += sizeof(m->old_footer);
1217 }
Sage Weil31b80062009-10-06 11:31:13 -07001218 con->out_kvec_left++;
1219 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001220 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001221}
1222
1223/*
1224 * Prepare headers for the next outgoing message.
1225 */
1226static void prepare_write_message(struct ceph_connection *con)
1227{
1228 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001229 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001230
Alex Eldere2200422012-05-23 14:35:23 -05001231 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001232 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001233 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001234
1235 /* Sneak an ack in there first? If we can get it into the same
1236 * TCP packet that's a good thing. */
1237 if (con->in_seq > con->in_seq_acked) {
1238 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001239 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001240 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001241 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001242 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001243 }
1244
Alex Elder38941f82012-06-01 14:56:43 -05001245 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001246 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001247 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001248 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001249
1250 /* put message on sent list */
1251 ceph_msg_get(m);
1252 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001253
Sage Weile84346b2010-05-11 21:20:38 -07001254 /*
1255 * only assign outgoing seq # if we haven't sent this message
1256 * yet. if it is requeued, resend with it's original seq.
1257 */
1258 if (m->needs_out_seq) {
1259 m->hdr.seq = cpu_to_le64(++con->out_seq);
1260 m->needs_out_seq = false;
1261 }
Alex Elder98fa5dd2013-04-02 12:09:50 -05001262 WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001263
Alex Elder98fa5dd2013-04-02 12:09:50 -05001264 dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
Sage Weil31b80062009-10-06 11:31:13 -07001265 m, con->out_seq, le16_to_cpu(m->hdr.type),
1266 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder98fa5dd2013-04-02 12:09:50 -05001267 m->data_length);
Sage Weil31b80062009-10-06 11:31:13 -07001268 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1269
1270 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001271 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1272 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1273 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001274
Sage Weil31b80062009-10-06 11:31:13 -07001275 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001276 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001277 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001278
1279 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001280 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1281 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001282 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001283
1284 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1285 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1286 if (m->middle) {
1287 crc = crc32c(0, m->middle->vec.iov_base,
1288 m->middle->vec.iov_len);
1289 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1290 } else
Sage Weil31b80062009-10-06 11:31:13 -07001291 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001292 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001293 le32_to_cpu(con->out_msg->footer.front_crc),
1294 le32_to_cpu(con->out_msg->footer.middle_crc));
1295
1296 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001297 con->out_msg->footer.data_crc = 0;
Alex Elder98fa5dd2013-04-02 12:09:50 -05001298 if (m->data_length) {
1299 prepare_message_data(con->out_msg, m->data_length);
Alex Elder78625052013-03-06 23:39:39 -06001300 con->out_more = 1; /* data + footer will follow */
1301 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001302 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001303 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001304 }
Sage Weil31b80062009-10-06 11:31:13 -07001305
Alex Elderc9ffc772013-02-20 10:25:12 -06001306 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001307}
1308
1309/*
1310 * Prepare an ack.
1311 */
1312static void prepare_write_ack(struct ceph_connection *con)
1313{
1314 dout("prepare_write_ack %p %llu -> %llu\n", con,
1315 con->in_seq_acked, con->in_seq);
1316 con->in_seq_acked = con->in_seq;
1317
Alex Eldere2200422012-05-23 14:35:23 -05001318 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001319
Alex Eldere2200422012-05-23 14:35:23 -05001320 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001321
Sage Weil31b80062009-10-06 11:31:13 -07001322 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001323 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001324 &con->out_temp_ack);
1325
Sage Weil31b80062009-10-06 11:31:13 -07001326 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001327 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001328}
1329
1330/*
Sage Weil3a230832013-03-25 08:47:40 -07001331 * Prepare to share the seq during handshake
1332 */
1333static void prepare_write_seq(struct ceph_connection *con)
1334{
1335 dout("prepare_write_seq %p %llu -> %llu\n", con,
1336 con->in_seq_acked, con->in_seq);
1337 con->in_seq_acked = con->in_seq;
1338
1339 con_out_kvec_reset(con);
1340
1341 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1342 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1343 &con->out_temp_ack);
1344
1345 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1346}
1347
1348/*
Sage Weil31b80062009-10-06 11:31:13 -07001349 * Prepare to write keepalive byte.
1350 */
1351static void prepare_write_keepalive(struct ceph_connection *con)
1352{
1353 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001354 con_out_kvec_reset(con);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001355 if (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2) {
1356 struct timespec ts = CURRENT_TIME;
1357 struct ceph_timespec ceph_ts;
1358 ceph_encode_timespec(&ceph_ts, &ts);
1359 con_out_kvec_add(con, sizeof(tag_keepalive2), &tag_keepalive2);
1360 con_out_kvec_add(con, sizeof(ceph_ts), &ceph_ts);
1361 } else {
1362 con_out_kvec_add(con, sizeof(tag_keepalive), &tag_keepalive);
1363 }
Alex Elderc9ffc772013-02-20 10:25:12 -06001364 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001365}
1366
1367/*
1368 * Connection negotiation.
1369 */
1370
Alex Elderdac1e712012-05-16 15:16:39 -05001371static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1372 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001373{
Alex Eldera3530df2012-05-16 15:16:39 -05001374 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001375
1376 if (!con->ops->get_authorizer) {
1377 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1378 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001379 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001380 }
1381
1382 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001383 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001384 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001385 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001386
Alex Eldera3530df2012-05-16 15:16:39 -05001387 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001388 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001389 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001390 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001391
Alex Elder8f43fb52012-05-16 15:16:39 -05001392 con->auth_reply_buf = auth->authorizer_reply_buf;
1393 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001394 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001395}
1396
Sage Weil31b80062009-10-06 11:31:13 -07001397/*
1398 * We connected to a peer and are saying hello.
1399 */
Alex Eldere825a662012-05-16 15:16:38 -05001400static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001401{
Alex Eldere2200422012-05-23 14:35:23 -05001402 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1403 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001404 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001405
Sage Weileed0ef22009-11-10 14:34:36 -08001406 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001407 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001408}
1409
Alex Eldere825a662012-05-16 15:16:38 -05001410static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001411{
Eric Dumazet95c96172012-04-15 05:58:06 +00001412 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001413 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001414 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001415 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001416
1417 switch (con->peer_name.type) {
1418 case CEPH_ENTITY_TYPE_MON:
1419 proto = CEPH_MONC_PROTOCOL;
1420 break;
1421 case CEPH_ENTITY_TYPE_OSD:
1422 proto = CEPH_OSDC_PROTOCOL;
1423 break;
1424 case CEPH_ENTITY_TYPE_MDS:
1425 proto = CEPH_MDSC_PROTOCOL;
1426 break;
1427 default:
1428 BUG();
1429 }
1430
1431 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1432 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001433
Alex Eldere825a662012-05-16 15:16:38 -05001434 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001435 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1436 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1437 con->out_connect.global_seq = cpu_to_le32(global_seq);
1438 con->out_connect.protocol_version = cpu_to_le32(proto);
1439 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001440
Alex Elderdac1e712012-05-16 15:16:39 -05001441 auth_proto = CEPH_AUTH_UNKNOWN;
1442 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001443 if (IS_ERR(auth))
1444 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001445
Alex Elderdac1e712012-05-16 15:16:39 -05001446 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001447 con->out_connect.authorizer_len = auth ?
1448 cpu_to_le32(auth->authorizer_buf_len) : 0;
1449
Alex Eldere2200422012-05-23 14:35:23 -05001450 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001451 &con->out_connect);
1452 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001453 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001454 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001455
Sage Weil31b80062009-10-06 11:31:13 -07001456 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001457 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001458
Alex Eldere10c7582012-05-16 15:16:38 -05001459 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001460}
1461
Sage Weil31b80062009-10-06 11:31:13 -07001462/*
1463 * write as much of pending kvecs to the socket as we can.
1464 * 1 -> done
1465 * 0 -> socket full, but more to do
1466 * <0 -> error
1467 */
1468static int write_partial_kvec(struct ceph_connection *con)
1469{
1470 int ret;
1471
1472 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1473 while (con->out_kvec_bytes > 0) {
1474 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1475 con->out_kvec_left, con->out_kvec_bytes,
1476 con->out_more);
1477 if (ret <= 0)
1478 goto out;
1479 con->out_kvec_bytes -= ret;
1480 if (con->out_kvec_bytes == 0)
1481 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001482
1483 /* account for full iov entries consumed */
1484 while (ret >= con->out_kvec_cur->iov_len) {
1485 BUG_ON(!con->out_kvec_left);
1486 ret -= con->out_kvec_cur->iov_len;
1487 con->out_kvec_cur++;
1488 con->out_kvec_left--;
1489 }
1490 /* and for a partially-consumed entry */
1491 if (ret) {
1492 con->out_kvec_cur->iov_len -= ret;
1493 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001494 }
1495 }
1496 con->out_kvec_left = 0;
1497 con->out_kvec_is_msg = false;
1498 ret = 1;
1499out:
1500 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1501 con->out_kvec_bytes, con->out_kvec_left, ret);
1502 return ret; /* done! */
1503}
1504
Alex Elder35b62802013-03-08 20:59:00 -06001505static u32 ceph_crc32c_page(u32 crc, struct page *page,
1506 unsigned int page_offset,
1507 unsigned int length)
1508{
1509 char *kaddr;
1510
1511 kaddr = kmap(page);
1512 BUG_ON(kaddr == NULL);
1513 crc = crc32c(crc, kaddr + page_offset, length);
1514 kunmap(page);
1515
1516 return crc;
1517}
Sage Weil31b80062009-10-06 11:31:13 -07001518/*
1519 * Write as much message data payload as we can. If we finish, queue
1520 * up the footer.
1521 * 1 -> done, footer is now queued in out_kvec[].
1522 * 0 -> socket full, but more to do
1523 * <0 -> error
1524 */
Alex Elder34d2d202013-03-08 20:58:59 -06001525static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001526{
1527 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001528 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder37675b02012-03-07 11:40:08 -06001529 bool do_datacrc = !con->msgr->nocrc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001530 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001531
Alex Elder859a35d2013-03-11 23:34:23 -05001532 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001533
Alex Elder5240d9f2013-03-14 14:09:06 -05001534 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05001535 return -EINVAL;
1536
Alex Elder5821bd82012-06-11 14:57:13 -05001537 /*
1538 * Iterate through each page that contains data to be
1539 * written, and send as much as possible for each.
1540 *
1541 * If we are calculating the data crc (the default), we will
1542 * need to map the page. If we have no pages, they have
1543 * been revoked, so use the zero page.
1544 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001545 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Alex Elder643c68a2013-03-11 23:34:23 -05001546 while (cursor->resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001547 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001548 size_t page_offset;
1549 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001550 bool last_piece;
Alex Elder8ea299b2013-03-11 23:34:23 -05001551 bool need_crc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001552 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001553
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001554 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05001555 &last_piece);
Alex Eldere387d522013-03-06 23:39:38 -06001556 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Benoît Canetc2cfa192015-06-25 20:32:34 +03001557 length, !last_piece);
Alex Elderf5db90b2013-03-11 23:34:23 -05001558 if (ret <= 0) {
1559 if (do_datacrc)
1560 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001561
Alex Elderf5db90b2013-03-11 23:34:23 -05001562 return ret;
1563 }
Alex Elder143334f2013-03-29 11:44:10 -05001564 if (do_datacrc && cursor->need_crc)
1565 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001566 need_crc = ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001567 }
1568
Alex Elder34d2d202013-03-08 20:58:59 -06001569 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001570
1571 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001572 if (do_datacrc)
1573 msg->footer.data_crc = cpu_to_le32(crc);
1574 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001575 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001576 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001577 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001578
1579 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001580}
1581
1582/*
1583 * write some zeros
1584 */
1585static int write_partial_skip(struct ceph_connection *con)
1586{
1587 int ret;
1588
1589 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001590 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001591
Alex Eldere1dcb122013-03-06 23:39:38 -06001592 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001593 if (ret <= 0)
1594 goto out;
1595 con->out_skip -= ret;
1596 }
1597 ret = 1;
1598out:
1599 return ret;
1600}
1601
1602/*
1603 * Prepare to read connection handshake, or an ack.
1604 */
Sage Weileed0ef22009-11-10 14:34:36 -08001605static void prepare_read_banner(struct ceph_connection *con)
1606{
1607 dout("prepare_read_banner %p\n", con);
1608 con->in_base_pos = 0;
1609}
1610
Sage Weil31b80062009-10-06 11:31:13 -07001611static void prepare_read_connect(struct ceph_connection *con)
1612{
1613 dout("prepare_read_connect %p\n", con);
1614 con->in_base_pos = 0;
1615}
1616
1617static void prepare_read_ack(struct ceph_connection *con)
1618{
1619 dout("prepare_read_ack %p\n", con);
1620 con->in_base_pos = 0;
1621}
1622
Sage Weil3a230832013-03-25 08:47:40 -07001623static void prepare_read_seq(struct ceph_connection *con)
1624{
1625 dout("prepare_read_seq %p\n", con);
1626 con->in_base_pos = 0;
1627 con->in_tag = CEPH_MSGR_TAG_SEQ;
1628}
1629
Sage Weil31b80062009-10-06 11:31:13 -07001630static void prepare_read_tag(struct ceph_connection *con)
1631{
1632 dout("prepare_read_tag %p\n", con);
1633 con->in_base_pos = 0;
1634 con->in_tag = CEPH_MSGR_TAG_READY;
1635}
1636
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001637static void prepare_read_keepalive_ack(struct ceph_connection *con)
1638{
1639 dout("prepare_read_keepalive_ack %p\n", con);
1640 con->in_base_pos = 0;
1641}
1642
Sage Weil31b80062009-10-06 11:31:13 -07001643/*
1644 * Prepare to read a message.
1645 */
1646static int prepare_read_message(struct ceph_connection *con)
1647{
1648 dout("prepare_read_message %p\n", con);
1649 BUG_ON(con->in_msg != NULL);
1650 con->in_base_pos = 0;
1651 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1652 return 0;
1653}
1654
1655
1656static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001657 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001658{
Alex Eldere6cee712012-05-10 10:29:50 -05001659 while (con->in_base_pos < end) {
1660 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001661 int have = size - left;
1662 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1663 if (ret <= 0)
1664 return ret;
1665 con->in_base_pos += ret;
1666 }
1667 return 1;
1668}
1669
1670
1671/*
1672 * Read all or part of the connect-side handshake on a new connection
1673 */
Sage Weileed0ef22009-11-10 14:34:36 -08001674static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001675{
Alex Elderfd516532012-05-10 10:29:50 -05001676 int size;
1677 int end;
1678 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001679
Sage Weileed0ef22009-11-10 14:34:36 -08001680 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001681
1682 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001683 size = strlen(CEPH_BANNER);
1684 end = size;
1685 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001686 if (ret <= 0)
1687 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001688
1689 size = sizeof (con->actual_peer_addr);
1690 end += size;
1691 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001692 if (ret <= 0)
1693 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001694
1695 size = sizeof (con->peer_addr_for_me);
1696 end += size;
1697 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001698 if (ret <= 0)
1699 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001700
Sage Weileed0ef22009-11-10 14:34:36 -08001701out:
1702 return ret;
1703}
1704
1705static int read_partial_connect(struct ceph_connection *con)
1706{
Alex Elderfd516532012-05-10 10:29:50 -05001707 int size;
1708 int end;
1709 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001710
1711 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1712
Alex Elderfd516532012-05-10 10:29:50 -05001713 size = sizeof (con->in_reply);
1714 end = size;
1715 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001716 if (ret <= 0)
1717 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001718
1719 size = le32_to_cpu(con->in_reply.authorizer_len);
1720 end += size;
1721 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001722 if (ret <= 0)
1723 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001724
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001725 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1726 con, (int)con->in_reply.tag,
1727 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001728 le32_to_cpu(con->in_reply.global_seq));
1729out:
1730 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001731
Sage Weil31b80062009-10-06 11:31:13 -07001732}
1733
1734/*
1735 * Verify the hello banner looks okay.
1736 */
1737static int verify_hello(struct ceph_connection *con)
1738{
1739 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001740 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001741 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001742 con->error_msg = "protocol error, bad banner";
1743 return -1;
1744 }
1745 return 0;
1746}
1747
1748static bool addr_is_blank(struct sockaddr_storage *ss)
1749{
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001750 struct in_addr *addr = &((struct sockaddr_in *)ss)->sin_addr;
1751 struct in6_addr *addr6 = &((struct sockaddr_in6 *)ss)->sin6_addr;
1752
Sage Weil31b80062009-10-06 11:31:13 -07001753 switch (ss->ss_family) {
1754 case AF_INET:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001755 return addr->s_addr == htonl(INADDR_ANY);
Sage Weil31b80062009-10-06 11:31:13 -07001756 case AF_INET6:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001757 return ipv6_addr_any(addr6);
1758 default:
1759 return true;
Sage Weil31b80062009-10-06 11:31:13 -07001760 }
Sage Weil31b80062009-10-06 11:31:13 -07001761}
1762
1763static int addr_port(struct sockaddr_storage *ss)
1764{
1765 switch (ss->ss_family) {
1766 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001767 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001768 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001769 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001770 }
1771 return 0;
1772}
1773
1774static void addr_set_port(struct sockaddr_storage *ss, int p)
1775{
1776 switch (ss->ss_family) {
1777 case AF_INET:
1778 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001779 break;
Sage Weil31b80062009-10-06 11:31:13 -07001780 case AF_INET6:
1781 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001782 break;
Sage Weil31b80062009-10-06 11:31:13 -07001783 }
1784}
1785
1786/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001787 * Unlike other *_pton function semantics, zero indicates success.
1788 */
1789static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1790 char delim, const char **ipend)
1791{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001792 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1793 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001794
1795 memset(ss, 0, sizeof(*ss));
1796
1797 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1798 ss->ss_family = AF_INET;
1799 return 0;
1800 }
1801
1802 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1803 ss->ss_family = AF_INET6;
1804 return 0;
1805 }
1806
1807 return -EINVAL;
1808}
1809
1810/*
1811 * Extract hostname string and resolve using kernel DNS facility.
1812 */
1813#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1814static int ceph_dns_resolve_name(const char *name, size_t namelen,
1815 struct sockaddr_storage *ss, char delim, const char **ipend)
1816{
1817 const char *end, *delim_p;
1818 char *colon_p, *ip_addr = NULL;
1819 int ip_len, ret;
1820
1821 /*
1822 * The end of the hostname occurs immediately preceding the delimiter or
1823 * the port marker (':') where the delimiter takes precedence.
1824 */
1825 delim_p = memchr(name, delim, namelen);
1826 colon_p = memchr(name, ':', namelen);
1827
1828 if (delim_p && colon_p)
1829 end = delim_p < colon_p ? delim_p : colon_p;
1830 else if (!delim_p && colon_p)
1831 end = colon_p;
1832 else {
1833 end = delim_p;
1834 if (!end) /* case: hostname:/ */
1835 end = name + namelen;
1836 }
1837
1838 if (end <= name)
1839 return -EINVAL;
1840
1841 /* do dns_resolve upcall */
1842 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1843 if (ip_len > 0)
1844 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1845 else
1846 ret = -ESRCH;
1847
1848 kfree(ip_addr);
1849
1850 *ipend = end;
1851
1852 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1853 ret, ret ? "failed" : ceph_pr_addr(ss));
1854
1855 return ret;
1856}
1857#else
1858static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1859 struct sockaddr_storage *ss, char delim, const char **ipend)
1860{
1861 return -EINVAL;
1862}
1863#endif
1864
1865/*
1866 * Parse a server name (IP or hostname). If a valid IP address is not found
1867 * then try to extract a hostname to resolve using userspace DNS upcall.
1868 */
1869static int ceph_parse_server_name(const char *name, size_t namelen,
1870 struct sockaddr_storage *ss, char delim, const char **ipend)
1871{
1872 int ret;
1873
1874 ret = ceph_pton(name, namelen, ss, delim, ipend);
1875 if (ret)
1876 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1877
1878 return ret;
1879}
1880
1881/*
Sage Weil31b80062009-10-06 11:31:13 -07001882 * Parse an ip[:port] list into an addr array. Use the default
1883 * monitor port if a port isn't specified.
1884 */
1885int ceph_parse_ips(const char *c, const char *end,
1886 struct ceph_entity_addr *addr,
1887 int max_count, int *count)
1888{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001889 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001890 const char *p = c;
1891
1892 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1893 for (i = 0; i < max_count; i++) {
1894 const char *ipend;
1895 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001896 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001897 char delim = ',';
1898
1899 if (*p == '[') {
1900 delim = ']';
1901 p++;
1902 }
Sage Weil31b80062009-10-06 11:31:13 -07001903
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001904 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1905 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001906 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001907 ret = -EINVAL;
1908
Sage Weil31b80062009-10-06 11:31:13 -07001909 p = ipend;
1910
Sage Weil39139f62010-07-08 09:54:52 -07001911 if (delim == ']') {
1912 if (*p != ']') {
1913 dout("missing matching ']'\n");
1914 goto bad;
1915 }
1916 p++;
1917 }
1918
Sage Weil31b80062009-10-06 11:31:13 -07001919 /* port? */
1920 if (p < end && *p == ':') {
1921 port = 0;
1922 p++;
1923 while (p < end && *p >= '0' && *p <= '9') {
1924 port = (port * 10) + (*p - '0');
1925 p++;
1926 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02001927 if (port == 0)
1928 port = CEPH_MON_PORT;
1929 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07001930 goto bad;
1931 } else {
1932 port = CEPH_MON_PORT;
1933 }
1934
1935 addr_set_port(ss, port);
1936
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001937 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001938
1939 if (p == end)
1940 break;
1941 if (*p != ',')
1942 goto bad;
1943 p++;
1944 }
1945
1946 if (p != end)
1947 goto bad;
1948
1949 if (count)
1950 *count = i + 1;
1951 return 0;
1952
1953bad:
Sage Weil39139f62010-07-08 09:54:52 -07001954 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001955 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001956}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001957EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001958
Sage Weileed0ef22009-11-10 14:34:36 -08001959static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001960{
Sage Weileed0ef22009-11-10 14:34:36 -08001961 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001962
1963 if (verify_hello(con) < 0)
1964 return -1;
1965
Sage Weil63f2d212009-11-03 15:17:56 -08001966 ceph_decode_addr(&con->actual_peer_addr);
1967 ceph_decode_addr(&con->peer_addr_for_me);
1968
Sage Weil31b80062009-10-06 11:31:13 -07001969 /*
1970 * Make sure the other end is who we wanted. note that the other
1971 * end may not yet know their ip address, so if it's 0.0.0.0, give
1972 * them the benefit of the doubt.
1973 */
Sage Weil103e2d32010-01-07 16:12:36 -08001974 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1975 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001976 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1977 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001978 pr_warn("wrong peer, want %s/%d, got %s/%d\n",
1979 ceph_pr_addr(&con->peer_addr.in_addr),
1980 (int)le32_to_cpu(con->peer_addr.nonce),
1981 ceph_pr_addr(&con->actual_peer_addr.in_addr),
1982 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001983 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001984 return -1;
1985 }
1986
1987 /*
1988 * did we learn our address?
1989 */
1990 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1991 int port = addr_port(&con->msgr->inst.addr.in_addr);
1992
1993 memcpy(&con->msgr->inst.addr.in_addr,
1994 &con->peer_addr_for_me.in_addr,
1995 sizeof(con->peer_addr_for_me.in_addr));
1996 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001997 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001998 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001999 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002000 }
2001
Sage Weileed0ef22009-11-10 14:34:36 -08002002 return 0;
2003}
2004
2005static int process_connect(struct ceph_connection *con)
2006{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002007 u64 sup_feat = con->msgr->supported_features;
2008 u64 req_feat = con->msgr->required_features;
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +02002009 u64 server_feat = ceph_sanitize_features(
2010 le64_to_cpu(con->in_reply.features));
Sage Weil0da5d702011-05-19 11:21:05 -07002011 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08002012
Sage Weileed0ef22009-11-10 14:34:36 -08002013 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
2014
Sage Weil31b80062009-10-06 11:31:13 -07002015 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08002016 case CEPH_MSGR_TAG_FEATURES:
2017 pr_err("%s%lld %s feature set mismatch,"
2018 " my %llx < server's %llx, missing %llx\n",
2019 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002020 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002021 sup_feat, server_feat, server_feat & ~sup_feat);
2022 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002023 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002024 return -1;
2025
Sage Weil31b80062009-10-06 11:31:13 -07002026 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07002027 pr_err("%s%lld %s protocol version mismatch,"
2028 " my %d != server's %d\n",
2029 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002030 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07002031 le32_to_cpu(con->out_connect.protocol_version),
2032 le32_to_cpu(con->in_reply.protocol_version));
2033 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002034 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07002035 return -1;
2036
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002037 case CEPH_MSGR_TAG_BADAUTHORIZER:
2038 con->auth_retry++;
2039 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2040 con->auth_retry);
2041 if (con->auth_retry == 2) {
2042 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002043 return -1;
2044 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002045 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002046 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002047 if (ret < 0)
2048 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002049 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002050 break;
Sage Weil31b80062009-10-06 11:31:13 -07002051
2052 case CEPH_MSGR_TAG_RESETSESSION:
2053 /*
2054 * If we connected with a large connect_seq but the peer
2055 * has no record of a session with us (no connection, or
2056 * connect_seq == 0), they will send RESETSESION to indicate
2057 * that they must have reset their session, and may have
2058 * dropped messages.
2059 */
2060 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002061 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002062 pr_err("%s%lld %s connection reset\n",
2063 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002064 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002065 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002066 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002067 ret = prepare_write_connect(con);
2068 if (ret < 0)
2069 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002070 prepare_read_connect(con);
2071
2072 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002073 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002074 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2075 if (con->ops->peer_reset)
2076 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002077 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002078 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002079 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002080 break;
2081
2082 case CEPH_MSGR_TAG_RETRY_SESSION:
2083 /*
2084 * If we sent a smaller connect_seq than the peer has, try
2085 * again with a larger value.
2086 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002087 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002088 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002089 le32_to_cpu(con->in_reply.connect_seq));
2090 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002091 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002092 ret = prepare_write_connect(con);
2093 if (ret < 0)
2094 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002095 prepare_read_connect(con);
2096 break;
2097
2098 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2099 /*
2100 * If we sent a smaller global_seq than the peer has, try
2101 * again with a larger value.
2102 */
Sage Weileed0ef22009-11-10 14:34:36 -08002103 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002104 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002105 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002106 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002107 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002108 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002109 ret = prepare_write_connect(con);
2110 if (ret < 0)
2111 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002112 prepare_read_connect(con);
2113 break;
2114
Sage Weil3a230832013-03-25 08:47:40 -07002115 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002116 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002117 if (req_feat & ~server_feat) {
2118 pr_err("%s%lld %s protocol feature mismatch,"
2119 " my required %llx > server's %llx, need %llx\n",
2120 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002121 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002122 req_feat, server_feat, req_feat & ~server_feat);
2123 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002124 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002125 return -1;
2126 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002127
Alex Elder122070a2012-12-26 10:43:57 -06002128 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002129 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002130 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002131 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2132 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002133 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002134 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2135 con->peer_global_seq,
2136 le32_to_cpu(con->in_reply.connect_seq),
2137 con->connect_seq);
2138 WARN_ON(con->connect_seq !=
2139 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002140
2141 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002142 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002143
Sage Weil85effe12012-07-30 16:22:05 -07002144 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002145
Sage Weil3a230832013-03-25 08:47:40 -07002146 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2147 prepare_write_seq(con);
2148 prepare_read_seq(con);
2149 } else {
2150 prepare_read_tag(con);
2151 }
Sage Weil31b80062009-10-06 11:31:13 -07002152 break;
2153
2154 case CEPH_MSGR_TAG_WAIT:
2155 /*
2156 * If there is a connection race (we are opening
2157 * connections to each other), one of us may just have
2158 * to WAIT. This shouldn't happen if we are the
2159 * client.
2160 */
Sage Weil04177882011-05-12 15:33:17 -07002161 con->error_msg = "protocol error, got WAIT as client";
2162 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002163
2164 default:
Sage Weil31b80062009-10-06 11:31:13 -07002165 con->error_msg = "protocol error, garbage tag during connect";
2166 return -1;
2167 }
2168 return 0;
2169}
2170
2171
2172/*
2173 * read (part of) an ack
2174 */
2175static int read_partial_ack(struct ceph_connection *con)
2176{
Alex Elderfd516532012-05-10 10:29:50 -05002177 int size = sizeof (con->in_temp_ack);
2178 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002179
Alex Elderfd516532012-05-10 10:29:50 -05002180 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002181}
2182
Sage Weil31b80062009-10-06 11:31:13 -07002183/*
2184 * We can finally discard anything that's been acked.
2185 */
2186static void process_ack(struct ceph_connection *con)
2187{
2188 struct ceph_msg *m;
2189 u64 ack = le64_to_cpu(con->in_temp_ack);
2190 u64 seq;
2191
Sage Weil31b80062009-10-06 11:31:13 -07002192 while (!list_empty(&con->out_sent)) {
2193 m = list_first_entry(&con->out_sent, struct ceph_msg,
2194 list_head);
2195 seq = le64_to_cpu(m->hdr.seq);
2196 if (seq > ack)
2197 break;
2198 dout("got ack for seq %llu type %d at %p\n", seq,
2199 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002200 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002201 ceph_msg_remove(m);
2202 }
Sage Weil31b80062009-10-06 11:31:13 -07002203 prepare_read_tag(con);
2204}
2205
2206
Yehuda Sadeh24504182010-01-08 13:58:34 -08002207static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002208 struct kvec *section,
2209 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002210{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002211 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002212
Yehuda Sadeh24504182010-01-08 13:58:34 -08002213 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002214
Yehuda Sadeh24504182010-01-08 13:58:34 -08002215 while (section->iov_len < sec_len) {
2216 BUG_ON(section->iov_base == NULL);
2217 left = sec_len - section->iov_len;
2218 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2219 section->iov_len, left);
2220 if (ret <= 0)
2221 return ret;
2222 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002223 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002224 if (section->iov_len == sec_len)
2225 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002226
2227 return 1;
2228}
2229
Alex Elder34d2d202013-03-08 20:58:59 -06002230static int read_partial_msg_data(struct ceph_connection *con)
2231{
2232 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002233 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder34d2d202013-03-08 20:58:59 -06002234 const bool do_datacrc = !con->msgr->nocrc;
Alex Elder686be202013-03-11 23:34:23 -05002235 struct page *page;
2236 size_t page_offset;
2237 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002238 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002239 int ret;
2240
2241 BUG_ON(!msg);
Alex Elder5240d9f2013-03-14 14:09:06 -05002242 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05002243 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002244
Alex Elderf5db90b2013-03-11 23:34:23 -05002245 if (do_datacrc)
2246 crc = con->in_data_crc;
Alex Elder643c68a2013-03-11 23:34:23 -05002247 while (cursor->resid) {
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002248 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05002249 NULL);
Alex Elder686be202013-03-11 23:34:23 -05002250 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002251 if (ret <= 0) {
2252 if (do_datacrc)
2253 con->in_data_crc = crc;
2254
Alex Elder686be202013-03-11 23:34:23 -05002255 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002256 }
Alex Elder686be202013-03-11 23:34:23 -05002257
2258 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002259 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002260 (void) ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002261 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002262 if (do_datacrc)
2263 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002264
2265 return 1; /* must return > 0 to indicate success */
2266}
2267
Sage Weil31b80062009-10-06 11:31:13 -07002268/*
2269 * read (part of) a message.
2270 */
Alex Elder686be202013-03-11 23:34:23 -05002271static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2272
Sage Weil31b80062009-10-06 11:31:13 -07002273static int read_partial_message(struct ceph_connection *con)
2274{
2275 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002276 int size;
2277 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002278 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002279 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002280 bool do_datacrc = !con->msgr->nocrc;
Yan, Zheng33d07332014-11-04 16:33:37 +08002281 bool need_sign = (con->peer_features & CEPH_FEATURE_MSG_AUTH);
Sage Weilae187562010-04-22 07:47:01 -07002282 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002283 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002284
2285 dout("read_partial_message con %p msg %p\n", con, m);
2286
2287 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002288 size = sizeof (con->in_hdr);
2289 end = size;
2290 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002291 if (ret <= 0)
2292 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002293
2294 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2295 if (cpu_to_le32(crc) != con->in_hdr.crc) {
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002296 pr_err("read_partial_message bad hdr crc %u != expected %u\n",
Alex Elderfe3ad592012-02-15 07:43:54 -06002297 crc, con->in_hdr.crc);
2298 return -EBADMSG;
2299 }
2300
Sage Weil31b80062009-10-06 11:31:13 -07002301 front_len = le32_to_cpu(con->in_hdr.front_len);
2302 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2303 return -EIO;
2304 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002305 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002306 return -EIO;
2307 data_len = le32_to_cpu(con->in_hdr.data_len);
2308 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2309 return -EIO;
2310
Sage Weilae187562010-04-22 07:47:01 -07002311 /* verify seq# */
2312 seq = le64_to_cpu(con->in_hdr.seq);
2313 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002314 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002315 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002316 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002317 seq, con->in_seq + 1);
2318 con->in_base_pos = -front_len - middle_len - data_len -
2319 sizeof(m->footer);
2320 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002321 return 0;
2322 } else if ((s64)seq - (s64)con->in_seq > 1) {
2323 pr_err("read_partial_message bad seq %lld expected %lld\n",
2324 seq, con->in_seq + 1);
2325 con->error_msg = "bad message sequence # for incoming message";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002326 return -EBADE;
Sage Weilae187562010-04-22 07:47:01 -07002327 }
2328
Sage Weil31b80062009-10-06 11:31:13 -07002329 /* allocate message? */
2330 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002331 int skip = 0;
2332
Sage Weil31b80062009-10-06 11:31:13 -07002333 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002334 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002335 ret = ceph_con_in_msg_alloc(con, &skip);
2336 if (ret < 0)
2337 return ret;
Alex Elderf759ebb2013-04-05 14:46:01 -05002338
2339 BUG_ON(!con->in_msg ^ skip);
2340 if (con->in_msg && data_len > con->in_msg->data_length) {
Joe Perchesb9a67892014-09-09 21:17:29 -07002341 pr_warn("%s skipping long message (%u > %zd)\n",
Alex Elderf759ebb2013-04-05 14:46:01 -05002342 __func__, data_len, con->in_msg->data_length);
2343 ceph_msg_put(con->in_msg);
2344 con->in_msg = NULL;
2345 skip = 1;
2346 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08002347 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002348 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002349 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002350 con->in_base_pos = -front_len - middle_len - data_len -
2351 sizeof(m->footer);
2352 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002353 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002354 return 0;
2355 }
Alex Elder38941f82012-06-01 14:56:43 -05002356
Sage Weil4740a622012-07-30 18:19:30 -07002357 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002358 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002359 m = con->in_msg;
2360 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002361 if (m->middle)
2362 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002363
Alex Elder78625052013-03-06 23:39:39 -06002364 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002365
Alex Elder78625052013-03-06 23:39:39 -06002366 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002367 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002368 }
2369
2370 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002371 ret = read_partial_message_section(con, &m->front, front_len,
2372 &con->in_front_crc);
2373 if (ret <= 0)
2374 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002375
2376 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002377 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002378 ret = read_partial_message_section(con, &m->middle->vec,
2379 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002380 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002381 if (ret <= 0)
2382 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002383 }
2384
2385 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002386 if (data_len) {
2387 ret = read_partial_msg_data(con);
2388 if (ret <= 0)
2389 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002390 }
2391
Sage Weil31b80062009-10-06 11:31:13 -07002392 /* footer */
Yan, Zheng33d07332014-11-04 16:33:37 +08002393 if (need_sign)
2394 size = sizeof(m->footer);
2395 else
2396 size = sizeof(m->old_footer);
2397
Alex Elderfd516532012-05-10 10:29:50 -05002398 end += size;
2399 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002400 if (ret <= 0)
2401 return ret;
2402
Yan, Zheng33d07332014-11-04 16:33:37 +08002403 if (!need_sign) {
2404 m->footer.flags = m->old_footer.flags;
2405 m->footer.sig = 0;
2406 }
2407
Sage Weil31b80062009-10-06 11:31:13 -07002408 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2409 m, front_len, m->footer.front_crc, middle_len,
2410 m->footer.middle_crc, data_len, m->footer.data_crc);
2411
2412 /* crc ok? */
2413 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2414 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2415 m, con->in_front_crc, m->footer.front_crc);
2416 return -EBADMSG;
2417 }
2418 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2419 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2420 m, con->in_middle_crc, m->footer.middle_crc);
2421 return -EBADMSG;
2422 }
Alex Elderbca064d2012-02-15 07:43:54 -06002423 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002424 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2425 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2426 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2427 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2428 return -EBADMSG;
2429 }
2430
Yan, Zheng33d07332014-11-04 16:33:37 +08002431 if (need_sign && con->ops->check_message_signature &&
2432 con->ops->check_message_signature(con, m)) {
2433 pr_err("read_partial_message %p signature check failed\n", m);
2434 return -EBADMSG;
2435 }
2436
Sage Weil31b80062009-10-06 11:31:13 -07002437 return 1; /* done! */
2438}
2439
2440/*
2441 * Process message. This happens in the worker thread. The callback should
2442 * be careful not to do anything that waits on other incoming messages or it
2443 * may deadlock.
2444 */
2445static void process_message(struct ceph_connection *con)
2446{
Sage Weil5e095e82009-12-14 14:30:34 -08002447 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002448
Alex Elder38941f82012-06-01 14:56:43 -05002449 BUG_ON(con->in_msg->con != con);
2450 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002451 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002452 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002453 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002454
2455 /* if first message, set peer_name */
2456 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002457 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002458
Sage Weil31b80062009-10-06 11:31:13 -07002459 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002460 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002461
2462 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2463 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002464 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002465 le16_to_cpu(msg->hdr.type),
2466 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2467 le32_to_cpu(msg->hdr.front_len),
2468 le32_to_cpu(msg->hdr.data_len),
2469 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2470 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002471
2472 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002473}
2474
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002475static int read_keepalive_ack(struct ceph_connection *con)
2476{
2477 struct ceph_timespec ceph_ts;
2478 size_t size = sizeof(ceph_ts);
2479 int ret = read_partial(con, size, size, &ceph_ts);
2480 if (ret <= 0)
2481 return ret;
2482 ceph_decode_timespec(&con->last_keepalive_ack, &ceph_ts);
2483 prepare_read_tag(con);
2484 return 1;
2485}
Sage Weil31b80062009-10-06 11:31:13 -07002486
2487/*
2488 * Write something to the socket. Called in a worker thread when the
2489 * socket appears to be writeable and we have something ready to send.
2490 */
2491static int try_write(struct ceph_connection *con)
2492{
Sage Weil31b80062009-10-06 11:31:13 -07002493 int ret = 1;
2494
Sage Weild59315c2012-06-21 12:49:23 -07002495 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002496
Sage Weil31b80062009-10-06 11:31:13 -07002497more:
2498 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2499
2500 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002501 if (con->state == CON_STATE_PREOPEN) {
2502 BUG_ON(con->sock);
2503 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002504
Alex Eldere2200422012-05-23 14:35:23 -05002505 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002506 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002507 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002508
Sage Weilcf3e5c42009-12-11 09:48:05 -08002509 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002510 con->in_tag = CEPH_MSGR_TAG_READY;
2511 dout("try_write initiating connect on %p new state %lu\n",
2512 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002513 ret = ceph_tcp_connect(con);
2514 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002515 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002516 goto out;
2517 }
2518 }
2519
2520more_kvec:
2521 /* kvec data queued? */
2522 if (con->out_skip) {
2523 ret = write_partial_skip(con);
2524 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002525 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002526 }
2527 if (con->out_kvec_left) {
2528 ret = write_partial_kvec(con);
2529 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002530 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002531 }
2532
2533 /* msg pages? */
2534 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002535 if (con->out_msg_done) {
2536 ceph_msg_put(con->out_msg);
2537 con->out_msg = NULL; /* we're done with this one */
2538 goto do_next;
2539 }
2540
Alex Elder34d2d202013-03-08 20:58:59 -06002541 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002542 if (ret == 1)
2543 goto more_kvec; /* we need to send the footer, too! */
2544 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002545 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002546 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002547 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002548 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002549 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002550 }
2551 }
2552
Sage Weilc86a2932009-12-14 14:04:30 -08002553do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002554 if (con->state == CON_STATE_OPEN) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002555 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
2556 prepare_write_keepalive(con);
2557 goto more;
2558 }
Sage Weil31b80062009-10-06 11:31:13 -07002559 /* is anything else pending? */
2560 if (!list_empty(&con->out_queue)) {
2561 prepare_write_message(con);
2562 goto more;
2563 }
2564 if (con->in_seq > con->in_seq_acked) {
2565 prepare_write_ack(con);
2566 goto more;
2567 }
Sage Weil31b80062009-10-06 11:31:13 -07002568 }
2569
2570 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002571 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002572 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002573 ret = 0;
2574out:
Sage Weil42961d22011-01-25 08:19:34 -08002575 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002576 return ret;
2577}
2578
2579
2580
2581/*
2582 * Read what we can from the socket.
2583 */
2584static int try_read(struct ceph_connection *con)
2585{
Sage Weil31b80062009-10-06 11:31:13 -07002586 int ret = -1;
2587
Sage Weil31b80062009-10-06 11:31:13 -07002588more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002589 dout("try_read start on %p state %lu\n", con, con->state);
2590 if (con->state != CON_STATE_CONNECTING &&
2591 con->state != CON_STATE_NEGOTIATING &&
2592 con->state != CON_STATE_OPEN)
2593 return 0;
2594
2595 BUG_ON(!con->sock);
2596
Sage Weil31b80062009-10-06 11:31:13 -07002597 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2598 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002599
Sage Weil8dacc7d2012-07-20 17:24:40 -07002600 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002601 dout("try_read connecting\n");
2602 ret = read_partial_banner(con);
2603 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002604 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002605 ret = process_banner(con);
2606 if (ret < 0)
2607 goto out;
2608
Sage Weil8dacc7d2012-07-20 17:24:40 -07002609 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002610
Jim Schutt6d4221b2012-08-10 10:37:38 -07002611 /*
2612 * Received banner is good, exchange connection info.
2613 * Do not reset out_kvec, as sending our banner raced
2614 * with receiving peer banner after connect completed.
2615 */
Alex Elder7593af92012-05-24 11:55:03 -05002616 ret = prepare_write_connect(con);
2617 if (ret < 0)
2618 goto out;
2619 prepare_read_connect(con);
2620
2621 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002622 goto out;
2623 }
2624
Sage Weil8dacc7d2012-07-20 17:24:40 -07002625 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002626 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002627 ret = read_partial_connect(con);
2628 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002629 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002630 ret = process_connect(con);
2631 if (ret < 0)
2632 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002633 goto more;
2634 }
2635
Alex Elder122070a2012-12-26 10:43:57 -06002636 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002637
Sage Weil31b80062009-10-06 11:31:13 -07002638 if (con->in_base_pos < 0) {
2639 /*
2640 * skipping + discarding content.
2641 *
2642 * FIXME: there must be a better way to do this!
2643 */
Alex Elder84495f42012-02-15 07:43:55 -06002644 static char buf[SKIP_BUF_SIZE];
2645 int skip = min((int) sizeof (buf), -con->in_base_pos);
2646
Sage Weil31b80062009-10-06 11:31:13 -07002647 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2648 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2649 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002650 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002651 con->in_base_pos += ret;
2652 if (con->in_base_pos)
2653 goto more;
2654 }
2655 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2656 /*
2657 * what's next?
2658 */
2659 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2660 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002661 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002662 dout("try_read got tag %d\n", (int)con->in_tag);
2663 switch (con->in_tag) {
2664 case CEPH_MSGR_TAG_MSG:
2665 prepare_read_message(con);
2666 break;
2667 case CEPH_MSGR_TAG_ACK:
2668 prepare_read_ack(con);
2669 break;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002670 case CEPH_MSGR_TAG_KEEPALIVE2_ACK:
2671 prepare_read_keepalive_ack(con);
2672 break;
Sage Weil31b80062009-10-06 11:31:13 -07002673 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002674 con_close_socket(con);
2675 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002676 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002677 default:
2678 goto bad_tag;
2679 }
2680 }
2681 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2682 ret = read_partial_message(con);
2683 if (ret <= 0) {
2684 switch (ret) {
2685 case -EBADMSG:
2686 con->error_msg = "bad crc";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002687 /* fall through */
2688 case -EBADE:
Sage Weil31b80062009-10-06 11:31:13 -07002689 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002690 break;
Sage Weil31b80062009-10-06 11:31:13 -07002691 case -EIO:
2692 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002693 break;
Sage Weil31b80062009-10-06 11:31:13 -07002694 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002695 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002696 }
2697 if (con->in_tag == CEPH_MSGR_TAG_READY)
2698 goto more;
2699 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002700 if (con->state == CON_STATE_OPEN)
2701 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002702 goto more;
2703 }
Sage Weil3a230832013-03-25 08:47:40 -07002704 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2705 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2706 /*
2707 * the final handshake seq exchange is semantically
2708 * equivalent to an ACK
2709 */
Sage Weil31b80062009-10-06 11:31:13 -07002710 ret = read_partial_ack(con);
2711 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002712 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002713 process_ack(con);
2714 goto more;
2715 }
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002716 if (con->in_tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) {
2717 ret = read_keepalive_ack(con);
2718 if (ret <= 0)
2719 goto out;
2720 goto more;
2721 }
Sage Weil31b80062009-10-06 11:31:13 -07002722
Sage Weil31b80062009-10-06 11:31:13 -07002723out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002724 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002725 return ret;
2726
2727bad_tag:
2728 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2729 con->error_msg = "protocol error, garbage tag";
2730 ret = -1;
2731 goto out;
2732}
2733
2734
2735/*
Alex Elder802c6d92012-10-08 20:37:30 -07002736 * Atomically queue work on a connection after the specified delay.
2737 * Bump @con reference to avoid races with connection teardown.
2738 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002739 */
Alex Elder802c6d92012-10-08 20:37:30 -07002740static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002741{
Sage Weil31b80062009-10-06 11:31:13 -07002742 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002743 dout("%s %p ref count 0\n", __func__, con);
Alex Elder802c6d92012-10-08 20:37:30 -07002744 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002745 }
2746
Alex Elder802c6d92012-10-08 20:37:30 -07002747 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2748 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002749 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002750 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002751 }
Alex Elder802c6d92012-10-08 20:37:30 -07002752
2753 dout("%s %p %lu\n", __func__, con, delay);
Alex Elder802c6d92012-10-08 20:37:30 -07002754 return 0;
2755}
2756
2757static void queue_con(struct ceph_connection *con)
2758{
2759 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002760}
2761
Ilya Dryomov37ab77a2014-06-24 16:21:45 +04002762static void cancel_con(struct ceph_connection *con)
2763{
2764 if (cancel_delayed_work(&con->work)) {
2765 dout("%s %p\n", __func__, con);
2766 con->ops->put(con);
2767 }
2768}
2769
Alex Elder7bb21d682012-12-07 19:50:07 -06002770static bool con_sock_closed(struct ceph_connection *con)
2771{
Alex Elderc9ffc772013-02-20 10:25:12 -06002772 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002773 return false;
2774
2775#define CASE(x) \
2776 case CON_STATE_ ## x: \
2777 con->error_msg = "socket closed (con state " #x ")"; \
2778 break;
2779
2780 switch (con->state) {
2781 CASE(CLOSED);
2782 CASE(PREOPEN);
2783 CASE(CONNECTING);
2784 CASE(NEGOTIATING);
2785 CASE(OPEN);
2786 CASE(STANDBY);
2787 default:
Joe Perchesb9a67892014-09-09 21:17:29 -07002788 pr_warn("%s con %p unrecognized state %lu\n",
Alex Elder7bb21d682012-12-07 19:50:07 -06002789 __func__, con, con->state);
2790 con->error_msg = "unrecognized con state";
2791 BUG();
2792 break;
2793 }
2794#undef CASE
2795
2796 return true;
2797}
2798
Alex Elderf20a39f2013-02-19 12:25:57 -06002799static bool con_backoff(struct ceph_connection *con)
2800{
2801 int ret;
2802
2803 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2804 return false;
2805
2806 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2807 if (ret) {
2808 dout("%s: con %p FAILED to back off %lu\n", __func__,
2809 con, con->delay);
2810 BUG_ON(ret == -ENOENT);
2811 con_flag_set(con, CON_FLAG_BACKOFF);
2812 }
2813
2814 return true;
2815}
2816
Alex Elder93209262013-02-19 12:25:57 -06002817/* Finish fault handling; con->mutex must *not* be held here */
2818
2819static void con_fault_finish(struct ceph_connection *con)
2820{
2821 /*
2822 * in case we faulted due to authentication, invalidate our
2823 * current tickets so that we can get new ones.
2824 */
2825 if (con->auth_retry && con->ops->invalidate_authorizer) {
2826 dout("calling invalidate_authorizer()\n");
2827 con->ops->invalidate_authorizer(con);
2828 }
2829
2830 if (con->ops->fault)
2831 con->ops->fault(con);
2832}
2833
Sage Weil31b80062009-10-06 11:31:13 -07002834/*
2835 * Do some work on a connection. Drop a connection ref when we're done.
2836 */
Ilya Dryomov68931622015-07-03 15:44:41 +03002837static void ceph_con_workfn(struct work_struct *work)
Sage Weil31b80062009-10-06 11:31:13 -07002838{
2839 struct ceph_connection *con = container_of(work, struct ceph_connection,
2840 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002841 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002842
Sage Weil9dd46582010-04-28 13:51:50 -07002843 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002844 while (true) {
2845 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002846
Alex Elder49659412013-02-19 12:25:57 -06002847 if ((fault = con_sock_closed(con))) {
2848 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2849 break;
2850 }
2851 if (con_backoff(con)) {
2852 dout("%s: con %p BACKOFF\n", __func__, con);
2853 break;
2854 }
2855 if (con->state == CON_STATE_STANDBY) {
2856 dout("%s: con %p STANDBY\n", __func__, con);
2857 break;
2858 }
2859 if (con->state == CON_STATE_CLOSED) {
2860 dout("%s: con %p CLOSED\n", __func__, con);
2861 BUG_ON(con->sock);
2862 break;
2863 }
2864 if (con->state == CON_STATE_PREOPEN) {
2865 dout("%s: con %p PREOPEN\n", __func__, con);
2866 BUG_ON(con->sock);
2867 }
Sage Weil0da5d702011-05-19 11:21:05 -07002868
Alex Elder49659412013-02-19 12:25:57 -06002869 ret = try_read(con);
2870 if (ret < 0) {
2871 if (ret == -EAGAIN)
2872 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002873 if (!con->error_msg)
2874 con->error_msg = "socket error on read";
Alex Elder49659412013-02-19 12:25:57 -06002875 fault = true;
2876 break;
2877 }
2878
2879 ret = try_write(con);
2880 if (ret < 0) {
2881 if (ret == -EAGAIN)
2882 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002883 if (!con->error_msg)
2884 con->error_msg = "socket error on write";
Alex Elder49659412013-02-19 12:25:57 -06002885 fault = true;
2886 }
2887
2888 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002889 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002890 if (fault)
2891 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002892 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002893
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002894 if (fault)
2895 con_fault_finish(con);
2896
2897 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002898}
2899
Sage Weil31b80062009-10-06 11:31:13 -07002900/*
2901 * Generic error/fault handler. A retry mechanism is used with
2902 * exponential backoff
2903 */
Alex Elder93209262013-02-19 12:25:57 -06002904static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002905{
Sage Weil31b80062009-10-06 11:31:13 -07002906 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002907 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002908
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002909 pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
2910 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
2911 con->error_msg = NULL;
2912
Alex Elder122070a2012-12-26 10:43:57 -06002913 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002914 con->state != CON_STATE_NEGOTIATING &&
2915 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002916
Sage Weil31b80062009-10-06 11:31:13 -07002917 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002918
Alex Elderc9ffc772013-02-20 10:25:12 -06002919 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002920 dout("fault on LOSSYTX channel, marking CLOSED\n");
2921 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002922 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002923 }
2924
Sage Weil5e095e82009-12-14 14:30:34 -08002925 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002926 BUG_ON(con->in_msg->con != con);
2927 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002928 ceph_msg_put(con->in_msg);
2929 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002930 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002931 }
Sage Weil31b80062009-10-06 11:31:13 -07002932
Sage Weile80a52d2010-02-25 12:40:45 -08002933 /* Requeue anything that hasn't been acked */
2934 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002935
Sage Weile76661d2011-03-03 10:10:15 -08002936 /* If there are no messages queued or keepalive pending, place
2937 * the connection in a STANDBY state */
2938 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002939 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002940 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002941 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002942 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002943 } else {
2944 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002945 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002946 if (con->delay == 0)
2947 con->delay = BASE_DELAY_INTERVAL;
2948 else if (con->delay < MAX_DELAY_INTERVAL)
2949 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002950 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002951 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002952 }
Sage Weil31b80062009-10-06 11:31:13 -07002953}
2954
2955
2956
2957/*
Alex Elder15d98822012-05-26 23:26:43 -05002958 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002959 */
Alex Elder15d98822012-05-26 23:26:43 -05002960void ceph_messenger_init(struct ceph_messenger *msgr,
2961 struct ceph_entity_addr *myaddr,
Ilya Dryomov12b46292013-12-24 21:19:23 +02002962 u64 supported_features,
2963 u64 required_features,
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302964 bool nocrc,
2965 bool tcp_nodelay)
Sage Weil31b80062009-10-06 11:31:13 -07002966{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002967 msgr->supported_features = supported_features;
2968 msgr->required_features = required_features;
2969
Sage Weil31b80062009-10-06 11:31:13 -07002970 spin_lock_init(&msgr->global_seq_lock);
2971
Sage Weil31b80062009-10-06 11:31:13 -07002972 if (myaddr)
2973 msgr->inst.addr = *myaddr;
2974
2975 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002976 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002977 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002978 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002979 msgr->nocrc = nocrc;
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302980 msgr->tcp_nodelay = tcp_nodelay;
Sage Weil31b80062009-10-06 11:31:13 -07002981
Guanjun Hea2a32582012-07-08 19:50:33 -07002982 atomic_set(&msgr->stopping, 0);
Ilya Dryomov757856d2015-06-25 17:47:45 +03002983 write_pnet(&msgr->net, get_net(current->nsproxy->net_ns));
Sage Weil31b80062009-10-06 11:31:13 -07002984
Alex Elder15d98822012-05-26 23:26:43 -05002985 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002986}
Alex Elder15d98822012-05-26 23:26:43 -05002987EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002988
Ilya Dryomov757856d2015-06-25 17:47:45 +03002989void ceph_messenger_fini(struct ceph_messenger *msgr)
2990{
2991 put_net(read_pnet(&msgr->net));
2992}
2993EXPORT_SYMBOL(ceph_messenger_fini);
2994
Sage Weile00de342011-03-04 12:25:05 -08002995static void clear_standby(struct ceph_connection *con)
2996{
2997 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002998 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002999 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07003000 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08003001 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06003002 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
3003 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08003004 }
3005}
3006
Sage Weil31b80062009-10-06 11:31:13 -07003007/*
3008 * Queue up an outgoing message on the given connection.
3009 */
3010void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
3011{
Sage Weila59b55a2012-07-20 15:34:04 -07003012 /* set src+dst */
3013 msg->hdr.src = con->msgr->inst.name;
3014 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
3015 msg->needs_out_seq = true;
3016
3017 mutex_lock(&con->mutex);
3018
Sage Weil8dacc7d2012-07-20 17:24:40 -07003019 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07003020 dout("con_send %p closed, dropping %p\n", con, msg);
3021 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07003022 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003023 return;
3024 }
3025
Alex Elder38941f82012-06-01 14:56:43 -05003026 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003027 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003028 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07003029
Sage Weil31b80062009-10-06 11:31:13 -07003030 BUG_ON(!list_empty(&msg->list_head));
3031 list_add_tail(&msg->list_head, &con->out_queue);
3032 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
3033 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
3034 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
3035 le32_to_cpu(msg->hdr.front_len),
3036 le32_to_cpu(msg->hdr.middle_len),
3037 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07003038
3039 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08003040 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003041
3042 /* if there wasn't anything waiting to send before, queue
3043 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06003044 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003045 queue_con(con);
3046}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003047EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07003048
3049/*
3050 * Revoke a message that was previously queued for send
3051 */
Alex Elder6740a842012-06-01 14:56:43 -05003052void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003053{
Alex Elder6740a842012-06-01 14:56:43 -05003054 struct ceph_connection *con = msg->con;
3055
3056 if (!con)
3057 return; /* Message not in our possession */
3058
Sage Weilec302642009-12-22 10:43:42 -08003059 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003060 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003061 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003062 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05003063 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003064 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05003065 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003066 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003067
Sage Weil31b80062009-10-06 11:31:13 -07003068 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003069 }
3070 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05003071 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003072 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003073 if (con->out_kvec_is_msg) {
3074 con->out_skip = con->out_kvec_bytes;
3075 con->out_kvec_is_msg = false;
3076 }
Sage Weiled98ada2010-07-05 12:15:14 -07003077 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05003078
3079 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003080 }
Sage Weilec302642009-12-22 10:43:42 -08003081 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003082}
3083
3084/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003085 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003086 */
Alex Elder8921d112012-06-01 14:56:43 -05003087void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003088{
Alex Elder8921d112012-06-01 14:56:43 -05003089 struct ceph_connection *con;
3090
3091 BUG_ON(msg == NULL);
3092 if (!msg->con) {
3093 dout("%s msg %p null con\n", __func__, msg);
3094
3095 return; /* Message not in our possession */
3096 }
3097
3098 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08003099 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003100 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003101 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3102 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3103 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003104
3105 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003106 dout("%s %p msg %p revoked\n", __func__, con, msg);
3107 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003108 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003109 front_len -
3110 middle_len -
3111 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003112 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003113 ceph_msg_put(con->in_msg);
3114 con->in_msg = NULL;
3115 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003116 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003117 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003118 dout("%s %p in_msg %p msg %p no-op\n",
3119 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003120 }
3121 mutex_unlock(&con->mutex);
3122}
3123
3124/*
Sage Weil31b80062009-10-06 11:31:13 -07003125 * Queue a keepalive byte to ensure the tcp connection is alive.
3126 */
3127void ceph_con_keepalive(struct ceph_connection *con)
3128{
Sage Weile00de342011-03-04 12:25:05 -08003129 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003130 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003131 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003132 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003133 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3134 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003135 queue_con(con);
3136}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003137EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003138
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003139bool ceph_con_keepalive_expired(struct ceph_connection *con,
3140 unsigned long interval)
3141{
3142 if (interval > 0 &&
3143 (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2)) {
3144 struct timespec now = CURRENT_TIME;
3145 struct timespec ts;
3146 jiffies_to_timespec(interval, &ts);
3147 ts = timespec_add(con->last_keepalive_ack, ts);
3148 return timespec_compare(&now, &ts) >= 0;
3149 }
3150 return false;
3151}
3152
Alex Elder6644ed72013-03-11 23:34:24 -05003153static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
Alex Elder43794502013-03-01 18:00:16 -06003154{
Alex Elder6644ed72013-03-11 23:34:24 -05003155 struct ceph_msg_data *data;
3156
3157 if (WARN_ON(!ceph_msg_data_type_valid(type)))
3158 return NULL;
3159
Alex Elder81b36be2013-05-01 12:43:04 -05003160 data = kmem_cache_zalloc(ceph_msg_data_cache, GFP_NOFS);
Alex Elder6644ed72013-03-11 23:34:24 -05003161 if (data)
3162 data->type = type;
Alex Elder5240d9f2013-03-14 14:09:06 -05003163 INIT_LIST_HEAD(&data->links);
Alex Elder6644ed72013-03-11 23:34:24 -05003164
3165 return data;
3166}
3167
3168static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3169{
3170 if (!data)
3171 return;
3172
Alex Elder5240d9f2013-03-14 14:09:06 -05003173 WARN_ON(!list_empty(&data->links));
Yan, Zhenge4339d282014-09-16 17:50:45 +08003174 if (data->type == CEPH_MSG_DATA_PAGELIST)
Alex Elder6644ed72013-03-11 23:34:24 -05003175 ceph_pagelist_release(data->pagelist);
Alex Elder81b36be2013-05-01 12:43:04 -05003176 kmem_cache_free(ceph_msg_data_cache, data);
Alex Elder43794502013-03-01 18:00:16 -06003177}
3178
Alex Elder90af3602013-04-05 14:46:01 -05003179void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003180 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003181{
Alex Elder6644ed72013-03-11 23:34:24 -05003182 struct ceph_msg_data *data;
3183
Alex Elder07aa1552013-03-04 18:29:06 -06003184 BUG_ON(!pages);
3185 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003186
Alex Elder6644ed72013-03-11 23:34:24 -05003187 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
3188 BUG_ON(!data);
3189 data->pages = pages;
3190 data->length = length;
3191 data->alignment = alignment & ~PAGE_MASK;
3192
Alex Elder5240d9f2013-03-14 14:09:06 -05003193 list_add_tail(&data->links, &msg->data);
3194 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003195}
Alex Elder90af3602013-04-05 14:46:01 -05003196EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003197
Alex Elder90af3602013-04-05 14:46:01 -05003198void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003199 struct ceph_pagelist *pagelist)
3200{
Alex Elder6644ed72013-03-11 23:34:24 -05003201 struct ceph_msg_data *data;
3202
Alex Elder07aa1552013-03-04 18:29:06 -06003203 BUG_ON(!pagelist);
3204 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003205
Alex Elder6644ed72013-03-11 23:34:24 -05003206 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3207 BUG_ON(!data);
3208 data->pagelist = pagelist;
3209
Alex Elder5240d9f2013-03-14 14:09:06 -05003210 list_add_tail(&data->links, &msg->data);
3211 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003212}
Alex Elder90af3602013-04-05 14:46:01 -05003213EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003214
Alex Elderea965712013-04-05 14:46:01 -05003215#ifdef CONFIG_BLOCK
Alex Elder90af3602013-04-05 14:46:01 -05003216void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
Alex Eldera1930802013-03-14 14:09:06 -05003217 size_t length)
Alex Elder27fa8382013-02-14 12:16:43 -06003218{
Alex Elder6644ed72013-03-11 23:34:24 -05003219 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003220
Alex Elder6644ed72013-03-11 23:34:24 -05003221 BUG_ON(!bio);
Alex Elder6644ed72013-03-11 23:34:24 -05003222
3223 data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3224 BUG_ON(!data);
3225 data->bio = bio;
Alex Elderc851c492013-04-05 14:46:01 -05003226 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003227
Alex Elder5240d9f2013-03-14 14:09:06 -05003228 list_add_tail(&data->links, &msg->data);
3229 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003230}
Alex Elder90af3602013-04-05 14:46:01 -05003231EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003232#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003233
Sage Weil31b80062009-10-06 11:31:13 -07003234/*
3235 * construct a new message with given type, size
3236 * the new msg has a ref count of 1.
3237 */
Sage Weilb61c2762011-08-09 15:03:46 -07003238struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3239 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003240{
3241 struct ceph_msg *m;
3242
Alex Eldere3d5d632013-05-01 12:43:04 -05003243 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003244 if (m == NULL)
3245 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003246
Sage Weil31b80062009-10-06 11:31:13 -07003247 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003248 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003249 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003250
Alex Elder9516e452013-03-01 18:00:16 -06003251 INIT_LIST_HEAD(&m->list_head);
3252 kref_init(&m->kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003253 INIT_LIST_HEAD(&m->data);
Henry C Changca208922011-05-03 02:29:56 +00003254
Sage Weil31b80062009-10-06 11:31:13 -07003255 /* front */
3256 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003257 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003258 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003259 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003260 front_len);
3261 goto out2;
3262 }
3263 } else {
3264 m->front.iov_base = NULL;
3265 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003266 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003267
Sage Weilbb257662010-04-01 16:07:23 -07003268 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003269 return m;
3270
3271out2:
3272 ceph_msg_put(m);
3273out:
Sage Weilb61c2762011-08-09 15:03:46 -07003274 if (!can_fail) {
3275 pr_err("msg_new can't create type %d front %d\n", type,
3276 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003277 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003278 } else {
3279 dout("msg_new can't create type %d front %d\n", type,
3280 front_len);
3281 }
Sage Weila79832f2010-04-01 16:06:19 -07003282 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003283}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003284EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003285
3286/*
Sage Weil31b80062009-10-06 11:31:13 -07003287 * Allocate "middle" portion of a message, if it is needed and wasn't
3288 * allocated by alloc_msg. This allows us to read a small fixed-size
3289 * per-type header in the front and then gracefully fail (i.e.,
3290 * propagate the error to the caller based on info in the front) when
3291 * the middle is too large.
3292 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003293static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003294{
3295 int type = le16_to_cpu(msg->hdr.type);
3296 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3297
3298 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3299 ceph_msg_type_name(type), middle_len);
3300 BUG_ON(!middle_len);
3301 BUG_ON(msg->middle);
3302
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003303 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003304 if (!msg->middle)
3305 return -ENOMEM;
3306 return 0;
3307}
3308
Yehuda Sadeh24504182010-01-08 13:58:34 -08003309/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003310 * Allocate a message for receiving an incoming message on a
3311 * connection, and save the result in con->in_msg. Uses the
3312 * connection's private alloc_msg op if available.
3313 *
Sage Weil4740a622012-07-30 18:19:30 -07003314 * Returns 0 on success, or a negative error code.
3315 *
3316 * On success, if we set *skip = 1:
3317 * - the next message should be skipped and ignored.
3318 * - con->in_msg == NULL
3319 * or if we set *skip = 0:
3320 * - con->in_msg is non-null.
3321 * On error (ENOMEM, EAGAIN, ...),
3322 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003323 */
Sage Weil4740a622012-07-30 18:19:30 -07003324static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003325{
Sage Weil4740a622012-07-30 18:19:30 -07003326 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003327 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003328 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003329 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003330
Alex Elder1c20f2d2012-06-04 14:43:32 -05003331 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003332 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003333
Alex Elder53ded492013-03-01 18:00:14 -06003334 mutex_unlock(&con->mutex);
3335 msg = con->ops->alloc_msg(con, hdr, skip);
3336 mutex_lock(&con->mutex);
3337 if (con->state != CON_STATE_OPEN) {
3338 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003339 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003340 return -EAGAIN;
3341 }
Alex Elder41375772013-03-05 09:25:10 -06003342 if (msg) {
3343 BUG_ON(*skip);
3344 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003345 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003346 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003347 } else {
3348 /*
3349 * Null message pointer means either we should skip
3350 * this message or we couldn't allocate memory. The
3351 * former is not an error.
3352 */
3353 if (*skip)
3354 return 0;
Alex Elder41375772013-03-05 09:25:10 -06003355
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003356 con->error_msg = "error allocating memory for incoming message";
Alex Elder53ded492013-03-01 18:00:14 -06003357 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003358 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003359 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003360
Alex Elder1c20f2d2012-06-04 14:43:32 -05003361 if (middle_len && !con->in_msg->middle) {
3362 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003363 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003364 ceph_msg_put(con->in_msg);
3365 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003366 }
3367 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003368
Sage Weil4740a622012-07-30 18:19:30 -07003369 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003370}
3371
Sage Weil31b80062009-10-06 11:31:13 -07003372
3373/*
3374 * Free a generically kmalloc'd message.
3375 */
Ilya Dryomov0215e442014-06-20 14:14:41 +04003376static void ceph_msg_free(struct ceph_msg *m)
Sage Weil31b80062009-10-06 11:31:13 -07003377{
Ilya Dryomov0215e442014-06-20 14:14:41 +04003378 dout("%s %p\n", __func__, m);
Ilya Dryomov4965fc32014-10-23 16:32:57 +04003379 kvfree(m->front.iov_base);
Alex Eldere3d5d632013-05-01 12:43:04 -05003380 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003381}
3382
Ilya Dryomov0215e442014-06-20 14:14:41 +04003383static void ceph_msg_release(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003384{
Sage Weilc2e552e2009-12-07 15:55:05 -08003385 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003386 LIST_HEAD(data);
3387 struct list_head *links;
3388 struct list_head *next;
Sage Weil31b80062009-10-06 11:31:13 -07003389
Ilya Dryomov0215e442014-06-20 14:14:41 +04003390 dout("%s %p\n", __func__, m);
Sage Weilc2e552e2009-12-07 15:55:05 -08003391 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003392
Sage Weilc2e552e2009-12-07 15:55:05 -08003393 /* drop middle, data, if any */
3394 if (m->middle) {
3395 ceph_buffer_put(m->middle);
3396 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003397 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003398
3399 list_splice_init(&m->data, &data);
3400 list_for_each_safe(links, next, &data) {
3401 struct ceph_msg_data *data;
3402
3403 data = list_entry(links, struct ceph_msg_data, links);
3404 list_del_init(links);
3405 ceph_msg_data_destroy(data);
3406 }
Alex Eldera1930802013-03-14 14:09:06 -05003407 m->data_length = 0;
Sage Weil58bb3b32009-12-23 12:12:31 -08003408
Sage Weilc2e552e2009-12-07 15:55:05 -08003409 if (m->pool)
3410 ceph_msgpool_put(m->pool, m);
3411 else
Ilya Dryomov0215e442014-06-20 14:14:41 +04003412 ceph_msg_free(m);
Sage Weil31b80062009-10-06 11:31:13 -07003413}
Ilya Dryomov0215e442014-06-20 14:14:41 +04003414
3415struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3416{
3417 dout("%s %p (was %d)\n", __func__, msg,
3418 atomic_read(&msg->kref.refcount));
3419 kref_get(&msg->kref);
3420 return msg;
3421}
3422EXPORT_SYMBOL(ceph_msg_get);
3423
3424void ceph_msg_put(struct ceph_msg *msg)
3425{
3426 dout("%s %p (was %d)\n", __func__, msg,
3427 atomic_read(&msg->kref.refcount));
3428 kref_put(&msg->kref, ceph_msg_release);
3429}
3430EXPORT_SYMBOL(ceph_msg_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003431
3432void ceph_msg_dump(struct ceph_msg *msg)
3433{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003434 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3435 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003436 print_hex_dump(KERN_DEBUG, "header: ",
3437 DUMP_PREFIX_OFFSET, 16, 1,
3438 &msg->hdr, sizeof(msg->hdr), true);
3439 print_hex_dump(KERN_DEBUG, " front: ",
3440 DUMP_PREFIX_OFFSET, 16, 1,
3441 msg->front.iov_base, msg->front.iov_len, true);
3442 if (msg->middle)
3443 print_hex_dump(KERN_DEBUG, "middle: ",
3444 DUMP_PREFIX_OFFSET, 16, 1,
3445 msg->middle->vec.iov_base,
3446 msg->middle->vec.iov_len, true);
3447 print_hex_dump(KERN_DEBUG, "footer: ",
3448 DUMP_PREFIX_OFFSET, 16, 1,
3449 &msg->footer, sizeof(msg->footer), true);
3450}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003451EXPORT_SYMBOL(ceph_msg_dump);