blob: 09ada79248748a7aae2afe41a2ec760a1a8721e8 [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>
Yehuda Sadeh68b44762010-04-06 15:01:27 -070012#include <linux/bio.h>
13#include <linux/blkdev.h>
Noah Watkinsee3b56f2011-09-23 11:48:42 -070014#include <linux/dns_resolver.h>
Sage Weil31b80062009-10-06 11:31:13 -070015#include <net/tcp.h>
16
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070017#include <linux/ceph/libceph.h>
18#include <linux/ceph/messenger.h>
19#include <linux/ceph/decode.h>
20#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040021#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070022
23/*
24 * Ceph uses the messenger to exchange ceph_msg messages with other
25 * hosts in the system. The messenger provides ordered and reliable
26 * delivery. We tolerate TCP disconnects by reconnecting (with
27 * exponential backoff) in the case of a fault (disconnection, bad
28 * crc, protocol error). Acks allow sent messages to be discarded by
29 * the sender.
30 */
31
Alex Elderbc18f4b2012-06-20 21:53:53 -050032/*
33 * We track the state of the socket on a given connection using
34 * values defined below. The transition to a new socket state is
35 * handled by a function which verifies we aren't coming from an
36 * unexpected state.
37 *
38 * --------
39 * | NEW* | transient initial state
40 * --------
41 * | con_sock_state_init()
42 * v
43 * ----------
44 * | CLOSED | initialized, but no socket (and no
45 * ---------- TCP connection)
46 * ^ \
47 * | \ con_sock_state_connecting()
48 * | ----------------------
49 * | \
50 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070051 * |+--------------------------- \
52 * | \ \ \
53 * | ----------- \ \
54 * | | CLOSING | socket event; \ \
55 * | ----------- await close \ \
56 * | ^ \ |
57 * | | \ |
58 * | + con_sock_state_closing() \ |
59 * | / \ | |
60 * | / --------------- | |
61 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050062 * | / --------------
63 * | / -----------------| CONNECTING | socket created, TCP
64 * | | / -------------- connect initiated
65 * | | | con_sock_state_connected()
66 * | | v
67 * -------------
68 * | CONNECTED | TCP connection established
69 * -------------
70 *
71 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
72 */
Alex Elderce2c8902012-05-22 22:15:49 -050073
74#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
75#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
76#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
77#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
78#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
79
Sage Weil31b80062009-10-06 11:31:13 -070080/* static tag bytes (protocol control messages) */
81static char tag_msg = CEPH_MSGR_TAG_MSG;
82static char tag_ack = CEPH_MSGR_TAG_ACK;
83static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
84
Sage Weila6a53492010-04-13 14:07:07 -070085#ifdef CONFIG_LOCKDEP
86static struct lock_class_key socket_class;
87#endif
88
Alex Elder84495f42012-02-15 07:43:55 -060089/*
90 * When skipping (ignoring) a block of input we read it into a "skip
91 * buffer," which is this many bytes in size.
92 */
93#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -070094
95static void queue_con(struct ceph_connection *con);
96static void con_work(struct work_struct *);
97static void ceph_fault(struct ceph_connection *con);
98
Sage Weil31b80062009-10-06 11:31:13 -070099/*
Alex Elderf64a9312012-01-23 15:49:27 -0600100 * Nicely render a sockaddr as a string. An array of formatted
101 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700102 */
Alex Elderf64a9312012-01-23 15:49:27 -0600103#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
104#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
105#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
106#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
107
108static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
109static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700110
Alex Elder57666512012-01-23 15:49:27 -0600111static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600112
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700113const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700114{
115 int i;
116 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600117 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
118 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700119
Alex Elderf64a9312012-01-23 15:49:27 -0600120 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700121 s = addr_str[i];
122
123 switch (ss->ss_family) {
124 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600125 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
126 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700127 break;
128
129 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600130 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
131 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700132 break;
133
134 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600135 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
136 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700137 }
138
139 return s;
140}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700141EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700142
Sage Weil63f2d212009-11-03 15:17:56 -0800143static void encode_my_addr(struct ceph_messenger *msgr)
144{
145 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
146 ceph_encode_addr(&msgr->my_enc_addr);
147}
148
Sage Weil31b80062009-10-06 11:31:13 -0700149/*
150 * work queue for all reading and writing to/from the socket.
151 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600152static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700153
Alex Elder6173d1f2012-02-14 14:05:33 -0600154void _ceph_msgr_exit(void)
155{
Alex Elderd3002b92012-02-14 14:05:33 -0600156 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600157 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600158 ceph_msgr_wq = NULL;
159 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600160
Alex Elder6173d1f2012-02-14 14:05:33 -0600161 BUG_ON(zero_page == NULL);
162 kunmap(zero_page);
163 page_cache_release(zero_page);
164 zero_page = NULL;
165}
166
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700167int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700168{
Alex Elder57666512012-01-23 15:49:27 -0600169 BUG_ON(zero_page != NULL);
170 zero_page = ZERO_PAGE(0);
171 page_cache_get(zero_page);
172
Tejun Heof363e452011-01-03 14:49:46 +0100173 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600174 if (ceph_msgr_wq)
175 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600176
Alex Elder6173d1f2012-02-14 14:05:33 -0600177 pr_err("msgr_init failed to create workqueue\n");
178 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600179
Alex Elder6173d1f2012-02-14 14:05:33 -0600180 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700181}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700182EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700183
184void ceph_msgr_exit(void)
185{
Alex Elder57666512012-01-23 15:49:27 -0600186 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600187
Alex Elder6173d1f2012-02-14 14:05:33 -0600188 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700189}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700190EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700191
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700192void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700193{
194 flush_workqueue(ceph_msgr_wq);
195}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700196EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700197
Alex Elderce2c8902012-05-22 22:15:49 -0500198/* Connection socket state transition functions */
199
200static void con_sock_state_init(struct ceph_connection *con)
201{
202 int old_state;
203
204 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
205 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
206 printk("%s: unexpected old state %d\n", __func__, old_state);
207}
208
209static void con_sock_state_connecting(struct ceph_connection *con)
210{
211 int old_state;
212
213 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
214 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
215 printk("%s: unexpected old state %d\n", __func__, old_state);
216}
217
218static void con_sock_state_connected(struct ceph_connection *con)
219{
220 int old_state;
221
222 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
223 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
224 printk("%s: unexpected old state %d\n", __func__, old_state);
225}
226
227static void con_sock_state_closing(struct ceph_connection *con)
228{
229 int old_state;
230
231 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
232 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
233 old_state != CON_SOCK_STATE_CONNECTED &&
234 old_state != CON_SOCK_STATE_CLOSING))
235 printk("%s: unexpected old state %d\n", __func__, old_state);
236}
237
238static void con_sock_state_closed(struct ceph_connection *con)
239{
240 int old_state;
241
242 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
243 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700244 old_state != CON_SOCK_STATE_CLOSING &&
245 old_state != CON_SOCK_STATE_CONNECTING))
Alex Elderce2c8902012-05-22 22:15:49 -0500246 printk("%s: unexpected old state %d\n", __func__, old_state);
247}
Sage Weila922d382010-05-29 09:41:23 -0700248
Sage Weil31b80062009-10-06 11:31:13 -0700249/*
250 * socket callback functions
251 */
252
253/* data available on socket, or listen socket received a connect */
Alex Elder327800b2012-05-22 11:41:43 -0500254static void ceph_sock_data_ready(struct sock *sk, int count_unused)
Sage Weil31b80062009-10-06 11:31:13 -0700255{
Alex Elderbd406142012-01-23 15:49:27 -0600256 struct ceph_connection *con = sk->sk_user_data;
257
Sage Weil31b80062009-10-06 11:31:13 -0700258 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500259 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700260 con, con->state);
261 queue_con(con);
262 }
263}
264
265/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500266static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700267{
Alex Elderd3002b92012-02-14 14:05:33 -0600268 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700269
Jim Schutt182fac22012-02-29 08:30:58 -0700270 /* only queue to workqueue if there is data we want to write,
271 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500272 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700273 * doesn't get called again until try_write() fills the socket
274 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
275 * and net/core/stream.c:sk_stream_write_space().
276 */
Alex Elder928443c2012-05-22 11:41:43 -0500277 if (test_bit(WRITE_PENDING, &con->flags)) {
Jim Schutt182fac22012-02-29 08:30:58 -0700278 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500279 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700280 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
281 queue_con(con);
282 }
Sage Weil31b80062009-10-06 11:31:13 -0700283 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500284 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700285 }
Sage Weil31b80062009-10-06 11:31:13 -0700286}
287
288/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500289static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700290{
Alex Elderbd406142012-01-23 15:49:27 -0600291 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700292
Alex Elder327800b2012-05-22 11:41:43 -0500293 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700294 con, con->state, sk->sk_state);
295
296 if (test_bit(CLOSED, &con->state))
297 return;
298
299 switch (sk->sk_state) {
300 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500301 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700302 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500303 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500304 con_sock_state_closing(con);
Alex Elderd65c9e02012-06-20 21:53:53 -0500305 set_bit(SOCK_CLOSED, &con->flags);
306 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700307 break;
308 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500309 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500310 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700311 queue_con(con);
312 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600313 default: /* Everything else is uninteresting */
314 break;
Sage Weil31b80062009-10-06 11:31:13 -0700315 }
316}
317
318/*
319 * set up socket callbacks
320 */
321static void set_sock_callbacks(struct socket *sock,
322 struct ceph_connection *con)
323{
324 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600325 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500326 sk->sk_data_ready = ceph_sock_data_ready;
327 sk->sk_write_space = ceph_sock_write_space;
328 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700329}
330
331
332/*
333 * socket helpers
334 */
335
336/*
337 * initiate connection to a remote socket.
338 */
Alex Elder41617d02012-02-14 14:05:33 -0600339static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700340{
Sage Weilf91d3472010-07-01 15:18:31 -0700341 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700342 struct socket *sock;
343 int ret;
344
345 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700346 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
347 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700348 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600349 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700350 sock->sk->sk_allocation = GFP_NOFS;
351
Sage Weila6a53492010-04-13 14:07:07 -0700352#ifdef CONFIG_LOCKDEP
353 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
354#endif
355
Sage Weil31b80062009-10-06 11:31:13 -0700356 set_sock_callbacks(sock, con);
357
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700358 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700359
Sage Weil89a86be2012-06-09 14:19:21 -0700360 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700361 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
362 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700363 if (ret == -EINPROGRESS) {
364 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700365 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700366 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600367 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700368 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700369 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700370 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700371 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700372
Alex Elder41617d02012-02-14 14:05:33 -0600373 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600374 }
375 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600376 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700377}
378
379static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
380{
381 struct kvec iov = {buf, len};
382 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800383 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700384
Sage Weil98bdb0a2011-01-25 08:17:48 -0800385 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
386 if (r == -EAGAIN)
387 r = 0;
388 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700389}
390
391/*
392 * write something. @more is true if caller will be sending more data
393 * shortly.
394 */
395static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
396 size_t kvlen, size_t len, int more)
397{
398 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800399 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700400
401 if (more)
402 msg.msg_flags |= MSG_MORE;
403 else
404 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
405
Sage Weil42961d22011-01-25 08:19:34 -0800406 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
407 if (r == -EAGAIN)
408 r = 0;
409 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700410}
411
Alex Elder31739132012-03-07 11:40:08 -0600412static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
413 int offset, size_t size, int more)
414{
415 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
416 int ret;
417
418 ret = kernel_sendpage(sock, page, offset, size, flags);
419 if (ret == -EAGAIN)
420 ret = 0;
421
422 return ret;
423}
424
Sage Weil31b80062009-10-06 11:31:13 -0700425
426/*
427 * Shutdown/close the socket for the given connection.
428 */
429static int con_close_socket(struct ceph_connection *con)
430{
431 int rc;
432
433 dout("con_close_socket on %p sock %p\n", con, con->sock);
434 if (!con->sock)
435 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700436 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
437 sock_release(con->sock);
438 con->sock = NULL;
Alex Elder456ea462012-06-20 21:53:53 -0500439
440 /*
441 * Forcibly clear the SOCK_CLOSE flag. It gets set
442 * independent of the connection mutex, and we could have
443 * received a socket close event before we had the chance to
444 * shut the socket down.
445 */
Alex Eldera8d00e32012-06-20 21:53:53 -0500446 clear_bit(SOCK_CLOSED, &con->flags);
Alex Elderce2c8902012-05-22 22:15:49 -0500447 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700448 return rc;
449}
450
451/*
452 * Reset a connection. Discard all incoming and outgoing messages
453 * and clear *_seq state.
454 */
455static void ceph_msg_remove(struct ceph_msg *msg)
456{
457 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500458 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700459 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500460 msg->con = NULL;
461
Sage Weil31b80062009-10-06 11:31:13 -0700462 ceph_msg_put(msg);
463}
464static void ceph_msg_remove_list(struct list_head *head)
465{
466 while (!list_empty(head)) {
467 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
468 list_head);
469 ceph_msg_remove(msg);
470 }
471}
472
473static void reset_connection(struct ceph_connection *con)
474{
475 /* reset connection, out_queue, msg_ and connect_seq */
476 /* discard existing out_queue and msg_seq */
Sage Weil31b80062009-10-06 11:31:13 -0700477 ceph_msg_remove_list(&con->out_queue);
478 ceph_msg_remove_list(&con->out_sent);
479
Sage Weilcf3e5c42009-12-11 09:48:05 -0800480 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500481 BUG_ON(con->in_msg->con != con);
482 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800483 ceph_msg_put(con->in_msg);
484 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700485 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800486 }
487
Sage Weil31b80062009-10-06 11:31:13 -0700488 con->connect_seq = 0;
489 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800490 if (con->out_msg) {
491 ceph_msg_put(con->out_msg);
492 con->out_msg = NULL;
493 }
Sage Weil31b80062009-10-06 11:31:13 -0700494 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700495 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700496}
497
498/*
499 * mark a peer down. drop any open connections.
500 */
501void ceph_con_close(struct ceph_connection *con)
502{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700503 dout("con_close %p peer %s\n", con,
504 ceph_pr_addr(&con->peer_addr.in_addr));
Alex Eldera5988c42012-05-29 11:04:58 -0500505 clear_bit(NEGOTIATING, &con->state);
Alex Elderbb9e6bb2012-06-20 21:53:53 -0500506 clear_bit(CONNECTING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -0500507 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700508 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
Alex Eldera5988c42012-05-29 11:04:58 -0500509 set_bit(CLOSED, &con->state);
510
Alex Elder928443c2012-05-22 11:41:43 -0500511 clear_bit(LOSSYTX, &con->flags); /* so we retry next connect */
512 clear_bit(KEEPALIVE_PENDING, &con->flags);
513 clear_bit(WRITE_PENDING, &con->flags);
Alex Eldera5988c42012-05-29 11:04:58 -0500514
Sage Weilec302642009-12-22 10:43:42 -0800515 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700516 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700517 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800518 cancel_delayed_work(&con->work);
Sage Weilec302642009-12-22 10:43:42 -0800519 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700520 queue_con(con);
521}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700522EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700523
524/*
Sage Weil31b80062009-10-06 11:31:13 -0700525 * Reopen a closed connection, with a new peer address.
526 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700527void ceph_con_open(struct ceph_connection *con,
528 __u8 entity_type, __u64 entity_num,
529 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700530{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700531 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700532 set_bit(OPENING, &con->state);
Alex Eldera5988c42012-05-29 11:04:58 -0500533 WARN_ON(!test_and_clear_bit(CLOSED, &con->state));
534
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700535 con->peer_name.type = (__u8) entity_type;
536 con->peer_name.num = cpu_to_le64(entity_num);
537
Sage Weil31b80062009-10-06 11:31:13 -0700538 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800539 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -0700540 queue_con(con);
541}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700542EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700543
544/*
Sage Weil87b315a2010-03-22 14:51:18 -0700545 * return true if this connection ever successfully opened
546 */
547bool ceph_con_opened(struct ceph_connection *con)
548{
549 return con->connect_seq > 0;
550}
551
552/*
Sage Weil31b80062009-10-06 11:31:13 -0700553 * initialize a new connection.
554 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500555void ceph_con_init(struct ceph_connection *con, void *private,
556 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700557 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700558{
559 dout("con_init %p\n", con);
560 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500561 con->private = private;
562 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700563 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500564
565 con_sock_state_init(con);
566
Sage Weilec302642009-12-22 10:43:42 -0800567 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700568 INIT_LIST_HEAD(&con->out_queue);
569 INIT_LIST_HEAD(&con->out_sent);
570 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500571
572 set_bit(CLOSED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700573}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700575
576
577/*
578 * We maintain a global counter to order connection attempts. Get
579 * a unique seq greater than @gt.
580 */
581static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
582{
583 u32 ret;
584
585 spin_lock(&msgr->global_seq_lock);
586 if (msgr->global_seq < gt)
587 msgr->global_seq = gt;
588 ret = ++msgr->global_seq;
589 spin_unlock(&msgr->global_seq_lock);
590 return ret;
591}
592
Alex Eldere2200422012-05-23 14:35:23 -0500593static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600594{
595 con->out_kvec_left = 0;
596 con->out_kvec_bytes = 0;
597 con->out_kvec_cur = &con->out_kvec[0];
598}
599
Alex Eldere2200422012-05-23 14:35:23 -0500600static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600601 size_t size, void *data)
602{
603 int index;
604
605 index = con->out_kvec_left;
606 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
607
608 con->out_kvec[index].iov_len = size;
609 con->out_kvec[index].iov_base = data;
610 con->out_kvec_left++;
611 con->out_kvec_bytes += size;
612}
Sage Weil31b80062009-10-06 11:31:13 -0700613
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500614#ifdef CONFIG_BLOCK
615static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
616{
617 if (!bio) {
618 *iter = NULL;
619 *seg = 0;
620 return;
621 }
622 *iter = bio;
623 *seg = bio->bi_idx;
624}
625
626static void iter_bio_next(struct bio **bio_iter, int *seg)
627{
628 if (*bio_iter == NULL)
629 return;
630
631 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
632
633 (*seg)++;
634 if (*seg == (*bio_iter)->bi_vcnt)
635 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
636}
637#endif
638
Alex Elder739c9052012-06-11 14:57:13 -0500639static void prepare_write_message_data(struct ceph_connection *con)
640{
641 struct ceph_msg *msg = con->out_msg;
642
643 BUG_ON(!msg);
644 BUG_ON(!msg->hdr.data_len);
645
646 /* initialize page iterator */
647 con->out_msg_pos.page = 0;
648 if (msg->pages)
649 con->out_msg_pos.page_pos = msg->page_alignment;
650 else
651 con->out_msg_pos.page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -0500652#ifdef CONFIG_BLOCK
Alex Elderabdaa6a2012-06-11 14:57:13 -0500653 if (msg->bio)
Alex Elder572c5882012-06-11 14:57:13 -0500654 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
655#endif
Alex Elder739c9052012-06-11 14:57:13 -0500656 con->out_msg_pos.data_pos = 0;
657 con->out_msg_pos.did_page_crc = false;
658 con->out_more = 1; /* data + footer will follow */
659}
660
Sage Weil31b80062009-10-06 11:31:13 -0700661/*
662 * Prepare footer for currently outgoing message, and finish things
663 * off. Assumes out_kvec* are already valid.. we just add on to the end.
664 */
Alex Elder859eb792012-02-14 14:05:33 -0600665static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700666{
667 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -0600668 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -0700669
Alex Elderfd154f32012-06-11 14:57:13 -0500670 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
671
Sage Weil31b80062009-10-06 11:31:13 -0700672 dout("prepare_write_message_footer %p\n", con);
673 con->out_kvec_is_msg = true;
674 con->out_kvec[v].iov_base = &m->footer;
675 con->out_kvec[v].iov_len = sizeof(m->footer);
676 con->out_kvec_bytes += sizeof(m->footer);
677 con->out_kvec_left++;
678 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800679 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700680}
681
682/*
683 * Prepare headers for the next outgoing message.
684 */
685static void prepare_write_message(struct ceph_connection *con)
686{
687 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -0600688 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -0700689
Alex Eldere2200422012-05-23 14:35:23 -0500690 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -0700691 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800692 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700693
694 /* Sneak an ack in there first? If we can get it into the same
695 * TCP packet that's a good thing. */
696 if (con->in_seq > con->in_seq_acked) {
697 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -0500698 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700699 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500700 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600701 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700702 }
703
Alex Elder38941f82012-06-01 14:56:43 -0500704 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -0600705 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800706 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -0500707 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -0700708
709 /* put message on sent list */
710 ceph_msg_get(m);
711 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700712
Sage Weile84346b2010-05-11 21:20:38 -0700713 /*
714 * only assign outgoing seq # if we haven't sent this message
715 * yet. if it is requeued, resend with it's original seq.
716 */
717 if (m->needs_out_seq) {
718 m->hdr.seq = cpu_to_le64(++con->out_seq);
719 m->needs_out_seq = false;
720 }
Sage Weil31b80062009-10-06 11:31:13 -0700721
722 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
723 m, con->out_seq, le16_to_cpu(m->hdr.type),
724 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
725 le32_to_cpu(m->hdr.data_len),
726 m->nr_pages);
727 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
728
729 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -0500730 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
731 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
732 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -0600733
Sage Weil31b80062009-10-06 11:31:13 -0700734 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -0500735 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -0600736 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -0700737
738 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -0600739 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
740 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -0500741 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -0600742
743 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
744 con->out_msg->footer.front_crc = cpu_to_le32(crc);
745 if (m->middle) {
746 crc = crc32c(0, m->middle->vec.iov_base,
747 m->middle->vec.iov_len);
748 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
749 } else
Sage Weil31b80062009-10-06 11:31:13 -0700750 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -0500751 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700752 le32_to_cpu(con->out_msg->footer.front_crc),
753 le32_to_cpu(con->out_msg->footer.middle_crc));
754
755 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -0500756 con->out_msg->footer.data_crc = 0;
757 if (m->hdr.data_len)
758 prepare_write_message_data(con);
759 else
Sage Weil31b80062009-10-06 11:31:13 -0700760 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -0600761 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700762
Alex Elder928443c2012-05-22 11:41:43 -0500763 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700764}
765
766/*
767 * Prepare an ack.
768 */
769static void prepare_write_ack(struct ceph_connection *con)
770{
771 dout("prepare_write_ack %p %llu -> %llu\n", con,
772 con->in_seq_acked, con->in_seq);
773 con->in_seq_acked = con->in_seq;
774
Alex Eldere2200422012-05-23 14:35:23 -0500775 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -0600776
Alex Eldere2200422012-05-23 14:35:23 -0500777 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -0600778
Sage Weil31b80062009-10-06 11:31:13 -0700779 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500780 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600781 &con->out_temp_ack);
782
Sage Weil31b80062009-10-06 11:31:13 -0700783 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elder928443c2012-05-22 11:41:43 -0500784 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700785}
786
787/*
788 * Prepare to write keepalive byte.
789 */
790static void prepare_write_keepalive(struct ceph_connection *con)
791{
792 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -0500793 con_out_kvec_reset(con);
794 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elder928443c2012-05-22 11:41:43 -0500795 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700796}
797
798/*
799 * Connection negotiation.
800 */
801
Alex Elderdac1e712012-05-16 15:16:39 -0500802static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
803 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800804{
Alex Eldera3530df2012-05-16 15:16:39 -0500805 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -0500806
807 if (!con->ops->get_authorizer) {
808 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
809 con->out_connect.authorizer_len = 0;
810
Alex Elder729796b2012-05-16 15:16:39 -0500811 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -0500812 }
813
814 /* Can't hold the mutex while getting authorizer */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800815
Sage Weilec302642009-12-22 10:43:42 -0800816 mutex_unlock(&con->mutex);
Alex Elderb1c6b982012-05-16 15:16:38 -0500817
Alex Elderdac1e712012-05-16 15:16:39 -0500818 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Alex Elder8f43fb52012-05-16 15:16:39 -0500819
Sage Weilec302642009-12-22 10:43:42 -0800820 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800821
Alex Eldera3530df2012-05-16 15:16:39 -0500822 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -0500823 return auth;
Alex Elder928443c2012-05-22 11:41:43 -0500824 if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->flags))
Alex Elder729796b2012-05-16 15:16:39 -0500825 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -0700826
Alex Elder8f43fb52012-05-16 15:16:39 -0500827 con->auth_reply_buf = auth->authorizer_reply_buf;
828 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
829
Alex Elder859eb792012-02-14 14:05:33 -0600830
Alex Elder729796b2012-05-16 15:16:39 -0500831 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800832}
833
Sage Weil31b80062009-10-06 11:31:13 -0700834/*
835 * We connected to a peer and are saying hello.
836 */
Alex Eldere825a662012-05-16 15:16:38 -0500837static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700838{
Alex Eldere2200422012-05-23 14:35:23 -0500839 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
840 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -0500841 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -0800842
Sage Weileed0ef22009-11-10 14:34:36 -0800843 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500844 set_bit(WRITE_PENDING, &con->flags);
Sage Weileed0ef22009-11-10 14:34:36 -0800845}
846
Alex Eldere825a662012-05-16 15:16:38 -0500847static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -0800848{
Eric Dumazet95c96172012-04-15 05:58:06 +0000849 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -0700850 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -0500851 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -0500852 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -0700853
854 switch (con->peer_name.type) {
855 case CEPH_ENTITY_TYPE_MON:
856 proto = CEPH_MONC_PROTOCOL;
857 break;
858 case CEPH_ENTITY_TYPE_OSD:
859 proto = CEPH_OSDC_PROTOCOL;
860 break;
861 case CEPH_ENTITY_TYPE_MDS:
862 proto = CEPH_MDSC_PROTOCOL;
863 break;
864 default:
865 BUG();
866 }
867
868 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
869 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800870
Alex Eldere825a662012-05-16 15:16:38 -0500871 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700872 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
873 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
874 con->out_connect.global_seq = cpu_to_le32(global_seq);
875 con->out_connect.protocol_version = cpu_to_le32(proto);
876 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700877
Alex Elderdac1e712012-05-16 15:16:39 -0500878 auth_proto = CEPH_AUTH_UNKNOWN;
879 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -0500880 if (IS_ERR(auth))
881 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -0500882
Alex Elderdac1e712012-05-16 15:16:39 -0500883 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -0500884 con->out_connect.authorizer_len = auth ?
885 cpu_to_le32(auth->authorizer_buf_len) : 0;
886
Alex Elderab166d52012-05-31 11:37:29 -0500887 con_out_kvec_reset(con);
Alex Eldere2200422012-05-23 14:35:23 -0500888 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -0500889 &con->out_connect);
890 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -0500891 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -0500892 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -0600893
Sage Weil31b80062009-10-06 11:31:13 -0700894 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500895 set_bit(WRITE_PENDING, &con->flags);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800896
Alex Eldere10c7582012-05-16 15:16:38 -0500897 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700898}
899
Sage Weil31b80062009-10-06 11:31:13 -0700900/*
901 * write as much of pending kvecs to the socket as we can.
902 * 1 -> done
903 * 0 -> socket full, but more to do
904 * <0 -> error
905 */
906static int write_partial_kvec(struct ceph_connection *con)
907{
908 int ret;
909
910 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
911 while (con->out_kvec_bytes > 0) {
912 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
913 con->out_kvec_left, con->out_kvec_bytes,
914 con->out_more);
915 if (ret <= 0)
916 goto out;
917 con->out_kvec_bytes -= ret;
918 if (con->out_kvec_bytes == 0)
919 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -0600920
921 /* account for full iov entries consumed */
922 while (ret >= con->out_kvec_cur->iov_len) {
923 BUG_ON(!con->out_kvec_left);
924 ret -= con->out_kvec_cur->iov_len;
925 con->out_kvec_cur++;
926 con->out_kvec_left--;
927 }
928 /* and for a partially-consumed entry */
929 if (ret) {
930 con->out_kvec_cur->iov_len -= ret;
931 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -0700932 }
933 }
934 con->out_kvec_left = 0;
935 con->out_kvec_is_msg = false;
936 ret = 1;
937out:
938 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
939 con->out_kvec_bytes, con->out_kvec_left, ret);
940 return ret; /* done! */
941}
942
Alex Elder84ca8fc2012-06-11 14:57:13 -0500943static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
944 size_t len, size_t sent, bool in_trail)
945{
946 struct ceph_msg *msg = con->out_msg;
947
948 BUG_ON(!msg);
949 BUG_ON(!sent);
950
951 con->out_msg_pos.data_pos += sent;
952 con->out_msg_pos.page_pos += sent;
Alex Elder5821bd82012-06-11 14:57:13 -0500953 if (sent < len)
954 return;
955
956 BUG_ON(sent != len);
957 con->out_msg_pos.page_pos = 0;
958 con->out_msg_pos.page++;
959 con->out_msg_pos.did_page_crc = false;
960 if (in_trail)
961 list_move_tail(&page->lru,
962 &msg->trail->head);
963 else if (msg->pagelist)
964 list_move_tail(&page->lru,
965 &msg->pagelist->head);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500966#ifdef CONFIG_BLOCK
Alex Elder5821bd82012-06-11 14:57:13 -0500967 else if (msg->bio)
968 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500969#endif
Alex Elder84ca8fc2012-06-11 14:57:13 -0500970}
971
Sage Weil31b80062009-10-06 11:31:13 -0700972/*
973 * Write as much message data payload as we can. If we finish, queue
974 * up the footer.
975 * 1 -> done, footer is now queued in out_kvec[].
976 * 0 -> socket full, but more to do
977 * <0 -> error
978 */
979static int write_partial_msg_pages(struct ceph_connection *con)
980{
981 struct ceph_msg *msg = con->out_msg;
Eric Dumazet95c96172012-04-15 05:58:06 +0000982 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Sage Weil31b80062009-10-06 11:31:13 -0700983 size_t len;
Alex Elder37675b02012-03-07 11:40:08 -0600984 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -0700985 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700986 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -0500987 bool in_trail = false;
Alex Elder5821bd82012-06-11 14:57:13 -0500988 const size_t trail_len = (msg->trail ? msg->trail->length : 0);
989 const size_t trail_off = data_len - trail_len;
Sage Weil31b80062009-10-06 11:31:13 -0700990
991 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
Alex Elder84ca8fc2012-06-11 14:57:13 -0500992 con, msg, con->out_msg_pos.page, msg->nr_pages,
Sage Weil31b80062009-10-06 11:31:13 -0700993 con->out_msg_pos.page_pos);
994
Alex Elder5821bd82012-06-11 14:57:13 -0500995 /*
996 * Iterate through each page that contains data to be
997 * written, and send as much as possible for each.
998 *
999 * If we are calculating the data crc (the default), we will
1000 * need to map the page. If we have no pages, they have
1001 * been revoked, so use the zero page.
1002 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001003 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001004 struct page *page = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001005 int max_write = PAGE_SIZE;
Alex Elder9bd19662012-03-07 11:40:08 -06001006 int bio_offset = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001007
Alex Elder5821bd82012-06-11 14:57:13 -05001008 in_trail = in_trail || con->out_msg_pos.data_pos >= trail_off;
1009 if (!in_trail)
1010 total_max_write = trail_off - con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001011
Alex Elder5821bd82012-06-11 14:57:13 -05001012 if (in_trail) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001013 total_max_write = data_len - con->out_msg_pos.data_pos;
1014
1015 page = list_first_entry(&msg->trail->head,
1016 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001017 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -07001018 page = msg->pages[con->out_msg_pos.page];
Sage Weil58bb3b32009-12-23 12:12:31 -08001019 } else if (msg->pagelist) {
1020 page = list_first_entry(&msg->pagelist->head,
1021 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001022#ifdef CONFIG_BLOCK
1023 } else if (msg->bio) {
1024 struct bio_vec *bv;
1025
1026 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
1027 page = bv->bv_page;
Alex Elder9bd19662012-03-07 11:40:08 -06001028 bio_offset = bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001029 max_write = bv->bv_len;
1030#endif
Sage Weil31b80062009-10-06 11:31:13 -07001031 } else {
Alex Elder57666512012-01-23 15:49:27 -06001032 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001033 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001034 len = min_t(int, max_write - con->out_msg_pos.page_pos,
1035 total_max_write);
1036
Alex Elder37675b02012-03-07 11:40:08 -06001037 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
Alex Elder9bd19662012-03-07 11:40:08 -06001038 void *base;
Alex Elder5821bd82012-06-11 14:57:13 -05001039 u32 crc = le32_to_cpu(msg->footer.data_crc);
Alex Elder8d63e312012-03-07 11:40:08 -06001040 char *kaddr;
Sage Weil31b80062009-10-06 11:31:13 -07001041
Alex Elder8d63e312012-03-07 11:40:08 -06001042 kaddr = kmap(page);
Sage Weil31b80062009-10-06 11:31:13 -07001043 BUG_ON(kaddr == NULL);
Alex Elder9bd19662012-03-07 11:40:08 -06001044 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
Alex Elder5821bd82012-06-11 14:57:13 -05001045 crc = crc32c(crc, base, len);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001046 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbca064d2012-02-15 07:43:54 -06001047 con->out_msg_pos.did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001048 }
Alex Eldere36b13c2012-03-07 11:40:08 -06001049 ret = ceph_tcp_sendpage(con->sock, page,
Alex Elder9bd19662012-03-07 11:40:08 -06001050 con->out_msg_pos.page_pos + bio_offset,
Alex Eldere36b13c2012-03-07 11:40:08 -06001051 len, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001052
Alex Elder0cdf9e62012-03-07 11:40:08 -06001053 if (do_datacrc)
Sage Weil31b80062009-10-06 11:31:13 -07001054 kunmap(page);
1055
1056 if (ret <= 0)
1057 goto out;
1058
Alex Elder84ca8fc2012-06-11 14:57:13 -05001059 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001060 }
1061
1062 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1063
1064 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001065 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001066 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001067 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001068 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001069 ret = 1;
1070out:
1071 return ret;
1072}
1073
1074/*
1075 * write some zeros
1076 */
1077static int write_partial_skip(struct ceph_connection *con)
1078{
1079 int ret;
1080
1081 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001082 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001083
Alex Elder31739132012-03-07 11:40:08 -06001084 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001085 if (ret <= 0)
1086 goto out;
1087 con->out_skip -= ret;
1088 }
1089 ret = 1;
1090out:
1091 return ret;
1092}
1093
1094/*
1095 * Prepare to read connection handshake, or an ack.
1096 */
Sage Weileed0ef22009-11-10 14:34:36 -08001097static void prepare_read_banner(struct ceph_connection *con)
1098{
1099 dout("prepare_read_banner %p\n", con);
1100 con->in_base_pos = 0;
1101}
1102
Sage Weil31b80062009-10-06 11:31:13 -07001103static void prepare_read_connect(struct ceph_connection *con)
1104{
1105 dout("prepare_read_connect %p\n", con);
1106 con->in_base_pos = 0;
1107}
1108
1109static void prepare_read_ack(struct ceph_connection *con)
1110{
1111 dout("prepare_read_ack %p\n", con);
1112 con->in_base_pos = 0;
1113}
1114
1115static void prepare_read_tag(struct ceph_connection *con)
1116{
1117 dout("prepare_read_tag %p\n", con);
1118 con->in_base_pos = 0;
1119 con->in_tag = CEPH_MSGR_TAG_READY;
1120}
1121
1122/*
1123 * Prepare to read a message.
1124 */
1125static int prepare_read_message(struct ceph_connection *con)
1126{
1127 dout("prepare_read_message %p\n", con);
1128 BUG_ON(con->in_msg != NULL);
1129 con->in_base_pos = 0;
1130 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1131 return 0;
1132}
1133
1134
1135static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001136 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001137{
Alex Eldere6cee712012-05-10 10:29:50 -05001138 while (con->in_base_pos < end) {
1139 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001140 int have = size - left;
1141 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1142 if (ret <= 0)
1143 return ret;
1144 con->in_base_pos += ret;
1145 }
1146 return 1;
1147}
1148
1149
1150/*
1151 * Read all or part of the connect-side handshake on a new connection
1152 */
Sage Weileed0ef22009-11-10 14:34:36 -08001153static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001154{
Alex Elderfd516532012-05-10 10:29:50 -05001155 int size;
1156 int end;
1157 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001158
Sage Weileed0ef22009-11-10 14:34:36 -08001159 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001160
1161 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001162 size = strlen(CEPH_BANNER);
1163 end = size;
1164 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001165 if (ret <= 0)
1166 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001167
1168 size = sizeof (con->actual_peer_addr);
1169 end += size;
1170 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001171 if (ret <= 0)
1172 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001173
1174 size = sizeof (con->peer_addr_for_me);
1175 end += size;
1176 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001177 if (ret <= 0)
1178 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001179
Sage Weileed0ef22009-11-10 14:34:36 -08001180out:
1181 return ret;
1182}
1183
1184static int read_partial_connect(struct ceph_connection *con)
1185{
Alex Elderfd516532012-05-10 10:29:50 -05001186 int size;
1187 int end;
1188 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001189
1190 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1191
Alex Elderfd516532012-05-10 10:29:50 -05001192 size = sizeof (con->in_reply);
1193 end = size;
1194 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001195 if (ret <= 0)
1196 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001197
1198 size = le32_to_cpu(con->in_reply.authorizer_len);
1199 end += size;
1200 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001201 if (ret <= 0)
1202 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001203
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001204 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1205 con, (int)con->in_reply.tag,
1206 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001207 le32_to_cpu(con->in_reply.global_seq));
1208out:
1209 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001210
Sage Weil31b80062009-10-06 11:31:13 -07001211}
1212
1213/*
1214 * Verify the hello banner looks okay.
1215 */
1216static int verify_hello(struct ceph_connection *con)
1217{
1218 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001219 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001220 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001221 con->error_msg = "protocol error, bad banner";
1222 return -1;
1223 }
1224 return 0;
1225}
1226
1227static bool addr_is_blank(struct sockaddr_storage *ss)
1228{
1229 switch (ss->ss_family) {
1230 case AF_INET:
1231 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1232 case AF_INET6:
1233 return
1234 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1235 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1236 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1237 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1238 }
1239 return false;
1240}
1241
1242static int addr_port(struct sockaddr_storage *ss)
1243{
1244 switch (ss->ss_family) {
1245 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001246 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001247 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001248 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001249 }
1250 return 0;
1251}
1252
1253static void addr_set_port(struct sockaddr_storage *ss, int p)
1254{
1255 switch (ss->ss_family) {
1256 case AF_INET:
1257 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001258 break;
Sage Weil31b80062009-10-06 11:31:13 -07001259 case AF_INET6:
1260 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001261 break;
Sage Weil31b80062009-10-06 11:31:13 -07001262 }
1263}
1264
1265/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001266 * Unlike other *_pton function semantics, zero indicates success.
1267 */
1268static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1269 char delim, const char **ipend)
1270{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001271 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1272 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001273
1274 memset(ss, 0, sizeof(*ss));
1275
1276 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1277 ss->ss_family = AF_INET;
1278 return 0;
1279 }
1280
1281 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1282 ss->ss_family = AF_INET6;
1283 return 0;
1284 }
1285
1286 return -EINVAL;
1287}
1288
1289/*
1290 * Extract hostname string and resolve using kernel DNS facility.
1291 */
1292#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1293static int ceph_dns_resolve_name(const char *name, size_t namelen,
1294 struct sockaddr_storage *ss, char delim, const char **ipend)
1295{
1296 const char *end, *delim_p;
1297 char *colon_p, *ip_addr = NULL;
1298 int ip_len, ret;
1299
1300 /*
1301 * The end of the hostname occurs immediately preceding the delimiter or
1302 * the port marker (':') where the delimiter takes precedence.
1303 */
1304 delim_p = memchr(name, delim, namelen);
1305 colon_p = memchr(name, ':', namelen);
1306
1307 if (delim_p && colon_p)
1308 end = delim_p < colon_p ? delim_p : colon_p;
1309 else if (!delim_p && colon_p)
1310 end = colon_p;
1311 else {
1312 end = delim_p;
1313 if (!end) /* case: hostname:/ */
1314 end = name + namelen;
1315 }
1316
1317 if (end <= name)
1318 return -EINVAL;
1319
1320 /* do dns_resolve upcall */
1321 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1322 if (ip_len > 0)
1323 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1324 else
1325 ret = -ESRCH;
1326
1327 kfree(ip_addr);
1328
1329 *ipend = end;
1330
1331 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1332 ret, ret ? "failed" : ceph_pr_addr(ss));
1333
1334 return ret;
1335}
1336#else
1337static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1338 struct sockaddr_storage *ss, char delim, const char **ipend)
1339{
1340 return -EINVAL;
1341}
1342#endif
1343
1344/*
1345 * Parse a server name (IP or hostname). If a valid IP address is not found
1346 * then try to extract a hostname to resolve using userspace DNS upcall.
1347 */
1348static int ceph_parse_server_name(const char *name, size_t namelen,
1349 struct sockaddr_storage *ss, char delim, const char **ipend)
1350{
1351 int ret;
1352
1353 ret = ceph_pton(name, namelen, ss, delim, ipend);
1354 if (ret)
1355 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1356
1357 return ret;
1358}
1359
1360/*
Sage Weil31b80062009-10-06 11:31:13 -07001361 * Parse an ip[:port] list into an addr array. Use the default
1362 * monitor port if a port isn't specified.
1363 */
1364int ceph_parse_ips(const char *c, const char *end,
1365 struct ceph_entity_addr *addr,
1366 int max_count, int *count)
1367{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001368 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001369 const char *p = c;
1370
1371 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1372 for (i = 0; i < max_count; i++) {
1373 const char *ipend;
1374 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001375 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001376 char delim = ',';
1377
1378 if (*p == '[') {
1379 delim = ']';
1380 p++;
1381 }
Sage Weil31b80062009-10-06 11:31:13 -07001382
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001383 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1384 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001385 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001386 ret = -EINVAL;
1387
Sage Weil31b80062009-10-06 11:31:13 -07001388 p = ipend;
1389
Sage Weil39139f62010-07-08 09:54:52 -07001390 if (delim == ']') {
1391 if (*p != ']') {
1392 dout("missing matching ']'\n");
1393 goto bad;
1394 }
1395 p++;
1396 }
1397
Sage Weil31b80062009-10-06 11:31:13 -07001398 /* port? */
1399 if (p < end && *p == ':') {
1400 port = 0;
1401 p++;
1402 while (p < end && *p >= '0' && *p <= '9') {
1403 port = (port * 10) + (*p - '0');
1404 p++;
1405 }
1406 if (port > 65535 || port == 0)
1407 goto bad;
1408 } else {
1409 port = CEPH_MON_PORT;
1410 }
1411
1412 addr_set_port(ss, port);
1413
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001414 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001415
1416 if (p == end)
1417 break;
1418 if (*p != ',')
1419 goto bad;
1420 p++;
1421 }
1422
1423 if (p != end)
1424 goto bad;
1425
1426 if (count)
1427 *count = i + 1;
1428 return 0;
1429
1430bad:
Sage Weil39139f62010-07-08 09:54:52 -07001431 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001432 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001433}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001434EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001435
Sage Weileed0ef22009-11-10 14:34:36 -08001436static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001437{
Sage Weileed0ef22009-11-10 14:34:36 -08001438 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001439
1440 if (verify_hello(con) < 0)
1441 return -1;
1442
Sage Weil63f2d212009-11-03 15:17:56 -08001443 ceph_decode_addr(&con->actual_peer_addr);
1444 ceph_decode_addr(&con->peer_addr_for_me);
1445
Sage Weil31b80062009-10-06 11:31:13 -07001446 /*
1447 * Make sure the other end is who we wanted. note that the other
1448 * end may not yet know their ip address, so if it's 0.0.0.0, give
1449 * them the benefit of the doubt.
1450 */
Sage Weil103e2d32010-01-07 16:12:36 -08001451 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1452 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001453 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1454 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001455 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001456 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001457 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001458 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001459 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001460 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001461 return -1;
1462 }
1463
1464 /*
1465 * did we learn our address?
1466 */
1467 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1468 int port = addr_port(&con->msgr->inst.addr.in_addr);
1469
1470 memcpy(&con->msgr->inst.addr.in_addr,
1471 &con->peer_addr_for_me.in_addr,
1472 sizeof(con->peer_addr_for_me.in_addr));
1473 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001474 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001475 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001476 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001477 }
1478
Sage Weileed0ef22009-11-10 14:34:36 -08001479 return 0;
1480}
1481
Sage Weil04a419f2009-12-23 09:30:21 -08001482static void fail_protocol(struct ceph_connection *con)
1483{
1484 reset_connection(con);
1485 set_bit(CLOSED, &con->state); /* in case there's queued work */
Sage Weil04a419f2009-12-23 09:30:21 -08001486}
1487
Sage Weileed0ef22009-11-10 14:34:36 -08001488static int process_connect(struct ceph_connection *con)
1489{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001490 u64 sup_feat = con->msgr->supported_features;
1491 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001492 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001493 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001494
Sage Weileed0ef22009-11-10 14:34:36 -08001495 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1496
Sage Weil31b80062009-10-06 11:31:13 -07001497 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001498 case CEPH_MSGR_TAG_FEATURES:
1499 pr_err("%s%lld %s feature set mismatch,"
1500 " my %llx < server's %llx, missing %llx\n",
1501 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001502 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001503 sup_feat, server_feat, server_feat & ~sup_feat);
1504 con->error_msg = "missing required protocol features";
1505 fail_protocol(con);
1506 return -1;
1507
Sage Weil31b80062009-10-06 11:31:13 -07001508 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001509 pr_err("%s%lld %s protocol version mismatch,"
1510 " my %d != server's %d\n",
1511 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001512 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001513 le32_to_cpu(con->out_connect.protocol_version),
1514 le32_to_cpu(con->in_reply.protocol_version));
1515 con->error_msg = "protocol version mismatch";
Sage Weil04a419f2009-12-23 09:30:21 -08001516 fail_protocol(con);
Sage Weil31b80062009-10-06 11:31:13 -07001517 return -1;
1518
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001519 case CEPH_MSGR_TAG_BADAUTHORIZER:
1520 con->auth_retry++;
1521 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1522 con->auth_retry);
1523 if (con->auth_retry == 2) {
1524 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001525 return -1;
1526 }
1527 con->auth_retry = 1;
Alex Eldere825a662012-05-16 15:16:38 -05001528 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001529 if (ret < 0)
1530 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001531 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001532 break;
Sage Weil31b80062009-10-06 11:31:13 -07001533
1534 case CEPH_MSGR_TAG_RESETSESSION:
1535 /*
1536 * If we connected with a large connect_seq but the peer
1537 * has no record of a session with us (no connection, or
1538 * connect_seq == 0), they will send RESETSESION to indicate
1539 * that they must have reset their session, and may have
1540 * dropped messages.
1541 */
1542 dout("process_connect got RESET peer seq %u\n",
1543 le32_to_cpu(con->in_connect.connect_seq));
1544 pr_err("%s%lld %s connection reset\n",
1545 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001546 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001547 reset_connection(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001548 ret = prepare_write_connect(con);
1549 if (ret < 0)
1550 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001551 prepare_read_connect(con);
1552
1553 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001554 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001555 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1556 if (con->ops->peer_reset)
1557 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001558 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07001559 if (test_bit(CLOSED, &con->state) ||
1560 test_bit(OPENING, &con->state))
1561 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001562 break;
1563
1564 case CEPH_MSGR_TAG_RETRY_SESSION:
1565 /*
1566 * If we sent a smaller connect_seq than the peer has, try
1567 * again with a larger value.
1568 */
1569 dout("process_connect got RETRY my seq = %u, peer_seq = %u\n",
1570 le32_to_cpu(con->out_connect.connect_seq),
1571 le32_to_cpu(con->in_connect.connect_seq));
1572 con->connect_seq = le32_to_cpu(con->in_connect.connect_seq);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001573 ret = prepare_write_connect(con);
1574 if (ret < 0)
1575 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001576 prepare_read_connect(con);
1577 break;
1578
1579 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1580 /*
1581 * If we sent a smaller global_seq than the peer has, try
1582 * again with a larger value.
1583 */
Sage Weileed0ef22009-11-10 14:34:36 -08001584 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001585 con->peer_global_seq,
1586 le32_to_cpu(con->in_connect.global_seq));
1587 get_global_seq(con->msgr,
1588 le32_to_cpu(con->in_connect.global_seq));
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001589 ret = prepare_write_connect(con);
1590 if (ret < 0)
1591 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001592 prepare_read_connect(con);
1593 break;
1594
1595 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001596 if (req_feat & ~server_feat) {
1597 pr_err("%s%lld %s protocol feature mismatch,"
1598 " my required %llx > server's %llx, need %llx\n",
1599 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001600 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001601 req_feat, server_feat, req_feat & ~server_feat);
1602 con->error_msg = "missing required protocol features";
1603 fail_protocol(con);
1604 return -1;
1605 }
Alex Elder3ec50d12012-05-23 14:35:23 -05001606 clear_bit(NEGOTIATING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -05001607 set_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001608 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1609 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001610 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001611 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1612 con->peer_global_seq,
1613 le32_to_cpu(con->in_reply.connect_seq),
1614 con->connect_seq);
1615 WARN_ON(con->connect_seq !=
1616 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001617
1618 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elder928443c2012-05-22 11:41:43 -05001619 set_bit(LOSSYTX, &con->flags);
Sage Weil92ac41d2009-12-14 14:56:56 -08001620
Sage Weil31b80062009-10-06 11:31:13 -07001621 prepare_read_tag(con);
1622 break;
1623
1624 case CEPH_MSGR_TAG_WAIT:
1625 /*
1626 * If there is a connection race (we are opening
1627 * connections to each other), one of us may just have
1628 * to WAIT. This shouldn't happen if we are the
1629 * client.
1630 */
Sage Weil04177882011-05-12 15:33:17 -07001631 pr_err("process_connect got WAIT as client\n");
1632 con->error_msg = "protocol error, got WAIT as client";
1633 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07001634
1635 default:
1636 pr_err("connect protocol error, will retry\n");
1637 con->error_msg = "protocol error, garbage tag during connect";
1638 return -1;
1639 }
1640 return 0;
1641}
1642
1643
1644/*
1645 * read (part of) an ack
1646 */
1647static int read_partial_ack(struct ceph_connection *con)
1648{
Alex Elderfd516532012-05-10 10:29:50 -05001649 int size = sizeof (con->in_temp_ack);
1650 int end = size;
1651
1652 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001653}
1654
1655
1656/*
1657 * We can finally discard anything that's been acked.
1658 */
1659static void process_ack(struct ceph_connection *con)
1660{
1661 struct ceph_msg *m;
1662 u64 ack = le64_to_cpu(con->in_temp_ack);
1663 u64 seq;
1664
Sage Weil31b80062009-10-06 11:31:13 -07001665 while (!list_empty(&con->out_sent)) {
1666 m = list_first_entry(&con->out_sent, struct ceph_msg,
1667 list_head);
1668 seq = le64_to_cpu(m->hdr.seq);
1669 if (seq > ack)
1670 break;
1671 dout("got ack for seq %llu type %d at %p\n", seq,
1672 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07001673 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07001674 ceph_msg_remove(m);
1675 }
Sage Weil31b80062009-10-06 11:31:13 -07001676 prepare_read_tag(con);
1677}
1678
1679
1680
1681
Yehuda Sadeh24504182010-01-08 13:58:34 -08001682static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001683 struct kvec *section,
1684 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001685{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001686 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001687
Yehuda Sadeh24504182010-01-08 13:58:34 -08001688 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001689
Yehuda Sadeh24504182010-01-08 13:58:34 -08001690 while (section->iov_len < sec_len) {
1691 BUG_ON(section->iov_base == NULL);
1692 left = sec_len - section->iov_len;
1693 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1694 section->iov_len, left);
1695 if (ret <= 0)
1696 return ret;
1697 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001698 }
Alex Elderfe3ad592012-02-15 07:43:54 -06001699 if (section->iov_len == sec_len)
1700 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001701
1702 return 1;
1703}
1704
Alex Elder1c20f2d2012-06-04 14:43:32 -05001705static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
1706 struct ceph_msg_header *hdr);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001707
1708
1709static int read_partial_message_pages(struct ceph_connection *con,
1710 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00001711 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001712{
1713 void *p;
1714 int ret;
1715 int left;
1716
1717 left = min((int)(data_len - con->in_msg_pos.data_pos),
1718 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1719 /* (page) data */
1720 BUG_ON(pages == NULL);
1721 p = kmap(pages[con->in_msg_pos.page]);
1722 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1723 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001724 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001725 con->in_data_crc =
1726 crc32c(con->in_data_crc,
1727 p + con->in_msg_pos.page_pos, ret);
1728 kunmap(pages[con->in_msg_pos.page]);
1729 if (ret <= 0)
1730 return ret;
1731 con->in_msg_pos.data_pos += ret;
1732 con->in_msg_pos.page_pos += ret;
1733 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1734 con->in_msg_pos.page_pos = 0;
1735 con->in_msg_pos.page++;
1736 }
1737
1738 return ret;
1739}
1740
1741#ifdef CONFIG_BLOCK
1742static int read_partial_message_bio(struct ceph_connection *con,
1743 struct bio **bio_iter, int *bio_seg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001744 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001745{
1746 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1747 void *p;
1748 int ret, left;
1749
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001750 left = min((int)(data_len - con->in_msg_pos.data_pos),
1751 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1752
1753 p = kmap(bv->bv_page) + bv->bv_offset;
1754
1755 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1756 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001757 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001758 con->in_data_crc =
1759 crc32c(con->in_data_crc,
1760 p + con->in_msg_pos.page_pos, ret);
1761 kunmap(bv->bv_page);
1762 if (ret <= 0)
1763 return ret;
1764 con->in_msg_pos.data_pos += ret;
1765 con->in_msg_pos.page_pos += ret;
1766 if (con->in_msg_pos.page_pos == bv->bv_len) {
1767 con->in_msg_pos.page_pos = 0;
1768 iter_bio_next(bio_iter, bio_seg);
1769 }
1770
1771 return ret;
1772}
1773#endif
1774
Sage Weil31b80062009-10-06 11:31:13 -07001775/*
1776 * read (part of) a message.
1777 */
1778static int read_partial_message(struct ceph_connection *con)
1779{
1780 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05001781 int size;
1782 int end;
Sage Weil31b80062009-10-06 11:31:13 -07001783 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00001784 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06001785 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07001786 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06001787 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001788
1789 dout("read_partial_message con %p msg %p\n", con, m);
1790
1791 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05001792 size = sizeof (con->in_hdr);
1793 end = size;
1794 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05001795 if (ret <= 0)
1796 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06001797
1798 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1799 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1800 pr_err("read_partial_message bad hdr "
1801 " crc %u != expected %u\n",
1802 crc, con->in_hdr.crc);
1803 return -EBADMSG;
1804 }
1805
Sage Weil31b80062009-10-06 11:31:13 -07001806 front_len = le32_to_cpu(con->in_hdr.front_len);
1807 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1808 return -EIO;
1809 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1810 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1811 return -EIO;
1812 data_len = le32_to_cpu(con->in_hdr.data_len);
1813 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1814 return -EIO;
1815
Sage Weilae187562010-04-22 07:47:01 -07001816 /* verify seq# */
1817 seq = le64_to_cpu(con->in_hdr.seq);
1818 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001819 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001820 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001821 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001822 seq, con->in_seq + 1);
1823 con->in_base_pos = -front_len - middle_len - data_len -
1824 sizeof(m->footer);
1825 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001826 return 0;
1827 } else if ((s64)seq - (s64)con->in_seq > 1) {
1828 pr_err("read_partial_message bad seq %lld expected %lld\n",
1829 seq, con->in_seq + 1);
1830 con->error_msg = "bad message sequence # for incoming message";
1831 return -EBADMSG;
1832 }
1833
Sage Weil31b80062009-10-06 11:31:13 -07001834 /* allocate message? */
1835 if (!con->in_msg) {
1836 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1837 con->in_hdr.front_len, con->in_hdr.data_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001838 if (ceph_con_in_msg_alloc(con, &con->in_hdr)) {
Sage Weil31b80062009-10-06 11:31:13 -07001839 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001840 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001841 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001842 con->in_base_pos = -front_len - middle_len - data_len -
1843 sizeof(m->footer);
1844 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001845 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001846 return 0;
1847 }
Sage Weila79832f2010-04-01 16:06:19 -07001848 if (!con->in_msg) {
Sage Weil5b3a4db2010-02-19 21:43:23 -08001849 con->error_msg =
1850 "error allocating memory for incoming message";
Sage Weila79832f2010-04-01 16:06:19 -07001851 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -07001852 }
Alex Elder38941f82012-06-01 14:56:43 -05001853
1854 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07001855 m = con->in_msg;
1856 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001857 if (m->middle)
1858 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001859
1860 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001861 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001862 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001863 else
1864 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001865 con->in_msg_pos.data_pos = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001866 }
1867
1868 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001869 ret = read_partial_message_section(con, &m->front, front_len,
1870 &con->in_front_crc);
1871 if (ret <= 0)
1872 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001873
1874 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001875 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001876 ret = read_partial_message_section(con, &m->middle->vec,
1877 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001878 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001879 if (ret <= 0)
1880 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001881 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001882#ifdef CONFIG_BLOCK
1883 if (m->bio && !m->bio_iter)
1884 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1885#endif
Sage Weil31b80062009-10-06 11:31:13 -07001886
1887 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001888 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001889 if (m->pages) {
1890 ret = read_partial_message_pages(con, m->pages,
Alex Elderbca064d2012-02-15 07:43:54 -06001891 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001892 if (ret <= 0)
1893 return ret;
1894#ifdef CONFIG_BLOCK
1895 } else if (m->bio) {
1896
1897 ret = read_partial_message_bio(con,
1898 &m->bio_iter, &m->bio_seg,
Alex Elderbca064d2012-02-15 07:43:54 -06001899 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001900 if (ret <= 0)
1901 return ret;
1902#endif
1903 } else {
1904 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07001905 }
1906 }
1907
Sage Weil31b80062009-10-06 11:31:13 -07001908 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05001909 size = sizeof (m->footer);
1910 end += size;
1911 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05001912 if (ret <= 0)
1913 return ret;
1914
Sage Weil31b80062009-10-06 11:31:13 -07001915 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1916 m, front_len, m->footer.front_crc, middle_len,
1917 m->footer.middle_crc, data_len, m->footer.data_crc);
1918
1919 /* crc ok? */
1920 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1921 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1922 m, con->in_front_crc, m->footer.front_crc);
1923 return -EBADMSG;
1924 }
1925 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1926 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1927 m, con->in_middle_crc, m->footer.middle_crc);
1928 return -EBADMSG;
1929 }
Alex Elderbca064d2012-02-15 07:43:54 -06001930 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07001931 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1932 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1933 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1934 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1935 return -EBADMSG;
1936 }
1937
1938 return 1; /* done! */
1939}
1940
1941/*
1942 * Process message. This happens in the worker thread. The callback should
1943 * be careful not to do anything that waits on other incoming messages or it
1944 * may deadlock.
1945 */
1946static void process_message(struct ceph_connection *con)
1947{
Sage Weil5e095e82009-12-14 14:30:34 -08001948 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07001949
Alex Elder38941f82012-06-01 14:56:43 -05001950 BUG_ON(con->in_msg->con != con);
1951 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08001952 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001953 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07001954 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07001955
1956 /* if first message, set peer_name */
1957 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07001958 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07001959
Sage Weil31b80062009-10-06 11:31:13 -07001960 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08001961 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001962
1963 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1964 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07001965 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07001966 le16_to_cpu(msg->hdr.type),
1967 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1968 le32_to_cpu(msg->hdr.front_len),
1969 le32_to_cpu(msg->hdr.data_len),
1970 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1971 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08001972
1973 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001974 prepare_read_tag(con);
1975}
1976
1977
1978/*
1979 * Write something to the socket. Called in a worker thread when the
1980 * socket appears to be writeable and we have something ready to send.
1981 */
1982static int try_write(struct ceph_connection *con)
1983{
Sage Weil31b80062009-10-06 11:31:13 -07001984 int ret = 1;
1985
Sage Weild59315c2012-06-21 12:49:23 -07001986 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001987
Sage Weil31b80062009-10-06 11:31:13 -07001988more:
1989 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
1990
1991 /* open the socket first? */
1992 if (con->sock == NULL) {
Alex Eldera5988c42012-05-29 11:04:58 -05001993 set_bit(CONNECTING, &con->state);
1994
Alex Eldere2200422012-05-23 14:35:23 -05001995 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001996 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08001997 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07001998
Sage Weilcf3e5c42009-12-11 09:48:05 -08001999 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002000 con->in_tag = CEPH_MSGR_TAG_READY;
2001 dout("try_write initiating connect on %p new state %lu\n",
2002 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002003 ret = ceph_tcp_connect(con);
2004 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002005 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002006 goto out;
2007 }
2008 }
2009
2010more_kvec:
2011 /* kvec data queued? */
2012 if (con->out_skip) {
2013 ret = write_partial_skip(con);
2014 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002015 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002016 }
2017 if (con->out_kvec_left) {
2018 ret = write_partial_kvec(con);
2019 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002020 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002021 }
2022
2023 /* msg pages? */
2024 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002025 if (con->out_msg_done) {
2026 ceph_msg_put(con->out_msg);
2027 con->out_msg = NULL; /* we're done with this one */
2028 goto do_next;
2029 }
2030
Sage Weil31b80062009-10-06 11:31:13 -07002031 ret = write_partial_msg_pages(con);
2032 if (ret == 1)
2033 goto more_kvec; /* we need to send the footer, too! */
2034 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002035 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002036 if (ret < 0) {
2037 dout("try_write write_partial_msg_pages err %d\n",
2038 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002039 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002040 }
2041 }
2042
Sage Weilc86a2932009-12-14 14:04:30 -08002043do_next:
Alex Elder7593af92012-05-24 11:55:03 -05002044 if (!test_bit(CONNECTING, &con->state) &&
2045 !test_bit(NEGOTIATING, &con->state)) {
Sage Weil31b80062009-10-06 11:31:13 -07002046 /* is anything else pending? */
2047 if (!list_empty(&con->out_queue)) {
2048 prepare_write_message(con);
2049 goto more;
2050 }
2051 if (con->in_seq > con->in_seq_acked) {
2052 prepare_write_ack(con);
2053 goto more;
2054 }
Alex Elder928443c2012-05-22 11:41:43 -05002055 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002056 prepare_write_keepalive(con);
2057 goto more;
2058 }
2059 }
2060
2061 /* Nothing to do! */
Alex Elder928443c2012-05-22 11:41:43 -05002062 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002063 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002064 ret = 0;
2065out:
Sage Weil42961d22011-01-25 08:19:34 -08002066 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002067 return ret;
2068}
2069
2070
2071
2072/*
2073 * Read what we can from the socket.
2074 */
2075static int try_read(struct ceph_connection *con)
2076{
Sage Weil31b80062009-10-06 11:31:13 -07002077 int ret = -1;
2078
2079 if (!con->sock)
2080 return 0;
2081
2082 if (test_bit(STANDBY, &con->state))
2083 return 0;
2084
2085 dout("try_read start on %p\n", con);
Sage Weilec302642009-12-22 10:43:42 -08002086
Sage Weil31b80062009-10-06 11:31:13 -07002087more:
2088 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2089 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002090
2091 /*
2092 * process_connect and process_message drop and re-take
2093 * con->mutex. make sure we handle a racing close or reopen.
2094 */
2095 if (test_bit(CLOSED, &con->state) ||
2096 test_bit(OPENING, &con->state)) {
2097 ret = -EAGAIN;
2098 goto out;
2099 }
2100
Sage Weil31b80062009-10-06 11:31:13 -07002101 if (test_bit(CONNECTING, &con->state)) {
Alex Elder7593af92012-05-24 11:55:03 -05002102 dout("try_read connecting\n");
2103 ret = read_partial_banner(con);
2104 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002105 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002106 ret = process_banner(con);
2107 if (ret < 0)
2108 goto out;
2109
2110 clear_bit(CONNECTING, &con->state);
2111 set_bit(NEGOTIATING, &con->state);
2112
2113 /* Banner is good, exchange connection info */
2114 ret = prepare_write_connect(con);
2115 if (ret < 0)
2116 goto out;
2117 prepare_read_connect(con);
2118
2119 /* Send connection info before awaiting response */
2120 goto out;
2121 }
2122
2123 if (test_bit(NEGOTIATING, &con->state)) {
2124 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002125 ret = read_partial_connect(con);
2126 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002127 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002128 ret = process_connect(con);
2129 if (ret < 0)
2130 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002131 goto more;
2132 }
2133
2134 if (con->in_base_pos < 0) {
2135 /*
2136 * skipping + discarding content.
2137 *
2138 * FIXME: there must be a better way to do this!
2139 */
Alex Elder84495f42012-02-15 07:43:55 -06002140 static char buf[SKIP_BUF_SIZE];
2141 int skip = min((int) sizeof (buf), -con->in_base_pos);
2142
Sage Weil31b80062009-10-06 11:31:13 -07002143 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2144 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2145 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002146 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002147 con->in_base_pos += ret;
2148 if (con->in_base_pos)
2149 goto more;
2150 }
2151 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2152 /*
2153 * what's next?
2154 */
2155 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2156 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002157 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002158 dout("try_read got tag %d\n", (int)con->in_tag);
2159 switch (con->in_tag) {
2160 case CEPH_MSGR_TAG_MSG:
2161 prepare_read_message(con);
2162 break;
2163 case CEPH_MSGR_TAG_ACK:
2164 prepare_read_ack(con);
2165 break;
2166 case CEPH_MSGR_TAG_CLOSE:
Alex Eldere27947c2012-05-23 14:35:23 -05002167 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002168 set_bit(CLOSED, &con->state); /* fixme */
Sage Weil98bdb0a2011-01-25 08:17:48 -08002169 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002170 default:
2171 goto bad_tag;
2172 }
2173 }
2174 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2175 ret = read_partial_message(con);
2176 if (ret <= 0) {
2177 switch (ret) {
2178 case -EBADMSG:
2179 con->error_msg = "bad crc";
2180 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002181 break;
Sage Weil31b80062009-10-06 11:31:13 -07002182 case -EIO:
2183 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002184 break;
Sage Weil31b80062009-10-06 11:31:13 -07002185 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002186 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002187 }
2188 if (con->in_tag == CEPH_MSGR_TAG_READY)
2189 goto more;
2190 process_message(con);
2191 goto more;
2192 }
2193 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2194 ret = read_partial_ack(con);
2195 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002196 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002197 process_ack(con);
2198 goto more;
2199 }
2200
Sage Weil31b80062009-10-06 11:31:13 -07002201out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002202 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002203 return ret;
2204
2205bad_tag:
2206 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2207 con->error_msg = "protocol error, garbage tag";
2208 ret = -1;
2209 goto out;
2210}
2211
2212
2213/*
2214 * Atomically queue work on a connection. Bump @con reference to
2215 * avoid races with connection teardown.
Sage Weil31b80062009-10-06 11:31:13 -07002216 */
2217static void queue_con(struct ceph_connection *con)
2218{
Sage Weil31b80062009-10-06 11:31:13 -07002219 if (!con->ops->get(con)) {
2220 dout("queue_con %p ref count 0\n", con);
2221 return;
2222 }
2223
Tejun Heof363e452011-01-03 14:49:46 +01002224 if (!queue_delayed_work(ceph_msgr_wq, &con->work, 0)) {
Sage Weil31b80062009-10-06 11:31:13 -07002225 dout("queue_con %p - already queued\n", con);
2226 con->ops->put(con);
2227 } else {
2228 dout("queue_con %p\n", con);
2229 }
2230}
2231
2232/*
2233 * Do some work on a connection. Drop a connection ref when we're done.
2234 */
2235static void con_work(struct work_struct *work)
2236{
2237 struct ceph_connection *con = container_of(work, struct ceph_connection,
2238 work.work);
Sage Weil0da5d702011-05-19 11:21:05 -07002239 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002240
Sage Weil9dd46582010-04-28 13:51:50 -07002241 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002242restart:
Alex Elder188048b2012-06-20 21:53:53 -05002243 if (test_and_clear_bit(SOCK_CLOSED, &con->flags)) {
Alex Eldere27947c2012-05-23 14:35:23 -05002244 if (test_and_clear_bit(CONNECTED, &con->state))
2245 con->error_msg = "socket closed";
Alex Elder7593af92012-05-24 11:55:03 -05002246 else if (test_and_clear_bit(NEGOTIATING, &con->state))
2247 con->error_msg = "negotiation failed";
2248 else if (test_and_clear_bit(CONNECTING, &con->state))
Alex Elder188048b2012-06-20 21:53:53 -05002249 con->error_msg = "connection failed";
Alex Elder7593af92012-05-24 11:55:03 -05002250 else
Alex Eldere27947c2012-05-23 14:35:23 -05002251 con->error_msg = "unrecognized con state";
Alex Elder188048b2012-06-20 21:53:53 -05002252 goto fault;
2253 }
2254
Alex Elder928443c2012-05-22 11:41:43 -05002255 if (test_and_clear_bit(BACKOFF, &con->flags)) {
Sage Weil60bf8bf2011-03-04 12:24:28 -08002256 dout("con_work %p backing off\n", con);
2257 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2258 round_jiffies_relative(con->delay))) {
2259 dout("con_work %p backoff %lu\n", con, con->delay);
2260 mutex_unlock(&con->mutex);
2261 return;
2262 } else {
2263 con->ops->put(con);
2264 dout("con_work %p FAILED to back off %lu\n", con,
2265 con->delay);
2266 }
2267 }
Sage Weil9dd46582010-04-28 13:51:50 -07002268
Sage Weile00de342011-03-04 12:25:05 -08002269 if (test_bit(STANDBY, &con->state)) {
2270 dout("con_work %p STANDBY\n", con);
2271 goto done;
2272 }
Sage Weil31b80062009-10-06 11:31:13 -07002273 if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
2274 dout("con_work CLOSED\n");
2275 con_close_socket(con);
2276 goto done;
2277 }
2278 if (test_and_clear_bit(OPENING, &con->state)) {
2279 /* reopen w/ new peer */
2280 dout("con_work OPENING\n");
2281 con_close_socket(con);
2282 }
2283
Sage Weil0da5d702011-05-19 11:21:05 -07002284 ret = try_read(con);
2285 if (ret == -EAGAIN)
2286 goto restart;
2287 if (ret < 0)
2288 goto fault;
2289
2290 ret = try_write(con);
2291 if (ret == -EAGAIN)
2292 goto restart;
2293 if (ret < 0)
2294 goto fault;
Sage Weil31b80062009-10-06 11:31:13 -07002295
2296done:
Sage Weil9dd46582010-04-28 13:51:50 -07002297 mutex_unlock(&con->mutex);
Sage Weil9dd46582010-04-28 13:51:50 -07002298done_unlocked:
Sage Weil31b80062009-10-06 11:31:13 -07002299 con->ops->put(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002300 return;
2301
2302fault:
2303 mutex_unlock(&con->mutex);
2304 ceph_fault(con); /* error/fault path */
2305 goto done_unlocked;
Sage Weil31b80062009-10-06 11:31:13 -07002306}
2307
2308
2309/*
2310 * Generic error/fault handler. A retry mechanism is used with
2311 * exponential backoff
2312 */
2313static void ceph_fault(struct ceph_connection *con)
2314{
2315 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002316 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002317 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002318 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002319
Alex Elder928443c2012-05-22 11:41:43 -05002320 if (test_bit(LOSSYTX, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002321 dout("fault on LOSSYTX channel\n");
2322 goto out;
2323 }
2324
Sage Weilec302642009-12-22 10:43:42 -08002325 mutex_lock(&con->mutex);
Sage Weil91e45ce32010-02-15 12:05:09 -08002326 if (test_bit(CLOSED, &con->state))
2327 goto out_unlock;
Sage Weilec302642009-12-22 10:43:42 -08002328
Sage Weil31b80062009-10-06 11:31:13 -07002329 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002330
2331 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002332 BUG_ON(con->in_msg->con != con);
2333 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002334 ceph_msg_put(con->in_msg);
2335 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002336 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002337 }
Sage Weil31b80062009-10-06 11:31:13 -07002338
Sage Weile80a52d2010-02-25 12:40:45 -08002339 /* Requeue anything that hasn't been acked */
2340 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002341
Sage Weile76661d2011-03-03 10:10:15 -08002342 /* If there are no messages queued or keepalive pending, place
2343 * the connection in a STANDBY state */
2344 if (list_empty(&con->out_queue) &&
Alex Elder928443c2012-05-22 11:41:43 -05002345 !test_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weile00de342011-03-04 12:25:05 -08002346 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elder928443c2012-05-22 11:41:43 -05002347 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002348 set_bit(STANDBY, &con->state);
Sage Weile80a52d2010-02-25 12:40:45 -08002349 } else {
2350 /* retry after a delay. */
2351 if (con->delay == 0)
2352 con->delay = BASE_DELAY_INTERVAL;
2353 else if (con->delay < MAX_DELAY_INTERVAL)
2354 con->delay *= 2;
Sage Weile80a52d2010-02-25 12:40:45 -08002355 con->ops->get(con);
2356 if (queue_delayed_work(ceph_msgr_wq, &con->work,
Sage Weil60bf8bf2011-03-04 12:24:28 -08002357 round_jiffies_relative(con->delay))) {
2358 dout("fault queued %p delay %lu\n", con, con->delay);
2359 } else {
Sage Weile80a52d2010-02-25 12:40:45 -08002360 con->ops->put(con);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002361 dout("fault failed to queue %p delay %lu, backoff\n",
2362 con, con->delay);
2363 /*
2364 * In many cases we see a socket state change
2365 * while con_work is running and end up
2366 * queuing (non-delayed) work, such that we
2367 * can't backoff with a delay. Set a flag so
2368 * that when con_work restarts we schedule the
2369 * delay then.
2370 */
Alex Elder928443c2012-05-22 11:41:43 -05002371 set_bit(BACKOFF, &con->flags);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002372 }
Sage Weil31b80062009-10-06 11:31:13 -07002373 }
2374
Sage Weil91e45ce32010-02-15 12:05:09 -08002375out_unlock:
2376 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002377out:
Sage Weil161fd652010-02-25 12:38:57 -08002378 /*
2379 * in case we faulted due to authentication, invalidate our
2380 * current tickets so that we can get new ones.
Sage Weil213c99e2010-08-03 10:25:11 -07002381 */
Sage Weil161fd652010-02-25 12:38:57 -08002382 if (con->auth_retry && con->ops->invalidate_authorizer) {
2383 dout("calling invalidate_authorizer()\n");
2384 con->ops->invalidate_authorizer(con);
2385 }
2386
Sage Weil31b80062009-10-06 11:31:13 -07002387 if (con->ops->fault)
2388 con->ops->fault(con);
2389}
2390
2391
2392
2393/*
Alex Elder15d98822012-05-26 23:26:43 -05002394 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002395 */
Alex Elder15d98822012-05-26 23:26:43 -05002396void ceph_messenger_init(struct ceph_messenger *msgr,
2397 struct ceph_entity_addr *myaddr,
2398 u32 supported_features,
2399 u32 required_features,
2400 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002401{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002402 msgr->supported_features = supported_features;
2403 msgr->required_features = required_features;
2404
Sage Weil31b80062009-10-06 11:31:13 -07002405 spin_lock_init(&msgr->global_seq_lock);
2406
Sage Weil31b80062009-10-06 11:31:13 -07002407 if (myaddr)
2408 msgr->inst.addr = *myaddr;
2409
2410 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002411 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002412 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002413 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002414 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002415
Alex Elder15d98822012-05-26 23:26:43 -05002416 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002417}
Alex Elder15d98822012-05-26 23:26:43 -05002418EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002419
Sage Weile00de342011-03-04 12:25:05 -08002420static void clear_standby(struct ceph_connection *con)
2421{
2422 /* come back from STANDBY? */
2423 if (test_and_clear_bit(STANDBY, &con->state)) {
2424 mutex_lock(&con->mutex);
2425 dout("clear_standby %p and ++connect_seq\n", con);
2426 con->connect_seq++;
Alex Elder928443c2012-05-22 11:41:43 -05002427 WARN_ON(test_bit(WRITE_PENDING, &con->flags));
2428 WARN_ON(test_bit(KEEPALIVE_PENDING, &con->flags));
Sage Weile00de342011-03-04 12:25:05 -08002429 mutex_unlock(&con->mutex);
2430 }
2431}
2432
Sage Weil31b80062009-10-06 11:31:13 -07002433/*
2434 * Queue up an outgoing message on the given connection.
2435 */
2436void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2437{
2438 if (test_bit(CLOSED, &con->state)) {
2439 dout("con_send %p closed, dropping %p\n", con, msg);
2440 ceph_msg_put(msg);
2441 return;
2442 }
2443
2444 /* set src+dst */
Sage Weildbad1852010-03-25 15:45:38 -07002445 msg->hdr.src = con->msgr->inst.name;
Sage Weil31b80062009-10-06 11:31:13 -07002446
Sage Weil3ca02ef2010-03-01 15:25:00 -08002447 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2448
Sage Weile84346b2010-05-11 21:20:38 -07002449 msg->needs_out_seq = true;
2450
Sage Weil31b80062009-10-06 11:31:13 -07002451 /* queue */
Sage Weilec302642009-12-22 10:43:42 -08002452 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002453
Alex Elder38941f82012-06-01 14:56:43 -05002454 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002455 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002456 BUG_ON(msg->con == NULL);
2457
Sage Weil31b80062009-10-06 11:31:13 -07002458 BUG_ON(!list_empty(&msg->list_head));
2459 list_add_tail(&msg->list_head, &con->out_queue);
2460 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2461 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2462 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2463 le32_to_cpu(msg->hdr.front_len),
2464 le32_to_cpu(msg->hdr.middle_len),
2465 le32_to_cpu(msg->hdr.data_len));
Sage Weilec302642009-12-22 10:43:42 -08002466 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002467
2468 /* if there wasn't anything waiting to send before, queue
2469 * new work */
Sage Weile00de342011-03-04 12:25:05 -08002470 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002471 if (test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002472 queue_con(con);
2473}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002474EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002475
2476/*
2477 * Revoke a message that was previously queued for send
2478 */
Alex Elder6740a842012-06-01 14:56:43 -05002479void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002480{
Alex Elder6740a842012-06-01 14:56:43 -05002481 struct ceph_connection *con = msg->con;
2482
2483 if (!con)
2484 return; /* Message not in our possession */
2485
Sage Weilec302642009-12-22 10:43:42 -08002486 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002487 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002488 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002489 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002490 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002491 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002492 msg->con = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05002493 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002494
Sage Weil31b80062009-10-06 11:31:13 -07002495 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002496 }
2497 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002498 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002499 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002500 if (con->out_kvec_is_msg) {
2501 con->out_skip = con->out_kvec_bytes;
2502 con->out_kvec_is_msg = false;
2503 }
Sage Weiled98ada2010-07-05 12:15:14 -07002504 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002505
2506 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002507 }
Sage Weilec302642009-12-22 10:43:42 -08002508 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002509}
2510
2511/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002512 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002513 */
Alex Elder8921d112012-06-01 14:56:43 -05002514void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002515{
Alex Elder8921d112012-06-01 14:56:43 -05002516 struct ceph_connection *con;
2517
2518 BUG_ON(msg == NULL);
2519 if (!msg->con) {
2520 dout("%s msg %p null con\n", __func__, msg);
2521
2522 return; /* Message not in our possession */
2523 }
2524
2525 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002526 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002527 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002528 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2529 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2530 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002531
2532 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002533 dout("%s %p msg %p revoked\n", __func__, con, msg);
2534 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002535 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002536 front_len -
2537 middle_len -
2538 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002539 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002540 ceph_msg_put(con->in_msg);
2541 con->in_msg = NULL;
2542 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002543 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002544 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002545 dout("%s %p in_msg %p msg %p no-op\n",
2546 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002547 }
2548 mutex_unlock(&con->mutex);
2549}
2550
2551/*
Sage Weil31b80062009-10-06 11:31:13 -07002552 * Queue a keepalive byte to ensure the tcp connection is alive.
2553 */
2554void ceph_con_keepalive(struct ceph_connection *con)
2555{
Sage Weile00de342011-03-04 12:25:05 -08002556 dout("con_keepalive %p\n", con);
2557 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002558 if (test_and_set_bit(KEEPALIVE_PENDING, &con->flags) == 0 &&
2559 test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002560 queue_con(con);
2561}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002562EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002563
2564
2565/*
2566 * construct a new message with given type, size
2567 * the new msg has a ref count of 1.
2568 */
Sage Weilb61c2762011-08-09 15:03:46 -07002569struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2570 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07002571{
2572 struct ceph_msg *m;
2573
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002574 m = kmalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002575 if (m == NULL)
2576 goto out;
Sage Weilc2e552e2009-12-07 15:55:05 -08002577 kref_init(&m->kref);
Alex Elder38941f82012-06-01 14:56:43 -05002578
2579 m->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002580 INIT_LIST_HEAD(&m->list_head);
2581
Sage Weil45c6ceb2010-05-11 15:01:51 -07002582 m->hdr.tid = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002583 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002584 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2585 m->hdr.version = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002586 m->hdr.front_len = cpu_to_le32(front_len);
2587 m->hdr.middle_len = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002588 m->hdr.data_len = 0;
2589 m->hdr.data_off = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002590 m->hdr.reserved = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002591 m->footer.front_crc = 0;
2592 m->footer.middle_crc = 0;
2593 m->footer.data_crc = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002594 m->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002595 m->front_max = front_len;
2596 m->front_is_vmalloc = false;
2597 m->more_to_follow = false;
Jim Schuttc0d5f9d2011-09-16 08:27:31 -06002598 m->ack_stamp = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002599 m->pool = NULL;
2600
Henry C Changca208922011-05-03 02:29:56 +00002601 /* middle */
2602 m->middle = NULL;
2603
2604 /* data */
2605 m->nr_pages = 0;
2606 m->page_alignment = 0;
2607 m->pages = NULL;
2608 m->pagelist = NULL;
2609 m->bio = NULL;
2610 m->bio_iter = NULL;
2611 m->bio_seg = 0;
2612 m->trail = NULL;
2613
Sage Weil31b80062009-10-06 11:31:13 -07002614 /* front */
2615 if (front_len) {
2616 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002617 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002618 PAGE_KERNEL);
2619 m->front_is_vmalloc = true;
2620 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002621 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002622 }
2623 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07002624 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07002625 front_len);
2626 goto out2;
2627 }
2628 } else {
2629 m->front.iov_base = NULL;
2630 }
2631 m->front.iov_len = front_len;
2632
Sage Weilbb257662010-04-01 16:07:23 -07002633 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002634 return m;
2635
2636out2:
2637 ceph_msg_put(m);
2638out:
Sage Weilb61c2762011-08-09 15:03:46 -07002639 if (!can_fail) {
2640 pr_err("msg_new can't create type %d front %d\n", type,
2641 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07002642 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07002643 } else {
2644 dout("msg_new can't create type %d front %d\n", type,
2645 front_len);
2646 }
Sage Weila79832f2010-04-01 16:06:19 -07002647 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002648}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002649EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002650
2651/*
Sage Weil31b80062009-10-06 11:31:13 -07002652 * Allocate "middle" portion of a message, if it is needed and wasn't
2653 * allocated by alloc_msg. This allows us to read a small fixed-size
2654 * per-type header in the front and then gracefully fail (i.e.,
2655 * propagate the error to the caller based on info in the front) when
2656 * the middle is too large.
2657 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002658static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002659{
2660 int type = le16_to_cpu(msg->hdr.type);
2661 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2662
2663 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2664 ceph_msg_type_name(type), middle_len);
2665 BUG_ON(!middle_len);
2666 BUG_ON(msg->middle);
2667
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002668 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002669 if (!msg->middle)
2670 return -ENOMEM;
2671 return 0;
2672}
2673
Yehuda Sadeh24504182010-01-08 13:58:34 -08002674/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05002675 * Allocate a message for receiving an incoming message on a
2676 * connection, and save the result in con->in_msg. Uses the
2677 * connection's private alloc_msg op if available.
2678 *
2679 * Returns true if the message should be skipped, false otherwise.
2680 * If true is returned (skip message), con->in_msg will be NULL.
2681 * If false is returned, con->in_msg will contain a pointer to the
2682 * newly-allocated message, or NULL in case of memory exhaustion.
Yehuda Sadeh24504182010-01-08 13:58:34 -08002683 */
Alex Elder1c20f2d2012-06-04 14:43:32 -05002684static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
2685 struct ceph_msg_header *hdr)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002686{
2687 int type = le16_to_cpu(hdr->type);
2688 int front_len = le32_to_cpu(hdr->front_len);
2689 int middle_len = le32_to_cpu(hdr->middle_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002690 int ret;
2691
Alex Elder1c20f2d2012-06-04 14:43:32 -05002692 BUG_ON(con->in_msg != NULL);
2693
Yehuda Sadeh24504182010-01-08 13:58:34 -08002694 if (con->ops->alloc_msg) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002695 int skip = 0;
2696
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002697 mutex_unlock(&con->mutex);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002698 con->in_msg = con->ops->alloc_msg(con, hdr, &skip);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002699 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002700 if (con->in_msg) {
Sage Weil36eb71a2012-06-21 12:47:08 -07002701 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002702 BUG_ON(con->in_msg->con == NULL);
2703 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002704 if (skip)
2705 con->in_msg = NULL;
2706
2707 if (!con->in_msg)
2708 return skip != 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002709 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002710 if (!con->in_msg) {
2711 con->in_msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
2712 if (!con->in_msg) {
Yehuda Sadeh24504182010-01-08 13:58:34 -08002713 pr_err("unable to allocate msg type %d len %d\n",
2714 type, front_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002715 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002716 }
Sage Weil36eb71a2012-06-21 12:47:08 -07002717 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002718 BUG_ON(con->in_msg->con == NULL);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002719 con->in_msg->page_alignment = le16_to_cpu(hdr->data_off);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002720 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002721 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002722
Alex Elder1c20f2d2012-06-04 14:43:32 -05002723 if (middle_len && !con->in_msg->middle) {
2724 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002725 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002726 ceph_msg_put(con->in_msg);
2727 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002728 }
2729 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002730
Alex Elder1c20f2d2012-06-04 14:43:32 -05002731 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002732}
2733
Sage Weil31b80062009-10-06 11:31:13 -07002734
2735/*
2736 * Free a generically kmalloc'd message.
2737 */
2738void ceph_msg_kfree(struct ceph_msg *m)
2739{
2740 dout("msg_kfree %p\n", m);
2741 if (m->front_is_vmalloc)
2742 vfree(m->front.iov_base);
2743 else
2744 kfree(m->front.iov_base);
2745 kfree(m);
2746}
2747
2748/*
2749 * Drop a msg ref. Destroy as needed.
2750 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002751void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002752{
Sage Weilc2e552e2009-12-07 15:55:05 -08002753 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002754
Sage Weilc2e552e2009-12-07 15:55:05 -08002755 dout("ceph_msg_put last one on %p\n", m);
2756 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002757
Sage Weilc2e552e2009-12-07 15:55:05 -08002758 /* drop middle, data, if any */
2759 if (m->middle) {
2760 ceph_buffer_put(m->middle);
2761 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002762 }
Sage Weilc2e552e2009-12-07 15:55:05 -08002763 m->nr_pages = 0;
2764 m->pages = NULL;
2765
Sage Weil58bb3b32009-12-23 12:12:31 -08002766 if (m->pagelist) {
2767 ceph_pagelist_release(m->pagelist);
2768 kfree(m->pagelist);
2769 m->pagelist = NULL;
2770 }
2771
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002772 m->trail = NULL;
2773
Sage Weilc2e552e2009-12-07 15:55:05 -08002774 if (m->pool)
2775 ceph_msgpool_put(m->pool, m);
2776 else
2777 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002778}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002779EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002780
2781void ceph_msg_dump(struct ceph_msg *msg)
2782{
2783 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2784 msg->front_max, msg->nr_pages);
2785 print_hex_dump(KERN_DEBUG, "header: ",
2786 DUMP_PREFIX_OFFSET, 16, 1,
2787 &msg->hdr, sizeof(msg->hdr), true);
2788 print_hex_dump(KERN_DEBUG, " front: ",
2789 DUMP_PREFIX_OFFSET, 16, 1,
2790 msg->front.iov_base, msg->front.iov_len, true);
2791 if (msg->middle)
2792 print_hex_dump(KERN_DEBUG, "middle: ",
2793 DUMP_PREFIX_OFFSET, 16, 1,
2794 msg->middle->vec.iov_base,
2795 msg->middle->vec.iov_len, true);
2796 print_hex_dump(KERN_DEBUG, "footer: ",
2797 DUMP_PREFIX_OFFSET, 16, 1,
2798 &msg->footer, sizeof(msg->footer), true);
2799}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002800EXPORT_SYMBOL(ceph_msg_dump);