blob: fedad914b2381159bc7a8f2fb16a99ff45e683bf [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 Elderce2c8902012-05-22 22:15:49 -050032/* State values for ceph_connection->sock_state; NEW is assumed to be 0 */
33
34#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
35#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
36#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
37#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
38#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
39
Sage Weil31b80062009-10-06 11:31:13 -070040/* static tag bytes (protocol control messages) */
41static char tag_msg = CEPH_MSGR_TAG_MSG;
42static char tag_ack = CEPH_MSGR_TAG_ACK;
43static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
44
Sage Weila6a53492010-04-13 14:07:07 -070045#ifdef CONFIG_LOCKDEP
46static struct lock_class_key socket_class;
47#endif
48
Alex Elder84495f42012-02-15 07:43:55 -060049/*
50 * When skipping (ignoring) a block of input we read it into a "skip
51 * buffer," which is this many bytes in size.
52 */
53#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -070054
55static void queue_con(struct ceph_connection *con);
56static void con_work(struct work_struct *);
57static void ceph_fault(struct ceph_connection *con);
58
Sage Weil31b80062009-10-06 11:31:13 -070059/*
Alex Elderf64a9312012-01-23 15:49:27 -060060 * Nicely render a sockaddr as a string. An array of formatted
61 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -070062 */
Alex Elderf64a9312012-01-23 15:49:27 -060063#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
64#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
65#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
66#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
67
68static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
69static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -070070
Alex Elder57666512012-01-23 15:49:27 -060071static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -060072
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070073const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -070074{
75 int i;
76 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -060077 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
78 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -070079
Alex Elderf64a9312012-01-23 15:49:27 -060080 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -070081 s = addr_str[i];
82
83 switch (ss->ss_family) {
84 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -060085 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
86 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -070087 break;
88
89 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -060090 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
91 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -070092 break;
93
94 default:
Alex Elderd3002b92012-02-14 14:05:33 -060095 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
96 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -070097 }
98
99 return s;
100}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700101EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700102
Sage Weil63f2d212009-11-03 15:17:56 -0800103static void encode_my_addr(struct ceph_messenger *msgr)
104{
105 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
106 ceph_encode_addr(&msgr->my_enc_addr);
107}
108
Sage Weil31b80062009-10-06 11:31:13 -0700109/*
110 * work queue for all reading and writing to/from the socket.
111 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600112static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700113
Alex Elder6173d1f2012-02-14 14:05:33 -0600114void _ceph_msgr_exit(void)
115{
Alex Elderd3002b92012-02-14 14:05:33 -0600116 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600117 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600118 ceph_msgr_wq = NULL;
119 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600120
Alex Elder6173d1f2012-02-14 14:05:33 -0600121 BUG_ON(zero_page == NULL);
122 kunmap(zero_page);
123 page_cache_release(zero_page);
124 zero_page = NULL;
125}
126
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700127int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700128{
Alex Elder57666512012-01-23 15:49:27 -0600129 BUG_ON(zero_page != NULL);
130 zero_page = ZERO_PAGE(0);
131 page_cache_get(zero_page);
132
Tejun Heof363e45fd12011-01-03 14:49:46 +0100133 ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600134 if (ceph_msgr_wq)
135 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600136
Alex Elder6173d1f2012-02-14 14:05:33 -0600137 pr_err("msgr_init failed to create workqueue\n");
138 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600139
Alex Elder6173d1f2012-02-14 14:05:33 -0600140 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700141}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700142EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700143
144void ceph_msgr_exit(void)
145{
Alex Elder57666512012-01-23 15:49:27 -0600146 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600147
Alex Elder6173d1f2012-02-14 14:05:33 -0600148 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700149}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700150EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700151
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700152void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700153{
154 flush_workqueue(ceph_msgr_wq);
155}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700156EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700157
Alex Elderce2c8902012-05-22 22:15:49 -0500158/* Connection socket state transition functions */
159
160static void con_sock_state_init(struct ceph_connection *con)
161{
162 int old_state;
163
164 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
165 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
166 printk("%s: unexpected old state %d\n", __func__, old_state);
167}
168
169static void con_sock_state_connecting(struct ceph_connection *con)
170{
171 int old_state;
172
173 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
174 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
175 printk("%s: unexpected old state %d\n", __func__, old_state);
176}
177
178static void con_sock_state_connected(struct ceph_connection *con)
179{
180 int old_state;
181
182 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
183 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
184 printk("%s: unexpected old state %d\n", __func__, old_state);
185}
186
187static void con_sock_state_closing(struct ceph_connection *con)
188{
189 int old_state;
190
191 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
192 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
193 old_state != CON_SOCK_STATE_CONNECTED &&
194 old_state != CON_SOCK_STATE_CLOSING))
195 printk("%s: unexpected old state %d\n", __func__, old_state);
196}
197
198static void con_sock_state_closed(struct ceph_connection *con)
199{
200 int old_state;
201
202 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
203 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
204 old_state != CON_SOCK_STATE_CLOSING))
205 printk("%s: unexpected old state %d\n", __func__, old_state);
206}
Sage Weila922d382010-05-29 09:41:23 -0700207
Sage Weil31b80062009-10-06 11:31:13 -0700208/*
209 * socket callback functions
210 */
211
212/* data available on socket, or listen socket received a connect */
Alex Elder327800b2012-05-22 11:41:43 -0500213static void ceph_sock_data_ready(struct sock *sk, int count_unused)
Sage Weil31b80062009-10-06 11:31:13 -0700214{
Alex Elderbd406142012-01-23 15:49:27 -0600215 struct ceph_connection *con = sk->sk_user_data;
216
Sage Weil31b80062009-10-06 11:31:13 -0700217 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500218 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700219 con, con->state);
220 queue_con(con);
221 }
222}
223
224/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500225static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700226{
Alex Elderd3002b92012-02-14 14:05:33 -0600227 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700228
Jim Schutt182fac22012-02-29 08:30:58 -0700229 /* only queue to workqueue if there is data we want to write,
230 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500231 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700232 * doesn't get called again until try_write() fills the socket
233 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
234 * and net/core/stream.c:sk_stream_write_space().
235 */
Alex Elder928443c2012-05-22 11:41:43 -0500236 if (test_bit(WRITE_PENDING, &con->flags)) {
Jim Schutt182fac22012-02-29 08:30:58 -0700237 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500238 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700239 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
240 queue_con(con);
241 }
Sage Weil31b80062009-10-06 11:31:13 -0700242 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500243 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700244 }
Sage Weil31b80062009-10-06 11:31:13 -0700245}
246
247/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500248static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700249{
Alex Elderbd406142012-01-23 15:49:27 -0600250 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700251
Alex Elder327800b2012-05-22 11:41:43 -0500252 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700253 con, con->state, sk->sk_state);
254
255 if (test_bit(CLOSED, &con->state))
256 return;
257
258 switch (sk->sk_state) {
259 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500260 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700261 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500262 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500263 con_sock_state_closing(con);
Alex Elder928443c2012-05-22 11:41:43 -0500264 if (test_and_set_bit(SOCK_CLOSED, &con->flags) == 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700265 if (test_bit(CONNECTING, &con->state))
266 con->error_msg = "connection failed";
267 else
268 con->error_msg = "socket closed";
269 queue_con(con);
270 }
271 break;
272 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500273 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500274 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700275 queue_con(con);
276 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600277 default: /* Everything else is uninteresting */
278 break;
Sage Weil31b80062009-10-06 11:31:13 -0700279 }
280}
281
282/*
283 * set up socket callbacks
284 */
285static void set_sock_callbacks(struct socket *sock,
286 struct ceph_connection *con)
287{
288 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600289 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500290 sk->sk_data_ready = ceph_sock_data_ready;
291 sk->sk_write_space = ceph_sock_write_space;
292 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700293}
294
295
296/*
297 * socket helpers
298 */
299
300/*
301 * initiate connection to a remote socket.
302 */
Alex Elder41617d02012-02-14 14:05:33 -0600303static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700304{
Sage Weilf91d3472010-07-01 15:18:31 -0700305 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700306 struct socket *sock;
307 int ret;
308
309 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700310 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
311 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700312 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600313 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700314 sock->sk->sk_allocation = GFP_NOFS;
315
Sage Weila6a53492010-04-13 14:07:07 -0700316#ifdef CONFIG_LOCKDEP
317 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
318#endif
319
Sage Weil31b80062009-10-06 11:31:13 -0700320 set_sock_callbacks(sock, con);
321
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700322 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700323
Sage Weil89a86be2012-06-09 14:19:21 -0700324 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700325 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
326 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700327 if (ret == -EINPROGRESS) {
328 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700329 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700330 sock->sk->sk_state);
Alex Eldera5bc3122012-01-23 15:49:27 -0600331 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700332 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700333 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700334 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700335 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700336
Alex Elder41617d02012-02-14 14:05:33 -0600337 return ret;
Alex Eldera5bc3122012-01-23 15:49:27 -0600338 }
339 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600340 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700341}
342
343static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
344{
345 struct kvec iov = {buf, len};
346 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800347 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700348
Sage Weil98bdb0a2011-01-25 08:17:48 -0800349 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
350 if (r == -EAGAIN)
351 r = 0;
352 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700353}
354
355/*
356 * write something. @more is true if caller will be sending more data
357 * shortly.
358 */
359static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
360 size_t kvlen, size_t len, int more)
361{
362 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800363 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700364
365 if (more)
366 msg.msg_flags |= MSG_MORE;
367 else
368 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
369
Sage Weil42961d22011-01-25 08:19:34 -0800370 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
371 if (r == -EAGAIN)
372 r = 0;
373 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700374}
375
Alex Elder31739132012-03-07 11:40:08 -0600376static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
377 int offset, size_t size, int more)
378{
379 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
380 int ret;
381
382 ret = kernel_sendpage(sock, page, offset, size, flags);
383 if (ret == -EAGAIN)
384 ret = 0;
385
386 return ret;
387}
388
Sage Weil31b80062009-10-06 11:31:13 -0700389
390/*
391 * Shutdown/close the socket for the given connection.
392 */
393static int con_close_socket(struct ceph_connection *con)
394{
395 int rc;
396
397 dout("con_close_socket on %p sock %p\n", con, con->sock);
398 if (!con->sock)
399 return 0;
400 set_bit(SOCK_CLOSED, &con->state);
401 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
402 sock_release(con->sock);
403 con->sock = NULL;
404 clear_bit(SOCK_CLOSED, &con->state);
Alex Elderce2c8902012-05-22 22:15:49 -0500405 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700406 return rc;
407}
408
409/*
410 * Reset a connection. Discard all incoming and outgoing messages
411 * and clear *_seq state.
412 */
413static void ceph_msg_remove(struct ceph_msg *msg)
414{
415 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500416 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700417 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500418 msg->con = NULL;
419
Sage Weil31b80062009-10-06 11:31:13 -0700420 ceph_msg_put(msg);
421}
422static void ceph_msg_remove_list(struct list_head *head)
423{
424 while (!list_empty(head)) {
425 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
426 list_head);
427 ceph_msg_remove(msg);
428 }
429}
430
431static void reset_connection(struct ceph_connection *con)
432{
433 /* reset connection, out_queue, msg_ and connect_seq */
434 /* discard existing out_queue and msg_seq */
Sage Weil31b80062009-10-06 11:31:13 -0700435 ceph_msg_remove_list(&con->out_queue);
436 ceph_msg_remove_list(&con->out_sent);
437
Sage Weilcf3e5c42009-12-11 09:48:05 -0800438 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500439 BUG_ON(con->in_msg->con != con);
440 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800441 ceph_msg_put(con->in_msg);
442 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700443 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800444 }
445
Sage Weil31b80062009-10-06 11:31:13 -0700446 con->connect_seq = 0;
447 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800448 if (con->out_msg) {
449 ceph_msg_put(con->out_msg);
450 con->out_msg = NULL;
451 }
Sage Weil31b80062009-10-06 11:31:13 -0700452 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700453 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700454}
455
456/*
457 * mark a peer down. drop any open connections.
458 */
459void ceph_con_close(struct ceph_connection *con)
460{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700461 dout("con_close %p peer %s\n", con,
462 ceph_pr_addr(&con->peer_addr.in_addr));
Alex Eldera5988c42012-05-29 11:04:58 -0500463 clear_bit(NEGOTIATING, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700464 clear_bit(STANDBY, &con->state); /* avoid connect_seq bump */
Alex Eldera5988c42012-05-29 11:04:58 -0500465 set_bit(CLOSED, &con->state);
466
Alex Elder928443c2012-05-22 11:41:43 -0500467 clear_bit(LOSSYTX, &con->flags); /* so we retry next connect */
468 clear_bit(KEEPALIVE_PENDING, &con->flags);
469 clear_bit(WRITE_PENDING, &con->flags);
Alex Eldera5988c42012-05-29 11:04:58 -0500470
Sage Weilec302642009-12-22 10:43:42 -0800471 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700472 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700473 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800474 cancel_delayed_work(&con->work);
Sage Weilec302642009-12-22 10:43:42 -0800475 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700476 queue_con(con);
477}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700478EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700479
480/*
Sage Weil31b80062009-10-06 11:31:13 -0700481 * Reopen a closed connection, with a new peer address.
482 */
483void ceph_con_open(struct ceph_connection *con, struct ceph_entity_addr *addr)
484{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700485 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700486 set_bit(OPENING, &con->state);
Alex Eldera5988c42012-05-29 11:04:58 -0500487 WARN_ON(!test_and_clear_bit(CLOSED, &con->state));
488
Sage Weil31b80062009-10-06 11:31:13 -0700489 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800490 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -0700491 queue_con(con);
492}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700493EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700494
495/*
Sage Weil87b315a2010-03-22 14:51:18 -0700496 * return true if this connection ever successfully opened
497 */
498bool ceph_con_opened(struct ceph_connection *con)
499{
500 return con->connect_seq > 0;
501}
502
503/*
Sage Weil31b80062009-10-06 11:31:13 -0700504 * initialize a new connection.
505 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500506void ceph_con_init(struct ceph_connection *con, void *private,
507 const struct ceph_connection_operations *ops,
508 struct ceph_messenger *msgr, __u8 entity_type, __u64 entity_num)
Sage Weil31b80062009-10-06 11:31:13 -0700509{
510 dout("con_init %p\n", con);
511 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500512 con->private = private;
513 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700514 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500515
516 con_sock_state_init(con);
517
Alex Elder1bfd89f2012-05-26 23:26:43 -0500518 con->peer_name.type = (__u8) entity_type;
519 con->peer_name.num = cpu_to_le64(entity_num);
520
Sage Weilec302642009-12-22 10:43:42 -0800521 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700522 INIT_LIST_HEAD(&con->out_queue);
523 INIT_LIST_HEAD(&con->out_sent);
524 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500525
526 set_bit(CLOSED, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -0700527}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700528EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700529
530
531/*
532 * We maintain a global counter to order connection attempts. Get
533 * a unique seq greater than @gt.
534 */
535static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
536{
537 u32 ret;
538
539 spin_lock(&msgr->global_seq_lock);
540 if (msgr->global_seq < gt)
541 msgr->global_seq = gt;
542 ret = ++msgr->global_seq;
543 spin_unlock(&msgr->global_seq_lock);
544 return ret;
545}
546
Alex Eldere2200422012-05-23 14:35:23 -0500547static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600548{
549 con->out_kvec_left = 0;
550 con->out_kvec_bytes = 0;
551 con->out_kvec_cur = &con->out_kvec[0];
552}
553
Alex Eldere2200422012-05-23 14:35:23 -0500554static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600555 size_t size, void *data)
556{
557 int index;
558
559 index = con->out_kvec_left;
560 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
561
562 con->out_kvec[index].iov_len = size;
563 con->out_kvec[index].iov_base = data;
564 con->out_kvec_left++;
565 con->out_kvec_bytes += size;
566}
Sage Weil31b80062009-10-06 11:31:13 -0700567
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500568#ifdef CONFIG_BLOCK
569static void init_bio_iter(struct bio *bio, struct bio **iter, int *seg)
570{
571 if (!bio) {
572 *iter = NULL;
573 *seg = 0;
574 return;
575 }
576 *iter = bio;
577 *seg = bio->bi_idx;
578}
579
580static void iter_bio_next(struct bio **bio_iter, int *seg)
581{
582 if (*bio_iter == NULL)
583 return;
584
585 BUG_ON(*seg >= (*bio_iter)->bi_vcnt);
586
587 (*seg)++;
588 if (*seg == (*bio_iter)->bi_vcnt)
589 init_bio_iter((*bio_iter)->bi_next, bio_iter, seg);
590}
591#endif
592
Alex Elder739c9052012-06-11 14:57:13 -0500593static void prepare_write_message_data(struct ceph_connection *con)
594{
595 struct ceph_msg *msg = con->out_msg;
596
597 BUG_ON(!msg);
598 BUG_ON(!msg->hdr.data_len);
599
600 /* initialize page iterator */
601 con->out_msg_pos.page = 0;
602 if (msg->pages)
603 con->out_msg_pos.page_pos = msg->page_alignment;
604 else
605 con->out_msg_pos.page_pos = 0;
Alex Elder572c5882012-06-11 14:57:13 -0500606#ifdef CONFIG_BLOCK
607 if (msg->bio && !msg->bio_iter)
608 init_bio_iter(msg->bio, &msg->bio_iter, &msg->bio_seg);
609#endif
Alex Elder739c9052012-06-11 14:57:13 -0500610 con->out_msg_pos.data_pos = 0;
611 con->out_msg_pos.did_page_crc = false;
612 con->out_more = 1; /* data + footer will follow */
613}
614
Sage Weil31b80062009-10-06 11:31:13 -0700615/*
616 * Prepare footer for currently outgoing message, and finish things
617 * off. Assumes out_kvec* are already valid.. we just add on to the end.
618 */
Alex Elder859eb792012-02-14 14:05:33 -0600619static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700620{
621 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -0600622 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -0700623
Alex Elderfd154f32012-06-11 14:57:13 -0500624 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
625
Sage Weil31b80062009-10-06 11:31:13 -0700626 dout("prepare_write_message_footer %p\n", con);
627 con->out_kvec_is_msg = true;
628 con->out_kvec[v].iov_base = &m->footer;
629 con->out_kvec[v].iov_len = sizeof(m->footer);
630 con->out_kvec_bytes += sizeof(m->footer);
631 con->out_kvec_left++;
632 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -0800633 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -0700634}
635
636/*
637 * Prepare headers for the next outgoing message.
638 */
639static void prepare_write_message(struct ceph_connection *con)
640{
641 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -0600642 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -0700643
Alex Eldere2200422012-05-23 14:35:23 -0500644 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -0700645 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -0800646 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -0700647
648 /* Sneak an ack in there first? If we can get it into the same
649 * TCP packet that's a good thing. */
650 if (con->in_seq > con->in_seq_acked) {
651 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -0500652 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700653 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500654 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600655 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -0700656 }
657
Alex Elder38941f82012-06-01 14:56:43 -0500658 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -0600659 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -0800660 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -0500661 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -0700662
663 /* put message on sent list */
664 ceph_msg_get(m);
665 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -0700666
Sage Weile84346b2010-05-11 21:20:38 -0700667 /*
668 * only assign outgoing seq # if we haven't sent this message
669 * yet. if it is requeued, resend with it's original seq.
670 */
671 if (m->needs_out_seq) {
672 m->hdr.seq = cpu_to_le64(++con->out_seq);
673 m->needs_out_seq = false;
674 }
Yan, Zheng43643522012-06-06 19:35:55 -0500675#ifdef CONFIG_BLOCK
676 else
677 m->bio_iter = NULL;
678#endif
Sage Weil31b80062009-10-06 11:31:13 -0700679
680 dout("prepare_write_message %p seq %lld type %d len %d+%d+%d %d pgs\n",
681 m, con->out_seq, le16_to_cpu(m->hdr.type),
682 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
683 le32_to_cpu(m->hdr.data_len),
684 m->nr_pages);
685 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
686
687 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -0500688 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
689 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
690 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -0600691
Sage Weil31b80062009-10-06 11:31:13 -0700692 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -0500693 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -0600694 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -0700695
696 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -0600697 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
698 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -0500699 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -0600700
701 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
702 con->out_msg->footer.front_crc = cpu_to_le32(crc);
703 if (m->middle) {
704 crc = crc32c(0, m->middle->vec.iov_base,
705 m->middle->vec.iov_len);
706 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
707 } else
Sage Weil31b80062009-10-06 11:31:13 -0700708 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -0500709 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700710 le32_to_cpu(con->out_msg->footer.front_crc),
711 le32_to_cpu(con->out_msg->footer.middle_crc));
712
713 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -0500714 con->out_msg->footer.data_crc = 0;
715 if (m->hdr.data_len)
716 prepare_write_message_data(con);
717 else
Sage Weil31b80062009-10-06 11:31:13 -0700718 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -0600719 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -0700720
Alex Elder928443c2012-05-22 11:41:43 -0500721 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700722}
723
724/*
725 * Prepare an ack.
726 */
727static void prepare_write_ack(struct ceph_connection *con)
728{
729 dout("prepare_write_ack %p %llu -> %llu\n", con,
730 con->in_seq_acked, con->in_seq);
731 con->in_seq_acked = con->in_seq;
732
Alex Eldere2200422012-05-23 14:35:23 -0500733 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -0600734
Alex Eldere2200422012-05-23 14:35:23 -0500735 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -0600736
Sage Weil31b80062009-10-06 11:31:13 -0700737 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -0500738 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -0600739 &con->out_temp_ack);
740
Sage Weil31b80062009-10-06 11:31:13 -0700741 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elder928443c2012-05-22 11:41:43 -0500742 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700743}
744
745/*
746 * Prepare to write keepalive byte.
747 */
748static void prepare_write_keepalive(struct ceph_connection *con)
749{
750 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -0500751 con_out_kvec_reset(con);
752 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elder928443c2012-05-22 11:41:43 -0500753 set_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -0700754}
755
756/*
757 * Connection negotiation.
758 */
759
Alex Elderdac1e712012-05-16 15:16:39 -0500760static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
761 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800762{
Alex Eldera3530df2012-05-16 15:16:39 -0500763 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -0500764
765 if (!con->ops->get_authorizer) {
766 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
767 con->out_connect.authorizer_len = 0;
768
Alex Elder729796b2012-05-16 15:16:39 -0500769 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -0500770 }
771
772 /* Can't hold the mutex while getting authorizer */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800773
Sage Weilec302642009-12-22 10:43:42 -0800774 mutex_unlock(&con->mutex);
Alex Elderb1c6b982012-05-16 15:16:38 -0500775
Alex Elderdac1e712012-05-16 15:16:39 -0500776 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Alex Elder8f43fb52012-05-16 15:16:39 -0500777
Sage Weilec302642009-12-22 10:43:42 -0800778 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800779
Alex Eldera3530df2012-05-16 15:16:39 -0500780 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -0500781 return auth;
Alex Elder928443c2012-05-22 11:41:43 -0500782 if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->flags))
Alex Elder729796b2012-05-16 15:16:39 -0500783 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -0700784
Alex Elder8f43fb52012-05-16 15:16:39 -0500785 con->auth_reply_buf = auth->authorizer_reply_buf;
786 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
787
Alex Elder859eb792012-02-14 14:05:33 -0600788
Alex Elder729796b2012-05-16 15:16:39 -0500789 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800790}
791
Sage Weil31b80062009-10-06 11:31:13 -0700792/*
793 * We connected to a peer and are saying hello.
794 */
Alex Eldere825a662012-05-16 15:16:38 -0500795static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700796{
Alex Eldere2200422012-05-23 14:35:23 -0500797 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
798 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -0500799 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -0800800
Sage Weileed0ef22009-11-10 14:34:36 -0800801 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500802 set_bit(WRITE_PENDING, &con->flags);
Sage Weileed0ef22009-11-10 14:34:36 -0800803}
804
Alex Eldere825a662012-05-16 15:16:38 -0500805static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -0800806{
Eric Dumazet95c96172012-04-15 05:58:06 +0000807 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -0700808 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -0500809 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -0500810 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -0700811
812 switch (con->peer_name.type) {
813 case CEPH_ENTITY_TYPE_MON:
814 proto = CEPH_MONC_PROTOCOL;
815 break;
816 case CEPH_ENTITY_TYPE_OSD:
817 proto = CEPH_OSDC_PROTOCOL;
818 break;
819 case CEPH_ENTITY_TYPE_MDS:
820 proto = CEPH_MDSC_PROTOCOL;
821 break;
822 default:
823 BUG();
824 }
825
826 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
827 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800828
Alex Eldere825a662012-05-16 15:16:38 -0500829 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -0700830 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
831 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
832 con->out_connect.global_seq = cpu_to_le32(global_seq);
833 con->out_connect.protocol_version = cpu_to_le32(proto);
834 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700835
Alex Elderdac1e712012-05-16 15:16:39 -0500836 auth_proto = CEPH_AUTH_UNKNOWN;
837 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -0500838 if (IS_ERR(auth))
839 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -0500840
Alex Elderdac1e712012-05-16 15:16:39 -0500841 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -0500842 con->out_connect.authorizer_len = auth ?
843 cpu_to_le32(auth->authorizer_buf_len) : 0;
844
Alex Eldere2200422012-05-23 14:35:23 -0500845 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -0500846 &con->out_connect);
847 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -0500848 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -0500849 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -0600850
Sage Weil31b80062009-10-06 11:31:13 -0700851 con->out_more = 0;
Alex Elder928443c2012-05-22 11:41:43 -0500852 set_bit(WRITE_PENDING, &con->flags);
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800853
Alex Eldere10c7582012-05-16 15:16:38 -0500854 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700855}
856
Sage Weil31b80062009-10-06 11:31:13 -0700857/*
858 * write as much of pending kvecs to the socket as we can.
859 * 1 -> done
860 * 0 -> socket full, but more to do
861 * <0 -> error
862 */
863static int write_partial_kvec(struct ceph_connection *con)
864{
865 int ret;
866
867 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
868 while (con->out_kvec_bytes > 0) {
869 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
870 con->out_kvec_left, con->out_kvec_bytes,
871 con->out_more);
872 if (ret <= 0)
873 goto out;
874 con->out_kvec_bytes -= ret;
875 if (con->out_kvec_bytes == 0)
876 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -0600877
878 /* account for full iov entries consumed */
879 while (ret >= con->out_kvec_cur->iov_len) {
880 BUG_ON(!con->out_kvec_left);
881 ret -= con->out_kvec_cur->iov_len;
882 con->out_kvec_cur++;
883 con->out_kvec_left--;
884 }
885 /* and for a partially-consumed entry */
886 if (ret) {
887 con->out_kvec_cur->iov_len -= ret;
888 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -0700889 }
890 }
891 con->out_kvec_left = 0;
892 con->out_kvec_is_msg = false;
893 ret = 1;
894out:
895 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
896 con->out_kvec_bytes, con->out_kvec_left, ret);
897 return ret; /* done! */
898}
899
Alex Elder84ca8fc2012-06-11 14:57:13 -0500900static void out_msg_pos_next(struct ceph_connection *con, struct page *page,
901 size_t len, size_t sent, bool in_trail)
902{
903 struct ceph_msg *msg = con->out_msg;
904
905 BUG_ON(!msg);
906 BUG_ON(!sent);
907
908 con->out_msg_pos.data_pos += sent;
909 con->out_msg_pos.page_pos += sent;
910 if (sent == len) {
911 con->out_msg_pos.page_pos = 0;
912 con->out_msg_pos.page++;
913 con->out_msg_pos.did_page_crc = false;
914 if (in_trail)
915 list_move_tail(&page->lru,
916 &msg->trail->head);
917 else if (msg->pagelist)
918 list_move_tail(&page->lru,
919 &msg->pagelist->head);
920#ifdef CONFIG_BLOCK
921 else if (msg->bio)
922 iter_bio_next(&msg->bio_iter, &msg->bio_seg);
923#endif
924 }
925}
926
Sage Weil31b80062009-10-06 11:31:13 -0700927/*
928 * Write as much message data payload as we can. If we finish, queue
929 * up the footer.
930 * 1 -> done, footer is now queued in out_kvec[].
931 * 0 -> socket full, but more to do
932 * <0 -> error
933 */
934static int write_partial_msg_pages(struct ceph_connection *con)
935{
936 struct ceph_msg *msg = con->out_msg;
Eric Dumazet95c96172012-04-15 05:58:06 +0000937 unsigned int data_len = le32_to_cpu(msg->hdr.data_len);
Sage Weil31b80062009-10-06 11:31:13 -0700938 size_t len;
Alex Elder37675b02012-03-07 11:40:08 -0600939 bool do_datacrc = !con->msgr->nocrc;
Sage Weil31b80062009-10-06 11:31:13 -0700940 int ret;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700941 int total_max_write;
Alex Elder84ca8fc2012-06-11 14:57:13 -0500942 bool in_trail = false;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700943 size_t trail_len = (msg->trail ? msg->trail->length : 0);
Sage Weil31b80062009-10-06 11:31:13 -0700944
945 dout("write_partial_msg_pages %p msg %p page %d/%d offset %d\n",
Alex Elder84ca8fc2012-06-11 14:57:13 -0500946 con, msg, con->out_msg_pos.page, msg->nr_pages,
Sage Weil31b80062009-10-06 11:31:13 -0700947 con->out_msg_pos.page_pos);
948
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700949 while (data_len > con->out_msg_pos.data_pos) {
Sage Weil31b80062009-10-06 11:31:13 -0700950 struct page *page = NULL;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700951 int max_write = PAGE_SIZE;
Alex Elder9bd19662012-03-07 11:40:08 -0600952 int bio_offset = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700953
954 total_max_write = data_len - trail_len -
955 con->out_msg_pos.data_pos;
Sage Weil31b80062009-10-06 11:31:13 -0700956
957 /*
958 * if we are calculating the data crc (the default), we need
959 * to map the page. if our pages[] has been revoked, use the
960 * zero page.
961 */
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700962
963 /* have we reached the trail part of the data? */
964 if (con->out_msg_pos.data_pos >= data_len - trail_len) {
Alex Elder84ca8fc2012-06-11 14:57:13 -0500965 in_trail = true;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700966
967 total_max_write = data_len - con->out_msg_pos.data_pos;
968
969 page = list_first_entry(&msg->trail->head,
970 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700971 } else if (msg->pages) {
Sage Weil31b80062009-10-06 11:31:13 -0700972 page = msg->pages[con->out_msg_pos.page];
Sage Weil58bb3b32009-12-23 12:12:31 -0800973 } else if (msg->pagelist) {
974 page = list_first_entry(&msg->pagelist->head,
975 struct page, lru);
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700976#ifdef CONFIG_BLOCK
977 } else if (msg->bio) {
978 struct bio_vec *bv;
979
980 bv = bio_iovec_idx(msg->bio_iter, msg->bio_seg);
981 page = bv->bv_page;
Alex Elder9bd19662012-03-07 11:40:08 -0600982 bio_offset = bv->bv_offset;
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700983 max_write = bv->bv_len;
984#endif
Sage Weil31b80062009-10-06 11:31:13 -0700985 } else {
Alex Elder57666512012-01-23 15:49:27 -0600986 page = zero_page;
Sage Weil31b80062009-10-06 11:31:13 -0700987 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -0700988 len = min_t(int, max_write - con->out_msg_pos.page_pos,
989 total_max_write);
990
Alex Elder37675b02012-03-07 11:40:08 -0600991 if (do_datacrc && !con->out_msg_pos.did_page_crc) {
Alex Elder9bd19662012-03-07 11:40:08 -0600992 void *base;
Alex Eldera9a0c512012-02-15 07:43:54 -0600993 u32 crc;
Alex Elder84ca8fc2012-06-11 14:57:13 -0500994 u32 tmpcrc = le32_to_cpu(msg->footer.data_crc);
Alex Elder8d63e312012-03-07 11:40:08 -0600995 char *kaddr;
Sage Weil31b80062009-10-06 11:31:13 -0700996
Alex Elder8d63e312012-03-07 11:40:08 -0600997 kaddr = kmap(page);
Sage Weil31b80062009-10-06 11:31:13 -0700998 BUG_ON(kaddr == NULL);
Alex Elder9bd19662012-03-07 11:40:08 -0600999 base = kaddr + con->out_msg_pos.page_pos + bio_offset;
Alex Eldera9a0c512012-02-15 07:43:54 -06001000 crc = crc32c(tmpcrc, base, len);
Alex Elder84ca8fc2012-06-11 14:57:13 -05001001 msg->footer.data_crc = cpu_to_le32(crc);
Alex Elderbca064d2012-02-15 07:43:54 -06001002 con->out_msg_pos.did_page_crc = true;
Sage Weil31b80062009-10-06 11:31:13 -07001003 }
Alex Eldere36b13c2012-03-07 11:40:08 -06001004 ret = ceph_tcp_sendpage(con->sock, page,
Alex Elder9bd19662012-03-07 11:40:08 -06001005 con->out_msg_pos.page_pos + bio_offset,
Alex Eldere36b13c2012-03-07 11:40:08 -06001006 len, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001007
Alex Elder0cdf9e62012-03-07 11:40:08 -06001008 if (do_datacrc)
Sage Weil31b80062009-10-06 11:31:13 -07001009 kunmap(page);
1010
1011 if (ret <= 0)
1012 goto out;
1013
Alex Elder84ca8fc2012-06-11 14:57:13 -05001014 out_msg_pos_next(con, page, len, (size_t) ret, in_trail);
Sage Weil31b80062009-10-06 11:31:13 -07001015 }
1016
1017 dout("write_partial_msg_pages %p msg %p done\n", con, msg);
1018
1019 /* prepare and queue up footer, too */
Alex Elder37675b02012-03-07 11:40:08 -06001020 if (!do_datacrc)
Alex Elder84ca8fc2012-06-11 14:57:13 -05001021 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001022 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001023 prepare_write_message_footer(con);
Sage Weil31b80062009-10-06 11:31:13 -07001024 ret = 1;
1025out:
1026 return ret;
1027}
1028
1029/*
1030 * write some zeros
1031 */
1032static int write_partial_skip(struct ceph_connection *con)
1033{
1034 int ret;
1035
1036 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001037 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001038
Alex Elder31739132012-03-07 11:40:08 -06001039 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, 1);
Sage Weil31b80062009-10-06 11:31:13 -07001040 if (ret <= 0)
1041 goto out;
1042 con->out_skip -= ret;
1043 }
1044 ret = 1;
1045out:
1046 return ret;
1047}
1048
1049/*
1050 * Prepare to read connection handshake, or an ack.
1051 */
Sage Weileed0ef22009-11-10 14:34:36 -08001052static void prepare_read_banner(struct ceph_connection *con)
1053{
1054 dout("prepare_read_banner %p\n", con);
1055 con->in_base_pos = 0;
1056}
1057
Sage Weil31b80062009-10-06 11:31:13 -07001058static void prepare_read_connect(struct ceph_connection *con)
1059{
1060 dout("prepare_read_connect %p\n", con);
1061 con->in_base_pos = 0;
1062}
1063
1064static void prepare_read_ack(struct ceph_connection *con)
1065{
1066 dout("prepare_read_ack %p\n", con);
1067 con->in_base_pos = 0;
1068}
1069
1070static void prepare_read_tag(struct ceph_connection *con)
1071{
1072 dout("prepare_read_tag %p\n", con);
1073 con->in_base_pos = 0;
1074 con->in_tag = CEPH_MSGR_TAG_READY;
1075}
1076
1077/*
1078 * Prepare to read a message.
1079 */
1080static int prepare_read_message(struct ceph_connection *con)
1081{
1082 dout("prepare_read_message %p\n", con);
1083 BUG_ON(con->in_msg != NULL);
1084 con->in_base_pos = 0;
1085 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1086 return 0;
1087}
1088
1089
1090static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001091 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001092{
Alex Eldere6cee71f2012-05-10 10:29:50 -05001093 while (con->in_base_pos < end) {
1094 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001095 int have = size - left;
1096 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1097 if (ret <= 0)
1098 return ret;
1099 con->in_base_pos += ret;
1100 }
1101 return 1;
1102}
1103
1104
1105/*
1106 * Read all or part of the connect-side handshake on a new connection
1107 */
Sage Weileed0ef22009-11-10 14:34:36 -08001108static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001109{
Alex Elderfd516532012-05-10 10:29:50 -05001110 int size;
1111 int end;
1112 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001113
Sage Weileed0ef22009-11-10 14:34:36 -08001114 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001115
1116 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001117 size = strlen(CEPH_BANNER);
1118 end = size;
1119 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001120 if (ret <= 0)
1121 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001122
1123 size = sizeof (con->actual_peer_addr);
1124 end += size;
1125 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001126 if (ret <= 0)
1127 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001128
1129 size = sizeof (con->peer_addr_for_me);
1130 end += size;
1131 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001132 if (ret <= 0)
1133 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001134
Sage Weileed0ef22009-11-10 14:34:36 -08001135out:
1136 return ret;
1137}
1138
1139static int read_partial_connect(struct ceph_connection *con)
1140{
Alex Elderfd516532012-05-10 10:29:50 -05001141 int size;
1142 int end;
1143 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001144
1145 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1146
Alex Elderfd516532012-05-10 10:29:50 -05001147 size = sizeof (con->in_reply);
1148 end = size;
1149 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001150 if (ret <= 0)
1151 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001152
1153 size = le32_to_cpu(con->in_reply.authorizer_len);
1154 end += size;
1155 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001156 if (ret <= 0)
1157 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001158
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001159 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1160 con, (int)con->in_reply.tag,
1161 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001162 le32_to_cpu(con->in_reply.global_seq));
1163out:
1164 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001165
Sage Weil31b80062009-10-06 11:31:13 -07001166}
1167
1168/*
1169 * Verify the hello banner looks okay.
1170 */
1171static int verify_hello(struct ceph_connection *con)
1172{
1173 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001174 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001175 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001176 con->error_msg = "protocol error, bad banner";
1177 return -1;
1178 }
1179 return 0;
1180}
1181
1182static bool addr_is_blank(struct sockaddr_storage *ss)
1183{
1184 switch (ss->ss_family) {
1185 case AF_INET:
1186 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1187 case AF_INET6:
1188 return
1189 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1190 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1191 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1192 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1193 }
1194 return false;
1195}
1196
1197static int addr_port(struct sockaddr_storage *ss)
1198{
1199 switch (ss->ss_family) {
1200 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001201 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001202 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001203 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001204 }
1205 return 0;
1206}
1207
1208static void addr_set_port(struct sockaddr_storage *ss, int p)
1209{
1210 switch (ss->ss_family) {
1211 case AF_INET:
1212 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001213 break;
Sage Weil31b80062009-10-06 11:31:13 -07001214 case AF_INET6:
1215 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001216 break;
Sage Weil31b80062009-10-06 11:31:13 -07001217 }
1218}
1219
1220/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001221 * Unlike other *_pton function semantics, zero indicates success.
1222 */
1223static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1224 char delim, const char **ipend)
1225{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001226 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1227 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001228
1229 memset(ss, 0, sizeof(*ss));
1230
1231 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1232 ss->ss_family = AF_INET;
1233 return 0;
1234 }
1235
1236 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1237 ss->ss_family = AF_INET6;
1238 return 0;
1239 }
1240
1241 return -EINVAL;
1242}
1243
1244/*
1245 * Extract hostname string and resolve using kernel DNS facility.
1246 */
1247#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1248static int ceph_dns_resolve_name(const char *name, size_t namelen,
1249 struct sockaddr_storage *ss, char delim, const char **ipend)
1250{
1251 const char *end, *delim_p;
1252 char *colon_p, *ip_addr = NULL;
1253 int ip_len, ret;
1254
1255 /*
1256 * The end of the hostname occurs immediately preceding the delimiter or
1257 * the port marker (':') where the delimiter takes precedence.
1258 */
1259 delim_p = memchr(name, delim, namelen);
1260 colon_p = memchr(name, ':', namelen);
1261
1262 if (delim_p && colon_p)
1263 end = delim_p < colon_p ? delim_p : colon_p;
1264 else if (!delim_p && colon_p)
1265 end = colon_p;
1266 else {
1267 end = delim_p;
1268 if (!end) /* case: hostname:/ */
1269 end = name + namelen;
1270 }
1271
1272 if (end <= name)
1273 return -EINVAL;
1274
1275 /* do dns_resolve upcall */
1276 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1277 if (ip_len > 0)
1278 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1279 else
1280 ret = -ESRCH;
1281
1282 kfree(ip_addr);
1283
1284 *ipend = end;
1285
1286 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1287 ret, ret ? "failed" : ceph_pr_addr(ss));
1288
1289 return ret;
1290}
1291#else
1292static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1293 struct sockaddr_storage *ss, char delim, const char **ipend)
1294{
1295 return -EINVAL;
1296}
1297#endif
1298
1299/*
1300 * Parse a server name (IP or hostname). If a valid IP address is not found
1301 * then try to extract a hostname to resolve using userspace DNS upcall.
1302 */
1303static int ceph_parse_server_name(const char *name, size_t namelen,
1304 struct sockaddr_storage *ss, char delim, const char **ipend)
1305{
1306 int ret;
1307
1308 ret = ceph_pton(name, namelen, ss, delim, ipend);
1309 if (ret)
1310 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1311
1312 return ret;
1313}
1314
1315/*
Sage Weil31b80062009-10-06 11:31:13 -07001316 * Parse an ip[:port] list into an addr array. Use the default
1317 * monitor port if a port isn't specified.
1318 */
1319int ceph_parse_ips(const char *c, const char *end,
1320 struct ceph_entity_addr *addr,
1321 int max_count, int *count)
1322{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001323 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001324 const char *p = c;
1325
1326 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1327 for (i = 0; i < max_count; i++) {
1328 const char *ipend;
1329 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001330 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001331 char delim = ',';
1332
1333 if (*p == '[') {
1334 delim = ']';
1335 p++;
1336 }
Sage Weil31b80062009-10-06 11:31:13 -07001337
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001338 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1339 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001340 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001341 ret = -EINVAL;
1342
Sage Weil31b80062009-10-06 11:31:13 -07001343 p = ipend;
1344
Sage Weil39139f62010-07-08 09:54:52 -07001345 if (delim == ']') {
1346 if (*p != ']') {
1347 dout("missing matching ']'\n");
1348 goto bad;
1349 }
1350 p++;
1351 }
1352
Sage Weil31b80062009-10-06 11:31:13 -07001353 /* port? */
1354 if (p < end && *p == ':') {
1355 port = 0;
1356 p++;
1357 while (p < end && *p >= '0' && *p <= '9') {
1358 port = (port * 10) + (*p - '0');
1359 p++;
1360 }
1361 if (port > 65535 || port == 0)
1362 goto bad;
1363 } else {
1364 port = CEPH_MON_PORT;
1365 }
1366
1367 addr_set_port(ss, port);
1368
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001369 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001370
1371 if (p == end)
1372 break;
1373 if (*p != ',')
1374 goto bad;
1375 p++;
1376 }
1377
1378 if (p != end)
1379 goto bad;
1380
1381 if (count)
1382 *count = i + 1;
1383 return 0;
1384
1385bad:
Sage Weil39139f62010-07-08 09:54:52 -07001386 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001387 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001388}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001389EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001390
Sage Weileed0ef22009-11-10 14:34:36 -08001391static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001392{
Sage Weileed0ef22009-11-10 14:34:36 -08001393 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001394
1395 if (verify_hello(con) < 0)
1396 return -1;
1397
Sage Weil63f2d212009-11-03 15:17:56 -08001398 ceph_decode_addr(&con->actual_peer_addr);
1399 ceph_decode_addr(&con->peer_addr_for_me);
1400
Sage Weil31b80062009-10-06 11:31:13 -07001401 /*
1402 * Make sure the other end is who we wanted. note that the other
1403 * end may not yet know their ip address, so if it's 0.0.0.0, give
1404 * them the benefit of the doubt.
1405 */
Sage Weil103e2d32010-01-07 16:12:36 -08001406 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1407 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001408 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1409 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001410 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001411 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001412 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001413 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001414 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001415 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001416 return -1;
1417 }
1418
1419 /*
1420 * did we learn our address?
1421 */
1422 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1423 int port = addr_port(&con->msgr->inst.addr.in_addr);
1424
1425 memcpy(&con->msgr->inst.addr.in_addr,
1426 &con->peer_addr_for_me.in_addr,
1427 sizeof(con->peer_addr_for_me.in_addr));
1428 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001429 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001430 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001431 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001432 }
1433
Sage Weileed0ef22009-11-10 14:34:36 -08001434 set_bit(NEGOTIATING, &con->state);
1435 prepare_read_connect(con);
1436 return 0;
1437}
1438
Sage Weil04a419f2009-12-23 09:30:21 -08001439static void fail_protocol(struct ceph_connection *con)
1440{
1441 reset_connection(con);
1442 set_bit(CLOSED, &con->state); /* in case there's queued work */
Sage Weil04a419f2009-12-23 09:30:21 -08001443}
1444
Sage Weileed0ef22009-11-10 14:34:36 -08001445static int process_connect(struct ceph_connection *con)
1446{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001447 u64 sup_feat = con->msgr->supported_features;
1448 u64 req_feat = con->msgr->required_features;
Sage Weil04a419f2009-12-23 09:30:21 -08001449 u64 server_feat = le64_to_cpu(con->in_reply.features);
Sage Weil0da5d702011-05-19 11:21:05 -07001450 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001451
Sage Weileed0ef22009-11-10 14:34:36 -08001452 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1453
Sage Weil31b80062009-10-06 11:31:13 -07001454 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001455 case CEPH_MSGR_TAG_FEATURES:
1456 pr_err("%s%lld %s feature set mismatch,"
1457 " my %llx < server's %llx, missing %llx\n",
1458 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001459 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001460 sup_feat, server_feat, server_feat & ~sup_feat);
1461 con->error_msg = "missing required protocol features";
1462 fail_protocol(con);
1463 return -1;
1464
Sage Weil31b80062009-10-06 11:31:13 -07001465 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001466 pr_err("%s%lld %s protocol version mismatch,"
1467 " my %d != server's %d\n",
1468 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001469 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001470 le32_to_cpu(con->out_connect.protocol_version),
1471 le32_to_cpu(con->in_reply.protocol_version));
1472 con->error_msg = "protocol version mismatch";
Sage Weil04a419f2009-12-23 09:30:21 -08001473 fail_protocol(con);
Sage Weil31b80062009-10-06 11:31:13 -07001474 return -1;
1475
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001476 case CEPH_MSGR_TAG_BADAUTHORIZER:
1477 con->auth_retry++;
1478 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1479 con->auth_retry);
1480 if (con->auth_retry == 2) {
1481 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001482 return -1;
1483 }
1484 con->auth_retry = 1;
Alex Eldere2200422012-05-23 14:35:23 -05001485 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001486 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001487 if (ret < 0)
1488 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001489 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001490 break;
Sage Weil31b80062009-10-06 11:31:13 -07001491
1492 case CEPH_MSGR_TAG_RESETSESSION:
1493 /*
1494 * If we connected with a large connect_seq but the peer
1495 * has no record of a session with us (no connection, or
1496 * connect_seq == 0), they will send RESETSESION to indicate
1497 * that they must have reset their session, and may have
1498 * dropped messages.
1499 */
1500 dout("process_connect got RESET peer seq %u\n",
1501 le32_to_cpu(con->in_connect.connect_seq));
1502 pr_err("%s%lld %s connection reset\n",
1503 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001504 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001505 reset_connection(con);
Alex Eldere2200422012-05-23 14:35:23 -05001506 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001507 ret = prepare_write_connect(con);
1508 if (ret < 0)
1509 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001510 prepare_read_connect(con);
1511
1512 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08001513 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001514 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
1515 if (con->ops->peer_reset)
1516 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08001517 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07001518 if (test_bit(CLOSED, &con->state) ||
1519 test_bit(OPENING, &con->state))
1520 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07001521 break;
1522
1523 case CEPH_MSGR_TAG_RETRY_SESSION:
1524 /*
1525 * If we sent a smaller connect_seq than the peer has, try
1526 * again with a larger value.
1527 */
1528 dout("process_connect got RETRY my seq = %u, peer_seq = %u\n",
1529 le32_to_cpu(con->out_connect.connect_seq),
1530 le32_to_cpu(con->in_connect.connect_seq));
1531 con->connect_seq = le32_to_cpu(con->in_connect.connect_seq);
Alex Eldere2200422012-05-23 14:35:23 -05001532 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001533 ret = prepare_write_connect(con);
1534 if (ret < 0)
1535 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001536 prepare_read_connect(con);
1537 break;
1538
1539 case CEPH_MSGR_TAG_RETRY_GLOBAL:
1540 /*
1541 * If we sent a smaller global_seq than the peer has, try
1542 * again with a larger value.
1543 */
Sage Weileed0ef22009-11-10 14:34:36 -08001544 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07001545 con->peer_global_seq,
1546 le32_to_cpu(con->in_connect.global_seq));
1547 get_global_seq(con->msgr,
1548 le32_to_cpu(con->in_connect.global_seq));
Alex Eldere2200422012-05-23 14:35:23 -05001549 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001550 ret = prepare_write_connect(con);
1551 if (ret < 0)
1552 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001553 prepare_read_connect(con);
1554 break;
1555
1556 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08001557 if (req_feat & ~server_feat) {
1558 pr_err("%s%lld %s protocol feature mismatch,"
1559 " my required %llx > server's %llx, need %llx\n",
1560 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001561 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001562 req_feat, server_feat, req_feat & ~server_feat);
1563 con->error_msg = "missing required protocol features";
1564 fail_protocol(con);
1565 return -1;
1566 }
Sage Weil31b80062009-10-06 11:31:13 -07001567 clear_bit(CONNECTING, &con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001568 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
1569 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07001570 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07001571 dout("process_connect got READY gseq %d cseq %d (%d)\n",
1572 con->peer_global_seq,
1573 le32_to_cpu(con->in_reply.connect_seq),
1574 con->connect_seq);
1575 WARN_ON(con->connect_seq !=
1576 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08001577
1578 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elder928443c2012-05-22 11:41:43 -05001579 set_bit(LOSSYTX, &con->flags);
Sage Weil92ac41d2009-12-14 14:56:56 -08001580
Sage Weil31b80062009-10-06 11:31:13 -07001581 prepare_read_tag(con);
1582 break;
1583
1584 case CEPH_MSGR_TAG_WAIT:
1585 /*
1586 * If there is a connection race (we are opening
1587 * connections to each other), one of us may just have
1588 * to WAIT. This shouldn't happen if we are the
1589 * client.
1590 */
Sage Weil04177882011-05-12 15:33:17 -07001591 pr_err("process_connect got WAIT as client\n");
1592 con->error_msg = "protocol error, got WAIT as client";
1593 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07001594
1595 default:
1596 pr_err("connect protocol error, will retry\n");
1597 con->error_msg = "protocol error, garbage tag during connect";
1598 return -1;
1599 }
1600 return 0;
1601}
1602
1603
1604/*
1605 * read (part of) an ack
1606 */
1607static int read_partial_ack(struct ceph_connection *con)
1608{
Alex Elderfd516532012-05-10 10:29:50 -05001609 int size = sizeof (con->in_temp_ack);
1610 int end = size;
1611
1612 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001613}
1614
1615
1616/*
1617 * We can finally discard anything that's been acked.
1618 */
1619static void process_ack(struct ceph_connection *con)
1620{
1621 struct ceph_msg *m;
1622 u64 ack = le64_to_cpu(con->in_temp_ack);
1623 u64 seq;
1624
Sage Weil31b80062009-10-06 11:31:13 -07001625 while (!list_empty(&con->out_sent)) {
1626 m = list_first_entry(&con->out_sent, struct ceph_msg,
1627 list_head);
1628 seq = le64_to_cpu(m->hdr.seq);
1629 if (seq > ack)
1630 break;
1631 dout("got ack for seq %llu type %d at %p\n", seq,
1632 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07001633 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07001634 ceph_msg_remove(m);
1635 }
Sage Weil31b80062009-10-06 11:31:13 -07001636 prepare_read_tag(con);
1637}
1638
1639
1640
1641
Yehuda Sadeh24504182010-01-08 13:58:34 -08001642static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07001643 struct kvec *section,
1644 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08001645{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001646 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07001647
Yehuda Sadeh24504182010-01-08 13:58:34 -08001648 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07001649
Yehuda Sadeh24504182010-01-08 13:58:34 -08001650 while (section->iov_len < sec_len) {
1651 BUG_ON(section->iov_base == NULL);
1652 left = sec_len - section->iov_len;
1653 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
1654 section->iov_len, left);
1655 if (ret <= 0)
1656 return ret;
1657 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08001658 }
Alex Elderfe3ad592012-02-15 07:43:54 -06001659 if (section->iov_len == sec_len)
1660 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08001661
1662 return 1;
1663}
1664
Alex Elder1c20f2d2012-06-04 14:43:32 -05001665static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
1666 struct ceph_msg_header *hdr);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001667
1668
1669static int read_partial_message_pages(struct ceph_connection *con,
1670 struct page **pages,
Eric Dumazet95c96172012-04-15 05:58:06 +00001671 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001672{
1673 void *p;
1674 int ret;
1675 int left;
1676
1677 left = min((int)(data_len - con->in_msg_pos.data_pos),
1678 (int)(PAGE_SIZE - con->in_msg_pos.page_pos));
1679 /* (page) data */
1680 BUG_ON(pages == NULL);
1681 p = kmap(pages[con->in_msg_pos.page]);
1682 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1683 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001684 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001685 con->in_data_crc =
1686 crc32c(con->in_data_crc,
1687 p + con->in_msg_pos.page_pos, ret);
1688 kunmap(pages[con->in_msg_pos.page]);
1689 if (ret <= 0)
1690 return ret;
1691 con->in_msg_pos.data_pos += ret;
1692 con->in_msg_pos.page_pos += ret;
1693 if (con->in_msg_pos.page_pos == PAGE_SIZE) {
1694 con->in_msg_pos.page_pos = 0;
1695 con->in_msg_pos.page++;
1696 }
1697
1698 return ret;
1699}
1700
1701#ifdef CONFIG_BLOCK
1702static int read_partial_message_bio(struct ceph_connection *con,
1703 struct bio **bio_iter, int *bio_seg,
Eric Dumazet95c96172012-04-15 05:58:06 +00001704 unsigned int data_len, bool do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001705{
1706 struct bio_vec *bv = bio_iovec_idx(*bio_iter, *bio_seg);
1707 void *p;
1708 int ret, left;
1709
1710 if (IS_ERR(bv))
1711 return PTR_ERR(bv);
1712
1713 left = min((int)(data_len - con->in_msg_pos.data_pos),
1714 (int)(bv->bv_len - con->in_msg_pos.page_pos));
1715
1716 p = kmap(bv->bv_page) + bv->bv_offset;
1717
1718 ret = ceph_tcp_recvmsg(con->sock, p + con->in_msg_pos.page_pos,
1719 left);
Alex Elderbca064d2012-02-15 07:43:54 -06001720 if (ret > 0 && do_datacrc)
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001721 con->in_data_crc =
1722 crc32c(con->in_data_crc,
1723 p + con->in_msg_pos.page_pos, ret);
1724 kunmap(bv->bv_page);
1725 if (ret <= 0)
1726 return ret;
1727 con->in_msg_pos.data_pos += ret;
1728 con->in_msg_pos.page_pos += ret;
1729 if (con->in_msg_pos.page_pos == bv->bv_len) {
1730 con->in_msg_pos.page_pos = 0;
1731 iter_bio_next(bio_iter, bio_seg);
1732 }
1733
1734 return ret;
1735}
1736#endif
1737
Sage Weil31b80062009-10-06 11:31:13 -07001738/*
1739 * read (part of) a message.
1740 */
1741static int read_partial_message(struct ceph_connection *con)
1742{
1743 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05001744 int size;
1745 int end;
Sage Weil31b80062009-10-06 11:31:13 -07001746 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00001747 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06001748 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07001749 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06001750 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001751
1752 dout("read_partial_message con %p msg %p\n", con, m);
1753
1754 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05001755 size = sizeof (con->in_hdr);
1756 end = size;
1757 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05001758 if (ret <= 0)
1759 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06001760
1761 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
1762 if (cpu_to_le32(crc) != con->in_hdr.crc) {
1763 pr_err("read_partial_message bad hdr "
1764 " crc %u != expected %u\n",
1765 crc, con->in_hdr.crc);
1766 return -EBADMSG;
1767 }
1768
Sage Weil31b80062009-10-06 11:31:13 -07001769 front_len = le32_to_cpu(con->in_hdr.front_len);
1770 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
1771 return -EIO;
1772 middle_len = le32_to_cpu(con->in_hdr.middle_len);
1773 if (middle_len > CEPH_MSG_MAX_DATA_LEN)
1774 return -EIO;
1775 data_len = le32_to_cpu(con->in_hdr.data_len);
1776 if (data_len > CEPH_MSG_MAX_DATA_LEN)
1777 return -EIO;
1778
Sage Weilae187562010-04-22 07:47:01 -07001779 /* verify seq# */
1780 seq = le64_to_cpu(con->in_hdr.seq);
1781 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07001782 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07001783 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001784 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07001785 seq, con->in_seq + 1);
1786 con->in_base_pos = -front_len - middle_len - data_len -
1787 sizeof(m->footer);
1788 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07001789 return 0;
1790 } else if ((s64)seq - (s64)con->in_seq > 1) {
1791 pr_err("read_partial_message bad seq %lld expected %lld\n",
1792 seq, con->in_seq + 1);
1793 con->error_msg = "bad message sequence # for incoming message";
1794 return -EBADMSG;
1795 }
1796
Sage Weil31b80062009-10-06 11:31:13 -07001797 /* allocate message? */
1798 if (!con->in_msg) {
1799 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
1800 con->in_hdr.front_len, con->in_hdr.data_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05001801 if (ceph_con_in_msg_alloc(con, &con->in_hdr)) {
Sage Weil31b80062009-10-06 11:31:13 -07001802 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07001803 dout("alloc_msg said skip message\n");
Sage Weilae32be32010-06-13 10:30:19 -07001804 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001805 con->in_base_pos = -front_len - middle_len - data_len -
1806 sizeof(m->footer);
1807 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07001808 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07001809 return 0;
1810 }
Sage Weila79832f2010-04-01 16:06:19 -07001811 if (!con->in_msg) {
Sage Weil5b3a4db2010-02-19 21:43:23 -08001812 con->error_msg =
1813 "error allocating memory for incoming message";
Sage Weila79832f2010-04-01 16:06:19 -07001814 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -07001815 }
Alex Elder38941f82012-06-01 14:56:43 -05001816
1817 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07001818 m = con->in_msg;
1819 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001820 if (m->middle)
1821 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001822
1823 con->in_msg_pos.page = 0;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001824 if (m->pages)
Sage Weilc5c6b192010-11-09 12:40:00 -08001825 con->in_msg_pos.page_pos = m->page_alignment;
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001826 else
1827 con->in_msg_pos.page_pos = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08001828 con->in_msg_pos.data_pos = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001829 }
1830
1831 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001832 ret = read_partial_message_section(con, &m->front, front_len,
1833 &con->in_front_crc);
1834 if (ret <= 0)
1835 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001836
1837 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08001838 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07001839 ret = read_partial_message_section(con, &m->middle->vec,
1840 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08001841 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07001842 if (ret <= 0)
1843 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001844 }
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001845#ifdef CONFIG_BLOCK
1846 if (m->bio && !m->bio_iter)
1847 init_bio_iter(m->bio, &m->bio_iter, &m->bio_seg);
1848#endif
Sage Weil31b80062009-10-06 11:31:13 -07001849
1850 /* (page) data */
Sage Weil31b80062009-10-06 11:31:13 -07001851 while (con->in_msg_pos.data_pos < data_len) {
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001852 if (m->pages) {
1853 ret = read_partial_message_pages(con, m->pages,
Alex Elderbca064d2012-02-15 07:43:54 -06001854 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001855 if (ret <= 0)
1856 return ret;
1857#ifdef CONFIG_BLOCK
1858 } else if (m->bio) {
1859
1860 ret = read_partial_message_bio(con,
1861 &m->bio_iter, &m->bio_seg,
Alex Elderbca064d2012-02-15 07:43:54 -06001862 data_len, do_datacrc);
Yehuda Sadeh68b44762010-04-06 15:01:27 -07001863 if (ret <= 0)
1864 return ret;
1865#endif
1866 } else {
1867 BUG_ON(1);
Sage Weil31b80062009-10-06 11:31:13 -07001868 }
1869 }
1870
Sage Weil31b80062009-10-06 11:31:13 -07001871 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05001872 size = sizeof (m->footer);
1873 end += size;
1874 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05001875 if (ret <= 0)
1876 return ret;
1877
Sage Weil31b80062009-10-06 11:31:13 -07001878 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
1879 m, front_len, m->footer.front_crc, middle_len,
1880 m->footer.middle_crc, data_len, m->footer.data_crc);
1881
1882 /* crc ok? */
1883 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
1884 pr_err("read_partial_message %p front crc %u != exp. %u\n",
1885 m, con->in_front_crc, m->footer.front_crc);
1886 return -EBADMSG;
1887 }
1888 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
1889 pr_err("read_partial_message %p middle crc %u != exp %u\n",
1890 m, con->in_middle_crc, m->footer.middle_crc);
1891 return -EBADMSG;
1892 }
Alex Elderbca064d2012-02-15 07:43:54 -06001893 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07001894 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
1895 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1896 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
1897 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
1898 return -EBADMSG;
1899 }
1900
1901 return 1; /* done! */
1902}
1903
1904/*
1905 * Process message. This happens in the worker thread. The callback should
1906 * be careful not to do anything that waits on other incoming messages or it
1907 * may deadlock.
1908 */
1909static void process_message(struct ceph_connection *con)
1910{
Sage Weil5e095e82009-12-14 14:30:34 -08001911 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07001912
Alex Elder38941f82012-06-01 14:56:43 -05001913 BUG_ON(con->in_msg->con != con);
1914 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08001915 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07001916 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07001917 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07001918
1919 /* if first message, set peer_name */
1920 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07001921 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07001922
Sage Weil31b80062009-10-06 11:31:13 -07001923 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08001924 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001925
1926 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
1927 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07001928 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07001929 le16_to_cpu(msg->hdr.type),
1930 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
1931 le32_to_cpu(msg->hdr.front_len),
1932 le32_to_cpu(msg->hdr.data_len),
1933 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
1934 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08001935
1936 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07001937 prepare_read_tag(con);
1938}
1939
1940
1941/*
1942 * Write something to the socket. Called in a worker thread when the
1943 * socket appears to be writeable and we have something ready to send.
1944 */
1945static int try_write(struct ceph_connection *con)
1946{
Sage Weil31b80062009-10-06 11:31:13 -07001947 int ret = 1;
1948
Sage Weild59315c2012-06-21 12:49:23 -07001949 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07001950
Sage Weil31b80062009-10-06 11:31:13 -07001951more:
1952 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
1953
1954 /* open the socket first? */
1955 if (con->sock == NULL) {
Alex Eldera5988c42012-05-29 11:04:58 -05001956 clear_bit(NEGOTIATING, &con->state);
1957 set_bit(CONNECTING, &con->state);
1958
Alex Eldere2200422012-05-23 14:35:23 -05001959 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001960 prepare_write_banner(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05001961 ret = prepare_write_connect(con);
1962 if (ret < 0)
1963 goto out;
Sage Weileed0ef22009-11-10 14:34:36 -08001964 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07001965
Sage Weilcf3e5c42009-12-11 09:48:05 -08001966 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07001967 con->in_tag = CEPH_MSGR_TAG_READY;
1968 dout("try_write initiating connect on %p new state %lu\n",
1969 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06001970 ret = ceph_tcp_connect(con);
1971 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07001972 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07001973 goto out;
1974 }
1975 }
1976
1977more_kvec:
1978 /* kvec data queued? */
1979 if (con->out_skip) {
1980 ret = write_partial_skip(con);
1981 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08001982 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001983 }
1984 if (con->out_kvec_left) {
1985 ret = write_partial_kvec(con);
1986 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08001987 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001988 }
1989
1990 /* msg pages? */
1991 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08001992 if (con->out_msg_done) {
1993 ceph_msg_put(con->out_msg);
1994 con->out_msg = NULL; /* we're done with this one */
1995 goto do_next;
1996 }
1997
Sage Weil31b80062009-10-06 11:31:13 -07001998 ret = write_partial_msg_pages(con);
1999 if (ret == 1)
2000 goto more_kvec; /* we need to send the footer, too! */
2001 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002002 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002003 if (ret < 0) {
2004 dout("try_write write_partial_msg_pages err %d\n",
2005 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002006 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002007 }
2008 }
2009
Sage Weilc86a2932009-12-14 14:04:30 -08002010do_next:
Sage Weil31b80062009-10-06 11:31:13 -07002011 if (!test_bit(CONNECTING, &con->state)) {
2012 /* is anything else pending? */
2013 if (!list_empty(&con->out_queue)) {
2014 prepare_write_message(con);
2015 goto more;
2016 }
2017 if (con->in_seq > con->in_seq_acked) {
2018 prepare_write_ack(con);
2019 goto more;
2020 }
Alex Elder928443c2012-05-22 11:41:43 -05002021 if (test_and_clear_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002022 prepare_write_keepalive(con);
2023 goto more;
2024 }
2025 }
2026
2027 /* Nothing to do! */
Alex Elder928443c2012-05-22 11:41:43 -05002028 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002029 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002030 ret = 0;
2031out:
Sage Weil42961d22011-01-25 08:19:34 -08002032 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002033 return ret;
2034}
2035
2036
2037
2038/*
2039 * Read what we can from the socket.
2040 */
2041static int try_read(struct ceph_connection *con)
2042{
Sage Weil31b80062009-10-06 11:31:13 -07002043 int ret = -1;
2044
2045 if (!con->sock)
2046 return 0;
2047
2048 if (test_bit(STANDBY, &con->state))
2049 return 0;
2050
2051 dout("try_read start on %p\n", con);
Sage Weilec302642009-12-22 10:43:42 -08002052
Sage Weil31b80062009-10-06 11:31:13 -07002053more:
2054 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2055 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002056
2057 /*
2058 * process_connect and process_message drop and re-take
2059 * con->mutex. make sure we handle a racing close or reopen.
2060 */
2061 if (test_bit(CLOSED, &con->state) ||
2062 test_bit(OPENING, &con->state)) {
2063 ret = -EAGAIN;
2064 goto out;
2065 }
2066
Sage Weil31b80062009-10-06 11:31:13 -07002067 if (test_bit(CONNECTING, &con->state)) {
Sage Weileed0ef22009-11-10 14:34:36 -08002068 if (!test_bit(NEGOTIATING, &con->state)) {
2069 dout("try_read connecting\n");
2070 ret = read_partial_banner(con);
2071 if (ret <= 0)
Sage Weileed0ef22009-11-10 14:34:36 -08002072 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002073 ret = process_banner(con);
2074 if (ret < 0)
2075 goto out;
Sage Weileed0ef22009-11-10 14:34:36 -08002076 }
Sage Weil31b80062009-10-06 11:31:13 -07002077 ret = read_partial_connect(con);
2078 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002079 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002080 ret = process_connect(con);
2081 if (ret < 0)
2082 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002083 goto more;
2084 }
2085
2086 if (con->in_base_pos < 0) {
2087 /*
2088 * skipping + discarding content.
2089 *
2090 * FIXME: there must be a better way to do this!
2091 */
Alex Elder84495f42012-02-15 07:43:55 -06002092 static char buf[SKIP_BUF_SIZE];
2093 int skip = min((int) sizeof (buf), -con->in_base_pos);
2094
Sage Weil31b80062009-10-06 11:31:13 -07002095 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2096 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2097 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002098 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002099 con->in_base_pos += ret;
2100 if (con->in_base_pos)
2101 goto more;
2102 }
2103 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2104 /*
2105 * what's next?
2106 */
2107 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2108 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002109 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002110 dout("try_read got tag %d\n", (int)con->in_tag);
2111 switch (con->in_tag) {
2112 case CEPH_MSGR_TAG_MSG:
2113 prepare_read_message(con);
2114 break;
2115 case CEPH_MSGR_TAG_ACK:
2116 prepare_read_ack(con);
2117 break;
2118 case CEPH_MSGR_TAG_CLOSE:
2119 set_bit(CLOSED, &con->state); /* fixme */
Sage Weil98bdb0a2011-01-25 08:17:48 -08002120 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002121 default:
2122 goto bad_tag;
2123 }
2124 }
2125 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2126 ret = read_partial_message(con);
2127 if (ret <= 0) {
2128 switch (ret) {
2129 case -EBADMSG:
2130 con->error_msg = "bad crc";
2131 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002132 break;
Sage Weil31b80062009-10-06 11:31:13 -07002133 case -EIO:
2134 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002135 break;
Sage Weil31b80062009-10-06 11:31:13 -07002136 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002137 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002138 }
2139 if (con->in_tag == CEPH_MSGR_TAG_READY)
2140 goto more;
2141 process_message(con);
2142 goto more;
2143 }
2144 if (con->in_tag == CEPH_MSGR_TAG_ACK) {
2145 ret = read_partial_ack(con);
2146 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002147 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002148 process_ack(con);
2149 goto more;
2150 }
2151
Sage Weil31b80062009-10-06 11:31:13 -07002152out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002153 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002154 return ret;
2155
2156bad_tag:
2157 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2158 con->error_msg = "protocol error, garbage tag";
2159 ret = -1;
2160 goto out;
2161}
2162
2163
2164/*
2165 * Atomically queue work on a connection. Bump @con reference to
2166 * avoid races with connection teardown.
Sage Weil31b80062009-10-06 11:31:13 -07002167 */
2168static void queue_con(struct ceph_connection *con)
2169{
Sage Weil31b80062009-10-06 11:31:13 -07002170 if (!con->ops->get(con)) {
2171 dout("queue_con %p ref count 0\n", con);
2172 return;
2173 }
2174
Tejun Heof363e45fd12011-01-03 14:49:46 +01002175 if (!queue_delayed_work(ceph_msgr_wq, &con->work, 0)) {
Sage Weil31b80062009-10-06 11:31:13 -07002176 dout("queue_con %p - already queued\n", con);
2177 con->ops->put(con);
2178 } else {
2179 dout("queue_con %p\n", con);
2180 }
2181}
2182
2183/*
2184 * Do some work on a connection. Drop a connection ref when we're done.
2185 */
2186static void con_work(struct work_struct *work)
2187{
2188 struct ceph_connection *con = container_of(work, struct ceph_connection,
2189 work.work);
Sage Weil0da5d702011-05-19 11:21:05 -07002190 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002191
Sage Weil9dd46582010-04-28 13:51:50 -07002192 mutex_lock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002193restart:
Alex Elder928443c2012-05-22 11:41:43 -05002194 if (test_and_clear_bit(BACKOFF, &con->flags)) {
Sage Weil60bf8bf2011-03-04 12:24:28 -08002195 dout("con_work %p backing off\n", con);
2196 if (queue_delayed_work(ceph_msgr_wq, &con->work,
2197 round_jiffies_relative(con->delay))) {
2198 dout("con_work %p backoff %lu\n", con, con->delay);
2199 mutex_unlock(&con->mutex);
2200 return;
2201 } else {
2202 con->ops->put(con);
2203 dout("con_work %p FAILED to back off %lu\n", con,
2204 con->delay);
2205 }
2206 }
Sage Weil9dd46582010-04-28 13:51:50 -07002207
Sage Weile00de342011-03-04 12:25:05 -08002208 if (test_bit(STANDBY, &con->state)) {
2209 dout("con_work %p STANDBY\n", con);
2210 goto done;
2211 }
Sage Weil31b80062009-10-06 11:31:13 -07002212 if (test_bit(CLOSED, &con->state)) { /* e.g. if we are replaced */
2213 dout("con_work CLOSED\n");
2214 con_close_socket(con);
2215 goto done;
2216 }
2217 if (test_and_clear_bit(OPENING, &con->state)) {
2218 /* reopen w/ new peer */
2219 dout("con_work OPENING\n");
2220 con_close_socket(con);
2221 }
2222
Alex Elder928443c2012-05-22 11:41:43 -05002223 if (test_and_clear_bit(SOCK_CLOSED, &con->flags))
Sage Weil0da5d702011-05-19 11:21:05 -07002224 goto fault;
2225
2226 ret = try_read(con);
2227 if (ret == -EAGAIN)
2228 goto restart;
2229 if (ret < 0)
2230 goto fault;
2231
2232 ret = try_write(con);
2233 if (ret == -EAGAIN)
2234 goto restart;
2235 if (ret < 0)
2236 goto fault;
Sage Weil31b80062009-10-06 11:31:13 -07002237
2238done:
Sage Weil9dd46582010-04-28 13:51:50 -07002239 mutex_unlock(&con->mutex);
Sage Weil9dd46582010-04-28 13:51:50 -07002240done_unlocked:
Sage Weil31b80062009-10-06 11:31:13 -07002241 con->ops->put(con);
Sage Weil0da5d702011-05-19 11:21:05 -07002242 return;
2243
2244fault:
2245 mutex_unlock(&con->mutex);
2246 ceph_fault(con); /* error/fault path */
2247 goto done_unlocked;
Sage Weil31b80062009-10-06 11:31:13 -07002248}
2249
2250
2251/*
2252 * Generic error/fault handler. A retry mechanism is used with
2253 * exponential backoff
2254 */
2255static void ceph_fault(struct ceph_connection *con)
2256{
2257 pr_err("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002258 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002259 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002260 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002261
Alex Elder928443c2012-05-22 11:41:43 -05002262 if (test_bit(LOSSYTX, &con->flags)) {
Sage Weil31b80062009-10-06 11:31:13 -07002263 dout("fault on LOSSYTX channel\n");
2264 goto out;
2265 }
2266
Sage Weilec302642009-12-22 10:43:42 -08002267 mutex_lock(&con->mutex);
Sage Weil91e45ce32010-02-15 12:05:09 -08002268 if (test_bit(CLOSED, &con->state))
2269 goto out_unlock;
Sage Weilec302642009-12-22 10:43:42 -08002270
Sage Weil31b80062009-10-06 11:31:13 -07002271 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002272
2273 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002274 BUG_ON(con->in_msg->con != con);
2275 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002276 ceph_msg_put(con->in_msg);
2277 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002278 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002279 }
Sage Weil31b80062009-10-06 11:31:13 -07002280
Sage Weile80a52d2010-02-25 12:40:45 -08002281 /* Requeue anything that hasn't been acked */
2282 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002283
Sage Weile76661d2011-03-03 10:10:15 -08002284 /* If there are no messages queued or keepalive pending, place
2285 * the connection in a STANDBY state */
2286 if (list_empty(&con->out_queue) &&
Alex Elder928443c2012-05-22 11:41:43 -05002287 !test_bit(KEEPALIVE_PENDING, &con->flags)) {
Sage Weile00de342011-03-04 12:25:05 -08002288 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elder928443c2012-05-22 11:41:43 -05002289 clear_bit(WRITE_PENDING, &con->flags);
Sage Weil31b80062009-10-06 11:31:13 -07002290 set_bit(STANDBY, &con->state);
Sage Weile80a52d2010-02-25 12:40:45 -08002291 } else {
2292 /* retry after a delay. */
2293 if (con->delay == 0)
2294 con->delay = BASE_DELAY_INTERVAL;
2295 else if (con->delay < MAX_DELAY_INTERVAL)
2296 con->delay *= 2;
Sage Weile80a52d2010-02-25 12:40:45 -08002297 con->ops->get(con);
2298 if (queue_delayed_work(ceph_msgr_wq, &con->work,
Sage Weil60bf8bf2011-03-04 12:24:28 -08002299 round_jiffies_relative(con->delay))) {
2300 dout("fault queued %p delay %lu\n", con, con->delay);
2301 } else {
Sage Weile80a52d2010-02-25 12:40:45 -08002302 con->ops->put(con);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002303 dout("fault failed to queue %p delay %lu, backoff\n",
2304 con, con->delay);
2305 /*
2306 * In many cases we see a socket state change
2307 * while con_work is running and end up
2308 * queuing (non-delayed) work, such that we
2309 * can't backoff with a delay. Set a flag so
2310 * that when con_work restarts we schedule the
2311 * delay then.
2312 */
Alex Elder928443c2012-05-22 11:41:43 -05002313 set_bit(BACKOFF, &con->flags);
Sage Weil60bf8bf2011-03-04 12:24:28 -08002314 }
Sage Weil31b80062009-10-06 11:31:13 -07002315 }
2316
Sage Weil91e45ce32010-02-15 12:05:09 -08002317out_unlock:
2318 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002319out:
Sage Weil161fd652010-02-25 12:38:57 -08002320 /*
2321 * in case we faulted due to authentication, invalidate our
2322 * current tickets so that we can get new ones.
Sage Weil213c99e2010-08-03 10:25:11 -07002323 */
Sage Weil161fd652010-02-25 12:38:57 -08002324 if (con->auth_retry && con->ops->invalidate_authorizer) {
2325 dout("calling invalidate_authorizer()\n");
2326 con->ops->invalidate_authorizer(con);
2327 }
2328
Sage Weil31b80062009-10-06 11:31:13 -07002329 if (con->ops->fault)
2330 con->ops->fault(con);
2331}
2332
2333
2334
2335/*
Alex Elder15d98822012-05-26 23:26:43 -05002336 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002337 */
Alex Elder15d98822012-05-26 23:26:43 -05002338void ceph_messenger_init(struct ceph_messenger *msgr,
2339 struct ceph_entity_addr *myaddr,
2340 u32 supported_features,
2341 u32 required_features,
2342 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002343{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002344 msgr->supported_features = supported_features;
2345 msgr->required_features = required_features;
2346
Sage Weil31b80062009-10-06 11:31:13 -07002347 spin_lock_init(&msgr->global_seq_lock);
2348
Sage Weil31b80062009-10-06 11:31:13 -07002349 if (myaddr)
2350 msgr->inst.addr = *myaddr;
2351
2352 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002353 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002354 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002355 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002356 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002357
Alex Elder15d98822012-05-26 23:26:43 -05002358 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002359}
Alex Elder15d98822012-05-26 23:26:43 -05002360EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002361
Sage Weile00de342011-03-04 12:25:05 -08002362static void clear_standby(struct ceph_connection *con)
2363{
2364 /* come back from STANDBY? */
2365 if (test_and_clear_bit(STANDBY, &con->state)) {
2366 mutex_lock(&con->mutex);
2367 dout("clear_standby %p and ++connect_seq\n", con);
2368 con->connect_seq++;
Alex Elder928443c2012-05-22 11:41:43 -05002369 WARN_ON(test_bit(WRITE_PENDING, &con->flags));
2370 WARN_ON(test_bit(KEEPALIVE_PENDING, &con->flags));
Sage Weile00de342011-03-04 12:25:05 -08002371 mutex_unlock(&con->mutex);
2372 }
2373}
2374
Sage Weil31b80062009-10-06 11:31:13 -07002375/*
2376 * Queue up an outgoing message on the given connection.
2377 */
2378void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2379{
2380 if (test_bit(CLOSED, &con->state)) {
2381 dout("con_send %p closed, dropping %p\n", con, msg);
2382 ceph_msg_put(msg);
2383 return;
2384 }
2385
2386 /* set src+dst */
Sage Weildbad1852010-03-25 15:45:38 -07002387 msg->hdr.src = con->msgr->inst.name;
Sage Weil31b80062009-10-06 11:31:13 -07002388
Sage Weil3ca02ef2010-03-01 15:25:00 -08002389 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2390
Sage Weile84346b2010-05-11 21:20:38 -07002391 msg->needs_out_seq = true;
2392
Sage Weil31b80062009-10-06 11:31:13 -07002393 /* queue */
Sage Weilec302642009-12-22 10:43:42 -08002394 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002395
Alex Elder38941f82012-06-01 14:56:43 -05002396 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002397 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002398 BUG_ON(msg->con == NULL);
2399
Sage Weil31b80062009-10-06 11:31:13 -07002400 BUG_ON(!list_empty(&msg->list_head));
2401 list_add_tail(&msg->list_head, &con->out_queue);
2402 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2403 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2404 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2405 le32_to_cpu(msg->hdr.front_len),
2406 le32_to_cpu(msg->hdr.middle_len),
2407 le32_to_cpu(msg->hdr.data_len));
Sage Weilec302642009-12-22 10:43:42 -08002408 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002409
2410 /* if there wasn't anything waiting to send before, queue
2411 * new work */
Sage Weile00de342011-03-04 12:25:05 -08002412 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002413 if (test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002414 queue_con(con);
2415}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002416EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002417
2418/*
2419 * Revoke a message that was previously queued for send
2420 */
Alex Elder6740a842012-06-01 14:56:43 -05002421void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002422{
Alex Elder6740a842012-06-01 14:56:43 -05002423 struct ceph_connection *con = msg->con;
2424
2425 if (!con)
2426 return; /* Message not in our possession */
2427
Sage Weilec302642009-12-22 10:43:42 -08002428 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002429 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002430 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002431 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002432 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002433 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002434 msg->con = NULL;
Alex Elder92ce0342012-06-04 14:43:33 -05002435 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002436
Sage Weil31b80062009-10-06 11:31:13 -07002437 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002438 }
2439 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002440 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002441 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002442 if (con->out_kvec_is_msg) {
2443 con->out_skip = con->out_kvec_bytes;
2444 con->out_kvec_is_msg = false;
2445 }
Sage Weiled98ada2010-07-05 12:15:14 -07002446 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002447
2448 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002449 }
Sage Weilec302642009-12-22 10:43:42 -08002450 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002451}
2452
2453/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002454 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002455 */
Alex Elder8921d112012-06-01 14:56:43 -05002456void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002457{
Alex Elder8921d112012-06-01 14:56:43 -05002458 struct ceph_connection *con;
2459
2460 BUG_ON(msg == NULL);
2461 if (!msg->con) {
2462 dout("%s msg %p null con\n", __func__, msg);
2463
2464 return; /* Message not in our possession */
2465 }
2466
2467 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002468 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002469 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002470 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2471 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2472 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002473
2474 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002475 dout("%s %p msg %p revoked\n", __func__, con, msg);
2476 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002477 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002478 front_len -
2479 middle_len -
2480 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08002481 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08002482 ceph_msg_put(con->in_msg);
2483 con->in_msg = NULL;
2484 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002485 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08002486 } else {
Alex Elder8921d112012-06-01 14:56:43 -05002487 dout("%s %p in_msg %p msg %p no-op\n",
2488 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08002489 }
2490 mutex_unlock(&con->mutex);
2491}
2492
2493/*
Sage Weil31b80062009-10-06 11:31:13 -07002494 * Queue a keepalive byte to ensure the tcp connection is alive.
2495 */
2496void ceph_con_keepalive(struct ceph_connection *con)
2497{
Sage Weile00de342011-03-04 12:25:05 -08002498 dout("con_keepalive %p\n", con);
2499 clear_standby(con);
Alex Elder928443c2012-05-22 11:41:43 -05002500 if (test_and_set_bit(KEEPALIVE_PENDING, &con->flags) == 0 &&
2501 test_and_set_bit(WRITE_PENDING, &con->flags) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002502 queue_con(con);
2503}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002504EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07002505
2506
2507/*
2508 * construct a new message with given type, size
2509 * the new msg has a ref count of 1.
2510 */
Sage Weilb61c2762011-08-09 15:03:46 -07002511struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
2512 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07002513{
2514 struct ceph_msg *m;
2515
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002516 m = kmalloc(sizeof(*m), flags);
Sage Weil31b80062009-10-06 11:31:13 -07002517 if (m == NULL)
2518 goto out;
Sage Weilc2e552e2009-12-07 15:55:05 -08002519 kref_init(&m->kref);
Alex Elder38941f82012-06-01 14:56:43 -05002520
2521 m->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002522 INIT_LIST_HEAD(&m->list_head);
2523
Sage Weil45c6ceb2010-05-11 15:01:51 -07002524 m->hdr.tid = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002525 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07002526 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
2527 m->hdr.version = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002528 m->hdr.front_len = cpu_to_le32(front_len);
2529 m->hdr.middle_len = 0;
Sage Weilbb257662010-04-01 16:07:23 -07002530 m->hdr.data_len = 0;
2531 m->hdr.data_off = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002532 m->hdr.reserved = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002533 m->footer.front_crc = 0;
2534 m->footer.middle_crc = 0;
2535 m->footer.data_crc = 0;
Sage Weil45c6ceb2010-05-11 15:01:51 -07002536 m->footer.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002537 m->front_max = front_len;
2538 m->front_is_vmalloc = false;
2539 m->more_to_follow = false;
Jim Schuttc0d5f9d2011-09-16 08:27:31 -06002540 m->ack_stamp = 0;
Sage Weil31b80062009-10-06 11:31:13 -07002541 m->pool = NULL;
2542
Henry C Changca208922011-05-03 02:29:56 +00002543 /* middle */
2544 m->middle = NULL;
2545
2546 /* data */
2547 m->nr_pages = 0;
2548 m->page_alignment = 0;
2549 m->pages = NULL;
2550 m->pagelist = NULL;
2551 m->bio = NULL;
2552 m->bio_iter = NULL;
2553 m->bio_seg = 0;
2554 m->trail = NULL;
2555
Sage Weil31b80062009-10-06 11:31:13 -07002556 /* front */
2557 if (front_len) {
2558 if (front_len > PAGE_CACHE_SIZE) {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002559 m->front.iov_base = __vmalloc(front_len, flags,
Sage Weil31b80062009-10-06 11:31:13 -07002560 PAGE_KERNEL);
2561 m->front_is_vmalloc = true;
2562 } else {
Yehuda Sadeh34d23762010-04-06 14:33:58 -07002563 m->front.iov_base = kmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07002564 }
2565 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07002566 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07002567 front_len);
2568 goto out2;
2569 }
2570 } else {
2571 m->front.iov_base = NULL;
2572 }
2573 m->front.iov_len = front_len;
2574
Sage Weilbb257662010-04-01 16:07:23 -07002575 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07002576 return m;
2577
2578out2:
2579 ceph_msg_put(m);
2580out:
Sage Weilb61c2762011-08-09 15:03:46 -07002581 if (!can_fail) {
2582 pr_err("msg_new can't create type %d front %d\n", type,
2583 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07002584 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07002585 } else {
2586 dout("msg_new can't create type %d front %d\n", type,
2587 front_len);
2588 }
Sage Weila79832f2010-04-01 16:06:19 -07002589 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002590}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002591EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07002592
2593/*
Sage Weil31b80062009-10-06 11:31:13 -07002594 * Allocate "middle" portion of a message, if it is needed and wasn't
2595 * allocated by alloc_msg. This allows us to read a small fixed-size
2596 * per-type header in the front and then gracefully fail (i.e.,
2597 * propagate the error to the caller based on info in the front) when
2598 * the middle is too large.
2599 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002600static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002601{
2602 int type = le16_to_cpu(msg->hdr.type);
2603 int middle_len = le32_to_cpu(msg->hdr.middle_len);
2604
2605 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
2606 ceph_msg_type_name(type), middle_len);
2607 BUG_ON(!middle_len);
2608 BUG_ON(msg->middle);
2609
Sage Weilb6c1d5b2009-12-07 12:17:17 -08002610 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07002611 if (!msg->middle)
2612 return -ENOMEM;
2613 return 0;
2614}
2615
Yehuda Sadeh24504182010-01-08 13:58:34 -08002616/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05002617 * Allocate a message for receiving an incoming message on a
2618 * connection, and save the result in con->in_msg. Uses the
2619 * connection's private alloc_msg op if available.
2620 *
2621 * Returns true if the message should be skipped, false otherwise.
2622 * If true is returned (skip message), con->in_msg will be NULL.
2623 * If false is returned, con->in_msg will contain a pointer to the
2624 * newly-allocated message, or NULL in case of memory exhaustion.
Yehuda Sadeh24504182010-01-08 13:58:34 -08002625 */
Alex Elder1c20f2d2012-06-04 14:43:32 -05002626static bool ceph_con_in_msg_alloc(struct ceph_connection *con,
2627 struct ceph_msg_header *hdr)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002628{
2629 int type = le16_to_cpu(hdr->type);
2630 int front_len = le32_to_cpu(hdr->front_len);
2631 int middle_len = le32_to_cpu(hdr->middle_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002632 int ret;
2633
Alex Elder1c20f2d2012-06-04 14:43:32 -05002634 BUG_ON(con->in_msg != NULL);
2635
Yehuda Sadeh24504182010-01-08 13:58:34 -08002636 if (con->ops->alloc_msg) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002637 int skip = 0;
2638
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002639 mutex_unlock(&con->mutex);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002640 con->in_msg = con->ops->alloc_msg(con, hdr, &skip);
Yehuda Sadeh0547a9b2010-01-11 14:47:13 -08002641 mutex_lock(&con->mutex);
Alex Elder92ce0342012-06-04 14:43:33 -05002642 if (con->in_msg) {
Sage Weil36eb71a2012-06-21 12:47:08 -07002643 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002644 BUG_ON(con->in_msg->con == NULL);
2645 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002646 if (skip)
2647 con->in_msg = NULL;
2648
2649 if (!con->in_msg)
2650 return skip != 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002651 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002652 if (!con->in_msg) {
2653 con->in_msg = ceph_msg_new(type, front_len, GFP_NOFS, false);
2654 if (!con->in_msg) {
Yehuda Sadeh24504182010-01-08 13:58:34 -08002655 pr_err("unable to allocate msg type %d len %d\n",
2656 type, front_len);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002657 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002658 }
Sage Weil36eb71a2012-06-21 12:47:08 -07002659 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002660 BUG_ON(con->in_msg->con == NULL);
Alex Elder1c20f2d2012-06-04 14:43:32 -05002661 con->in_msg->page_alignment = le16_to_cpu(hdr->data_off);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002662 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05002663 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08002664
Alex Elder1c20f2d2012-06-04 14:43:32 -05002665 if (middle_len && !con->in_msg->middle) {
2666 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002667 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05002668 ceph_msg_put(con->in_msg);
2669 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002670 }
2671 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002672
Alex Elder1c20f2d2012-06-04 14:43:32 -05002673 return false;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002674}
2675
Sage Weil31b80062009-10-06 11:31:13 -07002676
2677/*
2678 * Free a generically kmalloc'd message.
2679 */
2680void ceph_msg_kfree(struct ceph_msg *m)
2681{
2682 dout("msg_kfree %p\n", m);
2683 if (m->front_is_vmalloc)
2684 vfree(m->front.iov_base);
2685 else
2686 kfree(m->front.iov_base);
2687 kfree(m);
2688}
2689
2690/*
2691 * Drop a msg ref. Destroy as needed.
2692 */
Sage Weilc2e552e2009-12-07 15:55:05 -08002693void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07002694{
Sage Weilc2e552e2009-12-07 15:55:05 -08002695 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Sage Weil31b80062009-10-06 11:31:13 -07002696
Sage Weilc2e552e2009-12-07 15:55:05 -08002697 dout("ceph_msg_put last one on %p\n", m);
2698 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07002699
Sage Weilc2e552e2009-12-07 15:55:05 -08002700 /* drop middle, data, if any */
2701 if (m->middle) {
2702 ceph_buffer_put(m->middle);
2703 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002704 }
Sage Weilc2e552e2009-12-07 15:55:05 -08002705 m->nr_pages = 0;
2706 m->pages = NULL;
2707
Sage Weil58bb3b32009-12-23 12:12:31 -08002708 if (m->pagelist) {
2709 ceph_pagelist_release(m->pagelist);
2710 kfree(m->pagelist);
2711 m->pagelist = NULL;
2712 }
2713
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002714 m->trail = NULL;
2715
Sage Weilc2e552e2009-12-07 15:55:05 -08002716 if (m->pool)
2717 ceph_msgpool_put(m->pool, m);
2718 else
2719 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07002720}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002721EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08002722
2723void ceph_msg_dump(struct ceph_msg *msg)
2724{
2725 pr_debug("msg_dump %p (front_max %d nr_pages %d)\n", msg,
2726 msg->front_max, msg->nr_pages);
2727 print_hex_dump(KERN_DEBUG, "header: ",
2728 DUMP_PREFIX_OFFSET, 16, 1,
2729 &msg->hdr, sizeof(msg->hdr), true);
2730 print_hex_dump(KERN_DEBUG, " front: ",
2731 DUMP_PREFIX_OFFSET, 16, 1,
2732 msg->front.iov_base, msg->front.iov_len, true);
2733 if (msg->middle)
2734 print_hex_dump(KERN_DEBUG, "middle: ",
2735 DUMP_PREFIX_OFFSET, 16, 1,
2736 msg->middle->vec.iov_base,
2737 msg->middle->vec.iov_len, true);
2738 print_hex_dump(KERN_DEBUG, "footer: ",
2739 DUMP_PREFIX_OFFSET, 16, 1,
2740 &msg->footer, sizeof(msg->footer), true);
2741}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002742EXPORT_SYMBOL(ceph_msg_dump);