blob: ff58d31827541e8dd18fe1f661c5d06eb98ae32e [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 Elder57666512012-01-23 15:49:27 -0600186static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-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 Elder57666512012-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 Heof363e45fd12011-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 Elder57666512012-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 Elder57666512012-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 Elder57666512012-01-23 15:49:27 -0600261 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-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 Weil91e45ce32010-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 Elder07c09b72013-02-15 22:10:17 -0600719static void init_bio_iter(struct bio *bio, struct bio **bio_iter,
720 unsigned int *bio_seg)
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500721{
722 if (!bio) {
Alex Elder07c09b72013-02-15 22:10:17 -0600723 *bio_iter = NULL;
724 *bio_seg = 0;
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500725 return;
726 }
Alex Elder07c09b72013-02-15 22:10:17 -0600727 *bio_iter = bio;
728 *bio_seg = (unsigned int) bio->bi_idx;
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500729}
730
Alex Elder07c09b72013-02-15 22:10:17 -0600731static void iter_bio_next(struct bio **bio_iter, unsigned int *seg)
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500732{
733 if (*bio_iter == NULL)
734 return;
735
736 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
737
738 (*seg)++;
739 if (*seg == (*bio_iter)->bi_vcnt)
740 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
741}
Alex Elder6aaa4512013-03-06 23:39:39 -0600742
743/*
744 * For a bio data item, a piece is whatever remains of the next
745 * entry in the current bio iovec, or the first entry in the next
746 * bio in the list.
747 */
748static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data *data)
749{
750 struct ceph_msg_data_cursor *cursor = &data->cursor;
751 struct bio *bio;
752
753 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
754
755 bio = data->bio;
756 BUG_ON(!bio);
757 BUG_ON(!bio->bi_vcnt);
758 /* resid = bio->bi_size */
759
760 cursor->bio = bio;
761 cursor->vector_index = 0;
762 cursor->vector_offset = 0;
763 cursor->last_piece = !bio->bi_next && bio->bi_vcnt == 1;
764}
765
766static struct page *ceph_msg_data_bio_next(struct ceph_msg_data *data,
767 size_t *page_offset,
768 size_t *length)
769{
770 struct ceph_msg_data_cursor *cursor = &data->cursor;
771 struct bio *bio;
772 struct bio_vec *bio_vec;
773 unsigned int index;
774
775 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
776
777 bio = cursor->bio;
778 BUG_ON(!bio);
779
780 index = cursor->vector_index;
781 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
782
783 bio_vec = &bio->bi_io_vec[index];
784 BUG_ON(cursor->vector_offset >= bio_vec->bv_len);
785 *page_offset = (size_t) (bio_vec->bv_offset + cursor->vector_offset);
786 BUG_ON(*page_offset >= PAGE_SIZE);
787 *length = (size_t) (bio_vec->bv_len - cursor->vector_offset);
788 BUG_ON(*length > PAGE_SIZE);
789
790 return bio_vec->bv_page;
791}
792
793static bool ceph_msg_data_bio_advance(struct ceph_msg_data *data, size_t bytes)
794{
795 struct ceph_msg_data_cursor *cursor = &data->cursor;
796 struct bio *bio;
797 struct bio_vec *bio_vec;
798 unsigned int index;
799
800 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
801
802 bio = cursor->bio;
803 BUG_ON(!bio);
804
805 index = cursor->vector_index;
806 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
807 bio_vec = &bio->bi_io_vec[index];
808 BUG_ON(cursor->vector_offset + bytes > bio_vec->bv_len);
809
810 /* Advance the cursor offset */
811
812 cursor->vector_offset += bytes;
813 if (cursor->vector_offset < bio_vec->bv_len)
814 return false; /* more bytes to process in this segment */
815
816 /* Move on to the next segment, and possibly the next bio */
817
818 if (++cursor->vector_index == (unsigned int) bio->bi_vcnt) {
819 bio = bio->bi_next;
820 cursor->bio = bio;
821 cursor->vector_index = 0;
822 }
823 cursor->vector_offset = 0;
824
825 if (!cursor->last_piece && bio && !bio->bi_next)
826 if (cursor->vector_index == (unsigned int) bio->bi_vcnt - 1)
827 cursor->last_piece = true;
828
829 return true;
830}
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500831#endif
832
Alex Elderfe38a2b2013-03-06 23:39:39 -0600833/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600834 * For a page array, a piece comes from the first page in the array
835 * that has not already been fully consumed.
836 */
837static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data *data)
838{
839 struct ceph_msg_data_cursor *cursor = &data->cursor;
840 int page_count;
841
842 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
843
844 BUG_ON(!data->pages);
845 BUG_ON(!data->length);
846
847 page_count = calc_pages_for(data->alignment, (u64)data->length);
848 BUG_ON(page_count > (int) USHRT_MAX);
849 cursor->resid = data->length;
850 cursor->page_offset = data->alignment & ~PAGE_MASK;
851 cursor->page_index = 0;
852 cursor->page_count = (unsigned short) page_count;
853 cursor->last_piece = cursor->page_count == 1;
854}
855
856static struct page *ceph_msg_data_pages_next(struct ceph_msg_data *data,
857 size_t *page_offset,
858 size_t *length)
859{
860 struct ceph_msg_data_cursor *cursor = &data->cursor;
861
862 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
863
864 BUG_ON(cursor->page_index >= cursor->page_count);
865 BUG_ON(cursor->page_offset >= PAGE_SIZE);
866 BUG_ON(!cursor->resid);
867
868 *page_offset = cursor->page_offset;
869 if (cursor->last_piece) {
870 BUG_ON(*page_offset + cursor->resid > PAGE_SIZE);
871 *length = cursor->resid;
872 } else {
873 *length = PAGE_SIZE - *page_offset;
874 }
875
876 return data->pages[cursor->page_index];
877}
878
879static bool ceph_msg_data_pages_advance(struct ceph_msg_data *data,
880 size_t bytes)
881{
882 struct ceph_msg_data_cursor *cursor = &data->cursor;
883
884 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
885
886 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
887 BUG_ON(bytes > cursor->resid);
888
889 /* Advance the cursor page offset */
890
891 cursor->resid -= bytes;
892 cursor->page_offset += bytes;
893 if (!bytes || cursor->page_offset & ~PAGE_MASK)
894 return false; /* more bytes to process in the current page */
895
896 /* Move on to the next page */
897
898 BUG_ON(cursor->page_index >= cursor->page_count);
899 cursor->page_offset = 0;
900 cursor->page_index++;
901 cursor->last_piece = cursor->page_index == cursor->page_count - 1;
902
903 return true;
904}
905
906/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600907 * For a pagelist, a piece is whatever remains to be consumed in the
908 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600909 */
Alex Elderdd236fc2013-03-06 23:39:39 -0600910static void ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data *data)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600911{
912 struct ceph_msg_data_cursor *cursor = &data->cursor;
913 struct ceph_pagelist *pagelist;
914 struct page *page;
915
Alex Elderdd236fc2013-03-06 23:39:39 -0600916 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600917
918 pagelist = data->pagelist;
919 BUG_ON(!pagelist);
920 if (!pagelist->length)
921 return; /* pagelist can be assigned but empty */
922
923 BUG_ON(list_empty(&pagelist->head));
924 page = list_first_entry(&pagelist->head, struct page, lru);
925
926 cursor->page = page;
927 cursor->offset = 0;
928 cursor->last_piece = pagelist->length <= PAGE_SIZE;
929}
930
Alex Elderdd236fc2013-03-06 23:39:39 -0600931static struct page *ceph_msg_data_pagelist_next(struct ceph_msg_data *data,
Alex Elderfe38a2b2013-03-06 23:39:39 -0600932 size_t *page_offset,
Alex Elderdd236fc2013-03-06 23:39:39 -0600933 size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600934{
935 struct ceph_msg_data_cursor *cursor = &data->cursor;
936 struct ceph_pagelist *pagelist;
937 size_t piece_end;
938
939 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
940
941 pagelist = data->pagelist;
942 BUG_ON(!pagelist);
943
944 BUG_ON(!cursor->page);
945 BUG_ON(cursor->offset >= pagelist->length);
946
Alex Elderdd236fc2013-03-06 23:39:39 -0600947 if (cursor->last_piece) {
Alex Elderfe38a2b2013-03-06 23:39:39 -0600948 /* pagelist offset is always 0 */
949 piece_end = pagelist->length & ~PAGE_MASK;
950 if (!piece_end)
951 piece_end = PAGE_SIZE;
952 } else {
953 piece_end = PAGE_SIZE;
954 }
955 *page_offset = cursor->offset & ~PAGE_MASK;
956 *length = piece_end - *page_offset;
957
958 return data->cursor.page;
959}
960
Alex Elderdd236fc2013-03-06 23:39:39 -0600961static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data *data,
962 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600963{
964 struct ceph_msg_data_cursor *cursor = &data->cursor;
965 struct ceph_pagelist *pagelist;
966
967 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
968
969 pagelist = data->pagelist;
970 BUG_ON(!pagelist);
971 BUG_ON(!cursor->page);
972 BUG_ON(cursor->offset + bytes > pagelist->length);
973 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
974
975 /* Advance the cursor offset */
976
977 cursor->offset += bytes;
978 /* pagelist offset is always 0 */
979 if (!bytes || cursor->offset & ~PAGE_MASK)
980 return false; /* more bytes to process in the current page */
981
982 /* Move on to the next page */
983
984 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
985 cursor->page = list_entry_next(cursor->page, lru);
986
987 /* cursor offset is at page boundary; pagelist offset is always 0 */
988 if (pagelist->length - cursor->offset <= PAGE_SIZE)
989 cursor->last_piece = true;
990
991 return true;
992}
993
Alex Elderdd236fc2013-03-06 23:39:39 -0600994/*
995 * Message data is handled (sent or received) in pieces, where each
996 * piece resides on a single page. The network layer might not
997 * consume an entire piece at once. A data item's cursor keeps
998 * track of which piece is next to process and how much remains to
999 * be processed in that piece. It also tracks whether the current
1000 * piece is the last one in the data item.
1001 */
1002static void ceph_msg_data_cursor_init(struct ceph_msg_data *data)
1003{
1004 switch (data->type) {
1005 case CEPH_MSG_DATA_PAGELIST:
1006 ceph_msg_data_pagelist_cursor_init(data);
1007 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001008 case CEPH_MSG_DATA_PAGES:
1009 ceph_msg_data_pages_cursor_init(data);
1010 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001011#ifdef CONFIG_BLOCK
1012 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001013 ceph_msg_data_bio_cursor_init(data);
1014 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001015#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001016 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001017 default:
1018 /* BUG(); */
1019 break;
1020 }
1021}
1022
1023/*
1024 * Return the page containing the next piece to process for a given
1025 * data item, and supply the page offset and length of that piece.
1026 * Indicate whether this is the last piece in this data item.
1027 */
1028static struct page *ceph_msg_data_next(struct ceph_msg_data *data,
1029 size_t *page_offset,
1030 size_t *length,
1031 bool *last_piece)
1032{
1033 struct page *page;
1034
1035 switch (data->type) {
1036 case CEPH_MSG_DATA_PAGELIST:
1037 page = ceph_msg_data_pagelist_next(data, page_offset, length);
1038 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001039 case CEPH_MSG_DATA_PAGES:
1040 page = ceph_msg_data_pages_next(data, page_offset, length);
1041 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001042#ifdef CONFIG_BLOCK
1043 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001044 page = ceph_msg_data_bio_next(data, page_offset, length);
1045 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001046#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001047 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001048 default:
1049 page = NULL;
1050 break;
1051 }
1052 BUG_ON(!page);
1053 BUG_ON(*page_offset + *length > PAGE_SIZE);
1054 BUG_ON(!*length);
1055 if (last_piece)
1056 *last_piece = data->cursor.last_piece;
1057
1058 return page;
1059}
1060
1061/*
1062 * Returns true if the result moves the cursor on to the next piece
1063 * of the data item.
1064 */
1065static bool ceph_msg_data_advance(struct ceph_msg_data *data, size_t bytes)
1066{
1067 bool new_piece;
1068
1069 switch (data->type) {
1070 case CEPH_MSG_DATA_PAGELIST:
1071 new_piece = ceph_msg_data_pagelist_advance(data, bytes);
1072 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001073 case CEPH_MSG_DATA_PAGES:
1074 new_piece = ceph_msg_data_pages_advance(data, bytes);
1075 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001076#ifdef CONFIG_BLOCK
1077 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001078 new_piece = ceph_msg_data_bio_advance(data, bytes);
1079 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001080#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001081 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001082 default:
1083 BUG();
1084 break;
1085 }
1086
1087 return new_piece;
1088}
1089
Alex Elder78625052013-03-06 23:39:39 -06001090static void prepare_message_data(struct ceph_msg *msg,
1091 struct ceph_msg_pos *msg_pos)
Alex Elder739c9052012-06-11 14:57:13 -05001092{
Alex Elder739c9052012-06-11 14:57:13 -05001093 BUG_ON(!msg);
1094 BUG_ON(!msg->hdr.data_len);
1095
1096 /* initialize page iterator */
Alex Elderbae6acd2013-03-06 23:39:38 -06001097 msg_pos->page = 0;
Alex Elder97fb1c72013-03-01 18:00:16 -06001098 if (ceph_msg_has_pages(msg))
Alex Elderf9e15772013-03-01 18:00:16 -06001099 msg_pos->page_pos = msg->p.alignment;
Alex Elder739c9052012-06-11 14:57:13 -05001100 else
Alex Elderbae6acd2013-03-06 23:39:38 -06001101 msg_pos->page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -05001102#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06001103 if (ceph_msg_has_bio(msg))
Alex Elderf9e15772013-03-01 18:00:16 -06001104 init_bio_iter(msg->b.bio, &msg->b.bio_iter, &msg->b.bio_seg);
Alex Elder572c5882012-06-11 14:57:13 -05001105#endif
Alex Elderbae6acd2013-03-06 23:39:38 -06001106 msg_pos->data_pos = 0;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001107
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001108 /* Initialize data cursors */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001109
Alex Elder6aaa4512013-03-06 23:39:39 -06001110#ifdef CONFIG_BLOCK
1111 if (ceph_msg_has_bio(msg))
1112 ceph_msg_data_cursor_init(&msg->b);
1113#endif /* CONFIG_BLOCK */
Alex Eldere766d7b2013-03-07 15:38:28 -06001114 if (ceph_msg_has_pages(msg))
1115 ceph_msg_data_cursor_init(&msg->p);
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001116 if (ceph_msg_has_pagelist(msg))
1117 ceph_msg_data_cursor_init(&msg->l);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001118
Alex Elderbae6acd2013-03-06 23:39:38 -06001119 msg_pos->did_page_crc = false;
Alex Elder739c9052012-06-11 14:57:13 -05001120}
1121
Sage Weil31b80062009-10-06 11:31:13 -07001122/*
1123 * Prepare footer for currently outgoing message, and finish things
1124 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1125 */
Alex Elder859eb792012-02-14 14:05:33 -06001126static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001127{
1128 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001129 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001130
Alex Elderfd154f32012-06-11 14:57:13 -05001131 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1132
Sage Weil31b80062009-10-06 11:31:13 -07001133 dout("prepare_write_message_footer %p\n", con);
1134 con->out_kvec_is_msg = true;
1135 con->out_kvec[v].iov_base = &m->footer;
1136 con->out_kvec[v].iov_len = sizeof(m->footer);
1137 con->out_kvec_bytes += sizeof(m->footer);
1138 con->out_kvec_left++;
1139 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001140 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001141}
1142
1143/*
1144 * Prepare headers for the next outgoing message.
1145 */
1146static void prepare_write_message(struct ceph_connection *con)
1147{
1148 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001149 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001150
Alex Eldere2200422012-05-23 14:35:23 -05001151 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001152 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001153 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001154
1155 /* Sneak an ack in there first? If we can get it into the same
1156 * TCP packet that's a good thing. */
1157 if (con->in_seq > con->in_seq_acked) {
1158 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001159 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001160 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001161 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001162 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001163 }
1164
Alex Elder38941f82012-06-01 14:56:43 -05001165 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001166 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001167 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001168 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001169
1170 /* put message on sent list */
1171 ceph_msg_get(m);
1172 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001173
Sage Weile84346b2010-05-11 21:20:38 -07001174 /*
1175 * only assign outgoing seq # if we haven't sent this message
1176 * yet. if it is requeued, resend with it's original seq.
1177 */
1178 if (m->needs_out_seq) {
1179 m->hdr.seq = cpu_to_le64(++con->out_seq);
1180 m->needs_out_seq = false;
1181 }
Sage Weil31b80062009-10-06 11:31:13 -07001182
Alex Elder4a73ef22013-03-07 15:38:26 -06001183 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d (%zd)\n",
Sage Weil31b80062009-10-06 11:31:13 -07001184 m, con->out_seq, le16_to_cpu(m->hdr.type),
1185 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elderf9e15772013-03-01 18:00:16 -06001186 le32_to_cpu(m->hdr.data_len), m->p.length);
Sage Weil31b80062009-10-06 11:31:13 -07001187 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1188
1189 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001190 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1191 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1192 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001193
Sage Weil31b80062009-10-06 11:31:13 -07001194 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001195 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001196 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001197
1198 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001199 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1200 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001201 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001202
1203 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1204 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1205 if (m->middle) {
1206 crc = crc32c(0, m->middle->vec.iov_base,
1207 m->middle->vec.iov_len);
1208 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1209 } else
Sage Weil31b80062009-10-06 11:31:13 -07001210 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001211 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001212 le32_to_cpu(con->out_msg->footer.front_crc),
1213 le32_to_cpu(con->out_msg->footer.middle_crc));
1214
1215 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001216 con->out_msg->footer.data_crc = 0;
Alex Elder78625052013-03-06 23:39:39 -06001217 if (m->hdr.data_len) {
1218 prepare_message_data(con->out_msg, &con->out_msg_pos);
1219 con->out_more = 1; /* data + footer will follow */
1220 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001221 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001222 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001223 }
Sage Weil31b80062009-10-06 11:31:13 -07001224
Alex Elderc9ffc772013-02-20 10:25:12 -06001225 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001226}
1227
1228/*
1229 * Prepare an ack.
1230 */
1231static void prepare_write_ack(struct ceph_connection *con)
1232{
1233 dout("prepare_write_ack %p %llu -> %llu\n", con,
1234 con->in_seq_acked, con->in_seq);
1235 con->in_seq_acked = con->in_seq;
1236
Alex Eldere2200422012-05-23 14:35:23 -05001237 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001238
Alex Eldere2200422012-05-23 14:35:23 -05001239 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001240
Sage Weil31b80062009-10-06 11:31:13 -07001241 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001242 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001243 &con->out_temp_ack);
1244
Sage Weil31b80062009-10-06 11:31:13 -07001245 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001246 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001247}
1248
1249/*
1250 * Prepare to write keepalive byte.
1251 */
1252static void prepare_write_keepalive(struct ceph_connection *con)
1253{
1254 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001255 con_out_kvec_reset(con);
1256 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001257 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001258}
1259
1260/*
1261 * Connection negotiation.
1262 */
1263
Alex Elderdac1e712012-05-16 15:16:39 -05001264static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1265 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001266{
Alex Eldera3530df2012-05-16 15:16:39 -05001267 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001268
1269 if (!con->ops->get_authorizer) {
1270 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1271 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001272 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001273 }
1274
1275 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001276 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001277 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001278 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001279
Alex Eldera3530df2012-05-16 15:16:39 -05001280 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001281 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001282 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001283 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001284
Alex Elder8f43fb52012-05-16 15:16:39 -05001285 con->auth_reply_buf = auth->authorizer_reply_buf;
1286 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001287 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001288}
1289
Sage Weil31b80062009-10-06 11:31:13 -07001290/*
1291 * We connected to a peer and are saying hello.
1292 */
Alex Eldere825a662012-05-16 15:16:38 -05001293static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001294{
Alex Eldere2200422012-05-23 14:35:23 -05001295 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1296 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001297 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001298
Sage Weileed0ef22009-11-10 14:34:36 -08001299 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001300 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001301}
1302
Alex Eldere825a662012-05-16 15:16:38 -05001303static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001304{
Eric Dumazet95c96172012-04-15 05:58:06 +00001305 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001306 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001307 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001308 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001309
1310 switch (con->peer_name.type) {
1311 case CEPH_ENTITY_TYPE_MON:
1312 proto = CEPH_MONC_PROTOCOL;
1313 break;
1314 case CEPH_ENTITY_TYPE_OSD:
1315 proto = CEPH_OSDC_PROTOCOL;
1316 break;
1317 case CEPH_ENTITY_TYPE_MDS:
1318 proto = CEPH_MDSC_PROTOCOL;
1319 break;
1320 default:
1321 BUG();
1322 }
1323
1324 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1325 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001326
Alex Eldere825a662012-05-16 15:16:38 -05001327 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001328 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1329 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1330 con->out_connect.global_seq = cpu_to_le32(global_seq);
1331 con->out_connect.protocol_version = cpu_to_le32(proto);
1332 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001333
Alex Elderdac1e712012-05-16 15:16:39 -05001334 auth_proto = CEPH_AUTH_UNKNOWN;
1335 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001336 if (IS_ERR(auth))
1337 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001338
Alex Elderdac1e712012-05-16 15:16:39 -05001339 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001340 con->out_connect.authorizer_len = auth ?
1341 cpu_to_le32(auth->authorizer_buf_len) : 0;
1342
Alex Eldere2200422012-05-23 14:35:23 -05001343 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001344 &con->out_connect);
1345 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001346 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001347 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001348
Sage Weil31b80062009-10-06 11:31:13 -07001349 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001350 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001351
Alex Eldere10c7582012-05-16 15:16:38 -05001352 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001353}
1354
Sage Weil31b80062009-10-06 11:31:13 -07001355/*
1356 * write as much of pending kvecs to the socket as we can.
1357 * 1 -> done
1358 * 0 -> socket full, but more to do
1359 * <0 -> error
1360 */
1361static int write_partial_kvec(struct ceph_connection *con)
1362{
1363 int ret;
1364
1365 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1366 while (con->out_kvec_bytes > 0) {
1367 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1368 con->out_kvec_left, con->out_kvec_bytes,
1369 con->out_more);
1370 if (ret <= 0)
1371 goto out;
1372 con->out_kvec_bytes -= ret;
1373 if (con->out_kvec_bytes == 0)
1374 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001375
1376 /* account for full iov entries consumed */
1377 while (ret >= con->out_kvec_cur->iov_len) {
1378 BUG_ON(!con->out_kvec_left);
1379 ret -= con->out_kvec_cur->iov_len;
1380 con->out_kvec_cur++;
1381 con->out_kvec_left--;
1382 }
1383 /* and for a partially-consumed entry */
1384 if (ret) {
1385 con->out_kvec_cur->iov_len -= ret;
1386 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001387 }
1388 }
1389 con->out_kvec_left = 0;
1390 con->out_kvec_is_msg = false;
1391 ret = 1;
1392out:
1393 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1394 con->out_kvec_bytes, con->out_kvec_left, ret);
1395 return ret; /* done! */
1396}
1397
Alex Elder84ca8fc2012-06-11 14:57:13 -05001398static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
Alex Elder9d2a06c2013-03-08 13:35:36 -06001399 size_t len, size_t sent)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001400{
1401 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001402 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001403 bool need_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001404
1405 BUG_ON(!msg);
1406 BUG_ON(!sent);
1407
Alex Elderbae6acd2013-03-06 23:39:38 -06001408 msg_pos->data_pos += sent;
1409 msg_pos->page_pos += sent;
Alex Elder9d2a06c2013-03-08 13:35:36 -06001410 if (ceph_msg_has_pages(msg))
Alex Eldere766d7b2013-03-07 15:38:28 -06001411 need_crc = ceph_msg_data_advance(&msg->p, sent);
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001412 else if (ceph_msg_has_pagelist(msg))
1413 need_crc = ceph_msg_data_advance(&msg->l, sent);
Alex Elder6aaa4512013-03-06 23:39:39 -06001414#ifdef CONFIG_BLOCK
1415 else if (ceph_msg_has_bio(msg))
1416 need_crc = ceph_msg_data_advance(&msg->b, sent);
1417#endif /* CONFIG_BLOCK */
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001418 BUG_ON(need_crc && sent != len);
1419
Alex Elder5821bd82012-06-11 14:57:13 -05001420 if (sent < len)
1421 return;
1422
1423 BUG_ON(sent != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001424 msg_pos->page_pos = 0;
1425 msg_pos->page++;
1426 msg_pos->did_page_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001427}
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001428
Alex Eldere7881822013-03-08 18:51:04 -06001429static void in_msg_pos_next(struct ceph_connection *con, size_t len,
1430 size_t received)
1431{
1432 struct ceph_msg *msg = con->in_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001433 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Eldere7881822013-03-08 18:51:04 -06001434
1435 BUG_ON(!msg);
1436 BUG_ON(!received);
1437
Alex Elderbae6acd2013-03-06 23:39:38 -06001438 msg_pos->data_pos += received;
1439 msg_pos->page_pos += received;
Alex Eldere7881822013-03-08 18:51:04 -06001440 if (received < len)
1441 return;
1442
1443 BUG_ON(received != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001444 msg_pos->page_pos = 0;
1445 msg_pos->page++;
Alex Eldere7881822013-03-08 18:51:04 -06001446#ifdef CONFIG_BLOCK
Alex Elderf9e15772013-03-01 18:00:16 -06001447 if (msg->b.bio)
1448 iter_bio_next(&msg->b.bio_iter, &msg->b.bio_seg);
Alex Eldere7881822013-03-08 18:51:04 -06001449#endif /* CONFIG_BLOCK */
1450}
1451
Alex Elder35b62802013-03-08 20:59:00 -06001452static u32 ceph_crc32c_page(u32 crc, struct page *page,
1453 unsigned int page_offset,
1454 unsigned int length)
1455{
1456 char *kaddr;
1457
1458 kaddr = kmap(page);
1459 BUG_ON(kaddr == NULL);
1460 crc = crc32c(crc, kaddr + page_offset, length);
1461 kunmap(page);
1462
1463 return crc;
1464}
Sage Weil31b80062009-10-06 11:31:13 -07001465/*
1466 * Write as much message data payload as we can. If we finish, queue
1467 * up the footer.
1468 * 1 -> done, footer is now queued in out_kvec[].
1469 * 0 -> socket full, but more to do
1470 * <0 -> error
1471 */
Alex Elder34d2d202013-03-08 20:58:59 -06001472static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001473{
1474 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001475 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Eric Dumazet95c96172012-04-15 05:58:06 +00001476 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Alex Elder37675b02012-03-07 11:40:08 -06001477 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07001478 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001479 int total_max_write;
Sage Weil31b80062009-10-06 11:31:13 -07001480
Alex Elder34d2d202013-03-08 20:58:59 -06001481 dout("%s %p msg %p page %d offset %d\n", __func__,
Alex Elderbae6acd2013-03-06 23:39:38 -06001482 con, msg, msg_pos->page, msg_pos->page_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001483
Alex Elder5821bd82012-06-11 14:57:13 -05001484 /*
1485 * Iterate through each page that contains data to be
1486 * written, and send as much as possible for each.
1487 *
1488 * If we are calculating the data crc (the default), we will
1489 * need to map the page. If we have no pages, they have
1490 * been revoked, so use the zero page.
1491 */
Alex Elderbae6acd2013-03-06 23:39:38 -06001492 while (data_len > msg_pos->data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001493 struct page *page = NULL;
Alex Eldere387d522013-03-06 23:39:38 -06001494 size_t page_offset;
1495 size_t length;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001496 bool use_cursor = false;
1497 bool last_piece = true; /* preserve existing behavior */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001498
Alex Elder9d2a06c2013-03-08 13:35:36 -06001499 total_max_write = data_len - msg_pos->data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001500
Alex Elder9d2a06c2013-03-08 13:35:36 -06001501 if (ceph_msg_has_pages(msg)) {
Alex Eldere766d7b2013-03-07 15:38:28 -06001502 use_cursor = true;
1503 page = ceph_msg_data_next(&msg->p, &page_offset,
1504 &length, &last_piece);
Alex Elder97fb1c72013-03-01 18:00:16 -06001505 } else if (ceph_msg_has_pagelist(msg)) {
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001506 use_cursor = true;
1507 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 use_cursor = true;
1512 page = ceph_msg_data_next(&msg->b, &page_offset,
1513 &length, &last_piece);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001514#endif
Sage Weil31b80062009-10-06 11:31:13 -07001515 } else {
Alex Elder57666512012-01-23 15:49:27 -06001516 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001517 }
Alex Elder6aaa4512013-03-06 23:39:39 -06001518 if (!use_cursor) {
1519 length = min_t(int, PAGE_SIZE - msg_pos->page_pos,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001520 total_max_write);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001521
Alex Elder6aaa4512013-03-06 23:39:39 -06001522 page_offset = msg_pos->page_pos;
1523 }
Alex Elderbae6acd2013-03-06 23:39:38 -06001524 if (do_datacrc && !msg_pos->did_page_crc) {
Alex Elder5821bd82012-06-11 14:57:13 -05001525 u32 crc = le32_to_cpu(msg->footer.data_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001526
Alex Elder35b62802013-03-08 20:59:00 -06001527 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001528 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbae6acd2013-03-06 23:39:38 -06001529 msg_pos->did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001530 }
Alex Eldere387d522013-03-06 23:39:38 -06001531 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001532 length, last_piece);
Sage Weil31b80062009-10-06 11:31:13 -07001533 if (ret <= 0)
1534 goto out;
1535
Alex Elder9d2a06c2013-03-08 13:35:36 -06001536 out_msg_pos_next(con, page, length, (size_t) ret);
Sage Weil31b80062009-10-06 11:31:13 -07001537 }
1538
Alex Elder34d2d202013-03-08 20:58:59 -06001539 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001540
1541 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001542 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001543 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001544 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001545 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001546 ret = 1;
1547out:
1548 return ret;
1549}
1550
1551/*
1552 * write some zeros
1553 */
1554static int write_partial_skip(struct ceph_connection *con)
1555{
1556 int ret;
1557
1558 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001559 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001560
Alex Eldere1dcb122013-03-06 23:39:38 -06001561 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001562 if (ret <= 0)
1563 goto out;
1564 con->out_skip -= ret;
1565 }
1566 ret = 1;
1567out:
1568 return ret;
1569}
1570
1571/*
1572 * Prepare to read connection handshake, or an ack.
1573 */
Sage Weileed0ef22009-11-10 14:34:36 -08001574static void prepare_read_banner(struct ceph_connection *con)
1575{
1576 dout("prepare_read_banner %p\n", con);
1577 con->in_base_pos = 0;
1578}
1579
Sage Weil31b80062009-10-06 11:31:13 -07001580static void prepare_read_connect(struct ceph_connection *con)
1581{
1582 dout("prepare_read_connect %p\n", con);
1583 con->in_base_pos = 0;
1584}
1585
1586static void prepare_read_ack(struct ceph_connection *con)
1587{
1588 dout("prepare_read_ack %p\n", con);
1589 con->in_base_pos = 0;
1590}
1591
1592static void prepare_read_tag(struct ceph_connection *con)
1593{
1594 dout("prepare_read_tag %p\n", con);
1595 con->in_base_pos = 0;
1596 con->in_tag = CEPH_MSGR_TAG_READY;
1597}
1598
1599/*
1600 * Prepare to read a message.
1601 */
1602static int prepare_read_message(struct ceph_connection *con)
1603{
1604 dout("prepare_read_message %p\n", con);
1605 BUG_ON(con->in_msg != NULL);
1606 con->in_base_pos = 0;
1607 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1608 return 0;
1609}
1610
1611
1612static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001613 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001614{
Alex Eldere6cee71f2012-05-10 10:29:50 -05001615 while (con->in_base_pos < end) {
1616 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001617 int have = size - left;
1618 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1619 if (ret <= 0)
1620 return ret;
1621 con->in_base_pos += ret;
1622 }
1623 return 1;
1624}
1625
1626
1627/*
1628 * Read all or part of the connect-side handshake on a new connection
1629 */
Sage Weileed0ef22009-11-10 14:34:36 -08001630static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001631{
Alex Elderfd516532012-05-10 10:29:50 -05001632 int size;
1633 int end;
1634 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001635
Sage Weileed0ef22009-11-10 14:34:36 -08001636 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001637
1638 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001639 size = strlen(CEPH_BANNER);
1640 end = size;
1641 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001642 if (ret <= 0)
1643 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001644
1645 size = sizeof (con->actual_peer_addr);
1646 end += size;
1647 ret = read_partial(con, end, size, &con->actual_peer_addr);
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->peer_addr_for_me);
1652 end += size;
1653 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001654 if (ret <= 0)
1655 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001656
Sage Weileed0ef22009-11-10 14:34:36 -08001657out:
1658 return ret;
1659}
1660
1661static int read_partial_connect(struct ceph_connection *con)
1662{
Alex Elderfd516532012-05-10 10:29:50 -05001663 int size;
1664 int end;
1665 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001666
1667 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1668
Alex Elderfd516532012-05-10 10:29:50 -05001669 size = sizeof (con->in_reply);
1670 end = size;
1671 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001672 if (ret <= 0)
1673 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001674
1675 size = le32_to_cpu(con->in_reply.authorizer_len);
1676 end += size;
1677 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001678 if (ret <= 0)
1679 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001680
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001681 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1682 con, (int)con->in_reply.tag,
1683 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001684 le32_to_cpu(con->in_reply.global_seq));
1685out:
1686 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001687
Sage Weil31b80062009-10-06 11:31:13 -07001688}
1689
1690/*
1691 * Verify the hello banner looks okay.
1692 */
1693static int verify_hello(struct ceph_connection *con)
1694{
1695 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001696 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001697 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001698 con->error_msg = "protocol error, bad banner";
1699 return -1;
1700 }
1701 return 0;
1702}
1703
1704static bool addr_is_blank(struct sockaddr_storage *ss)
1705{
1706 switch (ss->ss_family) {
1707 case AF_INET:
1708 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1709 case AF_INET6:
1710 return
1711 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1712 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1713 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1714 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1715 }
1716 return false;
1717}
1718
1719static int addr_port(struct sockaddr_storage *ss)
1720{
1721 switch (ss->ss_family) {
1722 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001723 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001724 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001725 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001726 }
1727 return 0;
1728}
1729
1730static void addr_set_port(struct sockaddr_storage *ss, int p)
1731{
1732 switch (ss->ss_family) {
1733 case AF_INET:
1734 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001735 break;
Sage Weil31b80062009-10-06 11:31:13 -07001736 case AF_INET6:
1737 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001738 break;
Sage Weil31b80062009-10-06 11:31:13 -07001739 }
1740}
1741
1742/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001743 * Unlike other *_pton function semantics, zero indicates success.
1744 */
1745static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1746 char delim, const char **ipend)
1747{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001748 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1749 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001750
1751 memset(ss, 0, sizeof(*ss));
1752
1753 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1754 ss->ss_family = AF_INET;
1755 return 0;
1756 }
1757
1758 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1759 ss->ss_family = AF_INET6;
1760 return 0;
1761 }
1762
1763 return -EINVAL;
1764}
1765
1766/*
1767 * Extract hostname string and resolve using kernel DNS facility.
1768 */
1769#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1770static int ceph_dns_resolve_name(const char *name, size_t namelen,
1771 struct sockaddr_storage *ss, char delim, const char **ipend)
1772{
1773 const char *end, *delim_p;
1774 char *colon_p, *ip_addr = NULL;
1775 int ip_len, ret;
1776
1777 /*
1778 * The end of the hostname occurs immediately preceding the delimiter or
1779 * the port marker (':') where the delimiter takes precedence.
1780 */
1781 delim_p = memchr(name, delim, namelen);
1782 colon_p = memchr(name, ':', namelen);
1783
1784 if (delim_p && colon_p)
1785 end = delim_p < colon_p ? delim_p : colon_p;
1786 else if (!delim_p && colon_p)
1787 end = colon_p;
1788 else {
1789 end = delim_p;
1790 if (!end) /* case: hostname:/ */
1791 end = name + namelen;
1792 }
1793
1794 if (end <= name)
1795 return -EINVAL;
1796
1797 /* do dns_resolve upcall */
1798 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1799 if (ip_len > 0)
1800 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1801 else
1802 ret = -ESRCH;
1803
1804 kfree(ip_addr);
1805
1806 *ipend = end;
1807
1808 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1809 ret, ret ? "failed" : ceph_pr_addr(ss));
1810
1811 return ret;
1812}
1813#else
1814static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1815 struct sockaddr_storage *ss, char delim, const char **ipend)
1816{
1817 return -EINVAL;
1818}
1819#endif
1820
1821/*
1822 * Parse a server name (IP or hostname). If a valid IP address is not found
1823 * then try to extract a hostname to resolve using userspace DNS upcall.
1824 */
1825static int ceph_parse_server_name(const char *name, size_t namelen,
1826 struct sockaddr_storage *ss, char delim, const char **ipend)
1827{
1828 int ret;
1829
1830 ret = ceph_pton(name, namelen, ss, delim, ipend);
1831 if (ret)
1832 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1833
1834 return ret;
1835}
1836
1837/*
Sage Weil31b80062009-10-06 11:31:13 -07001838 * Parse an ip[:port] list into an addr array. Use the default
1839 * monitor port if a port isn't specified.
1840 */
1841int ceph_parse_ips(const char *c, const char *end,
1842 struct ceph_entity_addr *addr,
1843 int max_count, int *count)
1844{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001845 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001846 const char *p = c;
1847
1848 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1849 for (i = 0; i < max_count; i++) {
1850 const char *ipend;
1851 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001852 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001853 char delim = ',';
1854
1855 if (*p == '[') {
1856 delim = ']';
1857 p++;
1858 }
Sage Weil31b80062009-10-06 11:31:13 -07001859
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001860 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1861 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001862 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001863 ret = -EINVAL;
1864
Sage Weil31b80062009-10-06 11:31:13 -07001865 p = ipend;
1866
Sage Weil39139f62010-07-08 09:54:52 -07001867 if (delim == ']') {
1868 if (*p != ']') {
1869 dout("missing matching ']'\n");
1870 goto bad;
1871 }
1872 p++;
1873 }
1874
Sage Weil31b80062009-10-06 11:31:13 -07001875 /* port? */
1876 if (p < end && *p == ':') {
1877 port = 0;
1878 p++;
1879 while (p < end && *p >= '0' && *p <= '9') {
1880 port = (port * 10) + (*p - '0');
1881 p++;
1882 }
1883 if (port > 65535 || port == 0)
1884 goto bad;
1885 } else {
1886 port = CEPH_MON_PORT;
1887 }
1888
1889 addr_set_port(ss, port);
1890
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001891 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001892
1893 if (p == end)
1894 break;
1895 if (*p != ',')
1896 goto bad;
1897 p++;
1898 }
1899
1900 if (p != end)
1901 goto bad;
1902
1903 if (count)
1904 *count = i + 1;
1905 return 0;
1906
1907bad:
Sage Weil39139f62010-07-08 09:54:52 -07001908 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001909 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001910}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001911EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001912
Sage Weileed0ef22009-11-10 14:34:36 -08001913static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001914{
Sage Weileed0ef22009-11-10 14:34:36 -08001915 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001916
1917 if (verify_hello(con) < 0)
1918 return -1;
1919
Sage Weil63f2d212009-11-03 15:17:56 -08001920 ceph_decode_addr(&con->actual_peer_addr);
1921 ceph_decode_addr(&con->peer_addr_for_me);
1922
Sage Weil31b80062009-10-06 11:31:13 -07001923 /*
1924 * Make sure the other end is who we wanted. note that the other
1925 * end may not yet know their ip address, so if it's 0.0.0.0, give
1926 * them the benefit of the doubt.
1927 */
Sage Weil103e2d32010-01-07 16:12:36 -08001928 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1929 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001930 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1931 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001932 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001933 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001934 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001935 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001936 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001937 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001938 return -1;
1939 }
1940
1941 /*
1942 * did we learn our address?
1943 */
1944 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1945 int port = addr_port(&con->msgr->inst.addr.in_addr);
1946
1947 memcpy(&con->msgr->inst.addr.in_addr,
1948 &con->peer_addr_for_me.in_addr,
1949 sizeof(con->peer_addr_for_me.in_addr));
1950 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001951 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001952 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001953 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001954 }
1955
Sage Weileed0ef22009-11-10 14:34:36 -08001956 return 0;
1957}
1958
1959static int process_connect(struct ceph_connection *con)
1960{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001961 u64 sup_feat = con->msgr->supported_features;
1962 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001963 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001964 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001965
Sage Weileed0ef22009-11-10 14:34:36 -08001966 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1967
Sage Weil31b80062009-10-06 11:31:13 -07001968 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001969 case CEPH_MSGR_TAG_FEATURES:
1970 pr_err("%s%lld %s feature set mismatch,"
1971 " my %llx < server's %llx, missing %llx\n",
1972 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001973 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001974 sup_feat, server_feat, server_feat & ~sup_feat);
1975 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001976 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001977 return -1;
1978
Sage Weil31b80062009-10-06 11:31:13 -07001979 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001980 pr_err("%s%lld %s protocol version mismatch,"
1981 " my %d != server's %d\n",
1982 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001983 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001984 le32_to_cpu(con->out_connect.protocol_version),
1985 le32_to_cpu(con->in_reply.protocol_version));
1986 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001987 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001988 return -1;
1989
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001990 case CEPH_MSGR_TAG_BADAUTHORIZER:
1991 con->auth_retry++;
1992 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1993 con->auth_retry);
1994 if (con->auth_retry == 2) {
1995 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001996 return -1;
1997 }
1998 con->auth_retry = 1;
Jim Schutt6d4221b2012-08-10 10:37:38 -07001999 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002000 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002001 if (ret < 0)
2002 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07002003 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08002004 break;
Sage Weil31b80062009-10-06 11:31:13 -07002005
2006 case CEPH_MSGR_TAG_RESETSESSION:
2007 /*
2008 * If we connected with a large connect_seq but the peer
2009 * has no record of a session with us (no connection, or
2010 * connect_seq == 0), they will send RESETSESION to indicate
2011 * that they must have reset their session, and may have
2012 * dropped messages.
2013 */
2014 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002015 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002016 pr_err("%s%lld %s connection reset\n",
2017 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002018 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002019 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002020 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002021 ret = prepare_write_connect(con);
2022 if (ret < 0)
2023 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002024 prepare_read_connect(con);
2025
2026 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002027 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002028 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2029 if (con->ops->peer_reset)
2030 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002031 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002032 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002033 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002034 break;
2035
2036 case CEPH_MSGR_TAG_RETRY_SESSION:
2037 /*
2038 * If we sent a smaller connect_seq than the peer has, try
2039 * again with a larger value.
2040 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002041 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002042 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002043 le32_to_cpu(con->in_reply.connect_seq));
2044 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002045 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002046 ret = prepare_write_connect(con);
2047 if (ret < 0)
2048 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002049 prepare_read_connect(con);
2050 break;
2051
2052 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2053 /*
2054 * If we sent a smaller global_seq than the peer has, try
2055 * again with a larger value.
2056 */
Sage Weileed0ef22009-11-10 14:34:36 -08002057 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002058 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002059 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002060 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002061 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002062 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002063 ret = prepare_write_connect(con);
2064 if (ret < 0)
2065 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002066 prepare_read_connect(con);
2067 break;
2068
2069 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002070 if (req_feat & ~server_feat) {
2071 pr_err("%s%lld %s protocol feature mismatch,"
2072 " my required %llx > server's %llx, need %llx\n",
2073 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002074 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002075 req_feat, server_feat, req_feat & ~server_feat);
2076 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002077 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002078 return -1;
2079 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002080
Alex Elder122070a2012-12-26 10:43:57 -06002081 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002082 con->state = CON_STATE_OPEN;
2083
Sage Weil31b80062009-10-06 11:31:13 -07002084 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2085 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002086 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002087 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2088 con->peer_global_seq,
2089 le32_to_cpu(con->in_reply.connect_seq),
2090 con->connect_seq);
2091 WARN_ON(con->connect_seq !=
2092 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002093
2094 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002095 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002096
Sage Weil85effe12012-07-30 16:22:05 -07002097 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002098
2099 prepare_read_tag(con);
2100 break;
2101
2102 case CEPH_MSGR_TAG_WAIT:
2103 /*
2104 * If there is a connection race (we are opening
2105 * connections to each other), one of us may just have
2106 * to WAIT. This shouldn't happen if we are the
2107 * client.
2108 */
Sage Weil04177882011-05-12 15:33:17 -07002109 pr_err("process_connect got WAIT as client\n");
2110 con->error_msg = "protocol error, got WAIT as client";
2111 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002112
2113 default:
2114 pr_err("connect protocol error, will retry\n");
2115 con->error_msg = "protocol error, garbage tag during connect";
2116 return -1;
2117 }
2118 return 0;
2119}
2120
2121
2122/*
2123 * read (part of) an ack
2124 */
2125static int read_partial_ack(struct ceph_connection *con)
2126{
Alex Elderfd516532012-05-10 10:29:50 -05002127 int size = sizeof (con->in_temp_ack);
2128 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002129
Alex Elderfd516532012-05-10 10:29:50 -05002130 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002131}
2132
2133
2134/*
2135 * We can finally discard anything that's been acked.
2136 */
2137static void process_ack(struct ceph_connection *con)
2138{
2139 struct ceph_msg *m;
2140 u64 ack = le64_to_cpu(con->in_temp_ack);
2141 u64 seq;
2142
Sage Weil31b80062009-10-06 11:31:13 -07002143 while (!list_empty(&con->out_sent)) {
2144 m = list_first_entry(&con->out_sent, struct ceph_msg,
2145 list_head);
2146 seq = le64_to_cpu(m->hdr.seq);
2147 if (seq > ack)
2148 break;
2149 dout("got ack for seq %llu type %d at %p\n", seq,
2150 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002151 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002152 ceph_msg_remove(m);
2153 }
Sage Weil31b80062009-10-06 11:31:13 -07002154 prepare_read_tag(con);
2155}
2156
2157
2158
2159
Yehuda Sadeh24504182010-01-08 13:58:34 -08002160static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002161 struct kvec *section,
2162 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002163{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002164 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002165
Yehuda Sadeh24504182010-01-08 13:58:34 -08002166 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002167
Yehuda Sadeh24504182010-01-08 13:58:34 -08002168 while (section->iov_len < sec_len) {
2169 BUG_ON(section->iov_base == NULL);
2170 left = sec_len - section->iov_len;
2171 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2172 section->iov_len, left);
2173 if (ret <= 0)
2174 return ret;
2175 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002176 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002177 if (section->iov_len == sec_len)
2178 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002179
2180 return 1;
2181}
2182
Sage Weil4740a622012-07-30 18:19:30 -07002183static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002184
2185static int read_partial_message_pages(struct ceph_connection *con,
2186 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00002187 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002188{
Alex Elderbae6acd2013-03-06 23:39:38 -06002189 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Eldere7881822013-03-08 18:51:04 -06002190 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002191 size_t page_offset;
2192 size_t length;
2193 unsigned int left;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002194 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002195
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002196 /* (page) data */
2197 BUG_ON(pages == NULL);
Alex Elderbae6acd2013-03-06 23:39:38 -06002198 page = pages[msg_pos->page];
Alex Elderafb3d902013-03-08 20:58:59 -06002199 page_offset = msg_pos->page_pos;
2200 BUG_ON(msg_pos->data_pos >= data_len);
2201 left = data_len - msg_pos->data_pos;
2202 BUG_ON(page_offset >= PAGE_SIZE);
2203 length = min_t(unsigned int, PAGE_SIZE - page_offset, left);
2204
2205 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002206 if (ret <= 0)
2207 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002208
Alex Elder35b62802013-03-08 20:59:00 -06002209 if (do_datacrc)
2210 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2211 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002212
2213 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002214
2215 return ret;
2216}
2217
2218#ifdef CONFIG_BLOCK
2219static int read_partial_message_bio(struct ceph_connection *con,
Eric Dumazet95c96172012-04-15 05:58:06 +00002220 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002221{
Alex Elderb3d56fa2013-03-08 18:51:03 -06002222 struct ceph_msg *msg = con->in_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06002223 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Elderb3d56fa2013-03-08 18:51:03 -06002224 struct bio_vec *bv;
Alex Eldere7881822013-03-08 18:51:04 -06002225 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002226 size_t page_offset;
2227 size_t length;
2228 unsigned int left;
2229 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002230
Alex Elderb3d56fa2013-03-08 18:51:03 -06002231 BUG_ON(!msg);
Alex Elderf9e15772013-03-01 18:00:16 -06002232 BUG_ON(!msg->b.bio_iter);
2233 bv = bio_iovec_idx(msg->b.bio_iter, msg->b.bio_seg);
Alex Eldere7881822013-03-08 18:51:04 -06002234 page = bv->bv_page;
Alex Elderafb3d902013-03-08 20:58:59 -06002235 page_offset = bv->bv_offset + msg_pos->page_pos;
2236 BUG_ON(msg_pos->data_pos >= data_len);
2237 left = data_len - msg_pos->data_pos;
2238 BUG_ON(msg_pos->page_pos >= bv->bv_len);
2239 length = min_t(unsigned int, bv->bv_len - msg_pos->page_pos, left);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002240
Alex Elderafb3d902013-03-08 20:58:59 -06002241 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002242 if (ret <= 0)
2243 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002244
Alex Elder35b62802013-03-08 20:59:00 -06002245 if (do_datacrc)
2246 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2247 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002248
2249 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002250
2251 return ret;
2252}
2253#endif
2254
Alex Elder34d2d202013-03-08 20:58:59 -06002255static int read_partial_msg_data(struct ceph_connection *con)
2256{
2257 struct ceph_msg *msg = con->in_msg;
2258 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
2259 const bool do_datacrc = !con->msgr->nocrc;
2260 unsigned int data_len;
2261 int ret;
2262
2263 BUG_ON(!msg);
2264
2265 data_len = le32_to_cpu(con->in_hdr.data_len);
2266 while (msg_pos->data_pos < data_len) {
Alex Elder97fb1c72013-03-01 18:00:16 -06002267 if (ceph_msg_has_pages(msg)) {
Alex Elderf9e15772013-03-01 18:00:16 -06002268 ret = read_partial_message_pages(con, msg->p.pages,
Alex Elder34d2d202013-03-08 20:58:59 -06002269 data_len, do_datacrc);
2270 if (ret <= 0)
2271 return ret;
2272#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06002273 } else if (ceph_msg_has_bio(msg)) {
Alex Elder34d2d202013-03-08 20:58:59 -06002274 ret = read_partial_message_bio(con,
2275 data_len, do_datacrc);
2276 if (ret <= 0)
2277 return ret;
2278#endif
2279 } else {
2280 BUG_ON(1);
2281 }
2282 }
2283
2284 return 1; /* must return > 0 to indicate success */
2285}
2286
Sage Weil31b80062009-10-06 11:31:13 -07002287/*
2288 * read (part of) a message.
2289 */
2290static int read_partial_message(struct ceph_connection *con)
2291{
2292 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002293 int size;
2294 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002295 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002296 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002297 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07002298 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002299 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002300
2301 dout("read_partial_message con %p msg %p\n", con, m);
2302
2303 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002304 size = sizeof (con->in_hdr);
2305 end = size;
2306 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002307 if (ret <= 0)
2308 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002309
2310 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2311 if (cpu_to_le32(crc) != con->in_hdr.crc) {
2312 pr_err("read_partial_message bad hdr "
2313 " crc %u != expected %u\n",
2314 crc, con->in_hdr.crc);
2315 return -EBADMSG;
2316 }
2317
Sage Weil31b80062009-10-06 11:31:13 -07002318 front_len = le32_to_cpu(con->in_hdr.front_len);
2319 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2320 return -EIO;
2321 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002322 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002323 return -EIO;
2324 data_len = le32_to_cpu(con->in_hdr.data_len);
2325 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2326 return -EIO;
2327
Sage Weilae187562010-04-22 07:47:01 -07002328 /* verify seq# */
2329 seq = le64_to_cpu(con->in_hdr.seq);
2330 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002331 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002332 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002333 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002334 seq, con->in_seq + 1);
2335 con->in_base_pos = -front_len - middle_len - data_len -
2336 sizeof(m->footer);
2337 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002338 return 0;
2339 } else if ((s64)seq - (s64)con->in_seq > 1) {
2340 pr_err("read_partial_message bad seq %lld expected %lld\n",
2341 seq, con->in_seq + 1);
2342 con->error_msg = "bad message sequence # for incoming message";
2343 return -EBADMSG;
2344 }
2345
Sage Weil31b80062009-10-06 11:31:13 -07002346 /* allocate message? */
2347 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002348 int skip = 0;
2349
Sage Weil31b80062009-10-06 11:31:13 -07002350 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002351 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002352 ret = ceph_con_in_msg_alloc(con, &skip);
2353 if (ret < 0)
2354 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002355 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002356 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002357 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07002358 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002359 con->in_base_pos = -front_len - middle_len - data_len -
2360 sizeof(m->footer);
2361 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002362 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002363 return 0;
2364 }
Alex Elder38941f82012-06-01 14:56:43 -05002365
Sage Weil4740a622012-07-30 18:19:30 -07002366 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002367 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002368 m = con->in_msg;
2369 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002370 if (m->middle)
2371 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002372
Alex Elder78625052013-03-06 23:39:39 -06002373 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002374
Alex Elder78625052013-03-06 23:39:39 -06002375 if (data_len)
2376 prepare_message_data(con->in_msg, &con->in_msg_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002377 }
2378
2379 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002380 ret = read_partial_message_section(con, &m->front, front_len,
2381 &con->in_front_crc);
2382 if (ret <= 0)
2383 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002384
2385 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002386 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002387 ret = read_partial_message_section(con, &m->middle->vec,
2388 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002389 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002390 if (ret <= 0)
2391 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002392 }
2393
2394 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002395 if (data_len) {
2396 ret = read_partial_msg_data(con);
2397 if (ret <= 0)
2398 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002399 }
2400
Sage Weil31b80062009-10-06 11:31:13 -07002401 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002402 size = sizeof (m->footer);
2403 end += size;
2404 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002405 if (ret <= 0)
2406 return ret;
2407
Sage Weil31b80062009-10-06 11:31:13 -07002408 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2409 m, front_len, m->footer.front_crc, middle_len,
2410 m->footer.middle_crc, data_len, m->footer.data_crc);
2411
2412 /* crc ok? */
2413 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2414 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2415 m, con->in_front_crc, m->footer.front_crc);
2416 return -EBADMSG;
2417 }
2418 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2419 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2420 m, con->in_middle_crc, m->footer.middle_crc);
2421 return -EBADMSG;
2422 }
Alex Elderbca064d2012-02-15 07:43:54 -06002423 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002424 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2425 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2426 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2427 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2428 return -EBADMSG;
2429 }
2430
2431 return 1; /* done! */
2432}
2433
2434/*
2435 * Process message. This happens in the worker thread. The callback should
2436 * be careful not to do anything that waits on other incoming messages or it
2437 * may deadlock.
2438 */
2439static void process_message(struct ceph_connection *con)
2440{
Sage Weil5e095e82009-12-14 14:30:34 -08002441 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002442
Alex Elder38941f82012-06-01 14:56:43 -05002443 BUG_ON(con->in_msg->con != con);
2444 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002445 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002446 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002447 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002448
2449 /* if first message, set peer_name */
2450 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002451 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002452
Sage Weil31b80062009-10-06 11:31:13 -07002453 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002454 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002455
2456 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2457 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002458 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002459 le16_to_cpu(msg->hdr.type),
2460 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2461 le32_to_cpu(msg->hdr.front_len),
2462 le32_to_cpu(msg->hdr.data_len),
2463 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2464 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002465
2466 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002467}
2468
2469
2470/*
2471 * Write something to the socket. Called in a worker thread when the
2472 * socket appears to be writeable and we have something ready to send.
2473 */
2474static int try_write(struct ceph_connection *con)
2475{
Sage Weil31b80062009-10-06 11:31:13 -07002476 int ret = 1;
2477
Sage Weild59315c2012-06-21 12:49:23 -07002478 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002479
Sage Weil31b80062009-10-06 11:31:13 -07002480more:
2481 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2482
2483 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002484 if (con->state == CON_STATE_PREOPEN) {
2485 BUG_ON(con->sock);
2486 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002487
Alex Eldere2200422012-05-23 14:35:23 -05002488 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002489 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002490 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002491
Sage Weilcf3e5c42009-12-11 09:48:05 -08002492 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002493 con->in_tag = CEPH_MSGR_TAG_READY;
2494 dout("try_write initiating connect on %p new state %lu\n",
2495 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002496 ret = ceph_tcp_connect(con);
2497 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002498 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002499 goto out;
2500 }
2501 }
2502
2503more_kvec:
2504 /* kvec data queued? */
2505 if (con->out_skip) {
2506 ret = write_partial_skip(con);
2507 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002508 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002509 }
2510 if (con->out_kvec_left) {
2511 ret = write_partial_kvec(con);
2512 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002513 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002514 }
2515
2516 /* msg pages? */
2517 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002518 if (con->out_msg_done) {
2519 ceph_msg_put(con->out_msg);
2520 con->out_msg = NULL; /* we're done with this one */
2521 goto do_next;
2522 }
2523
Alex Elder34d2d202013-03-08 20:58:59 -06002524 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002525 if (ret == 1)
2526 goto more_kvec; /* we need to send the footer, too! */
2527 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002528 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002529 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002530 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002531 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002532 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002533 }
2534 }
2535
Sage Weilc86a2932009-12-14 14:04:30 -08002536do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002537 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002538 /* is anything else pending? */
2539 if (!list_empty(&con->out_queue)) {
2540 prepare_write_message(con);
2541 goto more;
2542 }
2543 if (con->in_seq > con->in_seq_acked) {
2544 prepare_write_ack(con);
2545 goto more;
2546 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002547 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002548 prepare_write_keepalive(con);
2549 goto more;
2550 }
2551 }
2552
2553 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002554 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002555 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002556 ret = 0;
2557out:
Sage Weil42961d22011-01-25 08:19:34 -08002558 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002559 return ret;
2560}
2561
2562
2563
2564/*
2565 * Read what we can from the socket.
2566 */
2567static int try_read(struct ceph_connection *con)
2568{
Sage Weil31b80062009-10-06 11:31:13 -07002569 int ret = -1;
2570
Sage Weil31b80062009-10-06 11:31:13 -07002571more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002572 dout("try_read start on %p state %lu\n", con, con->state);
2573 if (con->state != CON_STATE_CONNECTING &&
2574 con->state != CON_STATE_NEGOTIATING &&
2575 con->state != CON_STATE_OPEN)
2576 return 0;
2577
2578 BUG_ON(!con->sock);
2579
Sage Weil31b80062009-10-06 11:31:13 -07002580 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2581 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002582
Sage Weil8dacc7d2012-07-20 17:24:40 -07002583 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002584 dout("try_read connecting\n");
2585 ret = read_partial_banner(con);
2586 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002587 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002588 ret = process_banner(con);
2589 if (ret < 0)
2590 goto out;
2591
Sage Weil8dacc7d2012-07-20 17:24:40 -07002592 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002593
Jim Schutt6d4221b2012-08-10 10:37:38 -07002594 /*
2595 * Received banner is good, exchange connection info.
2596 * Do not reset out_kvec, as sending our banner raced
2597 * with receiving peer banner after connect completed.
2598 */
Alex Elder7593af92012-05-24 11:55:03 -05002599 ret = prepare_write_connect(con);
2600 if (ret < 0)
2601 goto out;
2602 prepare_read_connect(con);
2603
2604 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002605 goto out;
2606 }
2607
Sage Weil8dacc7d2012-07-20 17:24:40 -07002608 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002609 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002610 ret = read_partial_connect(con);
2611 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002612 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002613 ret = process_connect(con);
2614 if (ret < 0)
2615 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002616 goto more;
2617 }
2618
Alex Elder122070a2012-12-26 10:43:57 -06002619 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002620
Sage Weil31b80062009-10-06 11:31:13 -07002621 if (con->in_base_pos < 0) {
2622 /*
2623 * skipping + discarding content.
2624 *
2625 * FIXME: there must be a better way to do this!
2626 */
Alex Elder84495f42012-02-15 07:43:55 -06002627 static char buf[SKIP_BUF_SIZE];
2628 int skip = min((int) sizeof (buf), -con->in_base_pos);
2629
Sage Weil31b80062009-10-06 11:31:13 -07002630 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2631 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2632 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002633 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002634 con->in_base_pos += ret;
2635 if (con->in_base_pos)
2636 goto more;
2637 }
2638 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2639 /*
2640 * what's next?
2641 */
2642 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2643 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002644 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002645 dout("try_read got tag %d\n", (int)con->in_tag);
2646 switch (con->in_tag) {
2647 case CEPH_MSGR_TAG_MSG:
2648 prepare_read_message(con);
2649 break;
2650 case CEPH_MSGR_TAG_ACK:
2651 prepare_read_ack(con);
2652 break;
2653 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002654 con_close_socket(con);
2655 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002656 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002657 default:
2658 goto bad_tag;
2659 }
2660 }
2661 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2662 ret = read_partial_message(con);
2663 if (ret <= 0) {
2664 switch (ret) {
2665 case -EBADMSG:
2666 con->error_msg = "bad crc";
2667 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002668 break;
Sage Weil31b80062009-10-06 11:31:13 -07002669 case -EIO:
2670 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002671 break;
Sage Weil31b80062009-10-06 11:31:13 -07002672 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002673 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002674 }
2675 if (con->in_tag == CEPH_MSGR_TAG_READY)
2676 goto more;
2677 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002678 if (con->state == CON_STATE_OPEN)
2679 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002680 goto more;
2681 }
2682 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2683 ret = read_partial_ack(con);
2684 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002685 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002686 process_ack(con);
2687 goto more;
2688 }
2689
Sage Weil31b80062009-10-06 11:31:13 -07002690out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002691 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002692 return ret;
2693
2694bad_tag:
2695 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2696 con->error_msg = "protocol error, garbage tag";
2697 ret = -1;
2698 goto out;
2699}
2700
2701
2702/*
Alex Elder802c6d92012-10-08 20:37:30 -07002703 * Atomically queue work on a connection after the specified delay.
2704 * Bump @con reference to avoid races with connection teardown.
2705 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002706 */
Alex Elder802c6d92012-10-08 20:37:30 -07002707static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002708{
Sage Weil31b80062009-10-06 11:31:13 -07002709 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002710 dout("%s %p ref count 0\n", __func__, con);
2711
2712 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002713 }
2714
Alex Elder802c6d92012-10-08 20:37:30 -07002715 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2716 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002717 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002718
2719 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002720 }
Alex Elder802c6d92012-10-08 20:37:30 -07002721
2722 dout("%s %p %lu\n", __func__, con, delay);
2723
2724 return 0;
2725}
2726
2727static void queue_con(struct ceph_connection *con)
2728{
2729 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002730}
2731
Alex Elder7bb21d682012-12-07 19:50:07 -06002732static bool con_sock_closed(struct ceph_connection *con)
2733{
Alex Elderc9ffc772013-02-20 10:25:12 -06002734 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002735 return false;
2736
2737#define CASE(x) \
2738 case CON_STATE_ ## x: \
2739 con->error_msg = "socket closed (con state " #x ")"; \
2740 break;
2741
2742 switch (con->state) {
2743 CASE(CLOSED);
2744 CASE(PREOPEN);
2745 CASE(CONNECTING);
2746 CASE(NEGOTIATING);
2747 CASE(OPEN);
2748 CASE(STANDBY);
2749 default:
2750 pr_warning("%s con %p unrecognized state %lu\n",
2751 __func__, con, con->state);
2752 con->error_msg = "unrecognized con state";
2753 BUG();
2754 break;
2755 }
2756#undef CASE
2757
2758 return true;
2759}
2760
Alex Elderf20a39f2013-02-19 12:25:57 -06002761static bool con_backoff(struct ceph_connection *con)
2762{
2763 int ret;
2764
2765 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2766 return false;
2767
2768 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2769 if (ret) {
2770 dout("%s: con %p FAILED to back off %lu\n", __func__,
2771 con, con->delay);
2772 BUG_ON(ret == -ENOENT);
2773 con_flag_set(con, CON_FLAG_BACKOFF);
2774 }
2775
2776 return true;
2777}
2778
Alex Elder93209262013-02-19 12:25:57 -06002779/* Finish fault handling; con->mutex must *not* be held here */
2780
2781static void con_fault_finish(struct ceph_connection *con)
2782{
2783 /*
2784 * in case we faulted due to authentication, invalidate our
2785 * current tickets so that we can get new ones.
2786 */
2787 if (con->auth_retry && con->ops->invalidate_authorizer) {
2788 dout("calling invalidate_authorizer()\n");
2789 con->ops->invalidate_authorizer(con);
2790 }
2791
2792 if (con->ops->fault)
2793 con->ops->fault(con);
2794}
2795
Sage Weil31b80062009-10-06 11:31:13 -07002796/*
2797 * Do some work on a connection. Drop a connection ref when we're done.
2798 */
2799static void con_work(struct work_struct *work)
2800{
2801 struct ceph_connection *con = container_of(work, struct ceph_connection,
2802 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002803 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002804
Sage Weil9dd46582010-04-28 13:51:50 -07002805 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002806 while (true) {
2807 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002808
Alex Elder49659412013-02-19 12:25:57 -06002809 if ((fault = con_sock_closed(con))) {
2810 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2811 break;
2812 }
2813 if (con_backoff(con)) {
2814 dout("%s: con %p BACKOFF\n", __func__, con);
2815 break;
2816 }
2817 if (con->state == CON_STATE_STANDBY) {
2818 dout("%s: con %p STANDBY\n", __func__, con);
2819 break;
2820 }
2821 if (con->state == CON_STATE_CLOSED) {
2822 dout("%s: con %p CLOSED\n", __func__, con);
2823 BUG_ON(con->sock);
2824 break;
2825 }
2826 if (con->state == CON_STATE_PREOPEN) {
2827 dout("%s: con %p PREOPEN\n", __func__, con);
2828 BUG_ON(con->sock);
2829 }
Sage Weil0da5d702011-05-19 11:21:05 -07002830
Alex Elder49659412013-02-19 12:25:57 -06002831 ret = try_read(con);
2832 if (ret < 0) {
2833 if (ret == -EAGAIN)
2834 continue;
2835 con->error_msg = "socket error on read";
2836 fault = true;
2837 break;
2838 }
2839
2840 ret = try_write(con);
2841 if (ret < 0) {
2842 if (ret == -EAGAIN)
2843 continue;
2844 con->error_msg = "socket error on write";
2845 fault = true;
2846 }
2847
2848 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002849 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002850 if (fault)
2851 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002852 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002853
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002854 if (fault)
2855 con_fault_finish(con);
2856
2857 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002858}
2859
Sage Weil31b80062009-10-06 11:31:13 -07002860/*
2861 * Generic error/fault handler. A retry mechanism is used with
2862 * exponential backoff
2863 */
Alex Elder93209262013-02-19 12:25:57 -06002864static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002865{
Alex Elder28362982012-12-14 16:47:41 -06002866 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002867 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002868 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002869 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002870
Alex Elder122070a2012-12-26 10:43:57 -06002871 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002872 con->state != CON_STATE_NEGOTIATING &&
2873 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002874
Sage Weil31b80062009-10-06 11:31:13 -07002875 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002876
Alex Elderc9ffc772013-02-20 10:25:12 -06002877 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002878 dout("fault on LOSSYTX channel, marking CLOSED\n");
2879 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002880 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002881 }
2882
Sage Weil5e095e82009-12-14 14:30:34 -08002883 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002884 BUG_ON(con->in_msg->con != con);
2885 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002886 ceph_msg_put(con->in_msg);
2887 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002888 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002889 }
Sage Weil31b80062009-10-06 11:31:13 -07002890
Sage Weile80a52d2010-02-25 12:40:45 -08002891 /* Requeue anything that hasn't been acked */
2892 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002893
Sage Weile76661d2011-03-03 10:10:15 -08002894 /* If there are no messages queued or keepalive pending, place
2895 * the connection in a STANDBY state */
2896 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002897 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002898 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002899 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002900 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002901 } else {
2902 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002903 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002904 if (con->delay == 0)
2905 con->delay = BASE_DELAY_INTERVAL;
2906 else if (con->delay < MAX_DELAY_INTERVAL)
2907 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002908 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002909 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002910 }
Sage Weil31b80062009-10-06 11:31:13 -07002911}
2912
2913
2914
2915/*
Alex Elder15d98822012-05-26 23:26:43 -05002916 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002917 */
Alex Elder15d98822012-05-26 23:26:43 -05002918void ceph_messenger_init(struct ceph_messenger *msgr,
2919 struct ceph_entity_addr *myaddr,
2920 u32 supported_features,
2921 u32 required_features,
2922 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002923{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002924 msgr->supported_features = supported_features;
2925 msgr->required_features = required_features;
2926
Sage Weil31b80062009-10-06 11:31:13 -07002927 spin_lock_init(&msgr->global_seq_lock);
2928
Sage Weil31b80062009-10-06 11:31:13 -07002929 if (myaddr)
2930 msgr->inst.addr = *myaddr;
2931
2932 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002933 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002934 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002935 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002936 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002937
Guanjun Hea2a32582012-07-08 19:50:33 -07002938 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002939
Alex Elder15d98822012-05-26 23:26:43 -05002940 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002941}
Alex Elder15d98822012-05-26 23:26:43 -05002942EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002943
Sage Weile00de342011-03-04 12:25:05 -08002944static void clear_standby(struct ceph_connection *con)
2945{
2946 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002947 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002948 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002949 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002950 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002951 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2952 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002953 }
2954}
2955
Sage Weil31b80062009-10-06 11:31:13 -07002956/*
2957 * Queue up an outgoing message on the given connection.
2958 */
2959void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2960{
Sage Weila59b55a2012-07-20 15:34:04 -07002961 /* set src+dst */
2962 msg->hdr.src = con->msgr->inst.name;
2963 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2964 msg->needs_out_seq = true;
2965
2966 mutex_lock(&con->mutex);
2967
Sage Weil8dacc7d2012-07-20 17:24:40 -07002968 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002969 dout("con_send %p closed, dropping %p\n", con, msg);
2970 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002971 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002972 return;
2973 }
2974
Alex Elder38941f82012-06-01 14:56:43 -05002975 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002976 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002977 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002978
Sage Weil31b80062009-10-06 11:31:13 -07002979 BUG_ON(!list_empty(&msg->list_head));
2980 list_add_tail(&msg->list_head, &con->out_queue);
2981 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2982 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2983 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2984 le32_to_cpu(msg->hdr.front_len),
2985 le32_to_cpu(msg->hdr.middle_len),
2986 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002987
2988 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002989 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002990
2991 /* if there wasn't anything waiting to send before, queue
2992 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002993 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002994 queue_con(con);
2995}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002996EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002997
2998/*
2999 * Revoke a message that was previously queued for send
3000 */
Alex Elder6740a842012-06-01 14:56:43 -05003001void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003002{
Alex Elder6740a842012-06-01 14:56:43 -05003003 struct ceph_connection *con = msg->con;
3004
3005 if (!con)
3006 return; /* Message not in our possession */
3007
Sage Weilec302642009-12-22 10:43:42 -08003008 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003009 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05003010 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07003011 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05003012 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07003013 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05003014 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003015 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05003016
Sage Weil31b80062009-10-06 11:31:13 -07003017 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003018 }
3019 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05003020 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07003021 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003022 if (con->out_kvec_is_msg) {
3023 con->out_skip = con->out_kvec_bytes;
3024 con->out_kvec_is_msg = false;
3025 }
Sage Weiled98ada2010-07-05 12:15:14 -07003026 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05003027
3028 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07003029 }
Sage Weilec302642009-12-22 10:43:42 -08003030 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07003031}
3032
3033/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003034 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08003035 */
Alex Elder8921d112012-06-01 14:56:43 -05003036void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08003037{
Alex Elder8921d112012-06-01 14:56:43 -05003038 struct ceph_connection *con;
3039
3040 BUG_ON(msg == NULL);
3041 if (!msg->con) {
3042 dout("%s msg %p null con\n", __func__, msg);
3043
3044 return; /* Message not in our possession */
3045 }
3046
3047 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08003048 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05003049 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00003050 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3051 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3052 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08003053
3054 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05003055 dout("%s %p msg %p revoked\n", __func__, con, msg);
3056 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08003057 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08003058 front_len -
3059 middle_len -
3060 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003061 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003062 ceph_msg_put(con->in_msg);
3063 con->in_msg = NULL;
3064 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003065 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003066 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003067 dout("%s %p in_msg %p msg %p no-op\n",
3068 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003069 }
3070 mutex_unlock(&con->mutex);
3071}
3072
3073/*
Sage Weil31b80062009-10-06 11:31:13 -07003074 * Queue a keepalive byte to ensure the tcp connection is alive.
3075 */
3076void ceph_con_keepalive(struct ceph_connection *con)
3077{
Sage Weile00de342011-03-04 12:25:05 -08003078 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003079 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003080 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003081 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003082 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3083 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003084 queue_con(con);
3085}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003086EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003087
Alex Elder43794502013-03-01 18:00:16 -06003088static void ceph_msg_data_init(struct ceph_msg_data *data)
3089{
3090 data->type = CEPH_MSG_DATA_NONE;
3091}
3092
Alex Elder02afca62013-02-14 12:16:43 -06003093void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003094 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003095{
Alex Elder07aa1552013-03-04 18:29:06 -06003096 BUG_ON(!pages);
3097 BUG_ON(!length);
Alex Elder43794502013-03-01 18:00:16 -06003098 BUG_ON(msg->p.type != CEPH_MSG_DATA_NONE);
Alex Elder02afca62013-02-14 12:16:43 -06003099
Alex Elder43794502013-03-01 18:00:16 -06003100 msg->p.type = CEPH_MSG_DATA_PAGES;
Alex Elderf9e15772013-03-01 18:00:16 -06003101 msg->p.pages = pages;
3102 msg->p.length = length;
3103 msg->p.alignment = alignment & ~PAGE_MASK;
Alex Elder02afca62013-02-14 12:16:43 -06003104}
3105EXPORT_SYMBOL(ceph_msg_data_set_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003106
Alex Elder27fa8382013-02-14 12:16:43 -06003107void ceph_msg_data_set_pagelist(struct ceph_msg *msg,
3108 struct ceph_pagelist *pagelist)
3109{
Alex Elder07aa1552013-03-04 18:29:06 -06003110 BUG_ON(!pagelist);
3111 BUG_ON(!pagelist->length);
Alex Elder43794502013-03-01 18:00:16 -06003112 BUG_ON(msg->l.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003113
Alex Elder43794502013-03-01 18:00:16 -06003114 msg->l.type = CEPH_MSG_DATA_PAGELIST;
Alex Elderf9e15772013-03-01 18:00:16 -06003115 msg->l.pagelist = pagelist;
Alex Elder27fa8382013-02-14 12:16:43 -06003116}
3117EXPORT_SYMBOL(ceph_msg_data_set_pagelist);
3118
3119void ceph_msg_data_set_bio(struct ceph_msg *msg, struct bio *bio)
3120{
Alex Elder07aa1552013-03-04 18:29:06 -06003121 BUG_ON(!bio);
Alex Elder43794502013-03-01 18:00:16 -06003122 BUG_ON(msg->b.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003123
Alex Elder43794502013-03-01 18:00:16 -06003124 msg->b.type = CEPH_MSG_DATA_BIO;
Alex Elderf9e15772013-03-01 18:00:16 -06003125 msg->b.bio = bio;
Alex Elder27fa8382013-02-14 12:16:43 -06003126}
3127EXPORT_SYMBOL(ceph_msg_data_set_bio);
3128
Sage Weil31b80062009-10-06 11:31:13 -07003129/*
3130 * construct a new message with given type, size
3131 * the new msg has a ref count of 1.
3132 */
Sage Weilb61c2762011-08-09 15:03:46 -07003133struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3134 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003135{
3136 struct ceph_msg *m;
3137
Alex Elder9516e452013-03-01 18:00:16 -06003138 m = kzalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07003139 if (m == NULL)
3140 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003141
Sage Weil31b80062009-10-06 11:31:13 -07003142 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003143 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003144 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003145
Alex Elder9516e452013-03-01 18:00:16 -06003146 INIT_LIST_HEAD(&m->list_head);
3147 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003148
Alex Elder43794502013-03-01 18:00:16 -06003149 ceph_msg_data_init(&m->p);
3150 ceph_msg_data_init(&m->l);
3151 ceph_msg_data_init(&m->b);
Alex Elder43794502013-03-01 18:00:16 -06003152
Sage Weil31b80062009-10-06 11:31:13 -07003153 /* front */
Alex Elder9516e452013-03-01 18:00:16 -06003154 m->front_max = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003155 if (front_len) {
3156 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003157 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07003158 PAGE_KERNEL);
3159 m->front_is_vmalloc = true;
3160 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003161 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003162 }
3163 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003164 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003165 front_len);
3166 goto out2;
3167 }
3168 } else {
3169 m->front.iov_base = NULL;
3170 }
3171 m->front.iov_len = front_len;
3172
Sage Weilbb257662010-04-01 16:07:23 -07003173 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003174 return m;
3175
3176out2:
3177 ceph_msg_put(m);
3178out:
Sage Weilb61c2762011-08-09 15:03:46 -07003179 if (!can_fail) {
3180 pr_err("msg_new can't create type %d front %d\n", type,
3181 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003182 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003183 } else {
3184 dout("msg_new can't create type %d front %d\n", type,
3185 front_len);
3186 }
Sage Weila79832f2010-04-01 16:06:19 -07003187 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003188}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003189EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003190
3191/*
Sage Weil31b80062009-10-06 11:31:13 -07003192 * Allocate "middle" portion of a message, if it is needed and wasn't
3193 * allocated by alloc_msg. This allows us to read a small fixed-size
3194 * per-type header in the front and then gracefully fail (i.e.,
3195 * propagate the error to the caller based on info in the front) when
3196 * the middle is too large.
3197 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003198static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003199{
3200 int type = le16_to_cpu(msg->hdr.type);
3201 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3202
3203 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3204 ceph_msg_type_name(type), middle_len);
3205 BUG_ON(!middle_len);
3206 BUG_ON(msg->middle);
3207
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003208 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003209 if (!msg->middle)
3210 return -ENOMEM;
3211 return 0;
3212}
3213
Yehuda Sadeh24504182010-01-08 13:58:34 -08003214/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003215 * Allocate a message for receiving an incoming message on a
3216 * connection, and save the result in con->in_msg. Uses the
3217 * connection's private alloc_msg op if available.
3218 *
Sage Weil4740a622012-07-30 18:19:30 -07003219 * Returns 0 on success, or a negative error code.
3220 *
3221 * On success, if we set *skip = 1:
3222 * - the next message should be skipped and ignored.
3223 * - con->in_msg == NULL
3224 * or if we set *skip = 0:
3225 * - con->in_msg is non-null.
3226 * On error (ENOMEM, EAGAIN, ...),
3227 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003228 */
Sage Weil4740a622012-07-30 18:19:30 -07003229static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003230{
Sage Weil4740a622012-07-30 18:19:30 -07003231 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003232 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003233 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003234 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003235
Alex Elder1c20f2d2012-06-04 14:43:32 -05003236 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003237 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003238
Alex Elder53ded492013-03-01 18:00:14 -06003239 mutex_unlock(&con->mutex);
3240 msg = con->ops->alloc_msg(con, hdr, skip);
3241 mutex_lock(&con->mutex);
3242 if (con->state != CON_STATE_OPEN) {
3243 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003244 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003245 return -EAGAIN;
3246 }
Alex Elder41375772013-03-05 09:25:10 -06003247 if (msg) {
3248 BUG_ON(*skip);
3249 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003250 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003251 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003252 } else {
3253 /*
3254 * Null message pointer means either we should skip
3255 * this message or we couldn't allocate memory. The
3256 * former is not an error.
3257 */
3258 if (*skip)
3259 return 0;
3260 con->error_msg = "error allocating memory for incoming message";
3261
Alex Elder53ded492013-03-01 18:00:14 -06003262 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003263 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003264 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003265
Alex Elder1c20f2d2012-06-04 14:43:32 -05003266 if (middle_len && !con->in_msg->middle) {
3267 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003268 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003269 ceph_msg_put(con->in_msg);
3270 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003271 }
3272 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003273
Sage Weil4740a622012-07-30 18:19:30 -07003274 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003275}
3276
Sage Weil31b80062009-10-06 11:31:13 -07003277
3278/*
3279 * Free a generically kmalloc'd message.
3280 */
3281void ceph_msg_kfree(struct ceph_msg *m)
3282{
3283 dout("msg_kfree %p\n", m);
3284 if (m->front_is_vmalloc)
3285 vfree(m->front.iov_base);
3286 else
3287 kfree(m->front.iov_base);
3288 kfree(m);
3289}
3290
3291/*
3292 * Drop a msg ref. Destroy as needed.
3293 */
Sage Weilc2e552e2009-12-07 15:55:05 -08003294void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003295{
Sage Weilc2e552e2009-12-07 15:55:05 -08003296 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07003297
Sage Weilc2e552e2009-12-07 15:55:05 -08003298 dout("ceph_msg_put last one on %p\n", m);
3299 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003300
Sage Weilc2e552e2009-12-07 15:55:05 -08003301 /* drop middle, data, if any */
3302 if (m->middle) {
3303 ceph_buffer_put(m->middle);
3304 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003305 }
Alex Elder97fb1c72013-03-01 18:00:16 -06003306 if (ceph_msg_has_pages(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003307 m->p.length = 0;
3308 m->p.pages = NULL;
Alex Elder97fb1c72013-03-01 18:00:16 -06003309 }
Sage Weilc2e552e2009-12-07 15:55:05 -08003310
Alex Elder97fb1c72013-03-01 18:00:16 -06003311 if (ceph_msg_has_pagelist(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003312 ceph_pagelist_release(m->l.pagelist);
3313 kfree(m->l.pagelist);
3314 m->l.pagelist = NULL;
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);