blob: 805f6f82139f5647c34098003b7563a89ff24597 [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)
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01001208 con->ops->sign_message(m);
Yan, Zheng33d07332014-11-04 16:33:37 +08001209 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) {
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001356 struct timespec now = CURRENT_TIME;
1357
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001358 con_out_kvec_add(con, sizeof(tag_keepalive2), &tag_keepalive2);
Ilya Dryomov7f61f542015-09-14 16:01:05 +03001359 ceph_encode_timespec(&con->out_temp_keepalive2, &now);
1360 con_out_kvec_add(con, sizeof(con->out_temp_keepalive2),
1361 &con->out_temp_keepalive2);
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001362 } else {
1363 con_out_kvec_add(con, sizeof(tag_keepalive), &tag_keepalive);
1364 }
Alex Elderc9ffc772013-02-20 10:25:12 -06001365 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001366}
1367
1368/*
1369 * Connection negotiation.
1370 */
1371
Alex Elderdac1e712012-05-16 15:16:39 -05001372static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1373 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001374{
Alex Eldera3530df2012-05-16 15:16:39 -05001375 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001376
1377 if (!con->ops->get_authorizer) {
1378 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1379 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001380 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001381 }
1382
1383 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001384 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001385 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001386 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001387
Alex Eldera3530df2012-05-16 15:16:39 -05001388 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001389 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001390 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001391 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001392
Alex Elder8f43fb52012-05-16 15:16:39 -05001393 con->auth_reply_buf = auth->authorizer_reply_buf;
1394 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001395 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001396}
1397
Sage Weil31b80062009-10-06 11:31:13 -07001398/*
1399 * We connected to a peer and are saying hello.
1400 */
Alex Eldere825a662012-05-16 15:16:38 -05001401static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001402{
Alex Eldere2200422012-05-23 14:35:23 -05001403 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1404 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001405 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001406
Sage Weileed0ef22009-11-10 14:34:36 -08001407 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001408 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001409}
1410
Alex Eldere825a662012-05-16 15:16:38 -05001411static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001412{
Eric Dumazet95c96172012-04-15 05:58:06 +00001413 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001414 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001415 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001416 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001417
1418 switch (con->peer_name.type) {
1419 case CEPH_ENTITY_TYPE_MON:
1420 proto = CEPH_MONC_PROTOCOL;
1421 break;
1422 case CEPH_ENTITY_TYPE_OSD:
1423 proto = CEPH_OSDC_PROTOCOL;
1424 break;
1425 case CEPH_ENTITY_TYPE_MDS:
1426 proto = CEPH_MDSC_PROTOCOL;
1427 break;
1428 default:
1429 BUG();
1430 }
1431
1432 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1433 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001434
Alex Eldere825a662012-05-16 15:16:38 -05001435 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001436 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1437 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1438 con->out_connect.global_seq = cpu_to_le32(global_seq);
1439 con->out_connect.protocol_version = cpu_to_le32(proto);
1440 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001441
Alex Elderdac1e712012-05-16 15:16:39 -05001442 auth_proto = CEPH_AUTH_UNKNOWN;
1443 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001444 if (IS_ERR(auth))
1445 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001446
Alex Elderdac1e712012-05-16 15:16:39 -05001447 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001448 con->out_connect.authorizer_len = auth ?
1449 cpu_to_le32(auth->authorizer_buf_len) : 0;
1450
Alex Eldere2200422012-05-23 14:35:23 -05001451 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001452 &con->out_connect);
1453 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001454 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001455 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001456
Sage Weil31b80062009-10-06 11:31:13 -07001457 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001458 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001459
Alex Eldere10c7582012-05-16 15:16:38 -05001460 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001461}
1462
Sage Weil31b80062009-10-06 11:31:13 -07001463/*
1464 * write as much of pending kvecs to the socket as we can.
1465 * 1 -> done
1466 * 0 -> socket full, but more to do
1467 * <0 -> error
1468 */
1469static int write_partial_kvec(struct ceph_connection *con)
1470{
1471 int ret;
1472
1473 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1474 while (con->out_kvec_bytes > 0) {
1475 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1476 con->out_kvec_left, con->out_kvec_bytes,
1477 con->out_more);
1478 if (ret <= 0)
1479 goto out;
1480 con->out_kvec_bytes -= ret;
1481 if (con->out_kvec_bytes == 0)
1482 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001483
1484 /* account for full iov entries consumed */
1485 while (ret >= con->out_kvec_cur->iov_len) {
1486 BUG_ON(!con->out_kvec_left);
1487 ret -= con->out_kvec_cur->iov_len;
1488 con->out_kvec_cur++;
1489 con->out_kvec_left--;
1490 }
1491 /* and for a partially-consumed entry */
1492 if (ret) {
1493 con->out_kvec_cur->iov_len -= ret;
1494 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001495 }
1496 }
1497 con->out_kvec_left = 0;
1498 con->out_kvec_is_msg = false;
1499 ret = 1;
1500out:
1501 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1502 con->out_kvec_bytes, con->out_kvec_left, ret);
1503 return ret; /* done! */
1504}
1505
Alex Elder35b62802013-03-08 20:59:00 -06001506static u32 ceph_crc32c_page(u32 crc, struct page *page,
1507 unsigned int page_offset,
1508 unsigned int length)
1509{
1510 char *kaddr;
1511
1512 kaddr = kmap(page);
1513 BUG_ON(kaddr == NULL);
1514 crc = crc32c(crc, kaddr + page_offset, length);
1515 kunmap(page);
1516
1517 return crc;
1518}
Sage Weil31b80062009-10-06 11:31:13 -07001519/*
1520 * Write as much message data payload as we can. If we finish, queue
1521 * up the footer.
1522 * 1 -> done, footer is now queued in out_kvec[].
1523 * 0 -> socket full, but more to do
1524 * <0 -> error
1525 */
Alex Elder34d2d202013-03-08 20:58:59 -06001526static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001527{
1528 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001529 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder37675b02012-03-07 11:40:08 -06001530 bool do_datacrc = !con->msgr->nocrc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001531 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001532
Alex Elder859a35d2013-03-11 23:34:23 -05001533 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001534
Alex Elder5240d9f2013-03-14 14:09:06 -05001535 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05001536 return -EINVAL;
1537
Alex Elder5821bd82012-06-11 14:57:13 -05001538 /*
1539 * Iterate through each page that contains data to be
1540 * written, and send as much as possible for each.
1541 *
1542 * If we are calculating the data crc (the default), we will
1543 * need to map the page. If we have no pages, they have
1544 * been revoked, so use the zero page.
1545 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001546 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Alex Elder643c68a2013-03-11 23:34:23 -05001547 while (cursor->resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001548 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001549 size_t page_offset;
1550 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001551 bool last_piece;
Alex Elder8ea299b2013-03-11 23:34:23 -05001552 bool need_crc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001553 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001554
Shraddha Barke343128c2015-10-19 21:59:00 +05301555 page = ceph_msg_data_next(cursor, &page_offset, &length,
1556 &last_piece);
Alex Eldere387d522013-03-06 23:39:38 -06001557 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Benoît Canetc2cfa192015-06-25 20:32:34 +03001558 length, !last_piece);
Alex Elderf5db90b2013-03-11 23:34:23 -05001559 if (ret <= 0) {
1560 if (do_datacrc)
1561 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001562
Alex Elderf5db90b2013-03-11 23:34:23 -05001563 return ret;
1564 }
Alex Elder143334f2013-03-29 11:44:10 -05001565 if (do_datacrc && cursor->need_crc)
1566 crc = ceph_crc32c_page(crc, page, page_offset, length);
Shraddha Barke343128c2015-10-19 21:59:00 +05301567 need_crc = ceph_msg_data_advance(cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001568 }
1569
Alex Elder34d2d202013-03-08 20:58:59 -06001570 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001571
1572 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001573 if (do_datacrc)
1574 msg->footer.data_crc = cpu_to_le32(crc);
1575 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001576 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001577 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001578 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001579
1580 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001581}
1582
1583/*
1584 * write some zeros
1585 */
1586static int write_partial_skip(struct ceph_connection *con)
1587{
1588 int ret;
1589
1590 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001591 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001592
Alex Eldere1dcb122013-03-06 23:39:38 -06001593 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001594 if (ret <= 0)
1595 goto out;
1596 con->out_skip -= ret;
1597 }
1598 ret = 1;
1599out:
1600 return ret;
1601}
1602
1603/*
1604 * Prepare to read connection handshake, or an ack.
1605 */
Sage Weileed0ef22009-11-10 14:34:36 -08001606static void prepare_read_banner(struct ceph_connection *con)
1607{
1608 dout("prepare_read_banner %p\n", con);
1609 con->in_base_pos = 0;
1610}
1611
Sage Weil31b80062009-10-06 11:31:13 -07001612static void prepare_read_connect(struct ceph_connection *con)
1613{
1614 dout("prepare_read_connect %p\n", con);
1615 con->in_base_pos = 0;
1616}
1617
1618static void prepare_read_ack(struct ceph_connection *con)
1619{
1620 dout("prepare_read_ack %p\n", con);
1621 con->in_base_pos = 0;
1622}
1623
Sage Weil3a230832013-03-25 08:47:40 -07001624static void prepare_read_seq(struct ceph_connection *con)
1625{
1626 dout("prepare_read_seq %p\n", con);
1627 con->in_base_pos = 0;
1628 con->in_tag = CEPH_MSGR_TAG_SEQ;
1629}
1630
Sage Weil31b80062009-10-06 11:31:13 -07001631static void prepare_read_tag(struct ceph_connection *con)
1632{
1633 dout("prepare_read_tag %p\n", con);
1634 con->in_base_pos = 0;
1635 con->in_tag = CEPH_MSGR_TAG_READY;
1636}
1637
Yan, Zheng8b9558a2015-09-01 17:19:38 +08001638static void prepare_read_keepalive_ack(struct ceph_connection *con)
1639{
1640 dout("prepare_read_keepalive_ack %p\n", con);
1641 con->in_base_pos = 0;
1642}
1643
Sage Weil31b80062009-10-06 11:31:13 -07001644/*
1645 * Prepare to read a message.
1646 */
1647static int prepare_read_message(struct ceph_connection *con)
1648{
1649 dout("prepare_read_message %p\n", con);
1650 BUG_ON(con->in_msg != NULL);
1651 con->in_base_pos = 0;
1652 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1653 return 0;
1654}
1655
1656
1657static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001658 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001659{
Alex Eldere6cee712012-05-10 10:29:50 -05001660 while (con->in_base_pos < end) {
1661 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001662 int have = size - left;
1663 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1664 if (ret <= 0)
1665 return ret;
1666 con->in_base_pos += ret;
1667 }
1668 return 1;
1669}
1670
1671
1672/*
1673 * Read all or part of the connect-side handshake on a new connection
1674 */
Sage Weileed0ef22009-11-10 14:34:36 -08001675static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001676{
Alex Elderfd516532012-05-10 10:29:50 -05001677 int size;
1678 int end;
1679 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001680
Sage Weileed0ef22009-11-10 14:34:36 -08001681 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001682
1683 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001684 size = strlen(CEPH_BANNER);
1685 end = size;
1686 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001687 if (ret <= 0)
1688 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001689
1690 size = sizeof (con->actual_peer_addr);
1691 end += size;
1692 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001693 if (ret <= 0)
1694 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001695
1696 size = sizeof (con->peer_addr_for_me);
1697 end += size;
1698 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001699 if (ret <= 0)
1700 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001701
Sage Weileed0ef22009-11-10 14:34:36 -08001702out:
1703 return ret;
1704}
1705
1706static int read_partial_connect(struct ceph_connection *con)
1707{
Alex Elderfd516532012-05-10 10:29:50 -05001708 int size;
1709 int end;
1710 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001711
1712 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1713
Alex Elderfd516532012-05-10 10:29:50 -05001714 size = sizeof (con->in_reply);
1715 end = size;
1716 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001717 if (ret <= 0)
1718 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001719
1720 size = le32_to_cpu(con->in_reply.authorizer_len);
1721 end += size;
1722 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001723 if (ret <= 0)
1724 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001725
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001726 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1727 con, (int)con->in_reply.tag,
1728 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001729 le32_to_cpu(con->in_reply.global_seq));
1730out:
1731 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001732
Sage Weil31b80062009-10-06 11:31:13 -07001733}
1734
1735/*
1736 * Verify the hello banner looks okay.
1737 */
1738static int verify_hello(struct ceph_connection *con)
1739{
1740 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001741 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001742 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001743 con->error_msg = "protocol error, bad banner";
1744 return -1;
1745 }
1746 return 0;
1747}
1748
1749static bool addr_is_blank(struct sockaddr_storage *ss)
1750{
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001751 struct in_addr *addr = &((struct sockaddr_in *)ss)->sin_addr;
1752 struct in6_addr *addr6 = &((struct sockaddr_in6 *)ss)->sin6_addr;
1753
Sage Weil31b80062009-10-06 11:31:13 -07001754 switch (ss->ss_family) {
1755 case AF_INET:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001756 return addr->s_addr == htonl(INADDR_ANY);
Sage Weil31b80062009-10-06 11:31:13 -07001757 case AF_INET6:
Ilya Dryomovc44bd692015-07-09 13:57:52 +03001758 return ipv6_addr_any(addr6);
1759 default:
1760 return true;
Sage Weil31b80062009-10-06 11:31:13 -07001761 }
Sage Weil31b80062009-10-06 11:31:13 -07001762}
1763
1764static int addr_port(struct sockaddr_storage *ss)
1765{
1766 switch (ss->ss_family) {
1767 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001768 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001769 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001770 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001771 }
1772 return 0;
1773}
1774
1775static void addr_set_port(struct sockaddr_storage *ss, int p)
1776{
1777 switch (ss->ss_family) {
1778 case AF_INET:
1779 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001780 break;
Sage Weil31b80062009-10-06 11:31:13 -07001781 case AF_INET6:
1782 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001783 break;
Sage Weil31b80062009-10-06 11:31:13 -07001784 }
1785}
1786
1787/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001788 * Unlike other *_pton function semantics, zero indicates success.
1789 */
1790static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1791 char delim, const char **ipend)
1792{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001793 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1794 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001795
1796 memset(ss, 0, sizeof(*ss));
1797
1798 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1799 ss->ss_family = AF_INET;
1800 return 0;
1801 }
1802
1803 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1804 ss->ss_family = AF_INET6;
1805 return 0;
1806 }
1807
1808 return -EINVAL;
1809}
1810
1811/*
1812 * Extract hostname string and resolve using kernel DNS facility.
1813 */
1814#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1815static int ceph_dns_resolve_name(const char *name, size_t namelen,
1816 struct sockaddr_storage *ss, char delim, const char **ipend)
1817{
1818 const char *end, *delim_p;
1819 char *colon_p, *ip_addr = NULL;
1820 int ip_len, ret;
1821
1822 /*
1823 * The end of the hostname occurs immediately preceding the delimiter or
1824 * the port marker (':') where the delimiter takes precedence.
1825 */
1826 delim_p = memchr(name, delim, namelen);
1827 colon_p = memchr(name, ':', namelen);
1828
1829 if (delim_p && colon_p)
1830 end = delim_p < colon_p ? delim_p : colon_p;
1831 else if (!delim_p && colon_p)
1832 end = colon_p;
1833 else {
1834 end = delim_p;
1835 if (!end) /* case: hostname:/ */
1836 end = name + namelen;
1837 }
1838
1839 if (end <= name)
1840 return -EINVAL;
1841
1842 /* do dns_resolve upcall */
1843 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1844 if (ip_len > 0)
1845 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1846 else
1847 ret = -ESRCH;
1848
1849 kfree(ip_addr);
1850
1851 *ipend = end;
1852
1853 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1854 ret, ret ? "failed" : ceph_pr_addr(ss));
1855
1856 return ret;
1857}
1858#else
1859static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1860 struct sockaddr_storage *ss, char delim, const char **ipend)
1861{
1862 return -EINVAL;
1863}
1864#endif
1865
1866/*
1867 * Parse a server name (IP or hostname). If a valid IP address is not found
1868 * then try to extract a hostname to resolve using userspace DNS upcall.
1869 */
1870static int ceph_parse_server_name(const char *name, size_t namelen,
1871 struct sockaddr_storage *ss, char delim, const char **ipend)
1872{
1873 int ret;
1874
1875 ret = ceph_pton(name, namelen, ss, delim, ipend);
1876 if (ret)
1877 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1878
1879 return ret;
1880}
1881
1882/*
Sage Weil31b80062009-10-06 11:31:13 -07001883 * Parse an ip[:port] list into an addr array. Use the default
1884 * monitor port if a port isn't specified.
1885 */
1886int ceph_parse_ips(const char *c, const char *end,
1887 struct ceph_entity_addr *addr,
1888 int max_count, int *count)
1889{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001890 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001891 const char *p = c;
1892
1893 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1894 for (i = 0; i < max_count; i++) {
1895 const char *ipend;
1896 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001897 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001898 char delim = ',';
1899
1900 if (*p == '[') {
1901 delim = ']';
1902 p++;
1903 }
Sage Weil31b80062009-10-06 11:31:13 -07001904
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001905 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1906 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001907 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001908 ret = -EINVAL;
1909
Sage Weil31b80062009-10-06 11:31:13 -07001910 p = ipend;
1911
Sage Weil39139f62010-07-08 09:54:52 -07001912 if (delim == ']') {
1913 if (*p != ']') {
1914 dout("missing matching ']'\n");
1915 goto bad;
1916 }
1917 p++;
1918 }
1919
Sage Weil31b80062009-10-06 11:31:13 -07001920 /* port? */
1921 if (p < end && *p == ':') {
1922 port = 0;
1923 p++;
1924 while (p < end && *p >= '0' && *p <= '9') {
1925 port = (port * 10) + (*p - '0');
1926 p++;
1927 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02001928 if (port == 0)
1929 port = CEPH_MON_PORT;
1930 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07001931 goto bad;
1932 } else {
1933 port = CEPH_MON_PORT;
1934 }
1935
1936 addr_set_port(ss, port);
1937
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001938 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001939
1940 if (p == end)
1941 break;
1942 if (*p != ',')
1943 goto bad;
1944 p++;
1945 }
1946
1947 if (p != end)
1948 goto bad;
1949
1950 if (count)
1951 *count = i + 1;
1952 return 0;
1953
1954bad:
Sage Weil39139f62010-07-08 09:54:52 -07001955 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001956 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001957}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001958EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001959
Sage Weileed0ef22009-11-10 14:34:36 -08001960static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001961{
Sage Weileed0ef22009-11-10 14:34:36 -08001962 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001963
1964 if (verify_hello(con) < 0)
1965 return -1;
1966
Sage Weil63f2d212009-11-03 15:17:56 -08001967 ceph_decode_addr(&con->actual_peer_addr);
1968 ceph_decode_addr(&con->peer_addr_for_me);
1969
Sage Weil31b80062009-10-06 11:31:13 -07001970 /*
1971 * Make sure the other end is who we wanted. note that the other
1972 * end may not yet know their ip address, so if it's 0.0.0.0, give
1973 * them the benefit of the doubt.
1974 */
Sage Weil103e2d32010-01-07 16:12:36 -08001975 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1976 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001977 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1978 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001979 pr_warn("wrong peer, want %s/%d, got %s/%d\n",
1980 ceph_pr_addr(&con->peer_addr.in_addr),
1981 (int)le32_to_cpu(con->peer_addr.nonce),
1982 ceph_pr_addr(&con->actual_peer_addr.in_addr),
1983 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001984 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001985 return -1;
1986 }
1987
1988 /*
1989 * did we learn our address?
1990 */
1991 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1992 int port = addr_port(&con->msgr->inst.addr.in_addr);
1993
1994 memcpy(&con->msgr->inst.addr.in_addr,
1995 &con->peer_addr_for_me.in_addr,
1996 sizeof(con->peer_addr_for_me.in_addr));
1997 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001998 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001999 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002000 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002001 }
2002
Sage Weileed0ef22009-11-10 14:34:36 -08002003 return 0;
2004}
2005
2006static int process_connect(struct ceph_connection *con)
2007{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002008 u64 sup_feat = con->msgr->supported_features;
2009 u64 req_feat = con->msgr->required_features;
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +02002010 u64 server_feat = ceph_sanitize_features(
2011 le64_to_cpu(con->in_reply.features));
Sage Weil0da5d702011-05-19 11:21:05 -07002012 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08002013
Sage Weileed0ef22009-11-10 14:34:36 -08002014 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
2015
Sage Weil31b80062009-10-06 11:31:13 -07002016 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08002017 case CEPH_MSGR_TAG_FEATURES:
2018 pr_err("%s%lld %s feature set mismatch,"
2019 " my %llx < server's %llx, missing %llx\n",
2020 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002021 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002022 sup_feat, server_feat, server_feat & ~sup_feat);
2023 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002024 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002025 return -1;
2026
Sage Weil31b80062009-10-06 11:31:13 -07002027 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07002028 pr_err("%s%lld %s protocol version mismatch,"
2029 " my %d != server's %d\n",
2030 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002031 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07002032 le32_to_cpu(con->out_connect.protocol_version),
2033 le32_to_cpu(con->in_reply.protocol_version));
2034 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002035 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07002036 return -1;
2037
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002038 case CEPH_MSGR_TAG_BADAUTHORIZER:
2039 con->auth_retry++;
2040 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2041 con->auth_retry);
2042 if (con->auth_retry == 2) {
2043 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002044 return -1;
2045 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002046 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002047 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002048 if (ret < 0)
2049 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002050 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002051 break;
Sage Weil31b80062009-10-06 11:31:13 -07002052
2053 case CEPH_MSGR_TAG_RESETSESSION:
2054 /*
2055 * If we connected with a large connect_seq but the peer
2056 * has no record of a session with us (no connection, or
2057 * connect_seq == 0), they will send RESETSESION to indicate
2058 * that they must have reset their session, and may have
2059 * dropped messages.
2060 */
2061 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002062 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002063 pr_err("%s%lld %s connection reset\n",
2064 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002065 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002066 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002067 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002068 ret = prepare_write_connect(con);
2069 if (ret < 0)
2070 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002071 prepare_read_connect(con);
2072
2073 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002074 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002075 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2076 if (con->ops->peer_reset)
2077 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002078 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002079 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002080 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002081 break;
2082
2083 case CEPH_MSGR_TAG_RETRY_SESSION:
2084 /*
2085 * If we sent a smaller connect_seq than the peer has, try
2086 * again with a larger value.
2087 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002088 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002089 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002090 le32_to_cpu(con->in_reply.connect_seq));
2091 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002092 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002093 ret = prepare_write_connect(con);
2094 if (ret < 0)
2095 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002096 prepare_read_connect(con);
2097 break;
2098
2099 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2100 /*
2101 * If we sent a smaller global_seq than the peer has, try
2102 * again with a larger value.
2103 */
Sage Weileed0ef22009-11-10 14:34:36 -08002104 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002105 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002106 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002107 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002108 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002109 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002110 ret = prepare_write_connect(con);
2111 if (ret < 0)
2112 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002113 prepare_read_connect(con);
2114 break;
2115
Sage Weil3a230832013-03-25 08:47:40 -07002116 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002117 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002118 if (req_feat & ~server_feat) {
2119 pr_err("%s%lld %s protocol feature mismatch,"
2120 " my required %llx > server's %llx, need %llx\n",
2121 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002122 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002123 req_feat, server_feat, req_feat & ~server_feat);
2124 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002125 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002126 return -1;
2127 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002128
Alex Elder122070a2012-12-26 10:43:57 -06002129 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002130 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002131 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002132 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2133 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002134 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002135 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2136 con->peer_global_seq,
2137 le32_to_cpu(con->in_reply.connect_seq),
2138 con->connect_seq);
2139 WARN_ON(con->connect_seq !=
2140 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002141
2142 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002143 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002144
Sage Weil85effe12012-07-30 16:22:05 -07002145 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002146
Sage Weil3a230832013-03-25 08:47:40 -07002147 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2148 prepare_write_seq(con);
2149 prepare_read_seq(con);
2150 } else {
2151 prepare_read_tag(con);
2152 }
Sage Weil31b80062009-10-06 11:31:13 -07002153 break;
2154
2155 case CEPH_MSGR_TAG_WAIT:
2156 /*
2157 * If there is a connection race (we are opening
2158 * connections to each other), one of us may just have
2159 * to WAIT. This shouldn't happen if we are the
2160 * client.
2161 */
Sage Weil04177882011-05-12 15:33:17 -07002162 con->error_msg = "protocol error, got WAIT as client";
2163 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002164
2165 default:
Sage Weil31b80062009-10-06 11:31:13 -07002166 con->error_msg = "protocol error, garbage tag during connect";
2167 return -1;
2168 }
2169 return 0;
2170}
2171
2172
2173/*
2174 * read (part of) an ack
2175 */
2176static int read_partial_ack(struct ceph_connection *con)
2177{
Alex Elderfd516532012-05-10 10:29:50 -05002178 int size = sizeof (con->in_temp_ack);
2179 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002180
Alex Elderfd516532012-05-10 10:29:50 -05002181 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002182}
2183
Sage Weil31b80062009-10-06 11:31:13 -07002184/*
2185 * We can finally discard anything that's been acked.
2186 */
2187static void process_ack(struct ceph_connection *con)
2188{
2189 struct ceph_msg *m;
2190 u64 ack = le64_to_cpu(con->in_temp_ack);
2191 u64 seq;
2192
Sage Weil31b80062009-10-06 11:31:13 -07002193 while (!list_empty(&con->out_sent)) {
2194 m = list_first_entry(&con->out_sent, struct ceph_msg,
2195 list_head);
2196 seq = le64_to_cpu(m->hdr.seq);
2197 if (seq > ack)
2198 break;
2199 dout("got ack for seq %llu type %d at %p\n", seq,
2200 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002201 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002202 ceph_msg_remove(m);
2203 }
Sage Weil31b80062009-10-06 11:31:13 -07002204 prepare_read_tag(con);
2205}
2206
2207
Yehuda Sadeh24504182010-01-08 13:58:34 -08002208static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002209 struct kvec *section,
2210 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002211{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002212 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002213
Yehuda Sadeh24504182010-01-08 13:58:34 -08002214 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002215
Yehuda Sadeh24504182010-01-08 13:58:34 -08002216 while (section->iov_len < sec_len) {
2217 BUG_ON(section->iov_base == NULL);
2218 left = sec_len - section->iov_len;
2219 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2220 section->iov_len, left);
2221 if (ret <= 0)
2222 return ret;
2223 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002224 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002225 if (section->iov_len == sec_len)
2226 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002227
2228 return 1;
2229}
2230
Alex Elder34d2d202013-03-08 20:58:59 -06002231static int read_partial_msg_data(struct ceph_connection *con)
2232{
2233 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002234 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder34d2d202013-03-08 20:58:59 -06002235 const bool do_datacrc = !con->msgr->nocrc;
Alex Elder686be202013-03-11 23:34:23 -05002236 struct page *page;
2237 size_t page_offset;
2238 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002239 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002240 int ret;
2241
2242 BUG_ON(!msg);
Alex Elder5240d9f2013-03-14 14:09:06 -05002243 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05002244 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002245
Alex Elderf5db90b2013-03-11 23:34:23 -05002246 if (do_datacrc)
2247 crc = con->in_data_crc;
Alex Elder643c68a2013-03-11 23:34:23 -05002248 while (cursor->resid) {
Shraddha Barke343128c2015-10-19 21:59:00 +05302249 page = ceph_msg_data_next(cursor, &page_offset, &length, 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);
Shraddha Barke343128c2015-10-19 21:59:00 +05302260 (void) ceph_msg_data_advance(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);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002340 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002341 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002342 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002343 con->in_base_pos = -front_len - middle_len - data_len -
2344 sizeof(m->footer);
2345 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002346 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002347 return 0;
2348 }
Alex Elder38941f82012-06-01 14:56:43 -05002349
Sage Weil4740a622012-07-30 18:19:30 -07002350 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002351 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002352 m = con->in_msg;
2353 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002354 if (m->middle)
2355 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002356
Alex Elder78625052013-03-06 23:39:39 -06002357 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002358
Alex Elder78625052013-03-06 23:39:39 -06002359 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002360 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002361 }
2362
2363 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002364 ret = read_partial_message_section(con, &m->front, front_len,
2365 &con->in_front_crc);
2366 if (ret <= 0)
2367 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002368
2369 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002370 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002371 ret = read_partial_message_section(con, &m->middle->vec,
2372 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002373 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002374 if (ret <= 0)
2375 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002376 }
2377
2378 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002379 if (data_len) {
2380 ret = read_partial_msg_data(con);
2381 if (ret <= 0)
2382 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002383 }
2384
Sage Weil31b80062009-10-06 11:31:13 -07002385 /* footer */
Yan, Zheng33d07332014-11-04 16:33:37 +08002386 if (need_sign)
2387 size = sizeof(m->footer);
2388 else
2389 size = sizeof(m->old_footer);
2390
Alex Elderfd516532012-05-10 10:29:50 -05002391 end += size;
2392 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002393 if (ret <= 0)
2394 return ret;
2395
Yan, Zheng33d07332014-11-04 16:33:37 +08002396 if (!need_sign) {
2397 m->footer.flags = m->old_footer.flags;
2398 m->footer.sig = 0;
2399 }
2400
Sage Weil31b80062009-10-06 11:31:13 -07002401 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2402 m, front_len, m->footer.front_crc, middle_len,
2403 m->footer.middle_crc, data_len, m->footer.data_crc);
2404
2405 /* crc ok? */
2406 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2407 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2408 m, con->in_front_crc, m->footer.front_crc);
2409 return -EBADMSG;
2410 }
2411 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2412 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2413 m, con->in_middle_crc, m->footer.middle_crc);
2414 return -EBADMSG;
2415 }
Alex Elderbca064d2012-02-15 07:43:54 -06002416 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002417 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2418 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2419 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2420 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2421 return -EBADMSG;
2422 }
2423
Yan, Zheng33d07332014-11-04 16:33:37 +08002424 if (need_sign && con->ops->check_message_signature &&
Ilya Dryomov79dbd1b2015-10-26 22:23:56 +01002425 con->ops->check_message_signature(m)) {
Yan, Zheng33d07332014-11-04 16:33:37 +08002426 pr_err("read_partial_message %p signature check failed\n", m);
2427 return -EBADMSG;
2428 }
2429
Sage Weil31b80062009-10-06 11:31:13 -07002430 return 1; /* done! */
2431}
2432
2433/*
2434 * Process message. This happens in the worker thread. The callback should
2435 * be careful not to do anything that waits on other incoming messages or it
2436 * may deadlock.
2437 */
2438static void process_message(struct ceph_connection *con)
2439{
Sage Weil5e095e82009-12-14 14:30:34 -08002440 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002441
Alex Elder38941f82012-06-01 14:56:43 -05002442 BUG_ON(con->in_msg->con != con);
2443 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002444 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002445 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002446 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002447
2448 /* if first message, set peer_name */
2449 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002450 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002451
Sage Weil31b80062009-10-06 11:31:13 -07002452 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002453 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002454
2455 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2456 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002457 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002458 le16_to_cpu(msg->hdr.type),
2459 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2460 le32_to_cpu(msg->hdr.front_len),
2461 le32_to_cpu(msg->hdr.data_len),
2462 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2463 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002464
2465 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002466}
2467
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002468static int read_keepalive_ack(struct ceph_connection *con)
2469{
2470 struct ceph_timespec ceph_ts;
2471 size_t size = sizeof(ceph_ts);
2472 int ret = read_partial(con, size, size, &ceph_ts);
2473 if (ret <= 0)
2474 return ret;
2475 ceph_decode_timespec(&con->last_keepalive_ack, &ceph_ts);
2476 prepare_read_tag(con);
2477 return 1;
2478}
Sage Weil31b80062009-10-06 11:31:13 -07002479
2480/*
2481 * Write something to the socket. Called in a worker thread when the
2482 * socket appears to be writeable and we have something ready to send.
2483 */
2484static int try_write(struct ceph_connection *con)
2485{
Sage Weil31b80062009-10-06 11:31:13 -07002486 int ret = 1;
2487
Sage Weild59315c2012-06-21 12:49:23 -07002488 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002489
Sage Weil31b80062009-10-06 11:31:13 -07002490more:
2491 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2492
2493 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002494 if (con->state == CON_STATE_PREOPEN) {
2495 BUG_ON(con->sock);
2496 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002497
Alex Eldere2200422012-05-23 14:35:23 -05002498 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002499 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002500 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002501
Sage Weilcf3e5c42009-12-11 09:48:05 -08002502 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002503 con->in_tag = CEPH_MSGR_TAG_READY;
2504 dout("try_write initiating connect on %p new state %lu\n",
2505 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002506 ret = ceph_tcp_connect(con);
2507 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002508 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002509 goto out;
2510 }
2511 }
2512
2513more_kvec:
2514 /* kvec data queued? */
2515 if (con->out_skip) {
2516 ret = write_partial_skip(con);
2517 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002518 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002519 }
2520 if (con->out_kvec_left) {
2521 ret = write_partial_kvec(con);
2522 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002523 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002524 }
2525
2526 /* msg pages? */
2527 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002528 if (con->out_msg_done) {
2529 ceph_msg_put(con->out_msg);
2530 con->out_msg = NULL; /* we're done with this one */
2531 goto do_next;
2532 }
2533
Alex Elder34d2d202013-03-08 20:58:59 -06002534 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002535 if (ret == 1)
2536 goto more_kvec; /* we need to send the footer, too! */
2537 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002538 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002539 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002540 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002541 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002542 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002543 }
2544 }
2545
Sage Weilc86a2932009-12-14 14:04:30 -08002546do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002547 if (con->state == CON_STATE_OPEN) {
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002548 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
2549 prepare_write_keepalive(con);
2550 goto more;
2551 }
Sage Weil31b80062009-10-06 11:31:13 -07002552 /* is anything else pending? */
2553 if (!list_empty(&con->out_queue)) {
2554 prepare_write_message(con);
2555 goto more;
2556 }
2557 if (con->in_seq > con->in_seq_acked) {
2558 prepare_write_ack(con);
2559 goto more;
2560 }
Sage Weil31b80062009-10-06 11:31:13 -07002561 }
2562
2563 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002564 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002565 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002566 ret = 0;
2567out:
Sage Weil42961d22011-01-25 08:19:34 -08002568 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002569 return ret;
2570}
2571
2572
2573
2574/*
2575 * Read what we can from the socket.
2576 */
2577static int try_read(struct ceph_connection *con)
2578{
Sage Weil31b80062009-10-06 11:31:13 -07002579 int ret = -1;
2580
Sage Weil31b80062009-10-06 11:31:13 -07002581more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002582 dout("try_read start on %p state %lu\n", con, con->state);
2583 if (con->state != CON_STATE_CONNECTING &&
2584 con->state != CON_STATE_NEGOTIATING &&
2585 con->state != CON_STATE_OPEN)
2586 return 0;
2587
2588 BUG_ON(!con->sock);
2589
Sage Weil31b80062009-10-06 11:31:13 -07002590 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2591 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002592
Sage Weil8dacc7d2012-07-20 17:24:40 -07002593 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002594 dout("try_read connecting\n");
2595 ret = read_partial_banner(con);
2596 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002597 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002598 ret = process_banner(con);
2599 if (ret < 0)
2600 goto out;
2601
Sage Weil8dacc7d2012-07-20 17:24:40 -07002602 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002603
Jim Schutt6d4221b2012-08-10 10:37:38 -07002604 /*
2605 * Received banner is good, exchange connection info.
2606 * Do not reset out_kvec, as sending our banner raced
2607 * with receiving peer banner after connect completed.
2608 */
Alex Elder7593af92012-05-24 11:55:03 -05002609 ret = prepare_write_connect(con);
2610 if (ret < 0)
2611 goto out;
2612 prepare_read_connect(con);
2613
2614 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002615 goto out;
2616 }
2617
Sage Weil8dacc7d2012-07-20 17:24:40 -07002618 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002619 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002620 ret = read_partial_connect(con);
2621 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002622 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002623 ret = process_connect(con);
2624 if (ret < 0)
2625 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002626 goto more;
2627 }
2628
Alex Elder122070a2012-12-26 10:43:57 -06002629 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002630
Sage Weil31b80062009-10-06 11:31:13 -07002631 if (con->in_base_pos < 0) {
2632 /*
2633 * skipping + discarding content.
2634 *
2635 * FIXME: there must be a better way to do this!
2636 */
Alex Elder84495f42012-02-15 07:43:55 -06002637 static char buf[SKIP_BUF_SIZE];
2638 int skip = min((int) sizeof (buf), -con->in_base_pos);
2639
Sage Weil31b80062009-10-06 11:31:13 -07002640 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2641 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2642 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002643 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002644 con->in_base_pos += ret;
2645 if (con->in_base_pos)
2646 goto more;
2647 }
2648 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2649 /*
2650 * what's next?
2651 */
2652 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2653 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002654 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002655 dout("try_read got tag %d\n", (int)con->in_tag);
2656 switch (con->in_tag) {
2657 case CEPH_MSGR_TAG_MSG:
2658 prepare_read_message(con);
2659 break;
2660 case CEPH_MSGR_TAG_ACK:
2661 prepare_read_ack(con);
2662 break;
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002663 case CEPH_MSGR_TAG_KEEPALIVE2_ACK:
2664 prepare_read_keepalive_ack(con);
2665 break;
Sage Weil31b80062009-10-06 11:31:13 -07002666 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002667 con_close_socket(con);
2668 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002669 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002670 default:
2671 goto bad_tag;
2672 }
2673 }
2674 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2675 ret = read_partial_message(con);
2676 if (ret <= 0) {
2677 switch (ret) {
2678 case -EBADMSG:
2679 con->error_msg = "bad crc";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002680 /* fall through */
2681 case -EBADE:
Sage Weil31b80062009-10-06 11:31:13 -07002682 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002683 break;
Sage Weil31b80062009-10-06 11:31:13 -07002684 case -EIO:
2685 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002686 break;
Sage Weil31b80062009-10-06 11:31:13 -07002687 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002688 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002689 }
2690 if (con->in_tag == CEPH_MSGR_TAG_READY)
2691 goto more;
2692 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002693 if (con->state == CON_STATE_OPEN)
2694 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002695 goto more;
2696 }
Sage Weil3a230832013-03-25 08:47:40 -07002697 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2698 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2699 /*
2700 * the final handshake seq exchange is semantically
2701 * equivalent to an ACK
2702 */
Sage Weil31b80062009-10-06 11:31:13 -07002703 ret = read_partial_ack(con);
2704 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002705 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002706 process_ack(con);
2707 goto more;
2708 }
Yan, Zheng8b9558a2015-09-01 17:19:38 +08002709 if (con->in_tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) {
2710 ret = read_keepalive_ack(con);
2711 if (ret <= 0)
2712 goto out;
2713 goto more;
2714 }
Sage Weil31b80062009-10-06 11:31:13 -07002715
Sage Weil31b80062009-10-06 11:31:13 -07002716out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002717 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002718 return ret;
2719
2720bad_tag:
2721 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2722 con->error_msg = "protocol error, garbage tag";
2723 ret = -1;
2724 goto out;
2725}
2726
2727
2728/*
Alex Elder802c6d92012-10-08 20:37:30 -07002729 * Atomically queue work on a connection after the specified delay.
2730 * Bump @con reference to avoid races with connection teardown.
2731 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002732 */
Alex Elder802c6d92012-10-08 20:37:30 -07002733static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002734{
Sage Weil31b80062009-10-06 11:31:13 -07002735 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002736 dout("%s %p ref count 0\n", __func__, con);
Alex Elder802c6d92012-10-08 20:37:30 -07002737 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002738 }
2739
Alex Elder802c6d92012-10-08 20:37:30 -07002740 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2741 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002742 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002743 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002744 }
Alex Elder802c6d92012-10-08 20:37:30 -07002745
2746 dout("%s %p %lu\n", __func__, con, delay);
Alex Elder802c6d92012-10-08 20:37:30 -07002747 return 0;
2748}
2749
2750static void queue_con(struct ceph_connection *con)
2751{
2752 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002753}
2754
Ilya Dryomov37ab77a2014-06-24 16:21:45 +04002755static void cancel_con(struct ceph_connection *con)
2756{
2757 if (cancel_delayed_work(&con->work)) {
2758 dout("%s %p\n", __func__, con);
2759 con->ops->put(con);
2760 }
2761}
2762
Alex Elder7bb21d682012-12-07 19:50:07 -06002763static bool con_sock_closed(struct ceph_connection *con)
2764{
Alex Elderc9ffc772013-02-20 10:25:12 -06002765 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002766 return false;
2767
2768#define CASE(x) \
2769 case CON_STATE_ ## x: \
2770 con->error_msg = "socket closed (con state " #x ")"; \
2771 break;
2772
2773 switch (con->state) {
2774 CASE(CLOSED);
2775 CASE(PREOPEN);
2776 CASE(CONNECTING);
2777 CASE(NEGOTIATING);
2778 CASE(OPEN);
2779 CASE(STANDBY);
2780 default:
Joe Perchesb9a67892014-09-09 21:17:29 -07002781 pr_warn("%s con %p unrecognized state %lu\n",
Alex Elder7bb21d682012-12-07 19:50:07 -06002782 __func__, con, con->state);
2783 con->error_msg = "unrecognized con state";
2784 BUG();
2785 break;
2786 }
2787#undef CASE
2788
2789 return true;
2790}
2791
Alex Elderf20a39f2013-02-19 12:25:57 -06002792static bool con_backoff(struct ceph_connection *con)
2793{
2794 int ret;
2795
2796 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2797 return false;
2798
2799 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2800 if (ret) {
2801 dout("%s: con %p FAILED to back off %lu\n", __func__,
2802 con, con->delay);
2803 BUG_ON(ret == -ENOENT);
2804 con_flag_set(con, CON_FLAG_BACKOFF);
2805 }
2806
2807 return true;
2808}
2809
Alex Elder93209262013-02-19 12:25:57 -06002810/* Finish fault handling; con->mutex must *not* be held here */
2811
2812static void con_fault_finish(struct ceph_connection *con)
2813{
2814 /*
2815 * in case we faulted due to authentication, invalidate our
2816 * current tickets so that we can get new ones.
2817 */
2818 if (con->auth_retry && con->ops->invalidate_authorizer) {
2819 dout("calling invalidate_authorizer()\n");
2820 con->ops->invalidate_authorizer(con);
2821 }
2822
2823 if (con->ops->fault)
2824 con->ops->fault(con);
2825}
2826
Sage Weil31b80062009-10-06 11:31:13 -07002827/*
2828 * Do some work on a connection. Drop a connection ref when we're done.
2829 */
Ilya Dryomov68931622015-07-03 15:44:41 +03002830static void ceph_con_workfn(struct work_struct *work)
Sage Weil31b80062009-10-06 11:31:13 -07002831{
2832 struct ceph_connection *con = container_of(work, struct ceph_connection,
2833 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002834 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002835
Sage Weil9dd46582010-04-28 13:51:50 -07002836 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002837 while (true) {
2838 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002839
Alex Elder49659412013-02-19 12:25:57 -06002840 if ((fault = con_sock_closed(con))) {
2841 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2842 break;
2843 }
2844 if (con_backoff(con)) {
2845 dout("%s: con %p BACKOFF\n", __func__, con);
2846 break;
2847 }
2848 if (con->state == CON_STATE_STANDBY) {
2849 dout("%s: con %p STANDBY\n", __func__, con);
2850 break;
2851 }
2852 if (con->state == CON_STATE_CLOSED) {
2853 dout("%s: con %p CLOSED\n", __func__, con);
2854 BUG_ON(con->sock);
2855 break;
2856 }
2857 if (con->state == CON_STATE_PREOPEN) {
2858 dout("%s: con %p PREOPEN\n", __func__, con);
2859 BUG_ON(con->sock);
2860 }
Sage Weil0da5d702011-05-19 11:21:05 -07002861
Alex Elder49659412013-02-19 12:25:57 -06002862 ret = try_read(con);
2863 if (ret < 0) {
2864 if (ret == -EAGAIN)
2865 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002866 if (!con->error_msg)
2867 con->error_msg = "socket error on read";
Alex Elder49659412013-02-19 12:25:57 -06002868 fault = true;
2869 break;
2870 }
2871
2872 ret = try_write(con);
2873 if (ret < 0) {
2874 if (ret == -EAGAIN)
2875 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002876 if (!con->error_msg)
2877 con->error_msg = "socket error on write";
Alex Elder49659412013-02-19 12:25:57 -06002878 fault = true;
2879 }
2880
2881 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002882 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002883 if (fault)
2884 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002885 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002886
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002887 if (fault)
2888 con_fault_finish(con);
2889
2890 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002891}
2892
Sage Weil31b80062009-10-06 11:31:13 -07002893/*
2894 * Generic error/fault handler. A retry mechanism is used with
2895 * exponential backoff
2896 */
Alex Elder93209262013-02-19 12:25:57 -06002897static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002898{
Sage Weil31b80062009-10-06 11:31:13 -07002899 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002900 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002901
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002902 pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
2903 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
2904 con->error_msg = NULL;
2905
Alex Elder122070a2012-12-26 10:43:57 -06002906 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002907 con->state != CON_STATE_NEGOTIATING &&
2908 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002909
Sage Weil31b80062009-10-06 11:31:13 -07002910 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002911
Alex Elderc9ffc772013-02-20 10:25:12 -06002912 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002913 dout("fault on LOSSYTX channel, marking CLOSED\n");
2914 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002915 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002916 }
2917
Sage Weil5e095e82009-12-14 14:30:34 -08002918 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002919 BUG_ON(con->in_msg->con != con);
2920 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002921 ceph_msg_put(con->in_msg);
2922 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002923 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002924 }
Sage Weil31b80062009-10-06 11:31:13 -07002925
Sage Weile80a52d2010-02-25 12:40:45 -08002926 /* Requeue anything that hasn't been acked */
2927 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002928
Sage Weile76661d2011-03-03 10:10:15 -08002929 /* If there are no messages queued or keepalive pending, place
2930 * the connection in a STANDBY state */
2931 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002932 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002933 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002934 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002935 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002936 } else {
2937 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002938 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002939 if (con->delay == 0)
2940 con->delay = BASE_DELAY_INTERVAL;
2941 else if (con->delay < MAX_DELAY_INTERVAL)
2942 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002943 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002944 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002945 }
Sage Weil31b80062009-10-06 11:31:13 -07002946}
2947
2948
2949
2950/*
Alex Elder15d98822012-05-26 23:26:43 -05002951 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002952 */
Alex Elder15d98822012-05-26 23:26:43 -05002953void ceph_messenger_init(struct ceph_messenger *msgr,
2954 struct ceph_entity_addr *myaddr,
Ilya Dryomov12b46292013-12-24 21:19:23 +02002955 u64 supported_features,
2956 u64 required_features,
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302957 bool nocrc,
2958 bool tcp_nodelay)
Sage Weil31b80062009-10-06 11:31:13 -07002959{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002960 msgr->supported_features = supported_features;
2961 msgr->required_features = required_features;
2962
Sage Weil31b80062009-10-06 11:31:13 -07002963 spin_lock_init(&msgr->global_seq_lock);
2964
Sage Weil31b80062009-10-06 11:31:13 -07002965 if (myaddr)
2966 msgr->inst.addr = *myaddr;
2967
2968 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002969 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002970 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002971 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002972 msgr->nocrc = nocrc;
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302973 msgr->tcp_nodelay = tcp_nodelay;
Sage Weil31b80062009-10-06 11:31:13 -07002974
Guanjun Hea2a32582012-07-08 19:50:33 -07002975 atomic_set(&msgr->stopping, 0);
Ilya Dryomov757856d2015-06-25 17:47:45 +03002976 write_pnet(&msgr->net, get_net(current->nsproxy->net_ns));
Sage Weil31b80062009-10-06 11:31:13 -07002977
Alex Elder15d98822012-05-26 23:26:43 -05002978 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002979}
Alex Elder15d98822012-05-26 23:26:43 -05002980EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002981
Ilya Dryomov757856d2015-06-25 17:47:45 +03002982void ceph_messenger_fini(struct ceph_messenger *msgr)
2983{
2984 put_net(read_pnet(&msgr->net));
2985}
2986EXPORT_SYMBOL(ceph_messenger_fini);
2987
Sage Weile00de342011-03-04 12:25:05 -08002988static void clear_standby(struct ceph_connection *con)
2989{
2990 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002991 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002992 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002993 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002994 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002995 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2996 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002997 }
2998}
2999
Sage Weil31b80062009-10-06 11:31:13 -07003000/*
3001 * Queue up an outgoing message on the given connection.
3002 */
3003void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
3004{
Sage Weila59b55a2012-07-20 15:34:04 -07003005 /* set src+dst */
3006 msg->hdr.src = con->msgr->inst.name;
3007 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
3008 msg->needs_out_seq = true;
3009
3010 mutex_lock(&con->mutex);
3011
Sage Weil8dacc7d2012-07-20 17:24:40 -07003012 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07003013 dout("con_send %p closed, dropping %p\n", con, msg);
3014 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07003015 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003016 return;
3017 }
3018
Alex Elder38941f82012-06-01 14:56:43 -05003019 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003020 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003021 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07003022
Sage Weil31b80062009-10-06 11:31:13 -07003023 BUG_ON(!list_empty(&msg->list_head));
3024 list_add_tail(&msg->list_head, &con->out_queue);
3025 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
3026 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
3027 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
3028 le32_to_cpu(msg->hdr.front_len),
3029 le32_to_cpu(msg->hdr.middle_len),
3030 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07003031
3032 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08003033 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003034
3035 /* if there wasn't anything waiting to send before, queue
3036 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06003037 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003038 queue_con(con);
3039}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003040EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07003041
3042/*
3043 * Revoke a message that was previously queued for send
3044 */
Alex Elder6740a842012-06-01 14:56:43 -05003045void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003046{
Alex Elder6740a842012-06-01 14:56:43 -05003047 struct ceph_connection *con = msg->con;
3048
3049 if (!con)
3050 return; /* Message not in our possession */
3051
Sage Weilec302642009-12-22 10:43:42 -08003052 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003053 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003054 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003055 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05003056 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003057 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05003058 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003059 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003060
Sage Weil31b80062009-10-06 11:31:13 -07003061 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003062 }
3063 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05003064 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003065 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003066 if (con->out_kvec_is_msg) {
3067 con->out_skip = con->out_kvec_bytes;
3068 con->out_kvec_is_msg = false;
3069 }
Sage Weiled98ada2010-07-05 12:15:14 -07003070 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05003071
3072 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003073 }
Sage Weilec302642009-12-22 10:43:42 -08003074 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003075}
3076
3077/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003078 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003079 */
Alex Elder8921d112012-06-01 14:56:43 -05003080void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003081{
Alex Elder8921d112012-06-01 14:56:43 -05003082 struct ceph_connection *con;
3083
3084 BUG_ON(msg == NULL);
3085 if (!msg->con) {
3086 dout("%s msg %p null con\n", __func__, msg);
3087
3088 return; /* Message not in our possession */
3089 }
3090
3091 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08003092 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003093 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003094 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3095 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3096 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003097
3098 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003099 dout("%s %p msg %p revoked\n", __func__, con, msg);
3100 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003101 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003102 front_len -
3103 middle_len -
3104 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003105 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003106 ceph_msg_put(con->in_msg);
3107 con->in_msg = NULL;
3108 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003109 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003110 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003111 dout("%s %p in_msg %p msg %p no-op\n",
3112 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003113 }
3114 mutex_unlock(&con->mutex);
3115}
3116
3117/*
Sage Weil31b80062009-10-06 11:31:13 -07003118 * Queue a keepalive byte to ensure the tcp connection is alive.
3119 */
3120void ceph_con_keepalive(struct ceph_connection *con)
3121{
Sage Weile00de342011-03-04 12:25:05 -08003122 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003123 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003124 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003125 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003126 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3127 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003128 queue_con(con);
3129}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003130EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003131
Yan, Zheng8b9558a2015-09-01 17:19:38 +08003132bool ceph_con_keepalive_expired(struct ceph_connection *con,
3133 unsigned long interval)
3134{
3135 if (interval > 0 &&
3136 (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2)) {
3137 struct timespec now = CURRENT_TIME;
3138 struct timespec ts;
3139 jiffies_to_timespec(interval, &ts);
3140 ts = timespec_add(con->last_keepalive_ack, ts);
3141 return timespec_compare(&now, &ts) >= 0;
3142 }
3143 return false;
3144}
3145
Alex Elder6644ed72013-03-11 23:34:24 -05003146static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
Alex Elder43794502013-03-01 18:00:16 -06003147{
Alex Elder6644ed72013-03-11 23:34:24 -05003148 struct ceph_msg_data *data;
3149
3150 if (WARN_ON(!ceph_msg_data_type_valid(type)))
3151 return NULL;
3152
Alex Elder81b36be2013-05-01 12:43:04 -05003153 data = kmem_cache_zalloc(ceph_msg_data_cache, GFP_NOFS);
Alex Elder6644ed72013-03-11 23:34:24 -05003154 if (data)
3155 data->type = type;
Alex Elder5240d9f2013-03-14 14:09:06 -05003156 INIT_LIST_HEAD(&data->links);
Alex Elder6644ed72013-03-11 23:34:24 -05003157
3158 return data;
3159}
3160
3161static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3162{
3163 if (!data)
3164 return;
3165
Alex Elder5240d9f2013-03-14 14:09:06 -05003166 WARN_ON(!list_empty(&data->links));
Yan, Zhenge4339d282014-09-16 17:50:45 +08003167 if (data->type == CEPH_MSG_DATA_PAGELIST)
Alex Elder6644ed72013-03-11 23:34:24 -05003168 ceph_pagelist_release(data->pagelist);
Alex Elder81b36be2013-05-01 12:43:04 -05003169 kmem_cache_free(ceph_msg_data_cache, data);
Alex Elder43794502013-03-01 18:00:16 -06003170}
3171
Alex Elder90af3602013-04-05 14:46:01 -05003172void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003173 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003174{
Alex Elder6644ed72013-03-11 23:34:24 -05003175 struct ceph_msg_data *data;
3176
Alex Elder07aa1552013-03-04 18:29:06 -06003177 BUG_ON(!pages);
3178 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003179
Alex Elder6644ed72013-03-11 23:34:24 -05003180 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
3181 BUG_ON(!data);
3182 data->pages = pages;
3183 data->length = length;
3184 data->alignment = alignment & ~PAGE_MASK;
3185
Alex Elder5240d9f2013-03-14 14:09:06 -05003186 list_add_tail(&data->links, &msg->data);
3187 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003188}
Alex Elder90af3602013-04-05 14:46:01 -05003189EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003190
Alex Elder90af3602013-04-05 14:46:01 -05003191void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003192 struct ceph_pagelist *pagelist)
3193{
Alex Elder6644ed72013-03-11 23:34:24 -05003194 struct ceph_msg_data *data;
3195
Alex Elder07aa1552013-03-04 18:29:06 -06003196 BUG_ON(!pagelist);
3197 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003198
Alex Elder6644ed72013-03-11 23:34:24 -05003199 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3200 BUG_ON(!data);
3201 data->pagelist = pagelist;
3202
Alex Elder5240d9f2013-03-14 14:09:06 -05003203 list_add_tail(&data->links, &msg->data);
3204 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003205}
Alex Elder90af3602013-04-05 14:46:01 -05003206EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003207
Alex Elderea965712013-04-05 14:46:01 -05003208#ifdef CONFIG_BLOCK
Alex Elder90af3602013-04-05 14:46:01 -05003209void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
Alex Eldera1930802013-03-14 14:09:06 -05003210 size_t length)
Alex Elder27fa8382013-02-14 12:16:43 -06003211{
Alex Elder6644ed72013-03-11 23:34:24 -05003212 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003213
Alex Elder6644ed72013-03-11 23:34:24 -05003214 BUG_ON(!bio);
Alex Elder6644ed72013-03-11 23:34:24 -05003215
3216 data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3217 BUG_ON(!data);
3218 data->bio = bio;
Alex Elderc851c492013-04-05 14:46:01 -05003219 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003220
Alex Elder5240d9f2013-03-14 14:09:06 -05003221 list_add_tail(&data->links, &msg->data);
3222 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003223}
Alex Elder90af3602013-04-05 14:46:01 -05003224EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003225#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003226
Sage Weil31b80062009-10-06 11:31:13 -07003227/*
3228 * construct a new message with given type, size
3229 * the new msg has a ref count of 1.
3230 */
Sage Weilb61c2762011-08-09 15:03:46 -07003231struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3232 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003233{
3234 struct ceph_msg *m;
3235
Alex Eldere3d5d632013-05-01 12:43:04 -05003236 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003237 if (m == NULL)
3238 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003239
Sage Weil31b80062009-10-06 11:31:13 -07003240 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003241 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003242 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003243
Alex Elder9516e452013-03-01 18:00:16 -06003244 INIT_LIST_HEAD(&m->list_head);
3245 kref_init(&m->kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003246 INIT_LIST_HEAD(&m->data);
Henry C Changca208922011-05-03 02:29:56 +00003247
Sage Weil31b80062009-10-06 11:31:13 -07003248 /* front */
3249 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003250 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003251 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003252 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003253 front_len);
3254 goto out2;
3255 }
3256 } else {
3257 m->front.iov_base = NULL;
3258 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003259 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003260
Sage Weilbb257662010-04-01 16:07:23 -07003261 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003262 return m;
3263
3264out2:
3265 ceph_msg_put(m);
3266out:
Sage Weilb61c2762011-08-09 15:03:46 -07003267 if (!can_fail) {
3268 pr_err("msg_new can't create type %d front %d\n", type,
3269 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003270 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003271 } else {
3272 dout("msg_new can't create type %d front %d\n", type,
3273 front_len);
3274 }
Sage Weila79832f2010-04-01 16:06:19 -07003275 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003276}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003277EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003278
3279/*
Sage Weil31b80062009-10-06 11:31:13 -07003280 * Allocate "middle" portion of a message, if it is needed and wasn't
3281 * allocated by alloc_msg. This allows us to read a small fixed-size
3282 * per-type header in the front and then gracefully fail (i.e.,
3283 * propagate the error to the caller based on info in the front) when
3284 * the middle is too large.
3285 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003286static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003287{
3288 int type = le16_to_cpu(msg->hdr.type);
3289 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3290
3291 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3292 ceph_msg_type_name(type), middle_len);
3293 BUG_ON(!middle_len);
3294 BUG_ON(msg->middle);
3295
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003296 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003297 if (!msg->middle)
3298 return -ENOMEM;
3299 return 0;
3300}
3301
Yehuda Sadeh24504182010-01-08 13:58:34 -08003302/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003303 * Allocate a message for receiving an incoming message on a
3304 * connection, and save the result in con->in_msg. Uses the
3305 * connection's private alloc_msg op if available.
3306 *
Sage Weil4740a622012-07-30 18:19:30 -07003307 * Returns 0 on success, or a negative error code.
3308 *
3309 * On success, if we set *skip = 1:
3310 * - the next message should be skipped and ignored.
3311 * - con->in_msg == NULL
3312 * or if we set *skip = 0:
3313 * - con->in_msg is non-null.
3314 * On error (ENOMEM, EAGAIN, ...),
3315 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003316 */
Sage Weil4740a622012-07-30 18:19:30 -07003317static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003318{
Sage Weil4740a622012-07-30 18:19:30 -07003319 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003320 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003321 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003322 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003323
Alex Elder1c20f2d2012-06-04 14:43:32 -05003324 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003325 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003326
Alex Elder53ded492013-03-01 18:00:14 -06003327 mutex_unlock(&con->mutex);
3328 msg = con->ops->alloc_msg(con, hdr, skip);
3329 mutex_lock(&con->mutex);
3330 if (con->state != CON_STATE_OPEN) {
3331 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003332 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003333 return -EAGAIN;
3334 }
Alex Elder41375772013-03-05 09:25:10 -06003335 if (msg) {
3336 BUG_ON(*skip);
3337 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003338 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003339 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003340 } else {
3341 /*
3342 * Null message pointer means either we should skip
3343 * this message or we couldn't allocate memory. The
3344 * former is not an error.
3345 */
3346 if (*skip)
3347 return 0;
Alex Elder41375772013-03-05 09:25:10 -06003348
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003349 con->error_msg = "error allocating memory for incoming message";
Alex Elder53ded492013-03-01 18:00:14 -06003350 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003351 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003352 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003353
Alex Elder1c20f2d2012-06-04 14:43:32 -05003354 if (middle_len && !con->in_msg->middle) {
3355 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003356 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003357 ceph_msg_put(con->in_msg);
3358 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003359 }
3360 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003361
Sage Weil4740a622012-07-30 18:19:30 -07003362 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003363}
3364
Sage Weil31b80062009-10-06 11:31:13 -07003365
3366/*
3367 * Free a generically kmalloc'd message.
3368 */
Ilya Dryomov0215e442014-06-20 14:14:41 +04003369static void ceph_msg_free(struct ceph_msg *m)
Sage Weil31b80062009-10-06 11:31:13 -07003370{
Ilya Dryomov0215e442014-06-20 14:14:41 +04003371 dout("%s %p\n", __func__, m);
Ilya Dryomov4965fc32014-10-23 16:32:57 +04003372 kvfree(m->front.iov_base);
Alex Eldere3d5d632013-05-01 12:43:04 -05003373 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003374}
3375
Ilya Dryomov0215e442014-06-20 14:14:41 +04003376static void ceph_msg_release(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003377{
Sage Weilc2e552e2009-12-07 15:55:05 -08003378 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003379 LIST_HEAD(data);
3380 struct list_head *links;
3381 struct list_head *next;
Sage Weil31b80062009-10-06 11:31:13 -07003382
Ilya Dryomov0215e442014-06-20 14:14:41 +04003383 dout("%s %p\n", __func__, m);
Sage Weilc2e552e2009-12-07 15:55:05 -08003384 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003385
Sage Weilc2e552e2009-12-07 15:55:05 -08003386 /* drop middle, data, if any */
3387 if (m->middle) {
3388 ceph_buffer_put(m->middle);
3389 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003390 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003391
3392 list_splice_init(&m->data, &data);
3393 list_for_each_safe(links, next, &data) {
3394 struct ceph_msg_data *data;
3395
3396 data = list_entry(links, struct ceph_msg_data, links);
3397 list_del_init(links);
3398 ceph_msg_data_destroy(data);
3399 }
Alex Eldera1930802013-03-14 14:09:06 -05003400 m->data_length = 0;
Sage Weil58bb3b32009-12-23 12:12:31 -08003401
Sage Weilc2e552e2009-12-07 15:55:05 -08003402 if (m->pool)
3403 ceph_msgpool_put(m->pool, m);
3404 else
Ilya Dryomov0215e442014-06-20 14:14:41 +04003405 ceph_msg_free(m);
Sage Weil31b80062009-10-06 11:31:13 -07003406}
Ilya Dryomov0215e442014-06-20 14:14:41 +04003407
3408struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3409{
3410 dout("%s %p (was %d)\n", __func__, msg,
3411 atomic_read(&msg->kref.refcount));
3412 kref_get(&msg->kref);
3413 return msg;
3414}
3415EXPORT_SYMBOL(ceph_msg_get);
3416
3417void ceph_msg_put(struct ceph_msg *msg)
3418{
3419 dout("%s %p (was %d)\n", __func__, msg,
3420 atomic_read(&msg->kref.refcount));
3421 kref_put(&msg->kref, ceph_msg_release);
3422}
3423EXPORT_SYMBOL(ceph_msg_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003424
3425void ceph_msg_dump(struct ceph_msg *msg)
3426{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003427 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3428 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003429 print_hex_dump(KERN_DEBUG, "header: ",
3430 DUMP_PREFIX_OFFSET, 16, 1,
3431 &msg->hdr, sizeof(msg->hdr), true);
3432 print_hex_dump(KERN_DEBUG, " front: ",
3433 DUMP_PREFIX_OFFSET, 16, 1,
3434 msg->front.iov_base, msg->front.iov_len, true);
3435 if (msg->middle)
3436 print_hex_dump(KERN_DEBUG, "middle: ",
3437 DUMP_PREFIX_OFFSET, 16, 1,
3438 msg->middle->vec.iov_base,
3439 msg->middle->vec.iov_len, true);
3440 print_hex_dump(KERN_DEBUG, "footer: ",
3441 DUMP_PREFIX_OFFSET, 16, 1,
3442 &msg->footer, sizeof(msg->footer), true);
3443}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003444EXPORT_SYMBOL(ceph_msg_dump);