blob: f81fbce136f837fb0e13540823c8da3528bd6e47 [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
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070018#include <linux/ceph/libceph.h>
19#include <linux/ceph/messenger.h>
20#include <linux/ceph/decode.h>
21#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040022#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070023
Alex Elderfe38a2b2013-03-06 23:39:39 -060024#define list_entry_next(pos, member) \
25 list_entry(pos->member.next, typeof(*pos), member)
26
Sage Weil31b80062009-10-06 11:31:13 -070027/*
28 * Ceph uses the messenger to exchange ceph_msg messages with other
29 * hosts in the system. The messenger provides ordered and reliable
30 * delivery. We tolerate TCP disconnects by reconnecting (with
31 * exponential backoff) in the case of a fault (disconnection, bad
32 * crc, protocol error). Acks allow sent messages to be discarded by
33 * the sender.
34 */
35
Alex Elderbc18f4b2012-06-20 21:53:53 -050036/*
37 * We track the state of the socket on a given connection using
38 * values defined below. The transition to a new socket state is
39 * handled by a function which verifies we aren't coming from an
40 * unexpected state.
41 *
42 * --------
43 * | NEW* | transient initial state
44 * --------
45 * | con_sock_state_init()
46 * v
47 * ----------
48 * | CLOSED | initialized, but no socket (and no
49 * ---------- TCP connection)
50 * ^ \
51 * | \ con_sock_state_connecting()
52 * | ----------------------
53 * | \
54 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070055 * |+--------------------------- \
56 * | \ \ \
57 * | ----------- \ \
58 * | | CLOSING | socket event; \ \
59 * | ----------- await close \ \
60 * | ^ \ |
61 * | | \ |
62 * | + con_sock_state_closing() \ |
63 * | / \ | |
64 * | / --------------- | |
65 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050066 * | / --------------
67 * | / -----------------| CONNECTING | socket created, TCP
68 * | | / -------------- connect initiated
69 * | | | con_sock_state_connected()
70 * | | v
71 * -------------
72 * | CONNECTED | TCP connection established
73 * -------------
74 *
75 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
76 */
Alex Elderce2c8902012-05-22 22:15:49 -050077
78#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
79#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
80#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
81#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
82#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
83
Sage Weil8dacc7d2012-07-20 17:24:40 -070084/*
85 * connection states
86 */
87#define CON_STATE_CLOSED 1 /* -> PREOPEN */
88#define CON_STATE_PREOPEN 2 /* -> CONNECTING, CLOSED */
89#define CON_STATE_CONNECTING 3 /* -> NEGOTIATING, CLOSED */
90#define CON_STATE_NEGOTIATING 4 /* -> OPEN, CLOSED */
91#define CON_STATE_OPEN 5 /* -> STANDBY, CLOSED */
92#define CON_STATE_STANDBY 6 /* -> PREOPEN, CLOSED */
93
Sage Weil4a861692012-07-20 17:29:55 -070094/*
95 * ceph_connection flag bits
96 */
97#define CON_FLAG_LOSSYTX 0 /* we can close channel or drop
98 * messages on errors */
99#define CON_FLAG_KEEPALIVE_PENDING 1 /* we need to send a keepalive */
100#define CON_FLAG_WRITE_PENDING 2 /* we have data ready to send */
101#define CON_FLAG_SOCK_CLOSED 3 /* socket state changed to closed */
102#define CON_FLAG_BACKOFF 4 /* need to retry queuing delayed work */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700103
Alex Elderc9ffc772013-02-20 10:25:12 -0600104static bool con_flag_valid(unsigned long con_flag)
105{
106 switch (con_flag) {
107 case CON_FLAG_LOSSYTX:
108 case CON_FLAG_KEEPALIVE_PENDING:
109 case CON_FLAG_WRITE_PENDING:
110 case CON_FLAG_SOCK_CLOSED:
111 case CON_FLAG_BACKOFF:
112 return true;
113 default:
114 return false;
115 }
116}
117
118static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
119{
120 BUG_ON(!con_flag_valid(con_flag));
121
122 clear_bit(con_flag, &con->flags);
123}
124
125static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
126{
127 BUG_ON(!con_flag_valid(con_flag));
128
129 set_bit(con_flag, &con->flags);
130}
131
132static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
133{
134 BUG_ON(!con_flag_valid(con_flag));
135
136 return test_bit(con_flag, &con->flags);
137}
138
139static bool con_flag_test_and_clear(struct ceph_connection *con,
140 unsigned long con_flag)
141{
142 BUG_ON(!con_flag_valid(con_flag));
143
144 return test_and_clear_bit(con_flag, &con->flags);
145}
146
147static bool con_flag_test_and_set(struct ceph_connection *con,
148 unsigned long con_flag)
149{
150 BUG_ON(!con_flag_valid(con_flag));
151
152 return test_and_set_bit(con_flag, &con->flags);
153}
154
Sage Weil31b80062009-10-06 11:31:13 -0700155/* static tag bytes (protocol control messages) */
156static char tag_msg = CEPH_MSGR_TAG_MSG;
157static char tag_ack = CEPH_MSGR_TAG_ACK;
158static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
159
Sage Weila6a53492010-04-13 14:07:07 -0700160#ifdef CONFIG_LOCKDEP
161static struct lock_class_key socket_class;
162#endif
163
Alex Elder84495f42012-02-15 07:43:55 -0600164/*
165 * When skipping (ignoring) a block of input we read it into a "skip
166 * buffer," which is this many bytes in size.
167 */
168#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -0700169
170static void queue_con(struct ceph_connection *con);
171static void con_work(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600172static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700173
Sage Weil31b80062009-10-06 11:31:13 -0700174/*
Alex Elderf64a9312012-01-23 15:49:27 -0600175 * Nicely render a sockaddr as a string. An array of formatted
176 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700177 */
Alex Elderf64a9312012-01-23 15:49:27 -0600178#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
179#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
180#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
181#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
182
183static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
184static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700185
Alex Elder576665192012-01-23 15:49:27 -0600186static struct page *zero_page; /* used in certain error cases */
Alex Elder576665192012-01-23 15:49:27 -0600187
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700188const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700189{
190 int i;
191 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600192 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
193 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700194
Alex Elderf64a9312012-01-23 15:49:27 -0600195 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700196 s = addr_str[i];
197
198 switch (ss->ss_family) {
199 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600200 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
201 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700202 break;
203
204 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600205 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
206 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700207 break;
208
209 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600210 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
211 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700212 }
213
214 return s;
215}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700216EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700217
Sage Weil63f2d212009-11-03 15:17:56 -0800218static void encode_my_addr(struct ceph_messenger *msgr)
219{
220 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
221 ceph_encode_addr(&msgr->my_enc_addr);
222}
223
Sage Weil31b80062009-10-06 11:31:13 -0700224/*
225 * work queue for all reading and writing to/from the socket.
226 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600227static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700228
Alex Elder15417162013-02-19 12:25:56 -0600229static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600230{
Alex Elderd3002b92012-02-14 14:05:33 -0600231 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600232 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600233 ceph_msgr_wq = NULL;
234 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600235
Alex Elder6173d1f2012-02-14 14:05:33 -0600236 BUG_ON(zero_page == NULL);
237 kunmap(zero_page);
238 page_cache_release(zero_page);
239 zero_page = NULL;
240}
241
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700242int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700243{
Alex Elder576665192012-01-23 15:49:27 -0600244 BUG_ON(zero_page != NULL);
245 zero_page = ZERO_PAGE(0);
246 page_cache_get(zero_page);
247
Tejun Heof363e452011-01-03 14:49:46 +0100248 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600249 if (ceph_msgr_wq)
250 return 0;
Alex Elder576665192012-01-23 15:49:27 -0600251
Alex Elder6173d1f2012-02-14 14:05:33 -0600252 pr_err("msgr_init failed to create workqueue\n");
253 _ceph_msgr_exit();
Alex Elder576665192012-01-23 15:49:27 -0600254
Alex Elder6173d1f2012-02-14 14:05:33 -0600255 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700256}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700257EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700258
259void ceph_msgr_exit(void)
260{
Alex Elder576665192012-01-23 15:49:27 -0600261 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder576665192012-01-23 15:49:27 -0600262
Alex Elder6173d1f2012-02-14 14:05:33 -0600263 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700264}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700265EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700266
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700267void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700268{
269 flush_workqueue(ceph_msgr_wq);
270}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700271EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700272
Alex Elderce2c8902012-05-22 22:15:49 -0500273/* Connection socket state transition functions */
274
275static void con_sock_state_init(struct ceph_connection *con)
276{
277 int old_state;
278
279 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
280 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
281 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700282 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
283 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500284}
285
286static void con_sock_state_connecting(struct ceph_connection *con)
287{
288 int old_state;
289
290 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
291 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
292 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700293 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
294 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500295}
296
297static void con_sock_state_connected(struct ceph_connection *con)
298{
299 int old_state;
300
301 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
302 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
303 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700304 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
305 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500306}
307
308static void con_sock_state_closing(struct ceph_connection *con)
309{
310 int old_state;
311
312 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
313 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
314 old_state != CON_SOCK_STATE_CONNECTED &&
315 old_state != CON_SOCK_STATE_CLOSING))
316 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700317 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
318 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500319}
320
321static void con_sock_state_closed(struct ceph_connection *con)
322{
323 int old_state;
324
325 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
326 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700327 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700328 old_state != CON_SOCK_STATE_CONNECTING &&
329 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500330 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700331 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
332 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500333}
Sage Weila922d382010-05-29 09:41:23 -0700334
Sage Weil31b80062009-10-06 11:31:13 -0700335/*
336 * socket callback functions
337 */
338
339/* data available on socket, or listen socket received a connect */
Alex Elder327800b2012-05-22 11:41:43 -0500340static void ceph_sock_data_ready(struct sock *sk, int count_unused)
Sage Weil31b80062009-10-06 11:31:13 -0700341{
Alex Elderbd406142012-01-23 15:49:27 -0600342 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700343 if (atomic_read(&con->msgr->stopping)) {
344 return;
345 }
Alex Elderbd406142012-01-23 15:49:27 -0600346
Sage Weil31b80062009-10-06 11:31:13 -0700347 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500348 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700349 con, con->state);
350 queue_con(con);
351 }
352}
353
354/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500355static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700356{
Alex Elderd3002b92012-02-14 14:05:33 -0600357 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700358
Jim Schutt182fac22012-02-29 08:30:58 -0700359 /* only queue to workqueue if there is data we want to write,
360 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500361 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700362 * doesn't get called again until try_write() fills the socket
363 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
364 * and net/core/stream.c:sk_stream_write_space().
365 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600366 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Jim Schutt182fac22012-02-29 08:30:58 -0700367 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500368 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700369 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
370 queue_con(con);
371 }
Sage Weil31b80062009-10-06 11:31:13 -0700372 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500373 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700374 }
Sage Weil31b80062009-10-06 11:31:13 -0700375}
376
377/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500378static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700379{
Alex Elderbd406142012-01-23 15:49:27 -0600380 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700381
Alex Elder327800b2012-05-22 11:41:43 -0500382 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700383 con, con->state, sk->sk_state);
384
Sage Weil31b80062009-10-06 11:31:13 -0700385 switch (sk->sk_state) {
386 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500387 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700388 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500389 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500390 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600391 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500392 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700393 break;
394 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500395 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500396 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700397 queue_con(con);
398 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600399 default: /* Everything else is uninteresting */
400 break;
Sage Weil31b80062009-10-06 11:31:13 -0700401 }
402}
403
404/*
405 * set up socket callbacks
406 */
407static void set_sock_callbacks(struct socket *sock,
408 struct ceph_connection *con)
409{
410 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600411 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500412 sk->sk_data_ready = ceph_sock_data_ready;
413 sk->sk_write_space = ceph_sock_write_space;
414 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700415}
416
417
418/*
419 * socket helpers
420 */
421
422/*
423 * initiate connection to a remote socket.
424 */
Alex Elder41617d02012-02-14 14:05:33 -0600425static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700426{
Sage Weilf91d3472010-07-01 15:18:31 -0700427 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700428 struct socket *sock;
429 int ret;
430
431 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700432 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
433 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700434 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600435 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700436 sock->sk->sk_allocation = GFP_NOFS;
437
Sage Weila6a53492010-04-13 14:07:07 -0700438#ifdef CONFIG_LOCKDEP
439 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
440#endif
441
Sage Weil31b80062009-10-06 11:31:13 -0700442 set_sock_callbacks(sock, con);
443
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700444 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700445
Sage Weil89a86be2012-06-09 14:19:21 -0700446 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700447 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
448 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700449 if (ret == -EINPROGRESS) {
450 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700451 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700452 sock->sk->sk_state);
Alex Eldera5bc3122012-01-23 15:49:27 -0600453 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700454 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700455 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700456 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700457 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700458
Alex Elder41617d02012-02-14 14:05:33 -0600459 return ret;
Alex Eldera5bc3122012-01-23 15:49:27 -0600460 }
461 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600462 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700463}
464
465static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
466{
467 struct kvec iov = {buf, len};
468 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800469 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700470
Sage Weil98bdb0a2011-01-25 08:17:48 -0800471 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
472 if (r == -EAGAIN)
473 r = 0;
474 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700475}
476
Alex Elderafb3d902013-03-08 20:58:59 -0600477static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
478 int page_offset, size_t length)
479{
480 void *kaddr;
481 int ret;
482
483 BUG_ON(page_offset + length > PAGE_SIZE);
484
485 kaddr = kmap(page);
486 BUG_ON(!kaddr);
487 ret = ceph_tcp_recvmsg(sock, kaddr + page_offset, length);
488 kunmap(page);
489
490 return ret;
491}
492
Sage Weil31b80062009-10-06 11:31:13 -0700493/*
494 * write something. @more is true if caller will be sending more data
495 * shortly.
496 */
497static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
498 size_t kvlen, size_t len, int more)
499{
500 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800501 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700502
503 if (more)
504 msg.msg_flags |= MSG_MORE;
505 else
506 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
507
Sage Weil42961d22011-01-25 08:19:34 -0800508 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
509 if (r == -EAGAIN)
510 r = 0;
511 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700512}
513
Alex Elder31739132012-03-07 11:40:08 -0600514static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
Alex Eldere1dcb122013-03-06 23:39:38 -0600515 int offset, size_t size, bool more)
Alex Elder31739132012-03-07 11:40:08 -0600516{
517 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
518 int ret;
519
520 ret = kernel_sendpage(sock, page, offset, size, flags);
521 if (ret == -EAGAIN)
522 ret = 0;
523
524 return ret;
525}
526
Sage Weil31b80062009-10-06 11:31:13 -0700527
528/*
529 * Shutdown/close the socket for the given connection.
530 */
531static int con_close_socket(struct ceph_connection *con)
532{
Sage Weil8007b8d2012-07-30 18:16:16 -0700533 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700534
535 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700536 if (con->sock) {
537 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
538 sock_release(con->sock);
539 con->sock = NULL;
540 }
Alex Elder456ea462012-06-20 21:53:53 -0500541
542 /*
Sage Weil4a861692012-07-20 17:29:55 -0700543 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500544 * independent of the connection mutex, and we could have
545 * received a socket close event before we had the chance to
546 * shut the socket down.
547 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600548 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700549
Alex Elderce2c8902012-05-22 22:15:49 -0500550 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700551 return rc;
552}
553
554/*
555 * Reset a connection. Discard all incoming and outgoing messages
556 * and clear *_seq state.
557 */
558static void ceph_msg_remove(struct ceph_msg *msg)
559{
560 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500561 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700562 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500563 msg->con = NULL;
564
Sage Weil31b80062009-10-06 11:31:13 -0700565 ceph_msg_put(msg);
566}
567static void ceph_msg_remove_list(struct list_head *head)
568{
569 while (!list_empty(head)) {
570 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
571 list_head);
572 ceph_msg_remove(msg);
573 }
574}
575
576static void reset_connection(struct ceph_connection *con)
577{
578 /* reset connection, out_queue, msg_ and connect_seq */
579 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600580 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700581 ceph_msg_remove_list(&con->out_queue);
582 ceph_msg_remove_list(&con->out_sent);
583
Sage Weilcf3e5c42009-12-11 09:48:05 -0800584 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500585 BUG_ON(con->in_msg->con != con);
586 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800587 ceph_msg_put(con->in_msg);
588 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700589 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800590 }
591
Sage Weil31b80062009-10-06 11:31:13 -0700592 con->connect_seq = 0;
593 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800594 if (con->out_msg) {
595 ceph_msg_put(con->out_msg);
596 con->out_msg = NULL;
597 }
Sage Weil31b80062009-10-06 11:31:13 -0700598 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700599 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700600}
601
602/*
603 * mark a peer down. drop any open connections.
604 */
605void ceph_con_close(struct ceph_connection *con)
606{
Sage Weil8c50c812012-07-30 16:24:37 -0700607 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700608 dout("con_close %p peer %s\n", con,
609 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700610 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500611
Alex Elderc9ffc772013-02-20 10:25:12 -0600612 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
613 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
614 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
615 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500616
Sage Weil31b80062009-10-06 11:31:13 -0700617 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700618 con->peer_global_seq = 0;
Sage Weil91e45ce2010-02-15 12:05:09 -0800619 cancel_delayed_work(&con->work);
Sage Weilee76e072012-07-20 16:45:49 -0700620 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800621 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700622}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700623EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700624
625/*
Sage Weil31b80062009-10-06 11:31:13 -0700626 * Reopen a closed connection, with a new peer address.
627 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700628void ceph_con_open(struct ceph_connection *con,
629 __u8 entity_type, __u64 entity_num,
630 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700631{
Sage Weil54691552012-07-30 16:21:40 -0700632 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700633 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700634
Alex Elder122070a2012-12-26 10:43:57 -0600635 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700636 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500637
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700638 con->peer_name.type = (__u8) entity_type;
639 con->peer_name.num = cpu_to_le64(entity_num);
640
Sage Weil31b80062009-10-06 11:31:13 -0700641 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800642 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700643 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700644 queue_con(con);
645}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700646EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700647
648/*
Sage Weil87b315a2010-03-22 14:51:18 -0700649 * return true if this connection ever successfully opened
650 */
651bool ceph_con_opened(struct ceph_connection *con)
652{
653 return con->connect_seq > 0;
654}
655
656/*
Sage Weil31b80062009-10-06 11:31:13 -0700657 * initialize a new connection.
658 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500659void ceph_con_init(struct ceph_connection *con, void *private,
660 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700661 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700662{
663 dout("con_init %p\n", con);
664 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500665 con->private = private;
666 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700667 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500668
669 con_sock_state_init(con);
670
Sage Weilec302642009-12-22 10:43:42 -0800671 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700672 INIT_LIST_HEAD(&con->out_queue);
673 INIT_LIST_HEAD(&con->out_sent);
674 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500675
Sage Weil8dacc7d2012-07-20 17:24:40 -0700676 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700677}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700678EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700679
680
681/*
682 * We maintain a global counter to order connection attempts. Get
683 * a unique seq greater than @gt.
684 */
685static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
686{
687 u32 ret;
688
689 spin_lock(&msgr->global_seq_lock);
690 if (msgr->global_seq < gt)
691 msgr->global_seq = gt;
692 ret = ++msgr->global_seq;
693 spin_unlock(&msgr->global_seq_lock);
694 return ret;
695}
696
Alex Eldere2200422012-05-23 14:35:23 -0500697static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600698{
699 con->out_kvec_left = 0;
700 con->out_kvec_bytes = 0;
701 con->out_kvec_cur = &con->out_kvec[0];
702}
703
Alex Eldere2200422012-05-23 14:35:23 -0500704static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600705 size_t size, void *data)
706{
707 int index;
708
709 index = con->out_kvec_left;
710 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
711
712 con->out_kvec[index].iov_len = size;
713 con->out_kvec[index].iov_base = data;
714 con->out_kvec_left++;
715 con->out_kvec_bytes += size;
716}
Sage Weil31b80062009-10-06 11:31:13 -0700717
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500718#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600719
720/*
721 * For a bio data item, a piece is whatever remains of the next
722 * entry in the current bio iovec, or the first entry in the next
723 * bio in the list.
724 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500725static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data *data,
726 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600727{
728 struct ceph_msg_data_cursor *cursor = &data->cursor;
729 struct bio *bio;
730
731 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
732
733 bio = data->bio;
734 BUG_ON(!bio);
735 BUG_ON(!bio->bi_vcnt);
Alex Elder6aaa4512013-03-06 23:39:39 -0600736
Alex Elder25aff7c2013-03-11 23:34:22 -0500737 cursor->resid = length;
Alex Elder6aaa4512013-03-06 23:39:39 -0600738 cursor->bio = bio;
739 cursor->vector_index = 0;
740 cursor->vector_offset = 0;
Alex Elder25aff7c2013-03-11 23:34:22 -0500741 cursor->last_piece = length <= bio->bi_io_vec[0].bv_len;
Alex Elder6aaa4512013-03-06 23:39:39 -0600742}
743
744static struct page *ceph_msg_data_bio_next(struct ceph_msg_data *data,
745 size_t *page_offset,
746 size_t *length)
747{
748 struct ceph_msg_data_cursor *cursor = &data->cursor;
749 struct bio *bio;
750 struct bio_vec *bio_vec;
751 unsigned int index;
752
753 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
754
755 bio = cursor->bio;
756 BUG_ON(!bio);
757
758 index = cursor->vector_index;
759 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
760
761 bio_vec = &bio->bi_io_vec[index];
762 BUG_ON(cursor->vector_offset >= bio_vec->bv_len);
763 *page_offset = (size_t) (bio_vec->bv_offset + cursor->vector_offset);
764 BUG_ON(*page_offset >= PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500765 if (cursor->last_piece) /* pagelist offset is always 0 */
766 *length = cursor->resid;
767 else
768 *length = (size_t) (bio_vec->bv_len - cursor->vector_offset);
Alex Elder6aaa4512013-03-06 23:39:39 -0600769 BUG_ON(*length > PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500770 BUG_ON(*length > cursor->resid);
Alex Elder6aaa4512013-03-06 23:39:39 -0600771
772 return bio_vec->bv_page;
773}
774
775static bool ceph_msg_data_bio_advance(struct ceph_msg_data *data, size_t bytes)
776{
777 struct ceph_msg_data_cursor *cursor = &data->cursor;
778 struct bio *bio;
779 struct bio_vec *bio_vec;
780 unsigned int index;
781
782 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
783
784 bio = cursor->bio;
785 BUG_ON(!bio);
786
787 index = cursor->vector_index;
788 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
789 bio_vec = &bio->bi_io_vec[index];
Alex Elder6aaa4512013-03-06 23:39:39 -0600790
791 /* Advance the cursor offset */
792
Alex Elder25aff7c2013-03-11 23:34:22 -0500793 BUG_ON(cursor->resid < bytes);
794 cursor->resid -= bytes;
Alex Elder6aaa4512013-03-06 23:39:39 -0600795 cursor->vector_offset += bytes;
796 if (cursor->vector_offset < bio_vec->bv_len)
797 return false; /* more bytes to process in this segment */
Alex Elder25aff7c2013-03-11 23:34:22 -0500798 BUG_ON(cursor->vector_offset != bio_vec->bv_len);
Alex Elder6aaa4512013-03-06 23:39:39 -0600799
800 /* Move on to the next segment, and possibly the next bio */
801
Alex Elder25aff7c2013-03-11 23:34:22 -0500802 if (++index == (unsigned int) bio->bi_vcnt) {
Alex Elder6aaa4512013-03-06 23:39:39 -0600803 bio = bio->bi_next;
Alex Elder25aff7c2013-03-11 23:34:22 -0500804 index = 0;
Alex Elder6aaa4512013-03-06 23:39:39 -0600805 }
Alex Elder25aff7c2013-03-11 23:34:22 -0500806 cursor->bio = bio;
807 cursor->vector_index = index;
Alex Elder6aaa4512013-03-06 23:39:39 -0600808 cursor->vector_offset = 0;
809
Alex Elder25aff7c2013-03-11 23:34:22 -0500810 if (!cursor->last_piece) {
811 BUG_ON(!cursor->resid);
812 BUG_ON(!bio);
813 /* A short read is OK, so use <= rather than == */
814 if (cursor->resid <= bio->bi_io_vec[index].bv_len)
Alex Elder6aaa4512013-03-06 23:39:39 -0600815 cursor->last_piece = true;
Alex Elder25aff7c2013-03-11 23:34:22 -0500816 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600817
818 return true;
819}
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500820#endif
821
Alex Elderfe38a2b2013-03-06 23:39:39 -0600822/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600823 * For a page array, a piece comes from the first page in the array
824 * that has not already been fully consumed.
825 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500826static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data *data,
827 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600828{
829 struct ceph_msg_data_cursor *cursor = &data->cursor;
830 int page_count;
831
832 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
833
834 BUG_ON(!data->pages);
835 BUG_ON(!data->length);
Alex Elder25aff7c2013-03-11 23:34:22 -0500836 BUG_ON(length != data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600837
Alex Elder25aff7c2013-03-11 23:34:22 -0500838 cursor->resid = length;
Alex Eldere766d7b2013-03-07 15:38:28 -0600839 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600840 cursor->page_offset = data->alignment & ~PAGE_MASK;
841 cursor->page_index = 0;
Alex Elder25aff7c2013-03-11 23:34:22 -0500842 BUG_ON(page_count > (int) USHRT_MAX);
Alex Eldere766d7b2013-03-07 15:38:28 -0600843 cursor->page_count = (unsigned short) page_count;
Alex Elder25aff7c2013-03-11 23:34:22 -0500844 cursor->last_piece = length <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600845}
846
847static struct page *ceph_msg_data_pages_next(struct ceph_msg_data *data,
848 size_t *page_offset,
849 size_t *length)
850{
851 struct ceph_msg_data_cursor *cursor = &data->cursor;
852
853 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
854
855 BUG_ON(cursor->page_index >= cursor->page_count);
856 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600857
858 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500859 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600860 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500861 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600862 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600863
864 return data->pages[cursor->page_index];
865}
866
867static bool ceph_msg_data_pages_advance(struct ceph_msg_data *data,
868 size_t bytes)
869{
870 struct ceph_msg_data_cursor *cursor = &data->cursor;
871
872 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
873
874 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600875
876 /* Advance the cursor page offset */
877
878 cursor->resid -= bytes;
879 cursor->page_offset += bytes;
880 if (!bytes || cursor->page_offset & ~PAGE_MASK)
881 return false; /* more bytes to process in the current page */
882
883 /* Move on to the next page */
884
885 BUG_ON(cursor->page_index >= cursor->page_count);
886 cursor->page_offset = 0;
887 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500888 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600889
890 return true;
891}
892
893/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600894 * For a pagelist, a piece is whatever remains to be consumed in the
895 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600896 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500897static void ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data *data,
898 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600899{
900 struct ceph_msg_data_cursor *cursor = &data->cursor;
901 struct ceph_pagelist *pagelist;
902 struct page *page;
903
Alex Elderdd236fc2013-03-06 23:39:39 -0600904 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600905
906 pagelist = data->pagelist;
907 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500908 BUG_ON(length != pagelist->length);
909
910 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600911 return; /* pagelist can be assigned but empty */
912
913 BUG_ON(list_empty(&pagelist->head));
914 page = list_first_entry(&pagelist->head, struct page, lru);
915
Alex Elder25aff7c2013-03-11 23:34:22 -0500916 cursor->resid = length;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600917 cursor->page = page;
918 cursor->offset = 0;
Alex Elder25aff7c2013-03-11 23:34:22 -0500919 cursor->last_piece = length <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600920}
921
Alex Elderdd236fc2013-03-06 23:39:39 -0600922static struct page *ceph_msg_data_pagelist_next(struct ceph_msg_data *data,
Alex Elderfe38a2b2013-03-06 23:39:39 -0600923 size_t *page_offset,
Alex Elderdd236fc2013-03-06 23:39:39 -0600924 size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600925{
926 struct ceph_msg_data_cursor *cursor = &data->cursor;
927 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600928
929 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
930
931 pagelist = data->pagelist;
932 BUG_ON(!pagelist);
933
934 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -0500935 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600936
Alex Elderfe38a2b2013-03-06 23:39:39 -0600937 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder25aff7c2013-03-11 23:34:22 -0500938 if (cursor->last_piece) /* pagelist offset is always 0 */
939 *length = cursor->resid;
940 else
941 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600942
943 return data->cursor.page;
944}
945
Alex Elderdd236fc2013-03-06 23:39:39 -0600946static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data *data,
947 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600948{
949 struct ceph_msg_data_cursor *cursor = &data->cursor;
950 struct ceph_pagelist *pagelist;
951
952 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
953
954 pagelist = data->pagelist;
955 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500956
957 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600958 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
959
960 /* Advance the cursor offset */
961
Alex Elder25aff7c2013-03-11 23:34:22 -0500962 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600963 cursor->offset += bytes;
964 /* pagelist offset is always 0 */
965 if (!bytes || cursor->offset & ~PAGE_MASK)
966 return false; /* more bytes to process in the current page */
967
968 /* Move on to the next page */
969
970 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
971 cursor->page = list_entry_next(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -0500972 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600973
974 return true;
975}
976
Alex Elderdd236fc2013-03-06 23:39:39 -0600977/*
978 * Message data is handled (sent or received) in pieces, where each
979 * piece resides on a single page. The network layer might not
980 * consume an entire piece at once. A data item's cursor keeps
981 * track of which piece is next to process and how much remains to
982 * be processed in that piece. It also tracks whether the current
983 * piece is the last one in the data item.
984 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500985static void ceph_msg_data_cursor_init(struct ceph_msg_data *data,
986 size_t length)
Alex Elderdd236fc2013-03-06 23:39:39 -0600987{
988 switch (data->type) {
989 case CEPH_MSG_DATA_PAGELIST:
Alex Elder25aff7c2013-03-11 23:34:22 -0500990 ceph_msg_data_pagelist_cursor_init(data, length);
Alex Elderdd236fc2013-03-06 23:39:39 -0600991 break;
Alex Eldere766d7b2013-03-07 15:38:28 -0600992 case CEPH_MSG_DATA_PAGES:
Alex Elder25aff7c2013-03-11 23:34:22 -0500993 ceph_msg_data_pages_cursor_init(data, length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600994 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600995#ifdef CONFIG_BLOCK
996 case CEPH_MSG_DATA_BIO:
Alex Elder25aff7c2013-03-11 23:34:22 -0500997 ceph_msg_data_bio_cursor_init(data, length);
Alex Elder6aaa4512013-03-06 23:39:39 -0600998 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600999#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001000 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001001 default:
1002 /* BUG(); */
1003 break;
1004 }
1005}
1006
1007/*
1008 * Return the page containing the next piece to process for a given
1009 * data item, and supply the page offset and length of that piece.
1010 * Indicate whether this is the last piece in this data item.
1011 */
1012static struct page *ceph_msg_data_next(struct ceph_msg_data *data,
1013 size_t *page_offset,
1014 size_t *length,
1015 bool *last_piece)
1016{
1017 struct page *page;
1018
1019 switch (data->type) {
1020 case CEPH_MSG_DATA_PAGELIST:
1021 page = ceph_msg_data_pagelist_next(data, page_offset, length);
1022 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001023 case CEPH_MSG_DATA_PAGES:
1024 page = ceph_msg_data_pages_next(data, page_offset, length);
1025 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001026#ifdef CONFIG_BLOCK
1027 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001028 page = ceph_msg_data_bio_next(data, page_offset, length);
1029 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001030#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001031 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001032 default:
1033 page = NULL;
1034 break;
1035 }
1036 BUG_ON(!page);
1037 BUG_ON(*page_offset + *length > PAGE_SIZE);
1038 BUG_ON(!*length);
1039 if (last_piece)
1040 *last_piece = data->cursor.last_piece;
1041
1042 return page;
1043}
1044
1045/*
1046 * Returns true if the result moves the cursor on to the next piece
1047 * of the data item.
1048 */
1049static bool ceph_msg_data_advance(struct ceph_msg_data *data, size_t bytes)
1050{
Alex Elder25aff7c2013-03-11 23:34:22 -05001051 struct ceph_msg_data_cursor *cursor = &data->cursor;
Alex Elderdd236fc2013-03-06 23:39:39 -06001052 bool new_piece;
1053
Alex Elder25aff7c2013-03-11 23:34:22 -05001054 BUG_ON(bytes > cursor->resid);
Alex Elderdd236fc2013-03-06 23:39:39 -06001055 switch (data->type) {
1056 case CEPH_MSG_DATA_PAGELIST:
1057 new_piece = ceph_msg_data_pagelist_advance(data, bytes);
1058 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001059 case CEPH_MSG_DATA_PAGES:
1060 new_piece = ceph_msg_data_pages_advance(data, bytes);
1061 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001062#ifdef CONFIG_BLOCK
1063 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001064 new_piece = ceph_msg_data_bio_advance(data, bytes);
1065 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001066#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001067 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001068 default:
1069 BUG();
1070 break;
1071 }
1072
1073 return new_piece;
1074}
1075
Alex Elder78625052013-03-06 23:39:39 -06001076static void prepare_message_data(struct ceph_msg *msg,
1077 struct ceph_msg_pos *msg_pos)
Alex Elder739c9052012-06-11 14:57:13 -05001078{
Alex Elder25aff7c2013-03-11 23:34:22 -05001079 size_t data_len;
1080
Alex Elder739c9052012-06-11 14:57:13 -05001081 BUG_ON(!msg);
Alex Elder25aff7c2013-03-11 23:34:22 -05001082
1083 data_len = le32_to_cpu(msg->hdr.data_len);
1084 BUG_ON(!data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001085
1086 /* initialize page iterator */
Alex Elderbae6acd2013-03-06 23:39:38 -06001087 msg_pos->page = 0;
Alex Elder97fb1c72013-03-01 18:00:16 -06001088 if (ceph_msg_has_pages(msg))
Alex Elderf9e15772013-03-01 18:00:16 -06001089 msg_pos->page_pos = msg->p.alignment;
Alex Elder739c9052012-06-11 14:57:13 -05001090 else
Alex Elderbae6acd2013-03-06 23:39:38 -06001091 msg_pos->page_pos = 0;
Alex Elderbae6acd2013-03-06 23:39:38 -06001092 msg_pos->data_pos = 0;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001093
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001094 /* Initialize data cursors */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001095
Alex Elder6aaa4512013-03-06 23:39:39 -06001096#ifdef CONFIG_BLOCK
1097 if (ceph_msg_has_bio(msg))
Alex Elder25aff7c2013-03-11 23:34:22 -05001098 ceph_msg_data_cursor_init(&msg->b, data_len);
Alex Elder6aaa4512013-03-06 23:39:39 -06001099#endif /* CONFIG_BLOCK */
Alex Eldere766d7b2013-03-07 15:38:28 -06001100 if (ceph_msg_has_pages(msg))
Alex Elder25aff7c2013-03-11 23:34:22 -05001101 ceph_msg_data_cursor_init(&msg->p, data_len);
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001102 if (ceph_msg_has_pagelist(msg))
Alex Elder25aff7c2013-03-11 23:34:22 -05001103 ceph_msg_data_cursor_init(&msg->l, data_len);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001104
Alex Elderbae6acd2013-03-06 23:39:38 -06001105 msg_pos->did_page_crc = false;
Alex Elder739c9052012-06-11 14:57:13 -05001106}
1107
Sage Weil31b80062009-10-06 11:31:13 -07001108/*
1109 * Prepare footer for currently outgoing message, and finish things
1110 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1111 */
Alex Elder859eb792012-02-14 14:05:33 -06001112static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001113{
1114 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001115 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001116
Alex Elderfd154f32012-06-11 14:57:13 -05001117 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1118
Sage Weil31b80062009-10-06 11:31:13 -07001119 dout("prepare_write_message_footer %p\n", con);
1120 con->out_kvec_is_msg = true;
1121 con->out_kvec[v].iov_base = &m->footer;
1122 con->out_kvec[v].iov_len = sizeof(m->footer);
1123 con->out_kvec_bytes += sizeof(m->footer);
1124 con->out_kvec_left++;
1125 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001126 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001127}
1128
1129/*
1130 * Prepare headers for the next outgoing message.
1131 */
1132static void prepare_write_message(struct ceph_connection *con)
1133{
1134 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001135 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001136
Alex Eldere2200422012-05-23 14:35:23 -05001137 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001138 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001139 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001140
1141 /* Sneak an ack in there first? If we can get it into the same
1142 * TCP packet that's a good thing. */
1143 if (con->in_seq > con->in_seq_acked) {
1144 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001145 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001146 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001147 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001148 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001149 }
1150
Alex Elder38941f82012-06-01 14:56:43 -05001151 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001152 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001153 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001154 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001155
1156 /* put message on sent list */
1157 ceph_msg_get(m);
1158 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001159
Sage Weile84346b2010-05-11 21:20:38 -07001160 /*
1161 * only assign outgoing seq # if we haven't sent this message
1162 * yet. if it is requeued, resend with it's original seq.
1163 */
1164 if (m->needs_out_seq) {
1165 m->hdr.seq = cpu_to_le64(++con->out_seq);
1166 m->needs_out_seq = false;
1167 }
Sage Weil31b80062009-10-06 11:31:13 -07001168
Alex Elder4a73ef22013-03-07 15:38:26 -06001169 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d (%zd)\n",
Sage Weil31b80062009-10-06 11:31:13 -07001170 m, con->out_seq, le16_to_cpu(m->hdr.type),
1171 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elderf9e15772013-03-01 18:00:16 -06001172 le32_to_cpu(m->hdr.data_len), m->p.length);
Sage Weil31b80062009-10-06 11:31:13 -07001173 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1174
1175 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001176 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1177 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1178 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001179
Sage Weil31b80062009-10-06 11:31:13 -07001180 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001181 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001182 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001183
1184 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001185 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1186 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001187 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001188
1189 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1190 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1191 if (m->middle) {
1192 crc = crc32c(0, m->middle->vec.iov_base,
1193 m->middle->vec.iov_len);
1194 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1195 } else
Sage Weil31b80062009-10-06 11:31:13 -07001196 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001197 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001198 le32_to_cpu(con->out_msg->footer.front_crc),
1199 le32_to_cpu(con->out_msg->footer.middle_crc));
1200
1201 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001202 con->out_msg->footer.data_crc = 0;
Alex Elder78625052013-03-06 23:39:39 -06001203 if (m->hdr.data_len) {
1204 prepare_message_data(con->out_msg, &con->out_msg_pos);
1205 con->out_more = 1; /* data + footer will follow */
1206 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001207 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001208 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001209 }
Sage Weil31b80062009-10-06 11:31:13 -07001210
Alex Elderc9ffc772013-02-20 10:25:12 -06001211 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001212}
1213
1214/*
1215 * Prepare an ack.
1216 */
1217static void prepare_write_ack(struct ceph_connection *con)
1218{
1219 dout("prepare_write_ack %p %llu -> %llu\n", con,
1220 con->in_seq_acked, con->in_seq);
1221 con->in_seq_acked = con->in_seq;
1222
Alex Eldere2200422012-05-23 14:35:23 -05001223 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001224
Alex Eldere2200422012-05-23 14:35:23 -05001225 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001226
Sage Weil31b80062009-10-06 11:31:13 -07001227 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001228 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001229 &con->out_temp_ack);
1230
Sage Weil31b80062009-10-06 11:31:13 -07001231 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001232 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001233}
1234
1235/*
Sage Weil3a230832013-03-25 08:47:40 -07001236 * Prepare to share the seq during handshake
1237 */
1238static void prepare_write_seq(struct ceph_connection *con)
1239{
1240 dout("prepare_write_seq %p %llu -> %llu\n", con,
1241 con->in_seq_acked, con->in_seq);
1242 con->in_seq_acked = con->in_seq;
1243
1244 con_out_kvec_reset(con);
1245
1246 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1247 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1248 &con->out_temp_ack);
1249
1250 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1251}
1252
1253/*
Sage Weil31b80062009-10-06 11:31:13 -07001254 * Prepare to write keepalive byte.
1255 */
1256static void prepare_write_keepalive(struct ceph_connection *con)
1257{
1258 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001259 con_out_kvec_reset(con);
1260 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001261 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001262}
1263
1264/*
1265 * Connection negotiation.
1266 */
1267
Alex Elderdac1e712012-05-16 15:16:39 -05001268static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1269 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001270{
Alex Eldera3530df2012-05-16 15:16:39 -05001271 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001272
1273 if (!con->ops->get_authorizer) {
1274 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1275 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001276 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001277 }
1278
1279 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001280 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001281 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001282 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001283
Alex Eldera3530df2012-05-16 15:16:39 -05001284 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001285 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001286 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001287 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001288
Alex Elder8f43fb52012-05-16 15:16:39 -05001289 con->auth_reply_buf = auth->authorizer_reply_buf;
1290 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001291 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001292}
1293
Sage Weil31b80062009-10-06 11:31:13 -07001294/*
1295 * We connected to a peer and are saying hello.
1296 */
Alex Eldere825a662012-05-16 15:16:38 -05001297static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001298{
Alex Eldere2200422012-05-23 14:35:23 -05001299 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1300 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001301 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001302
Sage Weileed0ef22009-11-10 14:34:36 -08001303 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001304 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001305}
1306
Alex Eldere825a662012-05-16 15:16:38 -05001307static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001308{
Eric Dumazet95c96172012-04-15 05:58:06 +00001309 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001310 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001311 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001312 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001313
1314 switch (con->peer_name.type) {
1315 case CEPH_ENTITY_TYPE_MON:
1316 proto = CEPH_MONC_PROTOCOL;
1317 break;
1318 case CEPH_ENTITY_TYPE_OSD:
1319 proto = CEPH_OSDC_PROTOCOL;
1320 break;
1321 case CEPH_ENTITY_TYPE_MDS:
1322 proto = CEPH_MDSC_PROTOCOL;
1323 break;
1324 default:
1325 BUG();
1326 }
1327
1328 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1329 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001330
Alex Eldere825a662012-05-16 15:16:38 -05001331 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001332 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1333 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1334 con->out_connect.global_seq = cpu_to_le32(global_seq);
1335 con->out_connect.protocol_version = cpu_to_le32(proto);
1336 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001337
Alex Elderdac1e712012-05-16 15:16:39 -05001338 auth_proto = CEPH_AUTH_UNKNOWN;
1339 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001340 if (IS_ERR(auth))
1341 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001342
Alex Elderdac1e712012-05-16 15:16:39 -05001343 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001344 con->out_connect.authorizer_len = auth ?
1345 cpu_to_le32(auth->authorizer_buf_len) : 0;
1346
Alex Eldere2200422012-05-23 14:35:23 -05001347 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001348 &con->out_connect);
1349 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001350 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001351 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001352
Sage Weil31b80062009-10-06 11:31:13 -07001353 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001354 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001355
Alex Eldere10c758e42012-05-16 15:16:38 -05001356 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001357}
1358
Sage Weil31b80062009-10-06 11:31:13 -07001359/*
1360 * write as much of pending kvecs to the socket as we can.
1361 * 1 -> done
1362 * 0 -> socket full, but more to do
1363 * <0 -> error
1364 */
1365static int write_partial_kvec(struct ceph_connection *con)
1366{
1367 int ret;
1368
1369 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1370 while (con->out_kvec_bytes > 0) {
1371 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1372 con->out_kvec_left, con->out_kvec_bytes,
1373 con->out_more);
1374 if (ret <= 0)
1375 goto out;
1376 con->out_kvec_bytes -= ret;
1377 if (con->out_kvec_bytes == 0)
1378 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001379
1380 /* account for full iov entries consumed */
1381 while (ret >= con->out_kvec_cur->iov_len) {
1382 BUG_ON(!con->out_kvec_left);
1383 ret -= con->out_kvec_cur->iov_len;
1384 con->out_kvec_cur++;
1385 con->out_kvec_left--;
1386 }
1387 /* and for a partially-consumed entry */
1388 if (ret) {
1389 con->out_kvec_cur->iov_len -= ret;
1390 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001391 }
1392 }
1393 con->out_kvec_left = 0;
1394 con->out_kvec_is_msg = false;
1395 ret = 1;
1396out:
1397 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1398 con->out_kvec_bytes, con->out_kvec_left, ret);
1399 return ret; /* done! */
1400}
1401
Alex Elder84ca8fc2012-06-11 14:57:13 -05001402static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
Alex Elder9d2a06c2013-03-08 13:35:36 -06001403 size_t len, size_t sent)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001404{
1405 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001406 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001407 bool need_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001408
1409 BUG_ON(!msg);
1410 BUG_ON(!sent);
1411
Alex Elderbae6acd2013-03-06 23:39:38 -06001412 msg_pos->data_pos += sent;
1413 msg_pos->page_pos += sent;
Alex Elder9d2a06c2013-03-08 13:35:36 -06001414 if (ceph_msg_has_pages(msg))
Alex Eldere766d7b2013-03-07 15:38:28 -06001415 need_crc = ceph_msg_data_advance(&msg->p, sent);
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001416 else if (ceph_msg_has_pagelist(msg))
1417 need_crc = ceph_msg_data_advance(&msg->l, sent);
Alex Elder6aaa4512013-03-06 23:39:39 -06001418#ifdef CONFIG_BLOCK
1419 else if (ceph_msg_has_bio(msg))
1420 need_crc = ceph_msg_data_advance(&msg->b, sent);
1421#endif /* CONFIG_BLOCK */
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001422 BUG_ON(need_crc && sent != len);
1423
Alex Elder5821bd82012-06-11 14:57:13 -05001424 if (sent < len)
1425 return;
1426
1427 BUG_ON(sent != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001428 msg_pos->page_pos = 0;
1429 msg_pos->page++;
1430 msg_pos->did_page_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001431}
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001432
Alex Eldere7881822013-03-08 18:51:04 -06001433static void in_msg_pos_next(struct ceph_connection *con, size_t len,
1434 size_t received)
1435{
1436 struct ceph_msg *msg = con->in_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001437 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Eldere7881822013-03-08 18:51:04 -06001438
1439 BUG_ON(!msg);
1440 BUG_ON(!received);
1441
Alex Elderbae6acd2013-03-06 23:39:38 -06001442 msg_pos->data_pos += received;
1443 msg_pos->page_pos += received;
Alex Elder878efab2013-03-11 23:34:23 -05001444 if (ceph_msg_has_pages(msg))
1445 (void) ceph_msg_data_advance(&msg->p, received);
Alex Elder463207a2013-03-11 23:34:23 -05001446#ifdef CONFIG_BLOCK
Alex Elder878efab2013-03-11 23:34:23 -05001447 else if (ceph_msg_has_bio(msg))
Alex Elder463207a2013-03-11 23:34:23 -05001448 (void) ceph_msg_data_advance(&msg->b, received);
1449#endif /* CONFIG_BLOCK */
Alex Eldere7881822013-03-08 18:51:04 -06001450 if (received < len)
1451 return;
1452
1453 BUG_ON(received != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001454 msg_pos->page_pos = 0;
1455 msg_pos->page++;
Alex Eldere7881822013-03-08 18:51:04 -06001456}
1457
Alex Elder35b62802013-03-08 20:59:00 -06001458static u32 ceph_crc32c_page(u32 crc, struct page *page,
1459 unsigned int page_offset,
1460 unsigned int length)
1461{
1462 char *kaddr;
1463
1464 kaddr = kmap(page);
1465 BUG_ON(kaddr == NULL);
1466 crc = crc32c(crc, kaddr + page_offset, length);
1467 kunmap(page);
1468
1469 return crc;
1470}
Sage Weil31b80062009-10-06 11:31:13 -07001471/*
1472 * Write as much message data payload as we can. If we finish, queue
1473 * up the footer.
1474 * 1 -> done, footer is now queued in out_kvec[].
1475 * 0 -> socket full, but more to do
1476 * <0 -> error
1477 */
Alex Elder34d2d202013-03-08 20:58:59 -06001478static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001479{
1480 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001481 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Eric Dumazet95c96172012-04-15 05:58:06 +00001482 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Alex Elder37675b02012-03-07 11:40:08 -06001483 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07001484 int ret;
1485
Alex Elder34d2d202013-03-08 20:58:59 -06001486 dout("%s %p msg %p page %d offset %d\n", __func__,
Alex Elderbae6acd2013-03-06 23:39:38 -06001487 con, msg, msg_pos->page, msg_pos->page_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001488
Alex Elder5821bd82012-06-11 14:57:13 -05001489 /*
1490 * Iterate through each page that contains data to be
1491 * written, and send as much as possible for each.
1492 *
1493 * If we are calculating the data crc (the default), we will
1494 * need to map the page. If we have no pages, they have
1495 * been revoked, so use the zero page.
1496 */
Alex Elderbae6acd2013-03-06 23:39:38 -06001497 while (data_len > msg_pos->data_pos) {
Alex Elder8a166d02013-03-08 13:35:36 -06001498 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001499 size_t page_offset;
1500 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001501 bool last_piece;
Sage Weil31b80062009-10-06 11:31:13 -07001502
Alex Elder9d2a06c2013-03-08 13:35:36 -06001503 if (ceph_msg_has_pages(msg)) {
Alex Eldere766d7b2013-03-07 15:38:28 -06001504 page = ceph_msg_data_next(&msg->p, &page_offset,
1505 &length, &last_piece);
Alex Elder97fb1c72013-03-01 18:00:16 -06001506 } else if (ceph_msg_has_pagelist(msg)) {
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001507 page = ceph_msg_data_next(&msg->l, &page_offset,
1508 &length, &last_piece);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001509#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06001510 } else if (ceph_msg_has_bio(msg)) {
Alex Elder6aaa4512013-03-06 23:39:39 -06001511 page = ceph_msg_data_next(&msg->b, &page_offset,
1512 &length, &last_piece);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001513#endif
Sage Weil31b80062009-10-06 11:31:13 -07001514 } else {
Alex Elder8a166d02013-03-08 13:35:36 -06001515 size_t resid = data_len - msg_pos->data_pos;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001516
Alex Elder8a166d02013-03-08 13:35:36 -06001517 page = zero_page;
Alex Elder6aaa4512013-03-06 23:39:39 -06001518 page_offset = msg_pos->page_pos;
Alex Elder8a166d02013-03-08 13:35:36 -06001519 length = PAGE_SIZE - page_offset;
1520 length = min(resid, length);
1521 last_piece = length == resid;
Alex Elder6aaa4512013-03-06 23:39:39 -06001522 }
Alex Elderbae6acd2013-03-06 23:39:38 -06001523 if (do_datacrc && !msg_pos->did_page_crc) {
Alex Elder5821bd82012-06-11 14:57:13 -05001524 u32 crc = le32_to_cpu(msg->footer.data_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001525
Alex Elder35b62802013-03-08 20:59:00 -06001526 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001527 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbae6acd2013-03-06 23:39:38 -06001528 msg_pos->did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001529 }
Alex Eldere387d522013-03-06 23:39:38 -06001530 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001531 length, last_piece);
Sage Weil31b80062009-10-06 11:31:13 -07001532 if (ret <= 0)
1533 goto out;
1534
Alex Elder9d2a06c2013-03-08 13:35:36 -06001535 out_msg_pos_next(con, page, length, (size_t) ret);
Sage Weil31b80062009-10-06 11:31:13 -07001536 }
1537
Alex Elder34d2d202013-03-08 20:58:59 -06001538 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001539
1540 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001541 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001542 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001543 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001544 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001545 ret = 1;
1546out:
1547 return ret;
1548}
1549
1550/*
1551 * write some zeros
1552 */
1553static int write_partial_skip(struct ceph_connection *con)
1554{
1555 int ret;
1556
1557 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001558 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001559
Alex Eldere1dcb122013-03-06 23:39:38 -06001560 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001561 if (ret <= 0)
1562 goto out;
1563 con->out_skip -= ret;
1564 }
1565 ret = 1;
1566out:
1567 return ret;
1568}
1569
1570/*
1571 * Prepare to read connection handshake, or an ack.
1572 */
Sage Weileed0ef22009-11-10 14:34:36 -08001573static void prepare_read_banner(struct ceph_connection *con)
1574{
1575 dout("prepare_read_banner %p\n", con);
1576 con->in_base_pos = 0;
1577}
1578
Sage Weil31b80062009-10-06 11:31:13 -07001579static void prepare_read_connect(struct ceph_connection *con)
1580{
1581 dout("prepare_read_connect %p\n", con);
1582 con->in_base_pos = 0;
1583}
1584
1585static void prepare_read_ack(struct ceph_connection *con)
1586{
1587 dout("prepare_read_ack %p\n", con);
1588 con->in_base_pos = 0;
1589}
1590
Sage Weil3a230832013-03-25 08:47:40 -07001591static void prepare_read_seq(struct ceph_connection *con)
1592{
1593 dout("prepare_read_seq %p\n", con);
1594 con->in_base_pos = 0;
1595 con->in_tag = CEPH_MSGR_TAG_SEQ;
1596}
1597
Sage Weil31b80062009-10-06 11:31:13 -07001598static void prepare_read_tag(struct ceph_connection *con)
1599{
1600 dout("prepare_read_tag %p\n", con);
1601 con->in_base_pos = 0;
1602 con->in_tag = CEPH_MSGR_TAG_READY;
1603}
1604
1605/*
1606 * Prepare to read a message.
1607 */
1608static int prepare_read_message(struct ceph_connection *con)
1609{
1610 dout("prepare_read_message %p\n", con);
1611 BUG_ON(con->in_msg != NULL);
1612 con->in_base_pos = 0;
1613 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1614 return 0;
1615}
1616
1617
1618static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001619 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001620{
Alex Eldere6cee712012-05-10 10:29:50 -05001621 while (con->in_base_pos < end) {
1622 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001623 int have = size - left;
1624 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1625 if (ret <= 0)
1626 return ret;
1627 con->in_base_pos += ret;
1628 }
1629 return 1;
1630}
1631
1632
1633/*
1634 * Read all or part of the connect-side handshake on a new connection
1635 */
Sage Weileed0ef22009-11-10 14:34:36 -08001636static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001637{
Alex Elderfd516532012-05-10 10:29:50 -05001638 int size;
1639 int end;
1640 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001641
Sage Weileed0ef22009-11-10 14:34:36 -08001642 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001643
1644 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001645 size = strlen(CEPH_BANNER);
1646 end = size;
1647 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001648 if (ret <= 0)
1649 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001650
1651 size = sizeof (con->actual_peer_addr);
1652 end += size;
1653 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001654 if (ret <= 0)
1655 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001656
1657 size = sizeof (con->peer_addr_for_me);
1658 end += size;
1659 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001660 if (ret <= 0)
1661 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001662
Sage Weileed0ef22009-11-10 14:34:36 -08001663out:
1664 return ret;
1665}
1666
1667static int read_partial_connect(struct ceph_connection *con)
1668{
Alex Elderfd516532012-05-10 10:29:50 -05001669 int size;
1670 int end;
1671 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001672
1673 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1674
Alex Elderfd516532012-05-10 10:29:50 -05001675 size = sizeof (con->in_reply);
1676 end = size;
1677 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001678 if (ret <= 0)
1679 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001680
1681 size = le32_to_cpu(con->in_reply.authorizer_len);
1682 end += size;
1683 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001684 if (ret <= 0)
1685 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001686
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001687 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1688 con, (int)con->in_reply.tag,
1689 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001690 le32_to_cpu(con->in_reply.global_seq));
1691out:
1692 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001693
Sage Weil31b80062009-10-06 11:31:13 -07001694}
1695
1696/*
1697 * Verify the hello banner looks okay.
1698 */
1699static int verify_hello(struct ceph_connection *con)
1700{
1701 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001702 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001703 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001704 con->error_msg = "protocol error, bad banner";
1705 return -1;
1706 }
1707 return 0;
1708}
1709
1710static bool addr_is_blank(struct sockaddr_storage *ss)
1711{
1712 switch (ss->ss_family) {
1713 case AF_INET:
1714 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1715 case AF_INET6:
1716 return
1717 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1718 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1719 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1720 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1721 }
1722 return false;
1723}
1724
1725static int addr_port(struct sockaddr_storage *ss)
1726{
1727 switch (ss->ss_family) {
1728 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001729 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001730 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001731 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001732 }
1733 return 0;
1734}
1735
1736static void addr_set_port(struct sockaddr_storage *ss, int p)
1737{
1738 switch (ss->ss_family) {
1739 case AF_INET:
1740 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001741 break;
Sage Weil31b80062009-10-06 11:31:13 -07001742 case AF_INET6:
1743 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001744 break;
Sage Weil31b80062009-10-06 11:31:13 -07001745 }
1746}
1747
1748/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001749 * Unlike other *_pton function semantics, zero indicates success.
1750 */
1751static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1752 char delim, const char **ipend)
1753{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001754 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1755 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001756
1757 memset(ss, 0, sizeof(*ss));
1758
1759 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1760 ss->ss_family = AF_INET;
1761 return 0;
1762 }
1763
1764 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1765 ss->ss_family = AF_INET6;
1766 return 0;
1767 }
1768
1769 return -EINVAL;
1770}
1771
1772/*
1773 * Extract hostname string and resolve using kernel DNS facility.
1774 */
1775#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1776static int ceph_dns_resolve_name(const char *name, size_t namelen,
1777 struct sockaddr_storage *ss, char delim, const char **ipend)
1778{
1779 const char *end, *delim_p;
1780 char *colon_p, *ip_addr = NULL;
1781 int ip_len, ret;
1782
1783 /*
1784 * The end of the hostname occurs immediately preceding the delimiter or
1785 * the port marker (':') where the delimiter takes precedence.
1786 */
1787 delim_p = memchr(name, delim, namelen);
1788 colon_p = memchr(name, ':', namelen);
1789
1790 if (delim_p && colon_p)
1791 end = delim_p < colon_p ? delim_p : colon_p;
1792 else if (!delim_p && colon_p)
1793 end = colon_p;
1794 else {
1795 end = delim_p;
1796 if (!end) /* case: hostname:/ */
1797 end = name + namelen;
1798 }
1799
1800 if (end <= name)
1801 return -EINVAL;
1802
1803 /* do dns_resolve upcall */
1804 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1805 if (ip_len > 0)
1806 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1807 else
1808 ret = -ESRCH;
1809
1810 kfree(ip_addr);
1811
1812 *ipend = end;
1813
1814 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1815 ret, ret ? "failed" : ceph_pr_addr(ss));
1816
1817 return ret;
1818}
1819#else
1820static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1821 struct sockaddr_storage *ss, char delim, const char **ipend)
1822{
1823 return -EINVAL;
1824}
1825#endif
1826
1827/*
1828 * Parse a server name (IP or hostname). If a valid IP address is not found
1829 * then try to extract a hostname to resolve using userspace DNS upcall.
1830 */
1831static int ceph_parse_server_name(const char *name, size_t namelen,
1832 struct sockaddr_storage *ss, char delim, const char **ipend)
1833{
1834 int ret;
1835
1836 ret = ceph_pton(name, namelen, ss, delim, ipend);
1837 if (ret)
1838 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1839
1840 return ret;
1841}
1842
1843/*
Sage Weil31b80062009-10-06 11:31:13 -07001844 * Parse an ip[:port] list into an addr array. Use the default
1845 * monitor port if a port isn't specified.
1846 */
1847int ceph_parse_ips(const char *c, const char *end,
1848 struct ceph_entity_addr *addr,
1849 int max_count, int *count)
1850{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001851 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001852 const char *p = c;
1853
1854 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1855 for (i = 0; i < max_count; i++) {
1856 const char *ipend;
1857 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001858 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001859 char delim = ',';
1860
1861 if (*p == '[') {
1862 delim = ']';
1863 p++;
1864 }
Sage Weil31b80062009-10-06 11:31:13 -07001865
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001866 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1867 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001868 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001869 ret = -EINVAL;
1870
Sage Weil31b80062009-10-06 11:31:13 -07001871 p = ipend;
1872
Sage Weil39139f62010-07-08 09:54:52 -07001873 if (delim == ']') {
1874 if (*p != ']') {
1875 dout("missing matching ']'\n");
1876 goto bad;
1877 }
1878 p++;
1879 }
1880
Sage Weil31b80062009-10-06 11:31:13 -07001881 /* port? */
1882 if (p < end && *p == ':') {
1883 port = 0;
1884 p++;
1885 while (p < end && *p >= '0' && *p <= '9') {
1886 port = (port * 10) + (*p - '0');
1887 p++;
1888 }
1889 if (port > 65535 || port == 0)
1890 goto bad;
1891 } else {
1892 port = CEPH_MON_PORT;
1893 }
1894
1895 addr_set_port(ss, port);
1896
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001897 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001898
1899 if (p == end)
1900 break;
1901 if (*p != ',')
1902 goto bad;
1903 p++;
1904 }
1905
1906 if (p != end)
1907 goto bad;
1908
1909 if (count)
1910 *count = i + 1;
1911 return 0;
1912
1913bad:
Sage Weil39139f62010-07-08 09:54:52 -07001914 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001915 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001916}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001917EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001918
Sage Weileed0ef22009-11-10 14:34:36 -08001919static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001920{
Sage Weileed0ef22009-11-10 14:34:36 -08001921 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001922
1923 if (verify_hello(con) < 0)
1924 return -1;
1925
Sage Weil63f2d212009-11-03 15:17:56 -08001926 ceph_decode_addr(&con->actual_peer_addr);
1927 ceph_decode_addr(&con->peer_addr_for_me);
1928
Sage Weil31b80062009-10-06 11:31:13 -07001929 /*
1930 * Make sure the other end is who we wanted. note that the other
1931 * end may not yet know their ip address, so if it's 0.0.0.0, give
1932 * them the benefit of the doubt.
1933 */
Sage Weil103e2d32010-01-07 16:12:36 -08001934 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1935 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001936 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1937 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001938 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001939 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001940 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001941 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001942 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001943 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001944 return -1;
1945 }
1946
1947 /*
1948 * did we learn our address?
1949 */
1950 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1951 int port = addr_port(&con->msgr->inst.addr.in_addr);
1952
1953 memcpy(&con->msgr->inst.addr.in_addr,
1954 &con->peer_addr_for_me.in_addr,
1955 sizeof(con->peer_addr_for_me.in_addr));
1956 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001957 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001958 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001959 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001960 }
1961
Sage Weileed0ef22009-11-10 14:34:36 -08001962 return 0;
1963}
1964
1965static int process_connect(struct ceph_connection *con)
1966{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001967 u64 sup_feat = con->msgr->supported_features;
1968 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001969 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001970 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001971
Sage Weileed0ef22009-11-10 14:34:36 -08001972 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1973
Sage Weil31b80062009-10-06 11:31:13 -07001974 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001975 case CEPH_MSGR_TAG_FEATURES:
1976 pr_err("%s%lld %s feature set mismatch,"
1977 " my %llx < server's %llx, missing %llx\n",
1978 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001979 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001980 sup_feat, server_feat, server_feat & ~sup_feat);
1981 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001982 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001983 return -1;
1984
Sage Weil31b80062009-10-06 11:31:13 -07001985 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001986 pr_err("%s%lld %s protocol version mismatch,"
1987 " my %d != server's %d\n",
1988 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001989 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001990 le32_to_cpu(con->out_connect.protocol_version),
1991 le32_to_cpu(con->in_reply.protocol_version));
1992 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001993 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001994 return -1;
1995
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001996 case CEPH_MSGR_TAG_BADAUTHORIZER:
1997 con->auth_retry++;
1998 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1999 con->auth_retry);
2000 if (con->auth_retry == 2) {
2001 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002002 return -1;
2003 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07002004 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002005 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002006 if (ret < 0)
2007 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002008 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002009 break;
Sage Weil31b80062009-10-06 11:31:13 -07002010
2011 case CEPH_MSGR_TAG_RESETSESSION:
2012 /*
2013 * If we connected with a large connect_seq but the peer
2014 * has no record of a session with us (no connection, or
2015 * connect_seq == 0), they will send RESETSESION to indicate
2016 * that they must have reset their session, and may have
2017 * dropped messages.
2018 */
2019 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002020 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002021 pr_err("%s%lld %s connection reset\n",
2022 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002023 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002024 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002025 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002026 ret = prepare_write_connect(con);
2027 if (ret < 0)
2028 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002029 prepare_read_connect(con);
2030
2031 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002032 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002033 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2034 if (con->ops->peer_reset)
2035 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002036 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002037 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002038 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002039 break;
2040
2041 case CEPH_MSGR_TAG_RETRY_SESSION:
2042 /*
2043 * If we sent a smaller connect_seq than the peer has, try
2044 * again with a larger value.
2045 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002046 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002047 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002048 le32_to_cpu(con->in_reply.connect_seq));
2049 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
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 break;
2056
2057 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2058 /*
2059 * If we sent a smaller global_seq than the peer has, try
2060 * again with a larger value.
2061 */
Sage Weileed0ef22009-11-10 14:34:36 -08002062 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002063 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002064 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002065 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002066 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002067 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002068 ret = prepare_write_connect(con);
2069 if (ret < 0)
2070 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002071 prepare_read_connect(con);
2072 break;
2073
Sage Weil3a230832013-03-25 08:47:40 -07002074 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002075 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002076 if (req_feat & ~server_feat) {
2077 pr_err("%s%lld %s protocol feature mismatch,"
2078 " my required %llx > server's %llx, need %llx\n",
2079 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002080 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002081 req_feat, server_feat, req_feat & ~server_feat);
2082 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002083 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002084 return -1;
2085 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002086
Alex Elder122070a2012-12-26 10:43:57 -06002087 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002088 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002089 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002090 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2091 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002092 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002093 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2094 con->peer_global_seq,
2095 le32_to_cpu(con->in_reply.connect_seq),
2096 con->connect_seq);
2097 WARN_ON(con->connect_seq !=
2098 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002099
2100 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002101 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002102
Sage Weil85effe12012-07-30 16:22:05 -07002103 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002104
Sage Weil3a230832013-03-25 08:47:40 -07002105 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2106 prepare_write_seq(con);
2107 prepare_read_seq(con);
2108 } else {
2109 prepare_read_tag(con);
2110 }
Sage Weil31b80062009-10-06 11:31:13 -07002111 break;
2112
2113 case CEPH_MSGR_TAG_WAIT:
2114 /*
2115 * If there is a connection race (we are opening
2116 * connections to each other), one of us may just have
2117 * to WAIT. This shouldn't happen if we are the
2118 * client.
2119 */
Sage Weil04177882011-05-12 15:33:17 -07002120 pr_err("process_connect got WAIT as client\n");
2121 con->error_msg = "protocol error, got WAIT as client";
2122 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002123
2124 default:
2125 pr_err("connect protocol error, will retry\n");
2126 con->error_msg = "protocol error, garbage tag during connect";
2127 return -1;
2128 }
2129 return 0;
2130}
2131
2132
2133/*
2134 * read (part of) an ack
2135 */
2136static int read_partial_ack(struct ceph_connection *con)
2137{
Alex Elderfd516532012-05-10 10:29:50 -05002138 int size = sizeof (con->in_temp_ack);
2139 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002140
Alex Elderfd516532012-05-10 10:29:50 -05002141 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002142}
2143
Sage Weil31b80062009-10-06 11:31:13 -07002144/*
2145 * We can finally discard anything that's been acked.
2146 */
2147static void process_ack(struct ceph_connection *con)
2148{
2149 struct ceph_msg *m;
2150 u64 ack = le64_to_cpu(con->in_temp_ack);
2151 u64 seq;
2152
Sage Weil31b80062009-10-06 11:31:13 -07002153 while (!list_empty(&con->out_sent)) {
2154 m = list_first_entry(&con->out_sent, struct ceph_msg,
2155 list_head);
2156 seq = le64_to_cpu(m->hdr.seq);
2157 if (seq > ack)
2158 break;
2159 dout("got ack for seq %llu type %d at %p\n", seq,
2160 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002161 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002162 ceph_msg_remove(m);
2163 }
Sage Weil31b80062009-10-06 11:31:13 -07002164 prepare_read_tag(con);
2165}
2166
2167
Yehuda Sadeh24504182010-01-08 13:58:34 -08002168static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002169 struct kvec *section,
2170 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002171{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002172 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002173
Yehuda Sadeh24504182010-01-08 13:58:34 -08002174 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002175
Yehuda Sadeh24504182010-01-08 13:58:34 -08002176 while (section->iov_len < sec_len) {
2177 BUG_ON(section->iov_base == NULL);
2178 left = sec_len - section->iov_len;
2179 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2180 section->iov_len, left);
2181 if (ret <= 0)
2182 return ret;
2183 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002184 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002185 if (section->iov_len == sec_len)
2186 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002187
2188 return 1;
2189}
2190
Sage Weil4740a622012-07-30 18:19:30 -07002191static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002192
2193static int read_partial_message_pages(struct ceph_connection *con,
Eric Dumazet95c96172012-04-15 05:58:06 +00002194 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002195{
Alex Elder28a89dd2013-03-11 23:34:22 -05002196 struct ceph_msg *msg = con->in_msg;
Alex Eldere7881822013-03-08 18:51:04 -06002197 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002198 size_t page_offset;
2199 size_t length;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002200 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002201
Alex Elder878efab2013-03-11 23:34:23 -05002202 page = ceph_msg_data_next(&msg->p, &page_offset, &length, NULL);
Alex Elderafb3d902013-03-08 20:58:59 -06002203
2204 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002205 if (ret <= 0)
2206 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002207
Alex Elder35b62802013-03-08 20:59:00 -06002208 if (do_datacrc)
2209 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2210 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002211
2212 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002213
2214 return ret;
2215}
2216
2217#ifdef CONFIG_BLOCK
2218static int read_partial_message_bio(struct ceph_connection *con,
Eric Dumazet95c96172012-04-15 05:58:06 +00002219 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002220{
Alex Elderb3d56fa2013-03-08 18:51:03 -06002221 struct ceph_msg *msg = con->in_msg;
Alex Eldere7881822013-03-08 18:51:04 -06002222 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002223 size_t page_offset;
2224 size_t length;
Alex Elderafb3d902013-03-08 20:58:59 -06002225 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002226
Alex Elderb3d56fa2013-03-08 18:51:03 -06002227 BUG_ON(!msg);
Alex Elder463207a2013-03-11 23:34:23 -05002228
2229 page = ceph_msg_data_next(&msg->b, &page_offset, &length, NULL);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002230
Alex Elderafb3d902013-03-08 20:58:59 -06002231 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002232 if (ret <= 0)
2233 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002234
Alex Elder35b62802013-03-08 20:59:00 -06002235 if (do_datacrc)
2236 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2237 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002238
2239 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002240
2241 return ret;
2242}
2243#endif
2244
Alex Elder34d2d202013-03-08 20:58:59 -06002245static int read_partial_msg_data(struct ceph_connection *con)
2246{
2247 struct ceph_msg *msg = con->in_msg;
2248 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
2249 const bool do_datacrc = !con->msgr->nocrc;
2250 unsigned int data_len;
2251 int ret;
2252
2253 BUG_ON(!msg);
2254
2255 data_len = le32_to_cpu(con->in_hdr.data_len);
2256 while (msg_pos->data_pos < data_len) {
Alex Elder97fb1c72013-03-01 18:00:16 -06002257 if (ceph_msg_has_pages(msg)) {
Alex Elder28a89dd2013-03-11 23:34:22 -05002258 ret = read_partial_message_pages(con, data_len,
2259 do_datacrc);
Alex Elder34d2d202013-03-08 20:58:59 -06002260 if (ret <= 0)
2261 return ret;
2262#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06002263 } else if (ceph_msg_has_bio(msg)) {
Alex Elder34d2d202013-03-08 20:58:59 -06002264 ret = read_partial_message_bio(con,
2265 data_len, do_datacrc);
2266 if (ret <= 0)
2267 return ret;
2268#endif
2269 } else {
2270 BUG_ON(1);
2271 }
2272 }
2273
2274 return 1; /* must return > 0 to indicate success */
2275}
2276
Sage Weil31b80062009-10-06 11:31:13 -07002277/*
2278 * read (part of) a message.
2279 */
2280static int read_partial_message(struct ceph_connection *con)
2281{
2282 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002283 int size;
2284 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002285 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002286 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002287 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07002288 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002289 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002290
2291 dout("read_partial_message con %p msg %p\n", con, m);
2292
2293 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002294 size = sizeof (con->in_hdr);
2295 end = size;
2296 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002297 if (ret <= 0)
2298 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002299
2300 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2301 if (cpu_to_le32(crc) != con->in_hdr.crc) {
2302 pr_err("read_partial_message bad hdr "
2303 " crc %u != expected %u\n",
2304 crc, con->in_hdr.crc);
2305 return -EBADMSG;
2306 }
2307
Sage Weil31b80062009-10-06 11:31:13 -07002308 front_len = le32_to_cpu(con->in_hdr.front_len);
2309 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2310 return -EIO;
2311 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002312 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002313 return -EIO;
2314 data_len = le32_to_cpu(con->in_hdr.data_len);
2315 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2316 return -EIO;
2317
Sage Weilae187562010-04-22 07:47:01 -07002318 /* verify seq# */
2319 seq = le64_to_cpu(con->in_hdr.seq);
2320 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002321 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002322 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002323 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002324 seq, con->in_seq + 1);
2325 con->in_base_pos = -front_len - middle_len - data_len -
2326 sizeof(m->footer);
2327 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002328 return 0;
2329 } else if ((s64)seq - (s64)con->in_seq > 1) {
2330 pr_err("read_partial_message bad seq %lld expected %lld\n",
2331 seq, con->in_seq + 1);
2332 con->error_msg = "bad message sequence # for incoming message";
2333 return -EBADMSG;
2334 }
2335
Sage Weil31b80062009-10-06 11:31:13 -07002336 /* allocate message? */
2337 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002338 int skip = 0;
2339
Sage Weil31b80062009-10-06 11:31:13 -07002340 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002341 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002342 ret = ceph_con_in_msg_alloc(con, &skip);
2343 if (ret < 0)
2344 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002345 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002346 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002347 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07002348 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002349 con->in_base_pos = -front_len - middle_len - data_len -
2350 sizeof(m->footer);
2351 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002352 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002353 return 0;
2354 }
Alex Elder38941f82012-06-01 14:56:43 -05002355
Sage Weil4740a622012-07-30 18:19:30 -07002356 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002357 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002358 m = con->in_msg;
2359 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002360 if (m->middle)
2361 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002362
Alex Elder78625052013-03-06 23:39:39 -06002363 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002364
Alex Elder78625052013-03-06 23:39:39 -06002365 if (data_len)
2366 prepare_message_data(con->in_msg, &con->in_msg_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002367 }
2368
2369 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002370 ret = read_partial_message_section(con, &m->front, front_len,
2371 &con->in_front_crc);
2372 if (ret <= 0)
2373 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002374
2375 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002376 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002377 ret = read_partial_message_section(con, &m->middle->vec,
2378 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002379 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002380 if (ret <= 0)
2381 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002382 }
2383
2384 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002385 if (data_len) {
2386 ret = read_partial_msg_data(con);
2387 if (ret <= 0)
2388 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002389 }
2390
Sage Weil31b80062009-10-06 11:31:13 -07002391 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002392 size = sizeof (m->footer);
2393 end += size;
2394 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002395 if (ret <= 0)
2396 return ret;
2397
Sage Weil31b80062009-10-06 11:31:13 -07002398 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2399 m, front_len, m->footer.front_crc, middle_len,
2400 m->footer.middle_crc, data_len, m->footer.data_crc);
2401
2402 /* crc ok? */
2403 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2404 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2405 m, con->in_front_crc, m->footer.front_crc);
2406 return -EBADMSG;
2407 }
2408 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2409 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2410 m, con->in_middle_crc, m->footer.middle_crc);
2411 return -EBADMSG;
2412 }
Alex Elderbca064d2012-02-15 07:43:54 -06002413 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002414 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2415 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2416 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2417 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2418 return -EBADMSG;
2419 }
2420
2421 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";
2657 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002658 break;
Sage Weil31b80062009-10-06 11:31:13 -07002659 case -EIO:
2660 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002661 break;
Sage Weil31b80062009-10-06 11:31:13 -07002662 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002663 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002664 }
2665 if (con->in_tag == CEPH_MSGR_TAG_READY)
2666 goto more;
2667 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002668 if (con->state == CON_STATE_OPEN)
2669 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002670 goto more;
2671 }
Sage Weil3a230832013-03-25 08:47:40 -07002672 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2673 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2674 /*
2675 * the final handshake seq exchange is semantically
2676 * equivalent to an ACK
2677 */
Sage Weil31b80062009-10-06 11:31:13 -07002678 ret = read_partial_ack(con);
2679 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002680 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002681 process_ack(con);
2682 goto more;
2683 }
2684
Sage Weil31b80062009-10-06 11:31:13 -07002685out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002686 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002687 return ret;
2688
2689bad_tag:
2690 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2691 con->error_msg = "protocol error, garbage tag";
2692 ret = -1;
2693 goto out;
2694}
2695
2696
2697/*
Alex Elder802c6d92012-10-08 20:37:30 -07002698 * Atomically queue work on a connection after the specified delay.
2699 * Bump @con reference to avoid races with connection teardown.
2700 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002701 */
Alex Elder802c6d92012-10-08 20:37:30 -07002702static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002703{
Sage Weil31b80062009-10-06 11:31:13 -07002704 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002705 dout("%s %p ref count 0\n", __func__, con);
2706
2707 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002708 }
2709
Alex Elder802c6d92012-10-08 20:37:30 -07002710 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2711 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002712 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002713
2714 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);
2718
2719 return 0;
2720}
2721
2722static void queue_con(struct ceph_connection *con)
2723{
2724 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002725}
2726
Alex Elder7bb21d682012-12-07 19:50:07 -06002727static bool con_sock_closed(struct ceph_connection *con)
2728{
Alex Elderc9ffc772013-02-20 10:25:12 -06002729 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002730 return false;
2731
2732#define CASE(x) \
2733 case CON_STATE_ ## x: \
2734 con->error_msg = "socket closed (con state " #x ")"; \
2735 break;
2736
2737 switch (con->state) {
2738 CASE(CLOSED);
2739 CASE(PREOPEN);
2740 CASE(CONNECTING);
2741 CASE(NEGOTIATING);
2742 CASE(OPEN);
2743 CASE(STANDBY);
2744 default:
2745 pr_warning("%s con %p unrecognized state %lu\n",
2746 __func__, con, con->state);
2747 con->error_msg = "unrecognized con state";
2748 BUG();
2749 break;
2750 }
2751#undef CASE
2752
2753 return true;
2754}
2755
Alex Elderf20a39f2013-02-19 12:25:57 -06002756static bool con_backoff(struct ceph_connection *con)
2757{
2758 int ret;
2759
2760 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2761 return false;
2762
2763 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2764 if (ret) {
2765 dout("%s: con %p FAILED to back off %lu\n", __func__,
2766 con, con->delay);
2767 BUG_ON(ret == -ENOENT);
2768 con_flag_set(con, CON_FLAG_BACKOFF);
2769 }
2770
2771 return true;
2772}
2773
Alex Elder93209262013-02-19 12:25:57 -06002774/* Finish fault handling; con->mutex must *not* be held here */
2775
2776static void con_fault_finish(struct ceph_connection *con)
2777{
2778 /*
2779 * in case we faulted due to authentication, invalidate our
2780 * current tickets so that we can get new ones.
2781 */
2782 if (con->auth_retry && con->ops->invalidate_authorizer) {
2783 dout("calling invalidate_authorizer()\n");
2784 con->ops->invalidate_authorizer(con);
2785 }
2786
2787 if (con->ops->fault)
2788 con->ops->fault(con);
2789}
2790
Sage Weil31b80062009-10-06 11:31:13 -07002791/*
2792 * Do some work on a connection. Drop a connection ref when we're done.
2793 */
2794static void con_work(struct work_struct *work)
2795{
2796 struct ceph_connection *con = container_of(work, struct ceph_connection,
2797 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002798 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002799
Sage Weil9dd46582010-04-28 13:51:50 -07002800 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002801 while (true) {
2802 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002803
Alex Elder49659412013-02-19 12:25:57 -06002804 if ((fault = con_sock_closed(con))) {
2805 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2806 break;
2807 }
2808 if (con_backoff(con)) {
2809 dout("%s: con %p BACKOFF\n", __func__, con);
2810 break;
2811 }
2812 if (con->state == CON_STATE_STANDBY) {
2813 dout("%s: con %p STANDBY\n", __func__, con);
2814 break;
2815 }
2816 if (con->state == CON_STATE_CLOSED) {
2817 dout("%s: con %p CLOSED\n", __func__, con);
2818 BUG_ON(con->sock);
2819 break;
2820 }
2821 if (con->state == CON_STATE_PREOPEN) {
2822 dout("%s: con %p PREOPEN\n", __func__, con);
2823 BUG_ON(con->sock);
2824 }
Sage Weil0da5d702011-05-19 11:21:05 -07002825
Alex Elder49659412013-02-19 12:25:57 -06002826 ret = try_read(con);
2827 if (ret < 0) {
2828 if (ret == -EAGAIN)
2829 continue;
2830 con->error_msg = "socket error on read";
2831 fault = true;
2832 break;
2833 }
2834
2835 ret = try_write(con);
2836 if (ret < 0) {
2837 if (ret == -EAGAIN)
2838 continue;
2839 con->error_msg = "socket error on write";
2840 fault = true;
2841 }
2842
2843 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002844 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002845 if (fault)
2846 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002847 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002848
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002849 if (fault)
2850 con_fault_finish(con);
2851
2852 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002853}
2854
Sage Weil31b80062009-10-06 11:31:13 -07002855/*
2856 * Generic error/fault handler. A retry mechanism is used with
2857 * exponential backoff
2858 */
Alex Elder93209262013-02-19 12:25:57 -06002859static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002860{
Alex Elder28362982012-12-14 16:47:41 -06002861 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002862 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002863 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002864 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002865
Alex Elder122070a2012-12-26 10:43:57 -06002866 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002867 con->state != CON_STATE_NEGOTIATING &&
2868 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002869
Sage Weil31b80062009-10-06 11:31:13 -07002870 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002871
Alex Elderc9ffc772013-02-20 10:25:12 -06002872 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002873 dout("fault on LOSSYTX channel, marking CLOSED\n");
2874 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002875 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002876 }
2877
Sage Weil5e095e82009-12-14 14:30:34 -08002878 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002879 BUG_ON(con->in_msg->con != con);
2880 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002881 ceph_msg_put(con->in_msg);
2882 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002883 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002884 }
Sage Weil31b80062009-10-06 11:31:13 -07002885
Sage Weile80a52d2010-02-25 12:40:45 -08002886 /* Requeue anything that hasn't been acked */
2887 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002888
Sage Weile76661d2011-03-03 10:10:15 -08002889 /* If there are no messages queued or keepalive pending, place
2890 * the connection in a STANDBY state */
2891 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002892 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002893 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002894 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002895 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002896 } else {
2897 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002898 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002899 if (con->delay == 0)
2900 con->delay = BASE_DELAY_INTERVAL;
2901 else if (con->delay < MAX_DELAY_INTERVAL)
2902 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002903 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002904 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002905 }
Sage Weil31b80062009-10-06 11:31:13 -07002906}
2907
2908
2909
2910/*
Alex Elder15d98822012-05-26 23:26:43 -05002911 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002912 */
Alex Elder15d98822012-05-26 23:26:43 -05002913void ceph_messenger_init(struct ceph_messenger *msgr,
2914 struct ceph_entity_addr *myaddr,
2915 u32 supported_features,
2916 u32 required_features,
2917 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002918{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002919 msgr->supported_features = supported_features;
2920 msgr->required_features = required_features;
2921
Sage Weil31b80062009-10-06 11:31:13 -07002922 spin_lock_init(&msgr->global_seq_lock);
2923
Sage Weil31b80062009-10-06 11:31:13 -07002924 if (myaddr)
2925 msgr->inst.addr = *myaddr;
2926
2927 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002928 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002929 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002930 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002931 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002932
Guanjun Hea2a32582012-07-08 19:50:33 -07002933 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002934
Alex Elder15d98822012-05-26 23:26:43 -05002935 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002936}
Alex Elder15d98822012-05-26 23:26:43 -05002937EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002938
Sage Weile00de342011-03-04 12:25:05 -08002939static void clear_standby(struct ceph_connection *con)
2940{
2941 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002942 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002943 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002944 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002945 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002946 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2947 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002948 }
2949}
2950
Sage Weil31b80062009-10-06 11:31:13 -07002951/*
2952 * Queue up an outgoing message on the given connection.
2953 */
2954void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2955{
Sage Weila59b55a2012-07-20 15:34:04 -07002956 /* set src+dst */
2957 msg->hdr.src = con->msgr->inst.name;
2958 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2959 msg->needs_out_seq = true;
2960
2961 mutex_lock(&con->mutex);
2962
Sage Weil8dacc7d2012-07-20 17:24:40 -07002963 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002964 dout("con_send %p closed, dropping %p\n", con, msg);
2965 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002966 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002967 return;
2968 }
2969
Alex Elder38941f82012-06-01 14:56:43 -05002970 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002971 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002972 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002973
Sage Weil31b80062009-10-06 11:31:13 -07002974 BUG_ON(!list_empty(&msg->list_head));
2975 list_add_tail(&msg->list_head, &con->out_queue);
2976 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2977 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2978 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2979 le32_to_cpu(msg->hdr.front_len),
2980 le32_to_cpu(msg->hdr.middle_len),
2981 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002982
2983 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002984 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002985
2986 /* if there wasn't anything waiting to send before, queue
2987 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002988 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002989 queue_con(con);
2990}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002991EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002992
2993/*
2994 * Revoke a message that was previously queued for send
2995 */
Alex Elder6740a842012-06-01 14:56:43 -05002996void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002997{
Alex Elder6740a842012-06-01 14:56:43 -05002998 struct ceph_connection *con = msg->con;
2999
3000 if (!con)
3001 return; /* Message not in our possession */
3002
Sage Weilec302642009-12-22 10:43:42 -08003003 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003004 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003005 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003006 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05003007 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003008 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05003009 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003010 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003011
Sage Weil31b80062009-10-06 11:31:13 -07003012 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003013 }
3014 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05003015 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003016 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003017 if (con->out_kvec_is_msg) {
3018 con->out_skip = con->out_kvec_bytes;
3019 con->out_kvec_is_msg = false;
3020 }
Sage Weiled98ada2010-07-05 12:15:14 -07003021 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05003022
3023 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003024 }
Sage Weilec302642009-12-22 10:43:42 -08003025 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003026}
3027
3028/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003029 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003030 */
Alex Elder8921d112012-06-01 14:56:43 -05003031void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003032{
Alex Elder8921d112012-06-01 14:56:43 -05003033 struct ceph_connection *con;
3034
3035 BUG_ON(msg == NULL);
3036 if (!msg->con) {
3037 dout("%s msg %p null con\n", __func__, msg);
3038
3039 return; /* Message not in our possession */
3040 }
3041
3042 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08003043 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003044 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003045 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3046 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3047 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003048
3049 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003050 dout("%s %p msg %p revoked\n", __func__, con, msg);
3051 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003052 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003053 front_len -
3054 middle_len -
3055 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003056 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003057 ceph_msg_put(con->in_msg);
3058 con->in_msg = NULL;
3059 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003060 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003061 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003062 dout("%s %p in_msg %p msg %p no-op\n",
3063 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003064 }
3065 mutex_unlock(&con->mutex);
3066}
3067
3068/*
Sage Weil31b80062009-10-06 11:31:13 -07003069 * Queue a keepalive byte to ensure the tcp connection is alive.
3070 */
3071void ceph_con_keepalive(struct ceph_connection *con)
3072{
Sage Weile00de342011-03-04 12:25:05 -08003073 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003074 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003075 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003076 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003077 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3078 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003079 queue_con(con);
3080}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003081EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003082
Alex Elder43794502013-03-01 18:00:16 -06003083static void ceph_msg_data_init(struct ceph_msg_data *data)
3084{
3085 data->type = CEPH_MSG_DATA_NONE;
3086}
3087
Alex Elder02afca62013-02-14 12:16:43 -06003088void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003089 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003090{
Alex Elder07aa1552013-03-04 18:29:06 -06003091 BUG_ON(!pages);
3092 BUG_ON(!length);
Alex Elder43794502013-03-01 18:00:16 -06003093 BUG_ON(msg->p.type != CEPH_MSG_DATA_NONE);
Alex Elder02afca62013-02-14 12:16:43 -06003094
Alex Elder43794502013-03-01 18:00:16 -06003095 msg->p.type = CEPH_MSG_DATA_PAGES;
Alex Elderf9e15772013-03-01 18:00:16 -06003096 msg->p.pages = pages;
3097 msg->p.length = length;
3098 msg->p.alignment = alignment & ~PAGE_MASK;
Alex Elder02afca62013-02-14 12:16:43 -06003099}
3100EXPORT_SYMBOL(ceph_msg_data_set_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003101
Alex Elder27fa8382013-02-14 12:16:43 -06003102void ceph_msg_data_set_pagelist(struct ceph_msg *msg,
3103 struct ceph_pagelist *pagelist)
3104{
Alex Elder07aa1552013-03-04 18:29:06 -06003105 BUG_ON(!pagelist);
3106 BUG_ON(!pagelist->length);
Alex Elder43794502013-03-01 18:00:16 -06003107 BUG_ON(msg->l.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003108
Alex Elder43794502013-03-01 18:00:16 -06003109 msg->l.type = CEPH_MSG_DATA_PAGELIST;
Alex Elderf9e15772013-03-01 18:00:16 -06003110 msg->l.pagelist = pagelist;
Alex Elder27fa8382013-02-14 12:16:43 -06003111}
3112EXPORT_SYMBOL(ceph_msg_data_set_pagelist);
3113
3114void ceph_msg_data_set_bio(struct ceph_msg *msg, struct bio *bio)
3115{
Alex Elder07aa1552013-03-04 18:29:06 -06003116 BUG_ON(!bio);
Alex Elder43794502013-03-01 18:00:16 -06003117 BUG_ON(msg->b.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003118
Alex Elder43794502013-03-01 18:00:16 -06003119 msg->b.type = CEPH_MSG_DATA_BIO;
Alex Elderf9e15772013-03-01 18:00:16 -06003120 msg->b.bio = bio;
Alex Elder27fa8382013-02-14 12:16:43 -06003121}
3122EXPORT_SYMBOL(ceph_msg_data_set_bio);
3123
Sage Weil31b80062009-10-06 11:31:13 -07003124/*
3125 * construct a new message with given type, size
3126 * the new msg has a ref count of 1.
3127 */
Sage Weilb61c2762011-08-09 15:03:46 -07003128struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3129 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003130{
3131 struct ceph_msg *m;
3132
Alex Elder9516e452013-03-01 18:00:16 -06003133 m = kzalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07003134 if (m == NULL)
3135 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003136
Sage Weil31b80062009-10-06 11:31:13 -07003137 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003138 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003139 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003140
Alex Elder9516e452013-03-01 18:00:16 -06003141 INIT_LIST_HEAD(&m->list_head);
3142 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003143
Alex Elder43794502013-03-01 18:00:16 -06003144 ceph_msg_data_init(&m->p);
3145 ceph_msg_data_init(&m->l);
3146 ceph_msg_data_init(&m->b);
Alex Elder43794502013-03-01 18:00:16 -06003147
Sage Weil31b80062009-10-06 11:31:13 -07003148 /* front */
Alex Elder9516e452013-03-01 18:00:16 -06003149 m->front_max = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003150 if (front_len) {
3151 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003152 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07003153 PAGE_KERNEL);
3154 m->front_is_vmalloc = true;
3155 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003156 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003157 }
3158 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003159 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003160 front_len);
3161 goto out2;
3162 }
3163 } else {
3164 m->front.iov_base = NULL;
3165 }
3166 m->front.iov_len = front_len;
3167
Sage Weilbb257662010-04-01 16:07:23 -07003168 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003169 return m;
3170
3171out2:
3172 ceph_msg_put(m);
3173out:
Sage Weilb61c2762011-08-09 15:03:46 -07003174 if (!can_fail) {
3175 pr_err("msg_new can't create type %d front %d\n", type,
3176 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003177 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003178 } else {
3179 dout("msg_new can't create type %d front %d\n", type,
3180 front_len);
3181 }
Sage Weila79832f2010-04-01 16:06:19 -07003182 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003183}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003184EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003185
3186/*
Sage Weil31b80062009-10-06 11:31:13 -07003187 * Allocate "middle" portion of a message, if it is needed and wasn't
3188 * allocated by alloc_msg. This allows us to read a small fixed-size
3189 * per-type header in the front and then gracefully fail (i.e.,
3190 * propagate the error to the caller based on info in the front) when
3191 * the middle is too large.
3192 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003193static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003194{
3195 int type = le16_to_cpu(msg->hdr.type);
3196 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3197
3198 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3199 ceph_msg_type_name(type), middle_len);
3200 BUG_ON(!middle_len);
3201 BUG_ON(msg->middle);
3202
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003203 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003204 if (!msg->middle)
3205 return -ENOMEM;
3206 return 0;
3207}
3208
Yehuda Sadeh24504182010-01-08 13:58:34 -08003209/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003210 * Allocate a message for receiving an incoming message on a
3211 * connection, and save the result in con->in_msg. Uses the
3212 * connection's private alloc_msg op if available.
3213 *
Sage Weil4740a622012-07-30 18:19:30 -07003214 * Returns 0 on success, or a negative error code.
3215 *
3216 * On success, if we set *skip = 1:
3217 * - the next message should be skipped and ignored.
3218 * - con->in_msg == NULL
3219 * or if we set *skip = 0:
3220 * - con->in_msg is non-null.
3221 * On error (ENOMEM, EAGAIN, ...),
3222 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003223 */
Sage Weil4740a622012-07-30 18:19:30 -07003224static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003225{
Sage Weil4740a622012-07-30 18:19:30 -07003226 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003227 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003228 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003229 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003230
Alex Elder1c20f2d2012-06-04 14:43:32 -05003231 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003232 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003233
Alex Elder53ded492013-03-01 18:00:14 -06003234 mutex_unlock(&con->mutex);
3235 msg = con->ops->alloc_msg(con, hdr, skip);
3236 mutex_lock(&con->mutex);
3237 if (con->state != CON_STATE_OPEN) {
3238 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003239 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003240 return -EAGAIN;
3241 }
Alex Elder41375772013-03-05 09:25:10 -06003242 if (msg) {
3243 BUG_ON(*skip);
3244 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003245 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003246 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003247 } else {
3248 /*
3249 * Null message pointer means either we should skip
3250 * this message or we couldn't allocate memory. The
3251 * former is not an error.
3252 */
3253 if (*skip)
3254 return 0;
3255 con->error_msg = "error allocating memory for incoming message";
3256
Alex Elder53ded492013-03-01 18:00:14 -06003257 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003258 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003259 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003260
Alex Elder1c20f2d2012-06-04 14:43:32 -05003261 if (middle_len && !con->in_msg->middle) {
3262 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003263 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003264 ceph_msg_put(con->in_msg);
3265 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003266 }
3267 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003268
Sage Weil4740a622012-07-30 18:19:30 -07003269 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003270}
3271
Sage Weil31b80062009-10-06 11:31:13 -07003272
3273/*
3274 * Free a generically kmalloc'd message.
3275 */
3276void ceph_msg_kfree(struct ceph_msg *m)
3277{
3278 dout("msg_kfree %p\n", m);
3279 if (m->front_is_vmalloc)
3280 vfree(m->front.iov_base);
3281 else
3282 kfree(m->front.iov_base);
3283 kfree(m);
3284}
3285
3286/*
3287 * Drop a msg ref. Destroy as needed.
3288 */
Sage Weilc2e552e2009-12-07 15:55:05 -08003289void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003290{
Sage Weilc2e552e2009-12-07 15:55:05 -08003291 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07003292
Sage Weilc2e552e2009-12-07 15:55:05 -08003293 dout("ceph_msg_put last one on %p\n", m);
3294 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003295
Sage Weilc2e552e2009-12-07 15:55:05 -08003296 /* drop middle, data, if any */
3297 if (m->middle) {
3298 ceph_buffer_put(m->middle);
3299 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003300 }
Alex Elder97fb1c72013-03-01 18:00:16 -06003301 if (ceph_msg_has_pages(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003302 m->p.length = 0;
3303 m->p.pages = NULL;
Alex Elder888334f2013-03-25 11:54:30 -05003304 m->p.type = CEPH_OSD_DATA_TYPE_NONE;
Alex Elder97fb1c72013-03-01 18:00:16 -06003305 }
Alex Elder97fb1c72013-03-01 18:00:16 -06003306 if (ceph_msg_has_pagelist(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003307 ceph_pagelist_release(m->l.pagelist);
3308 kfree(m->l.pagelist);
3309 m->l.pagelist = NULL;
Alex Elder888334f2013-03-25 11:54:30 -05003310 m->l.type = CEPH_OSD_DATA_TYPE_NONE;
3311 }
3312 if (ceph_msg_has_bio(m)) {
3313 m->b.bio = NULL;
3314 m->b.type = CEPH_OSD_DATA_TYPE_NONE;
Sage Weil58bb3b32009-12-23 12:12:31 -08003315 }
3316
Sage Weilc2e552e2009-12-07 15:55:05 -08003317 if (m->pool)
3318 ceph_msgpool_put(m->pool, m);
3319 else
3320 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07003321}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003322EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003323
3324void ceph_msg_dump(struct ceph_msg *msg)
3325{
Alex Elder4a73ef22013-03-07 15:38:26 -06003326 pr_debug("msg_dump %p (front_max %d length %zd)\n", msg,
Alex Elderf9e15772013-03-01 18:00:16 -06003327 msg->front_max, msg->p.length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003328 print_hex_dump(KERN_DEBUG, "header: ",
3329 DUMP_PREFIX_OFFSET, 16, 1,
3330 &msg->hdr, sizeof(msg->hdr), true);
3331 print_hex_dump(KERN_DEBUG, " front: ",
3332 DUMP_PREFIX_OFFSET, 16, 1,
3333 msg->front.iov_base, msg->front.iov_len, true);
3334 if (msg->middle)
3335 print_hex_dump(KERN_DEBUG, "middle: ",
3336 DUMP_PREFIX_OFFSET, 16, 1,
3337 msg->middle->vec.iov_base,
3338 msg->middle->vec.iov_len, true);
3339 print_hex_dump(KERN_DEBUG, "footer: ",
3340 DUMP_PREFIX_OFFSET, 16, 1,
3341 &msg->footer, sizeof(msg->footer), true);
3342}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003343EXPORT_SYMBOL(ceph_msg_dump);