blob: e75a03d25c9f3d6f67a57ab926d324ca7abcf184 [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
24/*
25 * Ceph uses the messenger to exchange ceph_msg messages with other
26 * hosts in the system. The messenger provides ordered and reliable
27 * delivery. We tolerate TCP disconnects by reconnecting (with
28 * exponential backoff) in the case of a fault (disconnection, bad
29 * crc, protocol error). Acks allow sent messages to be discarded by
30 * the sender.
31 */
32
Alex Elderbc18f4b2012-06-20 21:53:53 -050033/*
34 * We track the state of the socket on a given connection using
35 * values defined below. The transition to a new socket state is
36 * handled by a function which verifies we aren't coming from an
37 * unexpected state.
38 *
39 * --------
40 * | NEW* | transient initial state
41 * --------
42 * | con_sock_state_init()
43 * v
44 * ----------
45 * | CLOSED | initialized, but no socket (and no
46 * ---------- TCP connection)
47 * ^ \
48 * | \ con_sock_state_connecting()
49 * | ----------------------
50 * | \
51 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070052 * |+--------------------------- \
53 * | \ \ \
54 * | ----------- \ \
55 * | | CLOSING | socket event; \ \
56 * | ----------- await close \ \
57 * | ^ \ |
58 * | | \ |
59 * | + con_sock_state_closing() \ |
60 * | / \ | |
61 * | / --------------- | |
62 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050063 * | / --------------
64 * | / -----------------| CONNECTING | socket created, TCP
65 * | | / -------------- connect initiated
66 * | | | con_sock_state_connected()
67 * | | v
68 * -------------
69 * | CONNECTED | TCP connection established
70 * -------------
71 *
72 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
73 */
Alex Elderce2c8902012-05-22 22:15:49 -050074
75#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
76#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
77#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
78#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
79#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
80
Sage Weil8dacc7d2012-07-20 17:24:40 -070081/*
82 * connection states
83 */
84#define CON_STATE_CLOSED 1 /* -> PREOPEN */
85#define CON_STATE_PREOPEN 2 /* -> CONNECTING, CLOSED */
86#define CON_STATE_CONNECTING 3 /* -> NEGOTIATING, CLOSED */
87#define CON_STATE_NEGOTIATING 4 /* -> OPEN, CLOSED */
88#define CON_STATE_OPEN 5 /* -> STANDBY, CLOSED */
89#define CON_STATE_STANDBY 6 /* -> PREOPEN, CLOSED */
90
Sage Weil4a861692012-07-20 17:29:55 -070091/*
92 * ceph_connection flag bits
93 */
94#define CON_FLAG_LOSSYTX 0 /* we can close channel or drop
95 * messages on errors */
96#define CON_FLAG_KEEPALIVE_PENDING 1 /* we need to send a keepalive */
97#define CON_FLAG_WRITE_PENDING 2 /* we have data ready to send */
98#define CON_FLAG_SOCK_CLOSED 3 /* socket state changed to closed */
99#define CON_FLAG_BACKOFF 4 /* need to retry queuing delayed work */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700100
Alex Elderc9ffc772013-02-20 10:25:12 -0600101static bool con_flag_valid(unsigned long con_flag)
102{
103 switch (con_flag) {
104 case CON_FLAG_LOSSYTX:
105 case CON_FLAG_KEEPALIVE_PENDING:
106 case CON_FLAG_WRITE_PENDING:
107 case CON_FLAG_SOCK_CLOSED:
108 case CON_FLAG_BACKOFF:
109 return true;
110 default:
111 return false;
112 }
113}
114
115static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
116{
117 BUG_ON(!con_flag_valid(con_flag));
118
119 clear_bit(con_flag, &con->flags);
120}
121
122static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
123{
124 BUG_ON(!con_flag_valid(con_flag));
125
126 set_bit(con_flag, &con->flags);
127}
128
129static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
130{
131 BUG_ON(!con_flag_valid(con_flag));
132
133 return test_bit(con_flag, &con->flags);
134}
135
136static bool con_flag_test_and_clear(struct ceph_connection *con,
137 unsigned long con_flag)
138{
139 BUG_ON(!con_flag_valid(con_flag));
140
141 return test_and_clear_bit(con_flag, &con->flags);
142}
143
144static bool con_flag_test_and_set(struct ceph_connection *con,
145 unsigned long con_flag)
146{
147 BUG_ON(!con_flag_valid(con_flag));
148
149 return test_and_set_bit(con_flag, &con->flags);
150}
151
Sage Weil31b80062009-10-06 11:31:13 -0700152/* static tag bytes (protocol control messages) */
153static char tag_msg = CEPH_MSGR_TAG_MSG;
154static char tag_ack = CEPH_MSGR_TAG_ACK;
155static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
156
Sage Weila6a53492010-04-13 14:07:07 -0700157#ifdef CONFIG_LOCKDEP
158static struct lock_class_key socket_class;
159#endif
160
Alex Elder84495f42012-02-15 07:43:55 -0600161/*
162 * When skipping (ignoring) a block of input we read it into a "skip
163 * buffer," which is this many bytes in size.
164 */
165#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -0700166
167static void queue_con(struct ceph_connection *con);
168static void con_work(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600169static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700170
Sage Weil31b80062009-10-06 11:31:13 -0700171/*
Alex Elderf64a9312012-01-23 15:49:27 -0600172 * Nicely render a sockaddr as a string. An array of formatted
173 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700174 */
Alex Elderf64a9312012-01-23 15:49:27 -0600175#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
176#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
177#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
178#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
179
180static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
181static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700182
Alex Elder57666512012-01-23 15:49:27 -0600183static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600184
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700185const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700186{
187 int i;
188 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600189 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
190 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700191
Alex Elderf64a9312012-01-23 15:49:27 -0600192 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700193 s = addr_str[i];
194
195 switch (ss->ss_family) {
196 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600197 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
198 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700199 break;
200
201 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600202 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
203 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700204 break;
205
206 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600207 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
208 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700209 }
210
211 return s;
212}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700213EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700214
Sage Weil63f2d212009-11-03 15:17:56 -0800215static void encode_my_addr(struct ceph_messenger *msgr)
216{
217 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
218 ceph_encode_addr(&msgr->my_enc_addr);
219}
220
Sage Weil31b80062009-10-06 11:31:13 -0700221/*
222 * work queue for all reading and writing to/from the socket.
223 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600224static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700225
Alex Elder15417162013-02-19 12:25:56 -0600226static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600227{
Alex Elderd3002b92012-02-14 14:05:33 -0600228 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600229 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600230 ceph_msgr_wq = NULL;
231 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600232
Alex Elder6173d1f2012-02-14 14:05:33 -0600233 BUG_ON(zero_page == NULL);
234 kunmap(zero_page);
235 page_cache_release(zero_page);
236 zero_page = NULL;
237}
238
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700239int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700240{
Alex Elder57666512012-01-23 15:49:27 -0600241 BUG_ON(zero_page != NULL);
242 zero_page = ZERO_PAGE(0);
243 page_cache_get(zero_page);
244
Tejun Heof363e452011-01-03 14:49:46 +0100245 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600246 if (ceph_msgr_wq)
247 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600248
Alex Elder6173d1f2012-02-14 14:05:33 -0600249 pr_err("msgr_init failed to create workqueue\n");
250 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600251
Alex Elder6173d1f2012-02-14 14:05:33 -0600252 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700253}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700254EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700255
256void ceph_msgr_exit(void)
257{
Alex Elder57666512012-01-23 15:49:27 -0600258 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600259
Alex Elder6173d1f2012-02-14 14:05:33 -0600260 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700261}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700262EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700263
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700264void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700265{
266 flush_workqueue(ceph_msgr_wq);
267}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700268EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700269
Alex Elderce2c8902012-05-22 22:15:49 -0500270/* Connection socket state transition functions */
271
272static void con_sock_state_init(struct ceph_connection *con)
273{
274 int old_state;
275
276 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
277 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
278 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700279 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
280 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500281}
282
283static void con_sock_state_connecting(struct ceph_connection *con)
284{
285 int old_state;
286
287 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
288 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
289 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700290 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
291 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500292}
293
294static void con_sock_state_connected(struct ceph_connection *con)
295{
296 int old_state;
297
298 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
299 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
300 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700301 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
302 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500303}
304
305static void con_sock_state_closing(struct ceph_connection *con)
306{
307 int old_state;
308
309 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
310 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
311 old_state != CON_SOCK_STATE_CONNECTED &&
312 old_state != CON_SOCK_STATE_CLOSING))
313 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700314 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
315 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500316}
317
318static void con_sock_state_closed(struct ceph_connection *con)
319{
320 int old_state;
321
322 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
323 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700324 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700325 old_state != CON_SOCK_STATE_CONNECTING &&
326 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500327 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700328 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
329 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500330}
Sage Weila922d382010-05-29 09:41:23 -0700331
Sage Weil31b80062009-10-06 11:31:13 -0700332/*
333 * socket callback functions
334 */
335
336/* data available on socket, or listen socket received a connect */
Alex Elder327800b2012-05-22 11:41:43 -0500337static void ceph_sock_data_ready(struct sock *sk, int count_unused)
Sage Weil31b80062009-10-06 11:31:13 -0700338{
Alex Elderbd406142012-01-23 15:49:27 -0600339 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700340 if (atomic_read(&con->msgr->stopping)) {
341 return;
342 }
Alex Elderbd406142012-01-23 15:49:27 -0600343
Sage Weil31b80062009-10-06 11:31:13 -0700344 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500345 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700346 con, con->state);
347 queue_con(con);
348 }
349}
350
351/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500352static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700353{
Alex Elderd3002b92012-02-14 14:05:33 -0600354 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700355
Jim Schutt182fac22012-02-29 08:30:58 -0700356 /* only queue to workqueue if there is data we want to write,
357 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500358 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700359 * doesn't get called again until try_write() fills the socket
360 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
361 * and net/core/stream.c:sk_stream_write_space().
362 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600363 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Jim Schutt182fac22012-02-29 08:30:58 -0700364 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500365 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700366 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
367 queue_con(con);
368 }
Sage Weil31b80062009-10-06 11:31:13 -0700369 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500370 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700371 }
Sage Weil31b80062009-10-06 11:31:13 -0700372}
373
374/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500375static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700376{
Alex Elderbd406142012-01-23 15:49:27 -0600377 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700378
Alex Elder327800b2012-05-22 11:41:43 -0500379 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700380 con, con->state, sk->sk_state);
381
Sage Weil31b80062009-10-06 11:31:13 -0700382 switch (sk->sk_state) {
383 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500384 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700385 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500386 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500387 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600388 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500389 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700390 break;
391 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500392 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500393 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700394 queue_con(con);
395 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600396 default: /* Everything else is uninteresting */
397 break;
Sage Weil31b80062009-10-06 11:31:13 -0700398 }
399}
400
401/*
402 * set up socket callbacks
403 */
404static void set_sock_callbacks(struct socket *sock,
405 struct ceph_connection *con)
406{
407 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600408 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500409 sk->sk_data_ready = ceph_sock_data_ready;
410 sk->sk_write_space = ceph_sock_write_space;
411 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700412}
413
414
415/*
416 * socket helpers
417 */
418
419/*
420 * initiate connection to a remote socket.
421 */
Alex Elder41617d02012-02-14 14:05:33 -0600422static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700423{
Sage Weilf91d3472010-07-01 15:18:31 -0700424 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700425 struct socket *sock;
426 int ret;
427
428 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700429 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
430 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700431 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600432 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700433 sock->sk->sk_allocation = GFP_NOFS;
434
Sage Weila6a53492010-04-13 14:07:07 -0700435#ifdef CONFIG_LOCKDEP
436 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
437#endif
438
Sage Weil31b80062009-10-06 11:31:13 -0700439 set_sock_callbacks(sock, con);
440
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700441 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700442
Sage Weil89a86be2012-06-09 14:19:21 -0700443 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700444 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
445 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700446 if (ret == -EINPROGRESS) {
447 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700448 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700449 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600450 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700451 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700452 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700453 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700454 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700455
Alex Elder41617d02012-02-14 14:05:33 -0600456 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600457 }
458 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600459 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700460}
461
462static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
463{
464 struct kvec iov = {buf, len};
465 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800466 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700467
Sage Weil98bdb0a2011-01-25 08:17:48 -0800468 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
469 if (r == -EAGAIN)
470 r = 0;
471 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700472}
473
474/*
475 * write something. @more is true if caller will be sending more data
476 * shortly.
477 */
478static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
479 size_t kvlen, size_t len, int more)
480{
481 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800482 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700483
484 if (more)
485 msg.msg_flags |= MSG_MORE;
486 else
487 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
488
Sage Weil42961d22011-01-25 08:19:34 -0800489 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
490 if (r == -EAGAIN)
491 r = 0;
492 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700493}
494
Alex Elder31739132012-03-07 11:40:08 -0600495static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
Alex Eldere1dcb122013-03-06 23:39:38 -0600496 int offset, size_t size, bool more)
Alex Elder31739132012-03-07 11:40:08 -0600497{
498 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
499 int ret;
500
501 ret = kernel_sendpage(sock, page, offset, size, flags);
502 if (ret == -EAGAIN)
503 ret = 0;
504
505 return ret;
506}
507
Sage Weil31b80062009-10-06 11:31:13 -0700508
509/*
510 * Shutdown/close the socket for the given connection.
511 */
512static int con_close_socket(struct ceph_connection *con)
513{
Sage Weil8007b8d2012-07-30 18:16:16 -0700514 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700515
516 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700517 if (con->sock) {
518 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
519 sock_release(con->sock);
520 con->sock = NULL;
521 }
Alex Elder456ea462012-06-20 21:53:53 -0500522
523 /*
Sage Weil4a861692012-07-20 17:29:55 -0700524 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500525 * independent of the connection mutex, and we could have
526 * received a socket close event before we had the chance to
527 * shut the socket down.
528 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600529 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700530
Alex Elderce2c8902012-05-22 22:15:49 -0500531 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700532 return rc;
533}
534
535/*
536 * Reset a connection. Discard all incoming and outgoing messages
537 * and clear *_seq state.
538 */
539static void ceph_msg_remove(struct ceph_msg *msg)
540{
541 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500542 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700543 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500544 msg->con = NULL;
545
Sage Weil31b80062009-10-06 11:31:13 -0700546 ceph_msg_put(msg);
547}
548static void ceph_msg_remove_list(struct list_head *head)
549{
550 while (!list_empty(head)) {
551 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
552 list_head);
553 ceph_msg_remove(msg);
554 }
555}
556
557static void reset_connection(struct ceph_connection *con)
558{
559 /* reset connection, out_queue, msg_ and connect_seq */
560 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600561 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700562 ceph_msg_remove_list(&con->out_queue);
563 ceph_msg_remove_list(&con->out_sent);
564
Sage Weilcf3e5c42009-12-11 09:48:05 -0800565 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500566 BUG_ON(con->in_msg->con != con);
567 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800568 ceph_msg_put(con->in_msg);
569 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700570 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800571 }
572
Sage Weil31b80062009-10-06 11:31:13 -0700573 con->connect_seq = 0;
574 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800575 if (con->out_msg) {
576 ceph_msg_put(con->out_msg);
577 con->out_msg = NULL;
578 }
Sage Weil31b80062009-10-06 11:31:13 -0700579 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700580 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700581}
582
583/*
584 * mark a peer down. drop any open connections.
585 */
586void ceph_con_close(struct ceph_connection *con)
587{
Sage Weil8c50c812012-07-30 16:24:37 -0700588 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589 dout("con_close %p peer %s\n", con,
590 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700591 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500592
Alex Elderc9ffc772013-02-20 10:25:12 -0600593 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
594 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
595 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
596 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500597
Sage Weil31b80062009-10-06 11:31:13 -0700598 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700599 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800600 cancel_delayed_work(&con->work);
Sage Weilee76e072012-07-20 16:45:49 -0700601 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800602 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700603}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700604EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700605
606/*
Sage Weil31b80062009-10-06 11:31:13 -0700607 * Reopen a closed connection, with a new peer address.
608 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700609void ceph_con_open(struct ceph_connection *con,
610 __u8 entity_type, __u64 entity_num,
611 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700612{
Sage Weil54691552012-07-30 16:21:40 -0700613 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700614 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700615
Alex Elder122070a2012-12-26 10:43:57 -0600616 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700617 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500618
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700619 con->peer_name.type = (__u8) entity_type;
620 con->peer_name.num = cpu_to_le64(entity_num);
621
Sage Weil31b80062009-10-06 11:31:13 -0700622 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800623 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700624 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700625 queue_con(con);
626}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700627EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700628
629/*
Sage Weil87b315a2010-03-22 14:51:18 -0700630 * return true if this connection ever successfully opened
631 */
632bool ceph_con_opened(struct ceph_connection *con)
633{
634 return con->connect_seq > 0;
635}
636
637/*
Sage Weil31b80062009-10-06 11:31:13 -0700638 * initialize a new connection.
639 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500640void ceph_con_init(struct ceph_connection *con, void *private,
641 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700642 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700643{
644 dout("con_init %p\n", con);
645 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500646 con->private = private;
647 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700648 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500649
650 con_sock_state_init(con);
651
Sage Weilec302642009-12-22 10:43:42 -0800652 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700653 INIT_LIST_HEAD(&con->out_queue);
654 INIT_LIST_HEAD(&con->out_sent);
655 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500656
Sage Weil8dacc7d2012-07-20 17:24:40 -0700657 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700658}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700659EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700660
661
662/*
663 * We maintain a global counter to order connection attempts. Get
664 * a unique seq greater than @gt.
665 */
666static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
667{
668 u32 ret;
669
670 spin_lock(&msgr->global_seq_lock);
671 if (msgr->global_seq < gt)
672 msgr->global_seq = gt;
673 ret = ++msgr->global_seq;
674 spin_unlock(&msgr->global_seq_lock);
675 return ret;
676}
677
Alex Eldere2200422012-05-23 14:35:23 -0500678static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600679{
680 con->out_kvec_left = 0;
681 con->out_kvec_bytes = 0;
682 con->out_kvec_cur = &con->out_kvec[0];
683}
684
Alex Eldere2200422012-05-23 14:35:23 -0500685static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600686 size_t size, void *data)
687{
688 int index;
689
690 index = con->out_kvec_left;
691 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
692
693 con->out_kvec[index].iov_len = size;
694 con->out_kvec[index].iov_base = data;
695 con->out_kvec_left++;
696 con->out_kvec_bytes += size;
697}
Sage Weil31b80062009-10-06 11:31:13 -0700698
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500699#ifdef CONFIG_BLOCK
Alex Elder07c09b72013-02-15 22:10:17 -0600700static void init_bio_iter(struct bio *bio, struct bio **bio_iter,
701 unsigned int *bio_seg)
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500702{
703 if (!bio) {
Alex Elder07c09b72013-02-15 22:10:17 -0600704 *bio_iter = NULL;
705 *bio_seg = 0;
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500706 return;
707 }
Alex Elder07c09b72013-02-15 22:10:17 -0600708 *bio_iter = bio;
709 *bio_seg = (unsigned int) bio->bi_idx;
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500710}
711
Alex Elder07c09b72013-02-15 22:10:17 -0600712static void iter_bio_next(struct bio **bio_iter, unsigned int *seg)
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500713{
714 if (*bio_iter == NULL)
715 return;
716
717 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
718
719 (*seg)++;
720 if (*seg == (*bio_iter)->bi_vcnt)
721 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
722}
723#endif
724
Alex Elder739c9052012-06-11 14:57:13 -0500725static void prepare_write_message_data(struct ceph_connection *con)
726{
727 struct ceph_msg *msg = con->out_msg;
728
729 BUG_ON(!msg);
730 BUG_ON(!msg->hdr.data_len);
731
732 /* initialize page iterator */
733 con->out_msg_pos.page = 0;
734 if (msg->pages)
735 con->out_msg_pos.page_pos = msg->page_alignment;
736 else
737 con->out_msg_pos.page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -0500738#ifdef CONFIG_BLOCK
Alex Elderabdaa6a2012-06-11 14:57:13 -0500739 if (msg->bio)
Alex Elder572c5882012-06-11 14:57:13 -0500740 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
741#endif
Alex Elder739c9052012-06-11 14:57:13 -0500742 con->out_msg_pos.data_pos = 0;
743 con->out_msg_pos.did_page_crc = false;
744 con->out_more = 1; /* data + footer will follow */
745}
746
Sage Weil31b80062009-10-06 11:31:13 -0700747/*
748 * Prepare footer for currently outgoing message, and finish things
749 * off. Assumes out_kvec* are already valid.. we just add on to the end.
750 */
Alex Elder859eb792012-02-14 14:05:33 -0600751static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700752{
753 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -0600754 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -0700755
Alex Elderfd154f32012-06-11 14:57:13 -0500756 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
757
Sage Weil31b80062009-10-06 11:31:13 -0700758 dout("prepare_write_message_footer %p\n", con);
759 con->out_kvec_is_msg = true;
760 con->out_kvec[v].iov_base = &m->footer;
761 con->out_kvec[v].iov_len = sizeof(m->footer);
762 con->out_kvec_bytes += sizeof(m->footer);
763 con->out_kvec_left++;
764 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800765 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700766}
767
768/*
769 * Prepare headers for the next outgoing message.
770 */
771static void prepare_write_message(struct ceph_connection *con)
772{
773 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -0600774 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -0700775
Alex Eldere2200422012-05-23 14:35:23 -0500776 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -0700777 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800778 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700779
780 /* Sneak an ack in there first? If we can get it into the same
781 * TCP packet that's a good thing. */
782 if (con->in_seq > con->in_seq_acked) {
783 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -0500784 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700785 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500786 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600787 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700788 }
789
Alex Elder38941f82012-06-01 14:56:43 -0500790 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -0600791 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800792 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -0500793 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -0700794
795 /* put message on sent list */
796 ceph_msg_get(m);
797 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700798
Sage Weile84346b2010-05-11 21:20:38 -0700799 /*
800 * only assign outgoing seq # if we haven't sent this message
801 * yet. if it is requeued, resend with it's original seq.
802 */
803 if (m->needs_out_seq) {
804 m->hdr.seq = cpu_to_le64(++con->out_seq);
805 m->needs_out_seq = false;
806 }
Yan, Zhengb132cf42012-06-06 19:35:55 -0500807#ifdef CONFIG_BLOCK
808 else
809 m->bio_iter = NULL;
810#endif
Sage Weil31b80062009-10-06 11:31:13 -0700811
Alex Elder4a73ef22013-03-07 15:38:26 -0600812 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d (%zd)\n",
Sage Weil31b80062009-10-06 11:31:13 -0700813 m, con->out_seq, le16_to_cpu(m->hdr.type),
814 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder4a73ef22013-03-07 15:38:26 -0600815 le32_to_cpu(m->hdr.data_len), m->length);
Sage Weil31b80062009-10-06 11:31:13 -0700816 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
817
818 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -0500819 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
820 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
821 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -0600822
Sage Weil31b80062009-10-06 11:31:13 -0700823 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -0500824 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -0600825 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -0700826
827 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -0600828 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
829 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -0500830 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -0600831
832 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
833 con->out_msg->footer.front_crc = cpu_to_le32(crc);
834 if (m->middle) {
835 crc = crc32c(0, m->middle->vec.iov_base,
836 m->middle->vec.iov_len);
837 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
838 } else
Sage Weil31b80062009-10-06 11:31:13 -0700839 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -0500840 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700841 le32_to_cpu(con->out_msg->footer.front_crc),
842 le32_to_cpu(con->out_msg->footer.middle_crc));
843
844 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -0500845 con->out_msg->footer.data_crc = 0;
846 if (m->hdr.data_len)
847 prepare_write_message_data(con);
848 else
Sage Weil31b80062009-10-06 11:31:13 -0700849 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -0600850 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700851
Alex Elderc9ffc772013-02-20 10:25:12 -0600852 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -0700853}
854
855/*
856 * Prepare an ack.
857 */
858static void prepare_write_ack(struct ceph_connection *con)
859{
860 dout("prepare_write_ack %p %llu -> %llu\n", con,
861 con->in_seq_acked, con->in_seq);
862 con->in_seq_acked = con->in_seq;
863
Alex Eldere2200422012-05-23 14:35:23 -0500864 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -0600865
Alex Eldere2200422012-05-23 14:35:23 -0500866 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -0600867
Sage Weil31b80062009-10-06 11:31:13 -0700868 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500869 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600870 &con->out_temp_ack);
871
Sage Weil31b80062009-10-06 11:31:13 -0700872 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -0600873 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -0700874}
875
876/*
877 * Prepare to write keepalive byte.
878 */
879static void prepare_write_keepalive(struct ceph_connection *con)
880{
881 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -0500882 con_out_kvec_reset(con);
883 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -0600884 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -0700885}
886
887/*
888 * Connection negotiation.
889 */
890
Alex Elderdac1e712012-05-16 15:16:39 -0500891static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
892 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800893{
Alex Eldera3530df2012-05-16 15:16:39 -0500894 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -0500895
896 if (!con->ops->get_authorizer) {
897 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
898 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -0500899 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -0500900 }
901
902 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -0800903 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -0500904 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -0800905 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800906
Alex Eldera3530df2012-05-16 15:16:39 -0500907 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -0500908 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -0700909 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -0500910 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -0700911
Alex Elder8f43fb52012-05-16 15:16:39 -0500912 con->auth_reply_buf = auth->authorizer_reply_buf;
913 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -0500914 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800915}
916
Sage Weil31b80062009-10-06 11:31:13 -0700917/*
918 * We connected to a peer and are saying hello.
919 */
Alex Eldere825a662012-05-16 15:16:38 -0500920static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700921{
Alex Eldere2200422012-05-23 14:35:23 -0500922 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
923 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -0500924 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -0800925
Sage Weileed0ef22009-11-10 14:34:36 -0800926 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -0600927 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -0800928}
929
Alex Eldere825a662012-05-16 15:16:38 -0500930static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -0800931{
Eric Dumazet95c96172012-04-15 05:58:06 +0000932 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -0700933 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -0500934 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -0500935 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -0700936
937 switch (con->peer_name.type) {
938 case CEPH_ENTITY_TYPE_MON:
939 proto = CEPH_MONC_PROTOCOL;
940 break;
941 case CEPH_ENTITY_TYPE_OSD:
942 proto = CEPH_OSDC_PROTOCOL;
943 break;
944 case CEPH_ENTITY_TYPE_MDS:
945 proto = CEPH_MDSC_PROTOCOL;
946 break;
947 default:
948 BUG();
949 }
950
951 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
952 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800953
Alex Eldere825a662012-05-16 15:16:38 -0500954 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700955 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
956 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
957 con->out_connect.global_seq = cpu_to_le32(global_seq);
958 con->out_connect.protocol_version = cpu_to_le32(proto);
959 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700960
Alex Elderdac1e712012-05-16 15:16:39 -0500961 auth_proto = CEPH_AUTH_UNKNOWN;
962 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -0500963 if (IS_ERR(auth))
964 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -0500965
Alex Elderdac1e712012-05-16 15:16:39 -0500966 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -0500967 con->out_connect.authorizer_len = auth ?
968 cpu_to_le32(auth->authorizer_buf_len) : 0;
969
Alex Eldere2200422012-05-23 14:35:23 -0500970 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -0500971 &con->out_connect);
972 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -0500973 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -0500974 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -0600975
Sage Weil31b80062009-10-06 11:31:13 -0700976 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -0600977 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800978
Alex Eldere10c7582012-05-16 15:16:38 -0500979 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700980}
981
Sage Weil31b80062009-10-06 11:31:13 -0700982/*
983 * write as much of pending kvecs to the socket as we can.
984 * 1 -> done
985 * 0 -> socket full, but more to do
986 * <0 -> error
987 */
988static int write_partial_kvec(struct ceph_connection *con)
989{
990 int ret;
991
992 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
993 while (con->out_kvec_bytes > 0) {
994 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
995 con->out_kvec_left, con->out_kvec_bytes,
996 con->out_more);
997 if (ret <= 0)
998 goto out;
999 con->out_kvec_bytes -= ret;
1000 if (con->out_kvec_bytes == 0)
1001 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001002
1003 /* account for full iov entries consumed */
1004 while (ret >= con->out_kvec_cur->iov_len) {
1005 BUG_ON(!con->out_kvec_left);
1006 ret -= con->out_kvec_cur->iov_len;
1007 con->out_kvec_cur++;
1008 con->out_kvec_left--;
1009 }
1010 /* and for a partially-consumed entry */
1011 if (ret) {
1012 con->out_kvec_cur->iov_len -= ret;
1013 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001014 }
1015 }
1016 con->out_kvec_left = 0;
1017 con->out_kvec_is_msg = false;
1018 ret = 1;
1019out:
1020 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1021 con->out_kvec_bytes, con->out_kvec_left, ret);
1022 return ret; /* done! */
1023}
1024
Alex Elder84ca8fc2012-06-11 14:57:13 -05001025static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
1026 size_t len, size_t sent, bool in_trail)
1027{
1028 struct ceph_msg *msg = con->out_msg;
1029
1030 BUG_ON(!msg);
1031 BUG_ON(!sent);
1032
1033 con->out_msg_pos.data_pos += sent;
1034 con->out_msg_pos.page_pos += sent;
Alex Elder5821bd82012-06-11 14:57:13 -05001035 if (sent < len)
1036 return;
1037
1038 BUG_ON(sent != len);
1039 con->out_msg_pos.page_pos = 0;
1040 con->out_msg_pos.page++;
1041 con->out_msg_pos.did_page_crc = false;
1042 if (in_trail)
Alex Elder35c7bfb2013-03-06 23:39:38 -06001043 list_rotate_left(&msg->trail->head);
Alex Elder5821bd82012-06-11 14:57:13 -05001044 else if (msg->pagelist)
Alex Elder35c7bfb2013-03-06 23:39:38 -06001045 list_rotate_left(&msg->pagelist->head);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001046#ifdef CONFIG_BLOCK
Alex Elder5821bd82012-06-11 14:57:13 -05001047 else if (msg->bio)
1048 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001049#endif
Alex Elder84ca8fc2012-06-11 14:57:13 -05001050}
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001051
Alex Eldere7881822013-03-08 18:51:04 -06001052static void in_msg_pos_next(struct ceph_connection *con, size_t len,
1053 size_t received)
1054{
1055 struct ceph_msg *msg = con->in_msg;
1056
1057 BUG_ON(!msg);
1058 BUG_ON(!received);
1059
1060 con->in_msg_pos.data_pos += received;
1061 con->in_msg_pos.page_pos += received;
1062 if (received < len)
1063 return;
1064
1065 BUG_ON(received != len);
1066 con->in_msg_pos.page_pos = 0;
1067 con->in_msg_pos.page++;
1068#ifdef CONFIG_BLOCK
1069 if (msg->bio)
1070 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
1071#endif /* CONFIG_BLOCK */
1072}
1073
Sage Weil31b80062009-10-06 11:31:13 -07001074/*
1075 * Write as much message data payload as we can. If we finish, queue
1076 * up the footer.
1077 * 1 -> done, footer is now queued in out_kvec[].
1078 * 0 -> socket full, but more to do
1079 * <0 -> error
1080 */
1081static int write_partial_msg_pages(struct ceph_connection *con)
1082{
1083 struct ceph_msg *msg = con->out_msg;
Eric Dumazet95c96172012-04-15 05:58:06 +00001084 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Sage Weil31b80062009-10-06 11:31:13 -07001085 size_t len;
Alex Elder37675b02012-03-07 11:40:08 -06001086 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07001087 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001088 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -05001089 bool in_trail = false;
Alex Elder5821bd82012-06-11 14:57:13 -05001090 const size_t trail_len = (msg->trail ? msg->trail->length : 0);
1091 const size_t trail_off = data_len - trail_len;
Sage Weil31b80062009-10-06 11:31:13 -07001092
Alex Elder4a73ef22013-03-07 15:38:26 -06001093 dout("write_partial_msg_pages %p msg %p page %d offset %d\n",
1094 con, msg, con->out_msg_pos.page, con->out_msg_pos.page_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001095
Alex Elder5821bd82012-06-11 14:57:13 -05001096 /*
1097 * Iterate through each page that contains data to be
1098 * written, and send as much as possible for each.
1099 *
1100 * If we are calculating the data crc (the default), we will
1101 * need to map the page. If we have no pages, they have
1102 * been revoked, so use the zero page.
1103 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001104 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001105 struct page *page = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001106 int max_write = PAGE_SIZE;
Alex Elder9bd19662012-03-07 11:40:08 -06001107 int bio_offset = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001108
Alex Elder5821bd82012-06-11 14:57:13 -05001109 in_trail = in_trail || con->out_msg_pos.data_pos >= trail_off;
1110 if (!in_trail)
1111 total_max_write = trail_off - con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001112
Alex Elder5821bd82012-06-11 14:57:13 -05001113 if (in_trail) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001114 total_max_write = data_len - con->out_msg_pos.data_pos;
1115
1116 page = list_first_entry(&msg->trail->head,
1117 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001118 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -07001119 page = msg->pages[con->out_msg_pos.page];
Sage Weil58bb3b32009-12-23 12:12:31 -08001120 } else if (msg->pagelist) {
1121 page = list_first_entry(&msg->pagelist->head,
1122 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001123#ifdef CONFIG_BLOCK
1124 } else if (msg->bio) {
1125 struct bio_vec *bv;
1126
1127 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
1128 page = bv->bv_page;
Alex Elder9bd19662012-03-07 11:40:08 -06001129 bio_offset = bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001130 max_write = bv->bv_len;
1131#endif
Sage Weil31b80062009-10-06 11:31:13 -07001132 } else {
Alex Elder57666512012-01-23 15:49:27 -06001133 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001134 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001135 len = min_t(int, max_write - con->out_msg_pos.page_pos,
1136 total_max_write);
1137
Alex Elder37675b02012-03-07 11:40:08 -06001138 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
Alex Elder9bd19662012-03-07 11:40:08 -06001139 void *base;
Alex Elder5821bd82012-06-11 14:57:13 -05001140 u32 crc = le32_to_cpu(msg->footer.data_crc);
Alex Elder8d63e312012-03-07 11:40:08 -06001141 char *kaddr;
Sage Weil31b80062009-10-06 11:31:13 -07001142
Alex Elder8d63e312012-03-07 11:40:08 -06001143 kaddr = kmap(page);
Sage Weil31b80062009-10-06 11:31:13 -07001144 BUG_ON(kaddr == NULL);
Alex Elder9bd19662012-03-07 11:40:08 -06001145 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
Alex Elder5821bd82012-06-11 14:57:13 -05001146 crc = crc32c(crc, base, len);
Alex Elder5ce765a2012-09-21 17:59:58 -05001147 kunmap(page);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001148 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbca064d2012-02-15 07:43:54 -06001149 con->out_msg_pos.did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001150 }
Alex Eldere36b13c2012-03-07 11:40:08 -06001151 ret = ceph_tcp_sendpage(con->sock, page,
Alex Elder9bd19662012-03-07 11:40:08 -06001152 con->out_msg_pos.page_pos + bio_offset,
Alex Eldere1dcb122013-03-06 23:39:38 -06001153 len, true);
Sage Weil31b80062009-10-06 11:31:13 -07001154 if (ret <= 0)
1155 goto out;
1156
Alex Elder84ca8fc2012-06-11 14:57:13 -05001157 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001158 }
1159
1160 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1161
1162 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001163 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001164 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001165 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001166 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001167 ret = 1;
1168out:
1169 return ret;
1170}
1171
1172/*
1173 * write some zeros
1174 */
1175static int write_partial_skip(struct ceph_connection *con)
1176{
1177 int ret;
1178
1179 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001180 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001181
Alex Eldere1dcb122013-03-06 23:39:38 -06001182 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001183 if (ret <= 0)
1184 goto out;
1185 con->out_skip -= ret;
1186 }
1187 ret = 1;
1188out:
1189 return ret;
1190}
1191
1192/*
1193 * Prepare to read connection handshake, or an ack.
1194 */
Sage Weileed0ef22009-11-10 14:34:36 -08001195static void prepare_read_banner(struct ceph_connection *con)
1196{
1197 dout("prepare_read_banner %p\n", con);
1198 con->in_base_pos = 0;
1199}
1200
Sage Weil31b80062009-10-06 11:31:13 -07001201static void prepare_read_connect(struct ceph_connection *con)
1202{
1203 dout("prepare_read_connect %p\n", con);
1204 con->in_base_pos = 0;
1205}
1206
1207static void prepare_read_ack(struct ceph_connection *con)
1208{
1209 dout("prepare_read_ack %p\n", con);
1210 con->in_base_pos = 0;
1211}
1212
1213static void prepare_read_tag(struct ceph_connection *con)
1214{
1215 dout("prepare_read_tag %p\n", con);
1216 con->in_base_pos = 0;
1217 con->in_tag = CEPH_MSGR_TAG_READY;
1218}
1219
1220/*
1221 * Prepare to read a message.
1222 */
1223static int prepare_read_message(struct ceph_connection *con)
1224{
1225 dout("prepare_read_message %p\n", con);
1226 BUG_ON(con->in_msg != NULL);
1227 con->in_base_pos = 0;
1228 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1229 return 0;
1230}
1231
1232
1233static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001234 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001235{
Alex Eldere6cee712012-05-10 10:29:50 -05001236 while (con->in_base_pos < end) {
1237 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001238 int have = size - left;
1239 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1240 if (ret <= 0)
1241 return ret;
1242 con->in_base_pos += ret;
1243 }
1244 return 1;
1245}
1246
1247
1248/*
1249 * Read all or part of the connect-side handshake on a new connection
1250 */
Sage Weileed0ef22009-11-10 14:34:36 -08001251static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001252{
Alex Elderfd516532012-05-10 10:29:50 -05001253 int size;
1254 int end;
1255 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001256
Sage Weileed0ef22009-11-10 14:34:36 -08001257 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001258
1259 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001260 size = strlen(CEPH_BANNER);
1261 end = size;
1262 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001263 if (ret <= 0)
1264 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001265
1266 size = sizeof (con->actual_peer_addr);
1267 end += size;
1268 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001269 if (ret <= 0)
1270 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001271
1272 size = sizeof (con->peer_addr_for_me);
1273 end += size;
1274 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001275 if (ret <= 0)
1276 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001277
Sage Weileed0ef22009-11-10 14:34:36 -08001278out:
1279 return ret;
1280}
1281
1282static int read_partial_connect(struct ceph_connection *con)
1283{
Alex Elderfd516532012-05-10 10:29:50 -05001284 int size;
1285 int end;
1286 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001287
1288 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1289
Alex Elderfd516532012-05-10 10:29:50 -05001290 size = sizeof (con->in_reply);
1291 end = size;
1292 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001293 if (ret <= 0)
1294 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001295
1296 size = le32_to_cpu(con->in_reply.authorizer_len);
1297 end += size;
1298 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001299 if (ret <= 0)
1300 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001301
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001302 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1303 con, (int)con->in_reply.tag,
1304 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001305 le32_to_cpu(con->in_reply.global_seq));
1306out:
1307 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001308
Sage Weil31b80062009-10-06 11:31:13 -07001309}
1310
1311/*
1312 * Verify the hello banner looks okay.
1313 */
1314static int verify_hello(struct ceph_connection *con)
1315{
1316 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001317 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001318 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001319 con->error_msg = "protocol error, bad banner";
1320 return -1;
1321 }
1322 return 0;
1323}
1324
1325static bool addr_is_blank(struct sockaddr_storage *ss)
1326{
1327 switch (ss->ss_family) {
1328 case AF_INET:
1329 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1330 case AF_INET6:
1331 return
1332 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1333 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1334 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1335 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1336 }
1337 return false;
1338}
1339
1340static int addr_port(struct sockaddr_storage *ss)
1341{
1342 switch (ss->ss_family) {
1343 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001344 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001345 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001346 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001347 }
1348 return 0;
1349}
1350
1351static void addr_set_port(struct sockaddr_storage *ss, int p)
1352{
1353 switch (ss->ss_family) {
1354 case AF_INET:
1355 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001356 break;
Sage Weil31b80062009-10-06 11:31:13 -07001357 case AF_INET6:
1358 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001359 break;
Sage Weil31b80062009-10-06 11:31:13 -07001360 }
1361}
1362
1363/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001364 * Unlike other *_pton function semantics, zero indicates success.
1365 */
1366static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1367 char delim, const char **ipend)
1368{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001369 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1370 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001371
1372 memset(ss, 0, sizeof(*ss));
1373
1374 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1375 ss->ss_family = AF_INET;
1376 return 0;
1377 }
1378
1379 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1380 ss->ss_family = AF_INET6;
1381 return 0;
1382 }
1383
1384 return -EINVAL;
1385}
1386
1387/*
1388 * Extract hostname string and resolve using kernel DNS facility.
1389 */
1390#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1391static int ceph_dns_resolve_name(const char *name, size_t namelen,
1392 struct sockaddr_storage *ss, char delim, const char **ipend)
1393{
1394 const char *end, *delim_p;
1395 char *colon_p, *ip_addr = NULL;
1396 int ip_len, ret;
1397
1398 /*
1399 * The end of the hostname occurs immediately preceding the delimiter or
1400 * the port marker (':') where the delimiter takes precedence.
1401 */
1402 delim_p = memchr(name, delim, namelen);
1403 colon_p = memchr(name, ':', namelen);
1404
1405 if (delim_p && colon_p)
1406 end = delim_p < colon_p ? delim_p : colon_p;
1407 else if (!delim_p && colon_p)
1408 end = colon_p;
1409 else {
1410 end = delim_p;
1411 if (!end) /* case: hostname:/ */
1412 end = name + namelen;
1413 }
1414
1415 if (end <= name)
1416 return -EINVAL;
1417
1418 /* do dns_resolve upcall */
1419 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1420 if (ip_len > 0)
1421 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1422 else
1423 ret = -ESRCH;
1424
1425 kfree(ip_addr);
1426
1427 *ipend = end;
1428
1429 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1430 ret, ret ? "failed" : ceph_pr_addr(ss));
1431
1432 return ret;
1433}
1434#else
1435static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1436 struct sockaddr_storage *ss, char delim, const char **ipend)
1437{
1438 return -EINVAL;
1439}
1440#endif
1441
1442/*
1443 * Parse a server name (IP or hostname). If a valid IP address is not found
1444 * then try to extract a hostname to resolve using userspace DNS upcall.
1445 */
1446static int ceph_parse_server_name(const char *name, size_t namelen,
1447 struct sockaddr_storage *ss, char delim, const char **ipend)
1448{
1449 int ret;
1450
1451 ret = ceph_pton(name, namelen, ss, delim, ipend);
1452 if (ret)
1453 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1454
1455 return ret;
1456}
1457
1458/*
Sage Weil31b80062009-10-06 11:31:13 -07001459 * Parse an ip[:port] list into an addr array. Use the default
1460 * monitor port if a port isn't specified.
1461 */
1462int ceph_parse_ips(const char *c, const char *end,
1463 struct ceph_entity_addr *addr,
1464 int max_count, int *count)
1465{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001466 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001467 const char *p = c;
1468
1469 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1470 for (i = 0; i < max_count; i++) {
1471 const char *ipend;
1472 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001473 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001474 char delim = ',';
1475
1476 if (*p == '[') {
1477 delim = ']';
1478 p++;
1479 }
Sage Weil31b80062009-10-06 11:31:13 -07001480
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001481 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1482 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001483 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001484 ret = -EINVAL;
1485
Sage Weil31b80062009-10-06 11:31:13 -07001486 p = ipend;
1487
Sage Weil39139f62010-07-08 09:54:52 -07001488 if (delim == ']') {
1489 if (*p != ']') {
1490 dout("missing matching ']'\n");
1491 goto bad;
1492 }
1493 p++;
1494 }
1495
Sage Weil31b80062009-10-06 11:31:13 -07001496 /* port? */
1497 if (p < end && *p == ':') {
1498 port = 0;
1499 p++;
1500 while (p < end && *p >= '0' && *p <= '9') {
1501 port = (port * 10) + (*p - '0');
1502 p++;
1503 }
1504 if (port > 65535 || port == 0)
1505 goto bad;
1506 } else {
1507 port = CEPH_MON_PORT;
1508 }
1509
1510 addr_set_port(ss, port);
1511
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001512 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001513
1514 if (p == end)
1515 break;
1516 if (*p != ',')
1517 goto bad;
1518 p++;
1519 }
1520
1521 if (p != end)
1522 goto bad;
1523
1524 if (count)
1525 *count = i + 1;
1526 return 0;
1527
1528bad:
Sage Weil39139f62010-07-08 09:54:52 -07001529 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001530 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001531}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001532EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001533
Sage Weileed0ef22009-11-10 14:34:36 -08001534static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001535{
Sage Weileed0ef22009-11-10 14:34:36 -08001536 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001537
1538 if (verify_hello(con) < 0)
1539 return -1;
1540
Sage Weil63f2d212009-11-03 15:17:56 -08001541 ceph_decode_addr(&con->actual_peer_addr);
1542 ceph_decode_addr(&con->peer_addr_for_me);
1543
Sage Weil31b80062009-10-06 11:31:13 -07001544 /*
1545 * Make sure the other end is who we wanted. note that the other
1546 * end may not yet know their ip address, so if it's 0.0.0.0, give
1547 * them the benefit of the doubt.
1548 */
Sage Weil103e2d32010-01-07 16:12:36 -08001549 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1550 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001551 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1552 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001553 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001554 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001555 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001556 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001557 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001558 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001559 return -1;
1560 }
1561
1562 /*
1563 * did we learn our address?
1564 */
1565 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1566 int port = addr_port(&con->msgr->inst.addr.in_addr);
1567
1568 memcpy(&con->msgr->inst.addr.in_addr,
1569 &con->peer_addr_for_me.in_addr,
1570 sizeof(con->peer_addr_for_me.in_addr));
1571 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001572 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001573 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001574 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001575 }
1576
Sage Weileed0ef22009-11-10 14:34:36 -08001577 return 0;
1578}
1579
1580static int process_connect(struct ceph_connection *con)
1581{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001582 u64 sup_feat = con->msgr->supported_features;
1583 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001584 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001585 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001586
Sage Weileed0ef22009-11-10 14:34:36 -08001587 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1588
Sage Weil31b80062009-10-06 11:31:13 -07001589 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001590 case CEPH_MSGR_TAG_FEATURES:
1591 pr_err("%s%lld %s feature set mismatch,"
1592 " my %llx < server's %llx, missing %llx\n",
1593 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001594 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001595 sup_feat, server_feat, server_feat & ~sup_feat);
1596 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001597 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001598 return -1;
1599
Sage Weil31b80062009-10-06 11:31:13 -07001600 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001601 pr_err("%s%lld %s protocol version mismatch,"
1602 " my %d != server's %d\n",
1603 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001604 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001605 le32_to_cpu(con->out_connect.protocol_version),
1606 le32_to_cpu(con->in_reply.protocol_version));
1607 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001608 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001609 return -1;
1610
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001611 case CEPH_MSGR_TAG_BADAUTHORIZER:
1612 con->auth_retry++;
1613 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1614 con->auth_retry);
1615 if (con->auth_retry == 2) {
1616 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001617 return -1;
1618 }
1619 con->auth_retry = 1;
Jim Schutt6d4221b2012-08-10 10:37:38 -07001620 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001621 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001622 if (ret < 0)
1623 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001624 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001625 break;
Sage Weil31b80062009-10-06 11:31:13 -07001626
1627 case CEPH_MSGR_TAG_RESETSESSION:
1628 /*
1629 * If we connected with a large connect_seq but the peer
1630 * has no record of a session with us (no connection, or
1631 * connect_seq == 0), they will send RESETSESION to indicate
1632 * that they must have reset their session, and may have
1633 * dropped messages.
1634 */
1635 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07001636 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001637 pr_err("%s%lld %s connection reset\n",
1638 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001639 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001640 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001641 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001642 ret = prepare_write_connect(con);
1643 if (ret < 0)
1644 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001645 prepare_read_connect(con);
1646
1647 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001648 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001649 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1650 if (con->ops->peer_reset)
1651 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001652 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07001653 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07001654 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001655 break;
1656
1657 case CEPH_MSGR_TAG_RETRY_SESSION:
1658 /*
1659 * If we sent a smaller connect_seq than the peer has, try
1660 * again with a larger value.
1661 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07001662 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001663 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07001664 le32_to_cpu(con->in_reply.connect_seq));
1665 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07001666 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001667 ret = prepare_write_connect(con);
1668 if (ret < 0)
1669 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001670 prepare_read_connect(con);
1671 break;
1672
1673 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1674 /*
1675 * If we sent a smaller global_seq than the peer has, try
1676 * again with a larger value.
1677 */
Sage Weileed0ef22009-11-10 14:34:36 -08001678 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001679 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001680 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001681 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07001682 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07001683 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001684 ret = prepare_write_connect(con);
1685 if (ret < 0)
1686 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001687 prepare_read_connect(con);
1688 break;
1689
1690 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001691 if (req_feat & ~server_feat) {
1692 pr_err("%s%lld %s protocol feature mismatch,"
1693 " my required %llx > server's %llx, need %llx\n",
1694 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001695 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001696 req_feat, server_feat, req_feat & ~server_feat);
1697 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001698 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001699 return -1;
1700 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07001701
Alex Elder122070a2012-12-26 10:43:57 -06001702 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07001703 con->state = CON_STATE_OPEN;
1704
Sage Weil31b80062009-10-06 11:31:13 -07001705 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1706 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001707 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001708 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1709 con->peer_global_seq,
1710 le32_to_cpu(con->in_reply.connect_seq),
1711 con->connect_seq);
1712 WARN_ON(con->connect_seq !=
1713 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001714
1715 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06001716 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08001717
Sage Weil85effe12012-07-30 16:22:05 -07001718 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07001719
1720 prepare_read_tag(con);
1721 break;
1722
1723 case CEPH_MSGR_TAG_WAIT:
1724 /*
1725 * If there is a connection race (we are opening
1726 * connections to each other), one of us may just have
1727 * to WAIT. This shouldn't happen if we are the
1728 * client.
1729 */
Sage Weil04177882011-05-12 15:33:17 -07001730 pr_err("process_connect got WAIT as client\n");
1731 con->error_msg = "protocol error, got WAIT as client";
1732 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07001733
1734 default:
1735 pr_err("connect protocol error, will retry\n");
1736 con->error_msg = "protocol error, garbage tag during connect";
1737 return -1;
1738 }
1739 return 0;
1740}
1741
1742
1743/*
1744 * read (part of) an ack
1745 */
1746static int read_partial_ack(struct ceph_connection *con)
1747{
Alex Elderfd516532012-05-10 10:29:50 -05001748 int size = sizeof (con->in_temp_ack);
1749 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07001750
Alex Elderfd516532012-05-10 10:29:50 -05001751 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001752}
1753
1754
1755/*
1756 * We can finally discard anything that's been acked.
1757 */
1758static void process_ack(struct ceph_connection *con)
1759{
1760 struct ceph_msg *m;
1761 u64 ack = le64_to_cpu(con->in_temp_ack);
1762 u64 seq;
1763
Sage Weil31b80062009-10-06 11:31:13 -07001764 while (!list_empty(&con->out_sent)) {
1765 m = list_first_entry(&con->out_sent, struct ceph_msg,
1766 list_head);
1767 seq = le64_to_cpu(m->hdr.seq);
1768 if (seq > ack)
1769 break;
1770 dout("got ack for seq %llu type %d at %p\n", seq,
1771 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07001772 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07001773 ceph_msg_remove(m);
1774 }
Sage Weil31b80062009-10-06 11:31:13 -07001775 prepare_read_tag(con);
1776}
1777
1778
1779
1780
Yehuda Sadeh24504182010-01-08 13:58:34 -08001781static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001782 struct kvec *section,
1783 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001784{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001785 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001786
Yehuda Sadeh24504182010-01-08 13:58:34 -08001787 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001788
Yehuda Sadeh24504182010-01-08 13:58:34 -08001789 while (section->iov_len < sec_len) {
1790 BUG_ON(section->iov_base == NULL);
1791 left = sec_len - section->iov_len;
1792 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1793 section->iov_len, left);
1794 if (ret <= 0)
1795 return ret;
1796 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001797 }
Alex Elderfe3ad592012-02-15 07:43:54 -06001798 if (section->iov_len == sec_len)
1799 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001800
1801 return 1;
1802}
1803
Sage Weil4740a622012-07-30 18:19:30 -07001804static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001805
1806static int read_partial_message_pages(struct ceph_connection *con,
1807 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00001808 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001809{
Alex Eldere7881822013-03-08 18:51:04 -06001810 struct page *page;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001811 void *p;
1812 int ret;
1813 int left;
1814
1815 left = min((int)(data_len - con->in_msg_pos.data_pos),
1816 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1817 /* (page) data */
1818 BUG_ON(pages == NULL);
Alex Eldere7881822013-03-08 18:51:04 -06001819 page = pages[con->in_msg_pos.page];
1820 p = kmap(page);
1821 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos, left);
Alex Elderbca064d2012-02-15 07:43:54 -06001822 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001823 con->in_data_crc =
1824 crc32c(con->in_data_crc,
1825 p + con->in_msg_pos.page_pos, ret);
Alex Eldere7881822013-03-08 18:51:04 -06001826 kunmap(page);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001827 if (ret <= 0)
1828 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06001829
1830 in_msg_pos_next(con, left, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001831
1832 return ret;
1833}
1834
1835#ifdef CONFIG_BLOCK
1836static int read_partial_message_bio(struct ceph_connection *con,
Eric Dumazet95c96172012-04-15 05:58:06 +00001837 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001838{
Alex Elderb3d56fa2013-03-08 18:51:03 -06001839 struct ceph_msg *msg = con->in_msg;
1840 struct bio_vec *bv;
Alex Eldere7881822013-03-08 18:51:04 -06001841 struct page *page;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001842 void *p;
1843 int ret, left;
1844
Alex Elderb3d56fa2013-03-08 18:51:03 -06001845 BUG_ON(!msg);
1846 BUG_ON(!msg->bio_iter);
1847 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
Alex Eldere7881822013-03-08 18:51:04 -06001848
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001849 left = min((int)(data_len - con->in_msg_pos.data_pos),
1850 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1851
Alex Eldere7881822013-03-08 18:51:04 -06001852 page = bv->bv_page;
1853 p = kmap(page) + bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001854
Alex Eldere7881822013-03-08 18:51:04 -06001855 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos, left);
Alex Elderbca064d2012-02-15 07:43:54 -06001856 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001857 con->in_data_crc =
1858 crc32c(con->in_data_crc,
1859 p + con->in_msg_pos.page_pos, ret);
Alex Eldere7881822013-03-08 18:51:04 -06001860 kunmap(page);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001861 if (ret <= 0)
1862 return ret;
Alex Eldere7881822013-03-08 18:51:04 -06001863
1864 in_msg_pos_next(con, left, ret);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001865
1866 return ret;
1867}
1868#endif
1869
Sage Weil31b80062009-10-06 11:31:13 -07001870/*
1871 * read (part of) a message.
1872 */
1873static int read_partial_message(struct ceph_connection *con)
1874{
1875 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05001876 int size;
1877 int end;
Sage Weil31b80062009-10-06 11:31:13 -07001878 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00001879 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06001880 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07001881 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06001882 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001883
1884 dout("read_partial_message con %p msg %p\n", con, m);
1885
1886 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05001887 size = sizeof (con->in_hdr);
1888 end = size;
1889 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05001890 if (ret <= 0)
1891 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06001892
1893 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1894 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1895 pr_err("read_partial_message bad hdr "
1896 " crc %u != expected %u\n",
1897 crc, con->in_hdr.crc);
1898 return -EBADMSG;
1899 }
1900
Sage Weil31b80062009-10-06 11:31:13 -07001901 front_len = le32_to_cpu(con->in_hdr.front_len);
1902 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1903 return -EIO;
1904 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06001905 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07001906 return -EIO;
1907 data_len = le32_to_cpu(con->in_hdr.data_len);
1908 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1909 return -EIO;
1910
Sage Weilae187562010-04-22 07:47:01 -07001911 /* verify seq# */
1912 seq = le64_to_cpu(con->in_hdr.seq);
1913 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001914 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001915 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001916 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001917 seq, con->in_seq + 1);
1918 con->in_base_pos = -front_len - middle_len - data_len -
1919 sizeof(m->footer);
1920 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001921 return 0;
1922 } else if ((s64)seq - (s64)con->in_seq > 1) {
1923 pr_err("read_partial_message bad seq %lld expected %lld\n",
1924 seq, con->in_seq + 1);
1925 con->error_msg = "bad message sequence # for incoming message";
1926 return -EBADMSG;
1927 }
1928
Sage Weil31b80062009-10-06 11:31:13 -07001929 /* allocate message? */
1930 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07001931 int skip = 0;
1932
Sage Weil31b80062009-10-06 11:31:13 -07001933 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06001934 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07001935 ret = ceph_con_in_msg_alloc(con, &skip);
1936 if (ret < 0)
1937 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001938 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07001939 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001940 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001941 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001942 con->in_base_pos = -front_len - middle_len - data_len -
1943 sizeof(m->footer);
1944 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001945 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001946 return 0;
1947 }
Alex Elder38941f82012-06-01 14:56:43 -05001948
Sage Weil4740a622012-07-30 18:19:30 -07001949 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05001950 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07001951 m = con->in_msg;
1952 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001953 if (m->middle)
1954 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001955
1956 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001957 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001958 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001959 else
1960 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001961 con->in_msg_pos.data_pos = 0;
Sage Weila4107022012-07-30 16:20:25 -07001962
1963#ifdef CONFIG_BLOCK
1964 if (m->bio)
1965 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1966#endif
Sage Weil31b80062009-10-06 11:31:13 -07001967 }
1968
1969 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001970 ret = read_partial_message_section(con, &m->front, front_len,
1971 &con->in_front_crc);
1972 if (ret <= 0)
1973 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001974
1975 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001976 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001977 ret = read_partial_message_section(con, &m->middle->vec,
1978 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001979 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001980 if (ret <= 0)
1981 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001982 }
1983
1984 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001985 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001986 if (m->pages) {
1987 ret = read_partial_message_pages(con, m->pages,
Alex Elderbca064d2012-02-15 07:43:54 -06001988 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001989 if (ret <= 0)
1990 return ret;
1991#ifdef CONFIG_BLOCK
1992 } else if (m->bio) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001993 ret = read_partial_message_bio(con,
Alex Elderbca064d2012-02-15 07:43:54 -06001994 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001995 if (ret <= 0)
1996 return ret;
1997#endif
1998 } else {
1999 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07002000 }
2001 }
2002
Sage Weil31b80062009-10-06 11:31:13 -07002003 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002004 size = sizeof (m->footer);
2005 end += size;
2006 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002007 if (ret <= 0)
2008 return ret;
2009
Sage Weil31b80062009-10-06 11:31:13 -07002010 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2011 m, front_len, m->footer.front_crc, middle_len,
2012 m->footer.middle_crc, data_len, m->footer.data_crc);
2013
2014 /* crc ok? */
2015 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2016 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2017 m, con->in_front_crc, m->footer.front_crc);
2018 return -EBADMSG;
2019 }
2020 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2021 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2022 m, con->in_middle_crc, m->footer.middle_crc);
2023 return -EBADMSG;
2024 }
Alex Elderbca064d2012-02-15 07:43:54 -06002025 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002026 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2027 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2028 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2029 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2030 return -EBADMSG;
2031 }
2032
2033 return 1; /* done! */
2034}
2035
2036/*
2037 * Process message. This happens in the worker thread. The callback should
2038 * be careful not to do anything that waits on other incoming messages or it
2039 * may deadlock.
2040 */
2041static void process_message(struct ceph_connection *con)
2042{
Sage Weil5e095e82009-12-14 14:30:34 -08002043 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002044
Alex Elder38941f82012-06-01 14:56:43 -05002045 BUG_ON(con->in_msg->con != con);
2046 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002047 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002048 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002049 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002050
2051 /* if first message, set peer_name */
2052 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002053 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002054
Sage Weil31b80062009-10-06 11:31:13 -07002055 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002056 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002057
2058 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2059 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002060 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002061 le16_to_cpu(msg->hdr.type),
2062 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2063 le32_to_cpu(msg->hdr.front_len),
2064 le32_to_cpu(msg->hdr.data_len),
2065 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2066 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002067
2068 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002069}
2070
2071
2072/*
2073 * Write something to the socket. Called in a worker thread when the
2074 * socket appears to be writeable and we have something ready to send.
2075 */
2076static int try_write(struct ceph_connection *con)
2077{
Sage Weil31b80062009-10-06 11:31:13 -07002078 int ret = 1;
2079
Sage Weild59315c2012-06-21 12:49:23 -07002080 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002081
Sage Weil31b80062009-10-06 11:31:13 -07002082more:
2083 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2084
2085 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002086 if (con->state == CON_STATE_PREOPEN) {
2087 BUG_ON(con->sock);
2088 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002089
Alex Eldere2200422012-05-23 14:35:23 -05002090 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002091 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002092 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002093
Sage Weilcf3e5c42009-12-11 09:48:05 -08002094 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002095 con->in_tag = CEPH_MSGR_TAG_READY;
2096 dout("try_write initiating connect on %p new state %lu\n",
2097 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002098 ret = ceph_tcp_connect(con);
2099 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002100 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002101 goto out;
2102 }
2103 }
2104
2105more_kvec:
2106 /* kvec data queued? */
2107 if (con->out_skip) {
2108 ret = write_partial_skip(con);
2109 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002110 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002111 }
2112 if (con->out_kvec_left) {
2113 ret = write_partial_kvec(con);
2114 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002115 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002116 }
2117
2118 /* msg pages? */
2119 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002120 if (con->out_msg_done) {
2121 ceph_msg_put(con->out_msg);
2122 con->out_msg = NULL; /* we're done with this one */
2123 goto do_next;
2124 }
2125
Sage Weil31b80062009-10-06 11:31:13 -07002126 ret = write_partial_msg_pages(con);
2127 if (ret == 1)
2128 goto more_kvec; /* we need to send the footer, too! */
2129 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002130 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002131 if (ret < 0) {
2132 dout("try_write write_partial_msg_pages err %d\n",
2133 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002134 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002135 }
2136 }
2137
Sage Weilc86a2932009-12-14 14:04:30 -08002138do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002139 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002140 /* is anything else pending? */
2141 if (!list_empty(&con->out_queue)) {
2142 prepare_write_message(con);
2143 goto more;
2144 }
2145 if (con->in_seq > con->in_seq_acked) {
2146 prepare_write_ack(con);
2147 goto more;
2148 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002149 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002150 prepare_write_keepalive(con);
2151 goto more;
2152 }
2153 }
2154
2155 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002156 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002157 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002158 ret = 0;
2159out:
Sage Weil42961d22011-01-25 08:19:34 -08002160 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002161 return ret;
2162}
2163
2164
2165
2166/*
2167 * Read what we can from the socket.
2168 */
2169static int try_read(struct ceph_connection *con)
2170{
Sage Weil31b80062009-10-06 11:31:13 -07002171 int ret = -1;
2172
Sage Weil31b80062009-10-06 11:31:13 -07002173more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002174 dout("try_read start on %p state %lu\n", con, con->state);
2175 if (con->state != CON_STATE_CONNECTING &&
2176 con->state != CON_STATE_NEGOTIATING &&
2177 con->state != CON_STATE_OPEN)
2178 return 0;
2179
2180 BUG_ON(!con->sock);
2181
Sage Weil31b80062009-10-06 11:31:13 -07002182 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2183 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002184
Sage Weil8dacc7d2012-07-20 17:24:40 -07002185 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002186 dout("try_read connecting\n");
2187 ret = read_partial_banner(con);
2188 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002189 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002190 ret = process_banner(con);
2191 if (ret < 0)
2192 goto out;
2193
Sage Weil8dacc7d2012-07-20 17:24:40 -07002194 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002195
Jim Schutt6d4221b2012-08-10 10:37:38 -07002196 /*
2197 * Received banner is good, exchange connection info.
2198 * Do not reset out_kvec, as sending our banner raced
2199 * with receiving peer banner after connect completed.
2200 */
Alex Elder7593af92012-05-24 11:55:03 -05002201 ret = prepare_write_connect(con);
2202 if (ret < 0)
2203 goto out;
2204 prepare_read_connect(con);
2205
2206 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002207 goto out;
2208 }
2209
Sage Weil8dacc7d2012-07-20 17:24:40 -07002210 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002211 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002212 ret = read_partial_connect(con);
2213 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002214 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002215 ret = process_connect(con);
2216 if (ret < 0)
2217 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002218 goto more;
2219 }
2220
Alex Elder122070a2012-12-26 10:43:57 -06002221 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002222
Sage Weil31b80062009-10-06 11:31:13 -07002223 if (con->in_base_pos < 0) {
2224 /*
2225 * skipping + discarding content.
2226 *
2227 * FIXME: there must be a better way to do this!
2228 */
Alex Elder84495f42012-02-15 07:43:55 -06002229 static char buf[SKIP_BUF_SIZE];
2230 int skip = min((int) sizeof (buf), -con->in_base_pos);
2231
Sage Weil31b80062009-10-06 11:31:13 -07002232 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2233 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2234 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002235 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002236 con->in_base_pos += ret;
2237 if (con->in_base_pos)
2238 goto more;
2239 }
2240 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2241 /*
2242 * what's next?
2243 */
2244 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2245 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002246 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002247 dout("try_read got tag %d\n", (int)con->in_tag);
2248 switch (con->in_tag) {
2249 case CEPH_MSGR_TAG_MSG:
2250 prepare_read_message(con);
2251 break;
2252 case CEPH_MSGR_TAG_ACK:
2253 prepare_read_ack(con);
2254 break;
2255 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002256 con_close_socket(con);
2257 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002258 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002259 default:
2260 goto bad_tag;
2261 }
2262 }
2263 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2264 ret = read_partial_message(con);
2265 if (ret <= 0) {
2266 switch (ret) {
2267 case -EBADMSG:
2268 con->error_msg = "bad crc";
2269 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002270 break;
Sage Weil31b80062009-10-06 11:31:13 -07002271 case -EIO:
2272 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002273 break;
Sage Weil31b80062009-10-06 11:31:13 -07002274 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002275 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002276 }
2277 if (con->in_tag == CEPH_MSGR_TAG_READY)
2278 goto more;
2279 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002280 if (con->state == CON_STATE_OPEN)
2281 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002282 goto more;
2283 }
2284 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2285 ret = read_partial_ack(con);
2286 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002287 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002288 process_ack(con);
2289 goto more;
2290 }
2291
Sage Weil31b80062009-10-06 11:31:13 -07002292out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002293 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002294 return ret;
2295
2296bad_tag:
2297 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2298 con->error_msg = "protocol error, garbage tag";
2299 ret = -1;
2300 goto out;
2301}
2302
2303
2304/*
Alex Elder802c6d92012-10-08 20:37:30 -07002305 * Atomically queue work on a connection after the specified delay.
2306 * Bump @con reference to avoid races with connection teardown.
2307 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002308 */
Alex Elder802c6d92012-10-08 20:37:30 -07002309static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002310{
Sage Weil31b80062009-10-06 11:31:13 -07002311 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002312 dout("%s %p ref count 0\n", __func__, con);
2313
2314 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002315 }
2316
Alex Elder802c6d92012-10-08 20:37:30 -07002317 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2318 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002319 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002320
2321 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002322 }
Alex Elder802c6d92012-10-08 20:37:30 -07002323
2324 dout("%s %p %lu\n", __func__, con, delay);
2325
2326 return 0;
2327}
2328
2329static void queue_con(struct ceph_connection *con)
2330{
2331 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002332}
2333
Alex Elder7bb21d682012-12-07 19:50:07 -06002334static bool con_sock_closed(struct ceph_connection *con)
2335{
Alex Elderc9ffc772013-02-20 10:25:12 -06002336 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002337 return false;
2338
2339#define CASE(x) \
2340 case CON_STATE_ ## x: \
2341 con->error_msg = "socket closed (con state " #x ")"; \
2342 break;
2343
2344 switch (con->state) {
2345 CASE(CLOSED);
2346 CASE(PREOPEN);
2347 CASE(CONNECTING);
2348 CASE(NEGOTIATING);
2349 CASE(OPEN);
2350 CASE(STANDBY);
2351 default:
2352 pr_warning("%s con %p unrecognized state %lu\n",
2353 __func__, con, con->state);
2354 con->error_msg = "unrecognized con state";
2355 BUG();
2356 break;
2357 }
2358#undef CASE
2359
2360 return true;
2361}
2362
Alex Elderf20a39f2013-02-19 12:25:57 -06002363static bool con_backoff(struct ceph_connection *con)
2364{
2365 int ret;
2366
2367 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2368 return false;
2369
2370 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2371 if (ret) {
2372 dout("%s: con %p FAILED to back off %lu\n", __func__,
2373 con, con->delay);
2374 BUG_ON(ret == -ENOENT);
2375 con_flag_set(con, CON_FLAG_BACKOFF);
2376 }
2377
2378 return true;
2379}
2380
Alex Elder93209262013-02-19 12:25:57 -06002381/* Finish fault handling; con->mutex must *not* be held here */
2382
2383static void con_fault_finish(struct ceph_connection *con)
2384{
2385 /*
2386 * in case we faulted due to authentication, invalidate our
2387 * current tickets so that we can get new ones.
2388 */
2389 if (con->auth_retry && con->ops->invalidate_authorizer) {
2390 dout("calling invalidate_authorizer()\n");
2391 con->ops->invalidate_authorizer(con);
2392 }
2393
2394 if (con->ops->fault)
2395 con->ops->fault(con);
2396}
2397
Sage Weil31b80062009-10-06 11:31:13 -07002398/*
2399 * Do some work on a connection. Drop a connection ref when we're done.
2400 */
2401static void con_work(struct work_struct *work)
2402{
2403 struct ceph_connection *con = container_of(work, struct ceph_connection,
2404 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002405 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002406
Sage Weil9dd46582010-04-28 13:51:50 -07002407 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002408 while (true) {
2409 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002410
Alex Elder49659412013-02-19 12:25:57 -06002411 if ((fault = con_sock_closed(con))) {
2412 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2413 break;
2414 }
2415 if (con_backoff(con)) {
2416 dout("%s: con %p BACKOFF\n", __func__, con);
2417 break;
2418 }
2419 if (con->state == CON_STATE_STANDBY) {
2420 dout("%s: con %p STANDBY\n", __func__, con);
2421 break;
2422 }
2423 if (con->state == CON_STATE_CLOSED) {
2424 dout("%s: con %p CLOSED\n", __func__, con);
2425 BUG_ON(con->sock);
2426 break;
2427 }
2428 if (con->state == CON_STATE_PREOPEN) {
2429 dout("%s: con %p PREOPEN\n", __func__, con);
2430 BUG_ON(con->sock);
2431 }
Sage Weil0da5d702011-05-19 11:21:05 -07002432
Alex Elder49659412013-02-19 12:25:57 -06002433 ret = try_read(con);
2434 if (ret < 0) {
2435 if (ret == -EAGAIN)
2436 continue;
2437 con->error_msg = "socket error on read";
2438 fault = true;
2439 break;
2440 }
2441
2442 ret = try_write(con);
2443 if (ret < 0) {
2444 if (ret == -EAGAIN)
2445 continue;
2446 con->error_msg = "socket error on write";
2447 fault = true;
2448 }
2449
2450 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002451 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002452 if (fault)
2453 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002454 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002455
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002456 if (fault)
2457 con_fault_finish(con);
2458
2459 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002460}
2461
Sage Weil31b80062009-10-06 11:31:13 -07002462/*
2463 * Generic error/fault handler. A retry mechanism is used with
2464 * exponential backoff
2465 */
Alex Elder93209262013-02-19 12:25:57 -06002466static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002467{
Alex Elder28362982012-12-14 16:47:41 -06002468 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002469 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002470 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002471 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002472
Alex Elder122070a2012-12-26 10:43:57 -06002473 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002474 con->state != CON_STATE_NEGOTIATING &&
2475 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002476
Sage Weil31b80062009-10-06 11:31:13 -07002477 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002478
Alex Elderc9ffc772013-02-20 10:25:12 -06002479 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002480 dout("fault on LOSSYTX channel, marking CLOSED\n");
2481 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002482 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002483 }
2484
Sage Weil5e095e82009-12-14 14:30:34 -08002485 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002486 BUG_ON(con->in_msg->con != con);
2487 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002488 ceph_msg_put(con->in_msg);
2489 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002490 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002491 }
Sage Weil31b80062009-10-06 11:31:13 -07002492
Sage Weile80a52d2010-02-25 12:40:45 -08002493 /* Requeue anything that hasn't been acked */
2494 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002495
Sage Weile76661d2011-03-03 10:10:15 -08002496 /* If there are no messages queued or keepalive pending, place
2497 * the connection in a STANDBY state */
2498 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002499 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002500 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002501 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002502 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002503 } else {
2504 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002505 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002506 if (con->delay == 0)
2507 con->delay = BASE_DELAY_INTERVAL;
2508 else if (con->delay < MAX_DELAY_INTERVAL)
2509 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002510 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002511 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002512 }
Sage Weil31b80062009-10-06 11:31:13 -07002513}
2514
2515
2516
2517/*
Alex Elder15d98822012-05-26 23:26:43 -05002518 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002519 */
Alex Elder15d98822012-05-26 23:26:43 -05002520void ceph_messenger_init(struct ceph_messenger *msgr,
2521 struct ceph_entity_addr *myaddr,
2522 u32 supported_features,
2523 u32 required_features,
2524 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002525{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002526 msgr->supported_features = supported_features;
2527 msgr->required_features = required_features;
2528
Sage Weil31b80062009-10-06 11:31:13 -07002529 spin_lock_init(&msgr->global_seq_lock);
2530
Sage Weil31b80062009-10-06 11:31:13 -07002531 if (myaddr)
2532 msgr->inst.addr = *myaddr;
2533
2534 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002535 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002536 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002537 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002538 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002539
Guanjun Hea2a32582012-07-08 19:50:33 -07002540 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002541
Alex Elder15d98822012-05-26 23:26:43 -05002542 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002543}
Alex Elder15d98822012-05-26 23:26:43 -05002544EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002545
Sage Weile00de342011-03-04 12:25:05 -08002546static void clear_standby(struct ceph_connection *con)
2547{
2548 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002549 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002550 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002551 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002552 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002553 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2554 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002555 }
2556}
2557
Sage Weil31b80062009-10-06 11:31:13 -07002558/*
2559 * Queue up an outgoing message on the given connection.
2560 */
2561void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2562{
Sage Weila59b55a2012-07-20 15:34:04 -07002563 /* set src+dst */
2564 msg->hdr.src = con->msgr->inst.name;
2565 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2566 msg->needs_out_seq = true;
2567
2568 mutex_lock(&con->mutex);
2569
Sage Weil8dacc7d2012-07-20 17:24:40 -07002570 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002571 dout("con_send %p closed, dropping %p\n", con, msg);
2572 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002573 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002574 return;
2575 }
2576
Alex Elder38941f82012-06-01 14:56:43 -05002577 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002578 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002579 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002580
Sage Weil31b80062009-10-06 11:31:13 -07002581 BUG_ON(!list_empty(&msg->list_head));
2582 list_add_tail(&msg->list_head, &con->out_queue);
2583 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2584 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2585 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2586 le32_to_cpu(msg->hdr.front_len),
2587 le32_to_cpu(msg->hdr.middle_len),
2588 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002589
2590 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002591 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002592
2593 /* if there wasn't anything waiting to send before, queue
2594 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002595 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002596 queue_con(con);
2597}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002598EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002599
2600/*
2601 * Revoke a message that was previously queued for send
2602 */
Alex Elder6740a842012-06-01 14:56:43 -05002603void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002604{
Alex Elder6740a842012-06-01 14:56:43 -05002605 struct ceph_connection *con = msg->con;
2606
2607 if (!con)
2608 return; /* Message not in our possession */
2609
Sage Weilec302642009-12-22 10:43:42 -08002610 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002611 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002612 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002613 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002614 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002615 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002616 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002617 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002618
Sage Weil31b80062009-10-06 11:31:13 -07002619 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002620 }
2621 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002622 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002623 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002624 if (con->out_kvec_is_msg) {
2625 con->out_skip = con->out_kvec_bytes;
2626 con->out_kvec_is_msg = false;
2627 }
Sage Weiled98ada2010-07-05 12:15:14 -07002628 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002629
2630 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002631 }
Sage Weilec302642009-12-22 10:43:42 -08002632 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002633}
2634
2635/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002636 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002637 */
Alex Elder8921d112012-06-01 14:56:43 -05002638void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002639{
Alex Elder8921d112012-06-01 14:56:43 -05002640 struct ceph_connection *con;
2641
2642 BUG_ON(msg == NULL);
2643 if (!msg->con) {
2644 dout("%s msg %p null con\n", __func__, msg);
2645
2646 return; /* Message not in our possession */
2647 }
2648
2649 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002650 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002651 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002652 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2653 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2654 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002655
2656 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002657 dout("%s %p msg %p revoked\n", __func__, con, msg);
2658 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002659 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002660 front_len -
2661 middle_len -
2662 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002663 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002664 ceph_msg_put(con->in_msg);
2665 con->in_msg = NULL;
2666 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002667 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002668 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002669 dout("%s %p in_msg %p msg %p no-op\n",
2670 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002671 }
2672 mutex_unlock(&con->mutex);
2673}
2674
2675/*
Sage Weil31b80062009-10-06 11:31:13 -07002676 * Queue a keepalive byte to ensure the tcp connection is alive.
2677 */
2678void ceph_con_keepalive(struct ceph_connection *con)
2679{
Sage Weile00de342011-03-04 12:25:05 -08002680 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07002681 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08002682 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07002683 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06002684 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
2685 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002686 queue_con(con);
2687}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002688EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002689
Alex Elder02afca62013-02-14 12:16:43 -06002690void ceph_msg_data_set_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06002691 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06002692{
Alex Elder07aa1552013-03-04 18:29:06 -06002693 BUG_ON(!pages);
2694 BUG_ON(!length);
2695 BUG_ON(msg->pages);
2696 BUG_ON(msg->length);
Alex Elder02afca62013-02-14 12:16:43 -06002697
2698 msg->pages = pages;
Alex Elder4a73ef22013-03-07 15:38:26 -06002699 msg->length = length;
Alex Elder02afca62013-02-14 12:16:43 -06002700 msg->page_alignment = alignment & ~PAGE_MASK;
2701}
2702EXPORT_SYMBOL(ceph_msg_data_set_pages);
Sage Weil31b80062009-10-06 11:31:13 -07002703
Alex Elder27fa8382013-02-14 12:16:43 -06002704void ceph_msg_data_set_pagelist(struct ceph_msg *msg,
2705 struct ceph_pagelist *pagelist)
2706{
Alex Elder07aa1552013-03-04 18:29:06 -06002707 BUG_ON(!pagelist);
2708 BUG_ON(!pagelist->length);
2709 BUG_ON(msg->pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06002710
2711 msg->pagelist = pagelist;
2712}
2713EXPORT_SYMBOL(ceph_msg_data_set_pagelist);
2714
2715void ceph_msg_data_set_bio(struct ceph_msg *msg, struct bio *bio)
2716{
Alex Elder07aa1552013-03-04 18:29:06 -06002717 BUG_ON(!bio);
2718 BUG_ON(msg->bio);
Alex Elder27fa8382013-02-14 12:16:43 -06002719
2720 msg->bio = bio;
2721}
2722EXPORT_SYMBOL(ceph_msg_data_set_bio);
2723
2724void ceph_msg_data_set_trail(struct ceph_msg *msg, struct ceph_pagelist *trail)
2725{
Alex Elder07aa1552013-03-04 18:29:06 -06002726 BUG_ON(!trail);
2727 BUG_ON(!trail->length);
2728 BUG_ON(msg->trail);
Alex Elder27fa8382013-02-14 12:16:43 -06002729
2730 msg->trail = trail;
2731}
2732EXPORT_SYMBOL(ceph_msg_data_set_trail);
2733
Sage Weil31b80062009-10-06 11:31:13 -07002734/*
2735 * construct a new message with given type, size
2736 * the new msg has a ref count of 1.
2737 */
Sage Weilb61c2762011-08-09 15:03:46 -07002738struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2739 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07002740{
2741 struct ceph_msg *m;
2742
Alex Elder9516e452013-03-01 18:00:16 -06002743 m = kzalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002744 if (m == NULL)
2745 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05002746
Sage Weil31b80062009-10-06 11:31:13 -07002747 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002748 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07002749 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002750
Alex Elder9516e452013-03-01 18:00:16 -06002751 INIT_LIST_HEAD(&m->list_head);
2752 kref_init(&m->kref);
Henry C Changca208922011-05-03 02:29:56 +00002753
Sage Weil31b80062009-10-06 11:31:13 -07002754 /* front */
Alex Elder9516e452013-03-01 18:00:16 -06002755 m->front_max = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07002756 if (front_len) {
2757 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002758 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002759 PAGE_KERNEL);
2760 m->front_is_vmalloc = true;
2761 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002762 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002763 }
2764 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07002765 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07002766 front_len);
2767 goto out2;
2768 }
2769 } else {
2770 m->front.iov_base = NULL;
2771 }
2772 m->front.iov_len = front_len;
2773
Sage Weilbb257662010-04-01 16:07:23 -07002774 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002775 return m;
2776
2777out2:
2778 ceph_msg_put(m);
2779out:
Sage Weilb61c2762011-08-09 15:03:46 -07002780 if (!can_fail) {
2781 pr_err("msg_new can't create type %d front %d\n", type,
2782 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07002783 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07002784 } else {
2785 dout("msg_new can't create type %d front %d\n", type,
2786 front_len);
2787 }
Sage Weila79832f2010-04-01 16:06:19 -07002788 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002789}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002790EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002791
2792/*
Sage Weil31b80062009-10-06 11:31:13 -07002793 * Allocate "middle" portion of a message, if it is needed and wasn't
2794 * allocated by alloc_msg. This allows us to read a small fixed-size
2795 * per-type header in the front and then gracefully fail (i.e.,
2796 * propagate the error to the caller based on info in the front) when
2797 * the middle is too large.
2798 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002799static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002800{
2801 int type = le16_to_cpu(msg->hdr.type);
2802 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2803
2804 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2805 ceph_msg_type_name(type), middle_len);
2806 BUG_ON(!middle_len);
2807 BUG_ON(msg->middle);
2808
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002809 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002810 if (!msg->middle)
2811 return -ENOMEM;
2812 return 0;
2813}
2814
Yehuda Sadeh24504182010-01-08 13:58:34 -08002815/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05002816 * Allocate a message for receiving an incoming message on a
2817 * connection, and save the result in con->in_msg. Uses the
2818 * connection's private alloc_msg op if available.
2819 *
Sage Weil4740a622012-07-30 18:19:30 -07002820 * Returns 0 on success, or a negative error code.
2821 *
2822 * On success, if we set *skip = 1:
2823 * - the next message should be skipped and ignored.
2824 * - con->in_msg == NULL
2825 * or if we set *skip = 0:
2826 * - con->in_msg is non-null.
2827 * On error (ENOMEM, EAGAIN, ...),
2828 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08002829 */
Sage Weil4740a622012-07-30 18:19:30 -07002830static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002831{
Sage Weil4740a622012-07-30 18:19:30 -07002832 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002833 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06002834 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07002835 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002836
Alex Elder1c20f2d2012-06-04 14:43:32 -05002837 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06002838 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002839
Alex Elder53ded492013-03-01 18:00:14 -06002840 mutex_unlock(&con->mutex);
2841 msg = con->ops->alloc_msg(con, hdr, skip);
2842 mutex_lock(&con->mutex);
2843 if (con->state != CON_STATE_OPEN) {
2844 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06002845 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06002846 return -EAGAIN;
2847 }
Alex Elder41375772013-03-05 09:25:10 -06002848 if (msg) {
2849 BUG_ON(*skip);
2850 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07002851 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002852 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06002853 } else {
2854 /*
2855 * Null message pointer means either we should skip
2856 * this message or we couldn't allocate memory. The
2857 * former is not an error.
2858 */
2859 if (*skip)
2860 return 0;
2861 con->error_msg = "error allocating memory for incoming message";
2862
Alex Elder53ded492013-03-01 18:00:14 -06002863 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002864 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002865 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002866
Alex Elder1c20f2d2012-06-04 14:43:32 -05002867 if (middle_len && !con->in_msg->middle) {
2868 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002869 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002870 ceph_msg_put(con->in_msg);
2871 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002872 }
2873 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002874
Sage Weil4740a622012-07-30 18:19:30 -07002875 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002876}
2877
Sage Weil31b80062009-10-06 11:31:13 -07002878
2879/*
2880 * Free a generically kmalloc'd message.
2881 */
2882void ceph_msg_kfree(struct ceph_msg *m)
2883{
2884 dout("msg_kfree %p\n", m);
2885 if (m->front_is_vmalloc)
2886 vfree(m->front.iov_base);
2887 else
2888 kfree(m->front.iov_base);
2889 kfree(m);
2890}
2891
2892/*
2893 * Drop a msg ref. Destroy as needed.
2894 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002895void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002896{
Sage Weilc2e552e2009-12-07 15:55:05 -08002897 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002898
Sage Weilc2e552e2009-12-07 15:55:05 -08002899 dout("ceph_msg_put last one on %p\n", m);
2900 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002901
Sage Weilc2e552e2009-12-07 15:55:05 -08002902 /* drop middle, data, if any */
2903 if (m->middle) {
2904 ceph_buffer_put(m->middle);
2905 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002906 }
Alex Elder4a73ef22013-03-07 15:38:26 -06002907 m->length = 0;
Sage Weilc2e552e2009-12-07 15:55:05 -08002908 m->pages = NULL;
2909
Sage Weil58bb3b32009-12-23 12:12:31 -08002910 if (m->pagelist) {
2911 ceph_pagelist_release(m->pagelist);
2912 kfree(m->pagelist);
2913 m->pagelist = NULL;
2914 }
2915
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002916 m->trail = NULL;
2917
Sage Weilc2e552e2009-12-07 15:55:05 -08002918 if (m->pool)
2919 ceph_msgpool_put(m->pool, m);
2920 else
2921 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002922}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002923EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002924
2925void ceph_msg_dump(struct ceph_msg *msg)
2926{
Alex Elder4a73ef22013-03-07 15:38:26 -06002927 pr_debug("msg_dump %p (front_max %d length %zd)\n", msg,
2928 msg->front_max, msg->length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002929 print_hex_dump(KERN_DEBUG, "header: ",
2930 DUMP_PREFIX_OFFSET, 16, 1,
2931 &msg->hdr, sizeof(msg->hdr), true);
2932 print_hex_dump(KERN_DEBUG, " front: ",
2933 DUMP_PREFIX_OFFSET, 16, 1,
2934 msg->front.iov_base, msg->front.iov_len, true);
2935 if (msg->middle)
2936 print_hex_dump(KERN_DEBUG, "middle: ",
2937 DUMP_PREFIX_OFFSET, 16, 1,
2938 msg->middle->vec.iov_base,
2939 msg->middle->vec.iov_len, true);
2940 print_hex_dump(KERN_DEBUG, "footer: ",
2941 DUMP_PREFIX_OFFSET, 16, 1,
2942 &msg->footer, sizeof(msg->footer), true);
2943}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002944EXPORT_SYMBOL(ceph_msg_dump);