blob: 1441aeff8bd71a011b205fbe496b3440ad497125 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Sage Weil31b80062009-10-06 11:31:13 -070010#include <linux/socket.h>
11#include <linux/string.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060012#ifdef CONFIG_BLOCK
Yehuda Sadeh68b44762010-04-06 15:01:27 -070013#include <linux/bio.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060014#endif /* CONFIG_BLOCK */
Noah Watkinsee3b56f2011-09-23 11:48:42 -070015#include <linux/dns_resolver.h>
Sage Weil31b80062009-10-06 11:31:13 -070016#include <net/tcp.h>
17
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +020018#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070019#include <linux/ceph/libceph.h>
20#include <linux/ceph/messenger.h>
21#include <linux/ceph/decode.h>
22#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040023#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070024
Alex Elderfe38a2b2013-03-06 23:39:39 -060025#define list_entry_next(pos, member) \
26 list_entry(pos->member.next, typeof(*pos), member)
27
Sage Weil31b80062009-10-06 11:31:13 -070028/*
29 * Ceph uses the messenger to exchange ceph_msg messages with other
30 * hosts in the system. The messenger provides ordered and reliable
31 * delivery. We tolerate TCP disconnects by reconnecting (with
32 * exponential backoff) in the case of a fault (disconnection, bad
33 * crc, protocol error). Acks allow sent messages to be discarded by
34 * the sender.
35 */
36
Alex Elderbc18f4b2012-06-20 21:53:53 -050037/*
38 * We track the state of the socket on a given connection using
39 * values defined below. The transition to a new socket state is
40 * handled by a function which verifies we aren't coming from an
41 * unexpected state.
42 *
43 * --------
44 * | NEW* | transient initial state
45 * --------
46 * | con_sock_state_init()
47 * v
48 * ----------
49 * | CLOSED | initialized, but no socket (and no
50 * ---------- TCP connection)
51 * ^ \
52 * | \ con_sock_state_connecting()
53 * | ----------------------
54 * | \
55 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070056 * |+--------------------------- \
57 * | \ \ \
58 * | ----------- \ \
59 * | | CLOSING | socket event; \ \
60 * | ----------- await close \ \
61 * | ^ \ |
62 * | | \ |
63 * | + con_sock_state_closing() \ |
64 * | / \ | |
65 * | / --------------- | |
66 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050067 * | / --------------
68 * | / -----------------| CONNECTING | socket created, TCP
69 * | | / -------------- connect initiated
70 * | | | con_sock_state_connected()
71 * | | v
72 * -------------
73 * | CONNECTED | TCP connection established
74 * -------------
75 *
76 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
77 */
Alex Elderce2c8902012-05-22 22:15:49 -050078
79#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
80#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
81#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
82#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
83#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
84
Sage Weil8dacc7d2012-07-20 17:24:40 -070085/*
86 * connection states
87 */
88#define CON_STATE_CLOSED 1 /* -> PREOPEN */
89#define CON_STATE_PREOPEN 2 /* -> CONNECTING, CLOSED */
90#define CON_STATE_CONNECTING 3 /* -> NEGOTIATING, CLOSED */
91#define CON_STATE_NEGOTIATING 4 /* -> OPEN, CLOSED */
92#define CON_STATE_OPEN 5 /* -> STANDBY, CLOSED */
93#define CON_STATE_STANDBY 6 /* -> PREOPEN, CLOSED */
94
Sage Weil4a861692012-07-20 17:29:55 -070095/*
96 * ceph_connection flag bits
97 */
98#define CON_FLAG_LOSSYTX 0 /* we can close channel or drop
99 * messages on errors */
100#define CON_FLAG_KEEPALIVE_PENDING 1 /* we need to send a keepalive */
101#define CON_FLAG_WRITE_PENDING 2 /* we have data ready to send */
102#define CON_FLAG_SOCK_CLOSED 3 /* socket state changed to closed */
103#define CON_FLAG_BACKOFF 4 /* need to retry queuing delayed work */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700104
Alex Elderc9ffc772013-02-20 10:25:12 -0600105static bool con_flag_valid(unsigned long con_flag)
106{
107 switch (con_flag) {
108 case CON_FLAG_LOSSYTX:
109 case CON_FLAG_KEEPALIVE_PENDING:
110 case CON_FLAG_WRITE_PENDING:
111 case CON_FLAG_SOCK_CLOSED:
112 case CON_FLAG_BACKOFF:
113 return true;
114 default:
115 return false;
116 }
117}
118
119static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
120{
121 BUG_ON(!con_flag_valid(con_flag));
122
123 clear_bit(con_flag, &con->flags);
124}
125
126static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
127{
128 BUG_ON(!con_flag_valid(con_flag));
129
130 set_bit(con_flag, &con->flags);
131}
132
133static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
134{
135 BUG_ON(!con_flag_valid(con_flag));
136
137 return test_bit(con_flag, &con->flags);
138}
139
140static bool con_flag_test_and_clear(struct ceph_connection *con,
141 unsigned long con_flag)
142{
143 BUG_ON(!con_flag_valid(con_flag));
144
145 return test_and_clear_bit(con_flag, &con->flags);
146}
147
148static bool con_flag_test_and_set(struct ceph_connection *con,
149 unsigned long con_flag)
150{
151 BUG_ON(!con_flag_valid(con_flag));
152
153 return test_and_set_bit(con_flag, &con->flags);
154}
155
Alex Eldere3d5d632013-05-01 12:43:04 -0500156/* Slab caches for frequently-allocated structures */
157
158static struct kmem_cache *ceph_msg_cache;
Alex Elder81b36be2013-05-01 12:43:04 -0500159static struct kmem_cache *ceph_msg_data_cache;
Alex Eldere3d5d632013-05-01 12:43:04 -0500160
Sage Weil31b80062009-10-06 11:31:13 -0700161/* static tag bytes (protocol control messages) */
162static char tag_msg = CEPH_MSGR_TAG_MSG;
163static char tag_ack = CEPH_MSGR_TAG_ACK;
164static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
165
Sage Weila6a53492010-04-13 14:07:07 -0700166#ifdef CONFIG_LOCKDEP
167static struct lock_class_key socket_class;
168#endif
169
Alex Elder84495f42012-02-15 07:43:55 -0600170/*
171 * When skipping (ignoring) a block of input we read it into a "skip
172 * buffer," which is this many bytes in size.
173 */
174#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -0700175
176static void queue_con(struct ceph_connection *con);
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400177static void cancel_con(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700178static void con_work(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600179static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700180
Sage Weil31b80062009-10-06 11:31:13 -0700181/*
Alex Elderf64a9312012-01-23 15:49:27 -0600182 * Nicely render a sockaddr as a string. An array of formatted
183 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700184 */
Alex Elderf64a9312012-01-23 15:49:27 -0600185#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
186#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
187#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
188#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
189
190static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
191static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700192
Alex Elder57666512012-01-23 15:49:27 -0600193static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600194
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700195const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700196{
197 int i;
198 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600199 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
200 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700201
Alex Elderf64a9312012-01-23 15:49:27 -0600202 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700203 s = addr_str[i];
204
205 switch (ss->ss_family) {
206 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600207 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
208 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700209 break;
210
211 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600212 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
213 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700214 break;
215
216 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600217 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
218 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700219 }
220
221 return s;
222}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700223EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700224
Sage Weil63f2d212009-11-03 15:17:56 -0800225static void encode_my_addr(struct ceph_messenger *msgr)
226{
227 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
228 ceph_encode_addr(&msgr->my_enc_addr);
229}
230
Sage Weil31b80062009-10-06 11:31:13 -0700231/*
232 * work queue for all reading and writing to/from the socket.
233 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600234static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700235
Alex Eldere3d5d632013-05-01 12:43:04 -0500236static int ceph_msgr_slab_init(void)
237{
238 BUG_ON(ceph_msg_cache);
239 ceph_msg_cache = kmem_cache_create("ceph_msg",
240 sizeof (struct ceph_msg),
241 __alignof__(struct ceph_msg), 0, NULL);
Alex Elder81b36be2013-05-01 12:43:04 -0500242
243 if (!ceph_msg_cache)
244 return -ENOMEM;
245
246 BUG_ON(ceph_msg_data_cache);
247 ceph_msg_data_cache = kmem_cache_create("ceph_msg_data",
248 sizeof (struct ceph_msg_data),
249 __alignof__(struct ceph_msg_data),
250 0, NULL);
251 if (ceph_msg_data_cache)
252 return 0;
253
254 kmem_cache_destroy(ceph_msg_cache);
255 ceph_msg_cache = NULL;
256
257 return -ENOMEM;
Alex Eldere3d5d632013-05-01 12:43:04 -0500258}
259
260static void ceph_msgr_slab_exit(void)
261{
Alex Elder81b36be2013-05-01 12:43:04 -0500262 BUG_ON(!ceph_msg_data_cache);
263 kmem_cache_destroy(ceph_msg_data_cache);
264 ceph_msg_data_cache = NULL;
265
Alex Eldere3d5d632013-05-01 12:43:04 -0500266 BUG_ON(!ceph_msg_cache);
267 kmem_cache_destroy(ceph_msg_cache);
268 ceph_msg_cache = NULL;
269}
270
Alex Elder15417162013-02-19 12:25:56 -0600271static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600272{
Alex Elderd3002b92012-02-14 14:05:33 -0600273 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600274 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600275 ceph_msgr_wq = NULL;
276 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600277
Alex Eldere3d5d632013-05-01 12:43:04 -0500278 ceph_msgr_slab_exit();
279
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;
283}
284
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700285int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700286{
Alex Elder57666512012-01-23 15:49:27 -0600287 BUG_ON(zero_page != NULL);
288 zero_page = ZERO_PAGE(0);
289 page_cache_get(zero_page);
290
Alex Eldere3d5d632013-05-01 12:43:04 -0500291 if (ceph_msgr_slab_init())
292 return -ENOMEM;
293
Ilya Dryomovf9865f02014-10-10 16:39:05 +0400294 /*
295 * The number of active work items is limited by the number of
296 * connections, so leave @max_active at default.
297 */
298 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_MEM_RECLAIM, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600299 if (ceph_msgr_wq)
300 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600301
Alex Elder6173d1f2012-02-14 14:05:33 -0600302 pr_err("msgr_init failed to create workqueue\n");
303 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600304
Alex Elder6173d1f2012-02-14 14:05:33 -0600305 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700306}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700307EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700308
309void ceph_msgr_exit(void)
310{
Alex Elder57666512012-01-23 15:49:27 -0600311 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600312
Alex Elder6173d1f2012-02-14 14:05:33 -0600313 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700314}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700315EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700316
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700317void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700318{
319 flush_workqueue(ceph_msgr_wq);
320}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700321EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700322
Alex Elderce2c8902012-05-22 22:15:49 -0500323/* Connection socket state transition functions */
324
325static void con_sock_state_init(struct ceph_connection *con)
326{
327 int old_state;
328
329 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
330 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
331 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700332 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
333 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500334}
335
336static void con_sock_state_connecting(struct ceph_connection *con)
337{
338 int old_state;
339
340 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
341 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
342 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700343 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
344 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500345}
346
347static void con_sock_state_connected(struct ceph_connection *con)
348{
349 int old_state;
350
351 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
352 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
353 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700354 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
355 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500356}
357
358static void con_sock_state_closing(struct ceph_connection *con)
359{
360 int old_state;
361
362 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
363 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
364 old_state != CON_SOCK_STATE_CONNECTED &&
365 old_state != CON_SOCK_STATE_CLOSING))
366 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700367 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
368 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500369}
370
371static void con_sock_state_closed(struct ceph_connection *con)
372{
373 int old_state;
374
375 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
376 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700377 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700378 old_state != CON_SOCK_STATE_CONNECTING &&
379 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500380 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700381 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
382 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500383}
Sage Weila922d382010-05-29 09:41:23 -0700384
Sage Weil31b80062009-10-06 11:31:13 -0700385/*
386 * socket callback functions
387 */
388
389/* data available on socket, or listen socket received a connect */
David S. Miller676d2362014-04-11 16:15:36 -0400390static void ceph_sock_data_ready(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700391{
Alex Elderbd406142012-01-23 15:49:27 -0600392 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700393 if (atomic_read(&con->msgr->stopping)) {
394 return;
395 }
Alex Elderbd406142012-01-23 15:49:27 -0600396
Sage Weil31b80062009-10-06 11:31:13 -0700397 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500398 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700399 con, con->state);
400 queue_con(con);
401 }
402}
403
404/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500405static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700406{
Alex Elderd3002b92012-02-14 14:05:33 -0600407 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700408
Jim Schutt182fac22012-02-29 08:30:58 -0700409 /* only queue to workqueue if there is data we want to write,
410 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500411 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700412 * doesn't get called again until try_write() fills the socket
413 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
414 * and net/core/stream.c:sk_stream_write_space().
415 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600416 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Eric Dumazet64dc6132013-07-22 20:26:31 -0700417 if (sk_stream_is_writeable(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500418 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700419 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
420 queue_con(con);
421 }
Sage Weil31b80062009-10-06 11:31:13 -0700422 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500423 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700424 }
Sage Weil31b80062009-10-06 11:31:13 -0700425}
426
427/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500428static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700429{
Alex Elderbd406142012-01-23 15:49:27 -0600430 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700431
Alex Elder327800b2012-05-22 11:41:43 -0500432 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700433 con, con->state, sk->sk_state);
434
Sage Weil31b80062009-10-06 11:31:13 -0700435 switch (sk->sk_state) {
436 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500437 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700438 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500439 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500440 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600441 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500442 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700443 break;
444 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500445 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500446 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700447 queue_con(con);
448 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600449 default: /* Everything else is uninteresting */
450 break;
Sage Weil31b80062009-10-06 11:31:13 -0700451 }
452}
453
454/*
455 * set up socket callbacks
456 */
457static void set_sock_callbacks(struct socket *sock,
458 struct ceph_connection *con)
459{
460 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600461 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500462 sk->sk_data_ready = ceph_sock_data_ready;
463 sk->sk_write_space = ceph_sock_write_space;
464 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700465}
466
467
468/*
469 * socket helpers
470 */
471
472/*
473 * initiate connection to a remote socket.
474 */
Alex Elder41617d02012-02-14 14:05:33 -0600475static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700476{
Sage Weilf91d3472010-07-01 15:18:31 -0700477 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700478 struct socket *sock;
479 int ret;
480
481 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700482 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
483 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700484 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600485 return ret;
Ilya Dryomov6d7fdb02015-04-02 14:40:58 +0300486 sock->sk->sk_allocation = GFP_NOFS;
Sage Weil31b80062009-10-06 11:31:13 -0700487
Sage Weila6a53492010-04-13 14:07:07 -0700488#ifdef CONFIG_LOCKDEP
489 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
490#endif
491
Sage Weil31b80062009-10-06 11:31:13 -0700492 set_sock_callbacks(sock, con);
493
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700494 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700495
Sage Weil89a86be2012-06-09 14:19:21 -0700496 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700497 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
498 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700499 if (ret == -EINPROGRESS) {
500 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700501 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700502 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600503 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700504 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700505 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700506 sock_release(sock);
Alex Elder41617d02012-02-14 14:05:33 -0600507 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600508 }
Mike Christie89baaa52014-10-16 01:50:19 -0500509
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530510 if (con->msgr->tcp_nodelay) {
511 int optval = 1;
512
513 ret = kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY,
514 (char *)&optval, sizeof(optval));
515 if (ret)
516 pr_err("kernel_setsockopt(TCP_NODELAY) failed: %d",
517 ret);
518 }
519
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600520 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600521 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700522}
523
524static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
525{
526 struct kvec iov = {buf, len};
527 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800528 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700529
Sage Weil98bdb0a2011-01-25 08:17:48 -0800530 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
531 if (r == -EAGAIN)
532 r = 0;
533 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700534}
535
Alex Elderafb3d902013-03-08 20:58:59 -0600536static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
537 int page_offset, size_t length)
538{
539 void *kaddr;
540 int ret;
541
542 BUG_ON(page_offset + length > PAGE_SIZE);
543
544 kaddr = kmap(page);
545 BUG_ON(!kaddr);
546 ret = ceph_tcp_recvmsg(sock, kaddr + page_offset, length);
547 kunmap(page);
548
549 return ret;
550}
551
Sage Weil31b80062009-10-06 11:31:13 -0700552/*
553 * write something. @more is true if caller will be sending more data
554 * shortly.
555 */
556static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
557 size_t kvlen, size_t len, int more)
558{
559 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800560 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700561
562 if (more)
563 msg.msg_flags |= MSG_MORE;
564 else
565 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
566
Sage Weil42961d22011-01-25 08:19:34 -0800567 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
568 if (r == -EAGAIN)
569 r = 0;
570 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700571}
572
Chunwei Chen178eda22014-04-23 12:35:09 +0800573static int __ceph_tcp_sendpage(struct socket *sock, struct page *page,
Alex Eldere1dcb122013-03-06 23:39:38 -0600574 int offset, size_t size, bool more)
Alex Elder31739132012-03-07 11:40:08 -0600575{
576 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
577 int ret;
578
579 ret = kernel_sendpage(sock, page, offset, size, flags);
580 if (ret == -EAGAIN)
581 ret = 0;
582
583 return ret;
584}
585
Chunwei Chen178eda22014-04-23 12:35:09 +0800586static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
587 int offset, size_t size, bool more)
588{
589 int ret;
590 struct kvec iov;
591
592 /* sendpage cannot properly handle pages with page_count == 0,
593 * we need to fallback to sendmsg if that's the case */
594 if (page_count(page) >= 1)
595 return __ceph_tcp_sendpage(sock, page, offset, size, more);
596
597 iov.iov_base = kmap(page) + offset;
598 iov.iov_len = size;
599 ret = ceph_tcp_sendmsg(sock, &iov, 1, size, more);
600 kunmap(page);
601
602 return ret;
603}
Sage Weil31b80062009-10-06 11:31:13 -0700604
605/*
606 * Shutdown/close the socket for the given connection.
607 */
608static int con_close_socket(struct ceph_connection *con)
609{
Sage Weil8007b8d2012-07-30 18:16:16 -0700610 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700611
612 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700613 if (con->sock) {
614 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
615 sock_release(con->sock);
616 con->sock = NULL;
617 }
Alex Elder456ea462012-06-20 21:53:53 -0500618
619 /*
Sage Weil4a861692012-07-20 17:29:55 -0700620 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500621 * independent of the connection mutex, and we could have
622 * received a socket close event before we had the chance to
623 * shut the socket down.
624 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600625 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700626
Alex Elderce2c8902012-05-22 22:15:49 -0500627 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700628 return rc;
629}
630
631/*
632 * Reset a connection. Discard all incoming and outgoing messages
633 * and clear *_seq state.
634 */
635static void ceph_msg_remove(struct ceph_msg *msg)
636{
637 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500638 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700639 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500640 msg->con = NULL;
641
Sage Weil31b80062009-10-06 11:31:13 -0700642 ceph_msg_put(msg);
643}
644static void ceph_msg_remove_list(struct list_head *head)
645{
646 while (!list_empty(head)) {
647 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
648 list_head);
649 ceph_msg_remove(msg);
650 }
651}
652
653static void reset_connection(struct ceph_connection *con)
654{
655 /* reset connection, out_queue, msg_ and connect_seq */
656 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600657 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700658 ceph_msg_remove_list(&con->out_queue);
659 ceph_msg_remove_list(&con->out_sent);
660
Sage Weilcf3e5c42009-12-11 09:48:05 -0800661 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500662 BUG_ON(con->in_msg->con != con);
663 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800664 ceph_msg_put(con->in_msg);
665 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700666 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800667 }
668
Sage Weil31b80062009-10-06 11:31:13 -0700669 con->connect_seq = 0;
670 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800671 if (con->out_msg) {
672 ceph_msg_put(con->out_msg);
673 con->out_msg = NULL;
674 }
Sage Weil31b80062009-10-06 11:31:13 -0700675 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700676 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700677}
678
679/*
680 * mark a peer down. drop any open connections.
681 */
682void ceph_con_close(struct ceph_connection *con)
683{
Sage Weil8c50c812012-07-30 16:24:37 -0700684 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700685 dout("con_close %p peer %s\n", con,
686 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700687 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500688
Alex Elderc9ffc772013-02-20 10:25:12 -0600689 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
690 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
691 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
692 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500693
Sage Weil31b80062009-10-06 11:31:13 -0700694 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700695 con->peer_global_seq = 0;
Ilya Dryomov37ab77a2014-06-24 16:21:45 +0400696 cancel_con(con);
Sage Weilee76e072012-07-20 16:45:49 -0700697 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800698 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700699}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700700EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700701
702/*
Sage Weil31b80062009-10-06 11:31:13 -0700703 * Reopen a closed connection, with a new peer address.
704 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700705void ceph_con_open(struct ceph_connection *con,
706 __u8 entity_type, __u64 entity_num,
707 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700708{
Sage Weil54691552012-07-30 16:21:40 -0700709 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700710 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700711
Alex Elder122070a2012-12-26 10:43:57 -0600712 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700713 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500714
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700715 con->peer_name.type = (__u8) entity_type;
716 con->peer_name.num = cpu_to_le64(entity_num);
717
Sage Weil31b80062009-10-06 11:31:13 -0700718 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800719 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700720 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700721 queue_con(con);
722}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700723EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700724
725/*
Sage Weil87b315a2010-03-22 14:51:18 -0700726 * return true if this connection ever successfully opened
727 */
728bool ceph_con_opened(struct ceph_connection *con)
729{
730 return con->connect_seq > 0;
731}
732
733/*
Sage Weil31b80062009-10-06 11:31:13 -0700734 * initialize a new connection.
735 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500736void ceph_con_init(struct ceph_connection *con, void *private,
737 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700738 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700739{
740 dout("con_init %p\n", con);
741 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500742 con->private = private;
743 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700744 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500745
746 con_sock_state_init(con);
747
Sage Weilec302642009-12-22 10:43:42 -0800748 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700749 INIT_LIST_HEAD(&con->out_queue);
750 INIT_LIST_HEAD(&con->out_sent);
751 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500752
Sage Weil8dacc7d2012-07-20 17:24:40 -0700753 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700754}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700755EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700756
757
758/*
759 * We maintain a global counter to order connection attempts. Get
760 * a unique seq greater than @gt.
761 */
762static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
763{
764 u32 ret;
765
766 spin_lock(&msgr->global_seq_lock);
767 if (msgr->global_seq < gt)
768 msgr->global_seq = gt;
769 ret = ++msgr->global_seq;
770 spin_unlock(&msgr->global_seq_lock);
771 return ret;
772}
773
Alex Eldere2200422012-05-23 14:35:23 -0500774static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600775{
776 con->out_kvec_left = 0;
777 con->out_kvec_bytes = 0;
778 con->out_kvec_cur = &con->out_kvec[0];
779}
780
Alex Eldere2200422012-05-23 14:35:23 -0500781static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600782 size_t size, void *data)
783{
784 int index;
785
786 index = con->out_kvec_left;
787 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
788
789 con->out_kvec[index].iov_len = size;
790 con->out_kvec[index].iov_base = data;
791 con->out_kvec_left++;
792 con->out_kvec_bytes += size;
793}
Sage Weil31b80062009-10-06 11:31:13 -0700794
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500795#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600796
797/*
798 * For a bio data item, a piece is whatever remains of the next
799 * entry in the current bio iovec, or the first entry in the next
800 * bio in the list.
801 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500802static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500803 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600804{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500805 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600806 struct bio *bio;
807
808 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
809
810 bio = data->bio;
811 BUG_ON(!bio);
Alex Elder6aaa4512013-03-06 23:39:39 -0600812
Alex Elderca8b3a62013-04-05 14:46:01 -0500813 cursor->resid = min(length, data->bio_length);
Alex Elder6aaa4512013-03-06 23:39:39 -0600814 cursor->bio = bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700815 cursor->bvec_iter = bio->bi_iter;
816 cursor->last_piece =
817 cursor->resid <= bio_iter_len(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600818}
819
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500820static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
Alex Elder6aaa4512013-03-06 23:39:39 -0600821 size_t *page_offset,
822 size_t *length)
823{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500824 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600825 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700826 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600827
828 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
829
830 bio = cursor->bio;
831 BUG_ON(!bio);
832
Kent Overstreetf38a5182013-08-07 14:30:24 -0700833 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600834
Kent Overstreetf38a5182013-08-07 14:30:24 -0700835 *page_offset = (size_t) bio_vec.bv_offset;
Alex Elder6aaa4512013-03-06 23:39:39 -0600836 BUG_ON(*page_offset >= PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500837 if (cursor->last_piece) /* pagelist offset is always 0 */
838 *length = cursor->resid;
839 else
Kent Overstreetf38a5182013-08-07 14:30:24 -0700840 *length = (size_t) bio_vec.bv_len;
Alex Elder25aff7c2013-03-11 23:34:22 -0500841 BUG_ON(*length > cursor->resid);
Alex Elder5df521b2013-03-30 15:09:59 -0500842 BUG_ON(*page_offset + *length > PAGE_SIZE);
Alex Elder6aaa4512013-03-06 23:39:39 -0600843
Kent Overstreetf38a5182013-08-07 14:30:24 -0700844 return bio_vec.bv_page;
Alex Elder6aaa4512013-03-06 23:39:39 -0600845}
846
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500847static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
848 size_t bytes)
Alex Elder6aaa4512013-03-06 23:39:39 -0600849{
Alex Elder6aaa4512013-03-06 23:39:39 -0600850 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700851 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600852
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500853 BUG_ON(cursor->data->type != CEPH_MSG_DATA_BIO);
Alex Elder6aaa4512013-03-06 23:39:39 -0600854
855 bio = cursor->bio;
856 BUG_ON(!bio);
857
Kent Overstreetf38a5182013-08-07 14:30:24 -0700858 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600859
860 /* Advance the cursor offset */
861
Alex Elder25aff7c2013-03-11 23:34:22 -0500862 BUG_ON(cursor->resid < bytes);
863 cursor->resid -= bytes;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700864
865 bio_advance_iter(bio, &cursor->bvec_iter, bytes);
866
867 if (bytes < bio_vec.bv_len)
Alex Elder6aaa4512013-03-06 23:39:39 -0600868 return false; /* more bytes to process in this segment */
869
870 /* Move on to the next segment, and possibly the next bio */
871
Kent Overstreetf38a5182013-08-07 14:30:24 -0700872 if (!cursor->bvec_iter.bi_size) {
Alex Elder6aaa4512013-03-06 23:39:39 -0600873 bio = bio->bi_next;
Ilya Dryomov0ec1d152014-02-05 15:19:55 +0200874 cursor->bio = bio;
875 if (bio)
876 cursor->bvec_iter = bio->bi_iter;
877 else
878 memset(&cursor->bvec_iter, 0,
879 sizeof(cursor->bvec_iter));
Alex Elder6aaa4512013-03-06 23:39:39 -0600880 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600881
Alex Elder25aff7c2013-03-11 23:34:22 -0500882 if (!cursor->last_piece) {
883 BUG_ON(!cursor->resid);
884 BUG_ON(!bio);
885 /* A short read is OK, so use <= rather than == */
Kent Overstreetf38a5182013-08-07 14:30:24 -0700886 if (cursor->resid <= bio_iter_len(bio, cursor->bvec_iter))
Alex Elder6aaa4512013-03-06 23:39:39 -0600887 cursor->last_piece = true;
Alex Elder25aff7c2013-03-11 23:34:22 -0500888 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600889
890 return true;
891}
Alex Elderea965712013-04-05 14:46:01 -0500892#endif /* CONFIG_BLOCK */
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500893
Alex Elderfe38a2b2013-03-06 23:39:39 -0600894/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600895 * For a page array, a piece comes from the first page in the array
896 * that has not already been fully consumed.
897 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500898static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500899 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600900{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500901 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600902 int page_count;
903
904 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
905
906 BUG_ON(!data->pages);
907 BUG_ON(!data->length);
908
Alex Elderca8b3a62013-04-05 14:46:01 -0500909 cursor->resid = min(length, data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600910 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600911 cursor->page_offset = data->alignment & ~PAGE_MASK;
912 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500913 BUG_ON(page_count > (int)USHRT_MAX);
914 cursor->page_count = (unsigned short)page_count;
915 BUG_ON(length > SIZE_MAX - cursor->page_offset);
Ilya Dryomov5f740d72014-08-08 12:43:39 +0400916 cursor->last_piece = cursor->page_offset + cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600917}
918
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500919static struct page *
920ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
921 size_t *page_offset, size_t *length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600922{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500923 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600924
925 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
926
927 BUG_ON(cursor->page_index >= cursor->page_count);
928 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600929
930 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500931 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600932 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500933 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600934 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600935
936 return data->pages[cursor->page_index];
937}
938
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500939static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
Alex Eldere766d7b2013-03-07 15:38:28 -0600940 size_t bytes)
941{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500942 BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
Alex Eldere766d7b2013-03-07 15:38:28 -0600943
944 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600945
946 /* Advance the cursor page offset */
947
948 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500949 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
950 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -0600951 return false; /* more bytes to process in the current page */
952
Yan, Zhengd90deda2014-03-23 06:50:39 +0800953 if (!cursor->resid)
954 return false; /* no more data */
955
Alex Elder5df521b2013-03-30 15:09:59 -0500956 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -0600957
958 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -0600959 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500960 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600961
962 return true;
963}
964
965/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600966 * For a pagelist, a piece is whatever remains to be consumed in the
967 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600968 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500969static void
970ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500971 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600972{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500973 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600974 struct ceph_pagelist *pagelist;
975 struct page *page;
976
Alex Elderdd236fc2013-03-06 23:39:39 -0600977 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600978
979 pagelist = data->pagelist;
980 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500981
982 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600983 return; /* pagelist can be assigned but empty */
984
985 BUG_ON(list_empty(&pagelist->head));
986 page = list_first_entry(&pagelist->head, struct page, lru);
987
Alex Elderca8b3a62013-04-05 14:46:01 -0500988 cursor->resid = min(length, pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600989 cursor->page = page;
990 cursor->offset = 0;
Alex Eldera51b272e2013-04-19 15:34:49 -0500991 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600992}
993
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500994static struct page *
995ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
996 size_t *page_offset, size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600997{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500998 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600999 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001000
1001 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1002
1003 pagelist = data->pagelist;
1004 BUG_ON(!pagelist);
1005
1006 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -05001007 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001008
Alex Elder5df521b2013-03-30 15:09:59 -05001009 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001010 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -05001011 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -05001012 *length = cursor->resid;
1013 else
1014 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001015
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001016 return cursor->page;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001017}
1018
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001019static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
Alex Elderdd236fc2013-03-06 23:39:39 -06001020 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001021{
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001022 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001023 struct ceph_pagelist *pagelist;
1024
1025 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1026
1027 pagelist = data->pagelist;
1028 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -05001029
1030 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001031 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1032
1033 /* Advance the cursor offset */
1034
Alex Elder25aff7c2013-03-11 23:34:22 -05001035 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001036 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001037 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001038 if (!bytes || cursor->offset & ~PAGE_MASK)
1039 return false; /* more bytes to process in the current page */
1040
Yan, Zhengd90deda2014-03-23 06:50:39 +08001041 if (!cursor->resid)
1042 return false; /* no more data */
1043
Alex Elderfe38a2b2013-03-06 23:39:39 -06001044 /* Move on to the next page */
1045
1046 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
1047 cursor->page = list_entry_next(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -05001048 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001049
1050 return true;
1051}
1052
Alex Elderdd236fc2013-03-06 23:39:39 -06001053/*
1054 * Message data is handled (sent or received) in pieces, where each
1055 * piece resides on a single page. The network layer might not
1056 * consume an entire piece at once. A data item's cursor keeps
1057 * track of which piece is next to process and how much remains to
1058 * be processed in that piece. It also tracks whether the current
1059 * piece is the last one in the data item.
1060 */
Alex Elderca8b3a62013-04-05 14:46:01 -05001061static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
Alex Elderdd236fc2013-03-06 23:39:39 -06001062{
Alex Elderca8b3a62013-04-05 14:46:01 -05001063 size_t length = cursor->total_resid;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001064
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001065 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001066 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001067 ceph_msg_data_pagelist_cursor_init(cursor, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001068 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001069 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001070 ceph_msg_data_pages_cursor_init(cursor, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001071 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001072#ifdef CONFIG_BLOCK
1073 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001074 ceph_msg_data_bio_cursor_init(cursor, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001075 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001076#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001077 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001078 default:
1079 /* BUG(); */
1080 break;
1081 }
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001082 cursor->need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001083}
1084
Alex Elderca8b3a62013-04-05 14:46:01 -05001085static void ceph_msg_data_cursor_init(struct ceph_msg *msg, size_t length)
1086{
1087 struct ceph_msg_data_cursor *cursor = &msg->cursor;
1088 struct ceph_msg_data *data;
1089
1090 BUG_ON(!length);
1091 BUG_ON(length > msg->data_length);
1092 BUG_ON(list_empty(&msg->data));
1093
Alex Elderca8b3a62013-04-05 14:46:01 -05001094 cursor->data_head = &msg->data;
1095 cursor->total_resid = length;
1096 data = list_first_entry(&msg->data, struct ceph_msg_data, links);
1097 cursor->data = data;
1098
1099 __ceph_msg_data_cursor_init(cursor);
1100}
1101
Alex Elderdd236fc2013-03-06 23:39:39 -06001102/*
1103 * Return the page containing the next piece to process for a given
1104 * data item, and supply the page offset and length of that piece.
1105 * Indicate whether this is the last piece in this data item.
1106 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001107static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1108 size_t *page_offset, size_t *length,
Alex Elderdd236fc2013-03-06 23:39:39 -06001109 bool *last_piece)
1110{
1111 struct page *page;
1112
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001113 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001114 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001115 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001116 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001117 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001118 page = ceph_msg_data_pages_next(cursor, page_offset, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001119 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001120#ifdef CONFIG_BLOCK
1121 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001122 page = ceph_msg_data_bio_next(cursor, page_offset, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001123 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001124#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001125 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001126 default:
1127 page = NULL;
1128 break;
1129 }
1130 BUG_ON(!page);
1131 BUG_ON(*page_offset + *length > PAGE_SIZE);
1132 BUG_ON(!*length);
1133 if (last_piece)
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001134 *last_piece = cursor->last_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001135
1136 return page;
1137}
1138
1139/*
1140 * Returns true if the result moves the cursor on to the next piece
1141 * of the data item.
1142 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001143static bool ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1144 size_t bytes)
Alex Elderdd236fc2013-03-06 23:39:39 -06001145{
1146 bool new_piece;
1147
Alex Elder25aff7c2013-03-11 23:34:22 -05001148 BUG_ON(bytes > cursor->resid);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001149 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001150 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001151 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
Alex Elderdd236fc2013-03-06 23:39:39 -06001152 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001153 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001154 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
Alex Eldere766d7b2013-03-07 15:38:28 -06001155 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001156#ifdef CONFIG_BLOCK
1157 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001158 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
Alex Elder6aaa4512013-03-06 23:39:39 -06001159 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001160#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001161 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001162 default:
1163 BUG();
1164 break;
1165 }
Alex Elderca8b3a62013-04-05 14:46:01 -05001166 cursor->total_resid -= bytes;
Alex Elderdd236fc2013-03-06 23:39:39 -06001167
Alex Elderca8b3a62013-04-05 14:46:01 -05001168 if (!cursor->resid && cursor->total_resid) {
1169 WARN_ON(!cursor->last_piece);
1170 BUG_ON(list_is_last(&cursor->data->links, cursor->data_head));
1171 cursor->data = list_entry_next(cursor->data, links);
1172 __ceph_msg_data_cursor_init(cursor);
Alex Eldera51b272e2013-04-19 15:34:49 -05001173 new_piece = true;
Alex Elderca8b3a62013-04-05 14:46:01 -05001174 }
Alex Eldera51b272e2013-04-19 15:34:49 -05001175 cursor->need_crc = new_piece;
Alex Elderca8b3a62013-04-05 14:46:01 -05001176
Alex Elderdd236fc2013-03-06 23:39:39 -06001177 return new_piece;
1178}
1179
Alex Elder98fa5dd2013-04-02 12:09:50 -05001180static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
Alex Elder739c9052012-06-11 14:57:13 -05001181{
Alex Elder739c9052012-06-11 14:57:13 -05001182 BUG_ON(!msg);
Alex Elder25aff7c2013-03-11 23:34:22 -05001183 BUG_ON(!data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001184
Alex Elder4c59b4a2013-03-11 23:34:23 -05001185 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001186
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001187 ceph_msg_data_cursor_init(msg, (size_t)data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001188}
1189
Sage Weil31b80062009-10-06 11:31:13 -07001190/*
1191 * Prepare footer for currently outgoing message, and finish things
1192 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1193 */
Alex Elder859eb792012-02-14 14:05:33 -06001194static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001195{
1196 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001197 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001198
Alex Elderfd154f32012-06-11 14:57:13 -05001199 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1200
Sage Weil31b80062009-10-06 11:31:13 -07001201 dout("prepare_write_message_footer %p\n", con);
1202 con->out_kvec_is_msg = true;
1203 con->out_kvec[v].iov_base = &m->footer;
Yan, Zheng33d07332014-11-04 16:33:37 +08001204 if (con->peer_features & CEPH_FEATURE_MSG_AUTH) {
1205 if (con->ops->sign_message)
1206 con->ops->sign_message(con, m);
1207 else
1208 m->footer.sig = 0;
1209 con->out_kvec[v].iov_len = sizeof(m->footer);
1210 con->out_kvec_bytes += sizeof(m->footer);
1211 } else {
1212 m->old_footer.flags = m->footer.flags;
1213 con->out_kvec[v].iov_len = sizeof(m->old_footer);
1214 con->out_kvec_bytes += sizeof(m->old_footer);
1215 }
Sage Weil31b80062009-10-06 11:31:13 -07001216 con->out_kvec_left++;
1217 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001218 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001219}
1220
1221/*
1222 * Prepare headers for the next outgoing message.
1223 */
1224static void prepare_write_message(struct ceph_connection *con)
1225{
1226 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001227 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001228
Alex Eldere2200422012-05-23 14:35:23 -05001229 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001230 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001231 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001232
1233 /* Sneak an ack in there first? If we can get it into the same
1234 * TCP packet that's a good thing. */
1235 if (con->in_seq > con->in_seq_acked) {
1236 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001237 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001238 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001239 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001240 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001241 }
1242
Alex Elder38941f82012-06-01 14:56:43 -05001243 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001244 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001245 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001246 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001247
1248 /* put message on sent list */
1249 ceph_msg_get(m);
1250 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001251
Sage Weile84346b2010-05-11 21:20:38 -07001252 /*
1253 * only assign outgoing seq # if we haven't sent this message
1254 * yet. if it is requeued, resend with it's original seq.
1255 */
1256 if (m->needs_out_seq) {
1257 m->hdr.seq = cpu_to_le64(++con->out_seq);
1258 m->needs_out_seq = false;
1259 }
Alex Elder98fa5dd2013-04-02 12:09:50 -05001260 WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001261
Alex Elder98fa5dd2013-04-02 12:09:50 -05001262 dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
Sage Weil31b80062009-10-06 11:31:13 -07001263 m, con->out_seq, le16_to_cpu(m->hdr.type),
1264 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder98fa5dd2013-04-02 12:09:50 -05001265 m->data_length);
Sage Weil31b80062009-10-06 11:31:13 -07001266 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1267
1268 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001269 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1270 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1271 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001272
Sage Weil31b80062009-10-06 11:31:13 -07001273 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001274 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001275 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001276
1277 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001278 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1279 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001280 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001281
1282 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1283 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1284 if (m->middle) {
1285 crc = crc32c(0, m->middle->vec.iov_base,
1286 m->middle->vec.iov_len);
1287 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1288 } else
Sage Weil31b80062009-10-06 11:31:13 -07001289 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001290 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001291 le32_to_cpu(con->out_msg->footer.front_crc),
1292 le32_to_cpu(con->out_msg->footer.middle_crc));
1293
1294 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001295 con->out_msg->footer.data_crc = 0;
Alex Elder98fa5dd2013-04-02 12:09:50 -05001296 if (m->data_length) {
1297 prepare_message_data(con->out_msg, m->data_length);
Alex Elder78625052013-03-06 23:39:39 -06001298 con->out_more = 1; /* data + footer will follow */
1299 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001300 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001301 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001302 }
Sage Weil31b80062009-10-06 11:31:13 -07001303
Alex Elderc9ffc772013-02-20 10:25:12 -06001304 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001305}
1306
1307/*
1308 * Prepare an ack.
1309 */
1310static void prepare_write_ack(struct ceph_connection *con)
1311{
1312 dout("prepare_write_ack %p %llu -> %llu\n", con,
1313 con->in_seq_acked, con->in_seq);
1314 con->in_seq_acked = con->in_seq;
1315
Alex Eldere2200422012-05-23 14:35:23 -05001316 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001317
Alex Eldere2200422012-05-23 14:35:23 -05001318 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001319
Sage Weil31b80062009-10-06 11:31:13 -07001320 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001321 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001322 &con->out_temp_ack);
1323
Sage Weil31b80062009-10-06 11:31:13 -07001324 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001325 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001326}
1327
1328/*
Sage Weil3a230832013-03-25 08:47:40 -07001329 * Prepare to share the seq during handshake
1330 */
1331static void prepare_write_seq(struct ceph_connection *con)
1332{
1333 dout("prepare_write_seq %p %llu -> %llu\n", con,
1334 con->in_seq_acked, con->in_seq);
1335 con->in_seq_acked = con->in_seq;
1336
1337 con_out_kvec_reset(con);
1338
1339 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1340 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1341 &con->out_temp_ack);
1342
1343 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1344}
1345
1346/*
Sage Weil31b80062009-10-06 11:31:13 -07001347 * Prepare to write keepalive byte.
1348 */
1349static void prepare_write_keepalive(struct ceph_connection *con)
1350{
1351 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001352 con_out_kvec_reset(con);
1353 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001354 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001355}
1356
1357/*
1358 * Connection negotiation.
1359 */
1360
Alex Elderdac1e712012-05-16 15:16:39 -05001361static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1362 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001363{
Alex Eldera3530df2012-05-16 15:16:39 -05001364 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001365
1366 if (!con->ops->get_authorizer) {
1367 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1368 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001369 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001370 }
1371
1372 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001373 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001374 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001375 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001376
Alex Eldera3530df2012-05-16 15:16:39 -05001377 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001378 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001379 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001380 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001381
Alex Elder8f43fb52012-05-16 15:16:39 -05001382 con->auth_reply_buf = auth->authorizer_reply_buf;
1383 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001384 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001385}
1386
Sage Weil31b80062009-10-06 11:31:13 -07001387/*
1388 * We connected to a peer and are saying hello.
1389 */
Alex Eldere825a662012-05-16 15:16:38 -05001390static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001391{
Alex Eldere2200422012-05-23 14:35:23 -05001392 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1393 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001394 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001395
Sage Weileed0ef22009-11-10 14:34:36 -08001396 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001397 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001398}
1399
Alex Eldere825a662012-05-16 15:16:38 -05001400static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001401{
Eric Dumazet95c96172012-04-15 05:58:06 +00001402 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001403 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001404 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001405 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001406
1407 switch (con->peer_name.type) {
1408 case CEPH_ENTITY_TYPE_MON:
1409 proto = CEPH_MONC_PROTOCOL;
1410 break;
1411 case CEPH_ENTITY_TYPE_OSD:
1412 proto = CEPH_OSDC_PROTOCOL;
1413 break;
1414 case CEPH_ENTITY_TYPE_MDS:
1415 proto = CEPH_MDSC_PROTOCOL;
1416 break;
1417 default:
1418 BUG();
1419 }
1420
1421 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1422 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001423
Alex Eldere825a662012-05-16 15:16:38 -05001424 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001425 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1426 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1427 con->out_connect.global_seq = cpu_to_le32(global_seq);
1428 con->out_connect.protocol_version = cpu_to_le32(proto);
1429 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001430
Alex Elderdac1e712012-05-16 15:16:39 -05001431 auth_proto = CEPH_AUTH_UNKNOWN;
1432 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001433 if (IS_ERR(auth))
1434 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001435
Alex Elderdac1e712012-05-16 15:16:39 -05001436 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001437 con->out_connect.authorizer_len = auth ?
1438 cpu_to_le32(auth->authorizer_buf_len) : 0;
1439
Alex Eldere2200422012-05-23 14:35:23 -05001440 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001441 &con->out_connect);
1442 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001443 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001444 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001445
Sage Weil31b80062009-10-06 11:31:13 -07001446 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001447 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001448
Alex Eldere10c7582012-05-16 15:16:38 -05001449 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001450}
1451
Sage Weil31b80062009-10-06 11:31:13 -07001452/*
1453 * write as much of pending kvecs to the socket as we can.
1454 * 1 -> done
1455 * 0 -> socket full, but more to do
1456 * <0 -> error
1457 */
1458static int write_partial_kvec(struct ceph_connection *con)
1459{
1460 int ret;
1461
1462 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1463 while (con->out_kvec_bytes > 0) {
1464 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1465 con->out_kvec_left, con->out_kvec_bytes,
1466 con->out_more);
1467 if (ret <= 0)
1468 goto out;
1469 con->out_kvec_bytes -= ret;
1470 if (con->out_kvec_bytes == 0)
1471 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001472
1473 /* account for full iov entries consumed */
1474 while (ret >= con->out_kvec_cur->iov_len) {
1475 BUG_ON(!con->out_kvec_left);
1476 ret -= con->out_kvec_cur->iov_len;
1477 con->out_kvec_cur++;
1478 con->out_kvec_left--;
1479 }
1480 /* and for a partially-consumed entry */
1481 if (ret) {
1482 con->out_kvec_cur->iov_len -= ret;
1483 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001484 }
1485 }
1486 con->out_kvec_left = 0;
1487 con->out_kvec_is_msg = false;
1488 ret = 1;
1489out:
1490 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1491 con->out_kvec_bytes, con->out_kvec_left, ret);
1492 return ret; /* done! */
1493}
1494
Alex Elder35b62802013-03-08 20:59:00 -06001495static u32 ceph_crc32c_page(u32 crc, struct page *page,
1496 unsigned int page_offset,
1497 unsigned int length)
1498{
1499 char *kaddr;
1500
1501 kaddr = kmap(page);
1502 BUG_ON(kaddr == NULL);
1503 crc = crc32c(crc, kaddr + page_offset, length);
1504 kunmap(page);
1505
1506 return crc;
1507}
Sage Weil31b80062009-10-06 11:31:13 -07001508/*
1509 * Write as much message data payload as we can. If we finish, queue
1510 * up the footer.
1511 * 1 -> done, footer is now queued in out_kvec[].
1512 * 0 -> socket full, but more to do
1513 * <0 -> error
1514 */
Alex Elder34d2d202013-03-08 20:58:59 -06001515static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001516{
1517 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001518 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder37675b02012-03-07 11:40:08 -06001519 bool do_datacrc = !con->msgr->nocrc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001520 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001521
Alex Elder859a35d2013-03-11 23:34:23 -05001522 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001523
Alex Elder5240d9f2013-03-14 14:09:06 -05001524 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05001525 return -EINVAL;
1526
Alex Elder5821bd82012-06-11 14:57:13 -05001527 /*
1528 * Iterate through each page that contains data to be
1529 * written, and send as much as possible for each.
1530 *
1531 * If we are calculating the data crc (the default), we will
1532 * need to map the page. If we have no pages, they have
1533 * been revoked, so use the zero page.
1534 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001535 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Alex Elder643c68a2013-03-11 23:34:23 -05001536 while (cursor->resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001537 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001538 size_t page_offset;
1539 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001540 bool last_piece;
Alex Elder8ea299b2013-03-11 23:34:23 -05001541 bool need_crc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001542 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001543
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001544 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05001545 &last_piece);
Alex Eldere387d522013-03-06 23:39:38 -06001546 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Benoît Canetc2cfa192015-06-25 20:32:34 +03001547 length, !last_piece);
Alex Elderf5db90b2013-03-11 23:34:23 -05001548 if (ret <= 0) {
1549 if (do_datacrc)
1550 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001551
Alex Elderf5db90b2013-03-11 23:34:23 -05001552 return ret;
1553 }
Alex Elder143334f2013-03-29 11:44:10 -05001554 if (do_datacrc && cursor->need_crc)
1555 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001556 need_crc = ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001557 }
1558
Alex Elder34d2d202013-03-08 20:58:59 -06001559 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001560
1561 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001562 if (do_datacrc)
1563 msg->footer.data_crc = cpu_to_le32(crc);
1564 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001565 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001566 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001567 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001568
1569 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001570}
1571
1572/*
1573 * write some zeros
1574 */
1575static int write_partial_skip(struct ceph_connection *con)
1576{
1577 int ret;
1578
1579 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001580 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001581
Alex Eldere1dcb122013-03-06 23:39:38 -06001582 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001583 if (ret <= 0)
1584 goto out;
1585 con->out_skip -= ret;
1586 }
1587 ret = 1;
1588out:
1589 return ret;
1590}
1591
1592/*
1593 * Prepare to read connection handshake, or an ack.
1594 */
Sage Weileed0ef22009-11-10 14:34:36 -08001595static void prepare_read_banner(struct ceph_connection *con)
1596{
1597 dout("prepare_read_banner %p\n", con);
1598 con->in_base_pos = 0;
1599}
1600
Sage Weil31b80062009-10-06 11:31:13 -07001601static void prepare_read_connect(struct ceph_connection *con)
1602{
1603 dout("prepare_read_connect %p\n", con);
1604 con->in_base_pos = 0;
1605}
1606
1607static void prepare_read_ack(struct ceph_connection *con)
1608{
1609 dout("prepare_read_ack %p\n", con);
1610 con->in_base_pos = 0;
1611}
1612
Sage Weil3a230832013-03-25 08:47:40 -07001613static void prepare_read_seq(struct ceph_connection *con)
1614{
1615 dout("prepare_read_seq %p\n", con);
1616 con->in_base_pos = 0;
1617 con->in_tag = CEPH_MSGR_TAG_SEQ;
1618}
1619
Sage Weil31b80062009-10-06 11:31:13 -07001620static void prepare_read_tag(struct ceph_connection *con)
1621{
1622 dout("prepare_read_tag %p\n", con);
1623 con->in_base_pos = 0;
1624 con->in_tag = CEPH_MSGR_TAG_READY;
1625}
1626
1627/*
1628 * Prepare to read a message.
1629 */
1630static int prepare_read_message(struct ceph_connection *con)
1631{
1632 dout("prepare_read_message %p\n", con);
1633 BUG_ON(con->in_msg != NULL);
1634 con->in_base_pos = 0;
1635 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1636 return 0;
1637}
1638
1639
1640static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001641 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001642{
Alex Eldere6cee712012-05-10 10:29:50 -05001643 while (con->in_base_pos < end) {
1644 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001645 int have = size - left;
1646 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1647 if (ret <= 0)
1648 return ret;
1649 con->in_base_pos += ret;
1650 }
1651 return 1;
1652}
1653
1654
1655/*
1656 * Read all or part of the connect-side handshake on a new connection
1657 */
Sage Weileed0ef22009-11-10 14:34:36 -08001658static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001659{
Alex Elderfd516532012-05-10 10:29:50 -05001660 int size;
1661 int end;
1662 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001663
Sage Weileed0ef22009-11-10 14:34:36 -08001664 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001665
1666 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001667 size = strlen(CEPH_BANNER);
1668 end = size;
1669 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001670 if (ret <= 0)
1671 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001672
1673 size = sizeof (con->actual_peer_addr);
1674 end += size;
1675 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001676 if (ret <= 0)
1677 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001678
1679 size = sizeof (con->peer_addr_for_me);
1680 end += size;
1681 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001682 if (ret <= 0)
1683 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001684
Sage Weileed0ef22009-11-10 14:34:36 -08001685out:
1686 return ret;
1687}
1688
1689static int read_partial_connect(struct ceph_connection *con)
1690{
Alex Elderfd516532012-05-10 10:29:50 -05001691 int size;
1692 int end;
1693 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001694
1695 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1696
Alex Elderfd516532012-05-10 10:29:50 -05001697 size = sizeof (con->in_reply);
1698 end = size;
1699 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001700 if (ret <= 0)
1701 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001702
1703 size = le32_to_cpu(con->in_reply.authorizer_len);
1704 end += size;
1705 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001706 if (ret <= 0)
1707 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001708
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001709 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1710 con, (int)con->in_reply.tag,
1711 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001712 le32_to_cpu(con->in_reply.global_seq));
1713out:
1714 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001715
Sage Weil31b80062009-10-06 11:31:13 -07001716}
1717
1718/*
1719 * Verify the hello banner looks okay.
1720 */
1721static int verify_hello(struct ceph_connection *con)
1722{
1723 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001724 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001725 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001726 con->error_msg = "protocol error, bad banner";
1727 return -1;
1728 }
1729 return 0;
1730}
1731
1732static bool addr_is_blank(struct sockaddr_storage *ss)
1733{
1734 switch (ss->ss_family) {
1735 case AF_INET:
1736 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1737 case AF_INET6:
1738 return
1739 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1740 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1741 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1742 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1743 }
1744 return false;
1745}
1746
1747static int addr_port(struct sockaddr_storage *ss)
1748{
1749 switch (ss->ss_family) {
1750 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001751 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001752 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001753 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001754 }
1755 return 0;
1756}
1757
1758static void addr_set_port(struct sockaddr_storage *ss, int p)
1759{
1760 switch (ss->ss_family) {
1761 case AF_INET:
1762 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001763 break;
Sage Weil31b80062009-10-06 11:31:13 -07001764 case AF_INET6:
1765 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001766 break;
Sage Weil31b80062009-10-06 11:31:13 -07001767 }
1768}
1769
1770/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001771 * Unlike other *_pton function semantics, zero indicates success.
1772 */
1773static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1774 char delim, const char **ipend)
1775{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001776 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1777 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001778
1779 memset(ss, 0, sizeof(*ss));
1780
1781 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1782 ss->ss_family = AF_INET;
1783 return 0;
1784 }
1785
1786 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1787 ss->ss_family = AF_INET6;
1788 return 0;
1789 }
1790
1791 return -EINVAL;
1792}
1793
1794/*
1795 * Extract hostname string and resolve using kernel DNS facility.
1796 */
1797#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1798static int ceph_dns_resolve_name(const char *name, size_t namelen,
1799 struct sockaddr_storage *ss, char delim, const char **ipend)
1800{
1801 const char *end, *delim_p;
1802 char *colon_p, *ip_addr = NULL;
1803 int ip_len, ret;
1804
1805 /*
1806 * The end of the hostname occurs immediately preceding the delimiter or
1807 * the port marker (':') where the delimiter takes precedence.
1808 */
1809 delim_p = memchr(name, delim, namelen);
1810 colon_p = memchr(name, ':', namelen);
1811
1812 if (delim_p && colon_p)
1813 end = delim_p < colon_p ? delim_p : colon_p;
1814 else if (!delim_p && colon_p)
1815 end = colon_p;
1816 else {
1817 end = delim_p;
1818 if (!end) /* case: hostname:/ */
1819 end = name + namelen;
1820 }
1821
1822 if (end <= name)
1823 return -EINVAL;
1824
1825 /* do dns_resolve upcall */
1826 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1827 if (ip_len > 0)
1828 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1829 else
1830 ret = -ESRCH;
1831
1832 kfree(ip_addr);
1833
1834 *ipend = end;
1835
1836 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1837 ret, ret ? "failed" : ceph_pr_addr(ss));
1838
1839 return ret;
1840}
1841#else
1842static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1843 struct sockaddr_storage *ss, char delim, const char **ipend)
1844{
1845 return -EINVAL;
1846}
1847#endif
1848
1849/*
1850 * Parse a server name (IP or hostname). If a valid IP address is not found
1851 * then try to extract a hostname to resolve using userspace DNS upcall.
1852 */
1853static int ceph_parse_server_name(const char *name, size_t namelen,
1854 struct sockaddr_storage *ss, char delim, const char **ipend)
1855{
1856 int ret;
1857
1858 ret = ceph_pton(name, namelen, ss, delim, ipend);
1859 if (ret)
1860 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1861
1862 return ret;
1863}
1864
1865/*
Sage Weil31b80062009-10-06 11:31:13 -07001866 * Parse an ip[:port] list into an addr array. Use the default
1867 * monitor port if a port isn't specified.
1868 */
1869int ceph_parse_ips(const char *c, const char *end,
1870 struct ceph_entity_addr *addr,
1871 int max_count, int *count)
1872{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001873 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001874 const char *p = c;
1875
1876 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1877 for (i = 0; i < max_count; i++) {
1878 const char *ipend;
1879 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001880 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001881 char delim = ',';
1882
1883 if (*p == '[') {
1884 delim = ']';
1885 p++;
1886 }
Sage Weil31b80062009-10-06 11:31:13 -07001887
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001888 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1889 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001890 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001891 ret = -EINVAL;
1892
Sage Weil31b80062009-10-06 11:31:13 -07001893 p = ipend;
1894
Sage Weil39139f62010-07-08 09:54:52 -07001895 if (delim == ']') {
1896 if (*p != ']') {
1897 dout("missing matching ']'\n");
1898 goto bad;
1899 }
1900 p++;
1901 }
1902
Sage Weil31b80062009-10-06 11:31:13 -07001903 /* port? */
1904 if (p < end && *p == ':') {
1905 port = 0;
1906 p++;
1907 while (p < end && *p >= '0' && *p <= '9') {
1908 port = (port * 10) + (*p - '0');
1909 p++;
1910 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02001911 if (port == 0)
1912 port = CEPH_MON_PORT;
1913 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07001914 goto bad;
1915 } else {
1916 port = CEPH_MON_PORT;
1917 }
1918
1919 addr_set_port(ss, port);
1920
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001921 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001922
1923 if (p == end)
1924 break;
1925 if (*p != ',')
1926 goto bad;
1927 p++;
1928 }
1929
1930 if (p != end)
1931 goto bad;
1932
1933 if (count)
1934 *count = i + 1;
1935 return 0;
1936
1937bad:
Sage Weil39139f62010-07-08 09:54:52 -07001938 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001939 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001940}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001941EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001942
Sage Weileed0ef22009-11-10 14:34:36 -08001943static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001944{
Sage Weileed0ef22009-11-10 14:34:36 -08001945 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001946
1947 if (verify_hello(con) < 0)
1948 return -1;
1949
Sage Weil63f2d212009-11-03 15:17:56 -08001950 ceph_decode_addr(&con->actual_peer_addr);
1951 ceph_decode_addr(&con->peer_addr_for_me);
1952
Sage Weil31b80062009-10-06 11:31:13 -07001953 /*
1954 * Make sure the other end is who we wanted. note that the other
1955 * end may not yet know their ip address, so if it's 0.0.0.0, give
1956 * them the benefit of the doubt.
1957 */
Sage Weil103e2d32010-01-07 16:12:36 -08001958 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1959 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001960 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1961 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Joe Perchesb9a67892014-09-09 21:17:29 -07001962 pr_warn("wrong peer, want %s/%d, got %s/%d\n",
1963 ceph_pr_addr(&con->peer_addr.in_addr),
1964 (int)le32_to_cpu(con->peer_addr.nonce),
1965 ceph_pr_addr(&con->actual_peer_addr.in_addr),
1966 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001967 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001968 return -1;
1969 }
1970
1971 /*
1972 * did we learn our address?
1973 */
1974 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1975 int port = addr_port(&con->msgr->inst.addr.in_addr);
1976
1977 memcpy(&con->msgr->inst.addr.in_addr,
1978 &con->peer_addr_for_me.in_addr,
1979 sizeof(con->peer_addr_for_me.in_addr));
1980 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001981 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001982 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001983 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001984 }
1985
Sage Weileed0ef22009-11-10 14:34:36 -08001986 return 0;
1987}
1988
1989static int process_connect(struct ceph_connection *con)
1990{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001991 u64 sup_feat = con->msgr->supported_features;
1992 u64 req_feat = con->msgr->required_features;
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +02001993 u64 server_feat = ceph_sanitize_features(
1994 le64_to_cpu(con->in_reply.features));
Sage Weil0da5d702011-05-19 11:21:05 -07001995 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001996
Sage Weileed0ef22009-11-10 14:34:36 -08001997 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1998
Sage Weil31b80062009-10-06 11:31:13 -07001999 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08002000 case CEPH_MSGR_TAG_FEATURES:
2001 pr_err("%s%lld %s feature set mismatch,"
2002 " my %llx < server's %llx, missing %llx\n",
2003 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002004 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002005 sup_feat, server_feat, server_feat & ~sup_feat);
2006 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002007 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002008 return -1;
2009
Sage Weil31b80062009-10-06 11:31:13 -07002010 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07002011 pr_err("%s%lld %s protocol version mismatch,"
2012 " my %d != server's %d\n",
2013 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002014 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07002015 le32_to_cpu(con->out_connect.protocol_version),
2016 le32_to_cpu(con->in_reply.protocol_version));
2017 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002018 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07002019 return -1;
2020
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002021 case CEPH_MSGR_TAG_BADAUTHORIZER:
2022 con->auth_retry++;
2023 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2024 con->auth_retry);
2025 if (con->auth_retry == 2) {
2026 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002027 return -1;
2028 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002029 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002030 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002031 if (ret < 0)
2032 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002033 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002034 break;
Sage Weil31b80062009-10-06 11:31:13 -07002035
2036 case CEPH_MSGR_TAG_RESETSESSION:
2037 /*
2038 * If we connected with a large connect_seq but the peer
2039 * has no record of a session with us (no connection, or
2040 * connect_seq == 0), they will send RESETSESION to indicate
2041 * that they must have reset their session, and may have
2042 * dropped messages.
2043 */
2044 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002045 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002046 pr_err("%s%lld %s connection reset\n",
2047 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002048 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002049 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002050 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002051 ret = prepare_write_connect(con);
2052 if (ret < 0)
2053 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002054 prepare_read_connect(con);
2055
2056 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002057 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002058 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2059 if (con->ops->peer_reset)
2060 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002061 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002062 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002063 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002064 break;
2065
2066 case CEPH_MSGR_TAG_RETRY_SESSION:
2067 /*
2068 * If we sent a smaller connect_seq than the peer has, try
2069 * again with a larger value.
2070 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002071 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002072 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002073 le32_to_cpu(con->in_reply.connect_seq));
2074 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002075 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002076 ret = prepare_write_connect(con);
2077 if (ret < 0)
2078 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002079 prepare_read_connect(con);
2080 break;
2081
2082 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2083 /*
2084 * If we sent a smaller global_seq than the peer has, try
2085 * again with a larger value.
2086 */
Sage Weileed0ef22009-11-10 14:34:36 -08002087 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002088 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002089 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002090 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002091 le32_to_cpu(con->in_reply.global_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
Sage Weil3a230832013-03-25 08:47:40 -07002099 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002100 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002101 if (req_feat & ~server_feat) {
2102 pr_err("%s%lld %s protocol feature mismatch,"
2103 " my required %llx > server's %llx, need %llx\n",
2104 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002105 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002106 req_feat, server_feat, req_feat & ~server_feat);
2107 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002108 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002109 return -1;
2110 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002111
Alex Elder122070a2012-12-26 10:43:57 -06002112 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002113 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002114 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002115 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2116 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002117 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002118 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2119 con->peer_global_seq,
2120 le32_to_cpu(con->in_reply.connect_seq),
2121 con->connect_seq);
2122 WARN_ON(con->connect_seq !=
2123 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002124
2125 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002126 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002127
Sage Weil85effe12012-07-30 16:22:05 -07002128 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002129
Sage Weil3a230832013-03-25 08:47:40 -07002130 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2131 prepare_write_seq(con);
2132 prepare_read_seq(con);
2133 } else {
2134 prepare_read_tag(con);
2135 }
Sage Weil31b80062009-10-06 11:31:13 -07002136 break;
2137
2138 case CEPH_MSGR_TAG_WAIT:
2139 /*
2140 * If there is a connection race (we are opening
2141 * connections to each other), one of us may just have
2142 * to WAIT. This shouldn't happen if we are the
2143 * client.
2144 */
Sage Weil04177882011-05-12 15:33:17 -07002145 con->error_msg = "protocol error, got WAIT as client";
2146 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002147
2148 default:
Sage Weil31b80062009-10-06 11:31:13 -07002149 con->error_msg = "protocol error, garbage tag during connect";
2150 return -1;
2151 }
2152 return 0;
2153}
2154
2155
2156/*
2157 * read (part of) an ack
2158 */
2159static int read_partial_ack(struct ceph_connection *con)
2160{
Alex Elderfd516532012-05-10 10:29:50 -05002161 int size = sizeof (con->in_temp_ack);
2162 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002163
Alex Elderfd516532012-05-10 10:29:50 -05002164 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002165}
2166
Sage Weil31b80062009-10-06 11:31:13 -07002167/*
2168 * We can finally discard anything that's been acked.
2169 */
2170static void process_ack(struct ceph_connection *con)
2171{
2172 struct ceph_msg *m;
2173 u64 ack = le64_to_cpu(con->in_temp_ack);
2174 u64 seq;
2175
Sage Weil31b80062009-10-06 11:31:13 -07002176 while (!list_empty(&con->out_sent)) {
2177 m = list_first_entry(&con->out_sent, struct ceph_msg,
2178 list_head);
2179 seq = le64_to_cpu(m->hdr.seq);
2180 if (seq > ack)
2181 break;
2182 dout("got ack for seq %llu type %d at %p\n", seq,
2183 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002184 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002185 ceph_msg_remove(m);
2186 }
Sage Weil31b80062009-10-06 11:31:13 -07002187 prepare_read_tag(con);
2188}
2189
2190
Yehuda Sadeh24504182010-01-08 13:58:34 -08002191static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002192 struct kvec *section,
2193 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002194{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002195 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002196
Yehuda Sadeh24504182010-01-08 13:58:34 -08002197 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002198
Yehuda Sadeh24504182010-01-08 13:58:34 -08002199 while (section->iov_len < sec_len) {
2200 BUG_ON(section->iov_base == NULL);
2201 left = sec_len - section->iov_len;
2202 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2203 section->iov_len, left);
2204 if (ret <= 0)
2205 return ret;
2206 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002207 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002208 if (section->iov_len == sec_len)
2209 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002210
2211 return 1;
2212}
2213
Alex Elder34d2d202013-03-08 20:58:59 -06002214static int read_partial_msg_data(struct ceph_connection *con)
2215{
2216 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002217 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder34d2d202013-03-08 20:58:59 -06002218 const bool do_datacrc = !con->msgr->nocrc;
Alex Elder686be202013-03-11 23:34:23 -05002219 struct page *page;
2220 size_t page_offset;
2221 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002222 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002223 int ret;
2224
2225 BUG_ON(!msg);
Alex Elder5240d9f2013-03-14 14:09:06 -05002226 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05002227 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002228
Alex Elderf5db90b2013-03-11 23:34:23 -05002229 if (do_datacrc)
2230 crc = con->in_data_crc;
Alex Elder643c68a2013-03-11 23:34:23 -05002231 while (cursor->resid) {
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002232 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05002233 NULL);
Alex Elder686be202013-03-11 23:34:23 -05002234 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002235 if (ret <= 0) {
2236 if (do_datacrc)
2237 con->in_data_crc = crc;
2238
Alex Elder686be202013-03-11 23:34:23 -05002239 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002240 }
Alex Elder686be202013-03-11 23:34:23 -05002241
2242 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002243 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002244 (void) ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002245 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002246 if (do_datacrc)
2247 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002248
2249 return 1; /* must return > 0 to indicate success */
2250}
2251
Sage Weil31b80062009-10-06 11:31:13 -07002252/*
2253 * read (part of) a message.
2254 */
Alex Elder686be202013-03-11 23:34:23 -05002255static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2256
Sage Weil31b80062009-10-06 11:31:13 -07002257static int read_partial_message(struct ceph_connection *con)
2258{
2259 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002260 int size;
2261 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002262 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002263 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002264 bool do_datacrc = !con->msgr->nocrc;
Yan, Zheng33d07332014-11-04 16:33:37 +08002265 bool need_sign = (con->peer_features & CEPH_FEATURE_MSG_AUTH);
Sage Weilae187562010-04-22 07:47:01 -07002266 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002267 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002268
2269 dout("read_partial_message con %p msg %p\n", con, m);
2270
2271 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002272 size = sizeof (con->in_hdr);
2273 end = size;
2274 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002275 if (ret <= 0)
2276 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002277
2278 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2279 if (cpu_to_le32(crc) != con->in_hdr.crc) {
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002280 pr_err("read_partial_message bad hdr crc %u != expected %u\n",
Alex Elderfe3ad592012-02-15 07:43:54 -06002281 crc, con->in_hdr.crc);
2282 return -EBADMSG;
2283 }
2284
Sage Weil31b80062009-10-06 11:31:13 -07002285 front_len = le32_to_cpu(con->in_hdr.front_len);
2286 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2287 return -EIO;
2288 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002289 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002290 return -EIO;
2291 data_len = le32_to_cpu(con->in_hdr.data_len);
2292 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2293 return -EIO;
2294
Sage Weilae187562010-04-22 07:47:01 -07002295 /* verify seq# */
2296 seq = le64_to_cpu(con->in_hdr.seq);
2297 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002298 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002299 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002300 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002301 seq, con->in_seq + 1);
2302 con->in_base_pos = -front_len - middle_len - data_len -
2303 sizeof(m->footer);
2304 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002305 return 0;
2306 } else if ((s64)seq - (s64)con->in_seq > 1) {
2307 pr_err("read_partial_message bad seq %lld expected %lld\n",
2308 seq, con->in_seq + 1);
2309 con->error_msg = "bad message sequence # for incoming message";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002310 return -EBADE;
Sage Weilae187562010-04-22 07:47:01 -07002311 }
2312
Sage Weil31b80062009-10-06 11:31:13 -07002313 /* allocate message? */
2314 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002315 int skip = 0;
2316
Sage Weil31b80062009-10-06 11:31:13 -07002317 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002318 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002319 ret = ceph_con_in_msg_alloc(con, &skip);
2320 if (ret < 0)
2321 return ret;
Alex Elderf759ebb2013-04-05 14:46:01 -05002322
2323 BUG_ON(!con->in_msg ^ skip);
2324 if (con->in_msg && data_len > con->in_msg->data_length) {
Joe Perchesb9a67892014-09-09 21:17:29 -07002325 pr_warn("%s skipping long message (%u > %zd)\n",
Alex Elderf759ebb2013-04-05 14:46:01 -05002326 __func__, data_len, con->in_msg->data_length);
2327 ceph_msg_put(con->in_msg);
2328 con->in_msg = NULL;
2329 skip = 1;
2330 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08002331 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002332 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002333 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002334 con->in_base_pos = -front_len - middle_len - data_len -
2335 sizeof(m->footer);
2336 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002337 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002338 return 0;
2339 }
Alex Elder38941f82012-06-01 14:56:43 -05002340
Sage Weil4740a622012-07-30 18:19:30 -07002341 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002342 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002343 m = con->in_msg;
2344 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002345 if (m->middle)
2346 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002347
Alex Elder78625052013-03-06 23:39:39 -06002348 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002349
Alex Elder78625052013-03-06 23:39:39 -06002350 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002351 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002352 }
2353
2354 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002355 ret = read_partial_message_section(con, &m->front, front_len,
2356 &con->in_front_crc);
2357 if (ret <= 0)
2358 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002359
2360 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002361 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002362 ret = read_partial_message_section(con, &m->middle->vec,
2363 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002364 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002365 if (ret <= 0)
2366 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002367 }
2368
2369 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002370 if (data_len) {
2371 ret = read_partial_msg_data(con);
2372 if (ret <= 0)
2373 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002374 }
2375
Sage Weil31b80062009-10-06 11:31:13 -07002376 /* footer */
Yan, Zheng33d07332014-11-04 16:33:37 +08002377 if (need_sign)
2378 size = sizeof(m->footer);
2379 else
2380 size = sizeof(m->old_footer);
2381
Alex Elderfd516532012-05-10 10:29:50 -05002382 end += size;
2383 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002384 if (ret <= 0)
2385 return ret;
2386
Yan, Zheng33d07332014-11-04 16:33:37 +08002387 if (!need_sign) {
2388 m->footer.flags = m->old_footer.flags;
2389 m->footer.sig = 0;
2390 }
2391
Sage Weil31b80062009-10-06 11:31:13 -07002392 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2393 m, front_len, m->footer.front_crc, middle_len,
2394 m->footer.middle_crc, data_len, m->footer.data_crc);
2395
2396 /* crc ok? */
2397 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2398 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2399 m, con->in_front_crc, m->footer.front_crc);
2400 return -EBADMSG;
2401 }
2402 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2403 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2404 m, con->in_middle_crc, m->footer.middle_crc);
2405 return -EBADMSG;
2406 }
Alex Elderbca064d2012-02-15 07:43:54 -06002407 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002408 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2409 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2410 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2411 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2412 return -EBADMSG;
2413 }
2414
Yan, Zheng33d07332014-11-04 16:33:37 +08002415 if (need_sign && con->ops->check_message_signature &&
2416 con->ops->check_message_signature(con, m)) {
2417 pr_err("read_partial_message %p signature check failed\n", m);
2418 return -EBADMSG;
2419 }
2420
Sage Weil31b80062009-10-06 11:31:13 -07002421 return 1; /* done! */
2422}
2423
2424/*
2425 * Process message. This happens in the worker thread. The callback should
2426 * be careful not to do anything that waits on other incoming messages or it
2427 * may deadlock.
2428 */
2429static void process_message(struct ceph_connection *con)
2430{
Sage Weil5e095e82009-12-14 14:30:34 -08002431 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002432
Alex Elder38941f82012-06-01 14:56:43 -05002433 BUG_ON(con->in_msg->con != con);
2434 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002435 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002436 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002437 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002438
2439 /* if first message, set peer_name */
2440 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002441 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002442
Sage Weil31b80062009-10-06 11:31:13 -07002443 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002444 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002445
2446 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2447 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002448 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002449 le16_to_cpu(msg->hdr.type),
2450 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2451 le32_to_cpu(msg->hdr.front_len),
2452 le32_to_cpu(msg->hdr.data_len),
2453 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2454 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002455
2456 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002457}
2458
2459
2460/*
2461 * Write something to the socket. Called in a worker thread when the
2462 * socket appears to be writeable and we have something ready to send.
2463 */
2464static int try_write(struct ceph_connection *con)
2465{
Sage Weil31b80062009-10-06 11:31:13 -07002466 int ret = 1;
2467
Sage Weild59315c2012-06-21 12:49:23 -07002468 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002469
Sage Weil31b80062009-10-06 11:31:13 -07002470more:
2471 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2472
2473 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002474 if (con->state == CON_STATE_PREOPEN) {
2475 BUG_ON(con->sock);
2476 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002477
Alex Eldere2200422012-05-23 14:35:23 -05002478 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002479 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002480 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002481
Sage Weilcf3e5c42009-12-11 09:48:05 -08002482 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002483 con->in_tag = CEPH_MSGR_TAG_READY;
2484 dout("try_write initiating connect on %p new state %lu\n",
2485 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002486 ret = ceph_tcp_connect(con);
2487 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002488 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002489 goto out;
2490 }
2491 }
2492
2493more_kvec:
2494 /* kvec data queued? */
2495 if (con->out_skip) {
2496 ret = write_partial_skip(con);
2497 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002498 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002499 }
2500 if (con->out_kvec_left) {
2501 ret = write_partial_kvec(con);
2502 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002503 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002504 }
2505
2506 /* msg pages? */
2507 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002508 if (con->out_msg_done) {
2509 ceph_msg_put(con->out_msg);
2510 con->out_msg = NULL; /* we're done with this one */
2511 goto do_next;
2512 }
2513
Alex Elder34d2d202013-03-08 20:58:59 -06002514 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002515 if (ret == 1)
2516 goto more_kvec; /* we need to send the footer, too! */
2517 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002518 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002519 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002520 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002521 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002522 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002523 }
2524 }
2525
Sage Weilc86a2932009-12-14 14:04:30 -08002526do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002527 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002528 /* is anything else pending? */
2529 if (!list_empty(&con->out_queue)) {
2530 prepare_write_message(con);
2531 goto more;
2532 }
2533 if (con->in_seq > con->in_seq_acked) {
2534 prepare_write_ack(con);
2535 goto more;
2536 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002537 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002538 prepare_write_keepalive(con);
2539 goto more;
2540 }
2541 }
2542
2543 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002544 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002545 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002546 ret = 0;
2547out:
Sage Weil42961d22011-01-25 08:19:34 -08002548 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002549 return ret;
2550}
2551
2552
2553
2554/*
2555 * Read what we can from the socket.
2556 */
2557static int try_read(struct ceph_connection *con)
2558{
Sage Weil31b80062009-10-06 11:31:13 -07002559 int ret = -1;
2560
Sage Weil31b80062009-10-06 11:31:13 -07002561more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002562 dout("try_read start on %p state %lu\n", con, con->state);
2563 if (con->state != CON_STATE_CONNECTING &&
2564 con->state != CON_STATE_NEGOTIATING &&
2565 con->state != CON_STATE_OPEN)
2566 return 0;
2567
2568 BUG_ON(!con->sock);
2569
Sage Weil31b80062009-10-06 11:31:13 -07002570 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2571 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002572
Sage Weil8dacc7d2012-07-20 17:24:40 -07002573 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002574 dout("try_read connecting\n");
2575 ret = read_partial_banner(con);
2576 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002577 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002578 ret = process_banner(con);
2579 if (ret < 0)
2580 goto out;
2581
Sage Weil8dacc7d2012-07-20 17:24:40 -07002582 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002583
Jim Schutt6d4221b2012-08-10 10:37:38 -07002584 /*
2585 * Received banner is good, exchange connection info.
2586 * Do not reset out_kvec, as sending our banner raced
2587 * with receiving peer banner after connect completed.
2588 */
Alex Elder7593af92012-05-24 11:55:03 -05002589 ret = prepare_write_connect(con);
2590 if (ret < 0)
2591 goto out;
2592 prepare_read_connect(con);
2593
2594 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002595 goto out;
2596 }
2597
Sage Weil8dacc7d2012-07-20 17:24:40 -07002598 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002599 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002600 ret = read_partial_connect(con);
2601 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002602 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002603 ret = process_connect(con);
2604 if (ret < 0)
2605 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002606 goto more;
2607 }
2608
Alex Elder122070a2012-12-26 10:43:57 -06002609 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002610
Sage Weil31b80062009-10-06 11:31:13 -07002611 if (con->in_base_pos < 0) {
2612 /*
2613 * skipping + discarding content.
2614 *
2615 * FIXME: there must be a better way to do this!
2616 */
Alex Elder84495f42012-02-15 07:43:55 -06002617 static char buf[SKIP_BUF_SIZE];
2618 int skip = min((int) sizeof (buf), -con->in_base_pos);
2619
Sage Weil31b80062009-10-06 11:31:13 -07002620 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2621 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2622 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002623 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002624 con->in_base_pos += ret;
2625 if (con->in_base_pos)
2626 goto more;
2627 }
2628 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2629 /*
2630 * what's next?
2631 */
2632 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2633 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002634 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002635 dout("try_read got tag %d\n", (int)con->in_tag);
2636 switch (con->in_tag) {
2637 case CEPH_MSGR_TAG_MSG:
2638 prepare_read_message(con);
2639 break;
2640 case CEPH_MSGR_TAG_ACK:
2641 prepare_read_ack(con);
2642 break;
2643 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002644 con_close_socket(con);
2645 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002646 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002647 default:
2648 goto bad_tag;
2649 }
2650 }
2651 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2652 ret = read_partial_message(con);
2653 if (ret <= 0) {
2654 switch (ret) {
2655 case -EBADMSG:
2656 con->error_msg = "bad crc";
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002657 /* fall through */
2658 case -EBADE:
Sage Weil31b80062009-10-06 11:31:13 -07002659 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002660 break;
Sage Weil31b80062009-10-06 11:31:13 -07002661 case -EIO:
2662 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002663 break;
Sage Weil31b80062009-10-06 11:31:13 -07002664 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002665 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002666 }
2667 if (con->in_tag == CEPH_MSGR_TAG_READY)
2668 goto more;
2669 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002670 if (con->state == CON_STATE_OPEN)
2671 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002672 goto more;
2673 }
Sage Weil3a230832013-03-25 08:47:40 -07002674 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2675 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2676 /*
2677 * the final handshake seq exchange is semantically
2678 * equivalent to an ACK
2679 */
Sage Weil31b80062009-10-06 11:31:13 -07002680 ret = read_partial_ack(con);
2681 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002682 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002683 process_ack(con);
2684 goto more;
2685 }
2686
Sage Weil31b80062009-10-06 11:31:13 -07002687out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002688 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002689 return ret;
2690
2691bad_tag:
2692 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2693 con->error_msg = "protocol error, garbage tag";
2694 ret = -1;
2695 goto out;
2696}
2697
2698
2699/*
Alex Elder802c6d92012-10-08 20:37:30 -07002700 * Atomically queue work on a connection after the specified delay.
2701 * Bump @con reference to avoid races with connection teardown.
2702 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002703 */
Alex Elder802c6d92012-10-08 20:37:30 -07002704static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002705{
Sage Weil31b80062009-10-06 11:31:13 -07002706 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002707 dout("%s %p ref count 0\n", __func__, con);
Alex Elder802c6d92012-10-08 20:37:30 -07002708 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002709 }
2710
Alex Elder802c6d92012-10-08 20:37:30 -07002711 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2712 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002713 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002714 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002715 }
Alex Elder802c6d92012-10-08 20:37:30 -07002716
2717 dout("%s %p %lu\n", __func__, con, delay);
Alex Elder802c6d92012-10-08 20:37:30 -07002718 return 0;
2719}
2720
2721static void queue_con(struct ceph_connection *con)
2722{
2723 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002724}
2725
Ilya Dryomov37ab77a2014-06-24 16:21:45 +04002726static void cancel_con(struct ceph_connection *con)
2727{
2728 if (cancel_delayed_work(&con->work)) {
2729 dout("%s %p\n", __func__, con);
2730 con->ops->put(con);
2731 }
2732}
2733
Alex Elder7bb21d682012-12-07 19:50:07 -06002734static bool con_sock_closed(struct ceph_connection *con)
2735{
Alex Elderc9ffc772013-02-20 10:25:12 -06002736 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002737 return false;
2738
2739#define CASE(x) \
2740 case CON_STATE_ ## x: \
2741 con->error_msg = "socket closed (con state " #x ")"; \
2742 break;
2743
2744 switch (con->state) {
2745 CASE(CLOSED);
2746 CASE(PREOPEN);
2747 CASE(CONNECTING);
2748 CASE(NEGOTIATING);
2749 CASE(OPEN);
2750 CASE(STANDBY);
2751 default:
Joe Perchesb9a67892014-09-09 21:17:29 -07002752 pr_warn("%s con %p unrecognized state %lu\n",
Alex Elder7bb21d682012-12-07 19:50:07 -06002753 __func__, con, con->state);
2754 con->error_msg = "unrecognized con state";
2755 BUG();
2756 break;
2757 }
2758#undef CASE
2759
2760 return true;
2761}
2762
Alex Elderf20a39f2013-02-19 12:25:57 -06002763static bool con_backoff(struct ceph_connection *con)
2764{
2765 int ret;
2766
2767 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2768 return false;
2769
2770 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2771 if (ret) {
2772 dout("%s: con %p FAILED to back off %lu\n", __func__,
2773 con, con->delay);
2774 BUG_ON(ret == -ENOENT);
2775 con_flag_set(con, CON_FLAG_BACKOFF);
2776 }
2777
2778 return true;
2779}
2780
Alex Elder93209262013-02-19 12:25:57 -06002781/* Finish fault handling; con->mutex must *not* be held here */
2782
2783static void con_fault_finish(struct ceph_connection *con)
2784{
2785 /*
2786 * in case we faulted due to authentication, invalidate our
2787 * current tickets so that we can get new ones.
2788 */
2789 if (con->auth_retry && con->ops->invalidate_authorizer) {
2790 dout("calling invalidate_authorizer()\n");
2791 con->ops->invalidate_authorizer(con);
2792 }
2793
2794 if (con->ops->fault)
2795 con->ops->fault(con);
2796}
2797
Sage Weil31b80062009-10-06 11:31:13 -07002798/*
2799 * Do some work on a connection. Drop a connection ref when we're done.
2800 */
2801static void con_work(struct work_struct *work)
2802{
2803 struct ceph_connection *con = container_of(work, struct ceph_connection,
2804 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002805 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002806
Sage Weil9dd46582010-04-28 13:51:50 -07002807 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002808 while (true) {
2809 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002810
Alex Elder49659412013-02-19 12:25:57 -06002811 if ((fault = con_sock_closed(con))) {
2812 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2813 break;
2814 }
2815 if (con_backoff(con)) {
2816 dout("%s: con %p BACKOFF\n", __func__, con);
2817 break;
2818 }
2819 if (con->state == CON_STATE_STANDBY) {
2820 dout("%s: con %p STANDBY\n", __func__, con);
2821 break;
2822 }
2823 if (con->state == CON_STATE_CLOSED) {
2824 dout("%s: con %p CLOSED\n", __func__, con);
2825 BUG_ON(con->sock);
2826 break;
2827 }
2828 if (con->state == CON_STATE_PREOPEN) {
2829 dout("%s: con %p PREOPEN\n", __func__, con);
2830 BUG_ON(con->sock);
2831 }
Sage Weil0da5d702011-05-19 11:21:05 -07002832
Alex Elder49659412013-02-19 12:25:57 -06002833 ret = try_read(con);
2834 if (ret < 0) {
2835 if (ret == -EAGAIN)
2836 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002837 if (!con->error_msg)
2838 con->error_msg = "socket error on read";
Alex Elder49659412013-02-19 12:25:57 -06002839 fault = true;
2840 break;
2841 }
2842
2843 ret = try_write(con);
2844 if (ret < 0) {
2845 if (ret == -EAGAIN)
2846 continue;
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002847 if (!con->error_msg)
2848 con->error_msg = "socket error on write";
Alex Elder49659412013-02-19 12:25:57 -06002849 fault = true;
2850 }
2851
2852 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002853 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002854 if (fault)
2855 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002856 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002857
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002858 if (fault)
2859 con_fault_finish(con);
2860
2861 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002862}
2863
Sage Weil31b80062009-10-06 11:31:13 -07002864/*
2865 * Generic error/fault handler. A retry mechanism is used with
2866 * exponential backoff
2867 */
Alex Elder93209262013-02-19 12:25:57 -06002868static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002869{
Sage Weil31b80062009-10-06 11:31:13 -07002870 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002871 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002872
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03002873 pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
2874 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
2875 con->error_msg = NULL;
2876
Alex Elder122070a2012-12-26 10:43:57 -06002877 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002878 con->state != CON_STATE_NEGOTIATING &&
2879 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002880
Sage Weil31b80062009-10-06 11:31:13 -07002881 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002882
Alex Elderc9ffc772013-02-20 10:25:12 -06002883 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002884 dout("fault on LOSSYTX channel, marking CLOSED\n");
2885 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002886 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002887 }
2888
Sage Weil5e095e82009-12-14 14:30:34 -08002889 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002890 BUG_ON(con->in_msg->con != con);
2891 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002892 ceph_msg_put(con->in_msg);
2893 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002894 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002895 }
Sage Weil31b80062009-10-06 11:31:13 -07002896
Sage Weile80a52d2010-02-25 12:40:45 -08002897 /* Requeue anything that hasn't been acked */
2898 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002899
Sage Weile76661d2011-03-03 10:10:15 -08002900 /* If there are no messages queued or keepalive pending, place
2901 * the connection in a STANDBY state */
2902 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002903 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002904 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002905 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002906 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002907 } else {
2908 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002909 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002910 if (con->delay == 0)
2911 con->delay = BASE_DELAY_INTERVAL;
2912 else if (con->delay < MAX_DELAY_INTERVAL)
2913 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002914 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002915 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002916 }
Sage Weil31b80062009-10-06 11:31:13 -07002917}
2918
2919
2920
2921/*
Alex Elder15d98822012-05-26 23:26:43 -05002922 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002923 */
Alex Elder15d98822012-05-26 23:26:43 -05002924void ceph_messenger_init(struct ceph_messenger *msgr,
2925 struct ceph_entity_addr *myaddr,
Ilya Dryomov12b46292013-12-24 21:19:23 +02002926 u64 supported_features,
2927 u64 required_features,
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302928 bool nocrc,
2929 bool tcp_nodelay)
Sage Weil31b80062009-10-06 11:31:13 -07002930{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002931 msgr->supported_features = supported_features;
2932 msgr->required_features = required_features;
2933
Sage Weil31b80062009-10-06 11:31:13 -07002934 spin_lock_init(&msgr->global_seq_lock);
2935
Sage Weil31b80062009-10-06 11:31:13 -07002936 if (myaddr)
2937 msgr->inst.addr = *myaddr;
2938
2939 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002940 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002941 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002942 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002943 msgr->nocrc = nocrc;
Chaitanya Huilgolba988f82015-01-23 16:41:25 +05302944 msgr->tcp_nodelay = tcp_nodelay;
Sage Weil31b80062009-10-06 11:31:13 -07002945
Guanjun Hea2a32582012-07-08 19:50:33 -07002946 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002947
Alex Elder15d98822012-05-26 23:26:43 -05002948 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002949}
Alex Elder15d98822012-05-26 23:26:43 -05002950EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002951
Sage Weile00de342011-03-04 12:25:05 -08002952static void clear_standby(struct ceph_connection *con)
2953{
2954 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002955 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002956 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002957 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002958 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002959 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2960 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002961 }
2962}
2963
Sage Weil31b80062009-10-06 11:31:13 -07002964/*
2965 * Queue up an outgoing message on the given connection.
2966 */
2967void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2968{
Sage Weila59b55a2012-07-20 15:34:04 -07002969 /* set src+dst */
2970 msg->hdr.src = con->msgr->inst.name;
2971 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2972 msg->needs_out_seq = true;
2973
2974 mutex_lock(&con->mutex);
2975
Sage Weil8dacc7d2012-07-20 17:24:40 -07002976 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002977 dout("con_send %p closed, dropping %p\n", con, msg);
2978 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002979 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002980 return;
2981 }
2982
Alex Elder38941f82012-06-01 14:56:43 -05002983 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002984 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002985 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002986
Sage Weil31b80062009-10-06 11:31:13 -07002987 BUG_ON(!list_empty(&msg->list_head));
2988 list_add_tail(&msg->list_head, &con->out_queue);
2989 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2990 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2991 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2992 le32_to_cpu(msg->hdr.front_len),
2993 le32_to_cpu(msg->hdr.middle_len),
2994 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002995
2996 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002997 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002998
2999 /* if there wasn't anything waiting to send before, queue
3000 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06003001 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003002 queue_con(con);
3003}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003004EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07003005
3006/*
3007 * Revoke a message that was previously queued for send
3008 */
Alex Elder6740a842012-06-01 14:56:43 -05003009void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003010{
Alex Elder6740a842012-06-01 14:56:43 -05003011 struct ceph_connection *con = msg->con;
3012
3013 if (!con)
3014 return; /* Message not in our possession */
3015
Sage Weilec302642009-12-22 10:43:42 -08003016 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003017 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003018 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003019 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05003020 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003021 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05003022 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003023 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003024
Sage Weil31b80062009-10-06 11:31:13 -07003025 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003026 }
3027 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05003028 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003029 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003030 if (con->out_kvec_is_msg) {
3031 con->out_skip = con->out_kvec_bytes;
3032 con->out_kvec_is_msg = false;
3033 }
Sage Weiled98ada2010-07-05 12:15:14 -07003034 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05003035
3036 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003037 }
Sage Weilec302642009-12-22 10:43:42 -08003038 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003039}
3040
3041/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003042 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003043 */
Alex Elder8921d112012-06-01 14:56:43 -05003044void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003045{
Alex Elder8921d112012-06-01 14:56:43 -05003046 struct ceph_connection *con;
3047
3048 BUG_ON(msg == NULL);
3049 if (!msg->con) {
3050 dout("%s msg %p null con\n", __func__, msg);
3051
3052 return; /* Message not in our possession */
3053 }
3054
3055 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08003056 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003057 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003058 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3059 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3060 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003061
3062 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003063 dout("%s %p msg %p revoked\n", __func__, con, msg);
3064 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003065 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003066 front_len -
3067 middle_len -
3068 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003069 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003070 ceph_msg_put(con->in_msg);
3071 con->in_msg = NULL;
3072 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003073 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003074 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003075 dout("%s %p in_msg %p msg %p no-op\n",
3076 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003077 }
3078 mutex_unlock(&con->mutex);
3079}
3080
3081/*
Sage Weil31b80062009-10-06 11:31:13 -07003082 * Queue a keepalive byte to ensure the tcp connection is alive.
3083 */
3084void ceph_con_keepalive(struct ceph_connection *con)
3085{
Sage Weile00de342011-03-04 12:25:05 -08003086 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003087 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003088 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003089 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003090 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3091 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003092 queue_con(con);
3093}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003094EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003095
Alex Elder6644ed72013-03-11 23:34:24 -05003096static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
Alex Elder43794502013-03-01 18:00:16 -06003097{
Alex Elder6644ed72013-03-11 23:34:24 -05003098 struct ceph_msg_data *data;
3099
3100 if (WARN_ON(!ceph_msg_data_type_valid(type)))
3101 return NULL;
3102
Alex Elder81b36be2013-05-01 12:43:04 -05003103 data = kmem_cache_zalloc(ceph_msg_data_cache, GFP_NOFS);
Alex Elder6644ed72013-03-11 23:34:24 -05003104 if (data)
3105 data->type = type;
Alex Elder5240d9f2013-03-14 14:09:06 -05003106 INIT_LIST_HEAD(&data->links);
Alex Elder6644ed72013-03-11 23:34:24 -05003107
3108 return data;
3109}
3110
3111static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3112{
3113 if (!data)
3114 return;
3115
Alex Elder5240d9f2013-03-14 14:09:06 -05003116 WARN_ON(!list_empty(&data->links));
Yan, Zhenge4339d282014-09-16 17:50:45 +08003117 if (data->type == CEPH_MSG_DATA_PAGELIST)
Alex Elder6644ed72013-03-11 23:34:24 -05003118 ceph_pagelist_release(data->pagelist);
Alex Elder81b36be2013-05-01 12:43:04 -05003119 kmem_cache_free(ceph_msg_data_cache, data);
Alex Elder43794502013-03-01 18:00:16 -06003120}
3121
Alex Elder90af3602013-04-05 14:46:01 -05003122void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003123 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003124{
Alex Elder6644ed72013-03-11 23:34:24 -05003125 struct ceph_msg_data *data;
3126
Alex Elder07aa1552013-03-04 18:29:06 -06003127 BUG_ON(!pages);
3128 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003129
Alex Elder6644ed72013-03-11 23:34:24 -05003130 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
3131 BUG_ON(!data);
3132 data->pages = pages;
3133 data->length = length;
3134 data->alignment = alignment & ~PAGE_MASK;
3135
Alex Elder5240d9f2013-03-14 14:09:06 -05003136 list_add_tail(&data->links, &msg->data);
3137 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003138}
Alex Elder90af3602013-04-05 14:46:01 -05003139EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003140
Alex Elder90af3602013-04-05 14:46:01 -05003141void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003142 struct ceph_pagelist *pagelist)
3143{
Alex Elder6644ed72013-03-11 23:34:24 -05003144 struct ceph_msg_data *data;
3145
Alex Elder07aa1552013-03-04 18:29:06 -06003146 BUG_ON(!pagelist);
3147 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003148
Alex Elder6644ed72013-03-11 23:34:24 -05003149 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3150 BUG_ON(!data);
3151 data->pagelist = pagelist;
3152
Alex Elder5240d9f2013-03-14 14:09:06 -05003153 list_add_tail(&data->links, &msg->data);
3154 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003155}
Alex Elder90af3602013-04-05 14:46:01 -05003156EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003157
Alex Elderea965712013-04-05 14:46:01 -05003158#ifdef CONFIG_BLOCK
Alex Elder90af3602013-04-05 14:46:01 -05003159void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
Alex Eldera1930802013-03-14 14:09:06 -05003160 size_t length)
Alex Elder27fa8382013-02-14 12:16:43 -06003161{
Alex Elder6644ed72013-03-11 23:34:24 -05003162 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003163
Alex Elder6644ed72013-03-11 23:34:24 -05003164 BUG_ON(!bio);
Alex Elder6644ed72013-03-11 23:34:24 -05003165
3166 data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3167 BUG_ON(!data);
3168 data->bio = bio;
Alex Elderc851c492013-04-05 14:46:01 -05003169 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003170
Alex Elder5240d9f2013-03-14 14:09:06 -05003171 list_add_tail(&data->links, &msg->data);
3172 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003173}
Alex Elder90af3602013-04-05 14:46:01 -05003174EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003175#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003176
Sage Weil31b80062009-10-06 11:31:13 -07003177/*
3178 * construct a new message with given type, size
3179 * the new msg has a ref count of 1.
3180 */
Sage Weilb61c2762011-08-09 15:03:46 -07003181struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3182 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003183{
3184 struct ceph_msg *m;
3185
Alex Eldere3d5d632013-05-01 12:43:04 -05003186 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003187 if (m == NULL)
3188 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003189
Sage Weil31b80062009-10-06 11:31:13 -07003190 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003191 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003192 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003193
Alex Elder9516e452013-03-01 18:00:16 -06003194 INIT_LIST_HEAD(&m->list_head);
3195 kref_init(&m->kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003196 INIT_LIST_HEAD(&m->data);
Henry C Changca208922011-05-03 02:29:56 +00003197
Sage Weil31b80062009-10-06 11:31:13 -07003198 /* front */
3199 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003200 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003201 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003202 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003203 front_len);
3204 goto out2;
3205 }
3206 } else {
3207 m->front.iov_base = NULL;
3208 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003209 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003210
Sage Weilbb257662010-04-01 16:07:23 -07003211 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003212 return m;
3213
3214out2:
3215 ceph_msg_put(m);
3216out:
Sage Weilb61c2762011-08-09 15:03:46 -07003217 if (!can_fail) {
3218 pr_err("msg_new can't create type %d front %d\n", type,
3219 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003220 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003221 } else {
3222 dout("msg_new can't create type %d front %d\n", type,
3223 front_len);
3224 }
Sage Weila79832f2010-04-01 16:06:19 -07003225 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003226}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003227EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003228
3229/*
Sage Weil31b80062009-10-06 11:31:13 -07003230 * Allocate "middle" portion of a message, if it is needed and wasn't
3231 * allocated by alloc_msg. This allows us to read a small fixed-size
3232 * per-type header in the front and then gracefully fail (i.e.,
3233 * propagate the error to the caller based on info in the front) when
3234 * the middle is too large.
3235 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003236static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003237{
3238 int type = le16_to_cpu(msg->hdr.type);
3239 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3240
3241 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3242 ceph_msg_type_name(type), middle_len);
3243 BUG_ON(!middle_len);
3244 BUG_ON(msg->middle);
3245
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003246 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003247 if (!msg->middle)
3248 return -ENOMEM;
3249 return 0;
3250}
3251
Yehuda Sadeh24504182010-01-08 13:58:34 -08003252/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003253 * Allocate a message for receiving an incoming message on a
3254 * connection, and save the result in con->in_msg. Uses the
3255 * connection's private alloc_msg op if available.
3256 *
Sage Weil4740a622012-07-30 18:19:30 -07003257 * Returns 0 on success, or a negative error code.
3258 *
3259 * On success, if we set *skip = 1:
3260 * - the next message should be skipped and ignored.
3261 * - con->in_msg == NULL
3262 * or if we set *skip = 0:
3263 * - con->in_msg is non-null.
3264 * On error (ENOMEM, EAGAIN, ...),
3265 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003266 */
Sage Weil4740a622012-07-30 18:19:30 -07003267static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003268{
Sage Weil4740a622012-07-30 18:19:30 -07003269 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003270 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003271 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003272 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003273
Alex Elder1c20f2d2012-06-04 14:43:32 -05003274 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003275 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003276
Alex Elder53ded492013-03-01 18:00:14 -06003277 mutex_unlock(&con->mutex);
3278 msg = con->ops->alloc_msg(con, hdr, skip);
3279 mutex_lock(&con->mutex);
3280 if (con->state != CON_STATE_OPEN) {
3281 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003282 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003283 return -EAGAIN;
3284 }
Alex Elder41375772013-03-05 09:25:10 -06003285 if (msg) {
3286 BUG_ON(*skip);
3287 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003288 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003289 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003290 } else {
3291 /*
3292 * Null message pointer means either we should skip
3293 * this message or we couldn't allocate memory. The
3294 * former is not an error.
3295 */
3296 if (*skip)
3297 return 0;
Alex Elder41375772013-03-05 09:25:10 -06003298
Ilya Dryomov67c64eb2015-03-23 14:52:40 +03003299 con->error_msg = "error allocating memory for incoming message";
Alex Elder53ded492013-03-01 18:00:14 -06003300 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003301 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003302 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003303
Alex Elder1c20f2d2012-06-04 14:43:32 -05003304 if (middle_len && !con->in_msg->middle) {
3305 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003306 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003307 ceph_msg_put(con->in_msg);
3308 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003309 }
3310 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003311
Sage Weil4740a622012-07-30 18:19:30 -07003312 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003313}
3314
Sage Weil31b80062009-10-06 11:31:13 -07003315
3316/*
3317 * Free a generically kmalloc'd message.
3318 */
Ilya Dryomov0215e442014-06-20 14:14:41 +04003319static void ceph_msg_free(struct ceph_msg *m)
Sage Weil31b80062009-10-06 11:31:13 -07003320{
Ilya Dryomov0215e442014-06-20 14:14:41 +04003321 dout("%s %p\n", __func__, m);
Ilya Dryomov4965fc32014-10-23 16:32:57 +04003322 kvfree(m->front.iov_base);
Alex Eldere3d5d632013-05-01 12:43:04 -05003323 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003324}
3325
Ilya Dryomov0215e442014-06-20 14:14:41 +04003326static void ceph_msg_release(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003327{
Sage Weilc2e552e2009-12-07 15:55:05 -08003328 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003329 LIST_HEAD(data);
3330 struct list_head *links;
3331 struct list_head *next;
Sage Weil31b80062009-10-06 11:31:13 -07003332
Ilya Dryomov0215e442014-06-20 14:14:41 +04003333 dout("%s %p\n", __func__, m);
Sage Weilc2e552e2009-12-07 15:55:05 -08003334 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003335
Sage Weilc2e552e2009-12-07 15:55:05 -08003336 /* drop middle, data, if any */
3337 if (m->middle) {
3338 ceph_buffer_put(m->middle);
3339 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003340 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003341
3342 list_splice_init(&m->data, &data);
3343 list_for_each_safe(links, next, &data) {
3344 struct ceph_msg_data *data;
3345
3346 data = list_entry(links, struct ceph_msg_data, links);
3347 list_del_init(links);
3348 ceph_msg_data_destroy(data);
3349 }
Alex Eldera1930802013-03-14 14:09:06 -05003350 m->data_length = 0;
Sage Weil58bb3b32009-12-23 12:12:31 -08003351
Sage Weilc2e552e2009-12-07 15:55:05 -08003352 if (m->pool)
3353 ceph_msgpool_put(m->pool, m);
3354 else
Ilya Dryomov0215e442014-06-20 14:14:41 +04003355 ceph_msg_free(m);
Sage Weil31b80062009-10-06 11:31:13 -07003356}
Ilya Dryomov0215e442014-06-20 14:14:41 +04003357
3358struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3359{
3360 dout("%s %p (was %d)\n", __func__, msg,
3361 atomic_read(&msg->kref.refcount));
3362 kref_get(&msg->kref);
3363 return msg;
3364}
3365EXPORT_SYMBOL(ceph_msg_get);
3366
3367void ceph_msg_put(struct ceph_msg *msg)
3368{
3369 dout("%s %p (was %d)\n", __func__, msg,
3370 atomic_read(&msg->kref.refcount));
3371 kref_put(&msg->kref, ceph_msg_release);
3372}
3373EXPORT_SYMBOL(ceph_msg_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003374
3375void ceph_msg_dump(struct ceph_msg *msg)
3376{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003377 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3378 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003379 print_hex_dump(KERN_DEBUG, "header: ",
3380 DUMP_PREFIX_OFFSET, 16, 1,
3381 &msg->hdr, sizeof(msg->hdr), true);
3382 print_hex_dump(KERN_DEBUG, " front: ",
3383 DUMP_PREFIX_OFFSET, 16, 1,
3384 msg->front.iov_base, msg->front.iov_len, true);
3385 if (msg->middle)
3386 print_hex_dump(KERN_DEBUG, "middle: ",
3387 DUMP_PREFIX_OFFSET, 16, 1,
3388 msg->middle->vec.iov_base,
3389 msg->middle->vec.iov_len, true);
3390 print_hex_dump(KERN_DEBUG, "footer: ",
3391 DUMP_PREFIX_OFFSET, 16, 1,
3392 &msg->footer, sizeof(msg->footer), true);
3393}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003394EXPORT_SYMBOL(ceph_msg_dump);