blob: dac7f9b986877efa88f8e308e783c216563ad243 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil31b80062009-10-06 11:31:13 -07002
3#include <linux/crc32c.h>
4#include <linux/ctype.h>
5#include <linux/highmem.h>
6#include <linux/inet.h>
7#include <linux/kthread.h>
8#include <linux/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Sage Weil31b80062009-10-06 11:31:13 -070010#include <linux/socket.h>
11#include <linux/string.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060012#ifdef CONFIG_BLOCK
Yehuda Sadeh68b44762010-04-06 15:01:27 -070013#include <linux/bio.h>
Alex Elder3ebc21f2013-01-31 16:02:01 -060014#endif /* CONFIG_BLOCK */
Noah Watkinsee3b56f2011-09-23 11:48:42 -070015#include <linux/dns_resolver.h>
Sage Weil31b80062009-10-06 11:31:13 -070016#include <net/tcp.h>
17
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +020018#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070019#include <linux/ceph/libceph.h>
20#include <linux/ceph/messenger.h>
21#include <linux/ceph/decode.h>
22#include <linux/ceph/pagelist.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040023#include <linux/export.h>
Sage Weil31b80062009-10-06 11:31:13 -070024
Alex Elderfe38a2b2013-03-06 23:39:39 -060025#define list_entry_next(pos, member) \
26 list_entry(pos->member.next, typeof(*pos), member)
27
Sage Weil31b80062009-10-06 11:31:13 -070028/*
29 * Ceph uses the messenger to exchange ceph_msg messages with other
30 * hosts in the system. The messenger provides ordered and reliable
31 * delivery. We tolerate TCP disconnects by reconnecting (with
32 * exponential backoff) in the case of a fault (disconnection, bad
33 * crc, protocol error). Acks allow sent messages to be discarded by
34 * the sender.
35 */
36
Alex Elderbc18f4b2012-06-20 21:53:53 -050037/*
38 * We track the state of the socket on a given connection using
39 * values defined below. The transition to a new socket state is
40 * handled by a function which verifies we aren't coming from an
41 * unexpected state.
42 *
43 * --------
44 * | NEW* | transient initial state
45 * --------
46 * | con_sock_state_init()
47 * v
48 * ----------
49 * | CLOSED | initialized, but no socket (and no
50 * ---------- TCP connection)
51 * ^ \
52 * | \ con_sock_state_connecting()
53 * | ----------------------
54 * | \
55 * + con_sock_state_closed() \
Sage Weilfbb85a42012-06-27 12:31:02 -070056 * |+--------------------------- \
57 * | \ \ \
58 * | ----------- \ \
59 * | | CLOSING | socket event; \ \
60 * | ----------- await close \ \
61 * | ^ \ |
62 * | | \ |
63 * | + con_sock_state_closing() \ |
64 * | / \ | |
65 * | / --------------- | |
66 * | / \ v v
Alex Elderbc18f4b2012-06-20 21:53:53 -050067 * | / --------------
68 * | / -----------------| CONNECTING | socket created, TCP
69 * | | / -------------- connect initiated
70 * | | | con_sock_state_connected()
71 * | | v
72 * -------------
73 * | CONNECTED | TCP connection established
74 * -------------
75 *
76 * State values for ceph_connection->sock_state; NEW is assumed to be 0.
77 */
Alex Elderce2c8902012-05-22 22:15:49 -050078
79#define CON_SOCK_STATE_NEW 0 /* -> CLOSED */
80#define CON_SOCK_STATE_CLOSED 1 /* -> CONNECTING */
81#define CON_SOCK_STATE_CONNECTING 2 /* -> CONNECTED or -> CLOSING */
82#define CON_SOCK_STATE_CONNECTED 3 /* -> CLOSING or -> CLOSED */
83#define CON_SOCK_STATE_CLOSING 4 /* -> CLOSED */
84
Sage Weil8dacc7d2012-07-20 17:24:40 -070085/*
86 * connection states
87 */
88#define CON_STATE_CLOSED 1 /* -> PREOPEN */
89#define CON_STATE_PREOPEN 2 /* -> CONNECTING, CLOSED */
90#define CON_STATE_CONNECTING 3 /* -> NEGOTIATING, CLOSED */
91#define CON_STATE_NEGOTIATING 4 /* -> OPEN, CLOSED */
92#define CON_STATE_OPEN 5 /* -> STANDBY, CLOSED */
93#define CON_STATE_STANDBY 6 /* -> PREOPEN, CLOSED */
94
Sage Weil4a861692012-07-20 17:29:55 -070095/*
96 * ceph_connection flag bits
97 */
98#define CON_FLAG_LOSSYTX 0 /* we can close channel or drop
99 * messages on errors */
100#define CON_FLAG_KEEPALIVE_PENDING 1 /* we need to send a keepalive */
101#define CON_FLAG_WRITE_PENDING 2 /* we have data ready to send */
102#define CON_FLAG_SOCK_CLOSED 3 /* socket state changed to closed */
103#define CON_FLAG_BACKOFF 4 /* need to retry queuing delayed work */
Sage Weil8dacc7d2012-07-20 17:24:40 -0700104
Alex Elderc9ffc772013-02-20 10:25:12 -0600105static bool con_flag_valid(unsigned long con_flag)
106{
107 switch (con_flag) {
108 case CON_FLAG_LOSSYTX:
109 case CON_FLAG_KEEPALIVE_PENDING:
110 case CON_FLAG_WRITE_PENDING:
111 case CON_FLAG_SOCK_CLOSED:
112 case CON_FLAG_BACKOFF:
113 return true;
114 default:
115 return false;
116 }
117}
118
119static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
120{
121 BUG_ON(!con_flag_valid(con_flag));
122
123 clear_bit(con_flag, &con->flags);
124}
125
126static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
127{
128 BUG_ON(!con_flag_valid(con_flag));
129
130 set_bit(con_flag, &con->flags);
131}
132
133static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
134{
135 BUG_ON(!con_flag_valid(con_flag));
136
137 return test_bit(con_flag, &con->flags);
138}
139
140static bool con_flag_test_and_clear(struct ceph_connection *con,
141 unsigned long con_flag)
142{
143 BUG_ON(!con_flag_valid(con_flag));
144
145 return test_and_clear_bit(con_flag, &con->flags);
146}
147
148static bool con_flag_test_and_set(struct ceph_connection *con,
149 unsigned long con_flag)
150{
151 BUG_ON(!con_flag_valid(con_flag));
152
153 return test_and_set_bit(con_flag, &con->flags);
154}
155
Alex Eldere3d5d632013-05-01 12:43:04 -0500156/* Slab caches for frequently-allocated structures */
157
158static struct kmem_cache *ceph_msg_cache;
Alex Elder81b36be2013-05-01 12:43:04 -0500159static struct kmem_cache *ceph_msg_data_cache;
Alex Eldere3d5d632013-05-01 12:43:04 -0500160
Sage Weil31b80062009-10-06 11:31:13 -0700161/* static tag bytes (protocol control messages) */
162static char tag_msg = CEPH_MSGR_TAG_MSG;
163static char tag_ack = CEPH_MSGR_TAG_ACK;
164static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
165
Sage Weila6a53492010-04-13 14:07:07 -0700166#ifdef CONFIG_LOCKDEP
167static struct lock_class_key socket_class;
168#endif
169
Alex Elder84495f42012-02-15 07:43:55 -0600170/*
171 * When skipping (ignoring) a block of input we read it into a "skip
172 * buffer," which is this many bytes in size.
173 */
174#define SKIP_BUF_SIZE 1024
Sage Weil31b80062009-10-06 11:31:13 -0700175
176static void queue_con(struct ceph_connection *con);
177static void con_work(struct work_struct *);
Alex Elder93209262013-02-19 12:25:57 -0600178static void con_fault(struct ceph_connection *con);
Sage Weil31b80062009-10-06 11:31:13 -0700179
Sage Weil31b80062009-10-06 11:31:13 -0700180/*
Alex Elderf64a9312012-01-23 15:49:27 -0600181 * Nicely render a sockaddr as a string. An array of formatted
182 * strings is used, to approximate reentrancy.
Sage Weil31b80062009-10-06 11:31:13 -0700183 */
Alex Elderf64a9312012-01-23 15:49:27 -0600184#define ADDR_STR_COUNT_LOG 5 /* log2(# address strings in array) */
185#define ADDR_STR_COUNT (1 << ADDR_STR_COUNT_LOG)
186#define ADDR_STR_COUNT_MASK (ADDR_STR_COUNT - 1)
187#define MAX_ADDR_STR_LEN 64 /* 54 is enough */
188
189static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
190static atomic_t addr_str_seq = ATOMIC_INIT(0);
Sage Weil31b80062009-10-06 11:31:13 -0700191
Alex Elder57666512012-01-23 15:49:27 -0600192static struct page *zero_page; /* used in certain error cases */
Alex Elder57666512012-01-23 15:49:27 -0600193
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700194const char *ceph_pr_addr(const struct sockaddr_storage *ss)
Sage Weil31b80062009-10-06 11:31:13 -0700195{
196 int i;
197 char *s;
Alex Elder99f0f3b2012-01-23 15:49:27 -0600198 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
199 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Sage Weil31b80062009-10-06 11:31:13 -0700200
Alex Elderf64a9312012-01-23 15:49:27 -0600201 i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
Sage Weil31b80062009-10-06 11:31:13 -0700202 s = addr_str[i];
203
204 switch (ss->ss_family) {
205 case AF_INET:
Alex Elderbd406142012-01-23 15:49:27 -0600206 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
207 ntohs(in4->sin_port));
Sage Weil31b80062009-10-06 11:31:13 -0700208 break;
209
210 case AF_INET6:
Alex Elderbd406142012-01-23 15:49:27 -0600211 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
212 ntohs(in6->sin6_port));
Sage Weil31b80062009-10-06 11:31:13 -0700213 break;
214
215 default:
Alex Elderd3002b92012-02-14 14:05:33 -0600216 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
217 ss->ss_family);
Sage Weil31b80062009-10-06 11:31:13 -0700218 }
219
220 return s;
221}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700222EXPORT_SYMBOL(ceph_pr_addr);
Sage Weil31b80062009-10-06 11:31:13 -0700223
Sage Weil63f2d212009-11-03 15:17:56 -0800224static void encode_my_addr(struct ceph_messenger *msgr)
225{
226 memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
227 ceph_encode_addr(&msgr->my_enc_addr);
228}
229
Sage Weil31b80062009-10-06 11:31:13 -0700230/*
231 * work queue for all reading and writing to/from the socket.
232 */
Alex Eldere0f43c92012-02-14 14:05:33 -0600233static struct workqueue_struct *ceph_msgr_wq;
Sage Weil31b80062009-10-06 11:31:13 -0700234
Alex Eldere3d5d632013-05-01 12:43:04 -0500235static int ceph_msgr_slab_init(void)
236{
237 BUG_ON(ceph_msg_cache);
238 ceph_msg_cache = kmem_cache_create("ceph_msg",
239 sizeof (struct ceph_msg),
240 __alignof__(struct ceph_msg), 0, NULL);
Alex Elder81b36be2013-05-01 12:43:04 -0500241
242 if (!ceph_msg_cache)
243 return -ENOMEM;
244
245 BUG_ON(ceph_msg_data_cache);
246 ceph_msg_data_cache = kmem_cache_create("ceph_msg_data",
247 sizeof (struct ceph_msg_data),
248 __alignof__(struct ceph_msg_data),
249 0, NULL);
250 if (ceph_msg_data_cache)
251 return 0;
252
253 kmem_cache_destroy(ceph_msg_cache);
254 ceph_msg_cache = NULL;
255
256 return -ENOMEM;
Alex Eldere3d5d632013-05-01 12:43:04 -0500257}
258
259static void ceph_msgr_slab_exit(void)
260{
Alex Elder81b36be2013-05-01 12:43:04 -0500261 BUG_ON(!ceph_msg_data_cache);
262 kmem_cache_destroy(ceph_msg_data_cache);
263 ceph_msg_data_cache = NULL;
264
Alex Eldere3d5d632013-05-01 12:43:04 -0500265 BUG_ON(!ceph_msg_cache);
266 kmem_cache_destroy(ceph_msg_cache);
267 ceph_msg_cache = NULL;
268}
269
Alex Elder15417162013-02-19 12:25:56 -0600270static void _ceph_msgr_exit(void)
Alex Elder6173d1f2012-02-14 14:05:33 -0600271{
Alex Elderd3002b92012-02-14 14:05:33 -0600272 if (ceph_msgr_wq) {
Alex Elder6173d1f2012-02-14 14:05:33 -0600273 destroy_workqueue(ceph_msgr_wq);
Alex Elderd3002b92012-02-14 14:05:33 -0600274 ceph_msgr_wq = NULL;
275 }
Alex Elder6173d1f2012-02-14 14:05:33 -0600276
Alex Eldere3d5d632013-05-01 12:43:04 -0500277 ceph_msgr_slab_exit();
278
Alex Elder6173d1f2012-02-14 14:05:33 -0600279 BUG_ON(zero_page == NULL);
280 kunmap(zero_page);
281 page_cache_release(zero_page);
282 zero_page = NULL;
283}
284
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700285int ceph_msgr_init(void)
Sage Weil31b80062009-10-06 11:31:13 -0700286{
Alex Elder57666512012-01-23 15:49:27 -0600287 BUG_ON(zero_page != NULL);
288 zero_page = ZERO_PAGE(0);
289 page_cache_get(zero_page);
290
Alex Eldere3d5d632013-05-01 12:43:04 -0500291 if (ceph_msgr_slab_init())
292 return -ENOMEM;
293
Tejun Heo4d1829a2013-07-30 08:40:27 -0400294 ceph_msgr_wq = alloc_workqueue("ceph-msgr", 0, 0);
Alex Elder6173d1f2012-02-14 14:05:33 -0600295 if (ceph_msgr_wq)
296 return 0;
Alex Elder57666512012-01-23 15:49:27 -0600297
Alex Elder6173d1f2012-02-14 14:05:33 -0600298 pr_err("msgr_init failed to create workqueue\n");
299 _ceph_msgr_exit();
Alex Elder57666512012-01-23 15:49:27 -0600300
Alex Elder6173d1f2012-02-14 14:05:33 -0600301 return -ENOMEM;
Sage Weil31b80062009-10-06 11:31:13 -0700302}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700303EXPORT_SYMBOL(ceph_msgr_init);
Sage Weil31b80062009-10-06 11:31:13 -0700304
305void ceph_msgr_exit(void)
306{
Alex Elder57666512012-01-23 15:49:27 -0600307 BUG_ON(ceph_msgr_wq == NULL);
Alex Elder57666512012-01-23 15:49:27 -0600308
Alex Elder6173d1f2012-02-14 14:05:33 -0600309 _ceph_msgr_exit();
Sage Weil31b80062009-10-06 11:31:13 -0700310}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700311EXPORT_SYMBOL(ceph_msgr_exit);
Sage Weil31b80062009-10-06 11:31:13 -0700312
Yehuda Sadehcd84db62010-06-11 16:58:48 -0700313void ceph_msgr_flush(void)
Sage Weila922d382010-05-29 09:41:23 -0700314{
315 flush_workqueue(ceph_msgr_wq);
316}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700317EXPORT_SYMBOL(ceph_msgr_flush);
Sage Weila922d382010-05-29 09:41:23 -0700318
Alex Elderce2c8902012-05-22 22:15:49 -0500319/* Connection socket state transition functions */
320
321static void con_sock_state_init(struct ceph_connection *con)
322{
323 int old_state;
324
325 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
326 if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
327 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700328 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
329 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500330}
331
332static void con_sock_state_connecting(struct ceph_connection *con)
333{
334 int old_state;
335
336 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
337 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
338 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700339 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
340 CON_SOCK_STATE_CONNECTING);
Alex Elderce2c8902012-05-22 22:15:49 -0500341}
342
343static void con_sock_state_connected(struct ceph_connection *con)
344{
345 int old_state;
346
347 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
348 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
349 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700350 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
351 CON_SOCK_STATE_CONNECTED);
Alex Elderce2c8902012-05-22 22:15:49 -0500352}
353
354static void con_sock_state_closing(struct ceph_connection *con)
355{
356 int old_state;
357
358 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
359 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
360 old_state != CON_SOCK_STATE_CONNECTED &&
361 old_state != CON_SOCK_STATE_CLOSING))
362 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700363 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
364 CON_SOCK_STATE_CLOSING);
Alex Elderce2c8902012-05-22 22:15:49 -0500365}
366
367static void con_sock_state_closed(struct ceph_connection *con)
368{
369 int old_state;
370
371 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
372 if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
Sage Weilfbb85a42012-06-27 12:31:02 -0700373 old_state != CON_SOCK_STATE_CLOSING &&
Sage Weil8007b8d2012-07-30 18:16:16 -0700374 old_state != CON_SOCK_STATE_CONNECTING &&
375 old_state != CON_SOCK_STATE_CLOSED))
Alex Elderce2c8902012-05-22 22:15:49 -0500376 printk("%s: unexpected old state %d\n", __func__, old_state);
Sage Weil8007b8d2012-07-30 18:16:16 -0700377 dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
378 CON_SOCK_STATE_CLOSED);
Alex Elderce2c8902012-05-22 22:15:49 -0500379}
Sage Weila922d382010-05-29 09:41:23 -0700380
Sage Weil31b80062009-10-06 11:31:13 -0700381/*
382 * socket callback functions
383 */
384
385/* data available on socket, or listen socket received a connect */
David S. Miller676d2362014-04-11 16:15:36 -0400386static void ceph_sock_data_ready(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700387{
Alex Elderbd406142012-01-23 15:49:27 -0600388 struct ceph_connection *con = sk->sk_user_data;
Guanjun Hea2a32582012-07-08 19:50:33 -0700389 if (atomic_read(&con->msgr->stopping)) {
390 return;
391 }
Alex Elderbd406142012-01-23 15:49:27 -0600392
Sage Weil31b80062009-10-06 11:31:13 -0700393 if (sk->sk_state != TCP_CLOSE_WAIT) {
Alex Elder327800b2012-05-22 11:41:43 -0500394 dout("%s on %p state = %lu, queueing work\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700395 con, con->state);
396 queue_con(con);
397 }
398}
399
400/* socket has buffer space for writing */
Alex Elder327800b2012-05-22 11:41:43 -0500401static void ceph_sock_write_space(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700402{
Alex Elderd3002b92012-02-14 14:05:33 -0600403 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700404
Jim Schutt182fac22012-02-29 08:30:58 -0700405 /* only queue to workqueue if there is data we want to write,
406 * and there is sufficient space in the socket buffer to accept
Alex Elder327800b2012-05-22 11:41:43 -0500407 * more data. clear SOCK_NOSPACE so that ceph_sock_write_space()
Jim Schutt182fac22012-02-29 08:30:58 -0700408 * doesn't get called again until try_write() fills the socket
409 * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
410 * and net/core/stream.c:sk_stream_write_space().
411 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600412 if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
Eric Dumazet64dc6132013-07-22 20:26:31 -0700413 if (sk_stream_is_writeable(sk)) {
Alex Elder327800b2012-05-22 11:41:43 -0500414 dout("%s %p queueing write work\n", __func__, con);
Jim Schutt182fac22012-02-29 08:30:58 -0700415 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
416 queue_con(con);
417 }
Sage Weil31b80062009-10-06 11:31:13 -0700418 } else {
Alex Elder327800b2012-05-22 11:41:43 -0500419 dout("%s %p nothing to write\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -0700420 }
Sage Weil31b80062009-10-06 11:31:13 -0700421}
422
423/* socket's state has changed */
Alex Elder327800b2012-05-22 11:41:43 -0500424static void ceph_sock_state_change(struct sock *sk)
Sage Weil31b80062009-10-06 11:31:13 -0700425{
Alex Elderbd406142012-01-23 15:49:27 -0600426 struct ceph_connection *con = sk->sk_user_data;
Sage Weil31b80062009-10-06 11:31:13 -0700427
Alex Elder327800b2012-05-22 11:41:43 -0500428 dout("%s %p state = %lu sk_state = %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -0700429 con, con->state, sk->sk_state);
430
Sage Weil31b80062009-10-06 11:31:13 -0700431 switch (sk->sk_state) {
432 case TCP_CLOSE:
Alex Elder327800b2012-05-22 11:41:43 -0500433 dout("%s TCP_CLOSE\n", __func__);
Sage Weil31b80062009-10-06 11:31:13 -0700434 case TCP_CLOSE_WAIT:
Alex Elder327800b2012-05-22 11:41:43 -0500435 dout("%s TCP_CLOSE_WAIT\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500436 con_sock_state_closing(con);
Alex Elderc9ffc772013-02-20 10:25:12 -0600437 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
Alex Elderd65c9e02012-06-20 21:53:53 -0500438 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -0700439 break;
440 case TCP_ESTABLISHED:
Alex Elder327800b2012-05-22 11:41:43 -0500441 dout("%s TCP_ESTABLISHED\n", __func__);
Alex Elderce2c8902012-05-22 22:15:49 -0500442 con_sock_state_connected(con);
Sage Weil31b80062009-10-06 11:31:13 -0700443 queue_con(con);
444 break;
Alex Elderd3002b92012-02-14 14:05:33 -0600445 default: /* Everything else is uninteresting */
446 break;
Sage Weil31b80062009-10-06 11:31:13 -0700447 }
448}
449
450/*
451 * set up socket callbacks
452 */
453static void set_sock_callbacks(struct socket *sock,
454 struct ceph_connection *con)
455{
456 struct sock *sk = sock->sk;
Alex Elderbd406142012-01-23 15:49:27 -0600457 sk->sk_user_data = con;
Alex Elder327800b2012-05-22 11:41:43 -0500458 sk->sk_data_ready = ceph_sock_data_ready;
459 sk->sk_write_space = ceph_sock_write_space;
460 sk->sk_state_change = ceph_sock_state_change;
Sage Weil31b80062009-10-06 11:31:13 -0700461}
462
463
464/*
465 * socket helpers
466 */
467
468/*
469 * initiate connection to a remote socket.
470 */
Alex Elder41617d02012-02-14 14:05:33 -0600471static int ceph_tcp_connect(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -0700472{
Sage Weilf91d3472010-07-01 15:18:31 -0700473 struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
Sage Weil31b80062009-10-06 11:31:13 -0700474 struct socket *sock;
475 int ret;
476
477 BUG_ON(con->sock);
Sage Weilf91d3472010-07-01 15:18:31 -0700478 ret = sock_create_kern(con->peer_addr.in_addr.ss_family, SOCK_STREAM,
479 IPPROTO_TCP, &sock);
Sage Weil31b80062009-10-06 11:31:13 -0700480 if (ret)
Alex Elder41617d02012-02-14 14:05:33 -0600481 return ret;
Sage Weil31b80062009-10-06 11:31:13 -0700482 sock->sk->sk_allocation = GFP_NOFS;
483
Sage Weila6a53492010-04-13 14:07:07 -0700484#ifdef CONFIG_LOCKDEP
485 lockdep_set_class(&sock->sk->sk_lock, &socket_class);
486#endif
487
Sage Weil31b80062009-10-06 11:31:13 -0700488 set_sock_callbacks(sock, con);
489
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700490 dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -0700491
Sage Weil89a86be2012-06-09 14:19:21 -0700492 con_sock_state_connecting(con);
Sage Weilf91d3472010-07-01 15:18:31 -0700493 ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
494 O_NONBLOCK);
Sage Weil31b80062009-10-06 11:31:13 -0700495 if (ret == -EINPROGRESS) {
496 dout("connect %s EINPROGRESS sk_state = %u\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700497 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -0700498 sock->sk->sk_state);
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600499 } else if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -0700500 pr_err("connect %s error %d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700501 ceph_pr_addr(&con->peer_addr.in_addr), ret);
Sage Weil31b80062009-10-06 11:31:13 -0700502 sock_release(sock);
Sage Weil31b80062009-10-06 11:31:13 -0700503 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -0700504
Alex Elder41617d02012-02-14 14:05:33 -0600505 return ret;
Alex Eldera5bc3129a2012-01-23 15:49:27 -0600506 }
507 con->sock = sock;
Alex Elder41617d02012-02-14 14:05:33 -0600508 return 0;
Sage Weil31b80062009-10-06 11:31:13 -0700509}
510
511static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
512{
513 struct kvec iov = {buf, len};
514 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil98bdb0a2011-01-25 08:17:48 -0800515 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700516
Sage Weil98bdb0a2011-01-25 08:17:48 -0800517 r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
518 if (r == -EAGAIN)
519 r = 0;
520 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700521}
522
Alex Elderafb3d902013-03-08 20:58:59 -0600523static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
524 int page_offset, size_t length)
525{
526 void *kaddr;
527 int ret;
528
529 BUG_ON(page_offset + length > PAGE_SIZE);
530
531 kaddr = kmap(page);
532 BUG_ON(!kaddr);
533 ret = ceph_tcp_recvmsg(sock, kaddr + page_offset, length);
534 kunmap(page);
535
536 return ret;
537}
538
Sage Weil31b80062009-10-06 11:31:13 -0700539/*
540 * write something. @more is true if caller will be sending more data
541 * shortly.
542 */
543static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
544 size_t kvlen, size_t len, int more)
545{
546 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
Sage Weil42961d22011-01-25 08:19:34 -0800547 int r;
Sage Weil31b80062009-10-06 11:31:13 -0700548
549 if (more)
550 msg.msg_flags |= MSG_MORE;
551 else
552 msg.msg_flags |= MSG_EOR; /* superfluous, but what the hell */
553
Sage Weil42961d22011-01-25 08:19:34 -0800554 r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
555 if (r == -EAGAIN)
556 r = 0;
557 return r;
Sage Weil31b80062009-10-06 11:31:13 -0700558}
559
Alex Elder31739132012-03-07 11:40:08 -0600560static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
Alex Eldere1dcb122013-03-06 23:39:38 -0600561 int offset, size_t size, bool more)
Alex Elder31739132012-03-07 11:40:08 -0600562{
563 int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
564 int ret;
565
566 ret = kernel_sendpage(sock, page, offset, size, flags);
567 if (ret == -EAGAIN)
568 ret = 0;
569
570 return ret;
571}
572
Sage Weil31b80062009-10-06 11:31:13 -0700573
574/*
575 * Shutdown/close the socket for the given connection.
576 */
577static int con_close_socket(struct ceph_connection *con)
578{
Sage Weil8007b8d2012-07-30 18:16:16 -0700579 int rc = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700580
581 dout("con_close_socket on %p sock %p\n", con, con->sock);
Sage Weil8007b8d2012-07-30 18:16:16 -0700582 if (con->sock) {
583 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
584 sock_release(con->sock);
585 con->sock = NULL;
586 }
Alex Elder456ea462012-06-20 21:53:53 -0500587
588 /*
Sage Weil4a861692012-07-20 17:29:55 -0700589 * Forcibly clear the SOCK_CLOSED flag. It gets set
Alex Elder456ea462012-06-20 21:53:53 -0500590 * independent of the connection mutex, and we could have
591 * received a socket close event before we had the chance to
592 * shut the socket down.
593 */
Alex Elderc9ffc772013-02-20 10:25:12 -0600594 con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
Sage Weil8007b8d2012-07-30 18:16:16 -0700595
Alex Elderce2c8902012-05-22 22:15:49 -0500596 con_sock_state_closed(con);
Sage Weil31b80062009-10-06 11:31:13 -0700597 return rc;
598}
599
600/*
601 * Reset a connection. Discard all incoming and outgoing messages
602 * and clear *_seq state.
603 */
604static void ceph_msg_remove(struct ceph_msg *msg)
605{
606 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -0500607 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -0700608 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -0500609 msg->con = NULL;
610
Sage Weil31b80062009-10-06 11:31:13 -0700611 ceph_msg_put(msg);
612}
613static void ceph_msg_remove_list(struct list_head *head)
614{
615 while (!list_empty(head)) {
616 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
617 list_head);
618 ceph_msg_remove(msg);
619 }
620}
621
622static void reset_connection(struct ceph_connection *con)
623{
624 /* reset connection, out_queue, msg_ and connect_seq */
625 /* discard existing out_queue and msg_seq */
Sage Weil0fa6ebc2012-12-27 20:27:04 -0600626 dout("reset_connection %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -0700627 ceph_msg_remove_list(&con->out_queue);
628 ceph_msg_remove_list(&con->out_sent);
629
Sage Weilcf3e5c42009-12-11 09:48:05 -0800630 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -0500631 BUG_ON(con->in_msg->con != con);
632 con->in_msg->con = NULL;
Sage Weilcf3e5c42009-12-11 09:48:05 -0800633 ceph_msg_put(con->in_msg);
634 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -0700635 con->ops->put(con);
Sage Weilcf3e5c42009-12-11 09:48:05 -0800636 }
637
Sage Weil31b80062009-10-06 11:31:13 -0700638 con->connect_seq = 0;
639 con->out_seq = 0;
Sage Weilc86a2932009-12-14 14:04:30 -0800640 if (con->out_msg) {
641 ceph_msg_put(con->out_msg);
642 con->out_msg = NULL;
643 }
Sage Weil31b80062009-10-06 11:31:13 -0700644 con->in_seq = 0;
Sage Weil0e0d5e02010-04-02 16:07:19 -0700645 con->in_seq_acked = 0;
Sage Weil31b80062009-10-06 11:31:13 -0700646}
647
648/*
649 * mark a peer down. drop any open connections.
650 */
651void ceph_con_close(struct ceph_connection *con)
652{
Sage Weil8c50c812012-07-30 16:24:37 -0700653 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700654 dout("con_close %p peer %s\n", con,
655 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700656 con->state = CON_STATE_CLOSED;
Alex Eldera5988c42012-05-29 11:04:58 -0500657
Alex Elderc9ffc772013-02-20 10:25:12 -0600658 con_flag_clear(con, CON_FLAG_LOSSYTX); /* so we retry next connect */
659 con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
660 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
661 con_flag_clear(con, CON_FLAG_BACKOFF);
Alex Eldera5988c42012-05-29 11:04:58 -0500662
Sage Weil31b80062009-10-06 11:31:13 -0700663 reset_connection(con);
Sage Weil6f2bc3f2010-04-02 16:16:34 -0700664 con->peer_global_seq = 0;
Sage Weil91e45ce32010-02-15 12:05:09 -0800665 cancel_delayed_work(&con->work);
Sage Weilee76e072012-07-20 16:45:49 -0700666 con_close_socket(con);
Sage Weilec302642009-12-22 10:43:42 -0800667 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700668}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700669EXPORT_SYMBOL(ceph_con_close);
Sage Weil31b80062009-10-06 11:31:13 -0700670
671/*
Sage Weil31b80062009-10-06 11:31:13 -0700672 * Reopen a closed connection, with a new peer address.
673 */
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700674void ceph_con_open(struct ceph_connection *con,
675 __u8 entity_type, __u64 entity_num,
676 struct ceph_entity_addr *addr)
Sage Weil31b80062009-10-06 11:31:13 -0700677{
Sage Weil54691552012-07-30 16:21:40 -0700678 mutex_lock(&con->mutex);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700679 dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
Sage Weil8dacc7d2012-07-20 17:24:40 -0700680
Alex Elder122070a2012-12-26 10:43:57 -0600681 WARN_ON(con->state != CON_STATE_CLOSED);
Sage Weil8dacc7d2012-07-20 17:24:40 -0700682 con->state = CON_STATE_PREOPEN;
Alex Eldera5988c42012-05-29 11:04:58 -0500683
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700684 con->peer_name.type = (__u8) entity_type;
685 con->peer_name.num = cpu_to_le64(entity_num);
686
Sage Weil31b80062009-10-06 11:31:13 -0700687 memcpy(&con->peer_addr, addr, sizeof(*addr));
Sage Weil03c677e2009-11-20 15:14:15 -0800688 con->delay = 0; /* reset backoff memory */
Sage Weil54691552012-07-30 16:21:40 -0700689 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700690 queue_con(con);
691}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700692EXPORT_SYMBOL(ceph_con_open);
Sage Weil31b80062009-10-06 11:31:13 -0700693
694/*
Sage Weil87b315a2010-03-22 14:51:18 -0700695 * return true if this connection ever successfully opened
696 */
697bool ceph_con_opened(struct ceph_connection *con)
698{
699 return con->connect_seq > 0;
700}
701
702/*
Sage Weil31b80062009-10-06 11:31:13 -0700703 * initialize a new connection.
704 */
Alex Elder1bfd89f2012-05-26 23:26:43 -0500705void ceph_con_init(struct ceph_connection *con, void *private,
706 const struct ceph_connection_operations *ops,
Sage Weilb7a9e5d2012-06-27 12:24:08 -0700707 struct ceph_messenger *msgr)
Sage Weil31b80062009-10-06 11:31:13 -0700708{
709 dout("con_init %p\n", con);
710 memset(con, 0, sizeof(*con));
Alex Elder1bfd89f2012-05-26 23:26:43 -0500711 con->private = private;
712 con->ops = ops;
Sage Weil31b80062009-10-06 11:31:13 -0700713 con->msgr = msgr;
Alex Elderce2c8902012-05-22 22:15:49 -0500714
715 con_sock_state_init(con);
716
Sage Weilec302642009-12-22 10:43:42 -0800717 mutex_init(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -0700718 INIT_LIST_HEAD(&con->out_queue);
719 INIT_LIST_HEAD(&con->out_sent);
720 INIT_DELAYED_WORK(&con->work, con_work);
Alex Eldera5988c42012-05-29 11:04:58 -0500721
Sage Weil8dacc7d2012-07-20 17:24:40 -0700722 con->state = CON_STATE_CLOSED;
Sage Weil31b80062009-10-06 11:31:13 -0700723}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700724EXPORT_SYMBOL(ceph_con_init);
Sage Weil31b80062009-10-06 11:31:13 -0700725
726
727/*
728 * We maintain a global counter to order connection attempts. Get
729 * a unique seq greater than @gt.
730 */
731static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
732{
733 u32 ret;
734
735 spin_lock(&msgr->global_seq_lock);
736 if (msgr->global_seq < gt)
737 msgr->global_seq = gt;
738 ret = ++msgr->global_seq;
739 spin_unlock(&msgr->global_seq_lock);
740 return ret;
741}
742
Alex Eldere2200422012-05-23 14:35:23 -0500743static void con_out_kvec_reset(struct ceph_connection *con)
Alex Elder859eb792012-02-14 14:05:33 -0600744{
745 con->out_kvec_left = 0;
746 con->out_kvec_bytes = 0;
747 con->out_kvec_cur = &con->out_kvec[0];
748}
749
Alex Eldere2200422012-05-23 14:35:23 -0500750static void con_out_kvec_add(struct ceph_connection *con,
Alex Elder859eb792012-02-14 14:05:33 -0600751 size_t size, void *data)
752{
753 int index;
754
755 index = con->out_kvec_left;
756 BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
757
758 con->out_kvec[index].iov_len = size;
759 con->out_kvec[index].iov_base = data;
760 con->out_kvec_left++;
761 con->out_kvec_bytes += size;
762}
Sage Weil31b80062009-10-06 11:31:13 -0700763
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500764#ifdef CONFIG_BLOCK
Alex Elder6aaa4512013-03-06 23:39:39 -0600765
766/*
767 * For a bio data item, a piece is whatever remains of the next
768 * entry in the current bio iovec, or the first entry in the next
769 * bio in the list.
770 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500771static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500772 size_t length)
Alex Elder6aaa4512013-03-06 23:39:39 -0600773{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500774 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600775 struct bio *bio;
776
777 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
778
779 bio = data->bio;
780 BUG_ON(!bio);
Alex Elder6aaa4512013-03-06 23:39:39 -0600781
Alex Elderca8b3a62013-04-05 14:46:01 -0500782 cursor->resid = min(length, data->bio_length);
Alex Elder6aaa4512013-03-06 23:39:39 -0600783 cursor->bio = bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700784 cursor->bvec_iter = bio->bi_iter;
785 cursor->last_piece =
786 cursor->resid <= bio_iter_len(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600787}
788
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500789static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
Alex Elder6aaa4512013-03-06 23:39:39 -0600790 size_t *page_offset,
791 size_t *length)
792{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500793 struct ceph_msg_data *data = cursor->data;
Alex Elder6aaa4512013-03-06 23:39:39 -0600794 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700795 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600796
797 BUG_ON(data->type != CEPH_MSG_DATA_BIO);
798
799 bio = cursor->bio;
800 BUG_ON(!bio);
801
Kent Overstreetf38a5182013-08-07 14:30:24 -0700802 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600803
Kent Overstreetf38a5182013-08-07 14:30:24 -0700804 *page_offset = (size_t) bio_vec.bv_offset;
Alex Elder6aaa4512013-03-06 23:39:39 -0600805 BUG_ON(*page_offset >= PAGE_SIZE);
Alex Elder25aff7c2013-03-11 23:34:22 -0500806 if (cursor->last_piece) /* pagelist offset is always 0 */
807 *length = cursor->resid;
808 else
Kent Overstreetf38a5182013-08-07 14:30:24 -0700809 *length = (size_t) bio_vec.bv_len;
Alex Elder25aff7c2013-03-11 23:34:22 -0500810 BUG_ON(*length > cursor->resid);
Alex Elder5df521b2013-03-30 15:09:59 -0500811 BUG_ON(*page_offset + *length > PAGE_SIZE);
Alex Elder6aaa4512013-03-06 23:39:39 -0600812
Kent Overstreetf38a5182013-08-07 14:30:24 -0700813 return bio_vec.bv_page;
Alex Elder6aaa4512013-03-06 23:39:39 -0600814}
815
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500816static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
817 size_t bytes)
Alex Elder6aaa4512013-03-06 23:39:39 -0600818{
Alex Elder6aaa4512013-03-06 23:39:39 -0600819 struct bio *bio;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700820 struct bio_vec bio_vec;
Alex Elder6aaa4512013-03-06 23:39:39 -0600821
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500822 BUG_ON(cursor->data->type != CEPH_MSG_DATA_BIO);
Alex Elder6aaa4512013-03-06 23:39:39 -0600823
824 bio = cursor->bio;
825 BUG_ON(!bio);
826
Kent Overstreetf38a5182013-08-07 14:30:24 -0700827 bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
Alex Elder6aaa4512013-03-06 23:39:39 -0600828
829 /* Advance the cursor offset */
830
Alex Elder25aff7c2013-03-11 23:34:22 -0500831 BUG_ON(cursor->resid < bytes);
832 cursor->resid -= bytes;
Kent Overstreetf38a5182013-08-07 14:30:24 -0700833
834 bio_advance_iter(bio, &cursor->bvec_iter, bytes);
835
836 if (bytes < bio_vec.bv_len)
Alex Elder6aaa4512013-03-06 23:39:39 -0600837 return false; /* more bytes to process in this segment */
838
839 /* Move on to the next segment, and possibly the next bio */
840
Kent Overstreetf38a5182013-08-07 14:30:24 -0700841 if (!cursor->bvec_iter.bi_size) {
Alex Elder6aaa4512013-03-06 23:39:39 -0600842 bio = bio->bi_next;
Ilya Dryomov0ec1d152014-02-05 15:19:55 +0200843 cursor->bio = bio;
844 if (bio)
845 cursor->bvec_iter = bio->bi_iter;
846 else
847 memset(&cursor->bvec_iter, 0,
848 sizeof(cursor->bvec_iter));
Alex Elder6aaa4512013-03-06 23:39:39 -0600849 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600850
Alex Elder25aff7c2013-03-11 23:34:22 -0500851 if (!cursor->last_piece) {
852 BUG_ON(!cursor->resid);
853 BUG_ON(!bio);
854 /* A short read is OK, so use <= rather than == */
Kent Overstreetf38a5182013-08-07 14:30:24 -0700855 if (cursor->resid <= bio_iter_len(bio, cursor->bvec_iter))
Alex Elder6aaa4512013-03-06 23:39:39 -0600856 cursor->last_piece = true;
Alex Elder25aff7c2013-03-11 23:34:22 -0500857 }
Alex Elder6aaa4512013-03-06 23:39:39 -0600858
859 return true;
860}
Alex Elderea965712013-04-05 14:46:01 -0500861#endif /* CONFIG_BLOCK */
Alex Elderdf6ad1f2012-06-11 14:57:13 -0500862
Alex Elderfe38a2b2013-03-06 23:39:39 -0600863/*
Alex Eldere766d7b2013-03-07 15:38:28 -0600864 * For a page array, a piece comes from the first page in the array
865 * that has not already been fully consumed.
866 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500867static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500868 size_t length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600869{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500870 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600871 int page_count;
872
873 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
874
875 BUG_ON(!data->pages);
876 BUG_ON(!data->length);
877
Alex Elderca8b3a62013-04-05 14:46:01 -0500878 cursor->resid = min(length, data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600879 page_count = calc_pages_for(data->alignment, (u64)data->length);
Alex Eldere766d7b2013-03-07 15:38:28 -0600880 cursor->page_offset = data->alignment & ~PAGE_MASK;
881 cursor->page_index = 0;
Alex Elder56fc5652013-03-30 23:46:55 -0500882 BUG_ON(page_count > (int)USHRT_MAX);
883 cursor->page_count = (unsigned short)page_count;
884 BUG_ON(length > SIZE_MAX - cursor->page_offset);
885 cursor->last_piece = (size_t)cursor->page_offset + length <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600886}
887
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500888static struct page *
889ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
890 size_t *page_offset, size_t *length)
Alex Eldere766d7b2013-03-07 15:38:28 -0600891{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500892 struct ceph_msg_data *data = cursor->data;
Alex Eldere766d7b2013-03-07 15:38:28 -0600893
894 BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
895
896 BUG_ON(cursor->page_index >= cursor->page_count);
897 BUG_ON(cursor->page_offset >= PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600898
899 *page_offset = cursor->page_offset;
Alex Elder25aff7c2013-03-11 23:34:22 -0500900 if (cursor->last_piece)
Alex Eldere766d7b2013-03-07 15:38:28 -0600901 *length = cursor->resid;
Alex Elder25aff7c2013-03-11 23:34:22 -0500902 else
Alex Eldere766d7b2013-03-07 15:38:28 -0600903 *length = PAGE_SIZE - *page_offset;
Alex Eldere766d7b2013-03-07 15:38:28 -0600904
905 return data->pages[cursor->page_index];
906}
907
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500908static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
Alex Eldere766d7b2013-03-07 15:38:28 -0600909 size_t bytes)
910{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500911 BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
Alex Eldere766d7b2013-03-07 15:38:28 -0600912
913 BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
Alex Eldere766d7b2013-03-07 15:38:28 -0600914
915 /* Advance the cursor page offset */
916
917 cursor->resid -= bytes;
Alex Elder5df521b2013-03-30 15:09:59 -0500918 cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
919 if (!bytes || cursor->page_offset)
Alex Eldere766d7b2013-03-07 15:38:28 -0600920 return false; /* more bytes to process in the current page */
921
Yan, Zhengd90deda2014-03-23 06:50:39 +0800922 if (!cursor->resid)
923 return false; /* no more data */
924
Alex Elder5df521b2013-03-30 15:09:59 -0500925 /* Move on to the next page; offset is already at 0 */
Alex Eldere766d7b2013-03-07 15:38:28 -0600926
927 BUG_ON(cursor->page_index >= cursor->page_count);
Alex Eldere766d7b2013-03-07 15:38:28 -0600928 cursor->page_index++;
Alex Elder25aff7c2013-03-11 23:34:22 -0500929 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Eldere766d7b2013-03-07 15:38:28 -0600930
931 return true;
932}
933
934/*
Alex Elderdd236fc2013-03-06 23:39:39 -0600935 * For a pagelist, a piece is whatever remains to be consumed in the
936 * first page in the list, or the front of the next page.
Alex Elderfe38a2b2013-03-06 23:39:39 -0600937 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500938static void
939ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
Alex Elder25aff7c2013-03-11 23:34:22 -0500940 size_t length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600941{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500942 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600943 struct ceph_pagelist *pagelist;
944 struct page *page;
945
Alex Elderdd236fc2013-03-06 23:39:39 -0600946 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600947
948 pagelist = data->pagelist;
949 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500950
951 if (!length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600952 return; /* pagelist can be assigned but empty */
953
954 BUG_ON(list_empty(&pagelist->head));
955 page = list_first_entry(&pagelist->head, struct page, lru);
956
Alex Elderca8b3a62013-04-05 14:46:01 -0500957 cursor->resid = min(length, pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600958 cursor->page = page;
959 cursor->offset = 0;
Alex Eldera51b272e2013-04-19 15:34:49 -0500960 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600961}
962
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500963static struct page *
964ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
965 size_t *page_offset, size_t *length)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600966{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500967 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600968 struct ceph_pagelist *pagelist;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600969
970 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
971
972 pagelist = data->pagelist;
973 BUG_ON(!pagelist);
974
975 BUG_ON(!cursor->page);
Alex Elder25aff7c2013-03-11 23:34:22 -0500976 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -0600977
Alex Elder5df521b2013-03-30 15:09:59 -0500978 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -0600979 *page_offset = cursor->offset & ~PAGE_MASK;
Alex Elder5df521b2013-03-30 15:09:59 -0500980 if (cursor->last_piece)
Alex Elder25aff7c2013-03-11 23:34:22 -0500981 *length = cursor->resid;
982 else
983 *length = PAGE_SIZE - *page_offset;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600984
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500985 return cursor->page;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600986}
987
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500988static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
Alex Elderdd236fc2013-03-06 23:39:39 -0600989 size_t bytes)
Alex Elderfe38a2b2013-03-06 23:39:39 -0600990{
Alex Elder8ae4f4f2013-03-14 14:09:06 -0500991 struct ceph_msg_data *data = cursor->data;
Alex Elderfe38a2b2013-03-06 23:39:39 -0600992 struct ceph_pagelist *pagelist;
993
994 BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
995
996 pagelist = data->pagelist;
997 BUG_ON(!pagelist);
Alex Elder25aff7c2013-03-11 23:34:22 -0500998
999 BUG_ON(cursor->offset + cursor->resid != pagelist->length);
Alex Elderfe38a2b2013-03-06 23:39:39 -06001000 BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1001
1002 /* Advance the cursor offset */
1003
Alex Elder25aff7c2013-03-11 23:34:22 -05001004 cursor->resid -= bytes;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001005 cursor->offset += bytes;
Alex Elder5df521b2013-03-30 15:09:59 -05001006 /* offset of first page in pagelist is always 0 */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001007 if (!bytes || cursor->offset & ~PAGE_MASK)
1008 return false; /* more bytes to process in the current page */
1009
Yan, Zhengd90deda2014-03-23 06:50:39 +08001010 if (!cursor->resid)
1011 return false; /* no more data */
1012
Alex Elderfe38a2b2013-03-06 23:39:39 -06001013 /* Move on to the next page */
1014
1015 BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
1016 cursor->page = list_entry_next(cursor->page, lru);
Alex Elder25aff7c2013-03-11 23:34:22 -05001017 cursor->last_piece = cursor->resid <= PAGE_SIZE;
Alex Elderfe38a2b2013-03-06 23:39:39 -06001018
1019 return true;
1020}
1021
Alex Elderdd236fc2013-03-06 23:39:39 -06001022/*
1023 * Message data is handled (sent or received) in pieces, where each
1024 * piece resides on a single page. The network layer might not
1025 * consume an entire piece at once. A data item's cursor keeps
1026 * track of which piece is next to process and how much remains to
1027 * be processed in that piece. It also tracks whether the current
1028 * piece is the last one in the data item.
1029 */
Alex Elderca8b3a62013-04-05 14:46:01 -05001030static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
Alex Elderdd236fc2013-03-06 23:39:39 -06001031{
Alex Elderca8b3a62013-04-05 14:46:01 -05001032 size_t length = cursor->total_resid;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001033
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001034 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001035 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001036 ceph_msg_data_pagelist_cursor_init(cursor, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001037 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001038 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001039 ceph_msg_data_pages_cursor_init(cursor, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001040 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001041#ifdef CONFIG_BLOCK
1042 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001043 ceph_msg_data_bio_cursor_init(cursor, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001044 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001045#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001046 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001047 default:
1048 /* BUG(); */
1049 break;
1050 }
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001051 cursor->need_crc = true;
Alex Elderdd236fc2013-03-06 23:39:39 -06001052}
1053
Alex Elderca8b3a62013-04-05 14:46:01 -05001054static void ceph_msg_data_cursor_init(struct ceph_msg *msg, size_t length)
1055{
1056 struct ceph_msg_data_cursor *cursor = &msg->cursor;
1057 struct ceph_msg_data *data;
1058
1059 BUG_ON(!length);
1060 BUG_ON(length > msg->data_length);
1061 BUG_ON(list_empty(&msg->data));
1062
Alex Elderca8b3a62013-04-05 14:46:01 -05001063 cursor->data_head = &msg->data;
1064 cursor->total_resid = length;
1065 data = list_first_entry(&msg->data, struct ceph_msg_data, links);
1066 cursor->data = data;
1067
1068 __ceph_msg_data_cursor_init(cursor);
1069}
1070
Alex Elderdd236fc2013-03-06 23:39:39 -06001071/*
1072 * Return the page containing the next piece to process for a given
1073 * data item, and supply the page offset and length of that piece.
1074 * Indicate whether this is the last piece in this data item.
1075 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001076static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1077 size_t *page_offset, size_t *length,
Alex Elderdd236fc2013-03-06 23:39:39 -06001078 bool *last_piece)
1079{
1080 struct page *page;
1081
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001082 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001083 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001084 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
Alex Elderdd236fc2013-03-06 23:39:39 -06001085 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001086 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001087 page = ceph_msg_data_pages_next(cursor, page_offset, length);
Alex Eldere766d7b2013-03-07 15:38:28 -06001088 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001089#ifdef CONFIG_BLOCK
1090 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001091 page = ceph_msg_data_bio_next(cursor, page_offset, length);
Alex Elder6aaa4512013-03-06 23:39:39 -06001092 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001093#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001094 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001095 default:
1096 page = NULL;
1097 break;
1098 }
1099 BUG_ON(!page);
1100 BUG_ON(*page_offset + *length > PAGE_SIZE);
1101 BUG_ON(!*length);
1102 if (last_piece)
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001103 *last_piece = cursor->last_piece;
Alex Elderdd236fc2013-03-06 23:39:39 -06001104
1105 return page;
1106}
1107
1108/*
1109 * Returns true if the result moves the cursor on to the next piece
1110 * of the data item.
1111 */
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001112static bool ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1113 size_t bytes)
Alex Elderdd236fc2013-03-06 23:39:39 -06001114{
1115 bool new_piece;
1116
Alex Elder25aff7c2013-03-11 23:34:22 -05001117 BUG_ON(bytes > cursor->resid);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001118 switch (cursor->data->type) {
Alex Elderdd236fc2013-03-06 23:39:39 -06001119 case CEPH_MSG_DATA_PAGELIST:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001120 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
Alex Elderdd236fc2013-03-06 23:39:39 -06001121 break;
Alex Eldere766d7b2013-03-07 15:38:28 -06001122 case CEPH_MSG_DATA_PAGES:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001123 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
Alex Eldere766d7b2013-03-07 15:38:28 -06001124 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001125#ifdef CONFIG_BLOCK
1126 case CEPH_MSG_DATA_BIO:
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001127 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
Alex Elder6aaa4512013-03-06 23:39:39 -06001128 break;
Alex Elderdd236fc2013-03-06 23:39:39 -06001129#endif /* CONFIG_BLOCK */
Alex Elder6aaa4512013-03-06 23:39:39 -06001130 case CEPH_MSG_DATA_NONE:
Alex Elderdd236fc2013-03-06 23:39:39 -06001131 default:
1132 BUG();
1133 break;
1134 }
Alex Elderca8b3a62013-04-05 14:46:01 -05001135 cursor->total_resid -= bytes;
Alex Elderdd236fc2013-03-06 23:39:39 -06001136
Alex Elderca8b3a62013-04-05 14:46:01 -05001137 if (!cursor->resid && cursor->total_resid) {
1138 WARN_ON(!cursor->last_piece);
1139 BUG_ON(list_is_last(&cursor->data->links, cursor->data_head));
1140 cursor->data = list_entry_next(cursor->data, links);
1141 __ceph_msg_data_cursor_init(cursor);
Alex Eldera51b272e2013-04-19 15:34:49 -05001142 new_piece = true;
Alex Elderca8b3a62013-04-05 14:46:01 -05001143 }
Alex Eldera51b272e2013-04-19 15:34:49 -05001144 cursor->need_crc = new_piece;
Alex Elderca8b3a62013-04-05 14:46:01 -05001145
Alex Elderdd236fc2013-03-06 23:39:39 -06001146 return new_piece;
1147}
1148
Alex Elder98fa5dd2013-04-02 12:09:50 -05001149static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
Alex Elder739c9052012-06-11 14:57:13 -05001150{
Alex Elder739c9052012-06-11 14:57:13 -05001151 BUG_ON(!msg);
Alex Elder25aff7c2013-03-11 23:34:22 -05001152 BUG_ON(!data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001153
Alex Elder4c59b4a2013-03-11 23:34:23 -05001154 /* Initialize data cursor */
Alex Elderfe38a2b2013-03-06 23:39:39 -06001155
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001156 ceph_msg_data_cursor_init(msg, (size_t)data_len);
Alex Elder739c9052012-06-11 14:57:13 -05001157}
1158
Sage Weil31b80062009-10-06 11:31:13 -07001159/*
1160 * Prepare footer for currently outgoing message, and finish things
1161 * off. Assumes out_kvec* are already valid.. we just add on to the end.
1162 */
Alex Elder859eb792012-02-14 14:05:33 -06001163static void prepare_write_message_footer(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001164{
1165 struct ceph_msg *m = con->out_msg;
Alex Elder859eb792012-02-14 14:05:33 -06001166 int v = con->out_kvec_left;
Sage Weil31b80062009-10-06 11:31:13 -07001167
Alex Elderfd154f32012-06-11 14:57:13 -05001168 m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1169
Sage Weil31b80062009-10-06 11:31:13 -07001170 dout("prepare_write_message_footer %p\n", con);
1171 con->out_kvec_is_msg = true;
1172 con->out_kvec[v].iov_base = &m->footer;
1173 con->out_kvec[v].iov_len = sizeof(m->footer);
1174 con->out_kvec_bytes += sizeof(m->footer);
1175 con->out_kvec_left++;
1176 con->out_more = m->more_to_follow;
Sage Weilc86a2932009-12-14 14:04:30 -08001177 con->out_msg_done = true;
Sage Weil31b80062009-10-06 11:31:13 -07001178}
1179
1180/*
1181 * Prepare headers for the next outgoing message.
1182 */
1183static void prepare_write_message(struct ceph_connection *con)
1184{
1185 struct ceph_msg *m;
Alex Eldera9a0c512012-02-15 07:43:54 -06001186 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001187
Alex Eldere2200422012-05-23 14:35:23 -05001188 con_out_kvec_reset(con);
Sage Weil31b80062009-10-06 11:31:13 -07001189 con->out_kvec_is_msg = true;
Sage Weilc86a2932009-12-14 14:04:30 -08001190 con->out_msg_done = false;
Sage Weil31b80062009-10-06 11:31:13 -07001191
1192 /* Sneak an ack in there first? If we can get it into the same
1193 * TCP packet that's a good thing. */
1194 if (con->in_seq > con->in_seq_acked) {
1195 con->in_seq_acked = con->in_seq;
Alex Eldere2200422012-05-23 14:35:23 -05001196 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001197 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001198 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001199 &con->out_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07001200 }
1201
Alex Elder38941f82012-06-01 14:56:43 -05001202 BUG_ON(list_empty(&con->out_queue));
Alex Elder859eb792012-02-14 14:05:33 -06001203 m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
Sage Weilc86a2932009-12-14 14:04:30 -08001204 con->out_msg = m;
Alex Elder38941f82012-06-01 14:56:43 -05001205 BUG_ON(m->con != con);
Sage Weil4cf9d542011-07-26 11:27:24 -07001206
1207 /* put message on sent list */
1208 ceph_msg_get(m);
1209 list_move_tail(&m->list_head, &con->out_sent);
Sage Weil31b80062009-10-06 11:31:13 -07001210
Sage Weile84346b2010-05-11 21:20:38 -07001211 /*
1212 * only assign outgoing seq # if we haven't sent this message
1213 * yet. if it is requeued, resend with it's original seq.
1214 */
1215 if (m->needs_out_seq) {
1216 m->hdr.seq = cpu_to_le64(++con->out_seq);
1217 m->needs_out_seq = false;
1218 }
Alex Elder98fa5dd2013-04-02 12:09:50 -05001219 WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
Sage Weil31b80062009-10-06 11:31:13 -07001220
Alex Elder98fa5dd2013-04-02 12:09:50 -05001221 dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
Sage Weil31b80062009-10-06 11:31:13 -07001222 m, con->out_seq, le16_to_cpu(m->hdr.type),
1223 le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
Alex Elder98fa5dd2013-04-02 12:09:50 -05001224 m->data_length);
Sage Weil31b80062009-10-06 11:31:13 -07001225 BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1226
1227 /* tag + hdr + front + middle */
Alex Eldere2200422012-05-23 14:35:23 -05001228 con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1229 con_out_kvec_add(con, sizeof (m->hdr), &m->hdr);
1230 con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
Alex Elder859eb792012-02-14 14:05:33 -06001231
Sage Weil31b80062009-10-06 11:31:13 -07001232 if (m->middle)
Alex Eldere2200422012-05-23 14:35:23 -05001233 con_out_kvec_add(con, m->middle->vec.iov_len,
Alex Elder859eb792012-02-14 14:05:33 -06001234 m->middle->vec.iov_base);
Sage Weil31b80062009-10-06 11:31:13 -07001235
1236 /* fill in crc (except data pages), footer */
Alex Eldera9a0c512012-02-15 07:43:54 -06001237 crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1238 con->out_msg->hdr.crc = cpu_to_le32(crc);
Alex Elderfd154f32012-06-11 14:57:13 -05001239 con->out_msg->footer.flags = 0;
Alex Eldera9a0c512012-02-15 07:43:54 -06001240
1241 crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1242 con->out_msg->footer.front_crc = cpu_to_le32(crc);
1243 if (m->middle) {
1244 crc = crc32c(0, m->middle->vec.iov_base,
1245 m->middle->vec.iov_len);
1246 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1247 } else
Sage Weil31b80062009-10-06 11:31:13 -07001248 con->out_msg->footer.middle_crc = 0;
Alex Elder739c9052012-06-11 14:57:13 -05001249 dout("%s front_crc %u middle_crc %u\n", __func__,
Sage Weil31b80062009-10-06 11:31:13 -07001250 le32_to_cpu(con->out_msg->footer.front_crc),
1251 le32_to_cpu(con->out_msg->footer.middle_crc));
1252
1253 /* is there a data payload? */
Alex Elder739c9052012-06-11 14:57:13 -05001254 con->out_msg->footer.data_crc = 0;
Alex Elder98fa5dd2013-04-02 12:09:50 -05001255 if (m->data_length) {
1256 prepare_message_data(con->out_msg, m->data_length);
Alex Elder78625052013-03-06 23:39:39 -06001257 con->out_more = 1; /* data + footer will follow */
1258 } else {
Sage Weil31b80062009-10-06 11:31:13 -07001259 /* no, queue up footer too and be done */
Alex Elder859eb792012-02-14 14:05:33 -06001260 prepare_write_message_footer(con);
Alex Elder78625052013-03-06 23:39:39 -06001261 }
Sage Weil31b80062009-10-06 11:31:13 -07001262
Alex Elderc9ffc772013-02-20 10:25:12 -06001263 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001264}
1265
1266/*
1267 * Prepare an ack.
1268 */
1269static void prepare_write_ack(struct ceph_connection *con)
1270{
1271 dout("prepare_write_ack %p %llu -> %llu\n", con,
1272 con->in_seq_acked, con->in_seq);
1273 con->in_seq_acked = con->in_seq;
1274
Alex Eldere2200422012-05-23 14:35:23 -05001275 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001276
Alex Eldere2200422012-05-23 14:35:23 -05001277 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
Alex Elder859eb792012-02-14 14:05:33 -06001278
Sage Weil31b80062009-10-06 11:31:13 -07001279 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
Alex Eldere2200422012-05-23 14:35:23 -05001280 con_out_kvec_add(con, sizeof (con->out_temp_ack),
Alex Elder859eb792012-02-14 14:05:33 -06001281 &con->out_temp_ack);
1282
Sage Weil31b80062009-10-06 11:31:13 -07001283 con->out_more = 1; /* more will follow.. eventually.. */
Alex Elderc9ffc772013-02-20 10:25:12 -06001284 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001285}
1286
1287/*
Sage Weil3a230832013-03-25 08:47:40 -07001288 * Prepare to share the seq during handshake
1289 */
1290static void prepare_write_seq(struct ceph_connection *con)
1291{
1292 dout("prepare_write_seq %p %llu -> %llu\n", con,
1293 con->in_seq_acked, con->in_seq);
1294 con->in_seq_acked = con->in_seq;
1295
1296 con_out_kvec_reset(con);
1297
1298 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1299 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1300 &con->out_temp_ack);
1301
1302 con_flag_set(con, CON_FLAG_WRITE_PENDING);
1303}
1304
1305/*
Sage Weil31b80062009-10-06 11:31:13 -07001306 * Prepare to write keepalive byte.
1307 */
1308static void prepare_write_keepalive(struct ceph_connection *con)
1309{
1310 dout("prepare_write_keepalive %p\n", con);
Alex Eldere2200422012-05-23 14:35:23 -05001311 con_out_kvec_reset(con);
1312 con_out_kvec_add(con, sizeof (tag_keepalive), &tag_keepalive);
Alex Elderc9ffc772013-02-20 10:25:12 -06001313 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07001314}
1315
1316/*
1317 * Connection negotiation.
1318 */
1319
Alex Elderdac1e712012-05-16 15:16:39 -05001320static struct ceph_auth_handshake *get_connect_authorizer(struct ceph_connection *con,
1321 int *auth_proto)
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001322{
Alex Eldera3530df2012-05-16 15:16:39 -05001323 struct ceph_auth_handshake *auth;
Alex Elderb1c6b982012-05-16 15:16:38 -05001324
1325 if (!con->ops->get_authorizer) {
1326 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1327 con->out_connect.authorizer_len = 0;
Alex Elder729796b2012-05-16 15:16:39 -05001328 return NULL;
Alex Elderb1c6b982012-05-16 15:16:38 -05001329 }
1330
1331 /* Can't hold the mutex while getting authorizer */
Sage Weilec302642009-12-22 10:43:42 -08001332 mutex_unlock(&con->mutex);
Alex Elderdac1e712012-05-16 15:16:39 -05001333 auth = con->ops->get_authorizer(con, auth_proto, con->auth_retry);
Sage Weilec302642009-12-22 10:43:42 -08001334 mutex_lock(&con->mutex);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001335
Alex Eldera3530df2012-05-16 15:16:39 -05001336 if (IS_ERR(auth))
Alex Elder729796b2012-05-16 15:16:39 -05001337 return auth;
Sage Weil8dacc7d2012-07-20 17:24:40 -07001338 if (con->state != CON_STATE_NEGOTIATING)
Alex Elder729796b2012-05-16 15:16:39 -05001339 return ERR_PTR(-EAGAIN);
Sage Weil0da5d702011-05-19 11:21:05 -07001340
Alex Elder8f43fb52012-05-16 15:16:39 -05001341 con->auth_reply_buf = auth->authorizer_reply_buf;
1342 con->auth_reply_buf_len = auth->authorizer_reply_buf_len;
Alex Elder729796b2012-05-16 15:16:39 -05001343 return auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001344}
1345
Sage Weil31b80062009-10-06 11:31:13 -07001346/*
1347 * We connected to a peer and are saying hello.
1348 */
Alex Eldere825a662012-05-16 15:16:38 -05001349static void prepare_write_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001350{
Alex Eldere2200422012-05-23 14:35:23 -05001351 con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1352 con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
Alex Eldere825a662012-05-16 15:16:38 -05001353 &con->msgr->my_enc_addr);
Sage Weileed0ef22009-11-10 14:34:36 -08001354
Sage Weileed0ef22009-11-10 14:34:36 -08001355 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001356 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weileed0ef22009-11-10 14:34:36 -08001357}
1358
Alex Eldere825a662012-05-16 15:16:38 -05001359static int prepare_write_connect(struct ceph_connection *con)
Sage Weileed0ef22009-11-10 14:34:36 -08001360{
Eric Dumazet95c96172012-04-15 05:58:06 +00001361 unsigned int global_seq = get_global_seq(con->msgr, 0);
Sage Weil31b80062009-10-06 11:31:13 -07001362 int proto;
Alex Elderdac1e712012-05-16 15:16:39 -05001363 int auth_proto;
Alex Elder729796b2012-05-16 15:16:39 -05001364 struct ceph_auth_handshake *auth;
Sage Weil31b80062009-10-06 11:31:13 -07001365
1366 switch (con->peer_name.type) {
1367 case CEPH_ENTITY_TYPE_MON:
1368 proto = CEPH_MONC_PROTOCOL;
1369 break;
1370 case CEPH_ENTITY_TYPE_OSD:
1371 proto = CEPH_OSDC_PROTOCOL;
1372 break;
1373 case CEPH_ENTITY_TYPE_MDS:
1374 proto = CEPH_MDSC_PROTOCOL;
1375 break;
1376 default:
1377 BUG();
1378 }
1379
1380 dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1381 con->connect_seq, global_seq, proto);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001382
Alex Eldere825a662012-05-16 15:16:38 -05001383 con->out_connect.features = cpu_to_le64(con->msgr->supported_features);
Sage Weil31b80062009-10-06 11:31:13 -07001384 con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1385 con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1386 con->out_connect.global_seq = cpu_to_le32(global_seq);
1387 con->out_connect.protocol_version = cpu_to_le32(proto);
1388 con->out_connect.flags = 0;
Sage Weil31b80062009-10-06 11:31:13 -07001389
Alex Elderdac1e712012-05-16 15:16:39 -05001390 auth_proto = CEPH_AUTH_UNKNOWN;
1391 auth = get_connect_authorizer(con, &auth_proto);
Alex Elder729796b2012-05-16 15:16:39 -05001392 if (IS_ERR(auth))
1393 return PTR_ERR(auth);
Alex Elder3da54772012-05-16 15:16:39 -05001394
Alex Elderdac1e712012-05-16 15:16:39 -05001395 con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
Alex Elder3da54772012-05-16 15:16:39 -05001396 con->out_connect.authorizer_len = auth ?
1397 cpu_to_le32(auth->authorizer_buf_len) : 0;
1398
Alex Eldere2200422012-05-23 14:35:23 -05001399 con_out_kvec_add(con, sizeof (con->out_connect),
Alex Elder3da54772012-05-16 15:16:39 -05001400 &con->out_connect);
1401 if (auth && auth->authorizer_buf_len)
Alex Eldere2200422012-05-23 14:35:23 -05001402 con_out_kvec_add(con, auth->authorizer_buf_len,
Alex Elder3da54772012-05-16 15:16:39 -05001403 auth->authorizer_buf);
Alex Elder859eb792012-02-14 14:05:33 -06001404
Sage Weil31b80062009-10-06 11:31:13 -07001405 con->out_more = 0;
Alex Elderc9ffc772013-02-20 10:25:12 -06001406 con_flag_set(con, CON_FLAG_WRITE_PENDING);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001407
Alex Eldere10c7582012-05-16 15:16:38 -05001408 return 0;
Sage Weil31b80062009-10-06 11:31:13 -07001409}
1410
Sage Weil31b80062009-10-06 11:31:13 -07001411/*
1412 * write as much of pending kvecs to the socket as we can.
1413 * 1 -> done
1414 * 0 -> socket full, but more to do
1415 * <0 -> error
1416 */
1417static int write_partial_kvec(struct ceph_connection *con)
1418{
1419 int ret;
1420
1421 dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1422 while (con->out_kvec_bytes > 0) {
1423 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1424 con->out_kvec_left, con->out_kvec_bytes,
1425 con->out_more);
1426 if (ret <= 0)
1427 goto out;
1428 con->out_kvec_bytes -= ret;
1429 if (con->out_kvec_bytes == 0)
1430 break; /* done */
Alex Elderf42299e2012-02-15 07:43:54 -06001431
1432 /* account for full iov entries consumed */
1433 while (ret >= con->out_kvec_cur->iov_len) {
1434 BUG_ON(!con->out_kvec_left);
1435 ret -= con->out_kvec_cur->iov_len;
1436 con->out_kvec_cur++;
1437 con->out_kvec_left--;
1438 }
1439 /* and for a partially-consumed entry */
1440 if (ret) {
1441 con->out_kvec_cur->iov_len -= ret;
1442 con->out_kvec_cur->iov_base += ret;
Sage Weil31b80062009-10-06 11:31:13 -07001443 }
1444 }
1445 con->out_kvec_left = 0;
1446 con->out_kvec_is_msg = false;
1447 ret = 1;
1448out:
1449 dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1450 con->out_kvec_bytes, con->out_kvec_left, ret);
1451 return ret; /* done! */
1452}
1453
Alex Elder35b62802013-03-08 20:59:00 -06001454static u32 ceph_crc32c_page(u32 crc, struct page *page,
1455 unsigned int page_offset,
1456 unsigned int length)
1457{
1458 char *kaddr;
1459
1460 kaddr = kmap(page);
1461 BUG_ON(kaddr == NULL);
1462 crc = crc32c(crc, kaddr + page_offset, length);
1463 kunmap(page);
1464
1465 return crc;
1466}
Sage Weil31b80062009-10-06 11:31:13 -07001467/*
1468 * Write as much message data payload as we can. If we finish, queue
1469 * up the footer.
1470 * 1 -> done, footer is now queued in out_kvec[].
1471 * 0 -> socket full, but more to do
1472 * <0 -> error
1473 */
Alex Elder34d2d202013-03-08 20:58:59 -06001474static int write_partial_message_data(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001475{
1476 struct ceph_msg *msg = con->out_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001477 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder37675b02012-03-07 11:40:08 -06001478 bool do_datacrc = !con->msgr->nocrc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001479 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07001480
Alex Elder859a35d2013-03-11 23:34:23 -05001481 dout("%s %p msg %p\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001482
Alex Elder5240d9f2013-03-14 14:09:06 -05001483 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05001484 return -EINVAL;
1485
Alex Elder5821bd82012-06-11 14:57:13 -05001486 /*
1487 * Iterate through each page that contains data to be
1488 * written, and send as much as possible for each.
1489 *
1490 * If we are calculating the data crc (the default), we will
1491 * need to map the page. If we have no pages, they have
1492 * been revoked, so use the zero page.
1493 */
Alex Elderf5db90b2013-03-11 23:34:23 -05001494 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
Alex Elder643c68a2013-03-11 23:34:23 -05001495 while (cursor->resid) {
Alex Elder8a166d02013-03-08 13:35:36 -06001496 struct page *page;
Alex Eldere387d522013-03-06 23:39:38 -06001497 size_t page_offset;
1498 size_t length;
Alex Elder8a166d02013-03-08 13:35:36 -06001499 bool last_piece;
Alex Elder8ea299b2013-03-11 23:34:23 -05001500 bool need_crc;
Alex Elderf5db90b2013-03-11 23:34:23 -05001501 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001502
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001503 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05001504 &last_piece);
Alex Eldere387d522013-03-06 23:39:38 -06001505 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
Alex Elderfe38a2b2013-03-06 23:39:39 -06001506 length, last_piece);
Alex Elderf5db90b2013-03-11 23:34:23 -05001507 if (ret <= 0) {
1508 if (do_datacrc)
1509 msg->footer.data_crc = cpu_to_le32(crc);
Sage Weil31b80062009-10-06 11:31:13 -07001510
Alex Elderf5db90b2013-03-11 23:34:23 -05001511 return ret;
1512 }
Alex Elder143334f2013-03-29 11:44:10 -05001513 if (do_datacrc && cursor->need_crc)
1514 crc = ceph_crc32c_page(crc, page, page_offset, length);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05001515 need_crc = ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Sage Weil31b80062009-10-06 11:31:13 -07001516 }
1517
Alex Elder34d2d202013-03-08 20:58:59 -06001518 dout("%s %p msg %p done\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07001519
1520 /* prepare and queue up footer, too */
Alex Elderf5db90b2013-03-11 23:34:23 -05001521 if (do_datacrc)
1522 msg->footer.data_crc = cpu_to_le32(crc);
1523 else
Alex Elder84ca8fc2012-06-11 14:57:13 -05001524 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
Alex Eldere2200422012-05-23 14:35:23 -05001525 con_out_kvec_reset(con);
Alex Elder859eb792012-02-14 14:05:33 -06001526 prepare_write_message_footer(con);
Alex Elderf5db90b2013-03-11 23:34:23 -05001527
1528 return 1; /* must return > 0 to indicate success */
Sage Weil31b80062009-10-06 11:31:13 -07001529}
1530
1531/*
1532 * write some zeros
1533 */
1534static int write_partial_skip(struct ceph_connection *con)
1535{
1536 int ret;
1537
1538 while (con->out_skip > 0) {
Alex Elder31739132012-03-07 11:40:08 -06001539 size_t size = min(con->out_skip, (int) PAGE_CACHE_SIZE);
Sage Weil31b80062009-10-06 11:31:13 -07001540
Alex Eldere1dcb122013-03-06 23:39:38 -06001541 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
Sage Weil31b80062009-10-06 11:31:13 -07001542 if (ret <= 0)
1543 goto out;
1544 con->out_skip -= ret;
1545 }
1546 ret = 1;
1547out:
1548 return ret;
1549}
1550
1551/*
1552 * Prepare to read connection handshake, or an ack.
1553 */
Sage Weileed0ef22009-11-10 14:34:36 -08001554static void prepare_read_banner(struct ceph_connection *con)
1555{
1556 dout("prepare_read_banner %p\n", con);
1557 con->in_base_pos = 0;
1558}
1559
Sage Weil31b80062009-10-06 11:31:13 -07001560static void prepare_read_connect(struct ceph_connection *con)
1561{
1562 dout("prepare_read_connect %p\n", con);
1563 con->in_base_pos = 0;
1564}
1565
1566static void prepare_read_ack(struct ceph_connection *con)
1567{
1568 dout("prepare_read_ack %p\n", con);
1569 con->in_base_pos = 0;
1570}
1571
Sage Weil3a230832013-03-25 08:47:40 -07001572static void prepare_read_seq(struct ceph_connection *con)
1573{
1574 dout("prepare_read_seq %p\n", con);
1575 con->in_base_pos = 0;
1576 con->in_tag = CEPH_MSGR_TAG_SEQ;
1577}
1578
Sage Weil31b80062009-10-06 11:31:13 -07001579static void prepare_read_tag(struct ceph_connection *con)
1580{
1581 dout("prepare_read_tag %p\n", con);
1582 con->in_base_pos = 0;
1583 con->in_tag = CEPH_MSGR_TAG_READY;
1584}
1585
1586/*
1587 * Prepare to read a message.
1588 */
1589static int prepare_read_message(struct ceph_connection *con)
1590{
1591 dout("prepare_read_message %p\n", con);
1592 BUG_ON(con->in_msg != NULL);
1593 con->in_base_pos = 0;
1594 con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1595 return 0;
1596}
1597
1598
1599static int read_partial(struct ceph_connection *con,
Alex Elderfd516532012-05-10 10:29:50 -05001600 int end, int size, void *object)
Sage Weil31b80062009-10-06 11:31:13 -07001601{
Alex Eldere6cee712012-05-10 10:29:50 -05001602 while (con->in_base_pos < end) {
1603 int left = end - con->in_base_pos;
Sage Weil31b80062009-10-06 11:31:13 -07001604 int have = size - left;
1605 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1606 if (ret <= 0)
1607 return ret;
1608 con->in_base_pos += ret;
1609 }
1610 return 1;
1611}
1612
1613
1614/*
1615 * Read all or part of the connect-side handshake on a new connection
1616 */
Sage Weileed0ef22009-11-10 14:34:36 -08001617static int read_partial_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001618{
Alex Elderfd516532012-05-10 10:29:50 -05001619 int size;
1620 int end;
1621 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07001622
Sage Weileed0ef22009-11-10 14:34:36 -08001623 dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
Sage Weil31b80062009-10-06 11:31:13 -07001624
1625 /* peer's banner */
Alex Elderfd516532012-05-10 10:29:50 -05001626 size = strlen(CEPH_BANNER);
1627 end = size;
1628 ret = read_partial(con, end, size, con->in_banner);
Sage Weil31b80062009-10-06 11:31:13 -07001629 if (ret <= 0)
1630 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001631
1632 size = sizeof (con->actual_peer_addr);
1633 end += size;
1634 ret = read_partial(con, end, size, &con->actual_peer_addr);
Sage Weil31b80062009-10-06 11:31:13 -07001635 if (ret <= 0)
1636 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001637
1638 size = sizeof (con->peer_addr_for_me);
1639 end += size;
1640 ret = read_partial(con, end, size, &con->peer_addr_for_me);
Sage Weil31b80062009-10-06 11:31:13 -07001641 if (ret <= 0)
1642 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001643
Sage Weileed0ef22009-11-10 14:34:36 -08001644out:
1645 return ret;
1646}
1647
1648static int read_partial_connect(struct ceph_connection *con)
1649{
Alex Elderfd516532012-05-10 10:29:50 -05001650 int size;
1651 int end;
1652 int ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001653
1654 dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1655
Alex Elderfd516532012-05-10 10:29:50 -05001656 size = sizeof (con->in_reply);
1657 end = size;
1658 ret = read_partial(con, end, size, &con->in_reply);
Sage Weil31b80062009-10-06 11:31:13 -07001659 if (ret <= 0)
1660 goto out;
Alex Elderfd516532012-05-10 10:29:50 -05001661
1662 size = le32_to_cpu(con->in_reply.authorizer_len);
1663 end += size;
1664 ret = read_partial(con, end, size, con->auth_reply_buf);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001665 if (ret <= 0)
1666 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07001667
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001668 dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1669 con, (int)con->in_reply.tag,
1670 le32_to_cpu(con->in_reply.connect_seq),
Sage Weil31b80062009-10-06 11:31:13 -07001671 le32_to_cpu(con->in_reply.global_seq));
1672out:
1673 return ret;
Sage Weileed0ef22009-11-10 14:34:36 -08001674
Sage Weil31b80062009-10-06 11:31:13 -07001675}
1676
1677/*
1678 * Verify the hello banner looks okay.
1679 */
1680static int verify_hello(struct ceph_connection *con)
1681{
1682 if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
Sage Weil13e38c82009-10-09 16:36:34 -07001683 pr_err("connect to %s got bad banner\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001684 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001685 con->error_msg = "protocol error, bad banner";
1686 return -1;
1687 }
1688 return 0;
1689}
1690
1691static bool addr_is_blank(struct sockaddr_storage *ss)
1692{
1693 switch (ss->ss_family) {
1694 case AF_INET:
1695 return ((struct sockaddr_in *)ss)->sin_addr.s_addr == 0;
1696 case AF_INET6:
1697 return
1698 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[0] == 0 &&
1699 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[1] == 0 &&
1700 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[2] == 0 &&
1701 ((struct sockaddr_in6 *)ss)->sin6_addr.s6_addr32[3] == 0;
1702 }
1703 return false;
1704}
1705
1706static int addr_port(struct sockaddr_storage *ss)
1707{
1708 switch (ss->ss_family) {
1709 case AF_INET:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001710 return ntohs(((struct sockaddr_in *)ss)->sin_port);
Sage Weil31b80062009-10-06 11:31:13 -07001711 case AF_INET6:
Sage Weilf28bcfb2009-11-04 11:46:35 -08001712 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
Sage Weil31b80062009-10-06 11:31:13 -07001713 }
1714 return 0;
1715}
1716
1717static void addr_set_port(struct sockaddr_storage *ss, int p)
1718{
1719 switch (ss->ss_family) {
1720 case AF_INET:
1721 ((struct sockaddr_in *)ss)->sin_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001722 break;
Sage Weil31b80062009-10-06 11:31:13 -07001723 case AF_INET6:
1724 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
Sage Weila2a79602011-05-12 15:34:24 -07001725 break;
Sage Weil31b80062009-10-06 11:31:13 -07001726 }
1727}
1728
1729/*
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001730 * Unlike other *_pton function semantics, zero indicates success.
1731 */
1732static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1733 char delim, const char **ipend)
1734{
Alex Elder99f0f3b2012-01-23 15:49:27 -06001735 struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1736 struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001737
1738 memset(ss, 0, sizeof(*ss));
1739
1740 if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1741 ss->ss_family = AF_INET;
1742 return 0;
1743 }
1744
1745 if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1746 ss->ss_family = AF_INET6;
1747 return 0;
1748 }
1749
1750 return -EINVAL;
1751}
1752
1753/*
1754 * Extract hostname string and resolve using kernel DNS facility.
1755 */
1756#ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1757static int ceph_dns_resolve_name(const char *name, size_t namelen,
1758 struct sockaddr_storage *ss, char delim, const char **ipend)
1759{
1760 const char *end, *delim_p;
1761 char *colon_p, *ip_addr = NULL;
1762 int ip_len, ret;
1763
1764 /*
1765 * The end of the hostname occurs immediately preceding the delimiter or
1766 * the port marker (':') where the delimiter takes precedence.
1767 */
1768 delim_p = memchr(name, delim, namelen);
1769 colon_p = memchr(name, ':', namelen);
1770
1771 if (delim_p && colon_p)
1772 end = delim_p < colon_p ? delim_p : colon_p;
1773 else if (!delim_p && colon_p)
1774 end = colon_p;
1775 else {
1776 end = delim_p;
1777 if (!end) /* case: hostname:/ */
1778 end = name + namelen;
1779 }
1780
1781 if (end <= name)
1782 return -EINVAL;
1783
1784 /* do dns_resolve upcall */
1785 ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1786 if (ip_len > 0)
1787 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1788 else
1789 ret = -ESRCH;
1790
1791 kfree(ip_addr);
1792
1793 *ipend = end;
1794
1795 pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1796 ret, ret ? "failed" : ceph_pr_addr(ss));
1797
1798 return ret;
1799}
1800#else
1801static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1802 struct sockaddr_storage *ss, char delim, const char **ipend)
1803{
1804 return -EINVAL;
1805}
1806#endif
1807
1808/*
1809 * Parse a server name (IP or hostname). If a valid IP address is not found
1810 * then try to extract a hostname to resolve using userspace DNS upcall.
1811 */
1812static int ceph_parse_server_name(const char *name, size_t namelen,
1813 struct sockaddr_storage *ss, char delim, const char **ipend)
1814{
1815 int ret;
1816
1817 ret = ceph_pton(name, namelen, ss, delim, ipend);
1818 if (ret)
1819 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1820
1821 return ret;
1822}
1823
1824/*
Sage Weil31b80062009-10-06 11:31:13 -07001825 * Parse an ip[:port] list into an addr array. Use the default
1826 * monitor port if a port isn't specified.
1827 */
1828int ceph_parse_ips(const char *c, const char *end,
1829 struct ceph_entity_addr *addr,
1830 int max_count, int *count)
1831{
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001832 int i, ret = -EINVAL;
Sage Weil31b80062009-10-06 11:31:13 -07001833 const char *p = c;
1834
1835 dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1836 for (i = 0; i < max_count; i++) {
1837 const char *ipend;
1838 struct sockaddr_storage *ss = &addr[i].in_addr;
Sage Weil31b80062009-10-06 11:31:13 -07001839 int port;
Sage Weil39139f62010-07-08 09:54:52 -07001840 char delim = ',';
1841
1842 if (*p == '[') {
1843 delim = ']';
1844 p++;
1845 }
Sage Weil31b80062009-10-06 11:31:13 -07001846
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001847 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1848 if (ret)
Sage Weil31b80062009-10-06 11:31:13 -07001849 goto bad;
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001850 ret = -EINVAL;
1851
Sage Weil31b80062009-10-06 11:31:13 -07001852 p = ipend;
1853
Sage Weil39139f62010-07-08 09:54:52 -07001854 if (delim == ']') {
1855 if (*p != ']') {
1856 dout("missing matching ']'\n");
1857 goto bad;
1858 }
1859 p++;
1860 }
1861
Sage Weil31b80062009-10-06 11:31:13 -07001862 /* port? */
1863 if (p < end && *p == ':') {
1864 port = 0;
1865 p++;
1866 while (p < end && *p >= '0' && *p <= '9') {
1867 port = (port * 10) + (*p - '0');
1868 p++;
1869 }
Ilya Dryomovf48db1e2013-12-30 19:21:29 +02001870 if (port == 0)
1871 port = CEPH_MON_PORT;
1872 else if (port > 65535)
Sage Weil31b80062009-10-06 11:31:13 -07001873 goto bad;
1874 } else {
1875 port = CEPH_MON_PORT;
1876 }
1877
1878 addr_set_port(ss, port);
1879
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001880 dout("parse_ips got %s\n", ceph_pr_addr(ss));
Sage Weil31b80062009-10-06 11:31:13 -07001881
1882 if (p == end)
1883 break;
1884 if (*p != ',')
1885 goto bad;
1886 p++;
1887 }
1888
1889 if (p != end)
1890 goto bad;
1891
1892 if (count)
1893 *count = i + 1;
1894 return 0;
1895
1896bad:
Sage Weil39139f62010-07-08 09:54:52 -07001897 pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
Noah Watkinsee3b56f2011-09-23 11:48:42 -07001898 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07001899}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001900EXPORT_SYMBOL(ceph_parse_ips);
Sage Weil31b80062009-10-06 11:31:13 -07001901
Sage Weileed0ef22009-11-10 14:34:36 -08001902static int process_banner(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07001903{
Sage Weileed0ef22009-11-10 14:34:36 -08001904 dout("process_banner on %p\n", con);
Sage Weil31b80062009-10-06 11:31:13 -07001905
1906 if (verify_hello(con) < 0)
1907 return -1;
1908
Sage Weil63f2d212009-11-03 15:17:56 -08001909 ceph_decode_addr(&con->actual_peer_addr);
1910 ceph_decode_addr(&con->peer_addr_for_me);
1911
Sage Weil31b80062009-10-06 11:31:13 -07001912 /*
1913 * Make sure the other end is who we wanted. note that the other
1914 * end may not yet know their ip address, so if it's 0.0.0.0, give
1915 * them the benefit of the doubt.
1916 */
Sage Weil103e2d32010-01-07 16:12:36 -08001917 if (memcmp(&con->peer_addr, &con->actual_peer_addr,
1918 sizeof(con->peer_addr)) != 0 &&
Sage Weil31b80062009-10-06 11:31:13 -07001919 !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
1920 con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001921 pr_warning("wrong peer, want %s/%d, got %s/%d\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001922 ceph_pr_addr(&con->peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001923 (int)le32_to_cpu(con->peer_addr.nonce),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001924 ceph_pr_addr(&con->actual_peer_addr.in_addr),
Yehuda Sadehcd84db62010-06-11 16:58:48 -07001925 (int)le32_to_cpu(con->actual_peer_addr.nonce));
Sage Weil58bb3b32009-12-23 12:12:31 -08001926 con->error_msg = "wrong peer at address";
Sage Weil31b80062009-10-06 11:31:13 -07001927 return -1;
1928 }
1929
1930 /*
1931 * did we learn our address?
1932 */
1933 if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
1934 int port = addr_port(&con->msgr->inst.addr.in_addr);
1935
1936 memcpy(&con->msgr->inst.addr.in_addr,
1937 &con->peer_addr_for_me.in_addr,
1938 sizeof(con->peer_addr_for_me.in_addr));
1939 addr_set_port(&con->msgr->inst.addr.in_addr, port);
Sage Weil63f2d212009-11-03 15:17:56 -08001940 encode_my_addr(con->msgr);
Sage Weileed0ef22009-11-10 14:34:36 -08001941 dout("process_banner learned my addr is %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001942 ceph_pr_addr(&con->msgr->inst.addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07001943 }
1944
Sage Weileed0ef22009-11-10 14:34:36 -08001945 return 0;
1946}
1947
1948static int process_connect(struct ceph_connection *con)
1949{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001950 u64 sup_feat = con->msgr->supported_features;
1951 u64 req_feat = con->msgr->required_features;
Ilya Dryomov2b3e0c92013-12-24 21:19:24 +02001952 u64 server_feat = ceph_sanitize_features(
1953 le64_to_cpu(con->in_reply.features));
Sage Weil0da5d702011-05-19 11:21:05 -07001954 int ret;
Sage Weil04a419f2009-12-23 09:30:21 -08001955
Sage Weileed0ef22009-11-10 14:34:36 -08001956 dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
1957
Sage Weil31b80062009-10-06 11:31:13 -07001958 switch (con->in_reply.tag) {
Sage Weil04a419f2009-12-23 09:30:21 -08001959 case CEPH_MSGR_TAG_FEATURES:
1960 pr_err("%s%lld %s feature set mismatch,"
1961 " my %llx < server's %llx, missing %llx\n",
1962 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001963 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08001964 sup_feat, server_feat, server_feat & ~sup_feat);
1965 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001966 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08001967 return -1;
1968
Sage Weil31b80062009-10-06 11:31:13 -07001969 case CEPH_MSGR_TAG_BADPROTOVER:
Sage Weil31b80062009-10-06 11:31:13 -07001970 pr_err("%s%lld %s protocol version mismatch,"
1971 " my %d != server's %d\n",
1972 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001973 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil31b80062009-10-06 11:31:13 -07001974 le32_to_cpu(con->out_connect.protocol_version),
1975 le32_to_cpu(con->in_reply.protocol_version));
1976 con->error_msg = "protocol version mismatch";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06001977 reset_connection(con);
Sage Weil31b80062009-10-06 11:31:13 -07001978 return -1;
1979
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001980 case CEPH_MSGR_TAG_BADAUTHORIZER:
1981 con->auth_retry++;
1982 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
1983 con->auth_retry);
1984 if (con->auth_retry == 2) {
1985 con->error_msg = "connect authorization failure";
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001986 return -1;
1987 }
Jim Schutt6d4221b2012-08-10 10:37:38 -07001988 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05001989 ret = prepare_write_connect(con);
Sage Weil0da5d702011-05-19 11:21:05 -07001990 if (ret < 0)
1991 return ret;
Sage Weil63733a02010-03-15 15:47:22 -07001992 prepare_read_connect(con);
Sage Weil4e7a5dc2009-11-18 16:19:57 -08001993 break;
Sage Weil31b80062009-10-06 11:31:13 -07001994
1995 case CEPH_MSGR_TAG_RESETSESSION:
1996 /*
1997 * If we connected with a large connect_seq but the peer
1998 * has no record of a session with us (no connection, or
1999 * connect_seq == 0), they will send RESETSESION to indicate
2000 * that they must have reset their session, and may have
2001 * dropped messages.
2002 */
2003 dout("process_connect got RESET peer seq %u\n",
Sage Weil5bdca4e2012-07-10 11:53:34 -07002004 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002005 pr_err("%s%lld %s connection reset\n",
2006 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002007 ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002008 reset_connection(con);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002009 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002010 ret = prepare_write_connect(con);
2011 if (ret < 0)
2012 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002013 prepare_read_connect(con);
2014
2015 /* Tell ceph about it. */
Sage Weilec302642009-12-22 10:43:42 -08002016 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002017 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2018 if (con->ops->peer_reset)
2019 con->ops->peer_reset(con);
Sage Weilec302642009-12-22 10:43:42 -08002020 mutex_lock(&con->mutex);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002021 if (con->state != CON_STATE_NEGOTIATING)
Sage Weil0da5d702011-05-19 11:21:05 -07002022 return -EAGAIN;
Sage Weil31b80062009-10-06 11:31:13 -07002023 break;
2024
2025 case CEPH_MSGR_TAG_RETRY_SESSION:
2026 /*
2027 * If we sent a smaller connect_seq than the peer has, try
2028 * again with a larger value.
2029 */
Sage Weil5bdca4e2012-07-10 11:53:34 -07002030 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002031 le32_to_cpu(con->out_connect.connect_seq),
Sage Weil5bdca4e2012-07-10 11:53:34 -07002032 le32_to_cpu(con->in_reply.connect_seq));
2033 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
Jim Schutt6d4221b2012-08-10 10:37:38 -07002034 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002035 ret = prepare_write_connect(con);
2036 if (ret < 0)
2037 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002038 prepare_read_connect(con);
2039 break;
2040
2041 case CEPH_MSGR_TAG_RETRY_GLOBAL:
2042 /*
2043 * If we sent a smaller global_seq than the peer has, try
2044 * again with a larger value.
2045 */
Sage Weileed0ef22009-11-10 14:34:36 -08002046 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
Sage Weil31b80062009-10-06 11:31:13 -07002047 con->peer_global_seq,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002048 le32_to_cpu(con->in_reply.global_seq));
Sage Weil31b80062009-10-06 11:31:13 -07002049 get_global_seq(con->msgr,
Sage Weil5bdca4e2012-07-10 11:53:34 -07002050 le32_to_cpu(con->in_reply.global_seq));
Jim Schutt6d4221b2012-08-10 10:37:38 -07002051 con_out_kvec_reset(con);
Alex Elder5a0f8fd2012-05-16 21:51:59 -05002052 ret = prepare_write_connect(con);
2053 if (ret < 0)
2054 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002055 prepare_read_connect(con);
2056 break;
2057
Sage Weil3a230832013-03-25 08:47:40 -07002058 case CEPH_MSGR_TAG_SEQ:
Sage Weil31b80062009-10-06 11:31:13 -07002059 case CEPH_MSGR_TAG_READY:
Sage Weil04a419f2009-12-23 09:30:21 -08002060 if (req_feat & ~server_feat) {
2061 pr_err("%s%lld %s protocol feature mismatch,"
2062 " my required %llx > server's %llx, need %llx\n",
2063 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002064 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weil04a419f2009-12-23 09:30:21 -08002065 req_feat, server_feat, req_feat & ~server_feat);
2066 con->error_msg = "missing required protocol features";
Sage Weil0fa6ebc2012-12-27 20:27:04 -06002067 reset_connection(con);
Sage Weil04a419f2009-12-23 09:30:21 -08002068 return -1;
2069 }
Sage Weil8dacc7d2012-07-20 17:24:40 -07002070
Alex Elder122070a2012-12-26 10:43:57 -06002071 WARN_ON(con->state != CON_STATE_NEGOTIATING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002072 con->state = CON_STATE_OPEN;
Sage Weil20e55c42013-03-25 09:30:13 -07002073 con->auth_retry = 0; /* we authenticated; clear flag */
Sage Weil31b80062009-10-06 11:31:13 -07002074 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2075 con->connect_seq++;
Sage Weilaba558e2010-05-12 15:23:30 -07002076 con->peer_features = server_feat;
Sage Weil31b80062009-10-06 11:31:13 -07002077 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2078 con->peer_global_seq,
2079 le32_to_cpu(con->in_reply.connect_seq),
2080 con->connect_seq);
2081 WARN_ON(con->connect_seq !=
2082 le32_to_cpu(con->in_reply.connect_seq));
Sage Weil92ac41d2009-12-14 14:56:56 -08002083
2084 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
Alex Elderc9ffc772013-02-20 10:25:12 -06002085 con_flag_set(con, CON_FLAG_LOSSYTX);
Sage Weil92ac41d2009-12-14 14:56:56 -08002086
Sage Weil85effe12012-07-30 16:22:05 -07002087 con->delay = 0; /* reset backoff memory */
Sage Weil31b80062009-10-06 11:31:13 -07002088
Sage Weil3a230832013-03-25 08:47:40 -07002089 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2090 prepare_write_seq(con);
2091 prepare_read_seq(con);
2092 } else {
2093 prepare_read_tag(con);
2094 }
Sage Weil31b80062009-10-06 11:31:13 -07002095 break;
2096
2097 case CEPH_MSGR_TAG_WAIT:
2098 /*
2099 * If there is a connection race (we are opening
2100 * connections to each other), one of us may just have
2101 * to WAIT. This shouldn't happen if we are the
2102 * client.
2103 */
Sage Weil04177882011-05-12 15:33:17 -07002104 pr_err("process_connect got WAIT as client\n");
2105 con->error_msg = "protocol error, got WAIT as client";
2106 return -1;
Sage Weil31b80062009-10-06 11:31:13 -07002107
2108 default:
2109 pr_err("connect protocol error, will retry\n");
2110 con->error_msg = "protocol error, garbage tag during connect";
2111 return -1;
2112 }
2113 return 0;
2114}
2115
2116
2117/*
2118 * read (part of) an ack
2119 */
2120static int read_partial_ack(struct ceph_connection *con)
2121{
Alex Elderfd516532012-05-10 10:29:50 -05002122 int size = sizeof (con->in_temp_ack);
2123 int end = size;
Sage Weil31b80062009-10-06 11:31:13 -07002124
Alex Elderfd516532012-05-10 10:29:50 -05002125 return read_partial(con, end, size, &con->in_temp_ack);
Sage Weil31b80062009-10-06 11:31:13 -07002126}
2127
Sage Weil31b80062009-10-06 11:31:13 -07002128/*
2129 * We can finally discard anything that's been acked.
2130 */
2131static void process_ack(struct ceph_connection *con)
2132{
2133 struct ceph_msg *m;
2134 u64 ack = le64_to_cpu(con->in_temp_ack);
2135 u64 seq;
2136
Sage Weil31b80062009-10-06 11:31:13 -07002137 while (!list_empty(&con->out_sent)) {
2138 m = list_first_entry(&con->out_sent, struct ceph_msg,
2139 list_head);
2140 seq = le64_to_cpu(m->hdr.seq);
2141 if (seq > ack)
2142 break;
2143 dout("got ack for seq %llu type %d at %p\n", seq,
2144 le16_to_cpu(m->hdr.type), m);
Sage Weil4cf9d542011-07-26 11:27:24 -07002145 m->ack_stamp = jiffies;
Sage Weil31b80062009-10-06 11:31:13 -07002146 ceph_msg_remove(m);
2147 }
Sage Weil31b80062009-10-06 11:31:13 -07002148 prepare_read_tag(con);
2149}
2150
2151
Yehuda Sadeh24504182010-01-08 13:58:34 -08002152static int read_partial_message_section(struct ceph_connection *con,
Sage Weil213c99e2010-08-03 10:25:11 -07002153 struct kvec *section,
2154 unsigned int sec_len, u32 *crc)
Yehuda Sadeh24504182010-01-08 13:58:34 -08002155{
Yehuda Sadeh68b44762010-04-06 15:01:27 -07002156 int ret, left;
Sage Weil31b80062009-10-06 11:31:13 -07002157
Yehuda Sadeh24504182010-01-08 13:58:34 -08002158 BUG_ON(!section);
Sage Weil31b80062009-10-06 11:31:13 -07002159
Yehuda Sadeh24504182010-01-08 13:58:34 -08002160 while (section->iov_len < sec_len) {
2161 BUG_ON(section->iov_base == NULL);
2162 left = sec_len - section->iov_len;
2163 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2164 section->iov_len, left);
2165 if (ret <= 0)
2166 return ret;
2167 section->iov_len += ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08002168 }
Alex Elderfe3ad592012-02-15 07:43:54 -06002169 if (section->iov_len == sec_len)
2170 *crc = crc32c(0, section->iov_base, section->iov_len);
Yehuda Sadeh24504182010-01-08 13:58:34 -08002171
2172 return 1;
2173}
2174
Alex Elder34d2d202013-03-08 20:58:59 -06002175static int read_partial_msg_data(struct ceph_connection *con)
2176{
2177 struct ceph_msg *msg = con->in_msg;
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002178 struct ceph_msg_data_cursor *cursor = &msg->cursor;
Alex Elder34d2d202013-03-08 20:58:59 -06002179 const bool do_datacrc = !con->msgr->nocrc;
Alex Elder686be202013-03-11 23:34:23 -05002180 struct page *page;
2181 size_t page_offset;
2182 size_t length;
Alex Elderf5db90b2013-03-11 23:34:23 -05002183 u32 crc = 0;
Alex Elder34d2d202013-03-08 20:58:59 -06002184 int ret;
2185
2186 BUG_ON(!msg);
Alex Elder5240d9f2013-03-14 14:09:06 -05002187 if (list_empty(&msg->data))
Alex Elder4c59b4a2013-03-11 23:34:23 -05002188 return -EIO;
Alex Elder34d2d202013-03-08 20:58:59 -06002189
Alex Elderf5db90b2013-03-11 23:34:23 -05002190 if (do_datacrc)
2191 crc = con->in_data_crc;
Alex Elder643c68a2013-03-11 23:34:23 -05002192 while (cursor->resid) {
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002193 page = ceph_msg_data_next(&msg->cursor, &page_offset, &length,
Alex Elder4c59b4a2013-03-11 23:34:23 -05002194 NULL);
Alex Elder686be202013-03-11 23:34:23 -05002195 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
Alex Elderf5db90b2013-03-11 23:34:23 -05002196 if (ret <= 0) {
2197 if (do_datacrc)
2198 con->in_data_crc = crc;
2199
Alex Elder686be202013-03-11 23:34:23 -05002200 return ret;
Alex Elderf5db90b2013-03-11 23:34:23 -05002201 }
Alex Elder686be202013-03-11 23:34:23 -05002202
2203 if (do_datacrc)
Alex Elderf5db90b2013-03-11 23:34:23 -05002204 crc = ceph_crc32c_page(crc, page, page_offset, ret);
Alex Elder8ae4f4f2013-03-14 14:09:06 -05002205 (void) ceph_msg_data_advance(&msg->cursor, (size_t)ret);
Alex Elder34d2d202013-03-08 20:58:59 -06002206 }
Alex Elderf5db90b2013-03-11 23:34:23 -05002207 if (do_datacrc)
2208 con->in_data_crc = crc;
Alex Elder34d2d202013-03-08 20:58:59 -06002209
2210 return 1; /* must return > 0 to indicate success */
2211}
2212
Sage Weil31b80062009-10-06 11:31:13 -07002213/*
2214 * read (part of) a message.
2215 */
Alex Elder686be202013-03-11 23:34:23 -05002216static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2217
Sage Weil31b80062009-10-06 11:31:13 -07002218static int read_partial_message(struct ceph_connection *con)
2219{
2220 struct ceph_msg *m = con->in_msg;
Alex Elderfd516532012-05-10 10:29:50 -05002221 int size;
2222 int end;
Sage Weil31b80062009-10-06 11:31:13 -07002223 int ret;
Eric Dumazet95c96172012-04-15 05:58:06 +00002224 unsigned int front_len, middle_len, data_len;
Alex Elder37675b02012-03-07 11:40:08 -06002225 bool do_datacrc = !con->msgr->nocrc;
Sage Weilae187562010-04-22 07:47:01 -07002226 u64 seq;
Alex Elderfe3ad592012-02-15 07:43:54 -06002227 u32 crc;
Sage Weil31b80062009-10-06 11:31:13 -07002228
2229 dout("read_partial_message con %p msg %p\n", con, m);
2230
2231 /* header */
Alex Elderfd516532012-05-10 10:29:50 -05002232 size = sizeof (con->in_hdr);
2233 end = size;
2234 ret = read_partial(con, end, size, &con->in_hdr);
Alex Elder57dac9d2012-05-10 10:29:50 -05002235 if (ret <= 0)
2236 return ret;
Alex Elderfe3ad592012-02-15 07:43:54 -06002237
2238 crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2239 if (cpu_to_le32(crc) != con->in_hdr.crc) {
2240 pr_err("read_partial_message bad hdr "
2241 " crc %u != expected %u\n",
2242 crc, con->in_hdr.crc);
2243 return -EBADMSG;
2244 }
2245
Sage Weil31b80062009-10-06 11:31:13 -07002246 front_len = le32_to_cpu(con->in_hdr.front_len);
2247 if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2248 return -EIO;
2249 middle_len = le32_to_cpu(con->in_hdr.middle_len);
Alex Elder7b11ba32013-03-08 18:51:03 -06002250 if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
Sage Weil31b80062009-10-06 11:31:13 -07002251 return -EIO;
2252 data_len = le32_to_cpu(con->in_hdr.data_len);
2253 if (data_len > CEPH_MSG_MAX_DATA_LEN)
2254 return -EIO;
2255
Sage Weilae187562010-04-22 07:47:01 -07002256 /* verify seq# */
2257 seq = le64_to_cpu(con->in_hdr.seq);
2258 if ((s64)seq - (s64)con->in_seq < 1) {
Sage Weildf9f86f2010-11-01 15:49:23 -07002259 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
Sage Weilae187562010-04-22 07:47:01 -07002260 ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002261 ceph_pr_addr(&con->peer_addr.in_addr),
Sage Weilae187562010-04-22 07:47:01 -07002262 seq, con->in_seq + 1);
2263 con->in_base_pos = -front_len - middle_len - data_len -
2264 sizeof(m->footer);
2265 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weilae187562010-04-22 07:47:01 -07002266 return 0;
2267 } else if ((s64)seq - (s64)con->in_seq > 1) {
2268 pr_err("read_partial_message bad seq %lld expected %lld\n",
2269 seq, con->in_seq + 1);
2270 con->error_msg = "bad message sequence # for incoming message";
2271 return -EBADMSG;
2272 }
2273
Sage Weil31b80062009-10-06 11:31:13 -07002274 /* allocate message? */
2275 if (!con->in_msg) {
Sage Weil4740a622012-07-30 18:19:30 -07002276 int skip = 0;
2277
Sage Weil31b80062009-10-06 11:31:13 -07002278 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
Alex Elder6ebc8b32013-03-08 18:51:03 -06002279 front_len, data_len);
Sage Weil4740a622012-07-30 18:19:30 -07002280 ret = ceph_con_in_msg_alloc(con, &skip);
2281 if (ret < 0)
2282 return ret;
Alex Elderf759ebb2013-04-05 14:46:01 -05002283
2284 BUG_ON(!con->in_msg ^ skip);
2285 if (con->in_msg && data_len > con->in_msg->data_length) {
2286 pr_warning("%s skipping long message (%u > %zd)\n",
2287 __func__, data_len, con->in_msg->data_length);
2288 ceph_msg_put(con->in_msg);
2289 con->in_msg = NULL;
2290 skip = 1;
2291 }
Yehuda Sadeh24504182010-01-08 13:58:34 -08002292 if (skip) {
Sage Weil31b80062009-10-06 11:31:13 -07002293 /* skip this message */
Sage Weila79832f2010-04-01 16:06:19 -07002294 dout("alloc_msg said skip message\n");
Sage Weil31b80062009-10-06 11:31:13 -07002295 con->in_base_pos = -front_len - middle_len - data_len -
2296 sizeof(m->footer);
2297 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07002298 con->in_seq++;
Sage Weil31b80062009-10-06 11:31:13 -07002299 return 0;
2300 }
Alex Elder38941f82012-06-01 14:56:43 -05002301
Sage Weil4740a622012-07-30 18:19:30 -07002302 BUG_ON(!con->in_msg);
Alex Elder38941f82012-06-01 14:56:43 -05002303 BUG_ON(con->in_msg->con != con);
Sage Weil31b80062009-10-06 11:31:13 -07002304 m = con->in_msg;
2305 m->front.iov_len = 0; /* haven't read it yet */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002306 if (m->middle)
2307 m->middle->vec.iov_len = 0;
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08002308
Alex Elder78625052013-03-06 23:39:39 -06002309 /* prepare for data payload, if any */
Sage Weila4107022012-07-30 16:20:25 -07002310
Alex Elder78625052013-03-06 23:39:39 -06002311 if (data_len)
Alex Elder98fa5dd2013-04-02 12:09:50 -05002312 prepare_message_data(con->in_msg, data_len);
Sage Weil31b80062009-10-06 11:31:13 -07002313 }
2314
2315 /* front */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002316 ret = read_partial_message_section(con, &m->front, front_len,
2317 &con->in_front_crc);
2318 if (ret <= 0)
2319 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002320
2321 /* middle */
Yehuda Sadeh24504182010-01-08 13:58:34 -08002322 if (m->middle) {
Sage Weil213c99e2010-08-03 10:25:11 -07002323 ret = read_partial_message_section(con, &m->middle->vec,
2324 middle_len,
Yehuda Sadeh24504182010-01-08 13:58:34 -08002325 &con->in_middle_crc);
Sage Weil31b80062009-10-06 11:31:13 -07002326 if (ret <= 0)
2327 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002328 }
2329
2330 /* (page) data */
Alex Elder34d2d202013-03-08 20:58:59 -06002331 if (data_len) {
2332 ret = read_partial_msg_data(con);
2333 if (ret <= 0)
2334 return ret;
Sage Weil31b80062009-10-06 11:31:13 -07002335 }
2336
Sage Weil31b80062009-10-06 11:31:13 -07002337 /* footer */
Alex Elderfd516532012-05-10 10:29:50 -05002338 size = sizeof (m->footer);
2339 end += size;
2340 ret = read_partial(con, end, size, &m->footer);
Alex Elder57dac9d2012-05-10 10:29:50 -05002341 if (ret <= 0)
2342 return ret;
2343
Sage Weil31b80062009-10-06 11:31:13 -07002344 dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2345 m, front_len, m->footer.front_crc, middle_len,
2346 m->footer.middle_crc, data_len, m->footer.data_crc);
2347
2348 /* crc ok? */
2349 if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2350 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2351 m, con->in_front_crc, m->footer.front_crc);
2352 return -EBADMSG;
2353 }
2354 if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2355 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2356 m, con->in_middle_crc, m->footer.middle_crc);
2357 return -EBADMSG;
2358 }
Alex Elderbca064d2012-02-15 07:43:54 -06002359 if (do_datacrc &&
Sage Weil31b80062009-10-06 11:31:13 -07002360 (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2361 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2362 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2363 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2364 return -EBADMSG;
2365 }
2366
2367 return 1; /* done! */
2368}
2369
2370/*
2371 * Process message. This happens in the worker thread. The callback should
2372 * be careful not to do anything that waits on other incoming messages or it
2373 * may deadlock.
2374 */
2375static void process_message(struct ceph_connection *con)
2376{
Sage Weil5e095e82009-12-14 14:30:34 -08002377 struct ceph_msg *msg;
Sage Weil31b80062009-10-06 11:31:13 -07002378
Alex Elder38941f82012-06-01 14:56:43 -05002379 BUG_ON(con->in_msg->con != con);
2380 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002381 msg = con->in_msg;
Sage Weil31b80062009-10-06 11:31:13 -07002382 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002383 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002384
2385 /* if first message, set peer_name */
2386 if (con->peer_name.type == 0)
Sage Weildbad1852010-03-25 15:45:38 -07002387 con->peer_name = msg->hdr.src;
Sage Weil31b80062009-10-06 11:31:13 -07002388
Sage Weil31b80062009-10-06 11:31:13 -07002389 con->in_seq++;
Sage Weilec302642009-12-22 10:43:42 -08002390 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002391
2392 dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2393 msg, le64_to_cpu(msg->hdr.seq),
Sage Weildbad1852010-03-25 15:45:38 -07002394 ENTITY_NAME(msg->hdr.src),
Sage Weil31b80062009-10-06 11:31:13 -07002395 le16_to_cpu(msg->hdr.type),
2396 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2397 le32_to_cpu(msg->hdr.front_len),
2398 le32_to_cpu(msg->hdr.data_len),
2399 con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2400 con->ops->dispatch(con, msg);
Sage Weilec302642009-12-22 10:43:42 -08002401
2402 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002403}
2404
2405
2406/*
2407 * Write something to the socket. Called in a worker thread when the
2408 * socket appears to be writeable and we have something ready to send.
2409 */
2410static int try_write(struct ceph_connection *con)
2411{
Sage Weil31b80062009-10-06 11:31:13 -07002412 int ret = 1;
2413
Sage Weild59315c2012-06-21 12:49:23 -07002414 dout("try_write start %p state %lu\n", con, con->state);
Sage Weil31b80062009-10-06 11:31:13 -07002415
Sage Weil31b80062009-10-06 11:31:13 -07002416more:
2417 dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2418
2419 /* open the socket first? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002420 if (con->state == CON_STATE_PREOPEN) {
2421 BUG_ON(con->sock);
2422 con->state = CON_STATE_CONNECTING;
Alex Eldera5988c42012-05-29 11:04:58 -05002423
Alex Eldere2200422012-05-23 14:35:23 -05002424 con_out_kvec_reset(con);
Alex Eldere825a662012-05-16 15:16:38 -05002425 prepare_write_banner(con);
Sage Weileed0ef22009-11-10 14:34:36 -08002426 prepare_read_banner(con);
Sage Weil31b80062009-10-06 11:31:13 -07002427
Sage Weilcf3e5c42009-12-11 09:48:05 -08002428 BUG_ON(con->in_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002429 con->in_tag = CEPH_MSGR_TAG_READY;
2430 dout("try_write initiating connect on %p new state %lu\n",
2431 con, con->state);
Alex Elder41617d02012-02-14 14:05:33 -06002432 ret = ceph_tcp_connect(con);
2433 if (ret < 0) {
Sage Weil31b80062009-10-06 11:31:13 -07002434 con->error_msg = "connect error";
Sage Weil31b80062009-10-06 11:31:13 -07002435 goto out;
2436 }
2437 }
2438
2439more_kvec:
2440 /* kvec data queued? */
2441 if (con->out_skip) {
2442 ret = write_partial_skip(con);
2443 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002444 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002445 }
2446 if (con->out_kvec_left) {
2447 ret = write_partial_kvec(con);
2448 if (ret <= 0)
Sage Weil42961d22011-01-25 08:19:34 -08002449 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002450 }
2451
2452 /* msg pages? */
2453 if (con->out_msg) {
Sage Weilc86a2932009-12-14 14:04:30 -08002454 if (con->out_msg_done) {
2455 ceph_msg_put(con->out_msg);
2456 con->out_msg = NULL; /* we're done with this one */
2457 goto do_next;
2458 }
2459
Alex Elder34d2d202013-03-08 20:58:59 -06002460 ret = write_partial_message_data(con);
Sage Weil31b80062009-10-06 11:31:13 -07002461 if (ret == 1)
2462 goto more_kvec; /* we need to send the footer, too! */
2463 if (ret == 0)
Sage Weil42961d22011-01-25 08:19:34 -08002464 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002465 if (ret < 0) {
Alex Elder34d2d202013-03-08 20:58:59 -06002466 dout("try_write write_partial_message_data err %d\n",
Sage Weil31b80062009-10-06 11:31:13 -07002467 ret);
Sage Weil42961d22011-01-25 08:19:34 -08002468 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002469 }
2470 }
2471
Sage Weilc86a2932009-12-14 14:04:30 -08002472do_next:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002473 if (con->state == CON_STATE_OPEN) {
Sage Weil31b80062009-10-06 11:31:13 -07002474 /* is anything else pending? */
2475 if (!list_empty(&con->out_queue)) {
2476 prepare_write_message(con);
2477 goto more;
2478 }
2479 if (con->in_seq > con->in_seq_acked) {
2480 prepare_write_ack(con);
2481 goto more;
2482 }
Alex Elderc9ffc772013-02-20 10:25:12 -06002483 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weil31b80062009-10-06 11:31:13 -07002484 prepare_write_keepalive(con);
2485 goto more;
2486 }
2487 }
2488
2489 /* Nothing to do! */
Alex Elderc9ffc772013-02-20 10:25:12 -06002490 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil31b80062009-10-06 11:31:13 -07002491 dout("try_write nothing else to write.\n");
Sage Weil31b80062009-10-06 11:31:13 -07002492 ret = 0;
2493out:
Sage Weil42961d22011-01-25 08:19:34 -08002494 dout("try_write done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002495 return ret;
2496}
2497
2498
2499
2500/*
2501 * Read what we can from the socket.
2502 */
2503static int try_read(struct ceph_connection *con)
2504{
Sage Weil31b80062009-10-06 11:31:13 -07002505 int ret = -1;
2506
Sage Weil31b80062009-10-06 11:31:13 -07002507more:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002508 dout("try_read start on %p state %lu\n", con, con->state);
2509 if (con->state != CON_STATE_CONNECTING &&
2510 con->state != CON_STATE_NEGOTIATING &&
2511 con->state != CON_STATE_OPEN)
2512 return 0;
2513
2514 BUG_ON(!con->sock);
2515
Sage Weil31b80062009-10-06 11:31:13 -07002516 dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2517 con->in_base_pos);
Sage Weil0da5d702011-05-19 11:21:05 -07002518
Sage Weil8dacc7d2012-07-20 17:24:40 -07002519 if (con->state == CON_STATE_CONNECTING) {
Alex Elder7593af92012-05-24 11:55:03 -05002520 dout("try_read connecting\n");
2521 ret = read_partial_banner(con);
2522 if (ret <= 0)
Alex Elderab166d52012-05-31 11:37:29 -05002523 goto out;
Alex Elder7593af92012-05-24 11:55:03 -05002524 ret = process_banner(con);
2525 if (ret < 0)
2526 goto out;
2527
Sage Weil8dacc7d2012-07-20 17:24:40 -07002528 con->state = CON_STATE_NEGOTIATING;
Alex Elder7593af92012-05-24 11:55:03 -05002529
Jim Schutt6d4221b2012-08-10 10:37:38 -07002530 /*
2531 * Received banner is good, exchange connection info.
2532 * Do not reset out_kvec, as sending our banner raced
2533 * with receiving peer banner after connect completed.
2534 */
Alex Elder7593af92012-05-24 11:55:03 -05002535 ret = prepare_write_connect(con);
2536 if (ret < 0)
2537 goto out;
2538 prepare_read_connect(con);
2539
2540 /* Send connection info before awaiting response */
Sage Weil0da5d702011-05-19 11:21:05 -07002541 goto out;
2542 }
2543
Sage Weil8dacc7d2012-07-20 17:24:40 -07002544 if (con->state == CON_STATE_NEGOTIATING) {
Alex Elder7593af92012-05-24 11:55:03 -05002545 dout("try_read negotiating\n");
Sage Weil31b80062009-10-06 11:31:13 -07002546 ret = read_partial_connect(con);
2547 if (ret <= 0)
Sage Weil31b80062009-10-06 11:31:13 -07002548 goto out;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002549 ret = process_connect(con);
2550 if (ret < 0)
2551 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002552 goto more;
2553 }
2554
Alex Elder122070a2012-12-26 10:43:57 -06002555 WARN_ON(con->state != CON_STATE_OPEN);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002556
Sage Weil31b80062009-10-06 11:31:13 -07002557 if (con->in_base_pos < 0) {
2558 /*
2559 * skipping + discarding content.
2560 *
2561 * FIXME: there must be a better way to do this!
2562 */
Alex Elder84495f42012-02-15 07:43:55 -06002563 static char buf[SKIP_BUF_SIZE];
2564 int skip = min((int) sizeof (buf), -con->in_base_pos);
2565
Sage Weil31b80062009-10-06 11:31:13 -07002566 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2567 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2568 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002569 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002570 con->in_base_pos += ret;
2571 if (con->in_base_pos)
2572 goto more;
2573 }
2574 if (con->in_tag == CEPH_MSGR_TAG_READY) {
2575 /*
2576 * what's next?
2577 */
2578 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2579 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002580 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002581 dout("try_read got tag %d\n", (int)con->in_tag);
2582 switch (con->in_tag) {
2583 case CEPH_MSGR_TAG_MSG:
2584 prepare_read_message(con);
2585 break;
2586 case CEPH_MSGR_TAG_ACK:
2587 prepare_read_ack(con);
2588 break;
2589 case CEPH_MSGR_TAG_CLOSE:
Sage Weil8dacc7d2012-07-20 17:24:40 -07002590 con_close_socket(con);
2591 con->state = CON_STATE_CLOSED;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002592 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002593 default:
2594 goto bad_tag;
2595 }
2596 }
2597 if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2598 ret = read_partial_message(con);
2599 if (ret <= 0) {
2600 switch (ret) {
2601 case -EBADMSG:
2602 con->error_msg = "bad crc";
2603 ret = -EIO;
Sage Weil98bdb0a2011-01-25 08:17:48 -08002604 break;
Sage Weil31b80062009-10-06 11:31:13 -07002605 case -EIO:
2606 con->error_msg = "io error";
Sage Weil98bdb0a2011-01-25 08:17:48 -08002607 break;
Sage Weil31b80062009-10-06 11:31:13 -07002608 }
Sage Weil98bdb0a2011-01-25 08:17:48 -08002609 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002610 }
2611 if (con->in_tag == CEPH_MSGR_TAG_READY)
2612 goto more;
2613 process_message(con);
Sage Weil7b862e02012-07-30 18:16:56 -07002614 if (con->state == CON_STATE_OPEN)
2615 prepare_read_tag(con);
Sage Weil31b80062009-10-06 11:31:13 -07002616 goto more;
2617 }
Sage Weil3a230832013-03-25 08:47:40 -07002618 if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2619 con->in_tag == CEPH_MSGR_TAG_SEQ) {
2620 /*
2621 * the final handshake seq exchange is semantically
2622 * equivalent to an ACK
2623 */
Sage Weil31b80062009-10-06 11:31:13 -07002624 ret = read_partial_ack(con);
2625 if (ret <= 0)
Sage Weil98bdb0a2011-01-25 08:17:48 -08002626 goto out;
Sage Weil31b80062009-10-06 11:31:13 -07002627 process_ack(con);
2628 goto more;
2629 }
2630
Sage Weil31b80062009-10-06 11:31:13 -07002631out:
Sage Weil98bdb0a2011-01-25 08:17:48 -08002632 dout("try_read done on %p ret %d\n", con, ret);
Sage Weil31b80062009-10-06 11:31:13 -07002633 return ret;
2634
2635bad_tag:
2636 pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2637 con->error_msg = "protocol error, garbage tag";
2638 ret = -1;
2639 goto out;
2640}
2641
2642
2643/*
Alex Elder802c6d92012-10-08 20:37:30 -07002644 * Atomically queue work on a connection after the specified delay.
2645 * Bump @con reference to avoid races with connection teardown.
2646 * Returns 0 if work was queued, or an error code otherwise.
Sage Weil31b80062009-10-06 11:31:13 -07002647 */
Alex Elder802c6d92012-10-08 20:37:30 -07002648static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
Sage Weil31b80062009-10-06 11:31:13 -07002649{
Sage Weil31b80062009-10-06 11:31:13 -07002650 if (!con->ops->get(con)) {
Alex Elder802c6d92012-10-08 20:37:30 -07002651 dout("%s %p ref count 0\n", __func__, con);
2652
2653 return -ENOENT;
Sage Weil31b80062009-10-06 11:31:13 -07002654 }
2655
Alex Elder802c6d92012-10-08 20:37:30 -07002656 if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2657 dout("%s %p - already queued\n", __func__, con);
Sage Weil31b80062009-10-06 11:31:13 -07002658 con->ops->put(con);
Alex Elder802c6d92012-10-08 20:37:30 -07002659
2660 return -EBUSY;
Sage Weil31b80062009-10-06 11:31:13 -07002661 }
Alex Elder802c6d92012-10-08 20:37:30 -07002662
2663 dout("%s %p %lu\n", __func__, con, delay);
2664
2665 return 0;
2666}
2667
2668static void queue_con(struct ceph_connection *con)
2669{
2670 (void) queue_con_delay(con, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002671}
2672
Alex Elder7bb21d682012-12-07 19:50:07 -06002673static bool con_sock_closed(struct ceph_connection *con)
2674{
Alex Elderc9ffc772013-02-20 10:25:12 -06002675 if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
Alex Elder7bb21d682012-12-07 19:50:07 -06002676 return false;
2677
2678#define CASE(x) \
2679 case CON_STATE_ ## x: \
2680 con->error_msg = "socket closed (con state " #x ")"; \
2681 break;
2682
2683 switch (con->state) {
2684 CASE(CLOSED);
2685 CASE(PREOPEN);
2686 CASE(CONNECTING);
2687 CASE(NEGOTIATING);
2688 CASE(OPEN);
2689 CASE(STANDBY);
2690 default:
2691 pr_warning("%s con %p unrecognized state %lu\n",
2692 __func__, con, con->state);
2693 con->error_msg = "unrecognized con state";
2694 BUG();
2695 break;
2696 }
2697#undef CASE
2698
2699 return true;
2700}
2701
Alex Elderf20a39f2013-02-19 12:25:57 -06002702static bool con_backoff(struct ceph_connection *con)
2703{
2704 int ret;
2705
2706 if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2707 return false;
2708
2709 ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2710 if (ret) {
2711 dout("%s: con %p FAILED to back off %lu\n", __func__,
2712 con, con->delay);
2713 BUG_ON(ret == -ENOENT);
2714 con_flag_set(con, CON_FLAG_BACKOFF);
2715 }
2716
2717 return true;
2718}
2719
Alex Elder93209262013-02-19 12:25:57 -06002720/* Finish fault handling; con->mutex must *not* be held here */
2721
2722static void con_fault_finish(struct ceph_connection *con)
2723{
2724 /*
2725 * in case we faulted due to authentication, invalidate our
2726 * current tickets so that we can get new ones.
2727 */
2728 if (con->auth_retry && con->ops->invalidate_authorizer) {
2729 dout("calling invalidate_authorizer()\n");
2730 con->ops->invalidate_authorizer(con);
2731 }
2732
2733 if (con->ops->fault)
2734 con->ops->fault(con);
2735}
2736
Sage Weil31b80062009-10-06 11:31:13 -07002737/*
2738 * Do some work on a connection. Drop a connection ref when we're done.
2739 */
2740static void con_work(struct work_struct *work)
2741{
2742 struct ceph_connection *con = container_of(work, struct ceph_connection,
2743 work.work);
Alex Elder49659412013-02-19 12:25:57 -06002744 bool fault;
Sage Weil31b80062009-10-06 11:31:13 -07002745
Sage Weil9dd46582010-04-28 13:51:50 -07002746 mutex_lock(&con->mutex);
Alex Elder49659412013-02-19 12:25:57 -06002747 while (true) {
2748 int ret;
Sage Weil31b80062009-10-06 11:31:13 -07002749
Alex Elder49659412013-02-19 12:25:57 -06002750 if ((fault = con_sock_closed(con))) {
2751 dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2752 break;
2753 }
2754 if (con_backoff(con)) {
2755 dout("%s: con %p BACKOFF\n", __func__, con);
2756 break;
2757 }
2758 if (con->state == CON_STATE_STANDBY) {
2759 dout("%s: con %p STANDBY\n", __func__, con);
2760 break;
2761 }
2762 if (con->state == CON_STATE_CLOSED) {
2763 dout("%s: con %p CLOSED\n", __func__, con);
2764 BUG_ON(con->sock);
2765 break;
2766 }
2767 if (con->state == CON_STATE_PREOPEN) {
2768 dout("%s: con %p PREOPEN\n", __func__, con);
2769 BUG_ON(con->sock);
2770 }
Sage Weil0da5d702011-05-19 11:21:05 -07002771
Alex Elder49659412013-02-19 12:25:57 -06002772 ret = try_read(con);
2773 if (ret < 0) {
2774 if (ret == -EAGAIN)
2775 continue;
2776 con->error_msg = "socket error on read";
2777 fault = true;
2778 break;
2779 }
2780
2781 ret = try_write(con);
2782 if (ret < 0) {
2783 if (ret == -EAGAIN)
2784 continue;
2785 con->error_msg = "socket error on write";
2786 fault = true;
2787 }
2788
2789 break; /* If we make it to here, we're done */
Sage Weil3a140a02012-07-30 16:24:21 -07002790 }
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002791 if (fault)
2792 con_fault(con);
Sage Weil9dd46582010-04-28 13:51:50 -07002793 mutex_unlock(&con->mutex);
Sage Weil0da5d702011-05-19 11:21:05 -07002794
Alex Elderb6e7b6a2013-02-19 12:25:57 -06002795 if (fault)
2796 con_fault_finish(con);
2797
2798 con->ops->put(con);
Sage Weil31b80062009-10-06 11:31:13 -07002799}
2800
Sage Weil31b80062009-10-06 11:31:13 -07002801/*
2802 * Generic error/fault handler. A retry mechanism is used with
2803 * exponential backoff
2804 */
Alex Elder93209262013-02-19 12:25:57 -06002805static void con_fault(struct ceph_connection *con)
Sage Weil31b80062009-10-06 11:31:13 -07002806{
Alex Elder28362982012-12-14 16:47:41 -06002807 pr_warning("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002808 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
Sage Weil31b80062009-10-06 11:31:13 -07002809 dout("fault %p state %lu to peer %s\n",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002810 con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
Sage Weil31b80062009-10-06 11:31:13 -07002811
Alex Elder122070a2012-12-26 10:43:57 -06002812 WARN_ON(con->state != CON_STATE_CONNECTING &&
Sage Weil8dacc7d2012-07-20 17:24:40 -07002813 con->state != CON_STATE_NEGOTIATING &&
2814 con->state != CON_STATE_OPEN);
Sage Weilec302642009-12-22 10:43:42 -08002815
Sage Weil31b80062009-10-06 11:31:13 -07002816 con_close_socket(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002817
Alex Elderc9ffc772013-02-20 10:25:12 -06002818 if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
Sage Weil8dacc7d2012-07-20 17:24:40 -07002819 dout("fault on LOSSYTX channel, marking CLOSED\n");
2820 con->state = CON_STATE_CLOSED;
Alex Elder93209262013-02-19 12:25:57 -06002821 return;
Sage Weil3b5ede02012-07-20 15:22:53 -07002822 }
2823
Sage Weil5e095e82009-12-14 14:30:34 -08002824 if (con->in_msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002825 BUG_ON(con->in_msg->con != con);
2826 con->in_msg->con = NULL;
Sage Weil5e095e82009-12-14 14:30:34 -08002827 ceph_msg_put(con->in_msg);
2828 con->in_msg = NULL;
Sage Weil36eb71a2012-06-21 12:47:08 -07002829 con->ops->put(con);
Sage Weil5e095e82009-12-14 14:30:34 -08002830 }
Sage Weil31b80062009-10-06 11:31:13 -07002831
Sage Weile80a52d2010-02-25 12:40:45 -08002832 /* Requeue anything that hasn't been acked */
2833 list_splice_init(&con->out_sent, &con->out_queue);
Sage Weil9bd2e6f2010-02-02 16:21:06 -08002834
Sage Weile76661d2011-03-03 10:10:15 -08002835 /* If there are no messages queued or keepalive pending, place
2836 * the connection in a STANDBY state */
2837 if (list_empty(&con->out_queue) &&
Alex Elderc9ffc772013-02-20 10:25:12 -06002838 !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
Sage Weile00de342011-03-04 12:25:05 -08002839 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
Alex Elderc9ffc772013-02-20 10:25:12 -06002840 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002841 con->state = CON_STATE_STANDBY;
Sage Weile80a52d2010-02-25 12:40:45 -08002842 } else {
2843 /* retry after a delay. */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002844 con->state = CON_STATE_PREOPEN;
Sage Weile80a52d2010-02-25 12:40:45 -08002845 if (con->delay == 0)
2846 con->delay = BASE_DELAY_INTERVAL;
2847 else if (con->delay < MAX_DELAY_INTERVAL)
2848 con->delay *= 2;
Alex Elderc9ffc772013-02-20 10:25:12 -06002849 con_flag_set(con, CON_FLAG_BACKOFF);
Alex Elder8618e302012-10-08 20:37:30 -07002850 queue_con(con);
Sage Weil31b80062009-10-06 11:31:13 -07002851 }
Sage Weil31b80062009-10-06 11:31:13 -07002852}
2853
2854
2855
2856/*
Alex Elder15d98822012-05-26 23:26:43 -05002857 * initialize a new messenger instance
Sage Weil31b80062009-10-06 11:31:13 -07002858 */
Alex Elder15d98822012-05-26 23:26:43 -05002859void ceph_messenger_init(struct ceph_messenger *msgr,
2860 struct ceph_entity_addr *myaddr,
Ilya Dryomov12b46292013-12-24 21:19:23 +02002861 u64 supported_features,
2862 u64 required_features,
Alex Elder15d98822012-05-26 23:26:43 -05002863 bool nocrc)
Sage Weil31b80062009-10-06 11:31:13 -07002864{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002865 msgr->supported_features = supported_features;
2866 msgr->required_features = required_features;
2867
Sage Weil31b80062009-10-06 11:31:13 -07002868 spin_lock_init(&msgr->global_seq_lock);
2869
Sage Weil31b80062009-10-06 11:31:13 -07002870 if (myaddr)
2871 msgr->inst.addr = *myaddr;
2872
2873 /* select a random nonce */
Sage Weilac8839d2010-01-27 14:28:10 -08002874 msgr->inst.addr.type = 0;
Sage Weil103e2d32010-01-07 16:12:36 -08002875 get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
Sage Weil63f2d212009-11-03 15:17:56 -08002876 encode_my_addr(msgr);
Alex Elder15d98822012-05-26 23:26:43 -05002877 msgr->nocrc = nocrc;
Sage Weil31b80062009-10-06 11:31:13 -07002878
Guanjun Hea2a32582012-07-08 19:50:33 -07002879 atomic_set(&msgr->stopping, 0);
Sage Weil31b80062009-10-06 11:31:13 -07002880
Alex Elder15d98822012-05-26 23:26:43 -05002881 dout("%s %p\n", __func__, msgr);
Sage Weil31b80062009-10-06 11:31:13 -07002882}
Alex Elder15d98822012-05-26 23:26:43 -05002883EXPORT_SYMBOL(ceph_messenger_init);
Sage Weil31b80062009-10-06 11:31:13 -07002884
Sage Weile00de342011-03-04 12:25:05 -08002885static void clear_standby(struct ceph_connection *con)
2886{
2887 /* come back from STANDBY? */
Sage Weil8dacc7d2012-07-20 17:24:40 -07002888 if (con->state == CON_STATE_STANDBY) {
Sage Weile00de342011-03-04 12:25:05 -08002889 dout("clear_standby %p and ++connect_seq\n", con);
Sage Weil8dacc7d2012-07-20 17:24:40 -07002890 con->state = CON_STATE_PREOPEN;
Sage Weile00de342011-03-04 12:25:05 -08002891 con->connect_seq++;
Alex Elderc9ffc772013-02-20 10:25:12 -06002892 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
2893 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
Sage Weile00de342011-03-04 12:25:05 -08002894 }
2895}
2896
Sage Weil31b80062009-10-06 11:31:13 -07002897/*
2898 * Queue up an outgoing message on the given connection.
2899 */
2900void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
2901{
Sage Weila59b55a2012-07-20 15:34:04 -07002902 /* set src+dst */
2903 msg->hdr.src = con->msgr->inst.name;
2904 BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
2905 msg->needs_out_seq = true;
2906
2907 mutex_lock(&con->mutex);
2908
Sage Weil8dacc7d2012-07-20 17:24:40 -07002909 if (con->state == CON_STATE_CLOSED) {
Sage Weil31b80062009-10-06 11:31:13 -07002910 dout("con_send %p closed, dropping %p\n", con, msg);
2911 ceph_msg_put(msg);
Sage Weila59b55a2012-07-20 15:34:04 -07002912 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002913 return;
2914 }
2915
Alex Elder38941f82012-06-01 14:56:43 -05002916 BUG_ON(msg->con != NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002917 msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05002918 BUG_ON(msg->con == NULL);
Sage Weil31b80062009-10-06 11:31:13 -07002919
Sage Weil31b80062009-10-06 11:31:13 -07002920 BUG_ON(!list_empty(&msg->list_head));
2921 list_add_tail(&msg->list_head, &con->out_queue);
2922 dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
2923 ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
2924 ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2925 le32_to_cpu(msg->hdr.front_len),
2926 le32_to_cpu(msg->hdr.middle_len),
2927 le32_to_cpu(msg->hdr.data_len));
Sage Weil00650932012-07-20 15:33:04 -07002928
2929 clear_standby(con);
Sage Weilec302642009-12-22 10:43:42 -08002930 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002931
2932 /* if there wasn't anything waiting to send before, queue
2933 * new work */
Alex Elderc9ffc772013-02-20 10:25:12 -06002934 if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07002935 queue_con(con);
2936}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002937EXPORT_SYMBOL(ceph_con_send);
Sage Weil31b80062009-10-06 11:31:13 -07002938
2939/*
2940 * Revoke a message that was previously queued for send
2941 */
Alex Elder6740a842012-06-01 14:56:43 -05002942void ceph_msg_revoke(struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07002943{
Alex Elder6740a842012-06-01 14:56:43 -05002944 struct ceph_connection *con = msg->con;
2945
2946 if (!con)
2947 return; /* Message not in our possession */
2948
Sage Weilec302642009-12-22 10:43:42 -08002949 mutex_lock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002950 if (!list_empty(&msg->list_head)) {
Alex Elder38941f82012-06-01 14:56:43 -05002951 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
Sage Weil31b80062009-10-06 11:31:13 -07002952 list_del_init(&msg->list_head);
Alex Elder38941f82012-06-01 14:56:43 -05002953 BUG_ON(msg->con == NULL);
Sage Weil36eb71a2012-06-21 12:47:08 -07002954 msg->con->ops->put(msg->con);
Alex Elder38941f82012-06-01 14:56:43 -05002955 msg->con = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002956 msg->hdr.seq = 0;
Alex Elder38941f82012-06-01 14:56:43 -05002957
Sage Weil31b80062009-10-06 11:31:13 -07002958 ceph_msg_put(msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002959 }
2960 if (con->out_msg == msg) {
Alex Elder38941f82012-06-01 14:56:43 -05002961 dout("%s %p msg %p - was sending\n", __func__, con, msg);
Sage Weiled98ada2010-07-05 12:15:14 -07002962 con->out_msg = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07002963 if (con->out_kvec_is_msg) {
2964 con->out_skip = con->out_kvec_bytes;
2965 con->out_kvec_is_msg = false;
2966 }
Sage Weiled98ada2010-07-05 12:15:14 -07002967 msg->hdr.seq = 0;
Alex Elder92ce0342012-06-04 14:43:33 -05002968
2969 ceph_msg_put(msg);
Sage Weil31b80062009-10-06 11:31:13 -07002970 }
Sage Weilec302642009-12-22 10:43:42 -08002971 mutex_unlock(&con->mutex);
Sage Weil31b80062009-10-06 11:31:13 -07002972}
2973
2974/*
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002975 * Revoke a message that we may be reading data into
Sage Weil350b1c32009-12-22 10:45:45 -08002976 */
Alex Elder8921d112012-06-01 14:56:43 -05002977void ceph_msg_revoke_incoming(struct ceph_msg *msg)
Sage Weil350b1c32009-12-22 10:45:45 -08002978{
Alex Elder8921d112012-06-01 14:56:43 -05002979 struct ceph_connection *con;
2980
2981 BUG_ON(msg == NULL);
2982 if (!msg->con) {
2983 dout("%s msg %p null con\n", __func__, msg);
2984
2985 return; /* Message not in our possession */
2986 }
2987
2988 con = msg->con;
Sage Weil350b1c32009-12-22 10:45:45 -08002989 mutex_lock(&con->mutex);
Alex Elder8921d112012-06-01 14:56:43 -05002990 if (con->in_msg == msg) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002991 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
2992 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
2993 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
Sage Weil350b1c32009-12-22 10:45:45 -08002994
2995 /* skip rest of message */
Alex Elder8921d112012-06-01 14:56:43 -05002996 dout("%s %p msg %p revoked\n", __func__, con, msg);
2997 con->in_base_pos = con->in_base_pos -
Sage Weil350b1c32009-12-22 10:45:45 -08002998 sizeof(struct ceph_msg_header) -
Yehuda Sadeh0d59ab82010-01-13 17:03:23 -08002999 front_len -
3000 middle_len -
3001 data_len -
Sage Weil350b1c32009-12-22 10:45:45 -08003002 sizeof(struct ceph_msg_footer);
Sage Weil350b1c32009-12-22 10:45:45 -08003003 ceph_msg_put(con->in_msg);
3004 con->in_msg = NULL;
3005 con->in_tag = CEPH_MSGR_TAG_READY;
Sage Weil684be252010-04-21 20:45:59 -07003006 con->in_seq++;
Sage Weil350b1c32009-12-22 10:45:45 -08003007 } else {
Alex Elder8921d112012-06-01 14:56:43 -05003008 dout("%s %p in_msg %p msg %p no-op\n",
3009 __func__, con, con->in_msg, msg);
Sage Weil350b1c32009-12-22 10:45:45 -08003010 }
3011 mutex_unlock(&con->mutex);
3012}
3013
3014/*
Sage Weil31b80062009-10-06 11:31:13 -07003015 * Queue a keepalive byte to ensure the tcp connection is alive.
3016 */
3017void ceph_con_keepalive(struct ceph_connection *con)
3018{
Sage Weile00de342011-03-04 12:25:05 -08003019 dout("con_keepalive %p\n", con);
Sage Weil00650932012-07-20 15:33:04 -07003020 mutex_lock(&con->mutex);
Sage Weile00de342011-03-04 12:25:05 -08003021 clear_standby(con);
Sage Weil00650932012-07-20 15:33:04 -07003022 mutex_unlock(&con->mutex);
Alex Elderc9ffc772013-02-20 10:25:12 -06003023 if (con_flag_test_and_set(con, CON_FLAG_KEEPALIVE_PENDING) == 0 &&
3024 con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
Sage Weil31b80062009-10-06 11:31:13 -07003025 queue_con(con);
3026}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003027EXPORT_SYMBOL(ceph_con_keepalive);
Sage Weil31b80062009-10-06 11:31:13 -07003028
Alex Elder6644ed72013-03-11 23:34:24 -05003029static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
Alex Elder43794502013-03-01 18:00:16 -06003030{
Alex Elder6644ed72013-03-11 23:34:24 -05003031 struct ceph_msg_data *data;
3032
3033 if (WARN_ON(!ceph_msg_data_type_valid(type)))
3034 return NULL;
3035
Alex Elder81b36be2013-05-01 12:43:04 -05003036 data = kmem_cache_zalloc(ceph_msg_data_cache, GFP_NOFS);
Alex Elder6644ed72013-03-11 23:34:24 -05003037 if (data)
3038 data->type = type;
Alex Elder5240d9f2013-03-14 14:09:06 -05003039 INIT_LIST_HEAD(&data->links);
Alex Elder6644ed72013-03-11 23:34:24 -05003040
3041 return data;
3042}
3043
3044static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3045{
3046 if (!data)
3047 return;
3048
Alex Elder5240d9f2013-03-14 14:09:06 -05003049 WARN_ON(!list_empty(&data->links));
Alex Elder6644ed72013-03-11 23:34:24 -05003050 if (data->type == CEPH_MSG_DATA_PAGELIST) {
3051 ceph_pagelist_release(data->pagelist);
3052 kfree(data->pagelist);
3053 }
Alex Elder81b36be2013-05-01 12:43:04 -05003054 kmem_cache_free(ceph_msg_data_cache, data);
Alex Elder43794502013-03-01 18:00:16 -06003055}
3056
Alex Elder90af3602013-04-05 14:46:01 -05003057void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
Alex Elderf1baeb22013-03-07 15:38:26 -06003058 size_t length, size_t alignment)
Alex Elder02afca62013-02-14 12:16:43 -06003059{
Alex Elder6644ed72013-03-11 23:34:24 -05003060 struct ceph_msg_data *data;
3061
Alex Elder07aa1552013-03-04 18:29:06 -06003062 BUG_ON(!pages);
3063 BUG_ON(!length);
Alex Elder02afca62013-02-14 12:16:43 -06003064
Alex Elder6644ed72013-03-11 23:34:24 -05003065 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
3066 BUG_ON(!data);
3067 data->pages = pages;
3068 data->length = length;
3069 data->alignment = alignment & ~PAGE_MASK;
3070
Alex Elder5240d9f2013-03-14 14:09:06 -05003071 list_add_tail(&data->links, &msg->data);
3072 msg->data_length += length;
Alex Elder02afca62013-02-14 12:16:43 -06003073}
Alex Elder90af3602013-04-05 14:46:01 -05003074EXPORT_SYMBOL(ceph_msg_data_add_pages);
Sage Weil31b80062009-10-06 11:31:13 -07003075
Alex Elder90af3602013-04-05 14:46:01 -05003076void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
Alex Elder27fa8382013-02-14 12:16:43 -06003077 struct ceph_pagelist *pagelist)
3078{
Alex Elder6644ed72013-03-11 23:34:24 -05003079 struct ceph_msg_data *data;
3080
Alex Elder07aa1552013-03-04 18:29:06 -06003081 BUG_ON(!pagelist);
3082 BUG_ON(!pagelist->length);
Alex Elder27fa8382013-02-14 12:16:43 -06003083
Alex Elder6644ed72013-03-11 23:34:24 -05003084 data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3085 BUG_ON(!data);
3086 data->pagelist = pagelist;
3087
Alex Elder5240d9f2013-03-14 14:09:06 -05003088 list_add_tail(&data->links, &msg->data);
3089 msg->data_length += pagelist->length;
Alex Elder27fa8382013-02-14 12:16:43 -06003090}
Alex Elder90af3602013-04-05 14:46:01 -05003091EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
Alex Elder27fa8382013-02-14 12:16:43 -06003092
Alex Elderea965712013-04-05 14:46:01 -05003093#ifdef CONFIG_BLOCK
Alex Elder90af3602013-04-05 14:46:01 -05003094void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
Alex Eldera1930802013-03-14 14:09:06 -05003095 size_t length)
Alex Elder27fa8382013-02-14 12:16:43 -06003096{
Alex Elder6644ed72013-03-11 23:34:24 -05003097 struct ceph_msg_data *data;
Alex Elder27fa8382013-02-14 12:16:43 -06003098
Alex Elder6644ed72013-03-11 23:34:24 -05003099 BUG_ON(!bio);
Alex Elder6644ed72013-03-11 23:34:24 -05003100
3101 data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3102 BUG_ON(!data);
3103 data->bio = bio;
Alex Elderc851c492013-04-05 14:46:01 -05003104 data->bio_length = length;
Alex Elder6644ed72013-03-11 23:34:24 -05003105
Alex Elder5240d9f2013-03-14 14:09:06 -05003106 list_add_tail(&data->links, &msg->data);
3107 msg->data_length += length;
Alex Elder27fa8382013-02-14 12:16:43 -06003108}
Alex Elder90af3602013-04-05 14:46:01 -05003109EXPORT_SYMBOL(ceph_msg_data_add_bio);
Alex Elderea965712013-04-05 14:46:01 -05003110#endif /* CONFIG_BLOCK */
Alex Elder27fa8382013-02-14 12:16:43 -06003111
Sage Weil31b80062009-10-06 11:31:13 -07003112/*
3113 * construct a new message with given type, size
3114 * the new msg has a ref count of 1.
3115 */
Sage Weilb61c2762011-08-09 15:03:46 -07003116struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3117 bool can_fail)
Sage Weil31b80062009-10-06 11:31:13 -07003118{
3119 struct ceph_msg *m;
3120
Alex Eldere3d5d632013-05-01 12:43:04 -05003121 m = kmem_cache_zalloc(ceph_msg_cache, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003122 if (m == NULL)
3123 goto out;
Alex Elder38941f82012-06-01 14:56:43 -05003124
Sage Weil31b80062009-10-06 11:31:13 -07003125 m->hdr.type = cpu_to_le16(type);
Sage Weil45c6ceb2010-05-11 15:01:51 -07003126 m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
Sage Weil31b80062009-10-06 11:31:13 -07003127 m->hdr.front_len = cpu_to_le32(front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003128
Alex Elder9516e452013-03-01 18:00:16 -06003129 INIT_LIST_HEAD(&m->list_head);
3130 kref_init(&m->kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003131 INIT_LIST_HEAD(&m->data);
Henry C Changca208922011-05-03 02:29:56 +00003132
Sage Weil31b80062009-10-06 11:31:13 -07003133 /* front */
3134 if (front_len) {
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003135 m->front.iov_base = ceph_kvmalloc(front_len, flags);
Sage Weil31b80062009-10-06 11:31:13 -07003136 if (m->front.iov_base == NULL) {
Sage Weilb61c2762011-08-09 15:03:46 -07003137 dout("ceph_msg_new can't allocate %d bytes\n",
Sage Weil31b80062009-10-06 11:31:13 -07003138 front_len);
3139 goto out2;
3140 }
3141 } else {
3142 m->front.iov_base = NULL;
3143 }
Ilya Dryomovf2be82b2014-01-09 20:08:21 +02003144 m->front_alloc_len = m->front.iov_len = front_len;
Sage Weil31b80062009-10-06 11:31:13 -07003145
Sage Weilbb257662010-04-01 16:07:23 -07003146 dout("ceph_msg_new %p front %d\n", m, front_len);
Sage Weil31b80062009-10-06 11:31:13 -07003147 return m;
3148
3149out2:
3150 ceph_msg_put(m);
3151out:
Sage Weilb61c2762011-08-09 15:03:46 -07003152 if (!can_fail) {
3153 pr_err("msg_new can't create type %d front %d\n", type,
3154 front_len);
Sage Weilf0ed1b72011-08-09 15:05:07 -07003155 WARN_ON(1);
Sage Weilb61c2762011-08-09 15:03:46 -07003156 } else {
3157 dout("msg_new can't create type %d front %d\n", type,
3158 front_len);
3159 }
Sage Weila79832f2010-04-01 16:06:19 -07003160 return NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003161}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003162EXPORT_SYMBOL(ceph_msg_new);
Sage Weil31b80062009-10-06 11:31:13 -07003163
3164/*
Sage Weil31b80062009-10-06 11:31:13 -07003165 * Allocate "middle" portion of a message, if it is needed and wasn't
3166 * allocated by alloc_msg. This allows us to read a small fixed-size
3167 * per-type header in the front and then gracefully fail (i.e.,
3168 * propagate the error to the caller based on info in the front) when
3169 * the middle is too large.
3170 */
Yehuda Sadeh24504182010-01-08 13:58:34 -08003171static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
Sage Weil31b80062009-10-06 11:31:13 -07003172{
3173 int type = le16_to_cpu(msg->hdr.type);
3174 int middle_len = le32_to_cpu(msg->hdr.middle_len);
3175
3176 dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3177 ceph_msg_type_name(type), middle_len);
3178 BUG_ON(!middle_len);
3179 BUG_ON(msg->middle);
3180
Sage Weilb6c1d5b2009-12-07 12:17:17 -08003181 msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
Sage Weil31b80062009-10-06 11:31:13 -07003182 if (!msg->middle)
3183 return -ENOMEM;
3184 return 0;
3185}
3186
Yehuda Sadeh24504182010-01-08 13:58:34 -08003187/*
Alex Elder1c20f2d2012-06-04 14:43:32 -05003188 * Allocate a message for receiving an incoming message on a
3189 * connection, and save the result in con->in_msg. Uses the
3190 * connection's private alloc_msg op if available.
3191 *
Sage Weil4740a622012-07-30 18:19:30 -07003192 * Returns 0 on success, or a negative error code.
3193 *
3194 * On success, if we set *skip = 1:
3195 * - the next message should be skipped and ignored.
3196 * - con->in_msg == NULL
3197 * or if we set *skip = 0:
3198 * - con->in_msg is non-null.
3199 * On error (ENOMEM, EAGAIN, ...),
3200 * - con->in_msg == NULL
Yehuda Sadeh24504182010-01-08 13:58:34 -08003201 */
Sage Weil4740a622012-07-30 18:19:30 -07003202static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
Yehuda Sadeh24504182010-01-08 13:58:34 -08003203{
Sage Weil4740a622012-07-30 18:19:30 -07003204 struct ceph_msg_header *hdr = &con->in_hdr;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003205 int middle_len = le32_to_cpu(hdr->middle_len);
Alex Elder1d866d12013-03-01 18:00:14 -06003206 struct ceph_msg *msg;
Sage Weil4740a622012-07-30 18:19:30 -07003207 int ret = 0;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003208
Alex Elder1c20f2d2012-06-04 14:43:32 -05003209 BUG_ON(con->in_msg != NULL);
Alex Elder53ded492013-03-01 18:00:14 -06003210 BUG_ON(!con->ops->alloc_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003211
Alex Elder53ded492013-03-01 18:00:14 -06003212 mutex_unlock(&con->mutex);
3213 msg = con->ops->alloc_msg(con, hdr, skip);
3214 mutex_lock(&con->mutex);
3215 if (con->state != CON_STATE_OPEN) {
3216 if (msg)
Alex Elder1d866d12013-03-01 18:00:14 -06003217 ceph_msg_put(msg);
Alex Elder53ded492013-03-01 18:00:14 -06003218 return -EAGAIN;
3219 }
Alex Elder41375772013-03-05 09:25:10 -06003220 if (msg) {
3221 BUG_ON(*skip);
3222 con->in_msg = msg;
Sage Weil36eb71a2012-06-21 12:47:08 -07003223 con->in_msg->con = con->ops->get(con);
Alex Elder92ce0342012-06-04 14:43:33 -05003224 BUG_ON(con->in_msg->con == NULL);
Alex Elder41375772013-03-05 09:25:10 -06003225 } else {
3226 /*
3227 * Null message pointer means either we should skip
3228 * this message or we couldn't allocate memory. The
3229 * former is not an error.
3230 */
3231 if (*skip)
3232 return 0;
3233 con->error_msg = "error allocating memory for incoming message";
3234
Alex Elder53ded492013-03-01 18:00:14 -06003235 return -ENOMEM;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003236 }
Alex Elder1c20f2d2012-06-04 14:43:32 -05003237 memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
Yehuda Sadeh24504182010-01-08 13:58:34 -08003238
Alex Elder1c20f2d2012-06-04 14:43:32 -05003239 if (middle_len && !con->in_msg->middle) {
3240 ret = ceph_alloc_middle(con, con->in_msg);
Yehuda Sadeh24504182010-01-08 13:58:34 -08003241 if (ret < 0) {
Alex Elder1c20f2d2012-06-04 14:43:32 -05003242 ceph_msg_put(con->in_msg);
3243 con->in_msg = NULL;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003244 }
3245 }
Yehuda Sadeh9d7f0f12010-01-11 10:32:02 -08003246
Sage Weil4740a622012-07-30 18:19:30 -07003247 return ret;
Yehuda Sadeh24504182010-01-08 13:58:34 -08003248}
3249
Sage Weil31b80062009-10-06 11:31:13 -07003250
3251/*
3252 * Free a generically kmalloc'd message.
3253 */
3254void ceph_msg_kfree(struct ceph_msg *m)
3255{
3256 dout("msg_kfree %p\n", m);
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +02003257 ceph_kvfree(m->front.iov_base);
Alex Eldere3d5d632013-05-01 12:43:04 -05003258 kmem_cache_free(ceph_msg_cache, m);
Sage Weil31b80062009-10-06 11:31:13 -07003259}
3260
3261/*
3262 * Drop a msg ref. Destroy as needed.
3263 */
Sage Weilc2e552e2009-12-07 15:55:05 -08003264void ceph_msg_last_put(struct kref *kref)
Sage Weil31b80062009-10-06 11:31:13 -07003265{
Sage Weilc2e552e2009-12-07 15:55:05 -08003266 struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
Alex Elder5240d9f2013-03-14 14:09:06 -05003267 LIST_HEAD(data);
3268 struct list_head *links;
3269 struct list_head *next;
Sage Weil31b80062009-10-06 11:31:13 -07003270
Sage Weilc2e552e2009-12-07 15:55:05 -08003271 dout("ceph_msg_put last one on %p\n", m);
3272 WARN_ON(!list_empty(&m->list_head));
Sage Weil31b80062009-10-06 11:31:13 -07003273
Sage Weilc2e552e2009-12-07 15:55:05 -08003274 /* drop middle, data, if any */
3275 if (m->middle) {
3276 ceph_buffer_put(m->middle);
3277 m->middle = NULL;
Sage Weil31b80062009-10-06 11:31:13 -07003278 }
Alex Elder5240d9f2013-03-14 14:09:06 -05003279
3280 list_splice_init(&m->data, &data);
3281 list_for_each_safe(links, next, &data) {
3282 struct ceph_msg_data *data;
3283
3284 data = list_entry(links, struct ceph_msg_data, links);
3285 list_del_init(links);
3286 ceph_msg_data_destroy(data);
3287 }
Alex Eldera1930802013-03-14 14:09:06 -05003288 m->data_length = 0;
Sage Weil58bb3b32009-12-23 12:12:31 -08003289
Sage Weilc2e552e2009-12-07 15:55:05 -08003290 if (m->pool)
3291 ceph_msgpool_put(m->pool, m);
3292 else
3293 ceph_msg_kfree(m);
Sage Weil31b80062009-10-06 11:31:13 -07003294}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003295EXPORT_SYMBOL(ceph_msg_last_put);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003296
3297void ceph_msg_dump(struct ceph_msg *msg)
3298{
Ilya Dryomov3cea4c32014-01-09 20:08:21 +02003299 pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3300 msg->front_alloc_len, msg->data_length);
Sage Weil9ec7cab2009-12-14 15:13:47 -08003301 print_hex_dump(KERN_DEBUG, "header: ",
3302 DUMP_PREFIX_OFFSET, 16, 1,
3303 &msg->hdr, sizeof(msg->hdr), true);
3304 print_hex_dump(KERN_DEBUG, " front: ",
3305 DUMP_PREFIX_OFFSET, 16, 1,
3306 msg->front.iov_base, msg->front.iov_len, true);
3307 if (msg->middle)
3308 print_hex_dump(KERN_DEBUG, "middle: ",
3309 DUMP_PREFIX_OFFSET, 16, 1,
3310 msg->middle->vec.iov_base,
3311 msg->middle->vec.iov_len, true);
3312 print_hex_dump(KERN_DEBUG, "footer: ",
3313 DUMP_PREFIX_OFFSET, 16, 1,
3314 &msg->footer, sizeof(msg->footer), true);
3315}
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003316EXPORT_SYMBOL(ceph_msg_dump);