blob: 46ce113732e6baf211685523e7b8e6a68cf37d32 [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{
Sage Weil8c50c812012-07-30 16:24:37 -0700506 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700507 dout("con_close %p peer %s\n", con,
508 ceph_pr_addr(&con->peer_addr.in_addr));
Alex Eldera5988c42012-05-29 11:04:58 -0500509 clear_bit(NEGOTIATING, &con->state);
Alex Elderbb9e6bb2012-06-20 21:53:53 -0500510 clear_bit(CONNECTING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -0500511 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700512 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
Alex Eldera5988c42012-05-29 11:04:58 -0500513 set_bit(CLOSED, &con->state);
514
Alex Elder928443c2012-05-22 11:41:43 -0500515 clear_bit(LOSSYTX, &con->flags); /* so we retry next connect */
516 clear_bit(KEEPALIVE_PENDING, &con->flags);
517 clear_bit(WRITE_PENDING, &con->flags);
Alex Eldera5988c42012-05-29 11:04:58 -0500518
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 Weilee76e072012-07-20 16:45:49 -0700522 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800523 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700524}
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{
Sage Weil54691552012-07-30 16:21:40 -0700534 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700535 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700536 set_bit(OPENING, &con->state);
Alex Eldera5988c42012-05-29 11:04:58 -0500537 WARN_ON(!test_and_clear_bit(CLOSED, &con->state));
538
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700539 con->peer_name.type = (__u8) entity_type;
540 con->peer_name.num = cpu_to_le64(entity_num);
541
Sage Weil31b80062009-10-06 11:31:13 -0700542 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800543 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700544 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700545 queue_con(con);
546}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700547EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700548
549/*
Sage Weil87b315a2010-03-22 14:51:18 -0700550 * return true if this connection ever successfully opened
551 */
552bool ceph_con_opened(struct ceph_connection *con)
553{
554 return con->connect_seq > 0;
555}
556
557/*
Sage Weil31b80062009-10-06 11:31:13 -0700558 * initialize a new connection.
559 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500560void ceph_con_init(struct ceph_connection *con, void *private,
561 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700562 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700563{
564 dout("con_init %p\n", con);
565 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500566 con->private = private;
567 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700568 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500569
570 con_sock_state_init(con);
571
Sage Weilec302642009-12-22 10:43:42 -0800572 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700573 INIT_LIST_HEAD(&con->out_queue);
574 INIT_LIST_HEAD(&con->out_sent);
575 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500576
577 set_bit(CLOSED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700578}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700579EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700580
581
582/*
583 * We maintain a global counter to order connection attempts. Get
584 * a unique seq greater than @gt.
585 */
586static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
587{
588 u32 ret;
589
590 spin_lock(&msgr->global_seq_lock);
591 if (msgr->global_seq < gt)
592 msgr->global_seq = gt;
593 ret = ++msgr->global_seq;
594 spin_unlock(&msgr->global_seq_lock);
595 return ret;
596}
597
Alex Eldere2200422012-05-23 14:35:23 -0500598static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600599{
600 con->out_kvec_left = 0;
601 con->out_kvec_bytes = 0;
602 con->out_kvec_cur = &con->out_kvec[0];
603}
604
Alex Eldere2200422012-05-23 14:35:23 -0500605static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600606 size_t size, void *data)
607{
608 int index;
609
610 index = con->out_kvec_left;
611 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
612
613 con->out_kvec[index].iov_len = size;
614 con->out_kvec[index].iov_base = data;
615 con->out_kvec_left++;
616 con->out_kvec_bytes += size;
617}
Sage Weil31b80062009-10-06 11:31:13 -0700618
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500619#ifdef CONFIG_BLOCK
620static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
621{
622 if (!bio) {
623 *iter = NULL;
624 *seg = 0;
625 return;
626 }
627 *iter = bio;
628 *seg = bio->bi_idx;
629}
630
631static void iter_bio_next(struct bio **bio_iter, int *seg)
632{
633 if (*bio_iter == NULL)
634 return;
635
636 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
637
638 (*seg)++;
639 if (*seg == (*bio_iter)->bi_vcnt)
640 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
641}
642#endif
643
Alex Elder739c9052012-06-11 14:57:13 -0500644static void prepare_write_message_data(struct ceph_connection *con)
645{
646 struct ceph_msg *msg = con->out_msg;
647
648 BUG_ON(!msg);
649 BUG_ON(!msg->hdr.data_len);
650
651 /* initialize page iterator */
652 con->out_msg_pos.page = 0;
653 if (msg->pages)
654 con->out_msg_pos.page_pos = msg->page_alignment;
655 else
656 con->out_msg_pos.page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -0500657#ifdef CONFIG_BLOCK
Alex Elderabdaa6a2012-06-11 14:57:13 -0500658 if (msg->bio)
Alex Elder572c5882012-06-11 14:57:13 -0500659 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
660#endif
Alex Elder739c9052012-06-11 14:57:13 -0500661 con->out_msg_pos.data_pos = 0;
662 con->out_msg_pos.did_page_crc = false;
663 con->out_more = 1; /* data + footer will follow */
664}
665
Sage Weil31b80062009-10-06 11:31:13 -0700666/*
667 * Prepare footer for currently outgoing message, and finish things
668 * off. Assumes out_kvec* are already valid.. we just add on to the end.
669 */
Alex Elder859eb792012-02-14 14:05:33 -0600670static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700671{
672 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -0600673 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -0700674
Alex Elderfd154f32012-06-11 14:57:13 -0500675 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
676
Sage Weil31b80062009-10-06 11:31:13 -0700677 dout("prepare_write_message_footer %p\n", con);
678 con->out_kvec_is_msg = true;
679 con->out_kvec[v].iov_base = &m->footer;
680 con->out_kvec[v].iov_len = sizeof(m->footer);
681 con->out_kvec_bytes += sizeof(m->footer);
682 con->out_kvec_left++;
683 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800684 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700685}
686
687/*
688 * Prepare headers for the next outgoing message.
689 */
690static void prepare_write_message(struct ceph_connection *con)
691{
692 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -0600693 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -0700694
Alex Eldere2200422012-05-23 14:35:23 -0500695 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -0700696 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800697 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700698
699 /* Sneak an ack in there first? If we can get it into the same
700 * TCP packet that's a good thing. */
701 if (con->in_seq > con->in_seq_acked) {
702 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -0500703 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700704 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500705 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600706 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700707 }
708
Alex Elder38941f82012-06-01 14:56:43 -0500709 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -0600710 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800711 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -0500712 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -0700713
714 /* put message on sent list */
715 ceph_msg_get(m);
716 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700717
Sage Weile84346b2010-05-11 21:20:38 -0700718 /*
719 * only assign outgoing seq # if we haven't sent this message
720 * yet. if it is requeued, resend with it's original seq.
721 */
722 if (m->needs_out_seq) {
723 m->hdr.seq = cpu_to_le64(++con->out_seq);
724 m->needs_out_seq = false;
725 }
Sage Weil31b80062009-10-06 11:31:13 -0700726
727 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
728 m, con->out_seq, le16_to_cpu(m->hdr.type),
729 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
730 le32_to_cpu(m->hdr.data_len),
731 m->nr_pages);
732 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
733
734 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -0500735 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
736 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
737 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -0600738
Sage Weil31b80062009-10-06 11:31:13 -0700739 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -0500740 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -0600741 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -0700742
743 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -0600744 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
745 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -0500746 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -0600747
748 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
749 con->out_msg->footer.front_crc = cpu_to_le32(crc);
750 if (m->middle) {
751 crc = crc32c(0, m->middle->vec.iov_base,
752 m->middle->vec.iov_len);
753 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
754 } else
Sage Weil31b80062009-10-06 11:31:13 -0700755 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -0500756 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700757 le32_to_cpu(con->out_msg->footer.front_crc),
758 le32_to_cpu(con->out_msg->footer.middle_crc));
759
760 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -0500761 con->out_msg->footer.data_crc = 0;
762 if (m->hdr.data_len)
763 prepare_write_message_data(con);
764 else
Sage Weil31b80062009-10-06 11:31:13 -0700765 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -0600766 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700767
Alex Elder928443c2012-05-22 11:41:43 -0500768 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700769}
770
771/*
772 * Prepare an ack.
773 */
774static void prepare_write_ack(struct ceph_connection *con)
775{
776 dout("prepare_write_ack %p %llu -> %llu\n", con,
777 con->in_seq_acked, con->in_seq);
778 con->in_seq_acked = con->in_seq;
779
Alex Eldere2200422012-05-23 14:35:23 -0500780 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -0600781
Alex Eldere2200422012-05-23 14:35:23 -0500782 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -0600783
Sage Weil31b80062009-10-06 11:31:13 -0700784 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500785 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600786 &con->out_temp_ack);
787
Sage Weil31b80062009-10-06 11:31:13 -0700788 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elder928443c2012-05-22 11:41:43 -0500789 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700790}
791
792/*
793 * Prepare to write keepalive byte.
794 */
795static void prepare_write_keepalive(struct ceph_connection *con)
796{
797 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -0500798 con_out_kvec_reset(con);
799 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elder928443c2012-05-22 11:41:43 -0500800 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700801}
802
803/*
804 * Connection negotiation.
805 */
806
Alex Elderdac1e712012-05-16 15:16:39 -0500807static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
808 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800809{
Alex Eldera3530df2012-05-16 15:16:39 -0500810 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -0500811
812 if (!con->ops->get_authorizer) {
813 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
814 con->out_connect.authorizer_len = 0;
815
Alex Elder729796b2012-05-16 15:16:39 -0500816 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -0500817 }
818
819 /* Can't hold the mutex while getting authorizer */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800820
Sage Weilec302642009-12-22 10:43:42 -0800821 mutex_unlock(&con->mutex);
Alex Elderb1c6b982012-05-16 15:16:38 -0500822
Alex Elderdac1e712012-05-16 15:16:39 -0500823 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Alex Elder8f43fb52012-05-16 15:16:39 -0500824
Sage Weilec302642009-12-22 10:43:42 -0800825 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800826
Alex Eldera3530df2012-05-16 15:16:39 -0500827 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -0500828 return auth;
Alex Elder928443c2012-05-22 11:41:43 -0500829 if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->flags))
Alex Elder729796b2012-05-16 15:16:39 -0500830 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -0700831
Alex Elder8f43fb52012-05-16 15:16:39 -0500832 con->auth_reply_buf = auth->authorizer_reply_buf;
833 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
834
Alex Elder859eb792012-02-14 14:05:33 -0600835
Alex Elder729796b2012-05-16 15:16:39 -0500836 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800837}
838
Sage Weil31b80062009-10-06 11:31:13 -0700839/*
840 * We connected to a peer and are saying hello.
841 */
Alex Eldere825a662012-05-16 15:16:38 -0500842static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700843{
Alex Eldere2200422012-05-23 14:35:23 -0500844 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
845 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -0500846 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -0800847
Sage Weileed0ef22009-11-10 14:34:36 -0800848 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500849 set_bit(WRITE_PENDING, &con->flags);
Sage Weileed0ef22009-11-10 14:34:36 -0800850}
851
Alex Eldere825a662012-05-16 15:16:38 -0500852static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -0800853{
Eric Dumazet95c96172012-04-15 05:58:06 +0000854 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -0700855 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -0500856 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -0500857 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -0700858
859 switch (con->peer_name.type) {
860 case CEPH_ENTITY_TYPE_MON:
861 proto = CEPH_MONC_PROTOCOL;
862 break;
863 case CEPH_ENTITY_TYPE_OSD:
864 proto = CEPH_OSDC_PROTOCOL;
865 break;
866 case CEPH_ENTITY_TYPE_MDS:
867 proto = CEPH_MDSC_PROTOCOL;
868 break;
869 default:
870 BUG();
871 }
872
873 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
874 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800875
Alex Eldere825a662012-05-16 15:16:38 -0500876 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700877 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
878 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
879 con->out_connect.global_seq = cpu_to_le32(global_seq);
880 con->out_connect.protocol_version = cpu_to_le32(proto);
881 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700882
Alex Elderdac1e712012-05-16 15:16:39 -0500883 auth_proto = CEPH_AUTH_UNKNOWN;
884 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -0500885 if (IS_ERR(auth))
886 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -0500887
Alex Elderdac1e712012-05-16 15:16:39 -0500888 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -0500889 con->out_connect.authorizer_len = auth ?
890 cpu_to_le32(auth->authorizer_buf_len) : 0;
891
Alex Elderab166d52012-05-31 11:37:29 -0500892 con_out_kvec_reset(con);
Alex Eldere2200422012-05-23 14:35:23 -0500893 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -0500894 &con->out_connect);
895 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -0500896 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -0500897 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -0600898
Sage Weil31b80062009-10-06 11:31:13 -0700899 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500900 set_bit(WRITE_PENDING, &con->flags);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800901
Alex Eldere10c7582012-05-16 15:16:38 -0500902 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700903}
904
Sage Weil31b80062009-10-06 11:31:13 -0700905/*
906 * write as much of pending kvecs to the socket as we can.
907 * 1 -> done
908 * 0 -> socket full, but more to do
909 * <0 -> error
910 */
911static int write_partial_kvec(struct ceph_connection *con)
912{
913 int ret;
914
915 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
916 while (con->out_kvec_bytes > 0) {
917 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
918 con->out_kvec_left, con->out_kvec_bytes,
919 con->out_more);
920 if (ret <= 0)
921 goto out;
922 con->out_kvec_bytes -= ret;
923 if (con->out_kvec_bytes == 0)
924 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -0600925
926 /* account for full iov entries consumed */
927 while (ret >= con->out_kvec_cur->iov_len) {
928 BUG_ON(!con->out_kvec_left);
929 ret -= con->out_kvec_cur->iov_len;
930 con->out_kvec_cur++;
931 con->out_kvec_left--;
932 }
933 /* and for a partially-consumed entry */
934 if (ret) {
935 con->out_kvec_cur->iov_len -= ret;
936 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -0700937 }
938 }
939 con->out_kvec_left = 0;
940 con->out_kvec_is_msg = false;
941 ret = 1;
942out:
943 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
944 con->out_kvec_bytes, con->out_kvec_left, ret);
945 return ret; /* done! */
946}
947
Alex Elder84ca8fc2012-06-11 14:57:13 -0500948static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
949 size_t len, size_t sent, bool in_trail)
950{
951 struct ceph_msg *msg = con->out_msg;
952
953 BUG_ON(!msg);
954 BUG_ON(!sent);
955
956 con->out_msg_pos.data_pos += sent;
957 con->out_msg_pos.page_pos += sent;
Alex Elder5821bd82012-06-11 14:57:13 -0500958 if (sent < len)
959 return;
960
961 BUG_ON(sent != len);
962 con->out_msg_pos.page_pos = 0;
963 con->out_msg_pos.page++;
964 con->out_msg_pos.did_page_crc = false;
965 if (in_trail)
966 list_move_tail(&page->lru,
967 &msg->trail->head);
968 else if (msg->pagelist)
969 list_move_tail(&page->lru,
970 &msg->pagelist->head);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500971#ifdef CONFIG_BLOCK
Alex Elder5821bd82012-06-11 14:57:13 -0500972 else if (msg->bio)
973 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
Alex Elder84ca8fc2012-06-11 14:57:13 -0500974#endif
Alex Elder84ca8fc2012-06-11 14:57:13 -0500975}
976
Sage Weil31b80062009-10-06 11:31:13 -0700977/*
978 * Write as much message data payload as we can. If we finish, queue
979 * up the footer.
980 * 1 -> done, footer is now queued in out_kvec[].
981 * 0 -> socket full, but more to do
982 * <0 -> error
983 */
984static int write_partial_msg_pages(struct ceph_connection *con)
985{
986 struct ceph_msg *msg = con->out_msg;
Eric Dumazet95c96172012-04-15 05:58:06 +0000987 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Sage Weil31b80062009-10-06 11:31:13 -0700988 size_t len;
Alex Elder37675b02012-03-07 11:40:08 -0600989 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -0700990 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700991 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -0500992 bool in_trail = false;
Alex Elder5821bd82012-06-11 14:57:13 -0500993 const size_t trail_len = (msg->trail ? msg->trail->length : 0);
994 const size_t trail_off = data_len - trail_len;
Sage Weil31b80062009-10-06 11:31:13 -0700995
996 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
Alex Elder84ca8fc2012-06-11 14:57:13 -0500997 con, msg, con->out_msg_pos.page, msg->nr_pages,
Sage Weil31b80062009-10-06 11:31:13 -0700998 con->out_msg_pos.page_pos);
999
Alex Elder5821bd82012-06-11 14:57:13 -05001000 /*
1001 * Iterate through each page that contains data to be
1002 * written, and send as much as possible for each.
1003 *
1004 * If we are calculating the data crc (the default), we will
1005 * need to map the page. If we have no pages, they have
1006 * been revoked, so use the zero page.
1007 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001008 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -07001009 struct page *page = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001010 int max_write = PAGE_SIZE;
Alex Elder9bd19662012-03-07 11:40:08 -06001011 int bio_offset = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001012
Alex Elder5821bd82012-06-11 14:57:13 -05001013 in_trail = in_trail || con->out_msg_pos.data_pos >= trail_off;
1014 if (!in_trail)
1015 total_max_write = trail_off - con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001016
Alex Elder5821bd82012-06-11 14:57:13 -05001017 if (in_trail) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001018 total_max_write = data_len - con->out_msg_pos.data_pos;
1019
1020 page = list_first_entry(&msg->trail->head,
1021 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001022 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -07001023 page = msg->pages[con->out_msg_pos.page];
Sage Weil58bb3b32009-12-23 12:12:31 -08001024 } else if (msg->pagelist) {
1025 page = list_first_entry(&msg->pagelist->head,
1026 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001027#ifdef CONFIG_BLOCK
1028 } else if (msg->bio) {
1029 struct bio_vec *bv;
1030
1031 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
1032 page = bv->bv_page;
Alex Elder9bd19662012-03-07 11:40:08 -06001033 bio_offset = bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001034 max_write = bv->bv_len;
1035#endif
Sage Weil31b80062009-10-06 11:31:13 -07001036 } else {
Alex Elder57666512012-01-23 15:49:27 -06001037 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -07001038 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001039 len = min_t(int, max_write - con->out_msg_pos.page_pos,
1040 total_max_write);
1041
Alex Elder37675b02012-03-07 11:40:08 -06001042 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
Alex Elder9bd19662012-03-07 11:40:08 -06001043 void *base;
Alex Elder5821bd82012-06-11 14:57:13 -05001044 u32 crc = le32_to_cpu(msg->footer.data_crc);
Alex Elder8d63e312012-03-07 11:40:08 -06001045 char *kaddr;
Sage Weil31b80062009-10-06 11:31:13 -07001046
Alex Elder8d63e312012-03-07 11:40:08 -06001047 kaddr = kmap(page);
Sage Weil31b80062009-10-06 11:31:13 -07001048 BUG_ON(kaddr == NULL);
Alex Elder9bd19662012-03-07 11:40:08 -06001049 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
Alex Elder5821bd82012-06-11 14:57:13 -05001050 crc = crc32c(crc, base, len);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001051 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbca064d2012-02-15 07:43:54 -06001052 con->out_msg_pos.did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001053 }
Alex Eldere36b13c2012-03-07 11:40:08 -06001054 ret = ceph_tcp_sendpage(con->sock, page,
Alex Elder9bd19662012-03-07 11:40:08 -06001055 con->out_msg_pos.page_pos + bio_offset,
Alex Eldere36b13c2012-03-07 11:40:08 -06001056 len, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001057
Alex Elder0cdf9e62012-03-07 11:40:08 -06001058 if (do_datacrc)
Sage Weil31b80062009-10-06 11:31:13 -07001059 kunmap(page);
1060
1061 if (ret <= 0)
1062 goto out;
1063
Alex Elder84ca8fc2012-06-11 14:57:13 -05001064 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001065 }
1066
1067 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1068
1069 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001070 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001071 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001072 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001073 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001074 ret = 1;
1075out:
1076 return ret;
1077}
1078
1079/*
1080 * write some zeros
1081 */
1082static int write_partial_skip(struct ceph_connection *con)
1083{
1084 int ret;
1085
1086 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001087 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001088
Alex Elder31739132012-03-07 11:40:08 -06001089 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001090 if (ret <= 0)
1091 goto out;
1092 con->out_skip -= ret;
1093 }
1094 ret = 1;
1095out:
1096 return ret;
1097}
1098
1099/*
1100 * Prepare to read connection handshake, or an ack.
1101 */
Sage Weileed0ef22009-11-10 14:34:36 -08001102static void prepare_read_banner(struct ceph_connection *con)
1103{
1104 dout("prepare_read_banner %p\n", con);
1105 con->in_base_pos = 0;
1106}
1107
Sage Weil31b80062009-10-06 11:31:13 -07001108static void prepare_read_connect(struct ceph_connection *con)
1109{
1110 dout("prepare_read_connect %p\n", con);
1111 con->in_base_pos = 0;
1112}
1113
1114static void prepare_read_ack(struct ceph_connection *con)
1115{
1116 dout("prepare_read_ack %p\n", con);
1117 con->in_base_pos = 0;
1118}
1119
1120static void prepare_read_tag(struct ceph_connection *con)
1121{
1122 dout("prepare_read_tag %p\n", con);
1123 con->in_base_pos = 0;
1124 con->in_tag = CEPH_MSGR_TAG_READY;
1125}
1126
1127/*
1128 * Prepare to read a message.
1129 */
1130static int prepare_read_message(struct ceph_connection *con)
1131{
1132 dout("prepare_read_message %p\n", con);
1133 BUG_ON(con->in_msg != NULL);
1134 con->in_base_pos = 0;
1135 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1136 return 0;
1137}
1138
1139
1140static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001141 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001142{
Alex Eldere6cee712012-05-10 10:29:50 -05001143 while (con->in_base_pos < end) {
1144 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001145 int have = size - left;
1146 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1147 if (ret <= 0)
1148 return ret;
1149 con->in_base_pos += ret;
1150 }
1151 return 1;
1152}
1153
1154
1155/*
1156 * Read all or part of the connect-side handshake on a new connection
1157 */
Sage Weileed0ef22009-11-10 14:34:36 -08001158static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001159{
Alex Elderfd516532012-05-10 10:29:50 -05001160 int size;
1161 int end;
1162 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001163
Sage Weileed0ef22009-11-10 14:34:36 -08001164 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001165
1166 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001167 size = strlen(CEPH_BANNER);
1168 end = size;
1169 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001170 if (ret <= 0)
1171 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001172
1173 size = sizeof (con->actual_peer_addr);
1174 end += size;
1175 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001176 if (ret <= 0)
1177 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001178
1179 size = sizeof (con->peer_addr_for_me);
1180 end += size;
1181 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001182 if (ret <= 0)
1183 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001184
Sage Weileed0ef22009-11-10 14:34:36 -08001185out:
1186 return ret;
1187}
1188
1189static int read_partial_connect(struct ceph_connection *con)
1190{
Alex Elderfd516532012-05-10 10:29:50 -05001191 int size;
1192 int end;
1193 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001194
1195 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1196
Alex Elderfd516532012-05-10 10:29:50 -05001197 size = sizeof (con->in_reply);
1198 end = size;
1199 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001200 if (ret <= 0)
1201 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001202
1203 size = le32_to_cpu(con->in_reply.authorizer_len);
1204 end += size;
1205 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001206 if (ret <= 0)
1207 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001208
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001209 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1210 con, (int)con->in_reply.tag,
1211 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001212 le32_to_cpu(con->in_reply.global_seq));
1213out:
1214 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001215
Sage Weil31b80062009-10-06 11:31:13 -07001216}
1217
1218/*
1219 * Verify the hello banner looks okay.
1220 */
1221static int verify_hello(struct ceph_connection *con)
1222{
1223 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001224 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001225 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001226 con->error_msg = "protocol error, bad banner";
1227 return -1;
1228 }
1229 return 0;
1230}
1231
1232static bool addr_is_blank(struct sockaddr_storage *ss)
1233{
1234 switch (ss->ss_family) {
1235 case AF_INET:
1236 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1237 case AF_INET6:
1238 return
1239 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1240 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1241 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1242 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1243 }
1244 return false;
1245}
1246
1247static int addr_port(struct sockaddr_storage *ss)
1248{
1249 switch (ss->ss_family) {
1250 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001251 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001252 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001253 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001254 }
1255 return 0;
1256}
1257
1258static void addr_set_port(struct sockaddr_storage *ss, int p)
1259{
1260 switch (ss->ss_family) {
1261 case AF_INET:
1262 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001263 break;
Sage Weil31b80062009-10-06 11:31:13 -07001264 case AF_INET6:
1265 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001266 break;
Sage Weil31b80062009-10-06 11:31:13 -07001267 }
1268}
1269
1270/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001271 * Unlike other *_pton function semantics, zero indicates success.
1272 */
1273static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1274 char delim, const char **ipend)
1275{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001276 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1277 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001278
1279 memset(ss, 0, sizeof(*ss));
1280
1281 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1282 ss->ss_family = AF_INET;
1283 return 0;
1284 }
1285
1286 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1287 ss->ss_family = AF_INET6;
1288 return 0;
1289 }
1290
1291 return -EINVAL;
1292}
1293
1294/*
1295 * Extract hostname string and resolve using kernel DNS facility.
1296 */
1297#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1298static int ceph_dns_resolve_name(const char *name, size_t namelen,
1299 struct sockaddr_storage *ss, char delim, const char **ipend)
1300{
1301 const char *end, *delim_p;
1302 char *colon_p, *ip_addr = NULL;
1303 int ip_len, ret;
1304
1305 /*
1306 * The end of the hostname occurs immediately preceding the delimiter or
1307 * the port marker (':') where the delimiter takes precedence.
1308 */
1309 delim_p = memchr(name, delim, namelen);
1310 colon_p = memchr(name, ':', namelen);
1311
1312 if (delim_p && colon_p)
1313 end = delim_p < colon_p ? delim_p : colon_p;
1314 else if (!delim_p && colon_p)
1315 end = colon_p;
1316 else {
1317 end = delim_p;
1318 if (!end) /* case: hostname:/ */
1319 end = name + namelen;
1320 }
1321
1322 if (end <= name)
1323 return -EINVAL;
1324
1325 /* do dns_resolve upcall */
1326 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1327 if (ip_len > 0)
1328 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1329 else
1330 ret = -ESRCH;
1331
1332 kfree(ip_addr);
1333
1334 *ipend = end;
1335
1336 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1337 ret, ret ? "failed" : ceph_pr_addr(ss));
1338
1339 return ret;
1340}
1341#else
1342static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1343 struct sockaddr_storage *ss, char delim, const char **ipend)
1344{
1345 return -EINVAL;
1346}
1347#endif
1348
1349/*
1350 * Parse a server name (IP or hostname). If a valid IP address is not found
1351 * then try to extract a hostname to resolve using userspace DNS upcall.
1352 */
1353static int ceph_parse_server_name(const char *name, size_t namelen,
1354 struct sockaddr_storage *ss, char delim, const char **ipend)
1355{
1356 int ret;
1357
1358 ret = ceph_pton(name, namelen, ss, delim, ipend);
1359 if (ret)
1360 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1361
1362 return ret;
1363}
1364
1365/*
Sage Weil31b80062009-10-06 11:31:13 -07001366 * Parse an ip[:port] list into an addr array. Use the default
1367 * monitor port if a port isn't specified.
1368 */
1369int ceph_parse_ips(const char *c, const char *end,
1370 struct ceph_entity_addr *addr,
1371 int max_count, int *count)
1372{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001373 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001374 const char *p = c;
1375
1376 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1377 for (i = 0; i < max_count; i++) {
1378 const char *ipend;
1379 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001380 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001381 char delim = ',';
1382
1383 if (*p == '[') {
1384 delim = ']';
1385 p++;
1386 }
Sage Weil31b80062009-10-06 11:31:13 -07001387
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001388 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1389 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001390 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001391 ret = -EINVAL;
1392
Sage Weil31b80062009-10-06 11:31:13 -07001393 p = ipend;
1394
Sage Weil39139f62010-07-08 09:54:52 -07001395 if (delim == ']') {
1396 if (*p != ']') {
1397 dout("missing matching ']'\n");
1398 goto bad;
1399 }
1400 p++;
1401 }
1402
Sage Weil31b80062009-10-06 11:31:13 -07001403 /* port? */
1404 if (p < end && *p == ':') {
1405 port = 0;
1406 p++;
1407 while (p < end && *p >= '0' && *p <= '9') {
1408 port = (port * 10) + (*p - '0');
1409 p++;
1410 }
1411 if (port > 65535 || port == 0)
1412 goto bad;
1413 } else {
1414 port = CEPH_MON_PORT;
1415 }
1416
1417 addr_set_port(ss, port);
1418
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001419 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001420
1421 if (p == end)
1422 break;
1423 if (*p != ',')
1424 goto bad;
1425 p++;
1426 }
1427
1428 if (p != end)
1429 goto bad;
1430
1431 if (count)
1432 *count = i + 1;
1433 return 0;
1434
1435bad:
Sage Weil39139f62010-07-08 09:54:52 -07001436 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001437 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001438}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001439EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001440
Sage Weileed0ef22009-11-10 14:34:36 -08001441static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001442{
Sage Weileed0ef22009-11-10 14:34:36 -08001443 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001444
1445 if (verify_hello(con) < 0)
1446 return -1;
1447
Sage Weil63f2d212009-11-03 15:17:56 -08001448 ceph_decode_addr(&con->actual_peer_addr);
1449 ceph_decode_addr(&con->peer_addr_for_me);
1450
Sage Weil31b80062009-10-06 11:31:13 -07001451 /*
1452 * Make sure the other end is who we wanted. note that the other
1453 * end may not yet know their ip address, so if it's 0.0.0.0, give
1454 * them the benefit of the doubt.
1455 */
Sage Weil103e2d32010-01-07 16:12:36 -08001456 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1457 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001458 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1459 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001460 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001461 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001462 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001463 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001464 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001465 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001466 return -1;
1467 }
1468
1469 /*
1470 * did we learn our address?
1471 */
1472 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1473 int port = addr_port(&con->msgr->inst.addr.in_addr);
1474
1475 memcpy(&con->msgr->inst.addr.in_addr,
1476 &con->peer_addr_for_me.in_addr,
1477 sizeof(con->peer_addr_for_me.in_addr));
1478 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001479 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001480 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001481 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001482 }
1483
Sage Weileed0ef22009-11-10 14:34:36 -08001484 return 0;
1485}
1486
Sage Weil04a419f2009-12-23 09:30:21 -08001487static void fail_protocol(struct ceph_connection *con)
1488{
1489 reset_connection(con);
1490 set_bit(CLOSED, &con->state); /* in case there's queued work */
Sage Weil04a419f2009-12-23 09:30:21 -08001491}
1492
Sage Weileed0ef22009-11-10 14:34:36 -08001493static int process_connect(struct ceph_connection *con)
1494{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001495 u64 sup_feat = con->msgr->supported_features;
1496 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001497 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001498 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001499
Sage Weileed0ef22009-11-10 14:34:36 -08001500 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1501
Sage Weil31b80062009-10-06 11:31:13 -07001502 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001503 case CEPH_MSGR_TAG_FEATURES:
1504 pr_err("%s%lld %s feature set mismatch,"
1505 " my %llx < server's %llx, missing %llx\n",
1506 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001507 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001508 sup_feat, server_feat, server_feat & ~sup_feat);
1509 con->error_msg = "missing required protocol features";
1510 fail_protocol(con);
1511 return -1;
1512
Sage Weil31b80062009-10-06 11:31:13 -07001513 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001514 pr_err("%s%lld %s protocol version mismatch,"
1515 " my %d != server's %d\n",
1516 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001517 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001518 le32_to_cpu(con->out_connect.protocol_version),
1519 le32_to_cpu(con->in_reply.protocol_version));
1520 con->error_msg = "protocol version mismatch";
Sage Weil04a419f2009-12-23 09:30:21 -08001521 fail_protocol(con);
Sage Weil31b80062009-10-06 11:31:13 -07001522 return -1;
1523
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001524 case CEPH_MSGR_TAG_BADAUTHORIZER:
1525 con->auth_retry++;
1526 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1527 con->auth_retry);
1528 if (con->auth_retry == 2) {
1529 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001530 return -1;
1531 }
1532 con->auth_retry = 1;
Alex Eldere825a662012-05-16 15:16:38 -05001533 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001534 if (ret < 0)
1535 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001536 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001537 break;
Sage Weil31b80062009-10-06 11:31:13 -07001538
1539 case CEPH_MSGR_TAG_RESETSESSION:
1540 /*
1541 * If we connected with a large connect_seq but the peer
1542 * has no record of a session with us (no connection, or
1543 * connect_seq == 0), they will send RESETSESION to indicate
1544 * that they must have reset their session, and may have
1545 * dropped messages.
1546 */
1547 dout("process_connect got RESET peer seq %u\n",
Sage Weila16cb1f2012-07-10 11:53:34 -07001548 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001549 pr_err("%s%lld %s connection reset\n",
1550 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001551 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001552 reset_connection(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001553 ret = prepare_write_connect(con);
1554 if (ret < 0)
1555 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001556 prepare_read_connect(con);
1557
1558 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001559 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001560 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1561 if (con->ops->peer_reset)
1562 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001563 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07001564 if (test_bit(CLOSED, &con->state) ||
1565 test_bit(OPENING, &con->state))
1566 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001567 break;
1568
1569 case CEPH_MSGR_TAG_RETRY_SESSION:
1570 /*
1571 * If we sent a smaller connect_seq than the peer has, try
1572 * again with a larger value.
1573 */
Sage Weila16cb1f2012-07-10 11:53:34 -07001574 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001575 le32_to_cpu(con->out_connect.connect_seq),
Sage Weila16cb1f2012-07-10 11:53:34 -07001576 le32_to_cpu(con->in_reply.connect_seq));
1577 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001578 ret = prepare_write_connect(con);
1579 if (ret < 0)
1580 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001581 prepare_read_connect(con);
1582 break;
1583
1584 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1585 /*
1586 * If we sent a smaller global_seq than the peer has, try
1587 * again with a larger value.
1588 */
Sage Weileed0ef22009-11-10 14:34:36 -08001589 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001590 con->peer_global_seq,
Sage Weila16cb1f2012-07-10 11:53:34 -07001591 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07001592 get_global_seq(con->msgr,
Sage Weila16cb1f2012-07-10 11:53:34 -07001593 le32_to_cpu(con->in_reply.global_seq));
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001594 ret = prepare_write_connect(con);
1595 if (ret < 0)
1596 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001597 prepare_read_connect(con);
1598 break;
1599
1600 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001601 if (req_feat & ~server_feat) {
1602 pr_err("%s%lld %s protocol feature mismatch,"
1603 " my required %llx > server's %llx, need %llx\n",
1604 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001605 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001606 req_feat, server_feat, req_feat & ~server_feat);
1607 con->error_msg = "missing required protocol features";
1608 fail_protocol(con);
1609 return -1;
1610 }
Alex Elder3ec50d12012-05-23 14:35:23 -05001611 clear_bit(NEGOTIATING, &con->state);
Alex Eldere27947c2012-05-23 14:35:23 -05001612 set_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001613 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1614 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001615 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001616 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1617 con->peer_global_seq,
1618 le32_to_cpu(con->in_reply.connect_seq),
1619 con->connect_seq);
1620 WARN_ON(con->connect_seq !=
1621 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001622
1623 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elder928443c2012-05-22 11:41:43 -05001624 set_bit(LOSSYTX, &con->flags);
Sage Weil92ac41d2009-12-14 14:56:56 -08001625
Sage Weil85effe12012-07-30 16:22:05 -07001626 con->delay = 0; /* reset backoff memory */
1627
Sage Weil31b80062009-10-06 11:31:13 -07001628 prepare_read_tag(con);
1629 break;
1630
1631 case CEPH_MSGR_TAG_WAIT:
1632 /*
1633 * If there is a connection race (we are opening
1634 * connections to each other), one of us may just have
1635 * to WAIT. This shouldn't happen if we are the
1636 * client.
1637 */
Sage Weil04177882011-05-12 15:33:17 -07001638 pr_err("process_connect got WAIT as client\n");
1639 con->error_msg = "protocol error, got WAIT as client";
1640 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07001641
1642 default:
1643 pr_err("connect protocol error, will retry\n");
1644 con->error_msg = "protocol error, garbage tag during connect";
1645 return -1;
1646 }
1647 return 0;
1648}
1649
1650
1651/*
1652 * read (part of) an ack
1653 */
1654static int read_partial_ack(struct ceph_connection *con)
1655{
Alex Elderfd516532012-05-10 10:29:50 -05001656 int size = sizeof (con->in_temp_ack);
1657 int end = size;
1658
1659 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001660}
1661
1662
1663/*
1664 * We can finally discard anything that's been acked.
1665 */
1666static void process_ack(struct ceph_connection *con)
1667{
1668 struct ceph_msg *m;
1669 u64 ack = le64_to_cpu(con->in_temp_ack);
1670 u64 seq;
1671
Sage Weil31b80062009-10-06 11:31:13 -07001672 while (!list_empty(&con->out_sent)) {
1673 m = list_first_entry(&con->out_sent, struct ceph_msg,
1674 list_head);
1675 seq = le64_to_cpu(m->hdr.seq);
1676 if (seq > ack)
1677 break;
1678 dout("got ack for seq %llu type %d at %p\n", seq,
1679 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07001680 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07001681 ceph_msg_remove(m);
1682 }
Sage Weil31b80062009-10-06 11:31:13 -07001683 prepare_read_tag(con);
1684}
1685
1686
1687
1688
Yehuda Sadeh24504182010-01-08 13:58:34 -08001689static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001690 struct kvec *section,
1691 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001692{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001693 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001694
Yehuda Sadeh24504182010-01-08 13:58:34 -08001695 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001696
Yehuda Sadeh24504182010-01-08 13:58:34 -08001697 while (section->iov_len < sec_len) {
1698 BUG_ON(section->iov_base == NULL);
1699 left = sec_len - section->iov_len;
1700 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1701 section->iov_len, left);
1702 if (ret <= 0)
1703 return ret;
1704 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001705 }
Alex Elderfe3ad592012-02-15 07:43:54 -06001706 if (section->iov_len == sec_len)
1707 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001708
1709 return 1;
1710}
1711
Alex Elder1c20f2d2012-06-04 14:43:32 -05001712static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
1713 struct ceph_msg_header *hdr);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001714
1715
1716static int read_partial_message_pages(struct ceph_connection *con,
1717 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00001718 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001719{
1720 void *p;
1721 int ret;
1722 int left;
1723
1724 left = min((int)(data_len - con->in_msg_pos.data_pos),
1725 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1726 /* (page) data */
1727 BUG_ON(pages == NULL);
1728 p = kmap(pages[con->in_msg_pos.page]);
1729 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1730 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001731 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001732 con->in_data_crc =
1733 crc32c(con->in_data_crc,
1734 p + con->in_msg_pos.page_pos, ret);
1735 kunmap(pages[con->in_msg_pos.page]);
1736 if (ret <= 0)
1737 return ret;
1738 con->in_msg_pos.data_pos += ret;
1739 con->in_msg_pos.page_pos += ret;
1740 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1741 con->in_msg_pos.page_pos = 0;
1742 con->in_msg_pos.page++;
1743 }
1744
1745 return ret;
1746}
1747
1748#ifdef CONFIG_BLOCK
1749static int read_partial_message_bio(struct ceph_connection *con,
1750 struct bio **bio_iter, int *bio_seg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001751 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001752{
1753 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1754 void *p;
1755 int ret, left;
1756
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001757 left = min((int)(data_len - con->in_msg_pos.data_pos),
1758 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1759
1760 p = kmap(bv->bv_page) + bv->bv_offset;
1761
1762 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1763 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001764 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001765 con->in_data_crc =
1766 crc32c(con->in_data_crc,
1767 p + con->in_msg_pos.page_pos, ret);
1768 kunmap(bv->bv_page);
1769 if (ret <= 0)
1770 return ret;
1771 con->in_msg_pos.data_pos += ret;
1772 con->in_msg_pos.page_pos += ret;
1773 if (con->in_msg_pos.page_pos == bv->bv_len) {
1774 con->in_msg_pos.page_pos = 0;
1775 iter_bio_next(bio_iter, bio_seg);
1776 }
1777
1778 return ret;
1779}
1780#endif
1781
Sage Weil31b80062009-10-06 11:31:13 -07001782/*
1783 * read (part of) a message.
1784 */
1785static int read_partial_message(struct ceph_connection *con)
1786{
1787 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05001788 int size;
1789 int end;
Sage Weil31b80062009-10-06 11:31:13 -07001790 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00001791 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06001792 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07001793 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06001794 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001795
1796 dout("read_partial_message con %p msg %p\n", con, m);
1797
1798 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05001799 size = sizeof (con->in_hdr);
1800 end = size;
1801 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05001802 if (ret <= 0)
1803 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06001804
1805 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1806 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1807 pr_err("read_partial_message bad hdr "
1808 " crc %u != expected %u\n",
1809 crc, con->in_hdr.crc);
1810 return -EBADMSG;
1811 }
1812
Sage Weil31b80062009-10-06 11:31:13 -07001813 front_len = le32_to_cpu(con->in_hdr.front_len);
1814 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1815 return -EIO;
1816 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1817 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1818 return -EIO;
1819 data_len = le32_to_cpu(con->in_hdr.data_len);
1820 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1821 return -EIO;
1822
Sage Weilae187562010-04-22 07:47:01 -07001823 /* verify seq# */
1824 seq = le64_to_cpu(con->in_hdr.seq);
1825 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001826 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001827 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001828 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001829 seq, con->in_seq + 1);
1830 con->in_base_pos = -front_len - middle_len - data_len -
1831 sizeof(m->footer);
1832 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001833 return 0;
1834 } else if ((s64)seq - (s64)con->in_seq > 1) {
1835 pr_err("read_partial_message bad seq %lld expected %lld\n",
1836 seq, con->in_seq + 1);
1837 con->error_msg = "bad message sequence # for incoming message";
1838 return -EBADMSG;
1839 }
1840
Sage Weil31b80062009-10-06 11:31:13 -07001841 /* allocate message? */
1842 if (!con->in_msg) {
1843 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1844 con->in_hdr.front_len, con->in_hdr.data_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001845 if (ceph_con_in_msg_alloc(con, &con->in_hdr)) {
Sage Weil31b80062009-10-06 11:31:13 -07001846 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001847 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001848 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001849 con->in_base_pos = -front_len - middle_len - data_len -
1850 sizeof(m->footer);
1851 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001852 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001853 return 0;
1854 }
Sage Weila79832f2010-04-01 16:06:19 -07001855 if (!con->in_msg) {
Sage Weil5b3a4db2010-02-19 21:43:23 -08001856 con->error_msg =
1857 "error allocating memory for incoming message";
Sage Weila79832f2010-04-01 16:06:19 -07001858 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -07001859 }
Alex Elder38941f82012-06-01 14:56:43 -05001860
1861 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07001862 m = con->in_msg;
1863 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001864 if (m->middle)
1865 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001866
1867 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001868 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001869 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001870 else
1871 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001872 con->in_msg_pos.data_pos = 0;
Sage Weila4107022012-07-30 16:20:25 -07001873
1874#ifdef CONFIG_BLOCK
1875 if (m->bio)
1876 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1877#endif
Sage Weil31b80062009-10-06 11:31:13 -07001878 }
1879
1880 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001881 ret = read_partial_message_section(con, &m->front, front_len,
1882 &con->in_front_crc);
1883 if (ret <= 0)
1884 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001885
1886 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001887 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001888 ret = read_partial_message_section(con, &m->middle->vec,
1889 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001890 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001891 if (ret <= 0)
1892 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001893 }
1894
1895 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001896 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001897 if (m->pages) {
1898 ret = read_partial_message_pages(con, m->pages,
Alex Elderbca064d2012-02-15 07:43:54 -06001899 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001900 if (ret <= 0)
1901 return ret;
1902#ifdef CONFIG_BLOCK
1903 } else if (m->bio) {
Sage Weila4107022012-07-30 16:20:25 -07001904 BUG_ON(!m->bio_iter);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001905 ret = read_partial_message_bio(con,
1906 &m->bio_iter, &m->bio_seg,
Alex Elderbca064d2012-02-15 07:43:54 -06001907 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001908 if (ret <= 0)
1909 return ret;
1910#endif
1911 } else {
1912 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07001913 }
1914 }
1915
Sage Weil31b80062009-10-06 11:31:13 -07001916 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05001917 size = sizeof (m->footer);
1918 end += size;
1919 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05001920 if (ret <= 0)
1921 return ret;
1922
Sage Weil31b80062009-10-06 11:31:13 -07001923 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1924 m, front_len, m->footer.front_crc, middle_len,
1925 m->footer.middle_crc, data_len, m->footer.data_crc);
1926
1927 /* crc ok? */
1928 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1929 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1930 m, con->in_front_crc, m->footer.front_crc);
1931 return -EBADMSG;
1932 }
1933 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1934 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1935 m, con->in_middle_crc, m->footer.middle_crc);
1936 return -EBADMSG;
1937 }
Alex Elderbca064d2012-02-15 07:43:54 -06001938 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07001939 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1940 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1941 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1942 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1943 return -EBADMSG;
1944 }
1945
1946 return 1; /* done! */
1947}
1948
1949/*
1950 * Process message. This happens in the worker thread. The callback should
1951 * be careful not to do anything that waits on other incoming messages or it
1952 * may deadlock.
1953 */
1954static void process_message(struct ceph_connection *con)
1955{
Sage Weil5e095e82009-12-14 14:30:34 -08001956 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07001957
Alex Elder38941f82012-06-01 14:56:43 -05001958 BUG_ON(con->in_msg->con != con);
1959 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08001960 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001961 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07001962 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07001963
1964 /* if first message, set peer_name */
1965 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07001966 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07001967
Sage Weil31b80062009-10-06 11:31:13 -07001968 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08001969 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001970
1971 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1972 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07001973 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07001974 le16_to_cpu(msg->hdr.type),
1975 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1976 le32_to_cpu(msg->hdr.front_len),
1977 le32_to_cpu(msg->hdr.data_len),
1978 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1979 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08001980
1981 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001982 prepare_read_tag(con);
1983}
1984
1985
1986/*
1987 * Write something to the socket. Called in a worker thread when the
1988 * socket appears to be writeable and we have something ready to send.
1989 */
1990static int try_write(struct ceph_connection *con)
1991{
Sage Weil31b80062009-10-06 11:31:13 -07001992 int ret = 1;
1993
Sage Weild59315c2012-06-21 12:49:23 -07001994 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001995
Sage Weil31b80062009-10-06 11:31:13 -07001996more:
1997 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
1998
1999 /* open the socket first? */
2000 if (con->sock == NULL) {
Alex Eldera5988c42012-05-29 11:04:58 -05002001 set_bit(CONNECTING, &con->state);
2002
Alex Eldere2200422012-05-23 14:35:23 -05002003 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002004 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002005 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002006
Sage Weilcf3e5c42009-12-11 09:48:05 -08002007 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002008 con->in_tag = CEPH_MSGR_TAG_READY;
2009 dout("try_write initiating connect on %p new state %lu\n",
2010 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002011 ret = ceph_tcp_connect(con);
2012 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002013 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002014 goto out;
2015 }
2016 }
2017
2018more_kvec:
2019 /* kvec data queued? */
2020 if (con->out_skip) {
2021 ret = write_partial_skip(con);
2022 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002023 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002024 }
2025 if (con->out_kvec_left) {
2026 ret = write_partial_kvec(con);
2027 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002028 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002029 }
2030
2031 /* msg pages? */
2032 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002033 if (con->out_msg_done) {
2034 ceph_msg_put(con->out_msg);
2035 con->out_msg = NULL; /* we're done with this one */
2036 goto do_next;
2037 }
2038
Sage Weil31b80062009-10-06 11:31:13 -07002039 ret = write_partial_msg_pages(con);
2040 if (ret == 1)
2041 goto more_kvec; /* we need to send the footer, too! */
2042 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002043 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002044 if (ret < 0) {
2045 dout("try_write write_partial_msg_pages err %d\n",
2046 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002047 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002048 }
2049 }
2050
Sage Weilc86a2932009-12-14 14:04:30 -08002051do_next:
Alex Elder7593af92012-05-24 11:55:03 -05002052 if (!test_bit(CONNECTING, &con->state) &&
2053 !test_bit(NEGOTIATING, &con->state)) {
Sage Weil31b80062009-10-06 11:31:13 -07002054 /* is anything else pending? */
2055 if (!list_empty(&con->out_queue)) {
2056 prepare_write_message(con);
2057 goto more;
2058 }
2059 if (con->in_seq > con->in_seq_acked) {
2060 prepare_write_ack(con);
2061 goto more;
2062 }
Alex Elder928443c2012-05-22 11:41:43 -05002063 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002064 prepare_write_keepalive(con);
2065 goto more;
2066 }
2067 }
2068
2069 /* Nothing to do! */
Alex Elder928443c2012-05-22 11:41:43 -05002070 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002071 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002072 ret = 0;
2073out:
Sage Weil42961d22011-01-25 08:19:34 -08002074 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002075 return ret;
2076}
2077
2078
2079
2080/*
2081 * Read what we can from the socket.
2082 */
2083static int try_read(struct ceph_connection *con)
2084{
Sage Weil31b80062009-10-06 11:31:13 -07002085 int ret = -1;
2086
2087 if (!con->sock)
2088 return 0;
2089
2090 if (test_bit(STANDBY, &con->state))
2091 return 0;
2092
2093 dout("try_read start on %p\n", con);
Sage Weilec302642009-12-22 10:43:42 -08002094
Sage Weil31b80062009-10-06 11:31:13 -07002095more:
2096 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2097 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002098
2099 /*
2100 * process_connect and process_message drop and re-take
2101 * con->mutex. make sure we handle a racing close or reopen.
2102 */
2103 if (test_bit(CLOSED, &con->state) ||
2104 test_bit(OPENING, &con->state)) {
2105 ret = -EAGAIN;
2106 goto out;
2107 }
2108
Sage Weil31b80062009-10-06 11:31:13 -07002109 if (test_bit(CONNECTING, &con->state)) {
Alex Elder7593af92012-05-24 11:55:03 -05002110 dout("try_read connecting\n");
2111 ret = read_partial_banner(con);
2112 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002113 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002114 ret = process_banner(con);
2115 if (ret < 0)
2116 goto out;
2117
2118 clear_bit(CONNECTING, &con->state);
2119 set_bit(NEGOTIATING, &con->state);
2120
2121 /* Banner is good, exchange connection info */
2122 ret = prepare_write_connect(con);
2123 if (ret < 0)
2124 goto out;
2125 prepare_read_connect(con);
2126
2127 /* Send connection info before awaiting response */
2128 goto out;
2129 }
2130
2131 if (test_bit(NEGOTIATING, &con->state)) {
2132 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002133 ret = read_partial_connect(con);
2134 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002135 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002136 ret = process_connect(con);
2137 if (ret < 0)
2138 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002139 goto more;
2140 }
2141
2142 if (con->in_base_pos < 0) {
2143 /*
2144 * skipping + discarding content.
2145 *
2146 * FIXME: there must be a better way to do this!
2147 */
Alex Elder84495f42012-02-15 07:43:55 -06002148 static char buf[SKIP_BUF_SIZE];
2149 int skip = min((int) sizeof (buf), -con->in_base_pos);
2150
Sage Weil31b80062009-10-06 11:31:13 -07002151 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2152 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2153 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002154 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002155 con->in_base_pos += ret;
2156 if (con->in_base_pos)
2157 goto more;
2158 }
2159 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2160 /*
2161 * what's next?
2162 */
2163 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2164 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002165 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002166 dout("try_read got tag %d\n", (int)con->in_tag);
2167 switch (con->in_tag) {
2168 case CEPH_MSGR_TAG_MSG:
2169 prepare_read_message(con);
2170 break;
2171 case CEPH_MSGR_TAG_ACK:
2172 prepare_read_ack(con);
2173 break;
2174 case CEPH_MSGR_TAG_CLOSE:
Alex Eldere27947c2012-05-23 14:35:23 -05002175 clear_bit(CONNECTED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002176 set_bit(CLOSED, &con->state); /* fixme */
Sage Weil98bdb0a2011-01-25 08:17:48 -08002177 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002178 default:
2179 goto bad_tag;
2180 }
2181 }
2182 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2183 ret = read_partial_message(con);
2184 if (ret <= 0) {
2185 switch (ret) {
2186 case -EBADMSG:
2187 con->error_msg = "bad crc";
2188 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002189 break;
Sage Weil31b80062009-10-06 11:31:13 -07002190 case -EIO:
2191 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002192 break;
Sage Weil31b80062009-10-06 11:31:13 -07002193 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002194 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002195 }
2196 if (con->in_tag == CEPH_MSGR_TAG_READY)
2197 goto more;
2198 process_message(con);
2199 goto more;
2200 }
2201 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2202 ret = read_partial_ack(con);
2203 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002204 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002205 process_ack(con);
2206 goto more;
2207 }
2208
Sage Weil31b80062009-10-06 11:31:13 -07002209out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002210 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002211 return ret;
2212
2213bad_tag:
2214 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2215 con->error_msg = "protocol error, garbage tag";
2216 ret = -1;
2217 goto out;
2218}
2219
2220
2221/*
2222 * Atomically queue work on a connection. Bump @con reference to
2223 * avoid races with connection teardown.
Sage Weil31b80062009-10-06 11:31:13 -07002224 */
2225static void queue_con(struct ceph_connection *con)
2226{
Sage Weil31b80062009-10-06 11:31:13 -07002227 if (!con->ops->get(con)) {
2228 dout("queue_con %p ref count 0\n", con);
2229 return;
2230 }
2231
Tejun Heof363e452011-01-03 14:49:46 +01002232 if (!queue_delayed_work(ceph_msgr_wq, &con->work, 0)) {
Sage Weil31b80062009-10-06 11:31:13 -07002233 dout("queue_con %p - already queued\n", con);
2234 con->ops->put(con);
2235 } else {
2236 dout("queue_con %p\n", con);
2237 }
2238}
2239
2240/*
2241 * Do some work on a connection. Drop a connection ref when we're done.
2242 */
2243static void con_work(struct work_struct *work)
2244{
2245 struct ceph_connection *con = container_of(work, struct ceph_connection,
2246 work.work);
Sage Weil0da5d702011-05-19 11:21:05 -07002247 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002248
Sage Weil9dd46582010-04-28 13:51:50 -07002249 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002250restart:
Alex Elder188048b2012-06-20 21:53:53 -05002251 if (test_and_clear_bit(SOCK_CLOSED, &con->flags)) {
Alex Eldere27947c2012-05-23 14:35:23 -05002252 if (test_and_clear_bit(CONNECTED, &con->state))
2253 con->error_msg = "socket closed";
Alex Elder7593af92012-05-24 11:55:03 -05002254 else if (test_and_clear_bit(NEGOTIATING, &con->state))
2255 con->error_msg = "negotiation failed";
2256 else if (test_and_clear_bit(CONNECTING, &con->state))
Alex Elder188048b2012-06-20 21:53:53 -05002257 con->error_msg = "connection failed";
Alex Elder7593af92012-05-24 11:55:03 -05002258 else
Alex Eldere27947c2012-05-23 14:35:23 -05002259 con->error_msg = "unrecognized con state";
Alex Elder188048b2012-06-20 21:53:53 -05002260 goto fault;
2261 }
2262
Alex Elder928443c2012-05-22 11:41:43 -05002263 if (test_and_clear_bit(BACKOFF, &con->flags)) {
Sage Weil60bf8bf2011-03-04 12:24:28 -08002264 dout("con_work %p backing off\n", con);
2265 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2266 round_jiffies_relative(con->delay))) {
2267 dout("con_work %p backoff %lu\n", con, con->delay);
2268 mutex_unlock(&con->mutex);
2269 return;
2270 } else {
2271 con->ops->put(con);
2272 dout("con_work %p FAILED to back off %lu\n", con,
2273 con->delay);
2274 }
2275 }
Sage Weil9dd46582010-04-28 13:51:50 -07002276
Sage Weile00de342011-03-04 12:25:05 -08002277 if (test_bit(STANDBY, &con->state)) {
2278 dout("con_work %p STANDBY\n", con);
2279 goto done;
2280 }
Sage Weil2e8cb102012-07-20 15:40:04 -07002281 if (test_bit(CLOSED, &con->state)) {
2282 dout("con_work %p CLOSED\n", con);
2283 BUG_ON(con->sock);
Sage Weil31b80062009-10-06 11:31:13 -07002284 goto done;
2285 }
2286 if (test_and_clear_bit(OPENING, &con->state)) {
2287 /* reopen w/ new peer */
2288 dout("con_work OPENING\n");
Sage Weil2e8cb102012-07-20 15:40:04 -07002289 BUG_ON(con->sock);
Sage Weil31b80062009-10-06 11:31:13 -07002290 }
2291
Sage Weil0da5d702011-05-19 11:21:05 -07002292 ret = try_read(con);
2293 if (ret == -EAGAIN)
2294 goto restart;
Sage Weil3a140a02012-07-30 16:24:21 -07002295 if (ret < 0) {
2296 con->error_msg = "socket error on read";
Sage Weil0da5d702011-05-19 11:21:05 -07002297 goto fault;
Sage Weil3a140a02012-07-30 16:24:21 -07002298 }
Sage Weil0da5d702011-05-19 11:21:05 -07002299
2300 ret = try_write(con);
2301 if (ret == -EAGAIN)
2302 goto restart;
Sage Weil3a140a02012-07-30 16:24:21 -07002303 if (ret < 0) {
2304 con->error_msg = "socket error on write";
Sage Weil0da5d702011-05-19 11:21:05 -07002305 goto fault;
Sage Weil3a140a02012-07-30 16:24:21 -07002306 }
Sage Weil31b80062009-10-06 11:31:13 -07002307
2308done:
Sage Weil9dd46582010-04-28 13:51:50 -07002309 mutex_unlock(&con->mutex);
Sage Weil9dd46582010-04-28 13:51:50 -07002310done_unlocked:
Sage Weil31b80062009-10-06 11:31:13 -07002311 con->ops->put(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002312 return;
2313
2314fault:
2315 mutex_unlock(&con->mutex);
2316 ceph_fault(con); /* error/fault path */
2317 goto done_unlocked;
Sage Weil31b80062009-10-06 11:31:13 -07002318}
2319
2320
2321/*
2322 * Generic error/fault handler. A retry mechanism is used with
2323 * exponential backoff
2324 */
2325static void ceph_fault(struct ceph_connection *con)
2326{
Sage Weil3b5ede02012-07-20 15:22:53 -07002327 mutex_lock(&con->mutex);
2328
Sage Weil31b80062009-10-06 11:31:13 -07002329 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002330 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002331 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002332 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002333
Sage Weil91e45ce32010-02-15 12:05:09 -08002334 if (test_bit(CLOSED, &con->state))
2335 goto out_unlock;
Sage Weilec302642009-12-22 10:43:42 -08002336
Sage Weil31b80062009-10-06 11:31:13 -07002337 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002338
Sage Weil3b5ede02012-07-20 15:22:53 -07002339 if (test_bit(LOSSYTX, &con->flags)) {
2340 dout("fault on LOSSYTX channel\n");
2341 goto out_unlock;
2342 }
2343
Sage Weil5e095e82009-12-14 14:30:34 -08002344 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002345 BUG_ON(con->in_msg->con != con);
2346 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002347 ceph_msg_put(con->in_msg);
2348 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002349 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002350 }
Sage Weil31b80062009-10-06 11:31:13 -07002351
Sage Weile80a52d2010-02-25 12:40:45 -08002352 /* Requeue anything that hasn't been acked */
2353 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002354
Sage Weile76661d2011-03-03 10:10:15 -08002355 /* If there are no messages queued or keepalive pending, place
2356 * the connection in a STANDBY state */
2357 if (list_empty(&con->out_queue) &&
Alex Elder928443c2012-05-22 11:41:43 -05002358 !test_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weile00de342011-03-04 12:25:05 -08002359 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elder928443c2012-05-22 11:41:43 -05002360 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002361 set_bit(STANDBY, &con->state);
Sage Weile80a52d2010-02-25 12:40:45 -08002362 } else {
2363 /* retry after a delay. */
2364 if (con->delay == 0)
2365 con->delay = BASE_DELAY_INTERVAL;
2366 else if (con->delay < MAX_DELAY_INTERVAL)
2367 con->delay *= 2;
Sage Weile80a52d2010-02-25 12:40:45 -08002368 con->ops->get(con);
2369 if (queue_delayed_work(ceph_msgr_wq, &con->work,
Sage Weil60bf8bf2011-03-04 12:24:28 -08002370 round_jiffies_relative(con->delay))) {
2371 dout("fault queued %p delay %lu\n", con, con->delay);
2372 } else {
Sage Weile80a52d2010-02-25 12:40:45 -08002373 con->ops->put(con);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002374 dout("fault failed to queue %p delay %lu, backoff\n",
2375 con, con->delay);
2376 /*
2377 * In many cases we see a socket state change
2378 * while con_work is running and end up
2379 * queuing (non-delayed) work, such that we
2380 * can't backoff with a delay. Set a flag so
2381 * that when con_work restarts we schedule the
2382 * delay then.
2383 */
Alex Elder928443c2012-05-22 11:41:43 -05002384 set_bit(BACKOFF, &con->flags);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002385 }
Sage Weil31b80062009-10-06 11:31:13 -07002386 }
2387
Sage Weil91e45ce32010-02-15 12:05:09 -08002388out_unlock:
2389 mutex_unlock(&con->mutex);
Sage Weil161fd652010-02-25 12:38:57 -08002390 /*
2391 * in case we faulted due to authentication, invalidate our
2392 * current tickets so that we can get new ones.
Sage Weil213c99e2010-08-03 10:25:11 -07002393 */
Sage Weil161fd652010-02-25 12:38:57 -08002394 if (con->auth_retry && con->ops->invalidate_authorizer) {
2395 dout("calling invalidate_authorizer()\n");
2396 con->ops->invalidate_authorizer(con);
2397 }
2398
Sage Weil31b80062009-10-06 11:31:13 -07002399 if (con->ops->fault)
2400 con->ops->fault(con);
2401}
2402
2403
2404
2405/*
Alex Elder15d98822012-05-26 23:26:43 -05002406 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002407 */
Alex Elder15d98822012-05-26 23:26:43 -05002408void ceph_messenger_init(struct ceph_messenger *msgr,
2409 struct ceph_entity_addr *myaddr,
2410 u32 supported_features,
2411 u32 required_features,
2412 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002413{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002414 msgr->supported_features = supported_features;
2415 msgr->required_features = required_features;
2416
Sage Weil31b80062009-10-06 11:31:13 -07002417 spin_lock_init(&msgr->global_seq_lock);
2418
Sage Weil31b80062009-10-06 11:31:13 -07002419 if (myaddr)
2420 msgr->inst.addr = *myaddr;
2421
2422 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002423 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002424 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002425 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002426 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002427
Guanjun Hea2a32582012-07-08 19:50:33 -07002428 atomic_set(&msgr->stopping, 0);
2429
Alex Elder15d98822012-05-26 23:26:43 -05002430 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002431}
Alex Elder15d98822012-05-26 23:26:43 -05002432EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002433
Sage Weile00de342011-03-04 12:25:05 -08002434static void clear_standby(struct ceph_connection *con)
2435{
2436 /* come back from STANDBY? */
2437 if (test_and_clear_bit(STANDBY, &con->state)) {
Sage Weile00de342011-03-04 12:25:05 -08002438 dout("clear_standby %p and ++connect_seq\n", con);
2439 con->connect_seq++;
Alex Elder928443c2012-05-22 11:41:43 -05002440 WARN_ON(test_bit(WRITE_PENDING, &con->flags));
2441 WARN_ON(test_bit(KEEPALIVE_PENDING, &con->flags));
Sage Weile00de342011-03-04 12:25:05 -08002442 }
2443}
2444
Sage Weil31b80062009-10-06 11:31:13 -07002445/*
2446 * Queue up an outgoing message on the given connection.
2447 */
2448void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2449{
Sage Weila59b55a2012-07-20 15:34:04 -07002450 /* set src+dst */
2451 msg->hdr.src = con->msgr->inst.name;
2452 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2453 msg->needs_out_seq = true;
2454
2455 mutex_lock(&con->mutex);
2456
Sage Weil31b80062009-10-06 11:31:13 -07002457 if (test_bit(CLOSED, &con->state)) {
2458 dout("con_send %p closed, dropping %p\n", con, msg);
2459 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002460 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002461 return;
2462 }
2463
Alex Elder38941f82012-06-01 14:56:43 -05002464 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002465 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002466 BUG_ON(msg->con == NULL);
2467
Sage Weil31b80062009-10-06 11:31:13 -07002468 BUG_ON(!list_empty(&msg->list_head));
2469 list_add_tail(&msg->list_head, &con->out_queue);
2470 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2471 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2472 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2473 le32_to_cpu(msg->hdr.front_len),
2474 le32_to_cpu(msg->hdr.middle_len),
2475 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002476
2477 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002478 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002479
2480 /* if there wasn't anything waiting to send before, queue
2481 * new work */
Alex Elder928443c2012-05-22 11:41:43 -05002482 if (test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002483 queue_con(con);
2484}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002485EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002486
2487/*
2488 * Revoke a message that was previously queued for send
2489 */
Alex Elder6740a842012-06-01 14:56:43 -05002490void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002491{
Alex Elder6740a842012-06-01 14:56:43 -05002492 struct ceph_connection *con = msg->con;
2493
2494 if (!con)
2495 return; /* Message not in our possession */
2496
Sage Weilec302642009-12-22 10:43:42 -08002497 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002498 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002499 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002500 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002501 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002502 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002503 msg->con = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05002504 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002505
Sage Weil31b80062009-10-06 11:31:13 -07002506 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002507 }
2508 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002509 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002510 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002511 if (con->out_kvec_is_msg) {
2512 con->out_skip = con->out_kvec_bytes;
2513 con->out_kvec_is_msg = false;
2514 }
Sage Weiled98ada2010-07-05 12:15:14 -07002515 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002516
2517 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002518 }
Sage Weilec302642009-12-22 10:43:42 -08002519 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002520}
2521
2522/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002523 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002524 */
Alex Elder8921d112012-06-01 14:56:43 -05002525void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002526{
Alex Elder8921d112012-06-01 14:56:43 -05002527 struct ceph_connection *con;
2528
2529 BUG_ON(msg == NULL);
2530 if (!msg->con) {
2531 dout("%s msg %p null con\n", __func__, msg);
2532
2533 return; /* Message not in our possession */
2534 }
2535
2536 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002537 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002538 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002539 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2540 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2541 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002542
2543 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002544 dout("%s %p msg %p revoked\n", __func__, con, msg);
2545 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002546 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002547 front_len -
2548 middle_len -
2549 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002550 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002551 ceph_msg_put(con->in_msg);
2552 con->in_msg = NULL;
2553 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002554 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002555 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002556 dout("%s %p in_msg %p msg %p no-op\n",
2557 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002558 }
2559 mutex_unlock(&con->mutex);
2560}
2561
2562/*
Sage Weil31b80062009-10-06 11:31:13 -07002563 * Queue a keepalive byte to ensure the tcp connection is alive.
2564 */
2565void ceph_con_keepalive(struct ceph_connection *con)
2566{
Sage Weile00de342011-03-04 12:25:05 -08002567 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07002568 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08002569 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07002570 mutex_unlock(&con->mutex);
Alex Elder928443c2012-05-22 11:41:43 -05002571 if (test_and_set_bit(KEEPALIVE_PENDING, &con->flags) == 0 &&
2572 test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002573 queue_con(con);
2574}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002575EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002576
2577
2578/*
2579 * construct a new message with given type, size
2580 * the new msg has a ref count of 1.
2581 */
Sage Weilb61c2762011-08-09 15:03:46 -07002582struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2583 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07002584{
2585 struct ceph_msg *m;
2586
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002587 m = kmalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002588 if (m == NULL)
2589 goto out;
Sage Weilc2e552e2009-12-07 15:55:05 -08002590 kref_init(&m->kref);
Alex Elder38941f82012-06-01 14:56:43 -05002591
2592 m->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002593 INIT_LIST_HEAD(&m->list_head);
2594
Sage Weil45c6ceb2010-05-11 15:01:51 -07002595 m->hdr.tid = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002596 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002597 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2598 m->hdr.version = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002599 m->hdr.front_len = cpu_to_le32(front_len);
2600 m->hdr.middle_len = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002601 m->hdr.data_len = 0;
2602 m->hdr.data_off = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002603 m->hdr.reserved = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002604 m->footer.front_crc = 0;
2605 m->footer.middle_crc = 0;
2606 m->footer.data_crc = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002607 m->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002608 m->front_max = front_len;
2609 m->front_is_vmalloc = false;
2610 m->more_to_follow = false;
Jim Schuttc0d5f9d2011-09-16 08:27:31 -06002611 m->ack_stamp = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002612 m->pool = NULL;
2613
Henry C Changca208922011-05-03 02:29:56 +00002614 /* middle */
2615 m->middle = NULL;
2616
2617 /* data */
2618 m->nr_pages = 0;
2619 m->page_alignment = 0;
2620 m->pages = NULL;
2621 m->pagelist = NULL;
2622 m->bio = NULL;
2623 m->bio_iter = NULL;
2624 m->bio_seg = 0;
2625 m->trail = NULL;
2626
Sage Weil31b80062009-10-06 11:31:13 -07002627 /* front */
2628 if (front_len) {
2629 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002630 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002631 PAGE_KERNEL);
2632 m->front_is_vmalloc = true;
2633 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002634 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002635 }
2636 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07002637 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07002638 front_len);
2639 goto out2;
2640 }
2641 } else {
2642 m->front.iov_base = NULL;
2643 }
2644 m->front.iov_len = front_len;
2645
Sage Weilbb257662010-04-01 16:07:23 -07002646 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002647 return m;
2648
2649out2:
2650 ceph_msg_put(m);
2651out:
Sage Weilb61c2762011-08-09 15:03:46 -07002652 if (!can_fail) {
2653 pr_err("msg_new can't create type %d front %d\n", type,
2654 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07002655 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07002656 } else {
2657 dout("msg_new can't create type %d front %d\n", type,
2658 front_len);
2659 }
Sage Weila79832f2010-04-01 16:06:19 -07002660 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002661}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002662EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002663
2664/*
Sage Weil31b80062009-10-06 11:31:13 -07002665 * Allocate "middle" portion of a message, if it is needed and wasn't
2666 * allocated by alloc_msg. This allows us to read a small fixed-size
2667 * per-type header in the front and then gracefully fail (i.e.,
2668 * propagate the error to the caller based on info in the front) when
2669 * the middle is too large.
2670 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002671static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002672{
2673 int type = le16_to_cpu(msg->hdr.type);
2674 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2675
2676 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2677 ceph_msg_type_name(type), middle_len);
2678 BUG_ON(!middle_len);
2679 BUG_ON(msg->middle);
2680
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002681 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002682 if (!msg->middle)
2683 return -ENOMEM;
2684 return 0;
2685}
2686
Yehuda Sadeh24504182010-01-08 13:58:34 -08002687/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05002688 * Allocate a message for receiving an incoming message on a
2689 * connection, and save the result in con->in_msg. Uses the
2690 * connection's private alloc_msg op if available.
2691 *
2692 * Returns true if the message should be skipped, false otherwise.
2693 * If true is returned (skip message), con->in_msg will be NULL.
2694 * If false is returned, con->in_msg will contain a pointer to the
2695 * newly-allocated message, or NULL in case of memory exhaustion.
Yehuda Sadeh24504182010-01-08 13:58:34 -08002696 */
Alex Elder1c20f2d2012-06-04 14:43:32 -05002697static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
2698 struct ceph_msg_header *hdr)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002699{
2700 int type = le16_to_cpu(hdr->type);
2701 int front_len = le32_to_cpu(hdr->front_len);
2702 int middle_len = le32_to_cpu(hdr->middle_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002703 int ret;
2704
Alex Elder1c20f2d2012-06-04 14:43:32 -05002705 BUG_ON(con->in_msg != NULL);
2706
Yehuda Sadeh24504182010-01-08 13:58:34 -08002707 if (con->ops->alloc_msg) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002708 int skip = 0;
2709
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002710 mutex_unlock(&con->mutex);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002711 con->in_msg = con->ops->alloc_msg(con, hdr, &skip);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002712 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002713 if (con->in_msg) {
Sage Weil36eb71a2012-06-21 12:47:08 -07002714 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002715 BUG_ON(con->in_msg->con == NULL);
2716 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002717 if (skip)
2718 con->in_msg = NULL;
2719
2720 if (!con->in_msg)
2721 return skip != 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002722 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002723 if (!con->in_msg) {
2724 con->in_msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
2725 if (!con->in_msg) {
Yehuda Sadeh24504182010-01-08 13:58:34 -08002726 pr_err("unable to allocate msg type %d len %d\n",
2727 type, front_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002728 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002729 }
Sage Weil36eb71a2012-06-21 12:47:08 -07002730 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002731 BUG_ON(con->in_msg->con == NULL);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002732 con->in_msg->page_alignment = le16_to_cpu(hdr->data_off);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002733 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002734 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002735
Alex Elder1c20f2d2012-06-04 14:43:32 -05002736 if (middle_len && !con->in_msg->middle) {
2737 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002738 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002739 ceph_msg_put(con->in_msg);
2740 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002741 }
2742 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002743
Alex Elder1c20f2d2012-06-04 14:43:32 -05002744 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002745}
2746
Sage Weil31b80062009-10-06 11:31:13 -07002747
2748/*
2749 * Free a generically kmalloc'd message.
2750 */
2751void ceph_msg_kfree(struct ceph_msg *m)
2752{
2753 dout("msg_kfree %p\n", m);
2754 if (m->front_is_vmalloc)
2755 vfree(m->front.iov_base);
2756 else
2757 kfree(m->front.iov_base);
2758 kfree(m);
2759}
2760
2761/*
2762 * Drop a msg ref. Destroy as needed.
2763 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002764void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002765{
Sage Weilc2e552e2009-12-07 15:55:05 -08002766 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002767
Sage Weilc2e552e2009-12-07 15:55:05 -08002768 dout("ceph_msg_put last one on %p\n", m);
2769 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002770
Sage Weilc2e552e2009-12-07 15:55:05 -08002771 /* drop middle, data, if any */
2772 if (m->middle) {
2773 ceph_buffer_put(m->middle);
2774 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002775 }
Sage Weilc2e552e2009-12-07 15:55:05 -08002776 m->nr_pages = 0;
2777 m->pages = NULL;
2778
Sage Weil58bb3b32009-12-23 12:12:31 -08002779 if (m->pagelist) {
2780 ceph_pagelist_release(m->pagelist);
2781 kfree(m->pagelist);
2782 m->pagelist = NULL;
2783 }
2784
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002785 m->trail = NULL;
2786
Sage Weilc2e552e2009-12-07 15:55:05 -08002787 if (m->pool)
2788 ceph_msgpool_put(m->pool, m);
2789 else
2790 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002791}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002792EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002793
2794void ceph_msg_dump(struct ceph_msg *msg)
2795{
2796 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2797 msg->front_max, msg->nr_pages);
2798 print_hex_dump(KERN_DEBUG, "header: ",
2799 DUMP_PREFIX_OFFSET, 16, 1,
2800 &msg->hdr, sizeof(msg->hdr), true);
2801 print_hex_dump(KERN_DEBUG, " front: ",
2802 DUMP_PREFIX_OFFSET, 16, 1,
2803 msg->front.iov_base, msg->front.iov_len, true);
2804 if (msg->middle)
2805 print_hex_dump(KERN_DEBUG, "middle: ",
2806 DUMP_PREFIX_OFFSET, 16, 1,
2807 msg->middle->vec.iov_base,
2808 msg->middle->vec.iov_len, true);
2809 print_hex_dump(KERN_DEBUG, "footer: ",
2810 DUMP_PREFIX_OFFSET, 16, 1,
2811 &msg->footer, sizeof(msg->footer), true);
2812}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002813EXPORT_SYMBOL(ceph_msg_dump);