blob: 63e1252d3af5d68115f0384c16bea694234b3a32 [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;
Guanjun Hea2a32582012-07-08 19:50:33 -0700257 if (atomic_read(&con->msgr->stopping)) {
258 return;
259 }
Alex Elderbd406142012-01-23 15:49:27 -0600260
Sage Weil31b80062009-10-06 11:31:13 -0700261 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500262 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700263 con, con->state);
264 queue_con(con);
265 }
266}
267
268/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500269static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700270{
Alex Elderd3002b92012-02-14 14:05:33 -0600271 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700272
Jim Schutt182fac22012-02-29 08:30:58 -0700273 /* only queue to workqueue if there is data we want to write,
274 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500275 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700276 * doesn't get called again until try_write() fills the socket
277 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
278 * and net/core/stream.c:sk_stream_write_space().
279 */
Alex Elder928443c2012-05-22 11:41:43 -0500280 if (test_bit(WRITE_PENDING, &con->flags)) {
Jim Schutt182fac22012-02-29 08:30:58 -0700281 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500282 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700283 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
284 queue_con(con);
285 }
Sage Weil31b80062009-10-06 11:31:13 -0700286 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500287 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700288 }
Sage Weil31b80062009-10-06 11:31:13 -0700289}
290
291/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500292static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700293{
Alex Elderbd406142012-01-23 15:49:27 -0600294 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700295
Alex Elder327800b2012-05-22 11:41:43 -0500296 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700297 con, con->state, sk->sk_state);
298
299 if (test_bit(CLOSED, &con->state))
300 return;
301
302 switch (sk->sk_state) {
303 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500304 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700305 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500306 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500307 con_sock_state_closing(con);
Alex Elderd65c9e02012-06-20 21:53:53 -0500308 set_bit(SOCK_CLOSED, &con->flags);
309 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700310 break;
311 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500312 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500313 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700314 queue_con(con);
315 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600316 default: /* Everything else is uninteresting */
317 break;
Sage Weil31b80062009-10-06 11:31:13 -0700318 }
319}
320
321/*
322 * set up socket callbacks
323 */
324static void set_sock_callbacks(struct socket *sock,
325 struct ceph_connection *con)
326{
327 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600328 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500329 sk->sk_data_ready = ceph_sock_data_ready;
330 sk->sk_write_space = ceph_sock_write_space;
331 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700332}
333
334
335/*
336 * socket helpers
337 */
338
339/*
340 * initiate connection to a remote socket.
341 */
Alex Elder41617d02012-02-14 14:05:33 -0600342static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700343{
Sage Weilf91d3472010-07-01 15:18:31 -0700344 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700345 struct socket *sock;
346 int ret;
347
348 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700349 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
350 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700351 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600352 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700353 sock->sk->sk_allocation = GFP_NOFS;
354
Sage Weila6a53492010-04-13 14:07:07 -0700355#ifdef CONFIG_LOCKDEP
356 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
357#endif
358
Sage Weil31b80062009-10-06 11:31:13 -0700359 set_sock_callbacks(sock, con);
360
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700361 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700362
Sage Weil89a86be2012-06-09 14:19:21 -0700363 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700364 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
365 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700366 if (ret == -EINPROGRESS) {
367 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700368 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700369 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600370 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700371 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700372 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700373 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700374 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700375
Alex Elder41617d02012-02-14 14:05:33 -0600376 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600377 }
378 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600379 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700380}
381
382static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
383{
384 struct kvec iov = {buf, len};
385 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800386 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700387
Sage Weil98bdb0a2011-01-25 08:17:48 -0800388 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
389 if (r == -EAGAIN)
390 r = 0;
391 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700392}
393
394/*
395 * write something. @more is true if caller will be sending more data
396 * shortly.
397 */
398static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
399 size_t kvlen, size_t len, int more)
400{
401 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800402 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700403
404 if (more)
405 msg.msg_flags |= MSG_MORE;
406 else
407 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
408
Sage Weil42961d22011-01-25 08:19:34 -0800409 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
410 if (r == -EAGAIN)
411 r = 0;
412 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700413}
414
Alex Elder31739132012-03-07 11:40:08 -0600415static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
416 int offset, size_t size, int more)
417{
418 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
419 int ret;
420
421 ret = kernel_sendpage(sock, page, offset, size, flags);
422 if (ret == -EAGAIN)
423 ret = 0;
424
425 return ret;
426}
427
Sage Weil31b80062009-10-06 11:31:13 -0700428
429/*
430 * Shutdown/close the socket for the given connection.
431 */
432static int con_close_socket(struct ceph_connection *con)
433{
434 int rc;
435
436 dout("con_close_socket on %p sock %p\n", con, con->sock);
437 if (!con->sock)
438 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700439 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
440 sock_release(con->sock);
441 con->sock = NULL;
Alex Elder456ea462012-06-20 21:53:53 -0500442
443 /*
444 * Forcibly clear the SOCK_CLOSE flag. It gets set
445 * independent of the connection mutex, and we could have
446 * received a socket close event before we had the chance to
447 * shut the socket down.
448 */
Alex Eldera8d00e32012-06-20 21:53:53 -0500449 clear_bit(SOCK_CLOSED, &con->flags);
Alex Elderce2c8902012-05-22 22:15:49 -0500450 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700451 return rc;
452}
453
454/*
455 * Reset a connection. Discard all incoming and outgoing messages
456 * and clear *_seq state.
457 */
458static void ceph_msg_remove(struct ceph_msg *msg)
459{
460 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500461 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700462 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500463 msg->con = NULL;
464
Sage Weil31b80062009-10-06 11:31:13 -0700465 ceph_msg_put(msg);
466}
467static void ceph_msg_remove_list(struct list_head *head)
468{
469 while (!list_empty(head)) {
470 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
471 list_head);
472 ceph_msg_remove(msg);
473 }
474}
475
476static void reset_connection(struct ceph_connection *con)
477{
478 /* reset connection, out_queue, msg_ and connect_seq */
479 /* discard existing out_queue and msg_seq */
Sage Weil31b80062009-10-06 11:31:13 -0700480 ceph_msg_remove_list(&con->out_queue);
481 ceph_msg_remove_list(&con->out_sent);
482
Sage Weilcf3e5c42009-12-11 09:48:05 -0800483 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500484 BUG_ON(con->in_msg->con != con);
485 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800486 ceph_msg_put(con->in_msg);
487 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700488 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800489 }
490
Sage Weil31b80062009-10-06 11:31:13 -0700491 con->connect_seq = 0;
492 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800493 if (con->out_msg) {
494 ceph_msg_put(con->out_msg);
495 con->out_msg = NULL;
496 }
Sage Weil31b80062009-10-06 11:31:13 -0700497 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700498 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700499}
500
501/*
502 * mark a peer down. drop any open connections.
503 */
504void ceph_con_close(struct ceph_connection *con)
505{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700506 dout("con_close %p peer %s\n", con,
507 ceph_pr_addr(&con->peer_addr.in_addr));
Alex Eldera5988c42012-05-29 11:04:58 -0500508 clear_bit(NEGOTIATING, &con->state);
Alex Elderbb9e6bb2012-06-20 21:53:53 -0500509 clear_bit(CONNECTING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -0500510 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700511 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
Alex Eldera5988c42012-05-29 11:04:58 -0500512 set_bit(CLOSED, &con->state);
513
Alex Elder928443c2012-05-22 11:41:43 -0500514 clear_bit(LOSSYTX, &con->flags); /* so we retry next connect */
515 clear_bit(KEEPALIVE_PENDING, &con->flags);
516 clear_bit(WRITE_PENDING, &con->flags);
Alex Eldera5988c42012-05-29 11:04:58 -0500517
Sage Weilec302642009-12-22 10:43:42 -0800518 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700519 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700520 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800521 cancel_delayed_work(&con->work);
Sage Weilec302642009-12-22 10:43:42 -0800522 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700523 queue_con(con);
524}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700525EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700526
527/*
Sage Weil31b80062009-10-06 11:31:13 -0700528 * Reopen a closed connection, with a new peer address.
529 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700530void ceph_con_open(struct ceph_connection *con,
531 __u8 entity_type, __u64 entity_num,
532 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700533{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700534 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700535 set_bit(OPENING, &con->state);
Alex Eldera5988c42012-05-29 11:04:58 -0500536 WARN_ON(!test_and_clear_bit(CLOSED, &con->state));
537
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700538 con->peer_name.type = (__u8) entity_type;
539 con->peer_name.num = cpu_to_le64(entity_num);
540
Sage Weil31b80062009-10-06 11:31:13 -0700541 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800542 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -0700543 queue_con(con);
544}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700545EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700546
547/*
Sage Weil87b315a2010-03-22 14:51:18 -0700548 * return true if this connection ever successfully opened
549 */
550bool ceph_con_opened(struct ceph_connection *con)
551{
552 return con->connect_seq > 0;
553}
554
555/*
Sage Weil31b80062009-10-06 11:31:13 -0700556 * initialize a new connection.
557 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500558void ceph_con_init(struct ceph_connection *con, void *private,
559 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700560 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700561{
562 dout("con_init %p\n", con);
563 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500564 con->private = private;
565 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700566 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500567
568 con_sock_state_init(con);
569
Sage Weilec302642009-12-22 10:43:42 -0800570 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700571 INIT_LIST_HEAD(&con->out_queue);
572 INIT_LIST_HEAD(&con->out_sent);
573 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500574
575 set_bit(CLOSED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700576}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700578
579
580/*
581 * We maintain a global counter to order connection attempts. Get
582 * a unique seq greater than @gt.
583 */
584static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
585{
586 u32 ret;
587
588 spin_lock(&msgr->global_seq_lock);
589 if (msgr->global_seq < gt)
590 msgr->global_seq = gt;
591 ret = ++msgr->global_seq;
592 spin_unlock(&msgr->global_seq_lock);
593 return ret;
594}
595
Alex Eldere2200422012-05-23 14:35:23 -0500596static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600597{
598 con->out_kvec_left = 0;
599 con->out_kvec_bytes = 0;
600 con->out_kvec_cur = &con->out_kvec[0];
601}
602
Alex Eldere2200422012-05-23 14:35:23 -0500603static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600604 size_t size, void *data)
605{
606 int index;
607
608 index = con->out_kvec_left;
609 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
610
611 con->out_kvec[index].iov_len = size;
612 con->out_kvec[index].iov_base = data;
613 con->out_kvec_left++;
614 con->out_kvec_bytes += size;
615}
Sage Weil31b80062009-10-06 11:31:13 -0700616
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500617#ifdef CONFIG_BLOCK
618static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
619{
620 if (!bio) {
621 *iter = NULL;
622 *seg = 0;
623 return;
624 }
625 *iter = bio;
626 *seg = bio->bi_idx;
627}
628
629static void iter_bio_next(struct bio **bio_iter, int *seg)
630{
631 if (*bio_iter == NULL)
632 return;
633
634 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
635
636 (*seg)++;
637 if (*seg == (*bio_iter)->bi_vcnt)
638 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
639}
640#endif
641
Alex Elder739c9052012-06-11 14:57:13 -0500642static void prepare_write_message_data(struct ceph_connection *con)
643{
644 struct ceph_msg *msg = con->out_msg;
645
646 BUG_ON(!msg);
647 BUG_ON(!msg->hdr.data_len);
648
649 /* initialize page iterator */
650 con->out_msg_pos.page = 0;
651 if (msg->pages)
652 con->out_msg_pos.page_pos = msg->page_alignment;
653 else
654 con->out_msg_pos.page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -0500655#ifdef CONFIG_BLOCK
Alex Elderabdaa6a2012-06-11 14:57:13 -0500656 if (msg->bio)
Alex Elder572c5882012-06-11 14:57:13 -0500657 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
658#endif
Alex Elder739c9052012-06-11 14:57:13 -0500659 con->out_msg_pos.data_pos = 0;
660 con->out_msg_pos.did_page_crc = false;
661 con->out_more = 1; /* data + footer will follow */
662}
663
Sage Weil31b80062009-10-06 11:31:13 -0700664/*
665 * Prepare footer for currently outgoing message, and finish things
666 * off. Assumes out_kvec* are already valid.. we just add on to the end.
667 */
Alex Elder859eb792012-02-14 14:05:33 -0600668static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700669{
670 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -0600671 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -0700672
Alex Elderfd154f32012-06-11 14:57:13 -0500673 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
674
Sage Weil31b80062009-10-06 11:31:13 -0700675 dout("prepare_write_message_footer %p\n", con);
676 con->out_kvec_is_msg = true;
677 con->out_kvec[v].iov_base = &m->footer;
678 con->out_kvec[v].iov_len = sizeof(m->footer);
679 con->out_kvec_bytes += sizeof(m->footer);
680 con->out_kvec_left++;
681 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800682 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700683}
684
685/*
686 * Prepare headers for the next outgoing message.
687 */
688static void prepare_write_message(struct ceph_connection *con)
689{
690 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -0600691 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -0700692
Alex Eldere2200422012-05-23 14:35:23 -0500693 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -0700694 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800695 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700696
697 /* Sneak an ack in there first? If we can get it into the same
698 * TCP packet that's a good thing. */
699 if (con->in_seq > con->in_seq_acked) {
700 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -0500701 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700702 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500703 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600704 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700705 }
706
Alex Elder38941f82012-06-01 14:56:43 -0500707 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -0600708 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800709 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -0500710 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -0700711
712 /* put message on sent list */
713 ceph_msg_get(m);
714 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700715
Sage Weile84346b2010-05-11 21:20:38 -0700716 /*
717 * only assign outgoing seq # if we haven't sent this message
718 * yet. if it is requeued, resend with it's original seq.
719 */
720 if (m->needs_out_seq) {
721 m->hdr.seq = cpu_to_le64(++con->out_seq);
722 m->needs_out_seq = false;
723 }
Sage Weil31b80062009-10-06 11:31:13 -0700724
725 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
726 m, con->out_seq, le16_to_cpu(m->hdr.type),
727 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
728 le32_to_cpu(m->hdr.data_len),
729 m->nr_pages);
730 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
731
732 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -0500733 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
734 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
735 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -0600736
Sage Weil31b80062009-10-06 11:31:13 -0700737 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -0500738 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -0600739 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -0700740
741 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -0600742 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
743 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -0500744 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -0600745
746 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
747 con->out_msg->footer.front_crc = cpu_to_le32(crc);
748 if (m->middle) {
749 crc = crc32c(0, m->middle->vec.iov_base,
750 m->middle->vec.iov_len);
751 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
752 } else
Sage Weil31b80062009-10-06 11:31:13 -0700753 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -0500754 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700755 le32_to_cpu(con->out_msg->footer.front_crc),
756 le32_to_cpu(con->out_msg->footer.middle_crc));
757
758 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -0500759 con->out_msg->footer.data_crc = 0;
760 if (m->hdr.data_len)
761 prepare_write_message_data(con);
762 else
Sage Weil31b80062009-10-06 11:31:13 -0700763 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -0600764 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700765
Alex Elder928443c2012-05-22 11:41:43 -0500766 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700767}
768
769/*
770 * Prepare an ack.
771 */
772static void prepare_write_ack(struct ceph_connection *con)
773{
774 dout("prepare_write_ack %p %llu -> %llu\n", con,
775 con->in_seq_acked, con->in_seq);
776 con->in_seq_acked = con->in_seq;
777
Alex Eldere2200422012-05-23 14:35:23 -0500778 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -0600779
Alex Eldere2200422012-05-23 14:35:23 -0500780 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -0600781
Sage Weil31b80062009-10-06 11:31:13 -0700782 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500783 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600784 &con->out_temp_ack);
785
Sage Weil31b80062009-10-06 11:31:13 -0700786 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elder928443c2012-05-22 11:41:43 -0500787 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700788}
789
790/*
791 * Prepare to write keepalive byte.
792 */
793static void prepare_write_keepalive(struct ceph_connection *con)
794{
795 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -0500796 con_out_kvec_reset(con);
797 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elder928443c2012-05-22 11:41:43 -0500798 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700799}
800
801/*
802 * Connection negotiation.
803 */
804
Alex Elderdac1e712012-05-16 15:16:39 -0500805static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
806 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800807{
Alex Eldera3530df2012-05-16 15:16:39 -0500808 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -0500809
810 if (!con->ops->get_authorizer) {
811 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
812 con->out_connect.authorizer_len = 0;
813
Alex Elder729796b2012-05-16 15:16:39 -0500814 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -0500815 }
816
817 /* Can't hold the mutex while getting authorizer */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800818
Sage Weilec302642009-12-22 10:43:42 -0800819 mutex_unlock(&con->mutex);
Alex Elderb1c6b982012-05-16 15:16:38 -0500820
Alex Elderdac1e712012-05-16 15:16:39 -0500821 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Alex Elder8f43fb52012-05-16 15:16:39 -0500822
Sage Weilec302642009-12-22 10:43:42 -0800823 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800824
Alex Eldera3530df2012-05-16 15:16:39 -0500825 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -0500826 return auth;
Alex Elder928443c2012-05-22 11:41:43 -0500827 if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->flags))
Alex Elder729796b2012-05-16 15:16:39 -0500828 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -0700829
Alex Elder8f43fb52012-05-16 15:16:39 -0500830 con->auth_reply_buf = auth->authorizer_reply_buf;
831 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
832
Alex Elder859eb792012-02-14 14:05:33 -0600833
Alex Elder729796b2012-05-16 15:16:39 -0500834 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800835}
836
Sage Weil31b80062009-10-06 11:31:13 -0700837/*
838 * We connected to a peer and are saying hello.
839 */
Alex Eldere825a662012-05-16 15:16:38 -0500840static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700841{
Alex Eldere2200422012-05-23 14:35:23 -0500842 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
843 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -0500844 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -0800845
Sage Weileed0ef22009-11-10 14:34:36 -0800846 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500847 set_bit(WRITE_PENDING, &con->flags);
Sage Weileed0ef22009-11-10 14:34:36 -0800848}
849
Alex Eldere825a662012-05-16 15:16:38 -0500850static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -0800851{
Eric Dumazet95c96172012-04-15 05:58:06 +0000852 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -0700853 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -0500854 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -0500855 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -0700856
857 switch (con->peer_name.type) {
858 case CEPH_ENTITY_TYPE_MON:
859 proto = CEPH_MONC_PROTOCOL;
860 break;
861 case CEPH_ENTITY_TYPE_OSD:
862 proto = CEPH_OSDC_PROTOCOL;
863 break;
864 case CEPH_ENTITY_TYPE_MDS:
865 proto = CEPH_MDSC_PROTOCOL;
866 break;
867 default:
868 BUG();
869 }
870
871 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
872 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800873
Alex Eldere825a662012-05-16 15:16:38 -0500874 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700875 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
876 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
877 con->out_connect.global_seq = cpu_to_le32(global_seq);
878 con->out_connect.protocol_version = cpu_to_le32(proto);
879 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700880
Alex Elderdac1e712012-05-16 15:16:39 -0500881 auth_proto = CEPH_AUTH_UNKNOWN;
882 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -0500883 if (IS_ERR(auth))
884 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -0500885
Alex Elderdac1e712012-05-16 15:16:39 -0500886 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -0500887 con->out_connect.authorizer_len = auth ?
888 cpu_to_le32(auth->authorizer_buf_len) : 0;
889
Alex Elderab166d52012-05-31 11:37:29 -0500890 con_out_kvec_reset(con);
Alex Eldere2200422012-05-23 14:35:23 -0500891 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -0500892 &con->out_connect);
893 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -0500894 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -0500895 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -0600896
Sage Weil31b80062009-10-06 11:31:13 -0700897 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500898 set_bit(WRITE_PENDING, &con->flags);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800899
Alex Eldere10c7582012-05-16 15:16:38 -0500900 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700901}
902
Sage Weil31b80062009-10-06 11:31:13 -0700903/*
904 * write as much of pending kvecs to the socket as we can.
905 * 1 -> done
906 * 0 -> socket full, but more to do
907 * <0 -> error
908 */
909static int write_partial_kvec(struct ceph_connection *con)
910{
911 int ret;
912
913 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
914 while (con->out_kvec_bytes > 0) {
915 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
916 con->out_kvec_left, con->out_kvec_bytes,
917 con->out_more);
918 if (ret <= 0)
919 goto out;
920 con->out_kvec_bytes -= ret;
921 if (con->out_kvec_bytes == 0)
922 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -0600923
924 /* account for full iov entries consumed */
925 while (ret >= con->out_kvec_cur->iov_len) {
926 BUG_ON(!con->out_kvec_left);
927 ret -= con->out_kvec_cur->iov_len;
928 con->out_kvec_cur++;
929 con->out_kvec_left--;
930 }
931 /* and for a partially-consumed entry */
932 if (ret) {
933 con->out_kvec_cur->iov_len -= ret;
934 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -0700935 }
936 }
937 con->out_kvec_left = 0;
938 con->out_kvec_is_msg = false;
939 ret = 1;
940out:
941 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
942 con->out_kvec_bytes, con->out_kvec_left, ret);
943 return ret; /* done! */
944}
945
Alex Elder84ca8fc2012-06-11 14:57:13 -0500946static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
947 size_t len, size_t sent, bool in_trail)
948{
949 struct ceph_msg *msg = con->out_msg;
950
951 BUG_ON(!msg);
952 BUG_ON(!sent);
953
954 con->out_msg_pos.data_pos += sent;
955 con->out_msg_pos.page_pos += sent;
Alex Elder5821bd82012-06-11 14:57:13 -0500956 if (sent < len)
957 return;
958
959 BUG_ON(sent != len);
960 con->out_msg_pos.page_pos = 0;
961 con->out_msg_pos.page++;
962 con->out_msg_pos.did_page_crc = false;
963 if (in_trail)
964 list_move_tail(&page->lru,
965 &msg->trail->head);
966 else if (msg->pagelist)
967 list_move_tail(&page->lru,
968 &msg->pagelist->head);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500969#ifdef CONFIG_BLOCK
Alex Elder5821bd82012-06-11 14:57:13 -0500970 else if (msg->bio)
971 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500972#endif
Alex Elder84ca8fc2012-06-11 14:57:13 -0500973}
974
Sage Weil31b80062009-10-06 11:31:13 -0700975/*
976 * Write as much message data payload as we can. If we finish, queue
977 * up the footer.
978 * 1 -> done, footer is now queued in out_kvec[].
979 * 0 -> socket full, but more to do
980 * <0 -> error
981 */
982static int write_partial_msg_pages(struct ceph_connection *con)
983{
984 struct ceph_msg *msg = con->out_msg;
Eric Dumazet95c96172012-04-15 05:58:06 +0000985 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Sage Weil31b80062009-10-06 11:31:13 -0700986 size_t len;
Alex Elder37675b02012-03-07 11:40:08 -0600987 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -0700988 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700989 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -0500990 bool in_trail = false;
Alex Elder5821bd82012-06-11 14:57:13 -0500991 const size_t trail_len = (msg->trail ? msg->trail->length : 0);
992 const size_t trail_off = data_len - trail_len;
Sage Weil31b80062009-10-06 11:31:13 -0700993
994 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
Alex Elder84ca8fc2012-06-11 14:57:13 -0500995 con, msg, con->out_msg_pos.page, msg->nr_pages,
Sage Weil31b80062009-10-06 11:31:13 -0700996 con->out_msg_pos.page_pos);
997
Alex Elder5821bd82012-06-11 14:57:13 -0500998 /*
999 * Iterate through each page that contains data to be
1000 * written, and send as much as possible for each.
1001 *
1002 * If we are calculating the data crc (the default), we will
1003 * need to map the page. If we have no pages, they have
1004 * been revoked, so use the zero page.
1005 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001006 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001007 struct page *page = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001008 int max_write = PAGE_SIZE;
Alex Elder9bd19662012-03-07 11:40:08 -06001009 int bio_offset = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001010
Alex Elder5821bd82012-06-11 14:57:13 -05001011 in_trail = in_trail || con->out_msg_pos.data_pos >= trail_off;
1012 if (!in_trail)
1013 total_max_write = trail_off - con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001014
Alex Elder5821bd82012-06-11 14:57:13 -05001015 if (in_trail) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001016 total_max_write = data_len - con->out_msg_pos.data_pos;
1017
1018 page = list_first_entry(&msg->trail->head,
1019 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001020 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -07001021 page = msg->pages[con->out_msg_pos.page];
Sage Weil58bb3b32009-12-23 12:12:31 -08001022 } else if (msg->pagelist) {
1023 page = list_first_entry(&msg->pagelist->head,
1024 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001025#ifdef CONFIG_BLOCK
1026 } else if (msg->bio) {
1027 struct bio_vec *bv;
1028
1029 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
1030 page = bv->bv_page;
Alex Elder9bd19662012-03-07 11:40:08 -06001031 bio_offset = bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001032 max_write = bv->bv_len;
1033#endif
Sage Weil31b80062009-10-06 11:31:13 -07001034 } else {
Alex Elder57666512012-01-23 15:49:27 -06001035 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001036 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001037 len = min_t(int, max_write - con->out_msg_pos.page_pos,
1038 total_max_write);
1039
Alex Elder37675b02012-03-07 11:40:08 -06001040 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
Alex Elder9bd19662012-03-07 11:40:08 -06001041 void *base;
Alex Elder5821bd82012-06-11 14:57:13 -05001042 u32 crc = le32_to_cpu(msg->footer.data_crc);
Alex Elder8d63e312012-03-07 11:40:08 -06001043 char *kaddr;
Sage Weil31b80062009-10-06 11:31:13 -07001044
Alex Elder8d63e312012-03-07 11:40:08 -06001045 kaddr = kmap(page);
Sage Weil31b80062009-10-06 11:31:13 -07001046 BUG_ON(kaddr == NULL);
Alex Elder9bd19662012-03-07 11:40:08 -06001047 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
Alex Elder5821bd82012-06-11 14:57:13 -05001048 crc = crc32c(crc, base, len);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001049 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbca064d2012-02-15 07:43:54 -06001050 con->out_msg_pos.did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001051 }
Alex Eldere36b13c2012-03-07 11:40:08 -06001052 ret = ceph_tcp_sendpage(con->sock, page,
Alex Elder9bd19662012-03-07 11:40:08 -06001053 con->out_msg_pos.page_pos + bio_offset,
Alex Eldere36b13c2012-03-07 11:40:08 -06001054 len, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001055
Alex Elder0cdf9e62012-03-07 11:40:08 -06001056 if (do_datacrc)
Sage Weil31b80062009-10-06 11:31:13 -07001057 kunmap(page);
1058
1059 if (ret <= 0)
1060 goto out;
1061
Alex Elder84ca8fc2012-06-11 14:57:13 -05001062 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001063 }
1064
1065 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1066
1067 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001068 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001069 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001070 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001071 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001072 ret = 1;
1073out:
1074 return ret;
1075}
1076
1077/*
1078 * write some zeros
1079 */
1080static int write_partial_skip(struct ceph_connection *con)
1081{
1082 int ret;
1083
1084 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001085 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001086
Alex Elder31739132012-03-07 11:40:08 -06001087 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001088 if (ret <= 0)
1089 goto out;
1090 con->out_skip -= ret;
1091 }
1092 ret = 1;
1093out:
1094 return ret;
1095}
1096
1097/*
1098 * Prepare to read connection handshake, or an ack.
1099 */
Sage Weileed0ef22009-11-10 14:34:36 -08001100static void prepare_read_banner(struct ceph_connection *con)
1101{
1102 dout("prepare_read_banner %p\n", con);
1103 con->in_base_pos = 0;
1104}
1105
Sage Weil31b80062009-10-06 11:31:13 -07001106static void prepare_read_connect(struct ceph_connection *con)
1107{
1108 dout("prepare_read_connect %p\n", con);
1109 con->in_base_pos = 0;
1110}
1111
1112static void prepare_read_ack(struct ceph_connection *con)
1113{
1114 dout("prepare_read_ack %p\n", con);
1115 con->in_base_pos = 0;
1116}
1117
1118static void prepare_read_tag(struct ceph_connection *con)
1119{
1120 dout("prepare_read_tag %p\n", con);
1121 con->in_base_pos = 0;
1122 con->in_tag = CEPH_MSGR_TAG_READY;
1123}
1124
1125/*
1126 * Prepare to read a message.
1127 */
1128static int prepare_read_message(struct ceph_connection *con)
1129{
1130 dout("prepare_read_message %p\n", con);
1131 BUG_ON(con->in_msg != NULL);
1132 con->in_base_pos = 0;
1133 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1134 return 0;
1135}
1136
1137
1138static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001139 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001140{
Alex Eldere6cee712012-05-10 10:29:50 -05001141 while (con->in_base_pos < end) {
1142 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001143 int have = size - left;
1144 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1145 if (ret <= 0)
1146 return ret;
1147 con->in_base_pos += ret;
1148 }
1149 return 1;
1150}
1151
1152
1153/*
1154 * Read all or part of the connect-side handshake on a new connection
1155 */
Sage Weileed0ef22009-11-10 14:34:36 -08001156static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001157{
Alex Elderfd516532012-05-10 10:29:50 -05001158 int size;
1159 int end;
1160 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001161
Sage Weileed0ef22009-11-10 14:34:36 -08001162 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001163
1164 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001165 size = strlen(CEPH_BANNER);
1166 end = size;
1167 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001168 if (ret <= 0)
1169 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001170
1171 size = sizeof (con->actual_peer_addr);
1172 end += size;
1173 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001174 if (ret <= 0)
1175 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001176
1177 size = sizeof (con->peer_addr_for_me);
1178 end += size;
1179 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001180 if (ret <= 0)
1181 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001182
Sage Weileed0ef22009-11-10 14:34:36 -08001183out:
1184 return ret;
1185}
1186
1187static int read_partial_connect(struct ceph_connection *con)
1188{
Alex Elderfd516532012-05-10 10:29:50 -05001189 int size;
1190 int end;
1191 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001192
1193 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1194
Alex Elderfd516532012-05-10 10:29:50 -05001195 size = sizeof (con->in_reply);
1196 end = size;
1197 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001198 if (ret <= 0)
1199 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001200
1201 size = le32_to_cpu(con->in_reply.authorizer_len);
1202 end += size;
1203 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001204 if (ret <= 0)
1205 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001206
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001207 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1208 con, (int)con->in_reply.tag,
1209 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001210 le32_to_cpu(con->in_reply.global_seq));
1211out:
1212 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001213
Sage Weil31b80062009-10-06 11:31:13 -07001214}
1215
1216/*
1217 * Verify the hello banner looks okay.
1218 */
1219static int verify_hello(struct ceph_connection *con)
1220{
1221 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001222 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001223 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001224 con->error_msg = "protocol error, bad banner";
1225 return -1;
1226 }
1227 return 0;
1228}
1229
1230static bool addr_is_blank(struct sockaddr_storage *ss)
1231{
1232 switch (ss->ss_family) {
1233 case AF_INET:
1234 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1235 case AF_INET6:
1236 return
1237 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1238 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1239 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1240 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1241 }
1242 return false;
1243}
1244
1245static int addr_port(struct sockaddr_storage *ss)
1246{
1247 switch (ss->ss_family) {
1248 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001249 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001250 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001251 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001252 }
1253 return 0;
1254}
1255
1256static void addr_set_port(struct sockaddr_storage *ss, int p)
1257{
1258 switch (ss->ss_family) {
1259 case AF_INET:
1260 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001261 break;
Sage Weil31b80062009-10-06 11:31:13 -07001262 case AF_INET6:
1263 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001264 break;
Sage Weil31b80062009-10-06 11:31:13 -07001265 }
1266}
1267
1268/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001269 * Unlike other *_pton function semantics, zero indicates success.
1270 */
1271static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1272 char delim, const char **ipend)
1273{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001274 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1275 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001276
1277 memset(ss, 0, sizeof(*ss));
1278
1279 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1280 ss->ss_family = AF_INET;
1281 return 0;
1282 }
1283
1284 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1285 ss->ss_family = AF_INET6;
1286 return 0;
1287 }
1288
1289 return -EINVAL;
1290}
1291
1292/*
1293 * Extract hostname string and resolve using kernel DNS facility.
1294 */
1295#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1296static int ceph_dns_resolve_name(const char *name, size_t namelen,
1297 struct sockaddr_storage *ss, char delim, const char **ipend)
1298{
1299 const char *end, *delim_p;
1300 char *colon_p, *ip_addr = NULL;
1301 int ip_len, ret;
1302
1303 /*
1304 * The end of the hostname occurs immediately preceding the delimiter or
1305 * the port marker (':') where the delimiter takes precedence.
1306 */
1307 delim_p = memchr(name, delim, namelen);
1308 colon_p = memchr(name, ':', namelen);
1309
1310 if (delim_p && colon_p)
1311 end = delim_p < colon_p ? delim_p : colon_p;
1312 else if (!delim_p && colon_p)
1313 end = colon_p;
1314 else {
1315 end = delim_p;
1316 if (!end) /* case: hostname:/ */
1317 end = name + namelen;
1318 }
1319
1320 if (end <= name)
1321 return -EINVAL;
1322
1323 /* do dns_resolve upcall */
1324 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1325 if (ip_len > 0)
1326 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1327 else
1328 ret = -ESRCH;
1329
1330 kfree(ip_addr);
1331
1332 *ipend = end;
1333
1334 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1335 ret, ret ? "failed" : ceph_pr_addr(ss));
1336
1337 return ret;
1338}
1339#else
1340static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1341 struct sockaddr_storage *ss, char delim, const char **ipend)
1342{
1343 return -EINVAL;
1344}
1345#endif
1346
1347/*
1348 * Parse a server name (IP or hostname). If a valid IP address is not found
1349 * then try to extract a hostname to resolve using userspace DNS upcall.
1350 */
1351static int ceph_parse_server_name(const char *name, size_t namelen,
1352 struct sockaddr_storage *ss, char delim, const char **ipend)
1353{
1354 int ret;
1355
1356 ret = ceph_pton(name, namelen, ss, delim, ipend);
1357 if (ret)
1358 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1359
1360 return ret;
1361}
1362
1363/*
Sage Weil31b80062009-10-06 11:31:13 -07001364 * Parse an ip[:port] list into an addr array. Use the default
1365 * monitor port if a port isn't specified.
1366 */
1367int ceph_parse_ips(const char *c, const char *end,
1368 struct ceph_entity_addr *addr,
1369 int max_count, int *count)
1370{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001371 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001372 const char *p = c;
1373
1374 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1375 for (i = 0; i < max_count; i++) {
1376 const char *ipend;
1377 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001378 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001379 char delim = ',';
1380
1381 if (*p == '[') {
1382 delim = ']';
1383 p++;
1384 }
Sage Weil31b80062009-10-06 11:31:13 -07001385
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001386 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1387 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001388 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001389 ret = -EINVAL;
1390
Sage Weil31b80062009-10-06 11:31:13 -07001391 p = ipend;
1392
Sage Weil39139f62010-07-08 09:54:52 -07001393 if (delim == ']') {
1394 if (*p != ']') {
1395 dout("missing matching ']'\n");
1396 goto bad;
1397 }
1398 p++;
1399 }
1400
Sage Weil31b80062009-10-06 11:31:13 -07001401 /* port? */
1402 if (p < end && *p == ':') {
1403 port = 0;
1404 p++;
1405 while (p < end && *p >= '0' && *p <= '9') {
1406 port = (port * 10) + (*p - '0');
1407 p++;
1408 }
1409 if (port > 65535 || port == 0)
1410 goto bad;
1411 } else {
1412 port = CEPH_MON_PORT;
1413 }
1414
1415 addr_set_port(ss, port);
1416
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001417 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001418
1419 if (p == end)
1420 break;
1421 if (*p != ',')
1422 goto bad;
1423 p++;
1424 }
1425
1426 if (p != end)
1427 goto bad;
1428
1429 if (count)
1430 *count = i + 1;
1431 return 0;
1432
1433bad:
Sage Weil39139f62010-07-08 09:54:52 -07001434 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001435 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001436}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001437EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001438
Sage Weileed0ef22009-11-10 14:34:36 -08001439static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001440{
Sage Weileed0ef22009-11-10 14:34:36 -08001441 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001442
1443 if (verify_hello(con) < 0)
1444 return -1;
1445
Sage Weil63f2d212009-11-03 15:17:56 -08001446 ceph_decode_addr(&con->actual_peer_addr);
1447 ceph_decode_addr(&con->peer_addr_for_me);
1448
Sage Weil31b80062009-10-06 11:31:13 -07001449 /*
1450 * Make sure the other end is who we wanted. note that the other
1451 * end may not yet know their ip address, so if it's 0.0.0.0, give
1452 * them the benefit of the doubt.
1453 */
Sage Weil103e2d32010-01-07 16:12:36 -08001454 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1455 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001456 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1457 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001458 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001459 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001460 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001461 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001462 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001463 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001464 return -1;
1465 }
1466
1467 /*
1468 * did we learn our address?
1469 */
1470 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1471 int port = addr_port(&con->msgr->inst.addr.in_addr);
1472
1473 memcpy(&con->msgr->inst.addr.in_addr,
1474 &con->peer_addr_for_me.in_addr,
1475 sizeof(con->peer_addr_for_me.in_addr));
1476 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001477 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001478 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001479 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001480 }
1481
Sage Weileed0ef22009-11-10 14:34:36 -08001482 return 0;
1483}
1484
Sage Weil04a419f2009-12-23 09:30:21 -08001485static void fail_protocol(struct ceph_connection *con)
1486{
1487 reset_connection(con);
1488 set_bit(CLOSED, &con->state); /* in case there's queued work */
Sage Weil04a419f2009-12-23 09:30:21 -08001489}
1490
Sage Weileed0ef22009-11-10 14:34:36 -08001491static int process_connect(struct ceph_connection *con)
1492{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001493 u64 sup_feat = con->msgr->supported_features;
1494 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001495 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001496 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001497
Sage Weileed0ef22009-11-10 14:34:36 -08001498 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1499
Sage Weil31b80062009-10-06 11:31:13 -07001500 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001501 case CEPH_MSGR_TAG_FEATURES:
1502 pr_err("%s%lld %s feature set mismatch,"
1503 " my %llx < server's %llx, missing %llx\n",
1504 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001505 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001506 sup_feat, server_feat, server_feat & ~sup_feat);
1507 con->error_msg = "missing required protocol features";
1508 fail_protocol(con);
1509 return -1;
1510
Sage Weil31b80062009-10-06 11:31:13 -07001511 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001512 pr_err("%s%lld %s protocol version mismatch,"
1513 " my %d != server's %d\n",
1514 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001515 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001516 le32_to_cpu(con->out_connect.protocol_version),
1517 le32_to_cpu(con->in_reply.protocol_version));
1518 con->error_msg = "protocol version mismatch";
Sage Weil04a419f2009-12-23 09:30:21 -08001519 fail_protocol(con);
Sage Weil31b80062009-10-06 11:31:13 -07001520 return -1;
1521
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001522 case CEPH_MSGR_TAG_BADAUTHORIZER:
1523 con->auth_retry++;
1524 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1525 con->auth_retry);
1526 if (con->auth_retry == 2) {
1527 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001528 return -1;
1529 }
1530 con->auth_retry = 1;
Alex Eldere825a662012-05-16 15:16:38 -05001531 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001532 if (ret < 0)
1533 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001534 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001535 break;
Sage Weil31b80062009-10-06 11:31:13 -07001536
1537 case CEPH_MSGR_TAG_RESETSESSION:
1538 /*
1539 * If we connected with a large connect_seq but the peer
1540 * has no record of a session with us (no connection, or
1541 * connect_seq == 0), they will send RESETSESION to indicate
1542 * that they must have reset their session, and may have
1543 * dropped messages.
1544 */
1545 dout("process_connect got RESET peer seq %u\n",
Sage Weila16cb1f2012-07-10 11:53:34 -07001546 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001547 pr_err("%s%lld %s connection reset\n",
1548 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001549 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001550 reset_connection(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001551 ret = prepare_write_connect(con);
1552 if (ret < 0)
1553 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001554 prepare_read_connect(con);
1555
1556 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001557 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001558 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1559 if (con->ops->peer_reset)
1560 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001561 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07001562 if (test_bit(CLOSED, &con->state) ||
1563 test_bit(OPENING, &con->state))
1564 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001565 break;
1566
1567 case CEPH_MSGR_TAG_RETRY_SESSION:
1568 /*
1569 * If we sent a smaller connect_seq than the peer has, try
1570 * again with a larger value.
1571 */
Sage Weila16cb1f2012-07-10 11:53:34 -07001572 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001573 le32_to_cpu(con->out_connect.connect_seq),
Sage Weila16cb1f2012-07-10 11:53:34 -07001574 le32_to_cpu(con->in_reply.connect_seq));
1575 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001576 ret = prepare_write_connect(con);
1577 if (ret < 0)
1578 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001579 prepare_read_connect(con);
1580 break;
1581
1582 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1583 /*
1584 * If we sent a smaller global_seq than the peer has, try
1585 * again with a larger value.
1586 */
Sage Weileed0ef22009-11-10 14:34:36 -08001587 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001588 con->peer_global_seq,
Sage Weila16cb1f2012-07-10 11:53:34 -07001589 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001590 get_global_seq(con->msgr,
Sage Weila16cb1f2012-07-10 11:53:34 -07001591 le32_to_cpu(con->in_reply.global_seq));
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001592 ret = prepare_write_connect(con);
1593 if (ret < 0)
1594 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001595 prepare_read_connect(con);
1596 break;
1597
1598 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001599 if (req_feat & ~server_feat) {
1600 pr_err("%s%lld %s protocol feature mismatch,"
1601 " my required %llx > server's %llx, need %llx\n",
1602 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001603 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001604 req_feat, server_feat, req_feat & ~server_feat);
1605 con->error_msg = "missing required protocol features";
1606 fail_protocol(con);
1607 return -1;
1608 }
Alex Elder3ec50d12012-05-23 14:35:23 -05001609 clear_bit(NEGOTIATING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -05001610 set_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001611 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1612 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001613 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001614 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1615 con->peer_global_seq,
1616 le32_to_cpu(con->in_reply.connect_seq),
1617 con->connect_seq);
1618 WARN_ON(con->connect_seq !=
1619 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001620
1621 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elder928443c2012-05-22 11:41:43 -05001622 set_bit(LOSSYTX, &con->flags);
Sage Weil92ac41d2009-12-14 14:56:56 -08001623
Sage Weil31b80062009-10-06 11:31:13 -07001624 prepare_read_tag(con);
1625 break;
1626
1627 case CEPH_MSGR_TAG_WAIT:
1628 /*
1629 * If there is a connection race (we are opening
1630 * connections to each other), one of us may just have
1631 * to WAIT. This shouldn't happen if we are the
1632 * client.
1633 */
Sage Weil04177882011-05-12 15:33:17 -07001634 pr_err("process_connect got WAIT as client\n");
1635 con->error_msg = "protocol error, got WAIT as client";
1636 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07001637
1638 default:
1639 pr_err("connect protocol error, will retry\n");
1640 con->error_msg = "protocol error, garbage tag during connect";
1641 return -1;
1642 }
1643 return 0;
1644}
1645
1646
1647/*
1648 * read (part of) an ack
1649 */
1650static int read_partial_ack(struct ceph_connection *con)
1651{
Alex Elderfd516532012-05-10 10:29:50 -05001652 int size = sizeof (con->in_temp_ack);
1653 int end = size;
1654
1655 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001656}
1657
1658
1659/*
1660 * We can finally discard anything that's been acked.
1661 */
1662static void process_ack(struct ceph_connection *con)
1663{
1664 struct ceph_msg *m;
1665 u64 ack = le64_to_cpu(con->in_temp_ack);
1666 u64 seq;
1667
Sage Weil31b80062009-10-06 11:31:13 -07001668 while (!list_empty(&con->out_sent)) {
1669 m = list_first_entry(&con->out_sent, struct ceph_msg,
1670 list_head);
1671 seq = le64_to_cpu(m->hdr.seq);
1672 if (seq > ack)
1673 break;
1674 dout("got ack for seq %llu type %d at %p\n", seq,
1675 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07001676 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07001677 ceph_msg_remove(m);
1678 }
Sage Weil31b80062009-10-06 11:31:13 -07001679 prepare_read_tag(con);
1680}
1681
1682
1683
1684
Yehuda Sadeh24504182010-01-08 13:58:34 -08001685static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001686 struct kvec *section,
1687 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001688{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001689 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001690
Yehuda Sadeh24504182010-01-08 13:58:34 -08001691 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001692
Yehuda Sadeh24504182010-01-08 13:58:34 -08001693 while (section->iov_len < sec_len) {
1694 BUG_ON(section->iov_base == NULL);
1695 left = sec_len - section->iov_len;
1696 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1697 section->iov_len, left);
1698 if (ret <= 0)
1699 return ret;
1700 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001701 }
Alex Elderfe3ad592012-02-15 07:43:54 -06001702 if (section->iov_len == sec_len)
1703 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001704
1705 return 1;
1706}
1707
Alex Elder1c20f2d2012-06-04 14:43:32 -05001708static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
1709 struct ceph_msg_header *hdr);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001710
1711
1712static int read_partial_message_pages(struct ceph_connection *con,
1713 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00001714 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001715{
1716 void *p;
1717 int ret;
1718 int left;
1719
1720 left = min((int)(data_len - con->in_msg_pos.data_pos),
1721 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1722 /* (page) data */
1723 BUG_ON(pages == NULL);
1724 p = kmap(pages[con->in_msg_pos.page]);
1725 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1726 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001727 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001728 con->in_data_crc =
1729 crc32c(con->in_data_crc,
1730 p + con->in_msg_pos.page_pos, ret);
1731 kunmap(pages[con->in_msg_pos.page]);
1732 if (ret <= 0)
1733 return ret;
1734 con->in_msg_pos.data_pos += ret;
1735 con->in_msg_pos.page_pos += ret;
1736 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1737 con->in_msg_pos.page_pos = 0;
1738 con->in_msg_pos.page++;
1739 }
1740
1741 return ret;
1742}
1743
1744#ifdef CONFIG_BLOCK
1745static int read_partial_message_bio(struct ceph_connection *con,
1746 struct bio **bio_iter, int *bio_seg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001747 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001748{
1749 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1750 void *p;
1751 int ret, left;
1752
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001753 left = min((int)(data_len - con->in_msg_pos.data_pos),
1754 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1755
1756 p = kmap(bv->bv_page) + bv->bv_offset;
1757
1758 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1759 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001760 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001761 con->in_data_crc =
1762 crc32c(con->in_data_crc,
1763 p + con->in_msg_pos.page_pos, ret);
1764 kunmap(bv->bv_page);
1765 if (ret <= 0)
1766 return ret;
1767 con->in_msg_pos.data_pos += ret;
1768 con->in_msg_pos.page_pos += ret;
1769 if (con->in_msg_pos.page_pos == bv->bv_len) {
1770 con->in_msg_pos.page_pos = 0;
1771 iter_bio_next(bio_iter, bio_seg);
1772 }
1773
1774 return ret;
1775}
1776#endif
1777
Sage Weil31b80062009-10-06 11:31:13 -07001778/*
1779 * read (part of) a message.
1780 */
1781static int read_partial_message(struct ceph_connection *con)
1782{
1783 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05001784 int size;
1785 int end;
Sage Weil31b80062009-10-06 11:31:13 -07001786 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00001787 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06001788 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07001789 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06001790 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001791
1792 dout("read_partial_message con %p msg %p\n", con, m);
1793
1794 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05001795 size = sizeof (con->in_hdr);
1796 end = size;
1797 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05001798 if (ret <= 0)
1799 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06001800
1801 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1802 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1803 pr_err("read_partial_message bad hdr "
1804 " crc %u != expected %u\n",
1805 crc, con->in_hdr.crc);
1806 return -EBADMSG;
1807 }
1808
Sage Weil31b80062009-10-06 11:31:13 -07001809 front_len = le32_to_cpu(con->in_hdr.front_len);
1810 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1811 return -EIO;
1812 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1813 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1814 return -EIO;
1815 data_len = le32_to_cpu(con->in_hdr.data_len);
1816 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1817 return -EIO;
1818
Sage Weilae187562010-04-22 07:47:01 -07001819 /* verify seq# */
1820 seq = le64_to_cpu(con->in_hdr.seq);
1821 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001822 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001823 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001824 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001825 seq, con->in_seq + 1);
1826 con->in_base_pos = -front_len - middle_len - data_len -
1827 sizeof(m->footer);
1828 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001829 return 0;
1830 } else if ((s64)seq - (s64)con->in_seq > 1) {
1831 pr_err("read_partial_message bad seq %lld expected %lld\n",
1832 seq, con->in_seq + 1);
1833 con->error_msg = "bad message sequence # for incoming message";
1834 return -EBADMSG;
1835 }
1836
Sage Weil31b80062009-10-06 11:31:13 -07001837 /* allocate message? */
1838 if (!con->in_msg) {
1839 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1840 con->in_hdr.front_len, con->in_hdr.data_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001841 if (ceph_con_in_msg_alloc(con, &con->in_hdr)) {
Sage Weil31b80062009-10-06 11:31:13 -07001842 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001843 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001844 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001845 con->in_base_pos = -front_len - middle_len - data_len -
1846 sizeof(m->footer);
1847 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001848 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001849 return 0;
1850 }
Sage Weila79832f2010-04-01 16:06:19 -07001851 if (!con->in_msg) {
Sage Weil5b3a4db2010-02-19 21:43:23 -08001852 con->error_msg =
1853 "error allocating memory for incoming message";
Sage Weila79832f2010-04-01 16:06:19 -07001854 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -07001855 }
Alex Elder38941f82012-06-01 14:56:43 -05001856
1857 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07001858 m = con->in_msg;
1859 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001860 if (m->middle)
1861 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001862
1863 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001864 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001865 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001866 else
1867 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001868 con->in_msg_pos.data_pos = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001869 }
1870
1871 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001872 ret = read_partial_message_section(con, &m->front, front_len,
1873 &con->in_front_crc);
1874 if (ret <= 0)
1875 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001876
1877 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001878 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001879 ret = read_partial_message_section(con, &m->middle->vec,
1880 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001881 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001882 if (ret <= 0)
1883 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001884 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001885#ifdef CONFIG_BLOCK
1886 if (m->bio && !m->bio_iter)
1887 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1888#endif
Sage Weil31b80062009-10-06 11:31:13 -07001889
1890 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001891 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001892 if (m->pages) {
1893 ret = read_partial_message_pages(con, m->pages,
Alex Elderbca064d2012-02-15 07:43:54 -06001894 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001895 if (ret <= 0)
1896 return ret;
1897#ifdef CONFIG_BLOCK
1898 } else if (m->bio) {
1899
1900 ret = read_partial_message_bio(con,
1901 &m->bio_iter, &m->bio_seg,
Alex Elderbca064d2012-02-15 07:43:54 -06001902 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001903 if (ret <= 0)
1904 return ret;
1905#endif
1906 } else {
1907 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07001908 }
1909 }
1910
Sage Weil31b80062009-10-06 11:31:13 -07001911 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05001912 size = sizeof (m->footer);
1913 end += size;
1914 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05001915 if (ret <= 0)
1916 return ret;
1917
Sage Weil31b80062009-10-06 11:31:13 -07001918 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1919 m, front_len, m->footer.front_crc, middle_len,
1920 m->footer.middle_crc, data_len, m->footer.data_crc);
1921
1922 /* crc ok? */
1923 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1924 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1925 m, con->in_front_crc, m->footer.front_crc);
1926 return -EBADMSG;
1927 }
1928 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1929 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1930 m, con->in_middle_crc, m->footer.middle_crc);
1931 return -EBADMSG;
1932 }
Alex Elderbca064d2012-02-15 07:43:54 -06001933 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07001934 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1935 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1936 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1937 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1938 return -EBADMSG;
1939 }
1940
1941 return 1; /* done! */
1942}
1943
1944/*
1945 * Process message. This happens in the worker thread. The callback should
1946 * be careful not to do anything that waits on other incoming messages or it
1947 * may deadlock.
1948 */
1949static void process_message(struct ceph_connection *con)
1950{
Sage Weil5e095e82009-12-14 14:30:34 -08001951 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07001952
Alex Elder38941f82012-06-01 14:56:43 -05001953 BUG_ON(con->in_msg->con != con);
1954 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08001955 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001956 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07001957 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07001958
1959 /* if first message, set peer_name */
1960 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07001961 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07001962
Sage Weil31b80062009-10-06 11:31:13 -07001963 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08001964 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001965
1966 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1967 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07001968 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07001969 le16_to_cpu(msg->hdr.type),
1970 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1971 le32_to_cpu(msg->hdr.front_len),
1972 le32_to_cpu(msg->hdr.data_len),
1973 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1974 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08001975
1976 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001977 prepare_read_tag(con);
1978}
1979
1980
1981/*
1982 * Write something to the socket. Called in a worker thread when the
1983 * socket appears to be writeable and we have something ready to send.
1984 */
1985static int try_write(struct ceph_connection *con)
1986{
Sage Weil31b80062009-10-06 11:31:13 -07001987 int ret = 1;
1988
Sage Weild59315c2012-06-21 12:49:23 -07001989 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001990
Sage Weil31b80062009-10-06 11:31:13 -07001991more:
1992 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
1993
1994 /* open the socket first? */
1995 if (con->sock == NULL) {
Alex Eldera5988c42012-05-29 11:04:58 -05001996 set_bit(CONNECTING, &con->state);
1997
Alex Eldere2200422012-05-23 14:35:23 -05001998 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001999 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002000 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002001
Sage Weilcf3e5c42009-12-11 09:48:05 -08002002 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002003 con->in_tag = CEPH_MSGR_TAG_READY;
2004 dout("try_write initiating connect on %p new state %lu\n",
2005 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002006 ret = ceph_tcp_connect(con);
2007 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002008 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002009 goto out;
2010 }
2011 }
2012
2013more_kvec:
2014 /* kvec data queued? */
2015 if (con->out_skip) {
2016 ret = write_partial_skip(con);
2017 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002018 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002019 }
2020 if (con->out_kvec_left) {
2021 ret = write_partial_kvec(con);
2022 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002023 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002024 }
2025
2026 /* msg pages? */
2027 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002028 if (con->out_msg_done) {
2029 ceph_msg_put(con->out_msg);
2030 con->out_msg = NULL; /* we're done with this one */
2031 goto do_next;
2032 }
2033
Sage Weil31b80062009-10-06 11:31:13 -07002034 ret = write_partial_msg_pages(con);
2035 if (ret == 1)
2036 goto more_kvec; /* we need to send the footer, too! */
2037 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002038 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002039 if (ret < 0) {
2040 dout("try_write write_partial_msg_pages err %d\n",
2041 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002042 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002043 }
2044 }
2045
Sage Weilc86a2932009-12-14 14:04:30 -08002046do_next:
Alex Elder7593af92012-05-24 11:55:03 -05002047 if (!test_bit(CONNECTING, &con->state) &&
2048 !test_bit(NEGOTIATING, &con->state)) {
Sage Weil31b80062009-10-06 11:31:13 -07002049 /* is anything else pending? */
2050 if (!list_empty(&con->out_queue)) {
2051 prepare_write_message(con);
2052 goto more;
2053 }
2054 if (con->in_seq > con->in_seq_acked) {
2055 prepare_write_ack(con);
2056 goto more;
2057 }
Alex Elder928443c2012-05-22 11:41:43 -05002058 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002059 prepare_write_keepalive(con);
2060 goto more;
2061 }
2062 }
2063
2064 /* Nothing to do! */
Alex Elder928443c2012-05-22 11:41:43 -05002065 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002066 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002067 ret = 0;
2068out:
Sage Weil42961d22011-01-25 08:19:34 -08002069 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002070 return ret;
2071}
2072
2073
2074
2075/*
2076 * Read what we can from the socket.
2077 */
2078static int try_read(struct ceph_connection *con)
2079{
Sage Weil31b80062009-10-06 11:31:13 -07002080 int ret = -1;
2081
2082 if (!con->sock)
2083 return 0;
2084
2085 if (test_bit(STANDBY, &con->state))
2086 return 0;
2087
2088 dout("try_read start on %p\n", con);
Sage Weilec302642009-12-22 10:43:42 -08002089
Sage Weil31b80062009-10-06 11:31:13 -07002090more:
2091 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2092 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002093
2094 /*
2095 * process_connect and process_message drop and re-take
2096 * con->mutex. make sure we handle a racing close or reopen.
2097 */
2098 if (test_bit(CLOSED, &con->state) ||
2099 test_bit(OPENING, &con->state)) {
2100 ret = -EAGAIN;
2101 goto out;
2102 }
2103
Sage Weil31b80062009-10-06 11:31:13 -07002104 if (test_bit(CONNECTING, &con->state)) {
Alex Elder7593af92012-05-24 11:55:03 -05002105 dout("try_read connecting\n");
2106 ret = read_partial_banner(con);
2107 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002108 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002109 ret = process_banner(con);
2110 if (ret < 0)
2111 goto out;
2112
2113 clear_bit(CONNECTING, &con->state);
2114 set_bit(NEGOTIATING, &con->state);
2115
2116 /* Banner is good, exchange connection info */
2117 ret = prepare_write_connect(con);
2118 if (ret < 0)
2119 goto out;
2120 prepare_read_connect(con);
2121
2122 /* Send connection info before awaiting response */
2123 goto out;
2124 }
2125
2126 if (test_bit(NEGOTIATING, &con->state)) {
2127 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002128 ret = read_partial_connect(con);
2129 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002130 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002131 ret = process_connect(con);
2132 if (ret < 0)
2133 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002134 goto more;
2135 }
2136
2137 if (con->in_base_pos < 0) {
2138 /*
2139 * skipping + discarding content.
2140 *
2141 * FIXME: there must be a better way to do this!
2142 */
Alex Elder84495f42012-02-15 07:43:55 -06002143 static char buf[SKIP_BUF_SIZE];
2144 int skip = min((int) sizeof (buf), -con->in_base_pos);
2145
Sage Weil31b80062009-10-06 11:31:13 -07002146 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2147 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2148 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002149 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002150 con->in_base_pos += ret;
2151 if (con->in_base_pos)
2152 goto more;
2153 }
2154 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2155 /*
2156 * what's next?
2157 */
2158 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2159 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002160 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002161 dout("try_read got tag %d\n", (int)con->in_tag);
2162 switch (con->in_tag) {
2163 case CEPH_MSGR_TAG_MSG:
2164 prepare_read_message(con);
2165 break;
2166 case CEPH_MSGR_TAG_ACK:
2167 prepare_read_ack(con);
2168 break;
2169 case CEPH_MSGR_TAG_CLOSE:
Alex Eldere27947c2012-05-23 14:35:23 -05002170 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002171 set_bit(CLOSED, &con->state); /* fixme */
Sage Weil98bdb0a2011-01-25 08:17:48 -08002172 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002173 default:
2174 goto bad_tag;
2175 }
2176 }
2177 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2178 ret = read_partial_message(con);
2179 if (ret <= 0) {
2180 switch (ret) {
2181 case -EBADMSG:
2182 con->error_msg = "bad crc";
2183 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002184 break;
Sage Weil31b80062009-10-06 11:31:13 -07002185 case -EIO:
2186 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002187 break;
Sage Weil31b80062009-10-06 11:31:13 -07002188 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002189 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002190 }
2191 if (con->in_tag == CEPH_MSGR_TAG_READY)
2192 goto more;
2193 process_message(con);
2194 goto more;
2195 }
2196 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2197 ret = read_partial_ack(con);
2198 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002199 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002200 process_ack(con);
2201 goto more;
2202 }
2203
Sage Weil31b80062009-10-06 11:31:13 -07002204out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002205 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002206 return ret;
2207
2208bad_tag:
2209 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2210 con->error_msg = "protocol error, garbage tag";
2211 ret = -1;
2212 goto out;
2213}
2214
2215
2216/*
2217 * Atomically queue work on a connection. Bump @con reference to
2218 * avoid races with connection teardown.
Sage Weil31b80062009-10-06 11:31:13 -07002219 */
2220static void queue_con(struct ceph_connection *con)
2221{
Sage Weil31b80062009-10-06 11:31:13 -07002222 if (!con->ops->get(con)) {
2223 dout("queue_con %p ref count 0\n", con);
2224 return;
2225 }
2226
Tejun Heof363e452011-01-03 14:49:46 +01002227 if (!queue_delayed_work(ceph_msgr_wq, &con->work, 0)) {
Sage Weil31b80062009-10-06 11:31:13 -07002228 dout("queue_con %p - already queued\n", con);
2229 con->ops->put(con);
2230 } else {
2231 dout("queue_con %p\n", con);
2232 }
2233}
2234
2235/*
2236 * Do some work on a connection. Drop a connection ref when we're done.
2237 */
2238static void con_work(struct work_struct *work)
2239{
2240 struct ceph_connection *con = container_of(work, struct ceph_connection,
2241 work.work);
Sage Weil0da5d702011-05-19 11:21:05 -07002242 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002243
Sage Weil9dd46582010-04-28 13:51:50 -07002244 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002245restart:
Alex Elder188048b2012-06-20 21:53:53 -05002246 if (test_and_clear_bit(SOCK_CLOSED, &con->flags)) {
Alex Eldere27947c2012-05-23 14:35:23 -05002247 if (test_and_clear_bit(CONNECTED, &con->state))
2248 con->error_msg = "socket closed";
Alex Elder7593af92012-05-24 11:55:03 -05002249 else if (test_and_clear_bit(NEGOTIATING, &con->state))
2250 con->error_msg = "negotiation failed";
2251 else if (test_and_clear_bit(CONNECTING, &con->state))
Alex Elder188048b2012-06-20 21:53:53 -05002252 con->error_msg = "connection failed";
Alex Elder7593af92012-05-24 11:55:03 -05002253 else
Alex Eldere27947c2012-05-23 14:35:23 -05002254 con->error_msg = "unrecognized con state";
Alex Elder188048b2012-06-20 21:53:53 -05002255 goto fault;
2256 }
2257
Alex Elder928443c2012-05-22 11:41:43 -05002258 if (test_and_clear_bit(BACKOFF, &con->flags)) {
Sage Weil60bf8bf2011-03-04 12:24:28 -08002259 dout("con_work %p backing off\n", con);
2260 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2261 round_jiffies_relative(con->delay))) {
2262 dout("con_work %p backoff %lu\n", con, con->delay);
2263 mutex_unlock(&con->mutex);
2264 return;
2265 } else {
2266 con->ops->put(con);
2267 dout("con_work %p FAILED to back off %lu\n", con,
2268 con->delay);
2269 }
2270 }
Sage Weil9dd46582010-04-28 13:51:50 -07002271
Sage Weile00de342011-03-04 12:25:05 -08002272 if (test_bit(STANDBY, &con->state)) {
2273 dout("con_work %p STANDBY\n", con);
2274 goto done;
2275 }
Sage Weil31b80062009-10-06 11:31:13 -07002276 if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
2277 dout("con_work CLOSED\n");
2278 con_close_socket(con);
2279 goto done;
2280 }
2281 if (test_and_clear_bit(OPENING, &con->state)) {
2282 /* reopen w/ new peer */
2283 dout("con_work OPENING\n");
2284 con_close_socket(con);
2285 }
2286
Sage Weil0da5d702011-05-19 11:21:05 -07002287 ret = try_read(con);
2288 if (ret == -EAGAIN)
2289 goto restart;
2290 if (ret < 0)
2291 goto fault;
2292
2293 ret = try_write(con);
2294 if (ret == -EAGAIN)
2295 goto restart;
2296 if (ret < 0)
2297 goto fault;
Sage Weil31b80062009-10-06 11:31:13 -07002298
2299done:
Sage Weil9dd46582010-04-28 13:51:50 -07002300 mutex_unlock(&con->mutex);
Sage Weil9dd46582010-04-28 13:51:50 -07002301done_unlocked:
Sage Weil31b80062009-10-06 11:31:13 -07002302 con->ops->put(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002303 return;
2304
2305fault:
2306 mutex_unlock(&con->mutex);
2307 ceph_fault(con); /* error/fault path */
2308 goto done_unlocked;
Sage Weil31b80062009-10-06 11:31:13 -07002309}
2310
2311
2312/*
2313 * Generic error/fault handler. A retry mechanism is used with
2314 * exponential backoff
2315 */
2316static void ceph_fault(struct ceph_connection *con)
2317{
2318 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002319 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002320 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002321 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002322
Alex Elder928443c2012-05-22 11:41:43 -05002323 if (test_bit(LOSSYTX, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002324 dout("fault on LOSSYTX channel\n");
2325 goto out;
2326 }
2327
Sage Weilec302642009-12-22 10:43:42 -08002328 mutex_lock(&con->mutex);
Sage Weil91e45ce32010-02-15 12:05:09 -08002329 if (test_bit(CLOSED, &con->state))
2330 goto out_unlock;
Sage Weilec302642009-12-22 10:43:42 -08002331
Sage Weil31b80062009-10-06 11:31:13 -07002332 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002333
2334 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002335 BUG_ON(con->in_msg->con != con);
2336 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002337 ceph_msg_put(con->in_msg);
2338 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002339 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002340 }
Sage Weil31b80062009-10-06 11:31:13 -07002341
Sage Weile80a52d2010-02-25 12:40:45 -08002342 /* Requeue anything that hasn't been acked */
2343 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002344
Sage Weile76661d2011-03-03 10:10:15 -08002345 /* If there are no messages queued or keepalive pending, place
2346 * the connection in a STANDBY state */
2347 if (list_empty(&con->out_queue) &&
Alex Elder928443c2012-05-22 11:41:43 -05002348 !test_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weile00de342011-03-04 12:25:05 -08002349 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elder928443c2012-05-22 11:41:43 -05002350 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002351 set_bit(STANDBY, &con->state);
Sage Weile80a52d2010-02-25 12:40:45 -08002352 } else {
2353 /* retry after a delay. */
2354 if (con->delay == 0)
2355 con->delay = BASE_DELAY_INTERVAL;
2356 else if (con->delay < MAX_DELAY_INTERVAL)
2357 con->delay *= 2;
Sage Weile80a52d2010-02-25 12:40:45 -08002358 con->ops->get(con);
2359 if (queue_delayed_work(ceph_msgr_wq, &con->work,
Sage Weil60bf8bf2011-03-04 12:24:28 -08002360 round_jiffies_relative(con->delay))) {
2361 dout("fault queued %p delay %lu\n", con, con->delay);
2362 } else {
Sage Weile80a52d2010-02-25 12:40:45 -08002363 con->ops->put(con);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002364 dout("fault failed to queue %p delay %lu, backoff\n",
2365 con, con->delay);
2366 /*
2367 * In many cases we see a socket state change
2368 * while con_work is running and end up
2369 * queuing (non-delayed) work, such that we
2370 * can't backoff with a delay. Set a flag so
2371 * that when con_work restarts we schedule the
2372 * delay then.
2373 */
Alex Elder928443c2012-05-22 11:41:43 -05002374 set_bit(BACKOFF, &con->flags);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002375 }
Sage Weil31b80062009-10-06 11:31:13 -07002376 }
2377
Sage Weil91e45ce32010-02-15 12:05:09 -08002378out_unlock:
2379 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002380out:
Sage Weil161fd652010-02-25 12:38:57 -08002381 /*
2382 * in case we faulted due to authentication, invalidate our
2383 * current tickets so that we can get new ones.
Sage Weil213c99e2010-08-03 10:25:11 -07002384 */
Sage Weil161fd652010-02-25 12:38:57 -08002385 if (con->auth_retry && con->ops->invalidate_authorizer) {
2386 dout("calling invalidate_authorizer()\n");
2387 con->ops->invalidate_authorizer(con);
2388 }
2389
Sage Weil31b80062009-10-06 11:31:13 -07002390 if (con->ops->fault)
2391 con->ops->fault(con);
2392}
2393
2394
2395
2396/*
Alex Elder15d98822012-05-26 23:26:43 -05002397 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002398 */
Alex Elder15d98822012-05-26 23:26:43 -05002399void ceph_messenger_init(struct ceph_messenger *msgr,
2400 struct ceph_entity_addr *myaddr,
2401 u32 supported_features,
2402 u32 required_features,
2403 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002404{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002405 msgr->supported_features = supported_features;
2406 msgr->required_features = required_features;
2407
Sage Weil31b80062009-10-06 11:31:13 -07002408 spin_lock_init(&msgr->global_seq_lock);
2409
Sage Weil31b80062009-10-06 11:31:13 -07002410 if (myaddr)
2411 msgr->inst.addr = *myaddr;
2412
2413 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002414 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002415 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002416 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002417 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002418
Guanjun Hea2a32582012-07-08 19:50:33 -07002419 atomic_set(&msgr->stopping, 0);
2420
Alex Elder15d98822012-05-26 23:26:43 -05002421 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002422}
Alex Elder15d98822012-05-26 23:26:43 -05002423EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002424
Sage Weile00de342011-03-04 12:25:05 -08002425static void clear_standby(struct ceph_connection *con)
2426{
2427 /* come back from STANDBY? */
2428 if (test_and_clear_bit(STANDBY, &con->state)) {
2429 mutex_lock(&con->mutex);
2430 dout("clear_standby %p and ++connect_seq\n", con);
2431 con->connect_seq++;
Alex Elder928443c2012-05-22 11:41:43 -05002432 WARN_ON(test_bit(WRITE_PENDING, &con->flags));
2433 WARN_ON(test_bit(KEEPALIVE_PENDING, &con->flags));
Sage Weile00de342011-03-04 12:25:05 -08002434 mutex_unlock(&con->mutex);
2435 }
2436}
2437
Sage Weil31b80062009-10-06 11:31:13 -07002438/*
2439 * Queue up an outgoing message on the given connection.
2440 */
2441void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2442{
2443 if (test_bit(CLOSED, &con->state)) {
2444 dout("con_send %p closed, dropping %p\n", con, msg);
2445 ceph_msg_put(msg);
2446 return;
2447 }
2448
2449 /* set src+dst */
Sage Weildbad1852010-03-25 15:45:38 -07002450 msg->hdr.src = con->msgr->inst.name;
Sage Weil31b80062009-10-06 11:31:13 -07002451
Sage Weil3ca02ef2010-03-01 15:25:00 -08002452 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2453
Sage Weile84346b2010-05-11 21:20:38 -07002454 msg->needs_out_seq = true;
2455
Sage Weil31b80062009-10-06 11:31:13 -07002456 /* queue */
Sage Weilec302642009-12-22 10:43:42 -08002457 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002458
Alex Elder38941f82012-06-01 14:56:43 -05002459 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002460 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002461 BUG_ON(msg->con == NULL);
2462
Sage Weil31b80062009-10-06 11:31:13 -07002463 BUG_ON(!list_empty(&msg->list_head));
2464 list_add_tail(&msg->list_head, &con->out_queue);
2465 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2466 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2467 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2468 le32_to_cpu(msg->hdr.front_len),
2469 le32_to_cpu(msg->hdr.middle_len),
2470 le32_to_cpu(msg->hdr.data_len));
Sage Weilec302642009-12-22 10:43:42 -08002471 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002472
2473 /* if there wasn't anything waiting to send before, queue
2474 * new work */
Sage Weile00de342011-03-04 12:25:05 -08002475 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002476 if (test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002477 queue_con(con);
2478}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002479EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002480
2481/*
2482 * Revoke a message that was previously queued for send
2483 */
Alex Elder6740a842012-06-01 14:56:43 -05002484void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002485{
Alex Elder6740a842012-06-01 14:56:43 -05002486 struct ceph_connection *con = msg->con;
2487
2488 if (!con)
2489 return; /* Message not in our possession */
2490
Sage Weilec302642009-12-22 10:43:42 -08002491 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002492 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002493 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002494 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002495 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002496 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002497 msg->con = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05002498 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002499
Sage Weil31b80062009-10-06 11:31:13 -07002500 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002501 }
2502 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002503 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002504 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002505 if (con->out_kvec_is_msg) {
2506 con->out_skip = con->out_kvec_bytes;
2507 con->out_kvec_is_msg = false;
2508 }
Sage Weiled98ada2010-07-05 12:15:14 -07002509 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002510
2511 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002512 }
Sage Weilec302642009-12-22 10:43:42 -08002513 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002514}
2515
2516/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002517 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002518 */
Alex Elder8921d112012-06-01 14:56:43 -05002519void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002520{
Alex Elder8921d112012-06-01 14:56:43 -05002521 struct ceph_connection *con;
2522
2523 BUG_ON(msg == NULL);
2524 if (!msg->con) {
2525 dout("%s msg %p null con\n", __func__, msg);
2526
2527 return; /* Message not in our possession */
2528 }
2529
2530 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002531 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002532 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002533 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2534 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2535 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002536
2537 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002538 dout("%s %p msg %p revoked\n", __func__, con, msg);
2539 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002540 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002541 front_len -
2542 middle_len -
2543 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002544 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002545 ceph_msg_put(con->in_msg);
2546 con->in_msg = NULL;
2547 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002548 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002549 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002550 dout("%s %p in_msg %p msg %p no-op\n",
2551 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002552 }
2553 mutex_unlock(&con->mutex);
2554}
2555
2556/*
Sage Weil31b80062009-10-06 11:31:13 -07002557 * Queue a keepalive byte to ensure the tcp connection is alive.
2558 */
2559void ceph_con_keepalive(struct ceph_connection *con)
2560{
Sage Weile00de342011-03-04 12:25:05 -08002561 dout("con_keepalive %p\n", con);
2562 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002563 if (test_and_set_bit(KEEPALIVE_PENDING, &con->flags) == 0 &&
2564 test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002565 queue_con(con);
2566}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002567EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002568
2569
2570/*
2571 * construct a new message with given type, size
2572 * the new msg has a ref count of 1.
2573 */
Sage Weilb61c2762011-08-09 15:03:46 -07002574struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2575 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07002576{
2577 struct ceph_msg *m;
2578
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002579 m = kmalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002580 if (m == NULL)
2581 goto out;
Sage Weilc2e552e2009-12-07 15:55:05 -08002582 kref_init(&m->kref);
Alex Elder38941f82012-06-01 14:56:43 -05002583
2584 m->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002585 INIT_LIST_HEAD(&m->list_head);
2586
Sage Weil45c6ceb2010-05-11 15:01:51 -07002587 m->hdr.tid = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002588 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002589 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2590 m->hdr.version = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002591 m->hdr.front_len = cpu_to_le32(front_len);
2592 m->hdr.middle_len = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002593 m->hdr.data_len = 0;
2594 m->hdr.data_off = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002595 m->hdr.reserved = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002596 m->footer.front_crc = 0;
2597 m->footer.middle_crc = 0;
2598 m->footer.data_crc = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002599 m->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002600 m->front_max = front_len;
2601 m->front_is_vmalloc = false;
2602 m->more_to_follow = false;
Jim Schuttc0d5f9d2011-09-16 08:27:31 -06002603 m->ack_stamp = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002604 m->pool = NULL;
2605
Henry C Changca208922011-05-03 02:29:56 +00002606 /* middle */
2607 m->middle = NULL;
2608
2609 /* data */
2610 m->nr_pages = 0;
2611 m->page_alignment = 0;
2612 m->pages = NULL;
2613 m->pagelist = NULL;
2614 m->bio = NULL;
2615 m->bio_iter = NULL;
2616 m->bio_seg = 0;
2617 m->trail = NULL;
2618
Sage Weil31b80062009-10-06 11:31:13 -07002619 /* front */
2620 if (front_len) {
2621 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002622 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002623 PAGE_KERNEL);
2624 m->front_is_vmalloc = true;
2625 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002626 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002627 }
2628 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07002629 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07002630 front_len);
2631 goto out2;
2632 }
2633 } else {
2634 m->front.iov_base = NULL;
2635 }
2636 m->front.iov_len = front_len;
2637
Sage Weilbb257662010-04-01 16:07:23 -07002638 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002639 return m;
2640
2641out2:
2642 ceph_msg_put(m);
2643out:
Sage Weilb61c2762011-08-09 15:03:46 -07002644 if (!can_fail) {
2645 pr_err("msg_new can't create type %d front %d\n", type,
2646 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07002647 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07002648 } else {
2649 dout("msg_new can't create type %d front %d\n", type,
2650 front_len);
2651 }
Sage Weila79832f2010-04-01 16:06:19 -07002652 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002653}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002654EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002655
2656/*
Sage Weil31b80062009-10-06 11:31:13 -07002657 * Allocate "middle" portion of a message, if it is needed and wasn't
2658 * allocated by alloc_msg. This allows us to read a small fixed-size
2659 * per-type header in the front and then gracefully fail (i.e.,
2660 * propagate the error to the caller based on info in the front) when
2661 * the middle is too large.
2662 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002663static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002664{
2665 int type = le16_to_cpu(msg->hdr.type);
2666 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2667
2668 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2669 ceph_msg_type_name(type), middle_len);
2670 BUG_ON(!middle_len);
2671 BUG_ON(msg->middle);
2672
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002673 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002674 if (!msg->middle)
2675 return -ENOMEM;
2676 return 0;
2677}
2678
Yehuda Sadeh24504182010-01-08 13:58:34 -08002679/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05002680 * Allocate a message for receiving an incoming message on a
2681 * connection, and save the result in con->in_msg. Uses the
2682 * connection's private alloc_msg op if available.
2683 *
2684 * Returns true if the message should be skipped, false otherwise.
2685 * If true is returned (skip message), con->in_msg will be NULL.
2686 * If false is returned, con->in_msg will contain a pointer to the
2687 * newly-allocated message, or NULL in case of memory exhaustion.
Yehuda Sadeh24504182010-01-08 13:58:34 -08002688 */
Alex Elder1c20f2d2012-06-04 14:43:32 -05002689static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
2690 struct ceph_msg_header *hdr)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002691{
2692 int type = le16_to_cpu(hdr->type);
2693 int front_len = le32_to_cpu(hdr->front_len);
2694 int middle_len = le32_to_cpu(hdr->middle_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002695 int ret;
2696
Alex Elder1c20f2d2012-06-04 14:43:32 -05002697 BUG_ON(con->in_msg != NULL);
2698
Yehuda Sadeh24504182010-01-08 13:58:34 -08002699 if (con->ops->alloc_msg) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002700 int skip = 0;
2701
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002702 mutex_unlock(&con->mutex);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002703 con->in_msg = con->ops->alloc_msg(con, hdr, &skip);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002704 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002705 if (con->in_msg) {
Sage Weil36eb71a2012-06-21 12:47:08 -07002706 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002707 BUG_ON(con->in_msg->con == NULL);
2708 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002709 if (skip)
2710 con->in_msg = NULL;
2711
2712 if (!con->in_msg)
2713 return skip != 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002714 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002715 if (!con->in_msg) {
2716 con->in_msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
2717 if (!con->in_msg) {
Yehuda Sadeh24504182010-01-08 13:58:34 -08002718 pr_err("unable to allocate msg type %d len %d\n",
2719 type, front_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002720 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002721 }
Sage Weil36eb71a2012-06-21 12:47:08 -07002722 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002723 BUG_ON(con->in_msg->con == NULL);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002724 con->in_msg->page_alignment = le16_to_cpu(hdr->data_off);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002725 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002726 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002727
Alex Elder1c20f2d2012-06-04 14:43:32 -05002728 if (middle_len && !con->in_msg->middle) {
2729 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002730 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002731 ceph_msg_put(con->in_msg);
2732 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002733 }
2734 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002735
Alex Elder1c20f2d2012-06-04 14:43:32 -05002736 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002737}
2738
Sage Weil31b80062009-10-06 11:31:13 -07002739
2740/*
2741 * Free a generically kmalloc'd message.
2742 */
2743void ceph_msg_kfree(struct ceph_msg *m)
2744{
2745 dout("msg_kfree %p\n", m);
2746 if (m->front_is_vmalloc)
2747 vfree(m->front.iov_base);
2748 else
2749 kfree(m->front.iov_base);
2750 kfree(m);
2751}
2752
2753/*
2754 * Drop a msg ref. Destroy as needed.
2755 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002756void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002757{
Sage Weilc2e552e2009-12-07 15:55:05 -08002758 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002759
Sage Weilc2e552e2009-12-07 15:55:05 -08002760 dout("ceph_msg_put last one on %p\n", m);
2761 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002762
Sage Weilc2e552e2009-12-07 15:55:05 -08002763 /* drop middle, data, if any */
2764 if (m->middle) {
2765 ceph_buffer_put(m->middle);
2766 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002767 }
Sage Weilc2e552e2009-12-07 15:55:05 -08002768 m->nr_pages = 0;
2769 m->pages = NULL;
2770
Sage Weil58bb3b32009-12-23 12:12:31 -08002771 if (m->pagelist) {
2772 ceph_pagelist_release(m->pagelist);
2773 kfree(m->pagelist);
2774 m->pagelist = NULL;
2775 }
2776
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002777 m->trail = NULL;
2778
Sage Weilc2e552e2009-12-07 15:55:05 -08002779 if (m->pool)
2780 ceph_msgpool_put(m->pool, m);
2781 else
2782 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002783}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002784EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002785
2786void ceph_msg_dump(struct ceph_msg *msg)
2787{
2788 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2789 msg->front_max, msg->nr_pages);
2790 print_hex_dump(KERN_DEBUG, "header: ",
2791 DUMP_PREFIX_OFFSET, 16, 1,
2792 &msg->hdr, sizeof(msg->hdr), true);
2793 print_hex_dump(KERN_DEBUG, " front: ",
2794 DUMP_PREFIX_OFFSET, 16, 1,
2795 msg->front.iov_base, msg->front.iov_len, true);
2796 if (msg->middle)
2797 print_hex_dump(KERN_DEBUG, "middle: ",
2798 DUMP_PREFIX_OFFSET, 16, 1,
2799 msg->middle->vec.iov_base,
2800 msg->middle->vec.iov_len, true);
2801 print_hex_dump(KERN_DEBUG, "footer: ",
2802 DUMP_PREFIX_OFFSET, 16, 1,
2803 &msg->footer, sizeof(msg->footer), true);
2804}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002805EXPORT_SYMBOL(ceph_msg_dump);