blob: 209990a853e5312403dea346f5668bd8d336fe8e [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 Heof363e452011-01-03 14:49:46 +0100248 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600249 if (ceph_msgr_wq)
250 return 0;
Alex 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 Eldera5bc3129a2012-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 Eldera5bc3129a2012-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 Elderdd236fc2013-03-06 23:39:39 -0600834 * For a pagelist, a piece is whatever remains to be consumed in the
835 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600836 */
Alex Elderdd236fc2013-03-06 23:39:39 -0600837static void ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data *data)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600838{
839 struct ceph_msg_data_cursor *cursor = &data->cursor;
840 struct ceph_pagelist *pagelist;
841 struct page *page;
842
Alex Elderdd236fc2013-03-06 23:39:39 -0600843 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600844
845 pagelist = data->pagelist;
846 BUG_ON(!pagelist);
847 if (!pagelist->length)
848 return; /* pagelist can be assigned but empty */
849
850 BUG_ON(list_empty(&pagelist->head));
851 page = list_first_entry(&pagelist->head, struct page, lru);
852
853 cursor->page = page;
854 cursor->offset = 0;
855 cursor->last_piece = pagelist->length <= PAGE_SIZE;
856}
857
Alex Elderdd236fc2013-03-06 23:39:39 -0600858static struct page *ceph_msg_data_pagelist_next(struct ceph_msg_data *data,
Alex Elderfe38a2b2013-03-06 23:39:39 -0600859 size_t *page_offset,
Alex Elderdd236fc2013-03-06 23:39:39 -0600860 size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600861{
862 struct ceph_msg_data_cursor *cursor = &data->cursor;
863 struct ceph_pagelist *pagelist;
864 size_t piece_end;
865
866 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
867
868 pagelist = data->pagelist;
869 BUG_ON(!pagelist);
870
871 BUG_ON(!cursor->page);
872 BUG_ON(cursor->offset >= pagelist->length);
873
Alex Elderdd236fc2013-03-06 23:39:39 -0600874 if (cursor->last_piece) {
Alex Elderfe38a2b2013-03-06 23:39:39 -0600875 /* pagelist offset is always 0 */
876 piece_end = pagelist->length & ~PAGE_MASK;
877 if (!piece_end)
878 piece_end = PAGE_SIZE;
879 } else {
880 piece_end = PAGE_SIZE;
881 }
882 *page_offset = cursor->offset & ~PAGE_MASK;
883 *length = piece_end - *page_offset;
884
885 return data->cursor.page;
886}
887
Alex Elderdd236fc2013-03-06 23:39:39 -0600888static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data *data,
889 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600890{
891 struct ceph_msg_data_cursor *cursor = &data->cursor;
892 struct ceph_pagelist *pagelist;
893
894 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
895
896 pagelist = data->pagelist;
897 BUG_ON(!pagelist);
898 BUG_ON(!cursor->page);
899 BUG_ON(cursor->offset + bytes > pagelist->length);
900 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
901
902 /* Advance the cursor offset */
903
904 cursor->offset += bytes;
905 /* pagelist offset is always 0 */
906 if (!bytes || cursor->offset & ~PAGE_MASK)
907 return false; /* more bytes to process in the current page */
908
909 /* Move on to the next page */
910
911 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
912 cursor->page = list_entry_next(cursor->page, lru);
913
914 /* cursor offset is at page boundary; pagelist offset is always 0 */
915 if (pagelist->length - cursor->offset <= PAGE_SIZE)
916 cursor->last_piece = true;
917
918 return true;
919}
920
Alex Elderdd236fc2013-03-06 23:39:39 -0600921/*
922 * Message data is handled (sent or received) in pieces, where each
923 * piece resides on a single page. The network layer might not
924 * consume an entire piece at once. A data item's cursor keeps
925 * track of which piece is next to process and how much remains to
926 * be processed in that piece. It also tracks whether the current
927 * piece is the last one in the data item.
928 */
929static void ceph_msg_data_cursor_init(struct ceph_msg_data *data)
930{
931 switch (data->type) {
932 case CEPH_MSG_DATA_PAGELIST:
933 ceph_msg_data_pagelist_cursor_init(data);
934 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600935#ifdef CONFIG_BLOCK
936 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -0600937 ceph_msg_data_bio_cursor_init(data);
938 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600939#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -0600940 case CEPH_MSG_DATA_NONE:
941 case CEPH_MSG_DATA_PAGES:
Alex Elderdd236fc2013-03-06 23:39:39 -0600942 default:
943 /* BUG(); */
944 break;
945 }
946}
947
948/*
949 * Return the page containing the next piece to process for a given
950 * data item, and supply the page offset and length of that piece.
951 * Indicate whether this is the last piece in this data item.
952 */
953static struct page *ceph_msg_data_next(struct ceph_msg_data *data,
954 size_t *page_offset,
955 size_t *length,
956 bool *last_piece)
957{
958 struct page *page;
959
960 switch (data->type) {
961 case CEPH_MSG_DATA_PAGELIST:
962 page = ceph_msg_data_pagelist_next(data, page_offset, length);
963 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600964#ifdef CONFIG_BLOCK
965 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -0600966 page = ceph_msg_data_bio_next(data, page_offset, length);
967 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600968#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -0600969 case CEPH_MSG_DATA_NONE:
970 case CEPH_MSG_DATA_PAGES:
Alex Elderdd236fc2013-03-06 23:39:39 -0600971 default:
972 page = NULL;
973 break;
974 }
975 BUG_ON(!page);
976 BUG_ON(*page_offset + *length > PAGE_SIZE);
977 BUG_ON(!*length);
978 if (last_piece)
979 *last_piece = data->cursor.last_piece;
980
981 return page;
982}
983
984/*
985 * Returns true if the result moves the cursor on to the next piece
986 * of the data item.
987 */
988static bool ceph_msg_data_advance(struct ceph_msg_data *data, size_t bytes)
989{
990 bool new_piece;
991
992 switch (data->type) {
993 case CEPH_MSG_DATA_PAGELIST:
994 new_piece = ceph_msg_data_pagelist_advance(data, bytes);
995 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600996#ifdef CONFIG_BLOCK
997 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -0600998 new_piece = ceph_msg_data_bio_advance(data, bytes);
999 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001000#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001001 case CEPH_MSG_DATA_NONE:
1002 case CEPH_MSG_DATA_PAGES:
Alex Elderdd236fc2013-03-06 23:39:39 -06001003 default:
1004 BUG();
1005 break;
1006 }
1007
1008 return new_piece;
1009}
1010
Alex Elder78625052013-03-06 23:39:39 -06001011static void prepare_message_data(struct ceph_msg *msg,
1012 struct ceph_msg_pos *msg_pos)
Alex Elder739c9052012-06-11 14:57:13 -05001013{
Alex Elder739c9052012-06-11 14:57:13 -05001014 BUG_ON(!msg);
1015 BUG_ON(!msg->hdr.data_len);
1016
1017 /* initialize page iterator */
Alex Elderbae6acd2013-03-06 23:39:38 -06001018 msg_pos->page = 0;
Alex Elder97fb1c72013-03-01 18:00:16 -06001019 if (ceph_msg_has_pages(msg))
Alex Elderf9e15772013-03-01 18:00:16 -06001020 msg_pos->page_pos = msg->p.alignment;
Alex Elder739c9052012-06-11 14:57:13 -05001021 else
Alex Elderbae6acd2013-03-06 23:39:38 -06001022 msg_pos->page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -05001023#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06001024 if (ceph_msg_has_bio(msg))
Alex Elderf9e15772013-03-01 18:00:16 -06001025 init_bio_iter(msg->b.bio, &msg->b.bio_iter, &msg->b.bio_seg);
Alex Elder572c5882012-06-11 14:57:13 -05001026#endif
Alex Elderbae6acd2013-03-06 23:39:38 -06001027 msg_pos->data_pos = 0;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001028
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001029 /* Initialize data cursors */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001030
Alex Elder6aaa4512013-03-06 23:39:39 -06001031#ifdef CONFIG_BLOCK
1032 if (ceph_msg_has_bio(msg))
1033 ceph_msg_data_cursor_init(&msg->b);
1034#endif /* CONFIG_BLOCK */
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001035 if (ceph_msg_has_pagelist(msg))
1036 ceph_msg_data_cursor_init(&msg->l);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001037 if (ceph_msg_has_trail(msg))
1038 ceph_msg_data_cursor_init(&msg->t);
1039
Alex Elderbae6acd2013-03-06 23:39:38 -06001040 msg_pos->did_page_crc = false;
Alex Elder739c9052012-06-11 14:57:13 -05001041}
1042
Sage Weil31b80062009-10-06 11:31:13 -07001043/*
1044 * Prepare footer for currently outgoing message, and finish things
1045 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1046 */
Alex Elder859eb792012-02-14 14:05:33 -06001047static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001048{
1049 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001050 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001051
Alex Elderfd154f32012-06-11 14:57:13 -05001052 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1053
Sage Weil31b80062009-10-06 11:31:13 -07001054 dout("prepare_write_message_footer %p\n", con);
1055 con->out_kvec_is_msg = true;
1056 con->out_kvec[v].iov_base = &m->footer;
1057 con->out_kvec[v].iov_len = sizeof(m->footer);
1058 con->out_kvec_bytes += sizeof(m->footer);
1059 con->out_kvec_left++;
1060 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001061 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001062}
1063
1064/*
1065 * Prepare headers for the next outgoing message.
1066 */
1067static void prepare_write_message(struct ceph_connection *con)
1068{
1069 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001070 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001071
Alex Eldere2200422012-05-23 14:35:23 -05001072 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001073 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001074 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001075
1076 /* Sneak an ack in there first? If we can get it into the same
1077 * TCP packet that's a good thing. */
1078 if (con->in_seq > con->in_seq_acked) {
1079 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001080 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001081 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001082 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001083 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001084 }
1085
Alex Elder38941f82012-06-01 14:56:43 -05001086 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001087 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001088 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001089 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001090
1091 /* put message on sent list */
1092 ceph_msg_get(m);
1093 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001094
Sage Weile84346b2010-05-11 21:20:38 -07001095 /*
1096 * only assign outgoing seq # if we haven't sent this message
1097 * yet. if it is requeued, resend with it's original seq.
1098 */
1099 if (m->needs_out_seq) {
1100 m->hdr.seq = cpu_to_le64(++con->out_seq);
1101 m->needs_out_seq = false;
1102 }
Sage Weil31b80062009-10-06 11:31:13 -07001103
Alex Elder4a73ef22013-03-07 15:38:26 -06001104 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d (%zd)\n",
Sage Weil31b80062009-10-06 11:31:13 -07001105 m, con->out_seq, le16_to_cpu(m->hdr.type),
1106 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elderf9e15772013-03-01 18:00:16 -06001107 le32_to_cpu(m->hdr.data_len), m->p.length);
Sage Weil31b80062009-10-06 11:31:13 -07001108 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1109
1110 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001111 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1112 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1113 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001114
Sage Weil31b80062009-10-06 11:31:13 -07001115 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001116 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001117 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001118
1119 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001120 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1121 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001122 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001123
1124 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1125 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1126 if (m->middle) {
1127 crc = crc32c(0, m->middle->vec.iov_base,
1128 m->middle->vec.iov_len);
1129 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1130 } else
Sage Weil31b80062009-10-06 11:31:13 -07001131 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001132 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001133 le32_to_cpu(con->out_msg->footer.front_crc),
1134 le32_to_cpu(con->out_msg->footer.middle_crc));
1135
1136 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001137 con->out_msg->footer.data_crc = 0;
Alex Elder78625052013-03-06 23:39:39 -06001138 if (m->hdr.data_len) {
1139 prepare_message_data(con->out_msg, &con->out_msg_pos);
1140 con->out_more = 1; /* data + footer will follow */
1141 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001142 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001143 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001144 }
Sage Weil31b80062009-10-06 11:31:13 -07001145
Alex Elderc9ffc772013-02-20 10:25:12 -06001146 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001147}
1148
1149/*
1150 * Prepare an ack.
1151 */
1152static void prepare_write_ack(struct ceph_connection *con)
1153{
1154 dout("prepare_write_ack %p %llu -> %llu\n", con,
1155 con->in_seq_acked, con->in_seq);
1156 con->in_seq_acked = con->in_seq;
1157
Alex Eldere2200422012-05-23 14:35:23 -05001158 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001159
Alex Eldere2200422012-05-23 14:35:23 -05001160 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001161
Sage Weil31b80062009-10-06 11:31:13 -07001162 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001163 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001164 &con->out_temp_ack);
1165
Sage Weil31b80062009-10-06 11:31:13 -07001166 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001167 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001168}
1169
1170/*
1171 * Prepare to write keepalive byte.
1172 */
1173static void prepare_write_keepalive(struct ceph_connection *con)
1174{
1175 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001176 con_out_kvec_reset(con);
1177 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001178 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001179}
1180
1181/*
1182 * Connection negotiation.
1183 */
1184
Alex Elderdac1e712012-05-16 15:16:39 -05001185static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1186 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001187{
Alex Eldera3530df2012-05-16 15:16:39 -05001188 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001189
1190 if (!con->ops->get_authorizer) {
1191 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1192 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001193 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001194 }
1195
1196 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001197 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001198 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001199 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001200
Alex Eldera3530df2012-05-16 15:16:39 -05001201 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001202 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001203 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001204 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001205
Alex Elder8f43fb52012-05-16 15:16:39 -05001206 con->auth_reply_buf = auth->authorizer_reply_buf;
1207 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001208 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001209}
1210
Sage Weil31b80062009-10-06 11:31:13 -07001211/*
1212 * We connected to a peer and are saying hello.
1213 */
Alex Eldere825a662012-05-16 15:16:38 -05001214static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001215{
Alex Eldere2200422012-05-23 14:35:23 -05001216 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1217 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001218 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001219
Sage Weileed0ef22009-11-10 14:34:36 -08001220 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001221 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001222}
1223
Alex Eldere825a662012-05-16 15:16:38 -05001224static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001225{
Eric Dumazet95c96172012-04-15 05:58:06 +00001226 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001227 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001228 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001229 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001230
1231 switch (con->peer_name.type) {
1232 case CEPH_ENTITY_TYPE_MON:
1233 proto = CEPH_MONC_PROTOCOL;
1234 break;
1235 case CEPH_ENTITY_TYPE_OSD:
1236 proto = CEPH_OSDC_PROTOCOL;
1237 break;
1238 case CEPH_ENTITY_TYPE_MDS:
1239 proto = CEPH_MDSC_PROTOCOL;
1240 break;
1241 default:
1242 BUG();
1243 }
1244
1245 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1246 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001247
Alex Eldere825a662012-05-16 15:16:38 -05001248 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001249 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1250 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1251 con->out_connect.global_seq = cpu_to_le32(global_seq);
1252 con->out_connect.protocol_version = cpu_to_le32(proto);
1253 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001254
Alex Elderdac1e712012-05-16 15:16:39 -05001255 auth_proto = CEPH_AUTH_UNKNOWN;
1256 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001257 if (IS_ERR(auth))
1258 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001259
Alex Elderdac1e712012-05-16 15:16:39 -05001260 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001261 con->out_connect.authorizer_len = auth ?
1262 cpu_to_le32(auth->authorizer_buf_len) : 0;
1263
Alex Eldere2200422012-05-23 14:35:23 -05001264 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001265 &con->out_connect);
1266 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001267 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001268 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001269
Sage Weil31b80062009-10-06 11:31:13 -07001270 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001271 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001272
Alex Eldere10c7582012-05-16 15:16:38 -05001273 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001274}
1275
Sage Weil31b80062009-10-06 11:31:13 -07001276/*
1277 * write as much of pending kvecs to the socket as we can.
1278 * 1 -> done
1279 * 0 -> socket full, but more to do
1280 * <0 -> error
1281 */
1282static int write_partial_kvec(struct ceph_connection *con)
1283{
1284 int ret;
1285
1286 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1287 while (con->out_kvec_bytes > 0) {
1288 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1289 con->out_kvec_left, con->out_kvec_bytes,
1290 con->out_more);
1291 if (ret <= 0)
1292 goto out;
1293 con->out_kvec_bytes -= ret;
1294 if (con->out_kvec_bytes == 0)
1295 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001296
1297 /* account for full iov entries consumed */
1298 while (ret >= con->out_kvec_cur->iov_len) {
1299 BUG_ON(!con->out_kvec_left);
1300 ret -= con->out_kvec_cur->iov_len;
1301 con->out_kvec_cur++;
1302 con->out_kvec_left--;
1303 }
1304 /* and for a partially-consumed entry */
1305 if (ret) {
1306 con->out_kvec_cur->iov_len -= ret;
1307 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001308 }
1309 }
1310 con->out_kvec_left = 0;
1311 con->out_kvec_is_msg = false;
1312 ret = 1;
1313out:
1314 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1315 con->out_kvec_bytes, con->out_kvec_left, ret);
1316 return ret; /* done! */
1317}
1318
Alex Elder84ca8fc2012-06-11 14:57:13 -05001319static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
1320 size_t len, size_t sent, bool in_trail)
1321{
1322 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001323 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001324 bool need_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001325
1326 BUG_ON(!msg);
1327 BUG_ON(!sent);
1328
Alex Elderbae6acd2013-03-06 23:39:38 -06001329 msg_pos->data_pos += sent;
1330 msg_pos->page_pos += sent;
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001331 if (in_trail)
Alex Elderfe38a2b2013-03-06 23:39:39 -06001332 need_crc = ceph_msg_data_advance(&msg->t, sent);
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001333 else if (ceph_msg_has_pagelist(msg))
1334 need_crc = ceph_msg_data_advance(&msg->l, sent);
Alex Elder6aaa4512013-03-06 23:39:39 -06001335#ifdef CONFIG_BLOCK
1336 else if (ceph_msg_has_bio(msg))
1337 need_crc = ceph_msg_data_advance(&msg->b, sent);
1338#endif /* CONFIG_BLOCK */
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001339 BUG_ON(need_crc && sent != len);
1340
Alex Elder5821bd82012-06-11 14:57:13 -05001341 if (sent < len)
1342 return;
1343
1344 BUG_ON(sent != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001345 msg_pos->page_pos = 0;
1346 msg_pos->page++;
1347 msg_pos->did_page_crc = false;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001348}
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001349
Alex Eldere7881822013-03-08 18:51:04 -06001350static void in_msg_pos_next(struct ceph_connection *con, size_t len,
1351 size_t received)
1352{
1353 struct ceph_msg *msg = con->in_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001354 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Eldere7881822013-03-08 18:51:04 -06001355
1356 BUG_ON(!msg);
1357 BUG_ON(!received);
1358
Alex Elderbae6acd2013-03-06 23:39:38 -06001359 msg_pos->data_pos += received;
1360 msg_pos->page_pos += received;
Alex Eldere7881822013-03-08 18:51:04 -06001361 if (received < len)
1362 return;
1363
1364 BUG_ON(received != len);
Alex Elderbae6acd2013-03-06 23:39:38 -06001365 msg_pos->page_pos = 0;
1366 msg_pos->page++;
Alex Eldere7881822013-03-08 18:51:04 -06001367#ifdef CONFIG_BLOCK
Alex Elderf9e15772013-03-01 18:00:16 -06001368 if (msg->b.bio)
1369 iter_bio_next(&msg->b.bio_iter, &msg->b.bio_seg);
Alex Eldere7881822013-03-08 18:51:04 -06001370#endif /* CONFIG_BLOCK */
1371}
1372
Alex Elder35b62802013-03-08 20:59:00 -06001373static u32 ceph_crc32c_page(u32 crc, struct page *page,
1374 unsigned int page_offset,
1375 unsigned int length)
1376{
1377 char *kaddr;
1378
1379 kaddr = kmap(page);
1380 BUG_ON(kaddr == NULL);
1381 crc = crc32c(crc, kaddr + page_offset, length);
1382 kunmap(page);
1383
1384 return crc;
1385}
Sage Weil31b80062009-10-06 11:31:13 -07001386/*
1387 * Write as much message data payload as we can. If we finish, queue
1388 * up the footer.
1389 * 1 -> done, footer is now queued in out_kvec[].
1390 * 0 -> socket full, but more to do
1391 * <0 -> error
1392 */
Alex Elder34d2d202013-03-08 20:58:59 -06001393static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001394{
1395 struct ceph_msg *msg = con->out_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06001396 struct ceph_msg_pos *msg_pos = &con->out_msg_pos;
Eric Dumazet95c96172012-04-15 05:58:06 +00001397 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Alex Elder37675b02012-03-07 11:40:08 -06001398 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07001399 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001400 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001401 bool in_trail = false;
Alex Elder97fb1c72013-03-01 18:00:16 -06001402 size_t trail_len = 0;
1403 size_t trail_off = data_len;
1404
1405 if (ceph_msg_has_trail(msg)) {
Alex Elder43794502013-03-01 18:00:16 -06001406 trail_len = msg->t.pagelist->length;
Alex Elder97fb1c72013-03-01 18:00:16 -06001407 trail_off -= trail_len;
1408 }
Sage Weil31b80062009-10-06 11:31:13 -07001409
Alex Elder34d2d202013-03-08 20:58:59 -06001410 dout("%s %p msg %p page %d offset %d\n", __func__,
Alex Elderbae6acd2013-03-06 23:39:38 -06001411 con, msg, msg_pos->page, msg_pos->page_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001412
Alex Elder5821bd82012-06-11 14:57:13 -05001413 /*
1414 * Iterate through each page that contains data to be
1415 * written, and send as much as possible for each.
1416 *
1417 * If we are calculating the data crc (the default), we will
1418 * need to map the page. If we have no pages, they have
1419 * been revoked, so use the zero page.
1420 */
Alex Elderbae6acd2013-03-06 23:39:38 -06001421 while (data_len > msg_pos->data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001422 struct page *page = NULL;
Alex Eldere387d522013-03-06 23:39:38 -06001423 size_t page_offset;
1424 size_t length;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001425 bool use_cursor = false;
1426 bool last_piece = true; /* preserve existing behavior */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001427
Alex Elderbae6acd2013-03-06 23:39:38 -06001428 in_trail = in_trail || msg_pos->data_pos >= trail_off;
Alex Elder5821bd82012-06-11 14:57:13 -05001429 if (!in_trail)
Alex Elderbae6acd2013-03-06 23:39:38 -06001430 total_max_write = trail_off - msg_pos->data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001431
Alex Elder5821bd82012-06-11 14:57:13 -05001432 if (in_trail) {
Alex Elder97fb1c72013-03-01 18:00:16 -06001433 BUG_ON(!ceph_msg_has_trail(msg));
Alex Elderfe38a2b2013-03-06 23:39:39 -06001434 use_cursor = true;
1435 page = ceph_msg_data_next(&msg->t, &page_offset,
1436 &length, &last_piece);
Alex Elder97fb1c72013-03-01 18:00:16 -06001437 } else if (ceph_msg_has_pages(msg)) {
Alex Elderf9e15772013-03-01 18:00:16 -06001438 page = msg->p.pages[msg_pos->page];
Alex Elder97fb1c72013-03-01 18:00:16 -06001439 } else if (ceph_msg_has_pagelist(msg)) {
Alex Elder7fe1e5e2013-03-06 23:39:39 -06001440 use_cursor = true;
1441 page = ceph_msg_data_next(&msg->l, &page_offset,
1442 &length, &last_piece);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001443#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06001444 } else if (ceph_msg_has_bio(msg)) {
Alex Elder6aaa4512013-03-06 23:39:39 -06001445 use_cursor = true;
1446 page = ceph_msg_data_next(&msg->b, &page_offset,
1447 &length, &last_piece);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001448#endif
Sage Weil31b80062009-10-06 11:31:13 -07001449 } else {
Alex Elder57666512012-01-23 15:49:27 -06001450 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001451 }
Alex Elder6aaa4512013-03-06 23:39:39 -06001452 if (!use_cursor) {
1453 length = min_t(int, PAGE_SIZE - msg_pos->page_pos,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001454 total_max_write);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001455
Alex Elder6aaa4512013-03-06 23:39:39 -06001456 page_offset = msg_pos->page_pos;
1457 }
Alex Elderbae6acd2013-03-06 23:39:38 -06001458 if (do_datacrc && !msg_pos->did_page_crc) {
Alex Elder5821bd82012-06-11 14:57:13 -05001459 u32 crc = le32_to_cpu(msg->footer.data_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001460
Alex Elder35b62802013-03-08 20:59:00 -06001461 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001462 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbae6acd2013-03-06 23:39:38 -06001463 msg_pos->did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001464 }
Alex Eldere387d522013-03-06 23:39:38 -06001465 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001466 length, last_piece);
Sage Weil31b80062009-10-06 11:31:13 -07001467 if (ret <= 0)
1468 goto out;
1469
Alex Eldere387d522013-03-06 23:39:38 -06001470 out_msg_pos_next(con, page, length, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001471 }
1472
Alex Elder34d2d202013-03-08 20:58:59 -06001473 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001474
1475 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001476 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001477 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001478 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001479 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001480 ret = 1;
1481out:
1482 return ret;
1483}
1484
1485/*
1486 * write some zeros
1487 */
1488static int write_partial_skip(struct ceph_connection *con)
1489{
1490 int ret;
1491
1492 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001493 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001494
Alex Eldere1dcb122013-03-06 23:39:38 -06001495 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001496 if (ret <= 0)
1497 goto out;
1498 con->out_skip -= ret;
1499 }
1500 ret = 1;
1501out:
1502 return ret;
1503}
1504
1505/*
1506 * Prepare to read connection handshake, or an ack.
1507 */
Sage Weileed0ef22009-11-10 14:34:36 -08001508static void prepare_read_banner(struct ceph_connection *con)
1509{
1510 dout("prepare_read_banner %p\n", con);
1511 con->in_base_pos = 0;
1512}
1513
Sage Weil31b80062009-10-06 11:31:13 -07001514static void prepare_read_connect(struct ceph_connection *con)
1515{
1516 dout("prepare_read_connect %p\n", con);
1517 con->in_base_pos = 0;
1518}
1519
1520static void prepare_read_ack(struct ceph_connection *con)
1521{
1522 dout("prepare_read_ack %p\n", con);
1523 con->in_base_pos = 0;
1524}
1525
1526static void prepare_read_tag(struct ceph_connection *con)
1527{
1528 dout("prepare_read_tag %p\n", con);
1529 con->in_base_pos = 0;
1530 con->in_tag = CEPH_MSGR_TAG_READY;
1531}
1532
1533/*
1534 * Prepare to read a message.
1535 */
1536static int prepare_read_message(struct ceph_connection *con)
1537{
1538 dout("prepare_read_message %p\n", con);
1539 BUG_ON(con->in_msg != NULL);
1540 con->in_base_pos = 0;
1541 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1542 return 0;
1543}
1544
1545
1546static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001547 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001548{
Alex Eldere6cee712012-05-10 10:29:50 -05001549 while (con->in_base_pos < end) {
1550 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001551 int have = size - left;
1552 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1553 if (ret <= 0)
1554 return ret;
1555 con->in_base_pos += ret;
1556 }
1557 return 1;
1558}
1559
1560
1561/*
1562 * Read all or part of the connect-side handshake on a new connection
1563 */
Sage Weileed0ef22009-11-10 14:34:36 -08001564static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001565{
Alex Elderfd516532012-05-10 10:29:50 -05001566 int size;
1567 int end;
1568 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001569
Sage Weileed0ef22009-11-10 14:34:36 -08001570 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001571
1572 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001573 size = strlen(CEPH_BANNER);
1574 end = size;
1575 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001576 if (ret <= 0)
1577 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001578
1579 size = sizeof (con->actual_peer_addr);
1580 end += size;
1581 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001582 if (ret <= 0)
1583 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001584
1585 size = sizeof (con->peer_addr_for_me);
1586 end += size;
1587 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001588 if (ret <= 0)
1589 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001590
Sage Weileed0ef22009-11-10 14:34:36 -08001591out:
1592 return ret;
1593}
1594
1595static int read_partial_connect(struct ceph_connection *con)
1596{
Alex Elderfd516532012-05-10 10:29:50 -05001597 int size;
1598 int end;
1599 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001600
1601 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1602
Alex Elderfd516532012-05-10 10:29:50 -05001603 size = sizeof (con->in_reply);
1604 end = size;
1605 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001606 if (ret <= 0)
1607 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001608
1609 size = le32_to_cpu(con->in_reply.authorizer_len);
1610 end += size;
1611 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001612 if (ret <= 0)
1613 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001614
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001615 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1616 con, (int)con->in_reply.tag,
1617 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001618 le32_to_cpu(con->in_reply.global_seq));
1619out:
1620 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001621
Sage Weil31b80062009-10-06 11:31:13 -07001622}
1623
1624/*
1625 * Verify the hello banner looks okay.
1626 */
1627static int verify_hello(struct ceph_connection *con)
1628{
1629 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001630 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001631 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001632 con->error_msg = "protocol error, bad banner";
1633 return -1;
1634 }
1635 return 0;
1636}
1637
1638static bool addr_is_blank(struct sockaddr_storage *ss)
1639{
1640 switch (ss->ss_family) {
1641 case AF_INET:
1642 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1643 case AF_INET6:
1644 return
1645 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1646 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1647 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1648 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1649 }
1650 return false;
1651}
1652
1653static int addr_port(struct sockaddr_storage *ss)
1654{
1655 switch (ss->ss_family) {
1656 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001657 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001658 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001659 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001660 }
1661 return 0;
1662}
1663
1664static void addr_set_port(struct sockaddr_storage *ss, int p)
1665{
1666 switch (ss->ss_family) {
1667 case AF_INET:
1668 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001669 break;
Sage Weil31b80062009-10-06 11:31:13 -07001670 case AF_INET6:
1671 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001672 break;
Sage Weil31b80062009-10-06 11:31:13 -07001673 }
1674}
1675
1676/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001677 * Unlike other *_pton function semantics, zero indicates success.
1678 */
1679static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1680 char delim, const char **ipend)
1681{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001682 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1683 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001684
1685 memset(ss, 0, sizeof(*ss));
1686
1687 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1688 ss->ss_family = AF_INET;
1689 return 0;
1690 }
1691
1692 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1693 ss->ss_family = AF_INET6;
1694 return 0;
1695 }
1696
1697 return -EINVAL;
1698}
1699
1700/*
1701 * Extract hostname string and resolve using kernel DNS facility.
1702 */
1703#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1704static int ceph_dns_resolve_name(const char *name, size_t namelen,
1705 struct sockaddr_storage *ss, char delim, const char **ipend)
1706{
1707 const char *end, *delim_p;
1708 char *colon_p, *ip_addr = NULL;
1709 int ip_len, ret;
1710
1711 /*
1712 * The end of the hostname occurs immediately preceding the delimiter or
1713 * the port marker (':') where the delimiter takes precedence.
1714 */
1715 delim_p = memchr(name, delim, namelen);
1716 colon_p = memchr(name, ':', namelen);
1717
1718 if (delim_p && colon_p)
1719 end = delim_p < colon_p ? delim_p : colon_p;
1720 else if (!delim_p && colon_p)
1721 end = colon_p;
1722 else {
1723 end = delim_p;
1724 if (!end) /* case: hostname:/ */
1725 end = name + namelen;
1726 }
1727
1728 if (end <= name)
1729 return -EINVAL;
1730
1731 /* do dns_resolve upcall */
1732 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1733 if (ip_len > 0)
1734 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1735 else
1736 ret = -ESRCH;
1737
1738 kfree(ip_addr);
1739
1740 *ipend = end;
1741
1742 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1743 ret, ret ? "failed" : ceph_pr_addr(ss));
1744
1745 return ret;
1746}
1747#else
1748static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1749 struct sockaddr_storage *ss, char delim, const char **ipend)
1750{
1751 return -EINVAL;
1752}
1753#endif
1754
1755/*
1756 * Parse a server name (IP or hostname). If a valid IP address is not found
1757 * then try to extract a hostname to resolve using userspace DNS upcall.
1758 */
1759static int ceph_parse_server_name(const char *name, size_t namelen,
1760 struct sockaddr_storage *ss, char delim, const char **ipend)
1761{
1762 int ret;
1763
1764 ret = ceph_pton(name, namelen, ss, delim, ipend);
1765 if (ret)
1766 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1767
1768 return ret;
1769}
1770
1771/*
Sage Weil31b80062009-10-06 11:31:13 -07001772 * Parse an ip[:port] list into an addr array. Use the default
1773 * monitor port if a port isn't specified.
1774 */
1775int ceph_parse_ips(const char *c, const char *end,
1776 struct ceph_entity_addr *addr,
1777 int max_count, int *count)
1778{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001779 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001780 const char *p = c;
1781
1782 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1783 for (i = 0; i < max_count; i++) {
1784 const char *ipend;
1785 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001786 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001787 char delim = ',';
1788
1789 if (*p == '[') {
1790 delim = ']';
1791 p++;
1792 }
Sage Weil31b80062009-10-06 11:31:13 -07001793
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001794 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1795 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001796 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001797 ret = -EINVAL;
1798
Sage Weil31b80062009-10-06 11:31:13 -07001799 p = ipend;
1800
Sage Weil39139f62010-07-08 09:54:52 -07001801 if (delim == ']') {
1802 if (*p != ']') {
1803 dout("missing matching ']'\n");
1804 goto bad;
1805 }
1806 p++;
1807 }
1808
Sage Weil31b80062009-10-06 11:31:13 -07001809 /* port? */
1810 if (p < end && *p == ':') {
1811 port = 0;
1812 p++;
1813 while (p < end && *p >= '0' && *p <= '9') {
1814 port = (port * 10) + (*p - '0');
1815 p++;
1816 }
1817 if (port > 65535 || port == 0)
1818 goto bad;
1819 } else {
1820 port = CEPH_MON_PORT;
1821 }
1822
1823 addr_set_port(ss, port);
1824
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001825 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001826
1827 if (p == end)
1828 break;
1829 if (*p != ',')
1830 goto bad;
1831 p++;
1832 }
1833
1834 if (p != end)
1835 goto bad;
1836
1837 if (count)
1838 *count = i + 1;
1839 return 0;
1840
1841bad:
Sage Weil39139f62010-07-08 09:54:52 -07001842 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001843 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001844}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001845EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001846
Sage Weileed0ef22009-11-10 14:34:36 -08001847static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001848{
Sage Weileed0ef22009-11-10 14:34:36 -08001849 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001850
1851 if (verify_hello(con) < 0)
1852 return -1;
1853
Sage Weil63f2d212009-11-03 15:17:56 -08001854 ceph_decode_addr(&con->actual_peer_addr);
1855 ceph_decode_addr(&con->peer_addr_for_me);
1856
Sage Weil31b80062009-10-06 11:31:13 -07001857 /*
1858 * Make sure the other end is who we wanted. note that the other
1859 * end may not yet know their ip address, so if it's 0.0.0.0, give
1860 * them the benefit of the doubt.
1861 */
Sage Weil103e2d32010-01-07 16:12:36 -08001862 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1863 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001864 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1865 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001866 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001867 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001868 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001869 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001870 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001871 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001872 return -1;
1873 }
1874
1875 /*
1876 * did we learn our address?
1877 */
1878 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1879 int port = addr_port(&con->msgr->inst.addr.in_addr);
1880
1881 memcpy(&con->msgr->inst.addr.in_addr,
1882 &con->peer_addr_for_me.in_addr,
1883 sizeof(con->peer_addr_for_me.in_addr));
1884 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001885 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001886 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001887 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001888 }
1889
Sage Weileed0ef22009-11-10 14:34:36 -08001890 return 0;
1891}
1892
1893static int process_connect(struct ceph_connection *con)
1894{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001895 u64 sup_feat = con->msgr->supported_features;
1896 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001897 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001898 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001899
Sage Weileed0ef22009-11-10 14:34:36 -08001900 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1901
Sage Weil31b80062009-10-06 11:31:13 -07001902 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001903 case CEPH_MSGR_TAG_FEATURES:
1904 pr_err("%s%lld %s feature set mismatch,"
1905 " my %llx < server's %llx, missing %llx\n",
1906 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001907 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001908 sup_feat, server_feat, server_feat & ~sup_feat);
1909 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001910 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001911 return -1;
1912
Sage Weil31b80062009-10-06 11:31:13 -07001913 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001914 pr_err("%s%lld %s protocol version mismatch,"
1915 " my %d != server's %d\n",
1916 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001917 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001918 le32_to_cpu(con->out_connect.protocol_version),
1919 le32_to_cpu(con->in_reply.protocol_version));
1920 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001921 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001922 return -1;
1923
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001924 case CEPH_MSGR_TAG_BADAUTHORIZER:
1925 con->auth_retry++;
1926 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1927 con->auth_retry);
1928 if (con->auth_retry == 2) {
1929 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001930 return -1;
1931 }
1932 con->auth_retry = 1;
Jim Schutt6d4221b2012-08-10 10:37:38 -07001933 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001934 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001935 if (ret < 0)
1936 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001937 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001938 break;
Sage Weil31b80062009-10-06 11:31:13 -07001939
1940 case CEPH_MSGR_TAG_RESETSESSION:
1941 /*
1942 * If we connected with a large connect_seq but the peer
1943 * has no record of a session with us (no connection, or
1944 * connect_seq == 0), they will send RESETSESION to indicate
1945 * that they must have reset their session, and may have
1946 * dropped messages.
1947 */
1948 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07001949 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001950 pr_err("%s%lld %s connection reset\n",
1951 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001952 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001953 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001954 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001955 ret = prepare_write_connect(con);
1956 if (ret < 0)
1957 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001958 prepare_read_connect(con);
1959
1960 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001961 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001962 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1963 if (con->ops->peer_reset)
1964 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001965 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07001966 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07001967 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001968 break;
1969
1970 case CEPH_MSGR_TAG_RETRY_SESSION:
1971 /*
1972 * If we sent a smaller connect_seq than the peer has, try
1973 * again with a larger value.
1974 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07001975 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001976 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07001977 le32_to_cpu(con->in_reply.connect_seq));
1978 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001979 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001980 ret = prepare_write_connect(con);
1981 if (ret < 0)
1982 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001983 prepare_read_connect(con);
1984 break;
1985
1986 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1987 /*
1988 * If we sent a smaller global_seq than the peer has, try
1989 * again with a larger value.
1990 */
Sage Weileed0ef22009-11-10 14:34:36 -08001991 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001992 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001993 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001994 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001995 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07001996 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001997 ret = prepare_write_connect(con);
1998 if (ret < 0)
1999 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002000 prepare_read_connect(con);
2001 break;
2002
2003 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002004 if (req_feat & ~server_feat) {
2005 pr_err("%s%lld %s protocol feature mismatch,"
2006 " my required %llx > server's %llx, need %llx\n",
2007 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002008 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002009 req_feat, server_feat, req_feat & ~server_feat);
2010 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002011 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002012 return -1;
2013 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002014
Alex Elder122070a2012-12-26 10:43:57 -06002015 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002016 con->state = CON_STATE_OPEN;
2017
Sage Weil31b80062009-10-06 11:31:13 -07002018 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2019 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002020 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002021 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2022 con->peer_global_seq,
2023 le32_to_cpu(con->in_reply.connect_seq),
2024 con->connect_seq);
2025 WARN_ON(con->connect_seq !=
2026 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002027
2028 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002029 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002030
Sage Weil85effe12012-07-30 16:22:05 -07002031 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002032
2033 prepare_read_tag(con);
2034 break;
2035
2036 case CEPH_MSGR_TAG_WAIT:
2037 /*
2038 * If there is a connection race (we are opening
2039 * connections to each other), one of us may just have
2040 * to WAIT. This shouldn't happen if we are the
2041 * client.
2042 */
Sage Weil04177882011-05-12 15:33:17 -07002043 pr_err("process_connect got WAIT as client\n");
2044 con->error_msg = "protocol error, got WAIT as client";
2045 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002046
2047 default:
2048 pr_err("connect protocol error, will retry\n");
2049 con->error_msg = "protocol error, garbage tag during connect";
2050 return -1;
2051 }
2052 return 0;
2053}
2054
2055
2056/*
2057 * read (part of) an ack
2058 */
2059static int read_partial_ack(struct ceph_connection *con)
2060{
Alex Elderfd516532012-05-10 10:29:50 -05002061 int size = sizeof (con->in_temp_ack);
2062 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002063
Alex Elderfd516532012-05-10 10:29:50 -05002064 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002065}
2066
2067
2068/*
2069 * We can finally discard anything that's been acked.
2070 */
2071static void process_ack(struct ceph_connection *con)
2072{
2073 struct ceph_msg *m;
2074 u64 ack = le64_to_cpu(con->in_temp_ack);
2075 u64 seq;
2076
Sage Weil31b80062009-10-06 11:31:13 -07002077 while (!list_empty(&con->out_sent)) {
2078 m = list_first_entry(&con->out_sent, struct ceph_msg,
2079 list_head);
2080 seq = le64_to_cpu(m->hdr.seq);
2081 if (seq > ack)
2082 break;
2083 dout("got ack for seq %llu type %d at %p\n", seq,
2084 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002085 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002086 ceph_msg_remove(m);
2087 }
Sage Weil31b80062009-10-06 11:31:13 -07002088 prepare_read_tag(con);
2089}
2090
2091
2092
2093
Yehuda Sadeh24504182010-01-08 13:58:34 -08002094static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002095 struct kvec *section,
2096 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002097{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002098 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002099
Yehuda Sadeh24504182010-01-08 13:58:34 -08002100 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002101
Yehuda Sadeh24504182010-01-08 13:58:34 -08002102 while (section->iov_len < sec_len) {
2103 BUG_ON(section->iov_base == NULL);
2104 left = sec_len - section->iov_len;
2105 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2106 section->iov_len, left);
2107 if (ret <= 0)
2108 return ret;
2109 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002110 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002111 if (section->iov_len == sec_len)
2112 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002113
2114 return 1;
2115}
2116
Sage Weil4740a622012-07-30 18:19:30 -07002117static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002118
2119static int read_partial_message_pages(struct ceph_connection *con,
2120 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00002121 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002122{
Alex Elderbae6acd2013-03-06 23:39:38 -06002123 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Eldere7881822013-03-08 18:51:04 -06002124 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002125 size_t page_offset;
2126 size_t length;
2127 unsigned int left;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002128 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002129
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002130 /* (page) data */
2131 BUG_ON(pages == NULL);
Alex Elderbae6acd2013-03-06 23:39:38 -06002132 page = pages[msg_pos->page];
Alex Elderafb3d902013-03-08 20:58:59 -06002133 page_offset = msg_pos->page_pos;
2134 BUG_ON(msg_pos->data_pos >= data_len);
2135 left = data_len - msg_pos->data_pos;
2136 BUG_ON(page_offset >= PAGE_SIZE);
2137 length = min_t(unsigned int, PAGE_SIZE - page_offset, left);
2138
2139 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002140 if (ret <= 0)
2141 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002142
Alex Elder35b62802013-03-08 20:59:00 -06002143 if (do_datacrc)
2144 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2145 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002146
2147 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002148
2149 return ret;
2150}
2151
2152#ifdef CONFIG_BLOCK
2153static int read_partial_message_bio(struct ceph_connection *con,
Eric Dumazet95c96172012-04-15 05:58:06 +00002154 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002155{
Alex Elderb3d56fa2013-03-08 18:51:03 -06002156 struct ceph_msg *msg = con->in_msg;
Alex Elderbae6acd2013-03-06 23:39:38 -06002157 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
Alex Elderb3d56fa2013-03-08 18:51:03 -06002158 struct bio_vec *bv;
Alex Eldere7881822013-03-08 18:51:04 -06002159 struct page *page;
Alex Elderafb3d902013-03-08 20:58:59 -06002160 size_t page_offset;
2161 size_t length;
2162 unsigned int left;
2163 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002164
Alex Elderb3d56fa2013-03-08 18:51:03 -06002165 BUG_ON(!msg);
Alex Elderf9e15772013-03-01 18:00:16 -06002166 BUG_ON(!msg->b.bio_iter);
2167 bv = bio_iovec_idx(msg->b.bio_iter, msg->b.bio_seg);
Alex Eldere7881822013-03-08 18:51:04 -06002168 page = bv->bv_page;
Alex Elderafb3d902013-03-08 20:58:59 -06002169 page_offset = bv->bv_offset + msg_pos->page_pos;
2170 BUG_ON(msg_pos->data_pos >= data_len);
2171 left = data_len - msg_pos->data_pos;
2172 BUG_ON(msg_pos->page_pos >= bv->bv_len);
2173 length = min_t(unsigned int, bv->bv_len - msg_pos->page_pos, left);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002174
Alex Elderafb3d902013-03-08 20:58:59 -06002175 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002176 if (ret <= 0)
2177 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06002178
Alex Elder35b62802013-03-08 20:59:00 -06002179 if (do_datacrc)
2180 con->in_data_crc = ceph_crc32c_page(con->in_data_crc, page,
2181 page_offset, ret);
Alex Elderafb3d902013-03-08 20:58:59 -06002182
2183 in_msg_pos_next(con, length, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002184
2185 return ret;
2186}
2187#endif
2188
Alex Elder34d2d202013-03-08 20:58:59 -06002189static int read_partial_msg_data(struct ceph_connection *con)
2190{
2191 struct ceph_msg *msg = con->in_msg;
2192 struct ceph_msg_pos *msg_pos = &con->in_msg_pos;
2193 const bool do_datacrc = !con->msgr->nocrc;
2194 unsigned int data_len;
2195 int ret;
2196
2197 BUG_ON(!msg);
2198
2199 data_len = le32_to_cpu(con->in_hdr.data_len);
2200 while (msg_pos->data_pos < data_len) {
Alex Elder97fb1c72013-03-01 18:00:16 -06002201 if (ceph_msg_has_pages(msg)) {
Alex Elderf9e15772013-03-01 18:00:16 -06002202 ret = read_partial_message_pages(con, msg->p.pages,
Alex Elder34d2d202013-03-08 20:58:59 -06002203 data_len, do_datacrc);
2204 if (ret <= 0)
2205 return ret;
2206#ifdef CONFIG_BLOCK
Alex Elder97fb1c72013-03-01 18:00:16 -06002207 } else if (ceph_msg_has_bio(msg)) {
Alex Elder34d2d202013-03-08 20:58:59 -06002208 ret = read_partial_message_bio(con,
2209 data_len, do_datacrc);
2210 if (ret <= 0)
2211 return ret;
2212#endif
2213 } else {
2214 BUG_ON(1);
2215 }
2216 }
2217
2218 return 1; /* must return > 0 to indicate success */
2219}
2220
Sage Weil31b80062009-10-06 11:31:13 -07002221/*
2222 * read (part of) a message.
2223 */
2224static int read_partial_message(struct ceph_connection *con)
2225{
2226 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002227 int size;
2228 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002229 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002230 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002231 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07002232 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002233 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002234
2235 dout("read_partial_message con %p msg %p\n", con, m);
2236
2237 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002238 size = sizeof (con->in_hdr);
2239 end = size;
2240 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002241 if (ret <= 0)
2242 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002243
2244 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2245 if (cpu_to_le32(crc) != con->in_hdr.crc) {
2246 pr_err("read_partial_message bad hdr "
2247 " crc %u != expected %u\n",
2248 crc, con->in_hdr.crc);
2249 return -EBADMSG;
2250 }
2251
Sage Weil31b80062009-10-06 11:31:13 -07002252 front_len = le32_to_cpu(con->in_hdr.front_len);
2253 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2254 return -EIO;
2255 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002256 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002257 return -EIO;
2258 data_len = le32_to_cpu(con->in_hdr.data_len);
2259 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2260 return -EIO;
2261
Sage Weilae187562010-04-22 07:47:01 -07002262 /* verify seq# */
2263 seq = le64_to_cpu(con->in_hdr.seq);
2264 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002265 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002266 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002267 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002268 seq, con->in_seq + 1);
2269 con->in_base_pos = -front_len - middle_len - data_len -
2270 sizeof(m->footer);
2271 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002272 return 0;
2273 } else if ((s64)seq - (s64)con->in_seq > 1) {
2274 pr_err("read_partial_message bad seq %lld expected %lld\n",
2275 seq, con->in_seq + 1);
2276 con->error_msg = "bad message sequence # for incoming message";
2277 return -EBADMSG;
2278 }
2279
Sage Weil31b80062009-10-06 11:31:13 -07002280 /* allocate message? */
2281 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002282 int skip = 0;
2283
Sage Weil31b80062009-10-06 11:31:13 -07002284 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002285 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002286 ret = ceph_con_in_msg_alloc(con, &skip);
2287 if (ret < 0)
2288 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002289 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002290 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002291 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07002292 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002293 con->in_base_pos = -front_len - middle_len - data_len -
2294 sizeof(m->footer);
2295 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002296 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002297 return 0;
2298 }
Alex Elder38941f82012-06-01 14:56:43 -05002299
Sage Weil4740a622012-07-30 18:19:30 -07002300 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002301 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002302 m = con->in_msg;
2303 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002304 if (m->middle)
2305 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002306
Alex Elder78625052013-03-06 23:39:39 -06002307 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002308
Alex Elder78625052013-03-06 23:39:39 -06002309 if (data_len)
2310 prepare_message_data(con->in_msg, &con->in_msg_pos);
Sage Weil31b80062009-10-06 11:31:13 -07002311 }
2312
2313 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002314 ret = read_partial_message_section(con, &m->front, front_len,
2315 &con->in_front_crc);
2316 if (ret <= 0)
2317 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002318
2319 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002320 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002321 ret = read_partial_message_section(con, &m->middle->vec,
2322 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002323 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002324 if (ret <= 0)
2325 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002326 }
2327
2328 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002329 if (data_len) {
2330 ret = read_partial_msg_data(con);
2331 if (ret <= 0)
2332 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002333 }
2334
Sage Weil31b80062009-10-06 11:31:13 -07002335 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002336 size = sizeof (m->footer);
2337 end += size;
2338 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002339 if (ret <= 0)
2340 return ret;
2341
Sage Weil31b80062009-10-06 11:31:13 -07002342 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2343 m, front_len, m->footer.front_crc, middle_len,
2344 m->footer.middle_crc, data_len, m->footer.data_crc);
2345
2346 /* crc ok? */
2347 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2348 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2349 m, con->in_front_crc, m->footer.front_crc);
2350 return -EBADMSG;
2351 }
2352 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2353 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2354 m, con->in_middle_crc, m->footer.middle_crc);
2355 return -EBADMSG;
2356 }
Alex Elderbca064d2012-02-15 07:43:54 -06002357 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002358 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2359 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2360 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2361 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2362 return -EBADMSG;
2363 }
2364
2365 return 1; /* done! */
2366}
2367
2368/*
2369 * Process message. This happens in the worker thread. The callback should
2370 * be careful not to do anything that waits on other incoming messages or it
2371 * may deadlock.
2372 */
2373static void process_message(struct ceph_connection *con)
2374{
Sage Weil5e095e82009-12-14 14:30:34 -08002375 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002376
Alex Elder38941f82012-06-01 14:56:43 -05002377 BUG_ON(con->in_msg->con != con);
2378 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002379 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002380 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002381 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002382
2383 /* if first message, set peer_name */
2384 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002385 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002386
Sage Weil31b80062009-10-06 11:31:13 -07002387 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002388 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002389
2390 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2391 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002392 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002393 le16_to_cpu(msg->hdr.type),
2394 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2395 le32_to_cpu(msg->hdr.front_len),
2396 le32_to_cpu(msg->hdr.data_len),
2397 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2398 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002399
2400 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002401}
2402
2403
2404/*
2405 * Write something to the socket. Called in a worker thread when the
2406 * socket appears to be writeable and we have something ready to send.
2407 */
2408static int try_write(struct ceph_connection *con)
2409{
Sage Weil31b80062009-10-06 11:31:13 -07002410 int ret = 1;
2411
Sage Weild59315c2012-06-21 12:49:23 -07002412 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002413
Sage Weil31b80062009-10-06 11:31:13 -07002414more:
2415 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2416
2417 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002418 if (con->state == CON_STATE_PREOPEN) {
2419 BUG_ON(con->sock);
2420 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002421
Alex Eldere2200422012-05-23 14:35:23 -05002422 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002423 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002424 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002425
Sage Weilcf3e5c42009-12-11 09:48:05 -08002426 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002427 con->in_tag = CEPH_MSGR_TAG_READY;
2428 dout("try_write initiating connect on %p new state %lu\n",
2429 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002430 ret = ceph_tcp_connect(con);
2431 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002432 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002433 goto out;
2434 }
2435 }
2436
2437more_kvec:
2438 /* kvec data queued? */
2439 if (con->out_skip) {
2440 ret = write_partial_skip(con);
2441 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002442 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002443 }
2444 if (con->out_kvec_left) {
2445 ret = write_partial_kvec(con);
2446 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002447 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002448 }
2449
2450 /* msg pages? */
2451 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002452 if (con->out_msg_done) {
2453 ceph_msg_put(con->out_msg);
2454 con->out_msg = NULL; /* we're done with this one */
2455 goto do_next;
2456 }
2457
Alex Elder34d2d202013-03-08 20:58:59 -06002458 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002459 if (ret == 1)
2460 goto more_kvec; /* we need to send the footer, too! */
2461 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002462 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002463 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002464 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002465 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002466 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002467 }
2468 }
2469
Sage Weilc86a2932009-12-14 14:04:30 -08002470do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002471 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002472 /* is anything else pending? */
2473 if (!list_empty(&con->out_queue)) {
2474 prepare_write_message(con);
2475 goto more;
2476 }
2477 if (con->in_seq > con->in_seq_acked) {
2478 prepare_write_ack(con);
2479 goto more;
2480 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002481 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002482 prepare_write_keepalive(con);
2483 goto more;
2484 }
2485 }
2486
2487 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002488 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002489 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002490 ret = 0;
2491out:
Sage Weil42961d22011-01-25 08:19:34 -08002492 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002493 return ret;
2494}
2495
2496
2497
2498/*
2499 * Read what we can from the socket.
2500 */
2501static int try_read(struct ceph_connection *con)
2502{
Sage Weil31b80062009-10-06 11:31:13 -07002503 int ret = -1;
2504
Sage Weil31b80062009-10-06 11:31:13 -07002505more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002506 dout("try_read start on %p state %lu\n", con, con->state);
2507 if (con->state != CON_STATE_CONNECTING &&
2508 con->state != CON_STATE_NEGOTIATING &&
2509 con->state != CON_STATE_OPEN)
2510 return 0;
2511
2512 BUG_ON(!con->sock);
2513
Sage Weil31b80062009-10-06 11:31:13 -07002514 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2515 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002516
Sage Weil8dacc7d2012-07-20 17:24:40 -07002517 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002518 dout("try_read connecting\n");
2519 ret = read_partial_banner(con);
2520 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002521 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002522 ret = process_banner(con);
2523 if (ret < 0)
2524 goto out;
2525
Sage Weil8dacc7d2012-07-20 17:24:40 -07002526 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002527
Jim Schutt6d4221b2012-08-10 10:37:38 -07002528 /*
2529 * Received banner is good, exchange connection info.
2530 * Do not reset out_kvec, as sending our banner raced
2531 * with receiving peer banner after connect completed.
2532 */
Alex Elder7593af92012-05-24 11:55:03 -05002533 ret = prepare_write_connect(con);
2534 if (ret < 0)
2535 goto out;
2536 prepare_read_connect(con);
2537
2538 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002539 goto out;
2540 }
2541
Sage Weil8dacc7d2012-07-20 17:24:40 -07002542 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002543 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002544 ret = read_partial_connect(con);
2545 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002546 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002547 ret = process_connect(con);
2548 if (ret < 0)
2549 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002550 goto more;
2551 }
2552
Alex Elder122070a2012-12-26 10:43:57 -06002553 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002554
Sage Weil31b80062009-10-06 11:31:13 -07002555 if (con->in_base_pos < 0) {
2556 /*
2557 * skipping + discarding content.
2558 *
2559 * FIXME: there must be a better way to do this!
2560 */
Alex Elder84495f42012-02-15 07:43:55 -06002561 static char buf[SKIP_BUF_SIZE];
2562 int skip = min((int) sizeof (buf), -con->in_base_pos);
2563
Sage Weil31b80062009-10-06 11:31:13 -07002564 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2565 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2566 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002567 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002568 con->in_base_pos += ret;
2569 if (con->in_base_pos)
2570 goto more;
2571 }
2572 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2573 /*
2574 * what's next?
2575 */
2576 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2577 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002578 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002579 dout("try_read got tag %d\n", (int)con->in_tag);
2580 switch (con->in_tag) {
2581 case CEPH_MSGR_TAG_MSG:
2582 prepare_read_message(con);
2583 break;
2584 case CEPH_MSGR_TAG_ACK:
2585 prepare_read_ack(con);
2586 break;
2587 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002588 con_close_socket(con);
2589 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002590 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002591 default:
2592 goto bad_tag;
2593 }
2594 }
2595 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2596 ret = read_partial_message(con);
2597 if (ret <= 0) {
2598 switch (ret) {
2599 case -EBADMSG:
2600 con->error_msg = "bad crc";
2601 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002602 break;
Sage Weil31b80062009-10-06 11:31:13 -07002603 case -EIO:
2604 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002605 break;
Sage Weil31b80062009-10-06 11:31:13 -07002606 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002607 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002608 }
2609 if (con->in_tag == CEPH_MSGR_TAG_READY)
2610 goto more;
2611 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002612 if (con->state == CON_STATE_OPEN)
2613 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002614 goto more;
2615 }
2616 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2617 ret = read_partial_ack(con);
2618 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002619 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002620 process_ack(con);
2621 goto more;
2622 }
2623
Sage Weil31b80062009-10-06 11:31:13 -07002624out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002625 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002626 return ret;
2627
2628bad_tag:
2629 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2630 con->error_msg = "protocol error, garbage tag";
2631 ret = -1;
2632 goto out;
2633}
2634
2635
2636/*
Alex Elder802c6d92012-10-08 20:37:30 -07002637 * Atomically queue work on a connection after the specified delay.
2638 * Bump @con reference to avoid races with connection teardown.
2639 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002640 */
Alex Elder802c6d92012-10-08 20:37:30 -07002641static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002642{
Sage Weil31b80062009-10-06 11:31:13 -07002643 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002644 dout("%s %p ref count 0\n", __func__, con);
2645
2646 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002647 }
2648
Alex Elder802c6d92012-10-08 20:37:30 -07002649 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2650 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002651 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002652
2653 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002654 }
Alex Elder802c6d92012-10-08 20:37:30 -07002655
2656 dout("%s %p %lu\n", __func__, con, delay);
2657
2658 return 0;
2659}
2660
2661static void queue_con(struct ceph_connection *con)
2662{
2663 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002664}
2665
Alex Elder7bb21d682012-12-07 19:50:07 -06002666static bool con_sock_closed(struct ceph_connection *con)
2667{
Alex Elderc9ffc772013-02-20 10:25:12 -06002668 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002669 return false;
2670
2671#define CASE(x) \
2672 case CON_STATE_ ## x: \
2673 con->error_msg = "socket closed (con state " #x ")"; \
2674 break;
2675
2676 switch (con->state) {
2677 CASE(CLOSED);
2678 CASE(PREOPEN);
2679 CASE(CONNECTING);
2680 CASE(NEGOTIATING);
2681 CASE(OPEN);
2682 CASE(STANDBY);
2683 default:
2684 pr_warning("%s con %p unrecognized state %lu\n",
2685 __func__, con, con->state);
2686 con->error_msg = "unrecognized con state";
2687 BUG();
2688 break;
2689 }
2690#undef CASE
2691
2692 return true;
2693}
2694
Alex Elderf20a39f2013-02-19 12:25:57 -06002695static bool con_backoff(struct ceph_connection *con)
2696{
2697 int ret;
2698
2699 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2700 return false;
2701
2702 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2703 if (ret) {
2704 dout("%s: con %p FAILED to back off %lu\n", __func__,
2705 con, con->delay);
2706 BUG_ON(ret == -ENOENT);
2707 con_flag_set(con, CON_FLAG_BACKOFF);
2708 }
2709
2710 return true;
2711}
2712
Alex Elder93209262013-02-19 12:25:57 -06002713/* Finish fault handling; con->mutex must *not* be held here */
2714
2715static void con_fault_finish(struct ceph_connection *con)
2716{
2717 /*
2718 * in case we faulted due to authentication, invalidate our
2719 * current tickets so that we can get new ones.
2720 */
2721 if (con->auth_retry && con->ops->invalidate_authorizer) {
2722 dout("calling invalidate_authorizer()\n");
2723 con->ops->invalidate_authorizer(con);
2724 }
2725
2726 if (con->ops->fault)
2727 con->ops->fault(con);
2728}
2729
Sage Weil31b80062009-10-06 11:31:13 -07002730/*
2731 * Do some work on a connection. Drop a connection ref when we're done.
2732 */
2733static void con_work(struct work_struct *work)
2734{
2735 struct ceph_connection *con = container_of(work, struct ceph_connection,
2736 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002737 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002738
Sage Weil9dd46582010-04-28 13:51:50 -07002739 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002740 while (true) {
2741 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002742
Alex Elder49659412013-02-19 12:25:57 -06002743 if ((fault = con_sock_closed(con))) {
2744 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2745 break;
2746 }
2747 if (con_backoff(con)) {
2748 dout("%s: con %p BACKOFF\n", __func__, con);
2749 break;
2750 }
2751 if (con->state == CON_STATE_STANDBY) {
2752 dout("%s: con %p STANDBY\n", __func__, con);
2753 break;
2754 }
2755 if (con->state == CON_STATE_CLOSED) {
2756 dout("%s: con %p CLOSED\n", __func__, con);
2757 BUG_ON(con->sock);
2758 break;
2759 }
2760 if (con->state == CON_STATE_PREOPEN) {
2761 dout("%s: con %p PREOPEN\n", __func__, con);
2762 BUG_ON(con->sock);
2763 }
Sage Weil0da5d702011-05-19 11:21:05 -07002764
Alex Elder49659412013-02-19 12:25:57 -06002765 ret = try_read(con);
2766 if (ret < 0) {
2767 if (ret == -EAGAIN)
2768 continue;
2769 con->error_msg = "socket error on read";
2770 fault = true;
2771 break;
2772 }
2773
2774 ret = try_write(con);
2775 if (ret < 0) {
2776 if (ret == -EAGAIN)
2777 continue;
2778 con->error_msg = "socket error on write";
2779 fault = true;
2780 }
2781
2782 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002783 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002784 if (fault)
2785 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002786 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002787
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002788 if (fault)
2789 con_fault_finish(con);
2790
2791 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002792}
2793
Sage Weil31b80062009-10-06 11:31:13 -07002794/*
2795 * Generic error/fault handler. A retry mechanism is used with
2796 * exponential backoff
2797 */
Alex Elder93209262013-02-19 12:25:57 -06002798static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002799{
Alex Elder28362982012-12-14 16:47:41 -06002800 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002801 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002802 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002803 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002804
Alex Elder122070a2012-12-26 10:43:57 -06002805 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002806 con->state != CON_STATE_NEGOTIATING &&
2807 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002808
Sage Weil31b80062009-10-06 11:31:13 -07002809 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002810
Alex Elderc9ffc772013-02-20 10:25:12 -06002811 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002812 dout("fault on LOSSYTX channel, marking CLOSED\n");
2813 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002814 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002815 }
2816
Sage Weil5e095e82009-12-14 14:30:34 -08002817 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002818 BUG_ON(con->in_msg->con != con);
2819 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002820 ceph_msg_put(con->in_msg);
2821 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002822 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002823 }
Sage Weil31b80062009-10-06 11:31:13 -07002824
Sage Weile80a52d2010-02-25 12:40:45 -08002825 /* Requeue anything that hasn't been acked */
2826 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002827
Sage Weile76661d2011-03-03 10:10:15 -08002828 /* If there are no messages queued or keepalive pending, place
2829 * the connection in a STANDBY state */
2830 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002831 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002832 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002833 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002834 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002835 } else {
2836 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002837 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002838 if (con->delay == 0)
2839 con->delay = BASE_DELAY_INTERVAL;
2840 else if (con->delay < MAX_DELAY_INTERVAL)
2841 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002842 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002843 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002844 }
Sage Weil31b80062009-10-06 11:31:13 -07002845}
2846
2847
2848
2849/*
Alex Elder15d98822012-05-26 23:26:43 -05002850 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002851 */
Alex Elder15d98822012-05-26 23:26:43 -05002852void ceph_messenger_init(struct ceph_messenger *msgr,
2853 struct ceph_entity_addr *myaddr,
2854 u32 supported_features,
2855 u32 required_features,
2856 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002857{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002858 msgr->supported_features = supported_features;
2859 msgr->required_features = required_features;
2860
Sage Weil31b80062009-10-06 11:31:13 -07002861 spin_lock_init(&msgr->global_seq_lock);
2862
Sage Weil31b80062009-10-06 11:31:13 -07002863 if (myaddr)
2864 msgr->inst.addr = *myaddr;
2865
2866 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002867 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002868 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002869 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002870 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002871
Guanjun Hea2a32582012-07-08 19:50:33 -07002872 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002873
Alex Elder15d98822012-05-26 23:26:43 -05002874 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002875}
Alex Elder15d98822012-05-26 23:26:43 -05002876EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002877
Sage Weile00de342011-03-04 12:25:05 -08002878static void clear_standby(struct ceph_connection *con)
2879{
2880 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002881 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002882 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002883 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002884 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002885 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2886 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002887 }
2888}
2889
Sage Weil31b80062009-10-06 11:31:13 -07002890/*
2891 * Queue up an outgoing message on the given connection.
2892 */
2893void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2894{
Sage Weila59b55a2012-07-20 15:34:04 -07002895 /* set src+dst */
2896 msg->hdr.src = con->msgr->inst.name;
2897 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2898 msg->needs_out_seq = true;
2899
2900 mutex_lock(&con->mutex);
2901
Sage Weil8dacc7d2012-07-20 17:24:40 -07002902 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002903 dout("con_send %p closed, dropping %p\n", con, msg);
2904 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002905 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002906 return;
2907 }
2908
Alex Elder38941f82012-06-01 14:56:43 -05002909 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002910 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002911 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002912
Sage Weil31b80062009-10-06 11:31:13 -07002913 BUG_ON(!list_empty(&msg->list_head));
2914 list_add_tail(&msg->list_head, &con->out_queue);
2915 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2916 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2917 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2918 le32_to_cpu(msg->hdr.front_len),
2919 le32_to_cpu(msg->hdr.middle_len),
2920 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002921
2922 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002923 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002924
2925 /* if there wasn't anything waiting to send before, queue
2926 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002927 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002928 queue_con(con);
2929}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002930EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002931
2932/*
2933 * Revoke a message that was previously queued for send
2934 */
Alex Elder6740a842012-06-01 14:56:43 -05002935void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002936{
Alex Elder6740a842012-06-01 14:56:43 -05002937 struct ceph_connection *con = msg->con;
2938
2939 if (!con)
2940 return; /* Message not in our possession */
2941
Sage Weilec302642009-12-22 10:43:42 -08002942 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002943 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002944 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002945 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002946 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002947 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002948 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002949 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002950
Sage Weil31b80062009-10-06 11:31:13 -07002951 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002952 }
2953 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002954 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002955 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002956 if (con->out_kvec_is_msg) {
2957 con->out_skip = con->out_kvec_bytes;
2958 con->out_kvec_is_msg = false;
2959 }
Sage Weiled98ada2010-07-05 12:15:14 -07002960 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002961
2962 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002963 }
Sage Weilec302642009-12-22 10:43:42 -08002964 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002965}
2966
2967/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002968 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002969 */
Alex Elder8921d112012-06-01 14:56:43 -05002970void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002971{
Alex Elder8921d112012-06-01 14:56:43 -05002972 struct ceph_connection *con;
2973
2974 BUG_ON(msg == NULL);
2975 if (!msg->con) {
2976 dout("%s msg %p null con\n", __func__, msg);
2977
2978 return; /* Message not in our possession */
2979 }
2980
2981 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002982 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002983 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002984 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2985 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2986 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002987
2988 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002989 dout("%s %p msg %p revoked\n", __func__, con, msg);
2990 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002991 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002992 front_len -
2993 middle_len -
2994 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002995 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002996 ceph_msg_put(con->in_msg);
2997 con->in_msg = NULL;
2998 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002999 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003000 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003001 dout("%s %p in_msg %p msg %p no-op\n",
3002 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003003 }
3004 mutex_unlock(&con->mutex);
3005}
3006
3007/*
Sage Weil31b80062009-10-06 11:31:13 -07003008 * Queue a keepalive byte to ensure the tcp connection is alive.
3009 */
3010void ceph_con_keepalive(struct ceph_connection *con)
3011{
Sage Weile00de342011-03-04 12:25:05 -08003012 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003013 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003014 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003015 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003016 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3017 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003018 queue_con(con);
3019}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003020EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003021
Alex Elder43794502013-03-01 18:00:16 -06003022static void ceph_msg_data_init(struct ceph_msg_data *data)
3023{
3024 data->type = CEPH_MSG_DATA_NONE;
3025}
3026
Alex Elder02afca62013-02-14 12:16:43 -06003027void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003028 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003029{
Alex Elder07aa1552013-03-04 18:29:06 -06003030 BUG_ON(!pages);
3031 BUG_ON(!length);
Alex Elder43794502013-03-01 18:00:16 -06003032 BUG_ON(msg->p.type != CEPH_MSG_DATA_NONE);
Alex Elder02afca62013-02-14 12:16:43 -06003033
Alex Elder43794502013-03-01 18:00:16 -06003034 msg->p.type = CEPH_MSG_DATA_PAGES;
Alex Elderf9e15772013-03-01 18:00:16 -06003035 msg->p.pages = pages;
3036 msg->p.length = length;
3037 msg->p.alignment = alignment & ~PAGE_MASK;
Alex Elder02afca62013-02-14 12:16:43 -06003038}
3039EXPORT_SYMBOL(ceph_msg_data_set_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003040
Alex Elder27fa8382013-02-14 12:16:43 -06003041void ceph_msg_data_set_pagelist(struct ceph_msg *msg,
3042 struct ceph_pagelist *pagelist)
3043{
Alex Elder07aa1552013-03-04 18:29:06 -06003044 BUG_ON(!pagelist);
3045 BUG_ON(!pagelist->length);
Alex Elder43794502013-03-01 18:00:16 -06003046 BUG_ON(msg->l.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003047
Alex Elder43794502013-03-01 18:00:16 -06003048 msg->l.type = CEPH_MSG_DATA_PAGELIST;
Alex Elderf9e15772013-03-01 18:00:16 -06003049 msg->l.pagelist = pagelist;
Alex Elder27fa8382013-02-14 12:16:43 -06003050}
3051EXPORT_SYMBOL(ceph_msg_data_set_pagelist);
3052
3053void ceph_msg_data_set_bio(struct ceph_msg *msg, struct bio *bio)
3054{
Alex Elder07aa1552013-03-04 18:29:06 -06003055 BUG_ON(!bio);
Alex Elder43794502013-03-01 18:00:16 -06003056 BUG_ON(msg->b.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003057
Alex Elder43794502013-03-01 18:00:16 -06003058 msg->b.type = CEPH_MSG_DATA_BIO;
Alex Elderf9e15772013-03-01 18:00:16 -06003059 msg->b.bio = bio;
Alex Elder27fa8382013-02-14 12:16:43 -06003060}
3061EXPORT_SYMBOL(ceph_msg_data_set_bio);
3062
3063void ceph_msg_data_set_trail(struct ceph_msg *msg, struct ceph_pagelist *trail)
3064{
Alex Elder07aa1552013-03-04 18:29:06 -06003065 BUG_ON(!trail);
3066 BUG_ON(!trail->length);
Alex Elder43794502013-03-01 18:00:16 -06003067 BUG_ON(msg->b.type != CEPH_MSG_DATA_NONE);
Alex Elder27fa8382013-02-14 12:16:43 -06003068
Alex Elder43794502013-03-01 18:00:16 -06003069 msg->t.type = CEPH_MSG_DATA_PAGELIST;
3070 msg->t.pagelist = trail;
Alex Elder27fa8382013-02-14 12:16:43 -06003071}
3072EXPORT_SYMBOL(ceph_msg_data_set_trail);
3073
Sage Weil31b80062009-10-06 11:31:13 -07003074/*
3075 * construct a new message with given type, size
3076 * the new msg has a ref count of 1.
3077 */
Sage Weilb61c2762011-08-09 15:03:46 -07003078struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3079 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003080{
3081 struct ceph_msg *m;
3082
Alex Elder9516e452013-03-01 18:00:16 -06003083 m = kzalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07003084 if (m == NULL)
3085 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003086
Sage Weil31b80062009-10-06 11:31:13 -07003087 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003088 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003089 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003090
Alex Elder9516e452013-03-01 18:00:16 -06003091 INIT_LIST_HEAD(&m->list_head);
3092 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003093
Alex Elder43794502013-03-01 18:00:16 -06003094 ceph_msg_data_init(&m->p);
3095 ceph_msg_data_init(&m->l);
3096 ceph_msg_data_init(&m->b);
3097 ceph_msg_data_init(&m->t);
3098
Sage Weil31b80062009-10-06 11:31:13 -07003099 /* front */
Alex Elder9516e452013-03-01 18:00:16 -06003100 m->front_max = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003101 if (front_len) {
3102 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003103 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07003104 PAGE_KERNEL);
3105 m->front_is_vmalloc = true;
3106 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003107 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003108 }
3109 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003110 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003111 front_len);
3112 goto out2;
3113 }
3114 } else {
3115 m->front.iov_base = NULL;
3116 }
3117 m->front.iov_len = front_len;
3118
Sage Weilbb257662010-04-01 16:07:23 -07003119 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003120 return m;
3121
3122out2:
3123 ceph_msg_put(m);
3124out:
Sage Weilb61c2762011-08-09 15:03:46 -07003125 if (!can_fail) {
3126 pr_err("msg_new can't create type %d front %d\n", type,
3127 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003128 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003129 } else {
3130 dout("msg_new can't create type %d front %d\n", type,
3131 front_len);
3132 }
Sage Weila79832f2010-04-01 16:06:19 -07003133 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003134}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003135EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003136
3137/*
Sage Weil31b80062009-10-06 11:31:13 -07003138 * Allocate "middle" portion of a message, if it is needed and wasn't
3139 * allocated by alloc_msg. This allows us to read a small fixed-size
3140 * per-type header in the front and then gracefully fail (i.e.,
3141 * propagate the error to the caller based on info in the front) when
3142 * the middle is too large.
3143 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003144static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003145{
3146 int type = le16_to_cpu(msg->hdr.type);
3147 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3148
3149 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3150 ceph_msg_type_name(type), middle_len);
3151 BUG_ON(!middle_len);
3152 BUG_ON(msg->middle);
3153
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003154 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003155 if (!msg->middle)
3156 return -ENOMEM;
3157 return 0;
3158}
3159
Yehuda Sadeh24504182010-01-08 13:58:34 -08003160/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003161 * Allocate a message for receiving an incoming message on a
3162 * connection, and save the result in con->in_msg. Uses the
3163 * connection's private alloc_msg op if available.
3164 *
Sage Weil4740a622012-07-30 18:19:30 -07003165 * Returns 0 on success, or a negative error code.
3166 *
3167 * On success, if we set *skip = 1:
3168 * - the next message should be skipped and ignored.
3169 * - con->in_msg == NULL
3170 * or if we set *skip = 0:
3171 * - con->in_msg is non-null.
3172 * On error (ENOMEM, EAGAIN, ...),
3173 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003174 */
Sage Weil4740a622012-07-30 18:19:30 -07003175static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003176{
Sage Weil4740a622012-07-30 18:19:30 -07003177 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003178 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003179 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003180 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003181
Alex Elder1c20f2d2012-06-04 14:43:32 -05003182 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003183 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003184
Alex Elder53ded492013-03-01 18:00:14 -06003185 mutex_unlock(&con->mutex);
3186 msg = con->ops->alloc_msg(con, hdr, skip);
3187 mutex_lock(&con->mutex);
3188 if (con->state != CON_STATE_OPEN) {
3189 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003190 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003191 return -EAGAIN;
3192 }
Alex Elder41375772013-03-05 09:25:10 -06003193 if (msg) {
3194 BUG_ON(*skip);
3195 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003196 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003197 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003198 } else {
3199 /*
3200 * Null message pointer means either we should skip
3201 * this message or we couldn't allocate memory. The
3202 * former is not an error.
3203 */
3204 if (*skip)
3205 return 0;
3206 con->error_msg = "error allocating memory for incoming message";
3207
Alex Elder53ded492013-03-01 18:00:14 -06003208 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003209 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003210 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003211
Alex Elder1c20f2d2012-06-04 14:43:32 -05003212 if (middle_len && !con->in_msg->middle) {
3213 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003214 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003215 ceph_msg_put(con->in_msg);
3216 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003217 }
3218 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003219
Sage Weil4740a622012-07-30 18:19:30 -07003220 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003221}
3222
Sage Weil31b80062009-10-06 11:31:13 -07003223
3224/*
3225 * Free a generically kmalloc'd message.
3226 */
3227void ceph_msg_kfree(struct ceph_msg *m)
3228{
3229 dout("msg_kfree %p\n", m);
3230 if (m->front_is_vmalloc)
3231 vfree(m->front.iov_base);
3232 else
3233 kfree(m->front.iov_base);
3234 kfree(m);
3235}
3236
3237/*
3238 * Drop a msg ref. Destroy as needed.
3239 */
Sage Weilc2e552e2009-12-07 15:55:05 -08003240void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003241{
Sage Weilc2e552e2009-12-07 15:55:05 -08003242 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07003243
Sage Weilc2e552e2009-12-07 15:55:05 -08003244 dout("ceph_msg_put last one on %p\n", m);
3245 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003246
Sage Weilc2e552e2009-12-07 15:55:05 -08003247 /* drop middle, data, if any */
3248 if (m->middle) {
3249 ceph_buffer_put(m->middle);
3250 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003251 }
Alex Elder97fb1c72013-03-01 18:00:16 -06003252 if (ceph_msg_has_pages(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003253 m->p.length = 0;
3254 m->p.pages = NULL;
Alex Elder97fb1c72013-03-01 18:00:16 -06003255 }
Sage Weilc2e552e2009-12-07 15:55:05 -08003256
Alex Elder97fb1c72013-03-01 18:00:16 -06003257 if (ceph_msg_has_pagelist(m)) {
Alex Elderf9e15772013-03-01 18:00:16 -06003258 ceph_pagelist_release(m->l.pagelist);
3259 kfree(m->l.pagelist);
3260 m->l.pagelist = NULL;
Sage Weil58bb3b32009-12-23 12:12:31 -08003261 }
3262
Alex Elder97fb1c72013-03-01 18:00:16 -06003263 if (ceph_msg_has_trail(m))
Alex Elder43794502013-03-01 18:00:16 -06003264 m->t.pagelist = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07003265
Sage Weilc2e552e2009-12-07 15:55:05 -08003266 if (m->pool)
3267 ceph_msgpool_put(m->pool, m);
3268 else
3269 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07003270}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003271EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003272
3273void ceph_msg_dump(struct ceph_msg *msg)
3274{
Alex Elder4a73ef22013-03-07 15:38:26 -06003275 pr_debug("msg_dump %p (front_max %d length %zd)\n", msg,
Alex Elderf9e15772013-03-01 18:00:16 -06003276 msg->front_max, msg->p.length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003277 print_hex_dump(KERN_DEBUG, "header: ",
3278 DUMP_PREFIX_OFFSET, 16, 1,
3279 &msg->hdr, sizeof(msg->hdr), true);
3280 print_hex_dump(KERN_DEBUG, " front: ",
3281 DUMP_PREFIX_OFFSET, 16, 1,
3282 msg->front.iov_base, msg->front.iov_len, true);
3283 if (msg->middle)
3284 print_hex_dump(KERN_DEBUG, "middle: ",
3285 DUMP_PREFIX_OFFSET, 16, 1,
3286 msg->middle->vec.iov_base,
3287 msg->middle->vec.iov_len, true);
3288 print_hex_dump(KERN_DEBUG, "footer: ",
3289 DUMP_PREFIX_OFFSET, 16, 1,
3290 &msg->footer, sizeof(msg->footer), true);
3291}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003292EXPORT_SYMBOL(ceph_msg_dump);