blob: fa9b4d0243a0e3fe38730fee45daec59956719fe [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 Elder6aaa4512013-03-06 23:39:39 -0600719
720/*
721 * For a bio data item, a piece is whatever remains of the next
722 * entry in the current bio iovec, or the first entry in the next
723 * bio in the list.
724 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500725static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data *data,
726 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600727{
728 struct ceph_msg_data_cursor *cursor = &data->cursor;
729 struct bio *bio;
730
731 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
732
733 bio = data->bio;
734 BUG_ON(!bio);
735 BUG_ON(!bio->bi_vcnt);
Alex Elder6aaa4512013-03-06 23:39:39 -0600736
Alex Elder25aff7c2013-03-11 23:34:22 -0500737 cursor->resid = length;
Alex Elder6aaa4512013-03-06 23:39:39 -0600738 cursor->bio = bio;
739 cursor->vector_index = 0;
740 cursor->vector_offset = 0;
Alex Elder25aff7c2013-03-11 23:34:22 -0500741 cursor->last_piece = length <= bio->bi_io_vec[0].bv_len;
Alex Elder6aaa4512013-03-06 23:39:39 -0600742}
743
744static struct page *ceph_msg_data_bio_next(struct ceph_msg_data *data,
745 size_t *page_offset,
746 size_t *length)
747{
748 struct ceph_msg_data_cursor *cursor = &data->cursor;
749 struct bio *bio;
750 struct bio_vec *bio_vec;
751 unsigned int index;
752
753 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
754
755 bio = cursor->bio;
756 BUG_ON(!bio);
757
758 index = cursor->vector_index;
759 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
760
761 bio_vec = &bio->bi_io_vec[index];
762 BUG_ON(cursor->vector_offset >= bio_vec->bv_len);
763 *page_offset = (size_t) (bio_vec->bv_offset + cursor->vector_offset);
764 BUG_ON(*page_offset >= PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500765 if (cursor->last_piece) /* pagelist offset is always 0 */
766 *length = cursor->resid;
767 else
768 *length = (size_t) (bio_vec->bv_len - cursor->vector_offset);
Alex Elder25aff7c2013-03-11 23:34:22 -0500769 BUG_ON(*length > cursor->resid);
Alex Elder5df521b2013-03-30 15:09:59 -0500770 BUG_ON(*page_offset + *length > PAGE_SIZE);
Alex Elder6aaa4512013-03-06 23:39:39 -0600771
772 return bio_vec->bv_page;
773}
774
775static bool ceph_msg_data_bio_advance(struct ceph_msg_data *data, size_t bytes)
776{
777 struct ceph_msg_data_cursor *cursor = &data->cursor;
778 struct bio *bio;
779 struct bio_vec *bio_vec;
780 unsigned int index;
781
782 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
783
784 bio = cursor->bio;
785 BUG_ON(!bio);
786
787 index = cursor->vector_index;
788 BUG_ON(index >= (unsigned int) bio->bi_vcnt);
789 bio_vec = &bio->bi_io_vec[index];
Alex Elder6aaa4512013-03-06 23:39:39 -0600790
791 /* Advance the cursor offset */
792
Alex Elder25aff7c2013-03-11 23:34:22 -0500793 BUG_ON(cursor->resid < bytes);
794 cursor->resid -= bytes;
Alex Elder6aaa4512013-03-06 23:39:39 -0600795 cursor->vector_offset += bytes;
796 if (cursor->vector_offset < bio_vec->bv_len)
797 return false; /* more bytes to process in this segment */
Alex Elder25aff7c2013-03-11 23:34:22 -0500798 BUG_ON(cursor->vector_offset != bio_vec->bv_len);
Alex Elder6aaa4512013-03-06 23:39:39 -0600799
800 /* Move on to the next segment, and possibly the next bio */
801
Alex Elder25aff7c2013-03-11 23:34:22 -0500802 if (++index == (unsigned int) bio->bi_vcnt) {
Alex Elder6aaa4512013-03-06 23:39:39 -0600803 bio = bio->bi_next;
Alex Elder25aff7c2013-03-11 23:34:22 -0500804 index = 0;
Alex Elder6aaa4512013-03-06 23:39:39 -0600805 }
Alex Elder25aff7c2013-03-11 23:34:22 -0500806 cursor->bio = bio;
807 cursor->vector_index = index;
Alex Elder6aaa4512013-03-06 23:39:39 -0600808 cursor->vector_offset = 0;
809
Alex Elder25aff7c2013-03-11 23:34:22 -0500810 if (!cursor->last_piece) {
811 BUG_ON(!cursor->resid);
812 BUG_ON(!bio);
813 /* A short read is OK, so use <= rather than == */
814 if (cursor->resid <= bio->bi_io_vec[index].bv_len)
Alex Elder6aaa4512013-03-06 23:39:39 -0600815 cursor->last_piece = true;
Alex Elder25aff7c2013-03-11 23:34:22 -0500816 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600817
818 return true;
819}
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500820#endif
821
Alex Elderfe38a2b2013-03-06 23:39:39 -0600822/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600823 * For a page array, a piece comes from the first page in the array
824 * that has not already been fully consumed.
825 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500826static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data *data,
827 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600828{
829 struct ceph_msg_data_cursor *cursor = &data->cursor;
830 int page_count;
831
832 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
833
834 BUG_ON(!data->pages);
835 BUG_ON(!data->length);
Alex Elder1190bf02013-03-30 13:31:02 -0500836 BUG_ON(length > data->length); /* short reads are OK */
Alex Eldere766d7b2013-03-07 15:38:28 -0600837
Alex Elder25aff7c2013-03-11 23:34:22 -0500838 cursor->resid = length;
Alex Eldere766d7b2013-03-07 15:38:28 -0600839 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600840 cursor->page_offset = data->alignment & ~PAGE_MASK;
841 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500842 BUG_ON(page_count > (int)USHRT_MAX);
843 cursor->page_count = (unsigned short)page_count;
844 BUG_ON(length > SIZE_MAX - cursor->page_offset);
845 cursor->last_piece = (size_t)cursor->page_offset + length <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600846}
847
848static struct page *ceph_msg_data_pages_next(struct ceph_msg_data *data,
849 size_t *page_offset,
850 size_t *length)
851{
852 struct ceph_msg_data_cursor *cursor = &data->cursor;
853
854 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
855
856 BUG_ON(cursor->page_index >= cursor->page_count);
857 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600858
859 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500860 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600861 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500862 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600863 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600864
865 return data->pages[cursor->page_index];
866}
867
868static bool ceph_msg_data_pages_advance(struct ceph_msg_data *data,
869 size_t bytes)
870{
871 struct ceph_msg_data_cursor *cursor = &data->cursor;
872
873 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
874
875 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600876
877 /* Advance the cursor page offset */
878
879 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500880 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
881 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -0600882 return false; /* more bytes to process in the current page */
883
Alex Elder5df521b2013-03-30 15:09:59 -0500884 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -0600885
886 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -0600887 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500888 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600889
890 return true;
891}
892
893/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600894 * For a pagelist, a piece is whatever remains to be consumed in the
895 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600896 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500897static void ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data *data,
898 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600899{
900 struct ceph_msg_data_cursor *cursor = &data->cursor;
901 struct ceph_pagelist *pagelist;
902 struct page *page;
903
Alex Elderdd236fc2013-03-06 23:39:39 -0600904 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600905
906 pagelist = data->pagelist;
907 BUG_ON(!pagelist);
Alex Elder1190bf02013-03-30 13:31:02 -0500908 BUG_ON(length > pagelist->length); /* short reads are OK */
Alex Elder25aff7c2013-03-11 23:34:22 -0500909
910 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600911 return; /* pagelist can be assigned but empty */
912
913 BUG_ON(list_empty(&pagelist->head));
914 page = list_first_entry(&pagelist->head, struct page, lru);
915
Alex Elder25aff7c2013-03-11 23:34:22 -0500916 cursor->resid = length;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600917 cursor->page = page;
918 cursor->offset = 0;
Alex Elder25aff7c2013-03-11 23:34:22 -0500919 cursor->last_piece = length <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600920}
921
Alex Elderdd236fc2013-03-06 23:39:39 -0600922static struct page *ceph_msg_data_pagelist_next(struct ceph_msg_data *data,
Alex Elderfe38a2b2013-03-06 23:39:39 -0600923 size_t *page_offset,
Alex Elderdd236fc2013-03-06 23:39:39 -0600924 size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600925{
926 struct ceph_msg_data_cursor *cursor = &data->cursor;
927 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600928
929 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
930
931 pagelist = data->pagelist;
932 BUG_ON(!pagelist);
933
934 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -0500935 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600936
Alex Elder5df521b2013-03-30 15:09:59 -0500937 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -0600938 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -0500939 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -0500940 *length = cursor->resid;
941 else
942 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600943
944 return data->cursor.page;
945}
946
Alex Elderdd236fc2013-03-06 23:39:39 -0600947static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data *data,
948 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600949{
950 struct ceph_msg_data_cursor *cursor = &data->cursor;
951 struct ceph_pagelist *pagelist;
952
953 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
954
955 pagelist = data->pagelist;
956 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500957
958 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600959 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
960
961 /* Advance the cursor offset */
962
Alex Elder25aff7c2013-03-11 23:34:22 -0500963 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600964 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500965 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -0600966 if (!bytes || cursor->offset & ~PAGE_MASK)
967 return false; /* more bytes to process in the current page */
968
969 /* Move on to the next page */
970
971 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
972 cursor->page = list_entry_next(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -0500973 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600974
975 return true;
976}
977
Alex Elderdd236fc2013-03-06 23:39:39 -0600978/*
979 * Message data is handled (sent or received) in pieces, where each
980 * piece resides on a single page. The network layer might not
981 * consume an entire piece at once. A data item's cursor keeps
982 * track of which piece is next to process and how much remains to
983 * be processed in that piece. It also tracks whether the current
984 * piece is the last one in the data item.
985 */
Alex Elder25aff7c2013-03-11 23:34:22 -0500986static void ceph_msg_data_cursor_init(struct ceph_msg_data *data,
987 size_t length)
Alex Elderdd236fc2013-03-06 23:39:39 -0600988{
989 switch (data->type) {
990 case CEPH_MSG_DATA_PAGELIST:
Alex Elder25aff7c2013-03-11 23:34:22 -0500991 ceph_msg_data_pagelist_cursor_init(data, length);
Alex Elderdd236fc2013-03-06 23:39:39 -0600992 break;
Alex Eldere766d7b2013-03-07 15:38:28 -0600993 case CEPH_MSG_DATA_PAGES:
Alex Elder25aff7c2013-03-11 23:34:22 -0500994 ceph_msg_data_pages_cursor_init(data, length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600995 break;
Alex Elderdd236fc2013-03-06 23:39:39 -0600996#ifdef CONFIG_BLOCK
997 case CEPH_MSG_DATA_BIO:
Alex Elder25aff7c2013-03-11 23:34:22 -0500998 ceph_msg_data_bio_cursor_init(data, length);
Alex Elder6aaa4512013-03-06 23:39:39 -0600999 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:
Alex Elderdd236fc2013-03-06 23:39:39 -06001002 default:
1003 /* BUG(); */
1004 break;
1005 }
Alex Elderf5db90b2013-03-11 23:34:23 -05001006 data->cursor.need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001007}
1008
1009/*
1010 * Return the page containing the next piece to process for a given
1011 * data item, and supply the page offset and length of that piece.
1012 * Indicate whether this is the last piece in this data item.
1013 */
1014static struct page *ceph_msg_data_next(struct ceph_msg_data *data,
1015 size_t *page_offset,
1016 size_t *length,
1017 bool *last_piece)
1018{
1019 struct page *page;
1020
1021 switch (data->type) {
1022 case CEPH_MSG_DATA_PAGELIST:
1023 page = ceph_msg_data_pagelist_next(data, page_offset, length);
1024 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001025 case CEPH_MSG_DATA_PAGES:
1026 page = ceph_msg_data_pages_next(data, page_offset, length);
1027 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001028#ifdef CONFIG_BLOCK
1029 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001030 page = ceph_msg_data_bio_next(data, page_offset, length);
1031 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001032#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001033 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001034 default:
1035 page = NULL;
1036 break;
1037 }
1038 BUG_ON(!page);
1039 BUG_ON(*page_offset + *length > PAGE_SIZE);
1040 BUG_ON(!*length);
1041 if (last_piece)
1042 *last_piece = data->cursor.last_piece;
1043
1044 return page;
1045}
1046
1047/*
1048 * Returns true if the result moves the cursor on to the next piece
1049 * of the data item.
1050 */
1051static bool ceph_msg_data_advance(struct ceph_msg_data *data, size_t bytes)
1052{
Alex Elder25aff7c2013-03-11 23:34:22 -05001053 struct ceph_msg_data_cursor *cursor = &data->cursor;
Alex Elderdd236fc2013-03-06 23:39:39 -06001054 bool new_piece;
1055
Alex Elder25aff7c2013-03-11 23:34:22 -05001056 BUG_ON(bytes > cursor->resid);
Alex Elderdd236fc2013-03-06 23:39:39 -06001057 switch (data->type) {
1058 case CEPH_MSG_DATA_PAGELIST:
1059 new_piece = ceph_msg_data_pagelist_advance(data, bytes);
1060 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001061 case CEPH_MSG_DATA_PAGES:
1062 new_piece = ceph_msg_data_pages_advance(data, bytes);
1063 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001064#ifdef CONFIG_BLOCK
1065 case CEPH_MSG_DATA_BIO:
Alex Elder6aaa4512013-03-06 23:39:39 -06001066 new_piece = ceph_msg_data_bio_advance(data, bytes);
1067 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001068#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001069 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001070 default:
1071 BUG();
1072 break;
1073 }
Alex Elderf5db90b2013-03-11 23:34:23 -05001074 data->cursor.need_crc = new_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001075
1076 return new_piece;
1077}
1078
Alex Elderf5db90b2013-03-11 23:34:23 -05001079static void prepare_message_data(struct ceph_msg *msg)
Alex Elder739c9052012-06-11 14:57:13 -05001080{
Alex Elder25aff7c2013-03-11 23:34:22 -05001081 size_t data_len;
1082
Alex Elder739c9052012-06-11 14:57:13 -05001083 BUG_ON(!msg);
Alex Elder25aff7c2013-03-11 23:34:22 -05001084
1085 data_len = le32_to_cpu(msg->hdr.data_len);
1086 BUG_ON(!data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001087
Alex Elder4c59b4a2013-03-11 23:34:23 -05001088 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001089
Alex Elder6644ed72013-03-11 23:34:24 -05001090 ceph_msg_data_cursor_init(msg->data, data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001091}
1092
Sage Weil31b80062009-10-06 11:31:13 -07001093/*
1094 * Prepare footer for currently outgoing message, and finish things
1095 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1096 */
Alex Elder859eb792012-02-14 14:05:33 -06001097static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001098{
1099 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001100 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001101
Alex Elderfd154f32012-06-11 14:57:13 -05001102 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1103
Sage Weil31b80062009-10-06 11:31:13 -07001104 dout("prepare_write_message_footer %p\n", con);
1105 con->out_kvec_is_msg = true;
1106 con->out_kvec[v].iov_base = &m->footer;
1107 con->out_kvec[v].iov_len = sizeof(m->footer);
1108 con->out_kvec_bytes += sizeof(m->footer);
1109 con->out_kvec_left++;
1110 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001111 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001112}
1113
1114/*
1115 * Prepare headers for the next outgoing message.
1116 */
1117static void prepare_write_message(struct ceph_connection *con)
1118{
1119 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001120 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001121
Alex Eldere2200422012-05-23 14:35:23 -05001122 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001123 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001124 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001125
1126 /* Sneak an ack in there first? If we can get it into the same
1127 * TCP packet that's a good thing. */
1128 if (con->in_seq > con->in_seq_acked) {
1129 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001130 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001131 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001132 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001133 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001134 }
1135
Alex Elder38941f82012-06-01 14:56:43 -05001136 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001137 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001138 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001139 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001140
1141 /* put message on sent list */
1142 ceph_msg_get(m);
1143 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001144
Sage Weile84346b2010-05-11 21:20:38 -07001145 /*
1146 * only assign outgoing seq # if we haven't sent this message
1147 * yet. if it is requeued, resend with it's original seq.
1148 */
1149 if (m->needs_out_seq) {
1150 m->hdr.seq = cpu_to_le64(++con->out_seq);
1151 m->needs_out_seq = false;
1152 }
Sage Weil31b80062009-10-06 11:31:13 -07001153
Alex Elder4c59b4a2013-03-11 23:34:23 -05001154 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d\n",
Sage Weil31b80062009-10-06 11:31:13 -07001155 m, con->out_seq, le16_to_cpu(m->hdr.type),
1156 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder4c59b4a2013-03-11 23:34:23 -05001157 le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001158 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1159
1160 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001161 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1162 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1163 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001164
Sage Weil31b80062009-10-06 11:31:13 -07001165 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001166 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001167 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001168
1169 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001170 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1171 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001172 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001173
1174 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1175 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1176 if (m->middle) {
1177 crc = crc32c(0, m->middle->vec.iov_base,
1178 m->middle->vec.iov_len);
1179 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1180 } else
Sage Weil31b80062009-10-06 11:31:13 -07001181 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001182 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001183 le32_to_cpu(con->out_msg->footer.front_crc),
1184 le32_to_cpu(con->out_msg->footer.middle_crc));
1185
1186 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001187 con->out_msg->footer.data_crc = 0;
Alex Elder78625052013-03-06 23:39:39 -06001188 if (m->hdr.data_len) {
Alex Elderf5db90b2013-03-11 23:34:23 -05001189 prepare_message_data(con->out_msg);
Alex Elder78625052013-03-06 23:39:39 -06001190 con->out_more = 1; /* data + footer will follow */
1191 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001192 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001193 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001194 }
Sage Weil31b80062009-10-06 11:31:13 -07001195
Alex Elderc9ffc772013-02-20 10:25:12 -06001196 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001197}
1198
1199/*
1200 * Prepare an ack.
1201 */
1202static void prepare_write_ack(struct ceph_connection *con)
1203{
1204 dout("prepare_write_ack %p %llu -> %llu\n", con,
1205 con->in_seq_acked, con->in_seq);
1206 con->in_seq_acked = con->in_seq;
1207
Alex Eldere2200422012-05-23 14:35:23 -05001208 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001209
Alex Eldere2200422012-05-23 14:35:23 -05001210 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001211
Sage Weil31b80062009-10-06 11:31:13 -07001212 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001213 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001214 &con->out_temp_ack);
1215
Sage Weil31b80062009-10-06 11:31:13 -07001216 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001217 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001218}
1219
1220/*
Sage Weil3a230832013-03-25 08:47:40 -07001221 * Prepare to share the seq during handshake
1222 */
1223static void prepare_write_seq(struct ceph_connection *con)
1224{
1225 dout("prepare_write_seq %p %llu -> %llu\n", con,
1226 con->in_seq_acked, con->in_seq);
1227 con->in_seq_acked = con->in_seq;
1228
1229 con_out_kvec_reset(con);
1230
1231 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1232 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1233 &con->out_temp_ack);
1234
1235 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1236}
1237
1238/*
Sage Weil31b80062009-10-06 11:31:13 -07001239 * Prepare to write keepalive byte.
1240 */
1241static void prepare_write_keepalive(struct ceph_connection *con)
1242{
1243 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001244 con_out_kvec_reset(con);
1245 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001246 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001247}
1248
1249/*
1250 * Connection negotiation.
1251 */
1252
Alex Elderdac1e712012-05-16 15:16:39 -05001253static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1254 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001255{
Alex Eldera3530df2012-05-16 15:16:39 -05001256 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001257
1258 if (!con->ops->get_authorizer) {
1259 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1260 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001261 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001262 }
1263
1264 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001265 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001266 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001267 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001268
Alex Eldera3530df2012-05-16 15:16:39 -05001269 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001270 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001271 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001272 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001273
Alex Elder8f43fb52012-05-16 15:16:39 -05001274 con->auth_reply_buf = auth->authorizer_reply_buf;
1275 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001276 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001277}
1278
Sage Weil31b80062009-10-06 11:31:13 -07001279/*
1280 * We connected to a peer and are saying hello.
1281 */
Alex Eldere825a662012-05-16 15:16:38 -05001282static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001283{
Alex Eldere2200422012-05-23 14:35:23 -05001284 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1285 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001286 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001287
Sage Weileed0ef22009-11-10 14:34:36 -08001288 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001289 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001290}
1291
Alex Eldere825a662012-05-16 15:16:38 -05001292static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001293{
Eric Dumazet95c96172012-04-15 05:58:06 +00001294 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001295 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001296 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001297 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001298
1299 switch (con->peer_name.type) {
1300 case CEPH_ENTITY_TYPE_MON:
1301 proto = CEPH_MONC_PROTOCOL;
1302 break;
1303 case CEPH_ENTITY_TYPE_OSD:
1304 proto = CEPH_OSDC_PROTOCOL;
1305 break;
1306 case CEPH_ENTITY_TYPE_MDS:
1307 proto = CEPH_MDSC_PROTOCOL;
1308 break;
1309 default:
1310 BUG();
1311 }
1312
1313 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1314 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001315
Alex Eldere825a662012-05-16 15:16:38 -05001316 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001317 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1318 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1319 con->out_connect.global_seq = cpu_to_le32(global_seq);
1320 con->out_connect.protocol_version = cpu_to_le32(proto);
1321 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001322
Alex Elderdac1e712012-05-16 15:16:39 -05001323 auth_proto = CEPH_AUTH_UNKNOWN;
1324 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001325 if (IS_ERR(auth))
1326 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001327
Alex Elderdac1e712012-05-16 15:16:39 -05001328 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001329 con->out_connect.authorizer_len = auth ?
1330 cpu_to_le32(auth->authorizer_buf_len) : 0;
1331
Alex Eldere2200422012-05-23 14:35:23 -05001332 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001333 &con->out_connect);
1334 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001335 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001336 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001337
Sage Weil31b80062009-10-06 11:31:13 -07001338 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001339 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001340
Alex Eldere10c7582012-05-16 15:16:38 -05001341 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001342}
1343
Sage Weil31b80062009-10-06 11:31:13 -07001344/*
1345 * write as much of pending kvecs to the socket as we can.
1346 * 1 -> done
1347 * 0 -> socket full, but more to do
1348 * <0 -> error
1349 */
1350static int write_partial_kvec(struct ceph_connection *con)
1351{
1352 int ret;
1353
1354 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1355 while (con->out_kvec_bytes > 0) {
1356 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1357 con->out_kvec_left, con->out_kvec_bytes,
1358 con->out_more);
1359 if (ret <= 0)
1360 goto out;
1361 con->out_kvec_bytes -= ret;
1362 if (con->out_kvec_bytes == 0)
1363 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001364
1365 /* account for full iov entries consumed */
1366 while (ret >= con->out_kvec_cur->iov_len) {
1367 BUG_ON(!con->out_kvec_left);
1368 ret -= con->out_kvec_cur->iov_len;
1369 con->out_kvec_cur++;
1370 con->out_kvec_left--;
1371 }
1372 /* and for a partially-consumed entry */
1373 if (ret) {
1374 con->out_kvec_cur->iov_len -= ret;
1375 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001376 }
1377 }
1378 con->out_kvec_left = 0;
1379 con->out_kvec_is_msg = false;
1380 ret = 1;
1381out:
1382 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1383 con->out_kvec_bytes, con->out_kvec_left, ret);
1384 return ret; /* done! */
1385}
1386
Alex Elder35b62802013-03-08 20:59:00 -06001387static u32 ceph_crc32c_page(u32 crc, struct page *page,
1388 unsigned int page_offset,
1389 unsigned int length)
1390{
1391 char *kaddr;
1392
1393 kaddr = kmap(page);
1394 BUG_ON(kaddr == NULL);
1395 crc = crc32c(crc, kaddr + page_offset, length);
1396 kunmap(page);
1397
1398 return crc;
1399}
Sage Weil31b80062009-10-06 11:31:13 -07001400/*
1401 * Write as much message data payload as we can. If we finish, queue
1402 * up the footer.
1403 * 1 -> done, footer is now queued in out_kvec[].
1404 * 0 -> socket full, but more to do
1405 * <0 -> error
1406 */
Alex Elder34d2d202013-03-08 20:58:59 -06001407static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001408{
1409 struct ceph_msg *msg = con->out_msg;
Alex Elder6644ed72013-03-11 23:34:24 -05001410 struct ceph_msg_data_cursor *cursor = &msg->data->cursor;
Alex Elder37675b02012-03-07 11:40:08 -06001411 bool do_datacrc = !con->msgr->nocrc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001412 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001413
Alex Elder859a35d2013-03-11 23:34:23 -05001414 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001415
Alex Elder6644ed72013-03-11 23:34:24 -05001416 if (WARN_ON(!msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05001417 return -EINVAL;
1418
Alex Elder5821bd82012-06-11 14:57:13 -05001419 /*
1420 * Iterate through each page that contains data to be
1421 * written, and send as much as possible for each.
1422 *
1423 * If we are calculating the data crc (the default), we will
1424 * need to map the page. If we have no pages, they have
1425 * been revoked, so use the zero page.
1426 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001427 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Alex Elder643c68a2013-03-11 23:34:23 -05001428 while (cursor->resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001429 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001430 size_t page_offset;
1431 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001432 bool last_piece;
Alex Elder8ea299b2013-03-11 23:34:23 -05001433 bool need_crc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001434 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001435
Alex Elder6644ed72013-03-11 23:34:24 -05001436 page = ceph_msg_data_next(msg->data, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05001437 &last_piece);
Alex Eldere387d522013-03-06 23:39:38 -06001438 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001439 length, last_piece);
Alex Elderf5db90b2013-03-11 23:34:23 -05001440 if (ret <= 0) {
1441 if (do_datacrc)
1442 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001443
Alex Elderf5db90b2013-03-11 23:34:23 -05001444 return ret;
1445 }
Alex Elder143334f2013-03-29 11:44:10 -05001446 if (do_datacrc && cursor->need_crc)
1447 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder6644ed72013-03-11 23:34:24 -05001448 need_crc = ceph_msg_data_advance(msg->data, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001449 }
1450
Alex Elder34d2d202013-03-08 20:58:59 -06001451 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001452
1453 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001454 if (do_datacrc)
1455 msg->footer.data_crc = cpu_to_le32(crc);
1456 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001457 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001458 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001459 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001460
1461 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001462}
1463
1464/*
1465 * write some zeros
1466 */
1467static int write_partial_skip(struct ceph_connection *con)
1468{
1469 int ret;
1470
1471 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001472 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001473
Alex Eldere1dcb122013-03-06 23:39:38 -06001474 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001475 if (ret <= 0)
1476 goto out;
1477 con->out_skip -= ret;
1478 }
1479 ret = 1;
1480out:
1481 return ret;
1482}
1483
1484/*
1485 * Prepare to read connection handshake, or an ack.
1486 */
Sage Weileed0ef22009-11-10 14:34:36 -08001487static void prepare_read_banner(struct ceph_connection *con)
1488{
1489 dout("prepare_read_banner %p\n", con);
1490 con->in_base_pos = 0;
1491}
1492
Sage Weil31b80062009-10-06 11:31:13 -07001493static void prepare_read_connect(struct ceph_connection *con)
1494{
1495 dout("prepare_read_connect %p\n", con);
1496 con->in_base_pos = 0;
1497}
1498
1499static void prepare_read_ack(struct ceph_connection *con)
1500{
1501 dout("prepare_read_ack %p\n", con);
1502 con->in_base_pos = 0;
1503}
1504
Sage Weil3a230832013-03-25 08:47:40 -07001505static void prepare_read_seq(struct ceph_connection *con)
1506{
1507 dout("prepare_read_seq %p\n", con);
1508 con->in_base_pos = 0;
1509 con->in_tag = CEPH_MSGR_TAG_SEQ;
1510}
1511
Sage Weil31b80062009-10-06 11:31:13 -07001512static void prepare_read_tag(struct ceph_connection *con)
1513{
1514 dout("prepare_read_tag %p\n", con);
1515 con->in_base_pos = 0;
1516 con->in_tag = CEPH_MSGR_TAG_READY;
1517}
1518
1519/*
1520 * Prepare to read a message.
1521 */
1522static int prepare_read_message(struct ceph_connection *con)
1523{
1524 dout("prepare_read_message %p\n", con);
1525 BUG_ON(con->in_msg != NULL);
1526 con->in_base_pos = 0;
1527 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1528 return 0;
1529}
1530
1531
1532static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001533 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001534{
Alex Eldere6cee712012-05-10 10:29:50 -05001535 while (con->in_base_pos < end) {
1536 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001537 int have = size - left;
1538 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1539 if (ret <= 0)
1540 return ret;
1541 con->in_base_pos += ret;
1542 }
1543 return 1;
1544}
1545
1546
1547/*
1548 * Read all or part of the connect-side handshake on a new connection
1549 */
Sage Weileed0ef22009-11-10 14:34:36 -08001550static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001551{
Alex Elderfd516532012-05-10 10:29:50 -05001552 int size;
1553 int end;
1554 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001555
Sage Weileed0ef22009-11-10 14:34:36 -08001556 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001557
1558 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001559 size = strlen(CEPH_BANNER);
1560 end = size;
1561 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001562 if (ret <= 0)
1563 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001564
1565 size = sizeof (con->actual_peer_addr);
1566 end += size;
1567 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001568 if (ret <= 0)
1569 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001570
1571 size = sizeof (con->peer_addr_for_me);
1572 end += size;
1573 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001574 if (ret <= 0)
1575 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001576
Sage Weileed0ef22009-11-10 14:34:36 -08001577out:
1578 return ret;
1579}
1580
1581static int read_partial_connect(struct ceph_connection *con)
1582{
Alex Elderfd516532012-05-10 10:29:50 -05001583 int size;
1584 int end;
1585 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001586
1587 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1588
Alex Elderfd516532012-05-10 10:29:50 -05001589 size = sizeof (con->in_reply);
1590 end = size;
1591 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001592 if (ret <= 0)
1593 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001594
1595 size = le32_to_cpu(con->in_reply.authorizer_len);
1596 end += size;
1597 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001598 if (ret <= 0)
1599 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001600
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001601 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1602 con, (int)con->in_reply.tag,
1603 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001604 le32_to_cpu(con->in_reply.global_seq));
1605out:
1606 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001607
Sage Weil31b80062009-10-06 11:31:13 -07001608}
1609
1610/*
1611 * Verify the hello banner looks okay.
1612 */
1613static int verify_hello(struct ceph_connection *con)
1614{
1615 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001616 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001617 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001618 con->error_msg = "protocol error, bad banner";
1619 return -1;
1620 }
1621 return 0;
1622}
1623
1624static bool addr_is_blank(struct sockaddr_storage *ss)
1625{
1626 switch (ss->ss_family) {
1627 case AF_INET:
1628 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1629 case AF_INET6:
1630 return
1631 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1632 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1633 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1634 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1635 }
1636 return false;
1637}
1638
1639static int addr_port(struct sockaddr_storage *ss)
1640{
1641 switch (ss->ss_family) {
1642 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001643 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001644 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001645 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001646 }
1647 return 0;
1648}
1649
1650static void addr_set_port(struct sockaddr_storage *ss, int p)
1651{
1652 switch (ss->ss_family) {
1653 case AF_INET:
1654 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001655 break;
Sage Weil31b80062009-10-06 11:31:13 -07001656 case AF_INET6:
1657 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001658 break;
Sage Weil31b80062009-10-06 11:31:13 -07001659 }
1660}
1661
1662/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001663 * Unlike other *_pton function semantics, zero indicates success.
1664 */
1665static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1666 char delim, const char **ipend)
1667{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001668 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1669 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001670
1671 memset(ss, 0, sizeof(*ss));
1672
1673 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1674 ss->ss_family = AF_INET;
1675 return 0;
1676 }
1677
1678 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1679 ss->ss_family = AF_INET6;
1680 return 0;
1681 }
1682
1683 return -EINVAL;
1684}
1685
1686/*
1687 * Extract hostname string and resolve using kernel DNS facility.
1688 */
1689#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1690static int ceph_dns_resolve_name(const char *name, size_t namelen,
1691 struct sockaddr_storage *ss, char delim, const char **ipend)
1692{
1693 const char *end, *delim_p;
1694 char *colon_p, *ip_addr = NULL;
1695 int ip_len, ret;
1696
1697 /*
1698 * The end of the hostname occurs immediately preceding the delimiter or
1699 * the port marker (':') where the delimiter takes precedence.
1700 */
1701 delim_p = memchr(name, delim, namelen);
1702 colon_p = memchr(name, ':', namelen);
1703
1704 if (delim_p && colon_p)
1705 end = delim_p < colon_p ? delim_p : colon_p;
1706 else if (!delim_p && colon_p)
1707 end = colon_p;
1708 else {
1709 end = delim_p;
1710 if (!end) /* case: hostname:/ */
1711 end = name + namelen;
1712 }
1713
1714 if (end <= name)
1715 return -EINVAL;
1716
1717 /* do dns_resolve upcall */
1718 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1719 if (ip_len > 0)
1720 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1721 else
1722 ret = -ESRCH;
1723
1724 kfree(ip_addr);
1725
1726 *ipend = end;
1727
1728 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1729 ret, ret ? "failed" : ceph_pr_addr(ss));
1730
1731 return ret;
1732}
1733#else
1734static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1735 struct sockaddr_storage *ss, char delim, const char **ipend)
1736{
1737 return -EINVAL;
1738}
1739#endif
1740
1741/*
1742 * Parse a server name (IP or hostname). If a valid IP address is not found
1743 * then try to extract a hostname to resolve using userspace DNS upcall.
1744 */
1745static int ceph_parse_server_name(const char *name, size_t namelen,
1746 struct sockaddr_storage *ss, char delim, const char **ipend)
1747{
1748 int ret;
1749
1750 ret = ceph_pton(name, namelen, ss, delim, ipend);
1751 if (ret)
1752 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1753
1754 return ret;
1755}
1756
1757/*
Sage Weil31b80062009-10-06 11:31:13 -07001758 * Parse an ip[:port] list into an addr array. Use the default
1759 * monitor port if a port isn't specified.
1760 */
1761int ceph_parse_ips(const char *c, const char *end,
1762 struct ceph_entity_addr *addr,
1763 int max_count, int *count)
1764{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001765 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001766 const char *p = c;
1767
1768 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1769 for (i = 0; i < max_count; i++) {
1770 const char *ipend;
1771 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001772 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001773 char delim = ',';
1774
1775 if (*p == '[') {
1776 delim = ']';
1777 p++;
1778 }
Sage Weil31b80062009-10-06 11:31:13 -07001779
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001780 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1781 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001782 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001783 ret = -EINVAL;
1784
Sage Weil31b80062009-10-06 11:31:13 -07001785 p = ipend;
1786
Sage Weil39139f62010-07-08 09:54:52 -07001787 if (delim == ']') {
1788 if (*p != ']') {
1789 dout("missing matching ']'\n");
1790 goto bad;
1791 }
1792 p++;
1793 }
1794
Sage Weil31b80062009-10-06 11:31:13 -07001795 /* port? */
1796 if (p < end && *p == ':') {
1797 port = 0;
1798 p++;
1799 while (p < end && *p >= '0' && *p <= '9') {
1800 port = (port * 10) + (*p - '0');
1801 p++;
1802 }
1803 if (port > 65535 || port == 0)
1804 goto bad;
1805 } else {
1806 port = CEPH_MON_PORT;
1807 }
1808
1809 addr_set_port(ss, port);
1810
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001811 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001812
1813 if (p == end)
1814 break;
1815 if (*p != ',')
1816 goto bad;
1817 p++;
1818 }
1819
1820 if (p != end)
1821 goto bad;
1822
1823 if (count)
1824 *count = i + 1;
1825 return 0;
1826
1827bad:
Sage Weil39139f62010-07-08 09:54:52 -07001828 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001829 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001830}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001831EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001832
Sage Weileed0ef22009-11-10 14:34:36 -08001833static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001834{
Sage Weileed0ef22009-11-10 14:34:36 -08001835 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001836
1837 if (verify_hello(con) < 0)
1838 return -1;
1839
Sage Weil63f2d212009-11-03 15:17:56 -08001840 ceph_decode_addr(&con->actual_peer_addr);
1841 ceph_decode_addr(&con->peer_addr_for_me);
1842
Sage Weil31b80062009-10-06 11:31:13 -07001843 /*
1844 * Make sure the other end is who we wanted. note that the other
1845 * end may not yet know their ip address, so if it's 0.0.0.0, give
1846 * them the benefit of the doubt.
1847 */
Sage Weil103e2d32010-01-07 16:12:36 -08001848 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1849 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001850 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1851 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001852 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001853 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001854 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001855 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001856 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001857 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001858 return -1;
1859 }
1860
1861 /*
1862 * did we learn our address?
1863 */
1864 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1865 int port = addr_port(&con->msgr->inst.addr.in_addr);
1866
1867 memcpy(&con->msgr->inst.addr.in_addr,
1868 &con->peer_addr_for_me.in_addr,
1869 sizeof(con->peer_addr_for_me.in_addr));
1870 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001871 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001872 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001873 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001874 }
1875
Sage Weileed0ef22009-11-10 14:34:36 -08001876 return 0;
1877}
1878
1879static int process_connect(struct ceph_connection *con)
1880{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001881 u64 sup_feat = con->msgr->supported_features;
1882 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001883 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001884 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001885
Sage Weileed0ef22009-11-10 14:34:36 -08001886 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1887
Sage Weil31b80062009-10-06 11:31:13 -07001888 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001889 case CEPH_MSGR_TAG_FEATURES:
1890 pr_err("%s%lld %s feature set mismatch,"
1891 " my %llx < server's %llx, missing %llx\n",
1892 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001893 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001894 sup_feat, server_feat, server_feat & ~sup_feat);
1895 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001896 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001897 return -1;
1898
Sage Weil31b80062009-10-06 11:31:13 -07001899 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001900 pr_err("%s%lld %s protocol version mismatch,"
1901 " my %d != server's %d\n",
1902 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001903 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001904 le32_to_cpu(con->out_connect.protocol_version),
1905 le32_to_cpu(con->in_reply.protocol_version));
1906 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001907 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001908 return -1;
1909
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001910 case CEPH_MSGR_TAG_BADAUTHORIZER:
1911 con->auth_retry++;
1912 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1913 con->auth_retry);
1914 if (con->auth_retry == 2) {
1915 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001916 return -1;
1917 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07001918 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001919 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001920 if (ret < 0)
1921 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001922 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001923 break;
Sage Weil31b80062009-10-06 11:31:13 -07001924
1925 case CEPH_MSGR_TAG_RESETSESSION:
1926 /*
1927 * If we connected with a large connect_seq but the peer
1928 * has no record of a session with us (no connection, or
1929 * connect_seq == 0), they will send RESETSESION to indicate
1930 * that they must have reset their session, and may have
1931 * dropped messages.
1932 */
1933 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07001934 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001935 pr_err("%s%lld %s connection reset\n",
1936 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001937 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001938 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001939 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001940 ret = prepare_write_connect(con);
1941 if (ret < 0)
1942 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001943 prepare_read_connect(con);
1944
1945 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001946 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001947 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1948 if (con->ops->peer_reset)
1949 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001950 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07001951 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07001952 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001953 break;
1954
1955 case CEPH_MSGR_TAG_RETRY_SESSION:
1956 /*
1957 * If we sent a smaller connect_seq than the peer has, try
1958 * again with a larger value.
1959 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07001960 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001961 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07001962 le32_to_cpu(con->in_reply.connect_seq));
1963 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001964 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001965 ret = prepare_write_connect(con);
1966 if (ret < 0)
1967 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001968 prepare_read_connect(con);
1969 break;
1970
1971 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1972 /*
1973 * If we sent a smaller global_seq than the peer has, try
1974 * again with a larger value.
1975 */
Sage Weileed0ef22009-11-10 14:34:36 -08001976 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001977 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001978 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001979 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001980 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07001981 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001982 ret = prepare_write_connect(con);
1983 if (ret < 0)
1984 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001985 prepare_read_connect(con);
1986 break;
1987
Sage Weil3a230832013-03-25 08:47:40 -07001988 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07001989 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001990 if (req_feat & ~server_feat) {
1991 pr_err("%s%lld %s protocol feature mismatch,"
1992 " my required %llx > server's %llx, need %llx\n",
1993 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001994 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001995 req_feat, server_feat, req_feat & ~server_feat);
1996 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001997 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001998 return -1;
1999 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002000
Alex Elder122070a2012-12-26 10:43:57 -06002001 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002002 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002003 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002004 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2005 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002006 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002007 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2008 con->peer_global_seq,
2009 le32_to_cpu(con->in_reply.connect_seq),
2010 con->connect_seq);
2011 WARN_ON(con->connect_seq !=
2012 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002013
2014 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002015 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002016
Sage Weil85effe12012-07-30 16:22:05 -07002017 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002018
Sage Weil3a230832013-03-25 08:47:40 -07002019 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2020 prepare_write_seq(con);
2021 prepare_read_seq(con);
2022 } else {
2023 prepare_read_tag(con);
2024 }
Sage Weil31b80062009-10-06 11:31:13 -07002025 break;
2026
2027 case CEPH_MSGR_TAG_WAIT:
2028 /*
2029 * If there is a connection race (we are opening
2030 * connections to each other), one of us may just have
2031 * to WAIT. This shouldn't happen if we are the
2032 * client.
2033 */
Sage Weil04177882011-05-12 15:33:17 -07002034 pr_err("process_connect got WAIT as client\n");
2035 con->error_msg = "protocol error, got WAIT as client";
2036 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002037
2038 default:
2039 pr_err("connect protocol error, will retry\n");
2040 con->error_msg = "protocol error, garbage tag during connect";
2041 return -1;
2042 }
2043 return 0;
2044}
2045
2046
2047/*
2048 * read (part of) an ack
2049 */
2050static int read_partial_ack(struct ceph_connection *con)
2051{
Alex Elderfd516532012-05-10 10:29:50 -05002052 int size = sizeof (con->in_temp_ack);
2053 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002054
Alex Elderfd516532012-05-10 10:29:50 -05002055 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002056}
2057
Sage Weil31b80062009-10-06 11:31:13 -07002058/*
2059 * We can finally discard anything that's been acked.
2060 */
2061static void process_ack(struct ceph_connection *con)
2062{
2063 struct ceph_msg *m;
2064 u64 ack = le64_to_cpu(con->in_temp_ack);
2065 u64 seq;
2066
Sage Weil31b80062009-10-06 11:31:13 -07002067 while (!list_empty(&con->out_sent)) {
2068 m = list_first_entry(&con->out_sent, struct ceph_msg,
2069 list_head);
2070 seq = le64_to_cpu(m->hdr.seq);
2071 if (seq > ack)
2072 break;
2073 dout("got ack for seq %llu type %d at %p\n", seq,
2074 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002075 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002076 ceph_msg_remove(m);
2077 }
Sage Weil31b80062009-10-06 11:31:13 -07002078 prepare_read_tag(con);
2079}
2080
2081
Yehuda Sadeh24504182010-01-08 13:58:34 -08002082static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002083 struct kvec *section,
2084 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002085{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002086 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002087
Yehuda Sadeh24504182010-01-08 13:58:34 -08002088 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002089
Yehuda Sadeh24504182010-01-08 13:58:34 -08002090 while (section->iov_len < sec_len) {
2091 BUG_ON(section->iov_base == NULL);
2092 left = sec_len - section->iov_len;
2093 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2094 section->iov_len, left);
2095 if (ret <= 0)
2096 return ret;
2097 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002098 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002099 if (section->iov_len == sec_len)
2100 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002101
2102 return 1;
2103}
2104
Alex Elder34d2d202013-03-08 20:58:59 -06002105static int read_partial_msg_data(struct ceph_connection *con)
2106{
2107 struct ceph_msg *msg = con->in_msg;
Alex Elder6644ed72013-03-11 23:34:24 -05002108 struct ceph_msg_data_cursor *cursor = &msg->data->cursor;
Alex Elder34d2d202013-03-08 20:58:59 -06002109 const bool do_datacrc = !con->msgr->nocrc;
Alex Elder686be202013-03-11 23:34:23 -05002110 struct page *page;
2111 size_t page_offset;
2112 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002113 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002114 int ret;
2115
2116 BUG_ON(!msg);
Alex Elder6644ed72013-03-11 23:34:24 -05002117 if (!msg->data)
Alex Elder4c59b4a2013-03-11 23:34:23 -05002118 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002119
Alex Elderf5db90b2013-03-11 23:34:23 -05002120 if (do_datacrc)
2121 crc = con->in_data_crc;
Alex Elder643c68a2013-03-11 23:34:23 -05002122 while (cursor->resid) {
Alex Elder6644ed72013-03-11 23:34:24 -05002123 page = ceph_msg_data_next(msg->data, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05002124 NULL);
Alex Elder686be202013-03-11 23:34:23 -05002125 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002126 if (ret <= 0) {
2127 if (do_datacrc)
2128 con->in_data_crc = crc;
2129
Alex Elder686be202013-03-11 23:34:23 -05002130 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002131 }
Alex Elder686be202013-03-11 23:34:23 -05002132
2133 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002134 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Alex Elder6644ed72013-03-11 23:34:24 -05002135 (void) ceph_msg_data_advance(msg->data, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002136 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002137 if (do_datacrc)
2138 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002139
2140 return 1; /* must return > 0 to indicate success */
2141}
2142
Sage Weil31b80062009-10-06 11:31:13 -07002143/*
2144 * read (part of) a message.
2145 */
Alex Elder686be202013-03-11 23:34:23 -05002146static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2147
Sage Weil31b80062009-10-06 11:31:13 -07002148static int read_partial_message(struct ceph_connection *con)
2149{
2150 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002151 int size;
2152 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002153 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002154 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002155 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07002156 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002157 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002158
2159 dout("read_partial_message con %p msg %p\n", con, m);
2160
2161 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002162 size = sizeof (con->in_hdr);
2163 end = size;
2164 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002165 if (ret <= 0)
2166 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002167
2168 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2169 if (cpu_to_le32(crc) != con->in_hdr.crc) {
2170 pr_err("read_partial_message bad hdr "
2171 " crc %u != expected %u\n",
2172 crc, con->in_hdr.crc);
2173 return -EBADMSG;
2174 }
2175
Sage Weil31b80062009-10-06 11:31:13 -07002176 front_len = le32_to_cpu(con->in_hdr.front_len);
2177 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2178 return -EIO;
2179 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002180 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002181 return -EIO;
2182 data_len = le32_to_cpu(con->in_hdr.data_len);
2183 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2184 return -EIO;
2185
Sage Weilae187562010-04-22 07:47:01 -07002186 /* verify seq# */
2187 seq = le64_to_cpu(con->in_hdr.seq);
2188 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002189 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002190 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002191 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002192 seq, con->in_seq + 1);
2193 con->in_base_pos = -front_len - middle_len - data_len -
2194 sizeof(m->footer);
2195 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002196 return 0;
2197 } else if ((s64)seq - (s64)con->in_seq > 1) {
2198 pr_err("read_partial_message bad seq %lld expected %lld\n",
2199 seq, con->in_seq + 1);
2200 con->error_msg = "bad message sequence # for incoming message";
2201 return -EBADMSG;
2202 }
2203
Sage Weil31b80062009-10-06 11:31:13 -07002204 /* allocate message? */
2205 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002206 int skip = 0;
2207
Sage Weil31b80062009-10-06 11:31:13 -07002208 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002209 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002210 ret = ceph_con_in_msg_alloc(con, &skip);
2211 if (ret < 0)
2212 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002213 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002214 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002215 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07002216 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002217 con->in_base_pos = -front_len - middle_len - data_len -
2218 sizeof(m->footer);
2219 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002220 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002221 return 0;
2222 }
Alex Elder38941f82012-06-01 14:56:43 -05002223
Sage Weil4740a622012-07-30 18:19:30 -07002224 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002225 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002226 m = con->in_msg;
2227 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002228 if (m->middle)
2229 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002230
Alex Elder78625052013-03-06 23:39:39 -06002231 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002232
Alex Elder78625052013-03-06 23:39:39 -06002233 if (data_len)
Alex Elderf5db90b2013-03-11 23:34:23 -05002234 prepare_message_data(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002235 }
2236
2237 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002238 ret = read_partial_message_section(con, &m->front, front_len,
2239 &con->in_front_crc);
2240 if (ret <= 0)
2241 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002242
2243 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002244 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002245 ret = read_partial_message_section(con, &m->middle->vec,
2246 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002247 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002248 if (ret <= 0)
2249 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002250 }
2251
2252 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002253 if (data_len) {
2254 ret = read_partial_msg_data(con);
2255 if (ret <= 0)
2256 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002257 }
2258
Sage Weil31b80062009-10-06 11:31:13 -07002259 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002260 size = sizeof (m->footer);
2261 end += size;
2262 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002263 if (ret <= 0)
2264 return ret;
2265
Sage Weil31b80062009-10-06 11:31:13 -07002266 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2267 m, front_len, m->footer.front_crc, middle_len,
2268 m->footer.middle_crc, data_len, m->footer.data_crc);
2269
2270 /* crc ok? */
2271 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2272 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2273 m, con->in_front_crc, m->footer.front_crc);
2274 return -EBADMSG;
2275 }
2276 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2277 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2278 m, con->in_middle_crc, m->footer.middle_crc);
2279 return -EBADMSG;
2280 }
Alex Elderbca064d2012-02-15 07:43:54 -06002281 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002282 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2283 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2284 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2285 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2286 return -EBADMSG;
2287 }
2288
2289 return 1; /* done! */
2290}
2291
2292/*
2293 * Process message. This happens in the worker thread. The callback should
2294 * be careful not to do anything that waits on other incoming messages or it
2295 * may deadlock.
2296 */
2297static void process_message(struct ceph_connection *con)
2298{
Sage Weil5e095e82009-12-14 14:30:34 -08002299 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002300
Alex Elder38941f82012-06-01 14:56:43 -05002301 BUG_ON(con->in_msg->con != con);
2302 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002303 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002304 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002305 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002306
2307 /* if first message, set peer_name */
2308 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002309 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002310
Sage Weil31b80062009-10-06 11:31:13 -07002311 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002312 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002313
2314 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2315 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002316 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002317 le16_to_cpu(msg->hdr.type),
2318 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2319 le32_to_cpu(msg->hdr.front_len),
2320 le32_to_cpu(msg->hdr.data_len),
2321 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2322 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002323
2324 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002325}
2326
2327
2328/*
2329 * Write something to the socket. Called in a worker thread when the
2330 * socket appears to be writeable and we have something ready to send.
2331 */
2332static int try_write(struct ceph_connection *con)
2333{
Sage Weil31b80062009-10-06 11:31:13 -07002334 int ret = 1;
2335
Sage Weild59315c2012-06-21 12:49:23 -07002336 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002337
Sage Weil31b80062009-10-06 11:31:13 -07002338more:
2339 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2340
2341 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002342 if (con->state == CON_STATE_PREOPEN) {
2343 BUG_ON(con->sock);
2344 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002345
Alex Eldere2200422012-05-23 14:35:23 -05002346 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002347 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002348 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002349
Sage Weilcf3e5c42009-12-11 09:48:05 -08002350 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002351 con->in_tag = CEPH_MSGR_TAG_READY;
2352 dout("try_write initiating connect on %p new state %lu\n",
2353 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002354 ret = ceph_tcp_connect(con);
2355 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002356 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002357 goto out;
2358 }
2359 }
2360
2361more_kvec:
2362 /* kvec data queued? */
2363 if (con->out_skip) {
2364 ret = write_partial_skip(con);
2365 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002366 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002367 }
2368 if (con->out_kvec_left) {
2369 ret = write_partial_kvec(con);
2370 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002371 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002372 }
2373
2374 /* msg pages? */
2375 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002376 if (con->out_msg_done) {
2377 ceph_msg_put(con->out_msg);
2378 con->out_msg = NULL; /* we're done with this one */
2379 goto do_next;
2380 }
2381
Alex Elder34d2d202013-03-08 20:58:59 -06002382 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002383 if (ret == 1)
2384 goto more_kvec; /* we need to send the footer, too! */
2385 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002386 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002387 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002388 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002389 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002390 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002391 }
2392 }
2393
Sage Weilc86a2932009-12-14 14:04:30 -08002394do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002395 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002396 /* is anything else pending? */
2397 if (!list_empty(&con->out_queue)) {
2398 prepare_write_message(con);
2399 goto more;
2400 }
2401 if (con->in_seq > con->in_seq_acked) {
2402 prepare_write_ack(con);
2403 goto more;
2404 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002405 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002406 prepare_write_keepalive(con);
2407 goto more;
2408 }
2409 }
2410
2411 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002412 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002413 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002414 ret = 0;
2415out:
Sage Weil42961d22011-01-25 08:19:34 -08002416 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002417 return ret;
2418}
2419
2420
2421
2422/*
2423 * Read what we can from the socket.
2424 */
2425static int try_read(struct ceph_connection *con)
2426{
Sage Weil31b80062009-10-06 11:31:13 -07002427 int ret = -1;
2428
Sage Weil31b80062009-10-06 11:31:13 -07002429more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002430 dout("try_read start on %p state %lu\n", con, con->state);
2431 if (con->state != CON_STATE_CONNECTING &&
2432 con->state != CON_STATE_NEGOTIATING &&
2433 con->state != CON_STATE_OPEN)
2434 return 0;
2435
2436 BUG_ON(!con->sock);
2437
Sage Weil31b80062009-10-06 11:31:13 -07002438 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2439 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002440
Sage Weil8dacc7d2012-07-20 17:24:40 -07002441 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002442 dout("try_read connecting\n");
2443 ret = read_partial_banner(con);
2444 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002445 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002446 ret = process_banner(con);
2447 if (ret < 0)
2448 goto out;
2449
Sage Weil8dacc7d2012-07-20 17:24:40 -07002450 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002451
Jim Schutt6d4221b2012-08-10 10:37:38 -07002452 /*
2453 * Received banner is good, exchange connection info.
2454 * Do not reset out_kvec, as sending our banner raced
2455 * with receiving peer banner after connect completed.
2456 */
Alex Elder7593af92012-05-24 11:55:03 -05002457 ret = prepare_write_connect(con);
2458 if (ret < 0)
2459 goto out;
2460 prepare_read_connect(con);
2461
2462 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002463 goto out;
2464 }
2465
Sage Weil8dacc7d2012-07-20 17:24:40 -07002466 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002467 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002468 ret = read_partial_connect(con);
2469 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002470 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002471 ret = process_connect(con);
2472 if (ret < 0)
2473 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002474 goto more;
2475 }
2476
Alex Elder122070a2012-12-26 10:43:57 -06002477 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002478
Sage Weil31b80062009-10-06 11:31:13 -07002479 if (con->in_base_pos < 0) {
2480 /*
2481 * skipping + discarding content.
2482 *
2483 * FIXME: there must be a better way to do this!
2484 */
Alex Elder84495f42012-02-15 07:43:55 -06002485 static char buf[SKIP_BUF_SIZE];
2486 int skip = min((int) sizeof (buf), -con->in_base_pos);
2487
Sage Weil31b80062009-10-06 11:31:13 -07002488 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2489 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2490 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002491 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002492 con->in_base_pos += ret;
2493 if (con->in_base_pos)
2494 goto more;
2495 }
2496 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2497 /*
2498 * what's next?
2499 */
2500 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2501 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002502 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002503 dout("try_read got tag %d\n", (int)con->in_tag);
2504 switch (con->in_tag) {
2505 case CEPH_MSGR_TAG_MSG:
2506 prepare_read_message(con);
2507 break;
2508 case CEPH_MSGR_TAG_ACK:
2509 prepare_read_ack(con);
2510 break;
2511 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002512 con_close_socket(con);
2513 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002514 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002515 default:
2516 goto bad_tag;
2517 }
2518 }
2519 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2520 ret = read_partial_message(con);
2521 if (ret <= 0) {
2522 switch (ret) {
2523 case -EBADMSG:
2524 con->error_msg = "bad crc";
2525 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002526 break;
Sage Weil31b80062009-10-06 11:31:13 -07002527 case -EIO:
2528 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002529 break;
Sage Weil31b80062009-10-06 11:31:13 -07002530 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002531 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002532 }
2533 if (con->in_tag == CEPH_MSGR_TAG_READY)
2534 goto more;
2535 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002536 if (con->state == CON_STATE_OPEN)
2537 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002538 goto more;
2539 }
Sage Weil3a230832013-03-25 08:47:40 -07002540 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2541 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2542 /*
2543 * the final handshake seq exchange is semantically
2544 * equivalent to an ACK
2545 */
Sage Weil31b80062009-10-06 11:31:13 -07002546 ret = read_partial_ack(con);
2547 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002548 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002549 process_ack(con);
2550 goto more;
2551 }
2552
Sage Weil31b80062009-10-06 11:31:13 -07002553out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002554 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002555 return ret;
2556
2557bad_tag:
2558 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2559 con->error_msg = "protocol error, garbage tag";
2560 ret = -1;
2561 goto out;
2562}
2563
2564
2565/*
Alex Elder802c6d92012-10-08 20:37:30 -07002566 * Atomically queue work on a connection after the specified delay.
2567 * Bump @con reference to avoid races with connection teardown.
2568 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002569 */
Alex Elder802c6d92012-10-08 20:37:30 -07002570static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002571{
Sage Weil31b80062009-10-06 11:31:13 -07002572 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002573 dout("%s %p ref count 0\n", __func__, con);
2574
2575 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002576 }
2577
Alex Elder802c6d92012-10-08 20:37:30 -07002578 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2579 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002580 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002581
2582 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002583 }
Alex Elder802c6d92012-10-08 20:37:30 -07002584
2585 dout("%s %p %lu\n", __func__, con, delay);
2586
2587 return 0;
2588}
2589
2590static void queue_con(struct ceph_connection *con)
2591{
2592 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002593}
2594
Alex Elder7bb21d682012-12-07 19:50:07 -06002595static bool con_sock_closed(struct ceph_connection *con)
2596{
Alex Elderc9ffc772013-02-20 10:25:12 -06002597 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002598 return false;
2599
2600#define CASE(x) \
2601 case CON_STATE_ ## x: \
2602 con->error_msg = "socket closed (con state " #x ")"; \
2603 break;
2604
2605 switch (con->state) {
2606 CASE(CLOSED);
2607 CASE(PREOPEN);
2608 CASE(CONNECTING);
2609 CASE(NEGOTIATING);
2610 CASE(OPEN);
2611 CASE(STANDBY);
2612 default:
2613 pr_warning("%s con %p unrecognized state %lu\n",
2614 __func__, con, con->state);
2615 con->error_msg = "unrecognized con state";
2616 BUG();
2617 break;
2618 }
2619#undef CASE
2620
2621 return true;
2622}
2623
Alex Elderf20a39f2013-02-19 12:25:57 -06002624static bool con_backoff(struct ceph_connection *con)
2625{
2626 int ret;
2627
2628 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2629 return false;
2630
2631 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2632 if (ret) {
2633 dout("%s: con %p FAILED to back off %lu\n", __func__,
2634 con, con->delay);
2635 BUG_ON(ret == -ENOENT);
2636 con_flag_set(con, CON_FLAG_BACKOFF);
2637 }
2638
2639 return true;
2640}
2641
Alex Elder93209262013-02-19 12:25:57 -06002642/* Finish fault handling; con->mutex must *not* be held here */
2643
2644static void con_fault_finish(struct ceph_connection *con)
2645{
2646 /*
2647 * in case we faulted due to authentication, invalidate our
2648 * current tickets so that we can get new ones.
2649 */
2650 if (con->auth_retry && con->ops->invalidate_authorizer) {
2651 dout("calling invalidate_authorizer()\n");
2652 con->ops->invalidate_authorizer(con);
2653 }
2654
2655 if (con->ops->fault)
2656 con->ops->fault(con);
2657}
2658
Sage Weil31b80062009-10-06 11:31:13 -07002659/*
2660 * Do some work on a connection. Drop a connection ref when we're done.
2661 */
2662static void con_work(struct work_struct *work)
2663{
2664 struct ceph_connection *con = container_of(work, struct ceph_connection,
2665 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002666 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002667
Sage Weil9dd46582010-04-28 13:51:50 -07002668 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002669 while (true) {
2670 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002671
Alex Elder49659412013-02-19 12:25:57 -06002672 if ((fault = con_sock_closed(con))) {
2673 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2674 break;
2675 }
2676 if (con_backoff(con)) {
2677 dout("%s: con %p BACKOFF\n", __func__, con);
2678 break;
2679 }
2680 if (con->state == CON_STATE_STANDBY) {
2681 dout("%s: con %p STANDBY\n", __func__, con);
2682 break;
2683 }
2684 if (con->state == CON_STATE_CLOSED) {
2685 dout("%s: con %p CLOSED\n", __func__, con);
2686 BUG_ON(con->sock);
2687 break;
2688 }
2689 if (con->state == CON_STATE_PREOPEN) {
2690 dout("%s: con %p PREOPEN\n", __func__, con);
2691 BUG_ON(con->sock);
2692 }
Sage Weil0da5d702011-05-19 11:21:05 -07002693
Alex Elder49659412013-02-19 12:25:57 -06002694 ret = try_read(con);
2695 if (ret < 0) {
2696 if (ret == -EAGAIN)
2697 continue;
2698 con->error_msg = "socket error on read";
2699 fault = true;
2700 break;
2701 }
2702
2703 ret = try_write(con);
2704 if (ret < 0) {
2705 if (ret == -EAGAIN)
2706 continue;
2707 con->error_msg = "socket error on write";
2708 fault = true;
2709 }
2710
2711 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002712 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002713 if (fault)
2714 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002715 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002716
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002717 if (fault)
2718 con_fault_finish(con);
2719
2720 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002721}
2722
Sage Weil31b80062009-10-06 11:31:13 -07002723/*
2724 * Generic error/fault handler. A retry mechanism is used with
2725 * exponential backoff
2726 */
Alex Elder93209262013-02-19 12:25:57 -06002727static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002728{
Alex Elder28362982012-12-14 16:47:41 -06002729 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002730 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002731 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002732 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002733
Alex Elder122070a2012-12-26 10:43:57 -06002734 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002735 con->state != CON_STATE_NEGOTIATING &&
2736 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002737
Sage Weil31b80062009-10-06 11:31:13 -07002738 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002739
Alex Elderc9ffc772013-02-20 10:25:12 -06002740 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002741 dout("fault on LOSSYTX channel, marking CLOSED\n");
2742 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002743 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002744 }
2745
Sage Weil5e095e82009-12-14 14:30:34 -08002746 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002747 BUG_ON(con->in_msg->con != con);
2748 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002749 ceph_msg_put(con->in_msg);
2750 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002751 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002752 }
Sage Weil31b80062009-10-06 11:31:13 -07002753
Sage Weile80a52d2010-02-25 12:40:45 -08002754 /* Requeue anything that hasn't been acked */
2755 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002756
Sage Weile76661d2011-03-03 10:10:15 -08002757 /* If there are no messages queued or keepalive pending, place
2758 * the connection in a STANDBY state */
2759 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002760 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002761 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002762 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002763 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002764 } else {
2765 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002766 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002767 if (con->delay == 0)
2768 con->delay = BASE_DELAY_INTERVAL;
2769 else if (con->delay < MAX_DELAY_INTERVAL)
2770 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002771 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002772 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002773 }
Sage Weil31b80062009-10-06 11:31:13 -07002774}
2775
2776
2777
2778/*
Alex Elder15d98822012-05-26 23:26:43 -05002779 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002780 */
Alex Elder15d98822012-05-26 23:26:43 -05002781void ceph_messenger_init(struct ceph_messenger *msgr,
2782 struct ceph_entity_addr *myaddr,
2783 u32 supported_features,
2784 u32 required_features,
2785 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002786{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002787 msgr->supported_features = supported_features;
2788 msgr->required_features = required_features;
2789
Sage Weil31b80062009-10-06 11:31:13 -07002790 spin_lock_init(&msgr->global_seq_lock);
2791
Sage Weil31b80062009-10-06 11:31:13 -07002792 if (myaddr)
2793 msgr->inst.addr = *myaddr;
2794
2795 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002796 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002797 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002798 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002799 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002800
Guanjun Hea2a32582012-07-08 19:50:33 -07002801 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002802
Alex Elder15d98822012-05-26 23:26:43 -05002803 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002804}
Alex Elder15d98822012-05-26 23:26:43 -05002805EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002806
Sage Weile00de342011-03-04 12:25:05 -08002807static void clear_standby(struct ceph_connection *con)
2808{
2809 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002810 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002811 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002812 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002813 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002814 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2815 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002816 }
2817}
2818
Sage Weil31b80062009-10-06 11:31:13 -07002819/*
2820 * Queue up an outgoing message on the given connection.
2821 */
2822void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2823{
Sage Weila59b55a2012-07-20 15:34:04 -07002824 /* set src+dst */
2825 msg->hdr.src = con->msgr->inst.name;
2826 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2827 msg->needs_out_seq = true;
2828
2829 mutex_lock(&con->mutex);
2830
Sage Weil8dacc7d2012-07-20 17:24:40 -07002831 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002832 dout("con_send %p closed, dropping %p\n", con, msg);
2833 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002834 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002835 return;
2836 }
2837
Alex Elder38941f82012-06-01 14:56:43 -05002838 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002839 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002840 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002841
Sage Weil31b80062009-10-06 11:31:13 -07002842 BUG_ON(!list_empty(&msg->list_head));
2843 list_add_tail(&msg->list_head, &con->out_queue);
2844 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2845 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2846 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2847 le32_to_cpu(msg->hdr.front_len),
2848 le32_to_cpu(msg->hdr.middle_len),
2849 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002850
2851 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002852 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002853
2854 /* if there wasn't anything waiting to send before, queue
2855 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002856 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002857 queue_con(con);
2858}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002859EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002860
2861/*
2862 * Revoke a message that was previously queued for send
2863 */
Alex Elder6740a842012-06-01 14:56:43 -05002864void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002865{
Alex Elder6740a842012-06-01 14:56:43 -05002866 struct ceph_connection *con = msg->con;
2867
2868 if (!con)
2869 return; /* Message not in our possession */
2870
Sage Weilec302642009-12-22 10:43:42 -08002871 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002872 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002873 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002874 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002875 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002876 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002877 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002878 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002879
Sage Weil31b80062009-10-06 11:31:13 -07002880 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002881 }
2882 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002883 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002884 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002885 if (con->out_kvec_is_msg) {
2886 con->out_skip = con->out_kvec_bytes;
2887 con->out_kvec_is_msg = false;
2888 }
Sage Weiled98ada2010-07-05 12:15:14 -07002889 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002890
2891 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002892 }
Sage Weilec302642009-12-22 10:43:42 -08002893 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002894}
2895
2896/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002897 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002898 */
Alex Elder8921d112012-06-01 14:56:43 -05002899void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002900{
Alex Elder8921d112012-06-01 14:56:43 -05002901 struct ceph_connection *con;
2902
2903 BUG_ON(msg == NULL);
2904 if (!msg->con) {
2905 dout("%s msg %p null con\n", __func__, msg);
2906
2907 return; /* Message not in our possession */
2908 }
2909
2910 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002911 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002912 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002913 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2914 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2915 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002916
2917 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002918 dout("%s %p msg %p revoked\n", __func__, con, msg);
2919 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002920 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002921 front_len -
2922 middle_len -
2923 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002924 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002925 ceph_msg_put(con->in_msg);
2926 con->in_msg = NULL;
2927 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002928 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002929 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002930 dout("%s %p in_msg %p msg %p no-op\n",
2931 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002932 }
2933 mutex_unlock(&con->mutex);
2934}
2935
2936/*
Sage Weil31b80062009-10-06 11:31:13 -07002937 * Queue a keepalive byte to ensure the tcp connection is alive.
2938 */
2939void ceph_con_keepalive(struct ceph_connection *con)
2940{
Sage Weile00de342011-03-04 12:25:05 -08002941 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07002942 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08002943 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07002944 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06002945 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
2946 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002947 queue_con(con);
2948}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002949EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002950
Alex Elder6644ed72013-03-11 23:34:24 -05002951static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
Alex Elder43794502013-03-01 18:00:16 -06002952{
Alex Elder6644ed72013-03-11 23:34:24 -05002953 struct ceph_msg_data *data;
2954
2955 if (WARN_ON(!ceph_msg_data_type_valid(type)))
2956 return NULL;
2957
2958 data = kzalloc(sizeof (*data), GFP_NOFS);
2959 if (data)
2960 data->type = type;
2961
2962 return data;
2963}
2964
2965static void ceph_msg_data_destroy(struct ceph_msg_data *data)
2966{
2967 if (!data)
2968 return;
2969
2970 if (data->type == CEPH_MSG_DATA_PAGELIST) {
2971 ceph_pagelist_release(data->pagelist);
2972 kfree(data->pagelist);
2973 }
2974 kfree(data);
Alex Elder43794502013-03-01 18:00:16 -06002975}
2976
Alex Elder02afca62013-02-14 12:16:43 -06002977void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06002978 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06002979{
Alex Elder6644ed72013-03-11 23:34:24 -05002980 struct ceph_msg_data *data;
2981
Alex Elder07aa1552013-03-04 18:29:06 -06002982 BUG_ON(!pages);
2983 BUG_ON(!length);
Alex Eldera1930802013-03-14 14:09:06 -05002984 BUG_ON(msg->data_length);
Alex Elder6644ed72013-03-11 23:34:24 -05002985 BUG_ON(msg->data != NULL);
Alex Elder02afca62013-02-14 12:16:43 -06002986
Alex Elder6644ed72013-03-11 23:34:24 -05002987 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
2988 BUG_ON(!data);
2989 data->pages = pages;
2990 data->length = length;
2991 data->alignment = alignment & ~PAGE_MASK;
2992
2993 msg->data = data;
Alex Eldera1930802013-03-14 14:09:06 -05002994 msg->data_length = length;
Alex Elder02afca62013-02-14 12:16:43 -06002995}
2996EXPORT_SYMBOL(ceph_msg_data_set_pages);
Sage Weil31b80062009-10-06 11:31:13 -07002997
Alex Elder27fa8382013-02-14 12:16:43 -06002998void ceph_msg_data_set_pagelist(struct ceph_msg *msg,
2999 struct ceph_pagelist *pagelist)
3000{
Alex Elder6644ed72013-03-11 23:34:24 -05003001 struct ceph_msg_data *data;
3002
Alex Elder07aa1552013-03-04 18:29:06 -06003003 BUG_ON(!pagelist);
3004 BUG_ON(!pagelist->length);
Alex Eldera1930802013-03-14 14:09:06 -05003005 BUG_ON(msg->data_length);
Alex Elder6644ed72013-03-11 23:34:24 -05003006 BUG_ON(msg->data != NULL);
Alex Elder27fa8382013-02-14 12:16:43 -06003007
Alex Elder6644ed72013-03-11 23:34:24 -05003008 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3009 BUG_ON(!data);
3010 data->pagelist = pagelist;
3011
3012 msg->data = data;
Alex Eldera1930802013-03-14 14:09:06 -05003013 msg->data_length = pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003014}
3015EXPORT_SYMBOL(ceph_msg_data_set_pagelist);
3016
Alex Eldera1930802013-03-14 14:09:06 -05003017void ceph_msg_data_set_bio(struct ceph_msg *msg, struct bio *bio,
3018 size_t length)
Alex Elder27fa8382013-02-14 12:16:43 -06003019{
Alex Elder6644ed72013-03-11 23:34:24 -05003020 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003021
Alex Elder6644ed72013-03-11 23:34:24 -05003022 BUG_ON(!bio);
Alex Eldera1930802013-03-14 14:09:06 -05003023 BUG_ON(msg->data_length);
Alex Elder6644ed72013-03-11 23:34:24 -05003024 BUG_ON(msg->data != NULL);
3025
3026 data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3027 BUG_ON(!data);
3028 data->bio = bio;
3029
3030 msg->data = data;
Alex Eldera1930802013-03-14 14:09:06 -05003031 msg->data_length = length;
Alex Elder27fa8382013-02-14 12:16:43 -06003032}
3033EXPORT_SYMBOL(ceph_msg_data_set_bio);
3034
Sage Weil31b80062009-10-06 11:31:13 -07003035/*
3036 * construct a new message with given type, size
3037 * the new msg has a ref count of 1.
3038 */
Sage Weilb61c2762011-08-09 15:03:46 -07003039struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3040 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003041{
3042 struct ceph_msg *m;
3043
Alex Elder9516e452013-03-01 18:00:16 -06003044 m = kzalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07003045 if (m == NULL)
3046 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003047
Sage Weil31b80062009-10-06 11:31:13 -07003048 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003049 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003050 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003051
Alex Elder9516e452013-03-01 18:00:16 -06003052 INIT_LIST_HEAD(&m->list_head);
3053 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00003054
Sage Weil31b80062009-10-06 11:31:13 -07003055 /* front */
Alex Elder9516e452013-03-01 18:00:16 -06003056 m->front_max = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003057 if (front_len) {
3058 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003059 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07003060 PAGE_KERNEL);
3061 m->front_is_vmalloc = true;
3062 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07003063 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003064 }
3065 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003066 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003067 front_len);
3068 goto out2;
3069 }
3070 } else {
3071 m->front.iov_base = NULL;
3072 }
3073 m->front.iov_len = front_len;
3074
Sage Weilbb257662010-04-01 16:07:23 -07003075 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003076 return m;
3077
3078out2:
3079 ceph_msg_put(m);
3080out:
Sage Weilb61c2762011-08-09 15:03:46 -07003081 if (!can_fail) {
3082 pr_err("msg_new can't create type %d front %d\n", type,
3083 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003084 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003085 } else {
3086 dout("msg_new can't create type %d front %d\n", type,
3087 front_len);
3088 }
Sage Weila79832f2010-04-01 16:06:19 -07003089 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003090}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003091EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003092
3093/*
Sage Weil31b80062009-10-06 11:31:13 -07003094 * Allocate "middle" portion of a message, if it is needed and wasn't
3095 * allocated by alloc_msg. This allows us to read a small fixed-size
3096 * per-type header in the front and then gracefully fail (i.e.,
3097 * propagate the error to the caller based on info in the front) when
3098 * the middle is too large.
3099 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003100static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003101{
3102 int type = le16_to_cpu(msg->hdr.type);
3103 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3104
3105 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3106 ceph_msg_type_name(type), middle_len);
3107 BUG_ON(!middle_len);
3108 BUG_ON(msg->middle);
3109
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003110 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003111 if (!msg->middle)
3112 return -ENOMEM;
3113 return 0;
3114}
3115
Yehuda Sadeh24504182010-01-08 13:58:34 -08003116/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003117 * Allocate a message for receiving an incoming message on a
3118 * connection, and save the result in con->in_msg. Uses the
3119 * connection's private alloc_msg op if available.
3120 *
Sage Weil4740a622012-07-30 18:19:30 -07003121 * Returns 0 on success, or a negative error code.
3122 *
3123 * On success, if we set *skip = 1:
3124 * - the next message should be skipped and ignored.
3125 * - con->in_msg == NULL
3126 * or if we set *skip = 0:
3127 * - con->in_msg is non-null.
3128 * On error (ENOMEM, EAGAIN, ...),
3129 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003130 */
Sage Weil4740a622012-07-30 18:19:30 -07003131static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003132{
Sage Weil4740a622012-07-30 18:19:30 -07003133 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003134 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003135 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003136 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003137
Alex Elder1c20f2d2012-06-04 14:43:32 -05003138 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003139 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003140
Alex Elder53ded492013-03-01 18:00:14 -06003141 mutex_unlock(&con->mutex);
3142 msg = con->ops->alloc_msg(con, hdr, skip);
3143 mutex_lock(&con->mutex);
3144 if (con->state != CON_STATE_OPEN) {
3145 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003146 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003147 return -EAGAIN;
3148 }
Alex Elder41375772013-03-05 09:25:10 -06003149 if (msg) {
3150 BUG_ON(*skip);
3151 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003152 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003153 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003154 } else {
3155 /*
3156 * Null message pointer means either we should skip
3157 * this message or we couldn't allocate memory. The
3158 * former is not an error.
3159 */
3160 if (*skip)
3161 return 0;
3162 con->error_msg = "error allocating memory for incoming message";
3163
Alex Elder53ded492013-03-01 18:00:14 -06003164 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003165 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003166 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003167
Alex Elder1c20f2d2012-06-04 14:43:32 -05003168 if (middle_len && !con->in_msg->middle) {
3169 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003170 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003171 ceph_msg_put(con->in_msg);
3172 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003173 }
3174 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003175
Sage Weil4740a622012-07-30 18:19:30 -07003176 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003177}
3178
Sage Weil31b80062009-10-06 11:31:13 -07003179
3180/*
3181 * Free a generically kmalloc'd message.
3182 */
3183void ceph_msg_kfree(struct ceph_msg *m)
3184{
3185 dout("msg_kfree %p\n", m);
3186 if (m->front_is_vmalloc)
3187 vfree(m->front.iov_base);
3188 else
3189 kfree(m->front.iov_base);
3190 kfree(m);
3191}
3192
3193/*
3194 * Drop a msg ref. Destroy as needed.
3195 */
Sage Weilc2e552e2009-12-07 15:55:05 -08003196void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003197{
Sage Weilc2e552e2009-12-07 15:55:05 -08003198 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07003199
Sage Weilc2e552e2009-12-07 15:55:05 -08003200 dout("ceph_msg_put last one on %p\n", m);
3201 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003202
Sage Weilc2e552e2009-12-07 15:55:05 -08003203 /* drop middle, data, if any */
3204 if (m->middle) {
3205 ceph_buffer_put(m->middle);
3206 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003207 }
Alex Elder6644ed72013-03-11 23:34:24 -05003208 ceph_msg_data_destroy(m->data);
3209 m->data = NULL;
Alex Eldera1930802013-03-14 14:09:06 -05003210 m->data_length = 0;
Sage Weil58bb3b32009-12-23 12:12:31 -08003211
Sage Weilc2e552e2009-12-07 15:55:05 -08003212 if (m->pool)
3213 ceph_msgpool_put(m->pool, m);
3214 else
3215 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07003216}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003217EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003218
3219void ceph_msg_dump(struct ceph_msg *msg)
3220{
Alex Elder4a73ef22013-03-07 15:38:26 -06003221 pr_debug("msg_dump %p (front_max %d length %zd)\n", msg,
Alex Elder6644ed72013-03-11 23:34:24 -05003222 msg->front_max, msg->data->length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003223 print_hex_dump(KERN_DEBUG, "header: ",
3224 DUMP_PREFIX_OFFSET, 16, 1,
3225 &msg->hdr, sizeof(msg->hdr), true);
3226 print_hex_dump(KERN_DEBUG, " front: ",
3227 DUMP_PREFIX_OFFSET, 16, 1,
3228 msg->front.iov_base, msg->front.iov_len, true);
3229 if (msg->middle)
3230 print_hex_dump(KERN_DEBUG, "middle: ",
3231 DUMP_PREFIX_OFFSET, 16, 1,
3232 msg->middle->vec.iov_base,
3233 msg->middle->vec.iov_len, true);
3234 print_hex_dump(KERN_DEBUG, "footer: ",
3235 DUMP_PREFIX_OFFSET, 16, 1,
3236 &msg->footer, sizeof(msg->footer), true);
3237}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003238EXPORT_SYMBOL(ceph_msg_dump);