GNU Linux-libre 4.9.309-gnu1
[releases.git] / net / ceph / messenger.c
1 #include <linux/ceph/ceph_debug.h>
2
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>
9 #include <linux/nsproxy.h>
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/socket.h>
13 #include <linux/string.h>
14 #ifdef  CONFIG_BLOCK
15 #include <linux/bio.h>
16 #endif  /* CONFIG_BLOCK */
17 #include <linux/dns_resolver.h>
18 #include <net/tcp.h>
19
20 #include <linux/ceph/ceph_features.h>
21 #include <linux/ceph/libceph.h>
22 #include <linux/ceph/messenger.h>
23 #include <linux/ceph/decode.h>
24 #include <linux/ceph/pagelist.h>
25 #include <linux/export.h>
26
27 /*
28  * Ceph uses the messenger to exchange ceph_msg messages with other
29  * hosts in the system.  The messenger provides ordered and reliable
30  * delivery.  We tolerate TCP disconnects by reconnecting (with
31  * exponential backoff) in the case of a fault (disconnection, bad
32  * crc, protocol error).  Acks allow sent messages to be discarded by
33  * the sender.
34  */
35
36 /*
37  * We track the state of the socket on a given connection using
38  * values defined below.  The transition to a new socket state is
39  * handled by a function which verifies we aren't coming from an
40  * unexpected state.
41  *
42  *      --------
43  *      | NEW* |  transient initial state
44  *      --------
45  *          | con_sock_state_init()
46  *          v
47  *      ----------
48  *      | CLOSED |  initialized, but no socket (and no
49  *      ----------  TCP connection)
50  *       ^      \
51  *       |       \ con_sock_state_connecting()
52  *       |        ----------------------
53  *       |                              \
54  *       + con_sock_state_closed()       \
55  *       |+---------------------------    \
56  *       | \                          \    \
57  *       |  -----------                \    \
58  *       |  | CLOSING |  socket event;  \    \
59  *       |  -----------  await close     \    \
60  *       |       ^                        \   |
61  *       |       |                         \  |
62  *       |       + con_sock_state_closing() \ |
63  *       |      / \                         | |
64  *       |     /   ---------------          | |
65  *       |    /                   \         v v
66  *       |   /                    --------------
67  *       |  /    -----------------| CONNECTING |  socket created, TCP
68  *       |  |   /                 --------------  connect initiated
69  *       |  |   | con_sock_state_connected()
70  *       |  |   v
71  *      -------------
72  *      | CONNECTED |  TCP connection established
73  *      -------------
74  *
75  * State values for ceph_connection->sock_state; NEW is assumed to be 0.
76  */
77
78 #define CON_SOCK_STATE_NEW              0       /* -> CLOSED */
79 #define CON_SOCK_STATE_CLOSED           1       /* -> CONNECTING */
80 #define CON_SOCK_STATE_CONNECTING       2       /* -> CONNECTED or -> CLOSING */
81 #define CON_SOCK_STATE_CONNECTED        3       /* -> CLOSING or -> CLOSED */
82 #define CON_SOCK_STATE_CLOSING          4       /* -> CLOSED */
83
84 /*
85  * connection states
86  */
87 #define CON_STATE_CLOSED        1  /* -> PREOPEN */
88 #define CON_STATE_PREOPEN       2  /* -> CONNECTING, CLOSED */
89 #define CON_STATE_CONNECTING    3  /* -> NEGOTIATING, CLOSED */
90 #define CON_STATE_NEGOTIATING   4  /* -> OPEN, CLOSED */
91 #define CON_STATE_OPEN          5  /* -> STANDBY, CLOSED */
92 #define CON_STATE_STANDBY       6  /* -> PREOPEN, CLOSED */
93
94 /*
95  * ceph_connection flag bits
96  */
97 #define CON_FLAG_LOSSYTX           0  /* we can close channel or drop
98                                        * messages on errors */
99 #define CON_FLAG_KEEPALIVE_PENDING 1  /* we need to send a keepalive */
100 #define CON_FLAG_WRITE_PENDING     2  /* we have data ready to send */
101 #define CON_FLAG_SOCK_CLOSED       3  /* socket state changed to closed */
102 #define CON_FLAG_BACKOFF           4  /* need to retry queuing delayed work */
103
104 static bool con_flag_valid(unsigned long con_flag)
105 {
106         switch (con_flag) {
107         case CON_FLAG_LOSSYTX:
108         case CON_FLAG_KEEPALIVE_PENDING:
109         case CON_FLAG_WRITE_PENDING:
110         case CON_FLAG_SOCK_CLOSED:
111         case CON_FLAG_BACKOFF:
112                 return true;
113         default:
114                 return false;
115         }
116 }
117
118 static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag)
119 {
120         BUG_ON(!con_flag_valid(con_flag));
121
122         clear_bit(con_flag, &con->flags);
123 }
124
125 static void con_flag_set(struct ceph_connection *con, unsigned long con_flag)
126 {
127         BUG_ON(!con_flag_valid(con_flag));
128
129         set_bit(con_flag, &con->flags);
130 }
131
132 static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag)
133 {
134         BUG_ON(!con_flag_valid(con_flag));
135
136         return test_bit(con_flag, &con->flags);
137 }
138
139 static bool con_flag_test_and_clear(struct ceph_connection *con,
140                                         unsigned long con_flag)
141 {
142         BUG_ON(!con_flag_valid(con_flag));
143
144         return test_and_clear_bit(con_flag, &con->flags);
145 }
146
147 static bool con_flag_test_and_set(struct ceph_connection *con,
148                                         unsigned long con_flag)
149 {
150         BUG_ON(!con_flag_valid(con_flag));
151
152         return test_and_set_bit(con_flag, &con->flags);
153 }
154
155 /* Slab caches for frequently-allocated structures */
156
157 static struct kmem_cache        *ceph_msg_cache;
158 static struct kmem_cache        *ceph_msg_data_cache;
159
160 /* static tag bytes (protocol control messages) */
161 static char tag_msg = CEPH_MSGR_TAG_MSG;
162 static char tag_ack = CEPH_MSGR_TAG_ACK;
163 static char tag_keepalive = CEPH_MSGR_TAG_KEEPALIVE;
164 static char tag_keepalive2 = CEPH_MSGR_TAG_KEEPALIVE2;
165
166 #ifdef CONFIG_LOCKDEP
167 static struct lock_class_key socket_class;
168 #endif
169
170 /*
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
175
176 static void queue_con(struct ceph_connection *con);
177 static void cancel_con(struct ceph_connection *con);
178 static void ceph_con_workfn(struct work_struct *);
179 static void con_fault(struct ceph_connection *con);
180
181 /*
182  * Nicely render a sockaddr as a string.  An array of formatted
183  * strings is used, to approximate reentrancy.
184  */
185 #define ADDR_STR_COUNT_LOG      5       /* log2(# address strings in array) */
186 #define ADDR_STR_COUNT          (1 << ADDR_STR_COUNT_LOG)
187 #define ADDR_STR_COUNT_MASK     (ADDR_STR_COUNT - 1)
188 #define MAX_ADDR_STR_LEN        64      /* 54 is enough */
189
190 static char addr_str[ADDR_STR_COUNT][MAX_ADDR_STR_LEN];
191 static atomic_t addr_str_seq = ATOMIC_INIT(0);
192
193 static struct page *zero_page;          /* used in certain error cases */
194
195 const char *ceph_pr_addr(const struct sockaddr_storage *ss)
196 {
197         int i;
198         char *s;
199         struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
200         struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
201
202         i = atomic_inc_return(&addr_str_seq) & ADDR_STR_COUNT_MASK;
203         s = addr_str[i];
204
205         switch (ss->ss_family) {
206         case AF_INET:
207                 snprintf(s, MAX_ADDR_STR_LEN, "%pI4:%hu", &in4->sin_addr,
208                          ntohs(in4->sin_port));
209                 break;
210
211         case AF_INET6:
212                 snprintf(s, MAX_ADDR_STR_LEN, "[%pI6c]:%hu", &in6->sin6_addr,
213                          ntohs(in6->sin6_port));
214                 break;
215
216         default:
217                 snprintf(s, MAX_ADDR_STR_LEN, "(unknown sockaddr family %hu)",
218                          ss->ss_family);
219         }
220
221         return s;
222 }
223 EXPORT_SYMBOL(ceph_pr_addr);
224
225 static void encode_my_addr(struct ceph_messenger *msgr)
226 {
227         memcpy(&msgr->my_enc_addr, &msgr->inst.addr, sizeof(msgr->my_enc_addr));
228         ceph_encode_addr(&msgr->my_enc_addr);
229 }
230
231 /*
232  * work queue for all reading and writing to/from the socket.
233  */
234 static struct workqueue_struct *ceph_msgr_wq;
235
236 static int ceph_msgr_slab_init(void)
237 {
238         BUG_ON(ceph_msg_cache);
239         ceph_msg_cache = KMEM_CACHE(ceph_msg, 0);
240         if (!ceph_msg_cache)
241                 return -ENOMEM;
242
243         BUG_ON(ceph_msg_data_cache);
244         ceph_msg_data_cache = KMEM_CACHE(ceph_msg_data, 0);
245         if (ceph_msg_data_cache)
246                 return 0;
247
248         kmem_cache_destroy(ceph_msg_cache);
249         ceph_msg_cache = NULL;
250
251         return -ENOMEM;
252 }
253
254 static void ceph_msgr_slab_exit(void)
255 {
256         BUG_ON(!ceph_msg_data_cache);
257         kmem_cache_destroy(ceph_msg_data_cache);
258         ceph_msg_data_cache = NULL;
259
260         BUG_ON(!ceph_msg_cache);
261         kmem_cache_destroy(ceph_msg_cache);
262         ceph_msg_cache = NULL;
263 }
264
265 static void _ceph_msgr_exit(void)
266 {
267         if (ceph_msgr_wq) {
268                 destroy_workqueue(ceph_msgr_wq);
269                 ceph_msgr_wq = NULL;
270         }
271
272         BUG_ON(zero_page == NULL);
273         put_page(zero_page);
274         zero_page = NULL;
275
276         ceph_msgr_slab_exit();
277 }
278
279 int ceph_msgr_init(void)
280 {
281         if (ceph_msgr_slab_init())
282                 return -ENOMEM;
283
284         BUG_ON(zero_page != NULL);
285         zero_page = ZERO_PAGE(0);
286         get_page(zero_page);
287
288         /*
289          * The number of active work items is limited by the number of
290          * connections, so leave @max_active at default.
291          */
292         ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_MEM_RECLAIM, 0);
293         if (ceph_msgr_wq)
294                 return 0;
295
296         pr_err("msgr_init failed to create workqueue\n");
297         _ceph_msgr_exit();
298
299         return -ENOMEM;
300 }
301 EXPORT_SYMBOL(ceph_msgr_init);
302
303 void ceph_msgr_exit(void)
304 {
305         BUG_ON(ceph_msgr_wq == NULL);
306
307         _ceph_msgr_exit();
308 }
309 EXPORT_SYMBOL(ceph_msgr_exit);
310
311 void ceph_msgr_flush(void)
312 {
313         flush_workqueue(ceph_msgr_wq);
314 }
315 EXPORT_SYMBOL(ceph_msgr_flush);
316
317 /* Connection socket state transition functions */
318
319 static void con_sock_state_init(struct ceph_connection *con)
320 {
321         int old_state;
322
323         old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
324         if (WARN_ON(old_state != CON_SOCK_STATE_NEW))
325                 printk("%s: unexpected old state %d\n", __func__, old_state);
326         dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
327              CON_SOCK_STATE_CLOSED);
328 }
329
330 static void con_sock_state_connecting(struct ceph_connection *con)
331 {
332         int old_state;
333
334         old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING);
335         if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED))
336                 printk("%s: unexpected old state %d\n", __func__, old_state);
337         dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
338              CON_SOCK_STATE_CONNECTING);
339 }
340
341 static void con_sock_state_connected(struct ceph_connection *con)
342 {
343         int old_state;
344
345         old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTED);
346         if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING))
347                 printk("%s: unexpected old state %d\n", __func__, old_state);
348         dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
349              CON_SOCK_STATE_CONNECTED);
350 }
351
352 static void con_sock_state_closing(struct ceph_connection *con)
353 {
354         int old_state;
355
356         old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSING);
357         if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTING &&
358                         old_state != CON_SOCK_STATE_CONNECTED &&
359                         old_state != CON_SOCK_STATE_CLOSING))
360                 printk("%s: unexpected old state %d\n", __func__, old_state);
361         dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
362              CON_SOCK_STATE_CLOSING);
363 }
364
365 static void con_sock_state_closed(struct ceph_connection *con)
366 {
367         int old_state;
368
369         old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED);
370         if (WARN_ON(old_state != CON_SOCK_STATE_CONNECTED &&
371                     old_state != CON_SOCK_STATE_CLOSING &&
372                     old_state != CON_SOCK_STATE_CONNECTING &&
373                     old_state != CON_SOCK_STATE_CLOSED))
374                 printk("%s: unexpected old state %d\n", __func__, old_state);
375         dout("%s con %p sock %d -> %d\n", __func__, con, old_state,
376              CON_SOCK_STATE_CLOSED);
377 }
378
379 /*
380  * socket callback functions
381  */
382
383 /* data available on socket, or listen socket received a connect */
384 static void ceph_sock_data_ready(struct sock *sk)
385 {
386         struct ceph_connection *con = sk->sk_user_data;
387         if (atomic_read(&con->msgr->stopping)) {
388                 return;
389         }
390
391         if (sk->sk_state != TCP_CLOSE_WAIT) {
392                 dout("%s on %p state = %lu, queueing work\n", __func__,
393                      con, con->state);
394                 queue_con(con);
395         }
396 }
397
398 /* socket has buffer space for writing */
399 static void ceph_sock_write_space(struct sock *sk)
400 {
401         struct ceph_connection *con = sk->sk_user_data;
402
403         /* only queue to workqueue if there is data we want to write,
404          * and there is sufficient space in the socket buffer to accept
405          * more data.  clear SOCK_NOSPACE so that ceph_sock_write_space()
406          * doesn't get called again until try_write() fills the socket
407          * buffer. See net/ipv4/tcp_input.c:tcp_check_space()
408          * and net/core/stream.c:sk_stream_write_space().
409          */
410         if (con_flag_test(con, CON_FLAG_WRITE_PENDING)) {
411                 if (sk_stream_is_writeable(sk)) {
412                         dout("%s %p queueing write work\n", __func__, con);
413                         clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
414                         queue_con(con);
415                 }
416         } else {
417                 dout("%s %p nothing to write\n", __func__, con);
418         }
419 }
420
421 /* socket's state has changed */
422 static void ceph_sock_state_change(struct sock *sk)
423 {
424         struct ceph_connection *con = sk->sk_user_data;
425
426         dout("%s %p state = %lu sk_state = %u\n", __func__,
427              con, con->state, sk->sk_state);
428
429         switch (sk->sk_state) {
430         case TCP_CLOSE:
431                 dout("%s TCP_CLOSE\n", __func__);
432         case TCP_CLOSE_WAIT:
433                 dout("%s TCP_CLOSE_WAIT\n", __func__);
434                 con_sock_state_closing(con);
435                 con_flag_set(con, CON_FLAG_SOCK_CLOSED);
436                 queue_con(con);
437                 break;
438         case TCP_ESTABLISHED:
439                 dout("%s TCP_ESTABLISHED\n", __func__);
440                 con_sock_state_connected(con);
441                 queue_con(con);
442                 break;
443         default:        /* Everything else is uninteresting */
444                 break;
445         }
446 }
447
448 /*
449  * set up socket callbacks
450  */
451 static void set_sock_callbacks(struct socket *sock,
452                                struct ceph_connection *con)
453 {
454         struct sock *sk = sock->sk;
455         sk->sk_user_data = con;
456         sk->sk_data_ready = ceph_sock_data_ready;
457         sk->sk_write_space = ceph_sock_write_space;
458         sk->sk_state_change = ceph_sock_state_change;
459 }
460
461
462 /*
463  * socket helpers
464  */
465
466 /*
467  * initiate connection to a remote socket.
468  */
469 static int ceph_tcp_connect(struct ceph_connection *con)
470 {
471         struct sockaddr_storage *paddr = &con->peer_addr.in_addr;
472         struct socket *sock;
473         unsigned int noio_flag;
474         int ret;
475
476         BUG_ON(con->sock);
477
478         /* sock_create_kern() allocates with GFP_KERNEL */
479         noio_flag = memalloc_noio_save();
480         ret = sock_create_kern(read_pnet(&con->msgr->net), paddr->ss_family,
481                                SOCK_STREAM, IPPROTO_TCP, &sock);
482         memalloc_noio_restore(noio_flag);
483         if (ret)
484                 return ret;
485         sock->sk->sk_allocation = GFP_NOFS;
486
487 #ifdef CONFIG_LOCKDEP
488         lockdep_set_class(&sock->sk->sk_lock, &socket_class);
489 #endif
490
491         set_sock_callbacks(sock, con);
492
493         dout("connect %s\n", ceph_pr_addr(&con->peer_addr.in_addr));
494
495         con_sock_state_connecting(con);
496         ret = sock->ops->connect(sock, (struct sockaddr *)paddr, sizeof(*paddr),
497                                  O_NONBLOCK);
498         if (ret == -EINPROGRESS) {
499                 dout("connect %s EINPROGRESS sk_state = %u\n",
500                      ceph_pr_addr(&con->peer_addr.in_addr),
501                      sock->sk->sk_state);
502         } else if (ret < 0) {
503                 pr_err("connect %s error %d\n",
504                        ceph_pr_addr(&con->peer_addr.in_addr), ret);
505                 sock_release(sock);
506                 return ret;
507         }
508
509         if (ceph_test_opt(from_msgr(con->msgr), TCP_NODELAY)) {
510                 int optval = 1;
511
512                 ret = kernel_setsockopt(sock, SOL_TCP, TCP_NODELAY,
513                                         (char *)&optval, sizeof(optval));
514                 if (ret)
515                         pr_err("kernel_setsockopt(TCP_NODELAY) failed: %d",
516                                ret);
517         }
518
519         con->sock = sock;
520         return 0;
521 }
522
523 static int ceph_tcp_recvmsg(struct socket *sock, void *buf, size_t len)
524 {
525         struct kvec iov = {buf, len};
526         struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
527         int r;
528
529         r = kernel_recvmsg(sock, &msg, &iov, 1, len, msg.msg_flags);
530         if (r == -EAGAIN)
531                 r = 0;
532         return r;
533 }
534
535 static int ceph_tcp_recvpage(struct socket *sock, struct page *page,
536                      int page_offset, size_t length)
537 {
538         void *kaddr;
539         int ret;
540
541         BUG_ON(page_offset + length > PAGE_SIZE);
542
543         kaddr = kmap(page);
544         BUG_ON(!kaddr);
545         ret = ceph_tcp_recvmsg(sock, kaddr + page_offset, length);
546         kunmap(page);
547
548         return ret;
549 }
550
551 /*
552  * write something.  @more is true if caller will be sending more data
553  * shortly.
554  */
555 static int ceph_tcp_sendmsg(struct socket *sock, struct kvec *iov,
556                      size_t kvlen, size_t len, int more)
557 {
558         struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
559         int r;
560
561         if (more)
562                 msg.msg_flags |= MSG_MORE;
563         else
564                 msg.msg_flags |= MSG_EOR;  /* superfluous, but what the hell */
565
566         r = kernel_sendmsg(sock, &msg, iov, kvlen, len);
567         if (r == -EAGAIN)
568                 r = 0;
569         return r;
570 }
571
572 static int __ceph_tcp_sendpage(struct socket *sock, struct page *page,
573                      int offset, size_t size, bool more)
574 {
575         int flags = MSG_DONTWAIT | MSG_NOSIGNAL | (more ? MSG_MORE : MSG_EOR);
576         int ret;
577
578         ret = kernel_sendpage(sock, page, offset, size, flags);
579         if (ret == -EAGAIN)
580                 ret = 0;
581
582         return ret;
583 }
584
585 static int ceph_tcp_sendpage(struct socket *sock, struct page *page,
586                      int offset, size_t size, bool more)
587 {
588         int ret;
589         struct kvec iov;
590
591         /*
592          * sendpage cannot properly handle pages with page_count == 0,
593          * we need to fall back to sendmsg if that's the case.
594          *
595          * Same goes for slab pages: skb_can_coalesce() allows
596          * coalescing neighboring slab objects into a single frag which
597          * triggers one of hardened usercopy checks.
598          */
599         if (page_count(page) >= 1 && !PageSlab(page))
600                 return __ceph_tcp_sendpage(sock, page, offset, size, more);
601
602         iov.iov_base = kmap(page) + offset;
603         iov.iov_len = size;
604         ret = ceph_tcp_sendmsg(sock, &iov, 1, size, more);
605         kunmap(page);
606
607         return ret;
608 }
609
610 /*
611  * Shutdown/close the socket for the given connection.
612  */
613 static int con_close_socket(struct ceph_connection *con)
614 {
615         int rc = 0;
616
617         dout("con_close_socket on %p sock %p\n", con, con->sock);
618         if (con->sock) {
619                 rc = con->sock->ops->shutdown(con->sock, SHUT_RDWR);
620                 sock_release(con->sock);
621                 con->sock = NULL;
622         }
623
624         /*
625          * Forcibly clear the SOCK_CLOSED flag.  It gets set
626          * independent of the connection mutex, and we could have
627          * received a socket close event before we had the chance to
628          * shut the socket down.
629          */
630         con_flag_clear(con, CON_FLAG_SOCK_CLOSED);
631
632         con_sock_state_closed(con);
633         return rc;
634 }
635
636 /*
637  * Reset a connection.  Discard all incoming and outgoing messages
638  * and clear *_seq state.
639  */
640 static void ceph_msg_remove(struct ceph_msg *msg)
641 {
642         list_del_init(&msg->list_head);
643
644         ceph_msg_put(msg);
645 }
646 static void ceph_msg_remove_list(struct list_head *head)
647 {
648         while (!list_empty(head)) {
649                 struct ceph_msg *msg = list_first_entry(head, struct ceph_msg,
650                                                         list_head);
651                 ceph_msg_remove(msg);
652         }
653 }
654
655 static void reset_connection(struct ceph_connection *con)
656 {
657         /* reset connection, out_queue, msg_ and connect_seq */
658         /* discard existing out_queue and msg_seq */
659         dout("reset_connection %p\n", con);
660         ceph_msg_remove_list(&con->out_queue);
661         ceph_msg_remove_list(&con->out_sent);
662
663         if (con->in_msg) {
664                 BUG_ON(con->in_msg->con != con);
665                 ceph_msg_put(con->in_msg);
666                 con->in_msg = NULL;
667         }
668
669         con->connect_seq = 0;
670         con->out_seq = 0;
671         if (con->out_msg) {
672                 BUG_ON(con->out_msg->con != con);
673                 ceph_msg_put(con->out_msg);
674                 con->out_msg = NULL;
675         }
676         con->in_seq = 0;
677         con->in_seq_acked = 0;
678
679         con->out_skip = 0;
680 }
681
682 /*
683  * mark a peer down.  drop any open connections.
684  */
685 void ceph_con_close(struct ceph_connection *con)
686 {
687         mutex_lock(&con->mutex);
688         dout("con_close %p peer %s\n", con,
689              ceph_pr_addr(&con->peer_addr.in_addr));
690         con->state = CON_STATE_CLOSED;
691
692         con_flag_clear(con, CON_FLAG_LOSSYTX);  /* so we retry next connect */
693         con_flag_clear(con, CON_FLAG_KEEPALIVE_PENDING);
694         con_flag_clear(con, CON_FLAG_WRITE_PENDING);
695         con_flag_clear(con, CON_FLAG_BACKOFF);
696
697         reset_connection(con);
698         con->peer_global_seq = 0;
699         cancel_con(con);
700         con_close_socket(con);
701         mutex_unlock(&con->mutex);
702 }
703 EXPORT_SYMBOL(ceph_con_close);
704
705 /*
706  * Reopen a closed connection, with a new peer address.
707  */
708 void ceph_con_open(struct ceph_connection *con,
709                    __u8 entity_type, __u64 entity_num,
710                    struct ceph_entity_addr *addr)
711 {
712         mutex_lock(&con->mutex);
713         dout("con_open %p %s\n", con, ceph_pr_addr(&addr->in_addr));
714
715         WARN_ON(con->state != CON_STATE_CLOSED);
716         con->state = CON_STATE_PREOPEN;
717
718         con->peer_name.type = (__u8) entity_type;
719         con->peer_name.num = cpu_to_le64(entity_num);
720
721         memcpy(&con->peer_addr, addr, sizeof(*addr));
722         con->delay = 0;      /* reset backoff memory */
723         mutex_unlock(&con->mutex);
724         queue_con(con);
725 }
726 EXPORT_SYMBOL(ceph_con_open);
727
728 /*
729  * return true if this connection ever successfully opened
730  */
731 bool ceph_con_opened(struct ceph_connection *con)
732 {
733         return con->connect_seq > 0;
734 }
735
736 /*
737  * initialize a new connection.
738  */
739 void ceph_con_init(struct ceph_connection *con, void *private,
740         const struct ceph_connection_operations *ops,
741         struct ceph_messenger *msgr)
742 {
743         dout("con_init %p\n", con);
744         memset(con, 0, sizeof(*con));
745         con->private = private;
746         con->ops = ops;
747         con->msgr = msgr;
748
749         con_sock_state_init(con);
750
751         mutex_init(&con->mutex);
752         INIT_LIST_HEAD(&con->out_queue);
753         INIT_LIST_HEAD(&con->out_sent);
754         INIT_DELAYED_WORK(&con->work, ceph_con_workfn);
755
756         con->state = CON_STATE_CLOSED;
757 }
758 EXPORT_SYMBOL(ceph_con_init);
759
760
761 /*
762  * We maintain a global counter to order connection attempts.  Get
763  * a unique seq greater than @gt.
764  */
765 static u32 get_global_seq(struct ceph_messenger *msgr, u32 gt)
766 {
767         u32 ret;
768
769         spin_lock(&msgr->global_seq_lock);
770         if (msgr->global_seq < gt)
771                 msgr->global_seq = gt;
772         ret = ++msgr->global_seq;
773         spin_unlock(&msgr->global_seq_lock);
774         return ret;
775 }
776
777 static void con_out_kvec_reset(struct ceph_connection *con)
778 {
779         BUG_ON(con->out_skip);
780
781         con->out_kvec_left = 0;
782         con->out_kvec_bytes = 0;
783         con->out_kvec_cur = &con->out_kvec[0];
784 }
785
786 static void con_out_kvec_add(struct ceph_connection *con,
787                                 size_t size, void *data)
788 {
789         int index = con->out_kvec_left;
790
791         BUG_ON(con->out_skip);
792         BUG_ON(index >= ARRAY_SIZE(con->out_kvec));
793
794         con->out_kvec[index].iov_len = size;
795         con->out_kvec[index].iov_base = data;
796         con->out_kvec_left++;
797         con->out_kvec_bytes += size;
798 }
799
800 /*
801  * Chop off a kvec from the end.  Return residual number of bytes for
802  * that kvec, i.e. how many bytes would have been written if the kvec
803  * hadn't been nuked.
804  */
805 static int con_out_kvec_skip(struct ceph_connection *con)
806 {
807         int off = con->out_kvec_cur - con->out_kvec;
808         int skip = 0;
809
810         if (con->out_kvec_bytes > 0) {
811                 skip = con->out_kvec[off + con->out_kvec_left - 1].iov_len;
812                 BUG_ON(con->out_kvec_bytes < skip);
813                 BUG_ON(!con->out_kvec_left);
814                 con->out_kvec_bytes -= skip;
815                 con->out_kvec_left--;
816         }
817
818         return skip;
819 }
820
821 #ifdef CONFIG_BLOCK
822
823 /*
824  * For a bio data item, a piece is whatever remains of the next
825  * entry in the current bio iovec, or the first entry in the next
826  * bio in the list.
827  */
828 static void ceph_msg_data_bio_cursor_init(struct ceph_msg_data_cursor *cursor,
829                                         size_t length)
830 {
831         struct ceph_msg_data *data = cursor->data;
832         struct bio *bio;
833
834         BUG_ON(data->type != CEPH_MSG_DATA_BIO);
835
836         bio = data->bio;
837         BUG_ON(!bio);
838
839         cursor->resid = min(length, data->bio_length);
840         cursor->bio = bio;
841         cursor->bvec_iter = bio->bi_iter;
842         cursor->last_piece =
843                 cursor->resid <= bio_iter_len(bio, cursor->bvec_iter);
844 }
845
846 static struct page *ceph_msg_data_bio_next(struct ceph_msg_data_cursor *cursor,
847                                                 size_t *page_offset,
848                                                 size_t *length)
849 {
850         struct ceph_msg_data *data = cursor->data;
851         struct bio *bio;
852         struct bio_vec bio_vec;
853
854         BUG_ON(data->type != CEPH_MSG_DATA_BIO);
855
856         bio = cursor->bio;
857         BUG_ON(!bio);
858
859         bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
860
861         *page_offset = (size_t) bio_vec.bv_offset;
862         BUG_ON(*page_offset >= PAGE_SIZE);
863         if (cursor->last_piece) /* pagelist offset is always 0 */
864                 *length = cursor->resid;
865         else
866                 *length = (size_t) bio_vec.bv_len;
867         BUG_ON(*length > cursor->resid);
868         BUG_ON(*page_offset + *length > PAGE_SIZE);
869
870         return bio_vec.bv_page;
871 }
872
873 static bool ceph_msg_data_bio_advance(struct ceph_msg_data_cursor *cursor,
874                                         size_t bytes)
875 {
876         struct bio *bio;
877         struct bio_vec bio_vec;
878
879         BUG_ON(cursor->data->type != CEPH_MSG_DATA_BIO);
880
881         bio = cursor->bio;
882         BUG_ON(!bio);
883
884         bio_vec = bio_iter_iovec(bio, cursor->bvec_iter);
885
886         /* Advance the cursor offset */
887
888         BUG_ON(cursor->resid < bytes);
889         cursor->resid -= bytes;
890
891         bio_advance_iter(bio, &cursor->bvec_iter, bytes);
892
893         if (bytes < bio_vec.bv_len)
894                 return false;   /* more bytes to process in this segment */
895
896         /* Move on to the next segment, and possibly the next bio */
897
898         if (!cursor->bvec_iter.bi_size) {
899                 bio = bio->bi_next;
900                 cursor->bio = bio;
901                 if (bio)
902                         cursor->bvec_iter = bio->bi_iter;
903                 else
904                         memset(&cursor->bvec_iter, 0,
905                                sizeof(cursor->bvec_iter));
906         }
907
908         if (!cursor->last_piece) {
909                 BUG_ON(!cursor->resid);
910                 BUG_ON(!bio);
911                 /* A short read is OK, so use <= rather than == */
912                 if (cursor->resid <= bio_iter_len(bio, cursor->bvec_iter))
913                         cursor->last_piece = true;
914         }
915
916         return true;
917 }
918 #endif /* CONFIG_BLOCK */
919
920 /*
921  * For a page array, a piece comes from the first page in the array
922  * that has not already been fully consumed.
923  */
924 static void ceph_msg_data_pages_cursor_init(struct ceph_msg_data_cursor *cursor,
925                                         size_t length)
926 {
927         struct ceph_msg_data *data = cursor->data;
928         int page_count;
929
930         BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
931
932         BUG_ON(!data->pages);
933         BUG_ON(!data->length);
934
935         cursor->resid = min(length, data->length);
936         page_count = calc_pages_for(data->alignment, (u64)data->length);
937         cursor->page_offset = data->alignment & ~PAGE_MASK;
938         cursor->page_index = 0;
939         BUG_ON(page_count > (int)USHRT_MAX);
940         cursor->page_count = (unsigned short)page_count;
941         BUG_ON(length > SIZE_MAX - cursor->page_offset);
942         cursor->last_piece = cursor->page_offset + cursor->resid <= PAGE_SIZE;
943 }
944
945 static struct page *
946 ceph_msg_data_pages_next(struct ceph_msg_data_cursor *cursor,
947                                         size_t *page_offset, size_t *length)
948 {
949         struct ceph_msg_data *data = cursor->data;
950
951         BUG_ON(data->type != CEPH_MSG_DATA_PAGES);
952
953         BUG_ON(cursor->page_index >= cursor->page_count);
954         BUG_ON(cursor->page_offset >= PAGE_SIZE);
955
956         *page_offset = cursor->page_offset;
957         if (cursor->last_piece)
958                 *length = cursor->resid;
959         else
960                 *length = PAGE_SIZE - *page_offset;
961
962         return data->pages[cursor->page_index];
963 }
964
965 static bool ceph_msg_data_pages_advance(struct ceph_msg_data_cursor *cursor,
966                                                 size_t bytes)
967 {
968         BUG_ON(cursor->data->type != CEPH_MSG_DATA_PAGES);
969
970         BUG_ON(cursor->page_offset + bytes > PAGE_SIZE);
971
972         /* Advance the cursor page offset */
973
974         cursor->resid -= bytes;
975         cursor->page_offset = (cursor->page_offset + bytes) & ~PAGE_MASK;
976         if (!bytes || cursor->page_offset)
977                 return false;   /* more bytes to process in the current page */
978
979         if (!cursor->resid)
980                 return false;   /* no more data */
981
982         /* Move on to the next page; offset is already at 0 */
983
984         BUG_ON(cursor->page_index >= cursor->page_count);
985         cursor->page_index++;
986         cursor->last_piece = cursor->resid <= PAGE_SIZE;
987
988         return true;
989 }
990
991 /*
992  * For a pagelist, a piece is whatever remains to be consumed in the
993  * first page in the list, or the front of the next page.
994  */
995 static void
996 ceph_msg_data_pagelist_cursor_init(struct ceph_msg_data_cursor *cursor,
997                                         size_t length)
998 {
999         struct ceph_msg_data *data = cursor->data;
1000         struct ceph_pagelist *pagelist;
1001         struct page *page;
1002
1003         BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1004
1005         pagelist = data->pagelist;
1006         BUG_ON(!pagelist);
1007
1008         if (!length)
1009                 return;         /* pagelist can be assigned but empty */
1010
1011         BUG_ON(list_empty(&pagelist->head));
1012         page = list_first_entry(&pagelist->head, struct page, lru);
1013
1014         cursor->resid = min(length, pagelist->length);
1015         cursor->page = page;
1016         cursor->offset = 0;
1017         cursor->last_piece = cursor->resid <= PAGE_SIZE;
1018 }
1019
1020 static struct page *
1021 ceph_msg_data_pagelist_next(struct ceph_msg_data_cursor *cursor,
1022                                 size_t *page_offset, size_t *length)
1023 {
1024         struct ceph_msg_data *data = cursor->data;
1025         struct ceph_pagelist *pagelist;
1026
1027         BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1028
1029         pagelist = data->pagelist;
1030         BUG_ON(!pagelist);
1031
1032         BUG_ON(!cursor->page);
1033         BUG_ON(cursor->offset + cursor->resid != pagelist->length);
1034
1035         /* offset of first page in pagelist is always 0 */
1036         *page_offset = cursor->offset & ~PAGE_MASK;
1037         if (cursor->last_piece)
1038                 *length = cursor->resid;
1039         else
1040                 *length = PAGE_SIZE - *page_offset;
1041
1042         return cursor->page;
1043 }
1044
1045 static bool ceph_msg_data_pagelist_advance(struct ceph_msg_data_cursor *cursor,
1046                                                 size_t bytes)
1047 {
1048         struct ceph_msg_data *data = cursor->data;
1049         struct ceph_pagelist *pagelist;
1050
1051         BUG_ON(data->type != CEPH_MSG_DATA_PAGELIST);
1052
1053         pagelist = data->pagelist;
1054         BUG_ON(!pagelist);
1055
1056         BUG_ON(cursor->offset + cursor->resid != pagelist->length);
1057         BUG_ON((cursor->offset & ~PAGE_MASK) + bytes > PAGE_SIZE);
1058
1059         /* Advance the cursor offset */
1060
1061         cursor->resid -= bytes;
1062         cursor->offset += bytes;
1063         /* offset of first page in pagelist is always 0 */
1064         if (!bytes || cursor->offset & ~PAGE_MASK)
1065                 return false;   /* more bytes to process in the current page */
1066
1067         if (!cursor->resid)
1068                 return false;   /* no more data */
1069
1070         /* Move on to the next page */
1071
1072         BUG_ON(list_is_last(&cursor->page->lru, &pagelist->head));
1073         cursor->page = list_next_entry(cursor->page, lru);
1074         cursor->last_piece = cursor->resid <= PAGE_SIZE;
1075
1076         return true;
1077 }
1078
1079 /*
1080  * Message data is handled (sent or received) in pieces, where each
1081  * piece resides on a single page.  The network layer might not
1082  * consume an entire piece at once.  A data item's cursor keeps
1083  * track of which piece is next to process and how much remains to
1084  * be processed in that piece.  It also tracks whether the current
1085  * piece is the last one in the data item.
1086  */
1087 static void __ceph_msg_data_cursor_init(struct ceph_msg_data_cursor *cursor)
1088 {
1089         size_t length = cursor->total_resid;
1090
1091         switch (cursor->data->type) {
1092         case CEPH_MSG_DATA_PAGELIST:
1093                 ceph_msg_data_pagelist_cursor_init(cursor, length);
1094                 break;
1095         case CEPH_MSG_DATA_PAGES:
1096                 ceph_msg_data_pages_cursor_init(cursor, length);
1097                 break;
1098 #ifdef CONFIG_BLOCK
1099         case CEPH_MSG_DATA_BIO:
1100                 ceph_msg_data_bio_cursor_init(cursor, length);
1101                 break;
1102 #endif /* CONFIG_BLOCK */
1103         case CEPH_MSG_DATA_NONE:
1104         default:
1105                 /* BUG(); */
1106                 break;
1107         }
1108         cursor->need_crc = true;
1109 }
1110
1111 static void ceph_msg_data_cursor_init(struct ceph_msg *msg, size_t length)
1112 {
1113         struct ceph_msg_data_cursor *cursor = &msg->cursor;
1114         struct ceph_msg_data *data;
1115
1116         BUG_ON(!length);
1117         BUG_ON(length > msg->data_length);
1118         BUG_ON(list_empty(&msg->data));
1119
1120         cursor->data_head = &msg->data;
1121         cursor->total_resid = length;
1122         data = list_first_entry(&msg->data, struct ceph_msg_data, links);
1123         cursor->data = data;
1124
1125         __ceph_msg_data_cursor_init(cursor);
1126 }
1127
1128 /*
1129  * Return the page containing the next piece to process for a given
1130  * data item, and supply the page offset and length of that piece.
1131  * Indicate whether this is the last piece in this data item.
1132  */
1133 static struct page *ceph_msg_data_next(struct ceph_msg_data_cursor *cursor,
1134                                         size_t *page_offset, size_t *length,
1135                                         bool *last_piece)
1136 {
1137         struct page *page;
1138
1139         switch (cursor->data->type) {
1140         case CEPH_MSG_DATA_PAGELIST:
1141                 page = ceph_msg_data_pagelist_next(cursor, page_offset, length);
1142                 break;
1143         case CEPH_MSG_DATA_PAGES:
1144                 page = ceph_msg_data_pages_next(cursor, page_offset, length);
1145                 break;
1146 #ifdef CONFIG_BLOCK
1147         case CEPH_MSG_DATA_BIO:
1148                 page = ceph_msg_data_bio_next(cursor, page_offset, length);
1149                 break;
1150 #endif /* CONFIG_BLOCK */
1151         case CEPH_MSG_DATA_NONE:
1152         default:
1153                 page = NULL;
1154                 break;
1155         }
1156         BUG_ON(!page);
1157         BUG_ON(*page_offset + *length > PAGE_SIZE);
1158         BUG_ON(!*length);
1159         if (last_piece)
1160                 *last_piece = cursor->last_piece;
1161
1162         return page;
1163 }
1164
1165 /*
1166  * Returns true if the result moves the cursor on to the next piece
1167  * of the data item.
1168  */
1169 static bool ceph_msg_data_advance(struct ceph_msg_data_cursor *cursor,
1170                                 size_t bytes)
1171 {
1172         bool new_piece;
1173
1174         BUG_ON(bytes > cursor->resid);
1175         switch (cursor->data->type) {
1176         case CEPH_MSG_DATA_PAGELIST:
1177                 new_piece = ceph_msg_data_pagelist_advance(cursor, bytes);
1178                 break;
1179         case CEPH_MSG_DATA_PAGES:
1180                 new_piece = ceph_msg_data_pages_advance(cursor, bytes);
1181                 break;
1182 #ifdef CONFIG_BLOCK
1183         case CEPH_MSG_DATA_BIO:
1184                 new_piece = ceph_msg_data_bio_advance(cursor, bytes);
1185                 break;
1186 #endif /* CONFIG_BLOCK */
1187         case CEPH_MSG_DATA_NONE:
1188         default:
1189                 BUG();
1190                 break;
1191         }
1192         cursor->total_resid -= bytes;
1193
1194         if (!cursor->resid && cursor->total_resid) {
1195                 WARN_ON(!cursor->last_piece);
1196                 BUG_ON(list_is_last(&cursor->data->links, cursor->data_head));
1197                 cursor->data = list_next_entry(cursor->data, links);
1198                 __ceph_msg_data_cursor_init(cursor);
1199                 new_piece = true;
1200         }
1201         cursor->need_crc = new_piece;
1202
1203         return new_piece;
1204 }
1205
1206 static size_t sizeof_footer(struct ceph_connection *con)
1207 {
1208         return (con->peer_features & CEPH_FEATURE_MSG_AUTH) ?
1209             sizeof(struct ceph_msg_footer) :
1210             sizeof(struct ceph_msg_footer_old);
1211 }
1212
1213 static void prepare_message_data(struct ceph_msg *msg, u32 data_len)
1214 {
1215         BUG_ON(!msg);
1216         BUG_ON(!data_len);
1217
1218         /* Initialize data cursor */
1219
1220         ceph_msg_data_cursor_init(msg, (size_t)data_len);
1221 }
1222
1223 /*
1224  * Prepare footer for currently outgoing message, and finish things
1225  * off.  Assumes out_kvec* are already valid.. we just add on to the end.
1226  */
1227 static void prepare_write_message_footer(struct ceph_connection *con)
1228 {
1229         struct ceph_msg *m = con->out_msg;
1230
1231         m->footer.flags |= CEPH_MSG_FOOTER_COMPLETE;
1232
1233         dout("prepare_write_message_footer %p\n", con);
1234         con_out_kvec_add(con, sizeof_footer(con), &m->footer);
1235         if (con->peer_features & CEPH_FEATURE_MSG_AUTH) {
1236                 if (con->ops->sign_message)
1237                         con->ops->sign_message(m);
1238                 else
1239                         m->footer.sig = 0;
1240         } else {
1241                 m->old_footer.flags = m->footer.flags;
1242         }
1243         con->out_more = m->more_to_follow;
1244         con->out_msg_done = true;
1245 }
1246
1247 /*
1248  * Prepare headers for the next outgoing message.
1249  */
1250 static void prepare_write_message(struct ceph_connection *con)
1251 {
1252         struct ceph_msg *m;
1253         u32 crc;
1254
1255         con_out_kvec_reset(con);
1256         con->out_msg_done = false;
1257
1258         /* Sneak an ack in there first?  If we can get it into the same
1259          * TCP packet that's a good thing. */
1260         if (con->in_seq > con->in_seq_acked) {
1261                 con->in_seq_acked = con->in_seq;
1262                 con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
1263                 con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1264                 con_out_kvec_add(con, sizeof (con->out_temp_ack),
1265                         &con->out_temp_ack);
1266         }
1267
1268         BUG_ON(list_empty(&con->out_queue));
1269         m = list_first_entry(&con->out_queue, struct ceph_msg, list_head);
1270         con->out_msg = m;
1271         BUG_ON(m->con != con);
1272
1273         /* put message on sent list */
1274         ceph_msg_get(m);
1275         list_move_tail(&m->list_head, &con->out_sent);
1276
1277         /*
1278          * only assign outgoing seq # if we haven't sent this message
1279          * yet.  if it is requeued, resend with it's original seq.
1280          */
1281         if (m->needs_out_seq) {
1282                 m->hdr.seq = cpu_to_le64(++con->out_seq);
1283                 m->needs_out_seq = false;
1284         }
1285         WARN_ON(m->data_length != le32_to_cpu(m->hdr.data_len));
1286
1287         dout("prepare_write_message %p seq %lld type %d len %d+%d+%zd\n",
1288              m, con->out_seq, le16_to_cpu(m->hdr.type),
1289              le32_to_cpu(m->hdr.front_len), le32_to_cpu(m->hdr.middle_len),
1290              m->data_length);
1291         BUG_ON(le32_to_cpu(m->hdr.front_len) != m->front.iov_len);
1292
1293         /* tag + hdr + front + middle */
1294         con_out_kvec_add(con, sizeof (tag_msg), &tag_msg);
1295         con_out_kvec_add(con, sizeof(con->out_hdr), &con->out_hdr);
1296         con_out_kvec_add(con, m->front.iov_len, m->front.iov_base);
1297
1298         if (m->middle)
1299                 con_out_kvec_add(con, m->middle->vec.iov_len,
1300                         m->middle->vec.iov_base);
1301
1302         /* fill in hdr crc and finalize hdr */
1303         crc = crc32c(0, &m->hdr, offsetof(struct ceph_msg_header, crc));
1304         con->out_msg->hdr.crc = cpu_to_le32(crc);
1305         memcpy(&con->out_hdr, &con->out_msg->hdr, sizeof(con->out_hdr));
1306
1307         /* fill in front and middle crc, footer */
1308         crc = crc32c(0, m->front.iov_base, m->front.iov_len);
1309         con->out_msg->footer.front_crc = cpu_to_le32(crc);
1310         if (m->middle) {
1311                 crc = crc32c(0, m->middle->vec.iov_base,
1312                                 m->middle->vec.iov_len);
1313                 con->out_msg->footer.middle_crc = cpu_to_le32(crc);
1314         } else
1315                 con->out_msg->footer.middle_crc = 0;
1316         dout("%s front_crc %u middle_crc %u\n", __func__,
1317              le32_to_cpu(con->out_msg->footer.front_crc),
1318              le32_to_cpu(con->out_msg->footer.middle_crc));
1319         con->out_msg->footer.flags = 0;
1320
1321         /* is there a data payload? */
1322         con->out_msg->footer.data_crc = 0;
1323         if (m->data_length) {
1324                 prepare_message_data(con->out_msg, m->data_length);
1325                 con->out_more = 1;  /* data + footer will follow */
1326         } else {
1327                 /* no, queue up footer too and be done */
1328                 prepare_write_message_footer(con);
1329         }
1330
1331         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1332 }
1333
1334 /*
1335  * Prepare an ack.
1336  */
1337 static void prepare_write_ack(struct ceph_connection *con)
1338 {
1339         dout("prepare_write_ack %p %llu -> %llu\n", con,
1340              con->in_seq_acked, con->in_seq);
1341         con->in_seq_acked = con->in_seq;
1342
1343         con_out_kvec_reset(con);
1344
1345         con_out_kvec_add(con, sizeof (tag_ack), &tag_ack);
1346
1347         con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1348         con_out_kvec_add(con, sizeof (con->out_temp_ack),
1349                                 &con->out_temp_ack);
1350
1351         con->out_more = 1;  /* more will follow.. eventually.. */
1352         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1353 }
1354
1355 /*
1356  * Prepare to share the seq during handshake
1357  */
1358 static void prepare_write_seq(struct ceph_connection *con)
1359 {
1360         dout("prepare_write_seq %p %llu -> %llu\n", con,
1361              con->in_seq_acked, con->in_seq);
1362         con->in_seq_acked = con->in_seq;
1363
1364         con_out_kvec_reset(con);
1365
1366         con->out_temp_ack = cpu_to_le64(con->in_seq_acked);
1367         con_out_kvec_add(con, sizeof (con->out_temp_ack),
1368                          &con->out_temp_ack);
1369
1370         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1371 }
1372
1373 /*
1374  * Prepare to write keepalive byte.
1375  */
1376 static void prepare_write_keepalive(struct ceph_connection *con)
1377 {
1378         dout("prepare_write_keepalive %p\n", con);
1379         con_out_kvec_reset(con);
1380         if (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2) {
1381                 struct timespec now = CURRENT_TIME;
1382
1383                 con_out_kvec_add(con, sizeof(tag_keepalive2), &tag_keepalive2);
1384                 ceph_encode_timespec(&con->out_temp_keepalive2, &now);
1385                 con_out_kvec_add(con, sizeof(con->out_temp_keepalive2),
1386                                  &con->out_temp_keepalive2);
1387         } else {
1388                 con_out_kvec_add(con, sizeof(tag_keepalive), &tag_keepalive);
1389         }
1390         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1391 }
1392
1393 /*
1394  * Connection negotiation.
1395  */
1396
1397 static int get_connect_authorizer(struct ceph_connection *con)
1398 {
1399         struct ceph_auth_handshake *auth;
1400         int auth_proto;
1401
1402         if (!con->ops->get_authorizer) {
1403                 con->auth = NULL;
1404                 con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN;
1405                 con->out_connect.authorizer_len = 0;
1406                 return 0;
1407         }
1408
1409         auth = con->ops->get_authorizer(con, &auth_proto, con->auth_retry);
1410         if (IS_ERR(auth))
1411                 return PTR_ERR(auth);
1412
1413         con->auth = auth;
1414         con->out_connect.authorizer_protocol = cpu_to_le32(auth_proto);
1415         con->out_connect.authorizer_len = cpu_to_le32(auth->authorizer_buf_len);
1416         return 0;
1417 }
1418
1419 /*
1420  * We connected to a peer and are saying hello.
1421  */
1422 static void prepare_write_banner(struct ceph_connection *con)
1423 {
1424         con_out_kvec_add(con, strlen(CEPH_BANNER), CEPH_BANNER);
1425         con_out_kvec_add(con, sizeof (con->msgr->my_enc_addr),
1426                                         &con->msgr->my_enc_addr);
1427
1428         con->out_more = 0;
1429         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1430 }
1431
1432 static void __prepare_write_connect(struct ceph_connection *con)
1433 {
1434         con_out_kvec_add(con, sizeof(con->out_connect), &con->out_connect);
1435         if (con->auth)
1436                 con_out_kvec_add(con, con->auth->authorizer_buf_len,
1437                                  con->auth->authorizer_buf);
1438
1439         con->out_more = 0;
1440         con_flag_set(con, CON_FLAG_WRITE_PENDING);
1441 }
1442
1443 static int prepare_write_connect(struct ceph_connection *con)
1444 {
1445         unsigned int global_seq = get_global_seq(con->msgr, 0);
1446         int proto;
1447         int ret;
1448
1449         switch (con->peer_name.type) {
1450         case CEPH_ENTITY_TYPE_MON:
1451                 proto = CEPH_MONC_PROTOCOL;
1452                 break;
1453         case CEPH_ENTITY_TYPE_OSD:
1454                 proto = CEPH_OSDC_PROTOCOL;
1455                 break;
1456         case CEPH_ENTITY_TYPE_MDS:
1457                 proto = CEPH_MDSC_PROTOCOL;
1458                 break;
1459         default:
1460                 BUG();
1461         }
1462
1463         dout("prepare_write_connect %p cseq=%d gseq=%d proto=%d\n", con,
1464              con->connect_seq, global_seq, proto);
1465
1466         con->out_connect.features =
1467             cpu_to_le64(from_msgr(con->msgr)->supported_features);
1468         con->out_connect.host_type = cpu_to_le32(CEPH_ENTITY_TYPE_CLIENT);
1469         con->out_connect.connect_seq = cpu_to_le32(con->connect_seq);
1470         con->out_connect.global_seq = cpu_to_le32(global_seq);
1471         con->out_connect.protocol_version = cpu_to_le32(proto);
1472         con->out_connect.flags = 0;
1473
1474         ret = get_connect_authorizer(con);
1475         if (ret)
1476                 return ret;
1477
1478         __prepare_write_connect(con);
1479         return 0;
1480 }
1481
1482 /*
1483  * write as much of pending kvecs to the socket as we can.
1484  *  1 -> done
1485  *  0 -> socket full, but more to do
1486  * <0 -> error
1487  */
1488 static int write_partial_kvec(struct ceph_connection *con)
1489 {
1490         int ret;
1491
1492         dout("write_partial_kvec %p %d left\n", con, con->out_kvec_bytes);
1493         while (con->out_kvec_bytes > 0) {
1494                 ret = ceph_tcp_sendmsg(con->sock, con->out_kvec_cur,
1495                                        con->out_kvec_left, con->out_kvec_bytes,
1496                                        con->out_more);
1497                 if (ret <= 0)
1498                         goto out;
1499                 con->out_kvec_bytes -= ret;
1500                 if (con->out_kvec_bytes == 0)
1501                         break;            /* done */
1502
1503                 /* account for full iov entries consumed */
1504                 while (ret >= con->out_kvec_cur->iov_len) {
1505                         BUG_ON(!con->out_kvec_left);
1506                         ret -= con->out_kvec_cur->iov_len;
1507                         con->out_kvec_cur++;
1508                         con->out_kvec_left--;
1509                 }
1510                 /* and for a partially-consumed entry */
1511                 if (ret) {
1512                         con->out_kvec_cur->iov_len -= ret;
1513                         con->out_kvec_cur->iov_base += ret;
1514                 }
1515         }
1516         con->out_kvec_left = 0;
1517         ret = 1;
1518 out:
1519         dout("write_partial_kvec %p %d left in %d kvecs ret = %d\n", con,
1520              con->out_kvec_bytes, con->out_kvec_left, ret);
1521         return ret;  /* done! */
1522 }
1523
1524 static u32 ceph_crc32c_page(u32 crc, struct page *page,
1525                                 unsigned int page_offset,
1526                                 unsigned int length)
1527 {
1528         char *kaddr;
1529
1530         kaddr = kmap(page);
1531         BUG_ON(kaddr == NULL);
1532         crc = crc32c(crc, kaddr + page_offset, length);
1533         kunmap(page);
1534
1535         return crc;
1536 }
1537 /*
1538  * Write as much message data payload as we can.  If we finish, queue
1539  * up the footer.
1540  *  1 -> done, footer is now queued in out_kvec[].
1541  *  0 -> socket full, but more to do
1542  * <0 -> error
1543  */
1544 static int write_partial_message_data(struct ceph_connection *con)
1545 {
1546         struct ceph_msg *msg = con->out_msg;
1547         struct ceph_msg_data_cursor *cursor = &msg->cursor;
1548         bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
1549         u32 crc;
1550
1551         dout("%s %p msg %p\n", __func__, con, msg);
1552
1553         if (list_empty(&msg->data))
1554                 return -EINVAL;
1555
1556         /*
1557          * Iterate through each page that contains data to be
1558          * written, and send as much as possible for each.
1559          *
1560          * If we are calculating the data crc (the default), we will
1561          * need to map the page.  If we have no pages, they have
1562          * been revoked, so use the zero page.
1563          */
1564         crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
1565         while (cursor->resid) {
1566                 struct page *page;
1567                 size_t page_offset;
1568                 size_t length;
1569                 bool last_piece;
1570                 bool need_crc;
1571                 int ret;
1572
1573                 page = ceph_msg_data_next(cursor, &page_offset, &length,
1574                                           &last_piece);
1575                 ret = ceph_tcp_sendpage(con->sock, page, page_offset,
1576                                         length, !last_piece);
1577                 if (ret <= 0) {
1578                         if (do_datacrc)
1579                                 msg->footer.data_crc = cpu_to_le32(crc);
1580
1581                         return ret;
1582                 }
1583                 if (do_datacrc && cursor->need_crc)
1584                         crc = ceph_crc32c_page(crc, page, page_offset, length);
1585                 need_crc = ceph_msg_data_advance(cursor, (size_t)ret);
1586         }
1587
1588         dout("%s %p msg %p done\n", __func__, con, msg);
1589
1590         /* prepare and queue up footer, too */
1591         if (do_datacrc)
1592                 msg->footer.data_crc = cpu_to_le32(crc);
1593         else
1594                 msg->footer.flags |= CEPH_MSG_FOOTER_NOCRC;
1595         con_out_kvec_reset(con);
1596         prepare_write_message_footer(con);
1597
1598         return 1;       /* must return > 0 to indicate success */
1599 }
1600
1601 /*
1602  * write some zeros
1603  */
1604 static int write_partial_skip(struct ceph_connection *con)
1605 {
1606         int ret;
1607
1608         dout("%s %p %d left\n", __func__, con, con->out_skip);
1609         while (con->out_skip > 0) {
1610                 size_t size = min(con->out_skip, (int) PAGE_SIZE);
1611
1612                 ret = ceph_tcp_sendpage(con->sock, zero_page, 0, size, true);
1613                 if (ret <= 0)
1614                         goto out;
1615                 con->out_skip -= ret;
1616         }
1617         ret = 1;
1618 out:
1619         return ret;
1620 }
1621
1622 /*
1623  * Prepare to read connection handshake, or an ack.
1624  */
1625 static void prepare_read_banner(struct ceph_connection *con)
1626 {
1627         dout("prepare_read_banner %p\n", con);
1628         con->in_base_pos = 0;
1629 }
1630
1631 static void prepare_read_connect(struct ceph_connection *con)
1632 {
1633         dout("prepare_read_connect %p\n", con);
1634         con->in_base_pos = 0;
1635 }
1636
1637 static void prepare_read_ack(struct ceph_connection *con)
1638 {
1639         dout("prepare_read_ack %p\n", con);
1640         con->in_base_pos = 0;
1641 }
1642
1643 static void prepare_read_seq(struct ceph_connection *con)
1644 {
1645         dout("prepare_read_seq %p\n", con);
1646         con->in_base_pos = 0;
1647         con->in_tag = CEPH_MSGR_TAG_SEQ;
1648 }
1649
1650 static void prepare_read_tag(struct ceph_connection *con)
1651 {
1652         dout("prepare_read_tag %p\n", con);
1653         con->in_base_pos = 0;
1654         con->in_tag = CEPH_MSGR_TAG_READY;
1655 }
1656
1657 static void prepare_read_keepalive_ack(struct ceph_connection *con)
1658 {
1659         dout("prepare_read_keepalive_ack %p\n", con);
1660         con->in_base_pos = 0;
1661 }
1662
1663 /*
1664  * Prepare to read a message.
1665  */
1666 static int prepare_read_message(struct ceph_connection *con)
1667 {
1668         dout("prepare_read_message %p\n", con);
1669         BUG_ON(con->in_msg != NULL);
1670         con->in_base_pos = 0;
1671         con->in_front_crc = con->in_middle_crc = con->in_data_crc = 0;
1672         return 0;
1673 }
1674
1675
1676 static int read_partial(struct ceph_connection *con,
1677                         int end, int size, void *object)
1678 {
1679         while (con->in_base_pos < end) {
1680                 int left = end - con->in_base_pos;
1681                 int have = size - left;
1682                 int ret = ceph_tcp_recvmsg(con->sock, object + have, left);
1683                 if (ret <= 0)
1684                         return ret;
1685                 con->in_base_pos += ret;
1686         }
1687         return 1;
1688 }
1689
1690
1691 /*
1692  * Read all or part of the connect-side handshake on a new connection
1693  */
1694 static int read_partial_banner(struct ceph_connection *con)
1695 {
1696         int size;
1697         int end;
1698         int ret;
1699
1700         dout("read_partial_banner %p at %d\n", con, con->in_base_pos);
1701
1702         /* peer's banner */
1703         size = strlen(CEPH_BANNER);
1704         end = size;
1705         ret = read_partial(con, end, size, con->in_banner);
1706         if (ret <= 0)
1707                 goto out;
1708
1709         size = sizeof (con->actual_peer_addr);
1710         end += size;
1711         ret = read_partial(con, end, size, &con->actual_peer_addr);
1712         if (ret <= 0)
1713                 goto out;
1714
1715         size = sizeof (con->peer_addr_for_me);
1716         end += size;
1717         ret = read_partial(con, end, size, &con->peer_addr_for_me);
1718         if (ret <= 0)
1719                 goto out;
1720
1721 out:
1722         return ret;
1723 }
1724
1725 static int read_partial_connect(struct ceph_connection *con)
1726 {
1727         int size;
1728         int end;
1729         int ret;
1730
1731         dout("read_partial_connect %p at %d\n", con, con->in_base_pos);
1732
1733         size = sizeof (con->in_reply);
1734         end = size;
1735         ret = read_partial(con, end, size, &con->in_reply);
1736         if (ret <= 0)
1737                 goto out;
1738
1739         if (con->auth) {
1740                 size = le32_to_cpu(con->in_reply.authorizer_len);
1741                 if (size > con->auth->authorizer_reply_buf_len) {
1742                         pr_err("authorizer reply too big: %d > %zu\n", size,
1743                                con->auth->authorizer_reply_buf_len);
1744                         ret = -EINVAL;
1745                         goto out;
1746                 }
1747
1748                 end += size;
1749                 ret = read_partial(con, end, size,
1750                                    con->auth->authorizer_reply_buf);
1751                 if (ret <= 0)
1752                         goto out;
1753         }
1754
1755         dout("read_partial_connect %p tag %d, con_seq = %u, g_seq = %u\n",
1756              con, (int)con->in_reply.tag,
1757              le32_to_cpu(con->in_reply.connect_seq),
1758              le32_to_cpu(con->in_reply.global_seq));
1759 out:
1760         return ret;
1761 }
1762
1763 /*
1764  * Verify the hello banner looks okay.
1765  */
1766 static int verify_hello(struct ceph_connection *con)
1767 {
1768         if (memcmp(con->in_banner, CEPH_BANNER, strlen(CEPH_BANNER))) {
1769                 pr_err("connect to %s got bad banner\n",
1770                        ceph_pr_addr(&con->peer_addr.in_addr));
1771                 con->error_msg = "protocol error, bad banner";
1772                 return -1;
1773         }
1774         return 0;
1775 }
1776
1777 static bool addr_is_blank(struct sockaddr_storage *ss)
1778 {
1779         struct in_addr *addr = &((struct sockaddr_in *)ss)->sin_addr;
1780         struct in6_addr *addr6 = &((struct sockaddr_in6 *)ss)->sin6_addr;
1781
1782         switch (ss->ss_family) {
1783         case AF_INET:
1784                 return addr->s_addr == htonl(INADDR_ANY);
1785         case AF_INET6:
1786                 return ipv6_addr_any(addr6);
1787         default:
1788                 return true;
1789         }
1790 }
1791
1792 static int addr_port(struct sockaddr_storage *ss)
1793 {
1794         switch (ss->ss_family) {
1795         case AF_INET:
1796                 return ntohs(((struct sockaddr_in *)ss)->sin_port);
1797         case AF_INET6:
1798                 return ntohs(((struct sockaddr_in6 *)ss)->sin6_port);
1799         }
1800         return 0;
1801 }
1802
1803 static void addr_set_port(struct sockaddr_storage *ss, int p)
1804 {
1805         switch (ss->ss_family) {
1806         case AF_INET:
1807                 ((struct sockaddr_in *)ss)->sin_port = htons(p);
1808                 break;
1809         case AF_INET6:
1810                 ((struct sockaddr_in6 *)ss)->sin6_port = htons(p);
1811                 break;
1812         }
1813 }
1814
1815 /*
1816  * Unlike other *_pton function semantics, zero indicates success.
1817  */
1818 static int ceph_pton(const char *str, size_t len, struct sockaddr_storage *ss,
1819                 char delim, const char **ipend)
1820 {
1821         struct sockaddr_in *in4 = (struct sockaddr_in *) ss;
1822         struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) ss;
1823
1824         memset(ss, 0, sizeof(*ss));
1825
1826         if (in4_pton(str, len, (u8 *)&in4->sin_addr.s_addr, delim, ipend)) {
1827                 ss->ss_family = AF_INET;
1828                 return 0;
1829         }
1830
1831         if (in6_pton(str, len, (u8 *)&in6->sin6_addr.s6_addr, delim, ipend)) {
1832                 ss->ss_family = AF_INET6;
1833                 return 0;
1834         }
1835
1836         return -EINVAL;
1837 }
1838
1839 /*
1840  * Extract hostname string and resolve using kernel DNS facility.
1841  */
1842 #ifdef CONFIG_CEPH_LIB_USE_DNS_RESOLVER
1843 static int ceph_dns_resolve_name(const char *name, size_t namelen,
1844                 struct sockaddr_storage *ss, char delim, const char **ipend)
1845 {
1846         const char *end, *delim_p;
1847         char *colon_p, *ip_addr = NULL;
1848         int ip_len, ret;
1849
1850         /*
1851          * The end of the hostname occurs immediately preceding the delimiter or
1852          * the port marker (':') where the delimiter takes precedence.
1853          */
1854         delim_p = memchr(name, delim, namelen);
1855         colon_p = memchr(name, ':', namelen);
1856
1857         if (delim_p && colon_p)
1858                 end = delim_p < colon_p ? delim_p : colon_p;
1859         else if (!delim_p && colon_p)
1860                 end = colon_p;
1861         else {
1862                 end = delim_p;
1863                 if (!end) /* case: hostname:/ */
1864                         end = name + namelen;
1865         }
1866
1867         if (end <= name)
1868                 return -EINVAL;
1869
1870         /* do dns_resolve upcall */
1871         ip_len = dns_query(NULL, name, end - name, NULL, &ip_addr, NULL);
1872         if (ip_len > 0)
1873                 ret = ceph_pton(ip_addr, ip_len, ss, -1, NULL);
1874         else
1875                 ret = -ESRCH;
1876
1877         kfree(ip_addr);
1878
1879         *ipend = end;
1880
1881         pr_info("resolve '%.*s' (ret=%d): %s\n", (int)(end - name), name,
1882                         ret, ret ? "failed" : ceph_pr_addr(ss));
1883
1884         return ret;
1885 }
1886 #else
1887 static inline int ceph_dns_resolve_name(const char *name, size_t namelen,
1888                 struct sockaddr_storage *ss, char delim, const char **ipend)
1889 {
1890         return -EINVAL;
1891 }
1892 #endif
1893
1894 /*
1895  * Parse a server name (IP or hostname). If a valid IP address is not found
1896  * then try to extract a hostname to resolve using userspace DNS upcall.
1897  */
1898 static int ceph_parse_server_name(const char *name, size_t namelen,
1899                         struct sockaddr_storage *ss, char delim, const char **ipend)
1900 {
1901         int ret;
1902
1903         ret = ceph_pton(name, namelen, ss, delim, ipend);
1904         if (ret)
1905                 ret = ceph_dns_resolve_name(name, namelen, ss, delim, ipend);
1906
1907         return ret;
1908 }
1909
1910 /*
1911  * Parse an ip[:port] list into an addr array.  Use the default
1912  * monitor port if a port isn't specified.
1913  */
1914 int ceph_parse_ips(const char *c, const char *end,
1915                    struct ceph_entity_addr *addr,
1916                    int max_count, int *count)
1917 {
1918         int i, ret = -EINVAL;
1919         const char *p = c;
1920
1921         dout("parse_ips on '%.*s'\n", (int)(end-c), c);
1922         for (i = 0; i < max_count; i++) {
1923                 const char *ipend;
1924                 struct sockaddr_storage *ss = &addr[i].in_addr;
1925                 int port;
1926                 char delim = ',';
1927
1928                 if (*p == '[') {
1929                         delim = ']';
1930                         p++;
1931                 }
1932
1933                 ret = ceph_parse_server_name(p, end - p, ss, delim, &ipend);
1934                 if (ret)
1935                         goto bad;
1936                 ret = -EINVAL;
1937
1938                 p = ipend;
1939
1940                 if (delim == ']') {
1941                         if (*p != ']') {
1942                                 dout("missing matching ']'\n");
1943                                 goto bad;
1944                         }
1945                         p++;
1946                 }
1947
1948                 /* port? */
1949                 if (p < end && *p == ':') {
1950                         port = 0;
1951                         p++;
1952                         while (p < end && *p >= '0' && *p <= '9') {
1953                                 port = (port * 10) + (*p - '0');
1954                                 p++;
1955                         }
1956                         if (port == 0)
1957                                 port = CEPH_MON_PORT;
1958                         else if (port > 65535)
1959                                 goto bad;
1960                 } else {
1961                         port = CEPH_MON_PORT;
1962                 }
1963
1964                 addr_set_port(ss, port);
1965
1966                 dout("parse_ips got %s\n", ceph_pr_addr(ss));
1967
1968                 if (p == end)
1969                         break;
1970                 if (*p != ',')
1971                         goto bad;
1972                 p++;
1973         }
1974
1975         if (p != end)
1976                 goto bad;
1977
1978         if (count)
1979                 *count = i + 1;
1980         return 0;
1981
1982 bad:
1983         pr_err("parse_ips bad ip '%.*s'\n", (int)(end - c), c);
1984         return ret;
1985 }
1986 EXPORT_SYMBOL(ceph_parse_ips);
1987
1988 static int process_banner(struct ceph_connection *con)
1989 {
1990         dout("process_banner on %p\n", con);
1991
1992         if (verify_hello(con) < 0)
1993                 return -1;
1994
1995         ceph_decode_addr(&con->actual_peer_addr);
1996         ceph_decode_addr(&con->peer_addr_for_me);
1997
1998         /*
1999          * Make sure the other end is who we wanted.  note that the other
2000          * end may not yet know their ip address, so if it's 0.0.0.0, give
2001          * them the benefit of the doubt.
2002          */
2003         if (memcmp(&con->peer_addr, &con->actual_peer_addr,
2004                    sizeof(con->peer_addr)) != 0 &&
2005             !(addr_is_blank(&con->actual_peer_addr.in_addr) &&
2006               con->actual_peer_addr.nonce == con->peer_addr.nonce)) {
2007                 pr_warn("wrong peer, want %s/%d, got %s/%d\n",
2008                         ceph_pr_addr(&con->peer_addr.in_addr),
2009                         (int)le32_to_cpu(con->peer_addr.nonce),
2010                         ceph_pr_addr(&con->actual_peer_addr.in_addr),
2011                         (int)le32_to_cpu(con->actual_peer_addr.nonce));
2012                 con->error_msg = "wrong peer at address";
2013                 return -1;
2014         }
2015
2016         /*
2017          * did we learn our address?
2018          */
2019         if (addr_is_blank(&con->msgr->inst.addr.in_addr)) {
2020                 int port = addr_port(&con->msgr->inst.addr.in_addr);
2021
2022                 memcpy(&con->msgr->inst.addr.in_addr,
2023                        &con->peer_addr_for_me.in_addr,
2024                        sizeof(con->peer_addr_for_me.in_addr));
2025                 addr_set_port(&con->msgr->inst.addr.in_addr, port);
2026                 encode_my_addr(con->msgr);
2027                 dout("process_banner learned my addr is %s\n",
2028                      ceph_pr_addr(&con->msgr->inst.addr.in_addr));
2029         }
2030
2031         return 0;
2032 }
2033
2034 static int process_connect(struct ceph_connection *con)
2035 {
2036         u64 sup_feat = from_msgr(con->msgr)->supported_features;
2037         u64 req_feat = from_msgr(con->msgr)->required_features;
2038         u64 server_feat = ceph_sanitize_features(
2039                                 le64_to_cpu(con->in_reply.features));
2040         int ret;
2041
2042         dout("process_connect on %p tag %d\n", con, (int)con->in_tag);
2043
2044         if (con->auth) {
2045                 int len = le32_to_cpu(con->in_reply.authorizer_len);
2046
2047                 /*
2048                  * Any connection that defines ->get_authorizer()
2049                  * should also define ->add_authorizer_challenge() and
2050                  * ->verify_authorizer_reply().
2051                  *
2052                  * See get_connect_authorizer().
2053                  */
2054                 if (con->in_reply.tag == CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER) {
2055                         ret = con->ops->add_authorizer_challenge(
2056                                     con, con->auth->authorizer_reply_buf, len);
2057                         if (ret < 0)
2058                                 return ret;
2059
2060                         con_out_kvec_reset(con);
2061                         __prepare_write_connect(con);
2062                         prepare_read_connect(con);
2063                         return 0;
2064                 }
2065
2066                 if (len) {
2067                         ret = con->ops->verify_authorizer_reply(con);
2068                         if (ret < 0) {
2069                                 con->error_msg = "bad authorize reply";
2070                                 return ret;
2071                         }
2072                 }
2073         }
2074
2075         switch (con->in_reply.tag) {
2076         case CEPH_MSGR_TAG_FEATURES:
2077                 pr_err("%s%lld %s feature set mismatch,"
2078                        " my %llx < server's %llx, missing %llx\n",
2079                        ENTITY_NAME(con->peer_name),
2080                        ceph_pr_addr(&con->peer_addr.in_addr),
2081                        sup_feat, server_feat, server_feat & ~sup_feat);
2082                 con->error_msg = "missing required protocol features";
2083                 reset_connection(con);
2084                 return -1;
2085
2086         case CEPH_MSGR_TAG_BADPROTOVER:
2087                 pr_err("%s%lld %s protocol version mismatch,"
2088                        " my %d != server's %d\n",
2089                        ENTITY_NAME(con->peer_name),
2090                        ceph_pr_addr(&con->peer_addr.in_addr),
2091                        le32_to_cpu(con->out_connect.protocol_version),
2092                        le32_to_cpu(con->in_reply.protocol_version));
2093                 con->error_msg = "protocol version mismatch";
2094                 reset_connection(con);
2095                 return -1;
2096
2097         case CEPH_MSGR_TAG_BADAUTHORIZER:
2098                 con->auth_retry++;
2099                 dout("process_connect %p got BADAUTHORIZER attempt %d\n", con,
2100                      con->auth_retry);
2101                 if (con->auth_retry == 2) {
2102                         con->error_msg = "connect authorization failure";
2103                         return -1;
2104                 }
2105                 con_out_kvec_reset(con);
2106                 ret = prepare_write_connect(con);
2107                 if (ret < 0)
2108                         return ret;
2109                 prepare_read_connect(con);
2110                 break;
2111
2112         case CEPH_MSGR_TAG_RESETSESSION:
2113                 /*
2114                  * If we connected with a large connect_seq but the peer
2115                  * has no record of a session with us (no connection, or
2116                  * connect_seq == 0), they will send RESETSESION to indicate
2117                  * that they must have reset their session, and may have
2118                  * dropped messages.
2119                  */
2120                 dout("process_connect got RESET peer seq %u\n",
2121                      le32_to_cpu(con->in_reply.connect_seq));
2122                 pr_err("%s%lld %s connection reset\n",
2123                        ENTITY_NAME(con->peer_name),
2124                        ceph_pr_addr(&con->peer_addr.in_addr));
2125                 reset_connection(con);
2126                 con_out_kvec_reset(con);
2127                 ret = prepare_write_connect(con);
2128                 if (ret < 0)
2129                         return ret;
2130                 prepare_read_connect(con);
2131
2132                 /* Tell ceph about it. */
2133                 mutex_unlock(&con->mutex);
2134                 pr_info("reset on %s%lld\n", ENTITY_NAME(con->peer_name));
2135                 if (con->ops->peer_reset)
2136                         con->ops->peer_reset(con);
2137                 mutex_lock(&con->mutex);
2138                 if (con->state != CON_STATE_NEGOTIATING)
2139                         return -EAGAIN;
2140                 break;
2141
2142         case CEPH_MSGR_TAG_RETRY_SESSION:
2143                 /*
2144                  * If we sent a smaller connect_seq than the peer has, try
2145                  * again with a larger value.
2146                  */
2147                 dout("process_connect got RETRY_SESSION my seq %u, peer %u\n",
2148                      le32_to_cpu(con->out_connect.connect_seq),
2149                      le32_to_cpu(con->in_reply.connect_seq));
2150                 con->connect_seq = le32_to_cpu(con->in_reply.connect_seq);
2151                 con_out_kvec_reset(con);
2152                 ret = prepare_write_connect(con);
2153                 if (ret < 0)
2154                         return ret;
2155                 prepare_read_connect(con);
2156                 break;
2157
2158         case CEPH_MSGR_TAG_RETRY_GLOBAL:
2159                 /*
2160                  * If we sent a smaller global_seq than the peer has, try
2161                  * again with a larger value.
2162                  */
2163                 dout("process_connect got RETRY_GLOBAL my %u peer_gseq %u\n",
2164                      con->peer_global_seq,
2165                      le32_to_cpu(con->in_reply.global_seq));
2166                 get_global_seq(con->msgr,
2167                                le32_to_cpu(con->in_reply.global_seq));
2168                 con_out_kvec_reset(con);
2169                 ret = prepare_write_connect(con);
2170                 if (ret < 0)
2171                         return ret;
2172                 prepare_read_connect(con);
2173                 break;
2174
2175         case CEPH_MSGR_TAG_SEQ:
2176         case CEPH_MSGR_TAG_READY:
2177                 if (req_feat & ~server_feat) {
2178                         pr_err("%s%lld %s protocol feature mismatch,"
2179                                " my required %llx > server's %llx, need %llx\n",
2180                                ENTITY_NAME(con->peer_name),
2181                                ceph_pr_addr(&con->peer_addr.in_addr),
2182                                req_feat, server_feat, req_feat & ~server_feat);
2183                         con->error_msg = "missing required protocol features";
2184                         reset_connection(con);
2185                         return -1;
2186                 }
2187
2188                 WARN_ON(con->state != CON_STATE_NEGOTIATING);
2189                 con->state = CON_STATE_OPEN;
2190                 con->auth_retry = 0;    /* we authenticated; clear flag */
2191                 con->peer_global_seq = le32_to_cpu(con->in_reply.global_seq);
2192                 con->connect_seq++;
2193                 con->peer_features = server_feat;
2194                 dout("process_connect got READY gseq %d cseq %d (%d)\n",
2195                      con->peer_global_seq,
2196                      le32_to_cpu(con->in_reply.connect_seq),
2197                      con->connect_seq);
2198                 WARN_ON(con->connect_seq !=
2199                         le32_to_cpu(con->in_reply.connect_seq));
2200
2201                 if (con->in_reply.flags & CEPH_MSG_CONNECT_LOSSY)
2202                         con_flag_set(con, CON_FLAG_LOSSYTX);
2203
2204                 con->delay = 0;      /* reset backoff memory */
2205
2206                 if (con->in_reply.tag == CEPH_MSGR_TAG_SEQ) {
2207                         prepare_write_seq(con);
2208                         prepare_read_seq(con);
2209                 } else {
2210                         prepare_read_tag(con);
2211                 }
2212                 break;
2213
2214         case CEPH_MSGR_TAG_WAIT:
2215                 /*
2216                  * If there is a connection race (we are opening
2217                  * connections to each other), one of us may just have
2218                  * to WAIT.  This shouldn't happen if we are the
2219                  * client.
2220                  */
2221                 con->error_msg = "protocol error, got WAIT as client";
2222                 return -1;
2223
2224         default:
2225                 con->error_msg = "protocol error, garbage tag during connect";
2226                 return -1;
2227         }
2228         return 0;
2229 }
2230
2231
2232 /*
2233  * read (part of) an ack
2234  */
2235 static int read_partial_ack(struct ceph_connection *con)
2236 {
2237         int size = sizeof (con->in_temp_ack);
2238         int end = size;
2239
2240         return read_partial(con, end, size, &con->in_temp_ack);
2241 }
2242
2243 /*
2244  * We can finally discard anything that's been acked.
2245  */
2246 static void process_ack(struct ceph_connection *con)
2247 {
2248         struct ceph_msg *m;
2249         u64 ack = le64_to_cpu(con->in_temp_ack);
2250         u64 seq;
2251
2252         while (!list_empty(&con->out_sent)) {
2253                 m = list_first_entry(&con->out_sent, struct ceph_msg,
2254                                      list_head);
2255                 seq = le64_to_cpu(m->hdr.seq);
2256                 if (seq > ack)
2257                         break;
2258                 dout("got ack for seq %llu type %d at %p\n", seq,
2259                      le16_to_cpu(m->hdr.type), m);
2260                 m->ack_stamp = jiffies;
2261                 ceph_msg_remove(m);
2262         }
2263         prepare_read_tag(con);
2264 }
2265
2266
2267 static int read_partial_message_section(struct ceph_connection *con,
2268                                         struct kvec *section,
2269                                         unsigned int sec_len, u32 *crc)
2270 {
2271         int ret, left;
2272
2273         BUG_ON(!section);
2274
2275         while (section->iov_len < sec_len) {
2276                 BUG_ON(section->iov_base == NULL);
2277                 left = sec_len - section->iov_len;
2278                 ret = ceph_tcp_recvmsg(con->sock, (char *)section->iov_base +
2279                                        section->iov_len, left);
2280                 if (ret <= 0)
2281                         return ret;
2282                 section->iov_len += ret;
2283         }
2284         if (section->iov_len == sec_len)
2285                 *crc = crc32c(0, section->iov_base, section->iov_len);
2286
2287         return 1;
2288 }
2289
2290 static int read_partial_msg_data(struct ceph_connection *con)
2291 {
2292         struct ceph_msg *msg = con->in_msg;
2293         struct ceph_msg_data_cursor *cursor = &msg->cursor;
2294         bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
2295         struct page *page;
2296         size_t page_offset;
2297         size_t length;
2298         u32 crc = 0;
2299         int ret;
2300
2301         BUG_ON(!msg);
2302         if (list_empty(&msg->data))
2303                 return -EIO;
2304
2305         if (do_datacrc)
2306                 crc = con->in_data_crc;
2307         while (cursor->resid) {
2308                 page = ceph_msg_data_next(cursor, &page_offset, &length, NULL);
2309                 ret = ceph_tcp_recvpage(con->sock, page, page_offset, length);
2310                 if (ret <= 0) {
2311                         if (do_datacrc)
2312                                 con->in_data_crc = crc;
2313
2314                         return ret;
2315                 }
2316
2317                 if (do_datacrc)
2318                         crc = ceph_crc32c_page(crc, page, page_offset, ret);
2319                 (void) ceph_msg_data_advance(cursor, (size_t)ret);
2320         }
2321         if (do_datacrc)
2322                 con->in_data_crc = crc;
2323
2324         return 1;       /* must return > 0 to indicate success */
2325 }
2326
2327 /*
2328  * read (part of) a message.
2329  */
2330 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2331
2332 static int read_partial_message(struct ceph_connection *con)
2333 {
2334         struct ceph_msg *m = con->in_msg;
2335         int size;
2336         int end;
2337         int ret;
2338         unsigned int front_len, middle_len, data_len;
2339         bool do_datacrc = !ceph_test_opt(from_msgr(con->msgr), NOCRC);
2340         bool need_sign = (con->peer_features & CEPH_FEATURE_MSG_AUTH);
2341         u64 seq;
2342         u32 crc;
2343
2344         dout("read_partial_message con %p msg %p\n", con, m);
2345
2346         /* header */
2347         size = sizeof (con->in_hdr);
2348         end = size;
2349         ret = read_partial(con, end, size, &con->in_hdr);
2350         if (ret <= 0)
2351                 return ret;
2352
2353         crc = crc32c(0, &con->in_hdr, offsetof(struct ceph_msg_header, crc));
2354         if (cpu_to_le32(crc) != con->in_hdr.crc) {
2355                 pr_err("read_partial_message bad hdr crc %u != expected %u\n",
2356                        crc, con->in_hdr.crc);
2357                 return -EBADMSG;
2358         }
2359
2360         front_len = le32_to_cpu(con->in_hdr.front_len);
2361         if (front_len > CEPH_MSG_MAX_FRONT_LEN)
2362                 return -EIO;
2363         middle_len = le32_to_cpu(con->in_hdr.middle_len);
2364         if (middle_len > CEPH_MSG_MAX_MIDDLE_LEN)
2365                 return -EIO;
2366         data_len = le32_to_cpu(con->in_hdr.data_len);
2367         if (data_len > CEPH_MSG_MAX_DATA_LEN)
2368                 return -EIO;
2369
2370         /* verify seq# */
2371         seq = le64_to_cpu(con->in_hdr.seq);
2372         if ((s64)seq - (s64)con->in_seq < 1) {
2373                 pr_info("skipping %s%lld %s seq %lld expected %lld\n",
2374                         ENTITY_NAME(con->peer_name),
2375                         ceph_pr_addr(&con->peer_addr.in_addr),
2376                         seq, con->in_seq + 1);
2377                 con->in_base_pos = -front_len - middle_len - data_len -
2378                         sizeof_footer(con);
2379                 con->in_tag = CEPH_MSGR_TAG_READY;
2380                 return 1;
2381         } else if ((s64)seq - (s64)con->in_seq > 1) {
2382                 pr_err("read_partial_message bad seq %lld expected %lld\n",
2383                        seq, con->in_seq + 1);
2384                 con->error_msg = "bad message sequence # for incoming message";
2385                 return -EBADE;
2386         }
2387
2388         /* allocate message? */
2389         if (!con->in_msg) {
2390                 int skip = 0;
2391
2392                 dout("got hdr type %d front %d data %d\n", con->in_hdr.type,
2393                      front_len, data_len);
2394                 ret = ceph_con_in_msg_alloc(con, &skip);
2395                 if (ret < 0)
2396                         return ret;
2397
2398                 BUG_ON(!con->in_msg ^ skip);
2399                 if (skip) {
2400                         /* skip this message */
2401                         dout("alloc_msg said skip message\n");
2402                         con->in_base_pos = -front_len - middle_len - data_len -
2403                                 sizeof_footer(con);
2404                         con->in_tag = CEPH_MSGR_TAG_READY;
2405                         con->in_seq++;
2406                         return 1;
2407                 }
2408
2409                 BUG_ON(!con->in_msg);
2410                 BUG_ON(con->in_msg->con != con);
2411                 m = con->in_msg;
2412                 m->front.iov_len = 0;    /* haven't read it yet */
2413                 if (m->middle)
2414                         m->middle->vec.iov_len = 0;
2415
2416                 /* prepare for data payload, if any */
2417
2418                 if (data_len)
2419                         prepare_message_data(con->in_msg, data_len);
2420         }
2421
2422         /* front */
2423         ret = read_partial_message_section(con, &m->front, front_len,
2424                                            &con->in_front_crc);
2425         if (ret <= 0)
2426                 return ret;
2427
2428         /* middle */
2429         if (m->middle) {
2430                 ret = read_partial_message_section(con, &m->middle->vec,
2431                                                    middle_len,
2432                                                    &con->in_middle_crc);
2433                 if (ret <= 0)
2434                         return ret;
2435         }
2436
2437         /* (page) data */
2438         if (data_len) {
2439                 ret = read_partial_msg_data(con);
2440                 if (ret <= 0)
2441                         return ret;
2442         }
2443
2444         /* footer */
2445         size = sizeof_footer(con);
2446         end += size;
2447         ret = read_partial(con, end, size, &m->footer);
2448         if (ret <= 0)
2449                 return ret;
2450
2451         if (!need_sign) {
2452                 m->footer.flags = m->old_footer.flags;
2453                 m->footer.sig = 0;
2454         }
2455
2456         dout("read_partial_message got msg %p %d (%u) + %d (%u) + %d (%u)\n",
2457              m, front_len, m->footer.front_crc, middle_len,
2458              m->footer.middle_crc, data_len, m->footer.data_crc);
2459
2460         /* crc ok? */
2461         if (con->in_front_crc != le32_to_cpu(m->footer.front_crc)) {
2462                 pr_err("read_partial_message %p front crc %u != exp. %u\n",
2463                        m, con->in_front_crc, m->footer.front_crc);
2464                 return -EBADMSG;
2465         }
2466         if (con->in_middle_crc != le32_to_cpu(m->footer.middle_crc)) {
2467                 pr_err("read_partial_message %p middle crc %u != exp %u\n",
2468                        m, con->in_middle_crc, m->footer.middle_crc);
2469                 return -EBADMSG;
2470         }
2471         if (do_datacrc &&
2472             (m->footer.flags & CEPH_MSG_FOOTER_NOCRC) == 0 &&
2473             con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
2474                 pr_err("read_partial_message %p data crc %u != exp. %u\n", m,
2475                        con->in_data_crc, le32_to_cpu(m->footer.data_crc));
2476                 return -EBADMSG;
2477         }
2478
2479         if (need_sign && con->ops->check_message_signature &&
2480             con->ops->check_message_signature(m)) {
2481                 pr_err("read_partial_message %p signature check failed\n", m);
2482                 return -EBADMSG;
2483         }
2484
2485         return 1; /* done! */
2486 }
2487
2488 /*
2489  * Process message.  This happens in the worker thread.  The callback should
2490  * be careful not to do anything that waits on other incoming messages or it
2491  * may deadlock.
2492  */
2493 static void process_message(struct ceph_connection *con)
2494 {
2495         struct ceph_msg *msg = con->in_msg;
2496
2497         BUG_ON(con->in_msg->con != con);
2498         con->in_msg = NULL;
2499
2500         /* if first message, set peer_name */
2501         if (con->peer_name.type == 0)
2502                 con->peer_name = msg->hdr.src;
2503
2504         con->in_seq++;
2505         mutex_unlock(&con->mutex);
2506
2507         dout("===== %p %llu from %s%lld %d=%s len %d+%d (%u %u %u) =====\n",
2508              msg, le64_to_cpu(msg->hdr.seq),
2509              ENTITY_NAME(msg->hdr.src),
2510              le16_to_cpu(msg->hdr.type),
2511              ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
2512              le32_to_cpu(msg->hdr.front_len),
2513              le32_to_cpu(msg->hdr.data_len),
2514              con->in_front_crc, con->in_middle_crc, con->in_data_crc);
2515         con->ops->dispatch(con, msg);
2516
2517         mutex_lock(&con->mutex);
2518 }
2519
2520 static int read_keepalive_ack(struct ceph_connection *con)
2521 {
2522         struct ceph_timespec ceph_ts;
2523         size_t size = sizeof(ceph_ts);
2524         int ret = read_partial(con, size, size, &ceph_ts);
2525         if (ret <= 0)
2526                 return ret;
2527         ceph_decode_timespec(&con->last_keepalive_ack, &ceph_ts);
2528         prepare_read_tag(con);
2529         return 1;
2530 }
2531
2532 /*
2533  * Write something to the socket.  Called in a worker thread when the
2534  * socket appears to be writeable and we have something ready to send.
2535  */
2536 static int try_write(struct ceph_connection *con)
2537 {
2538         int ret = 1;
2539
2540         dout("try_write start %p state %lu\n", con, con->state);
2541         if (con->state != CON_STATE_PREOPEN &&
2542             con->state != CON_STATE_CONNECTING &&
2543             con->state != CON_STATE_NEGOTIATING &&
2544             con->state != CON_STATE_OPEN)
2545                 return 0;
2546
2547 more:
2548         dout("try_write out_kvec_bytes %d\n", con->out_kvec_bytes);
2549
2550         /* open the socket first? */
2551         if (con->state == CON_STATE_PREOPEN) {
2552                 BUG_ON(con->sock);
2553                 con->state = CON_STATE_CONNECTING;
2554
2555                 con_out_kvec_reset(con);
2556                 prepare_write_banner(con);
2557                 prepare_read_banner(con);
2558
2559                 BUG_ON(con->in_msg);
2560                 con->in_tag = CEPH_MSGR_TAG_READY;
2561                 dout("try_write initiating connect on %p new state %lu\n",
2562                      con, con->state);
2563                 ret = ceph_tcp_connect(con);
2564                 if (ret < 0) {
2565                         con->error_msg = "connect error";
2566                         goto out;
2567                 }
2568         }
2569
2570 more_kvec:
2571         BUG_ON(!con->sock);
2572
2573         /* kvec data queued? */
2574         if (con->out_kvec_left) {
2575                 ret = write_partial_kvec(con);
2576                 if (ret <= 0)
2577                         goto out;
2578         }
2579         if (con->out_skip) {
2580                 ret = write_partial_skip(con);
2581                 if (ret <= 0)
2582                         goto out;
2583         }
2584
2585         /* msg pages? */
2586         if (con->out_msg) {
2587                 if (con->out_msg_done) {
2588                         ceph_msg_put(con->out_msg);
2589                         con->out_msg = NULL;   /* we're done with this one */
2590                         goto do_next;
2591                 }
2592
2593                 ret = write_partial_message_data(con);
2594                 if (ret == 1)
2595                         goto more_kvec;  /* we need to send the footer, too! */
2596                 if (ret == 0)
2597                         goto out;
2598                 if (ret < 0) {
2599                         dout("try_write write_partial_message_data err %d\n",
2600                              ret);
2601                         goto out;
2602                 }
2603         }
2604
2605 do_next:
2606         if (con->state == CON_STATE_OPEN) {
2607                 if (con_flag_test_and_clear(con, CON_FLAG_KEEPALIVE_PENDING)) {
2608                         prepare_write_keepalive(con);
2609                         goto more;
2610                 }
2611                 /* is anything else pending? */
2612                 if (!list_empty(&con->out_queue)) {
2613                         prepare_write_message(con);
2614                         goto more;
2615                 }
2616                 if (con->in_seq > con->in_seq_acked) {
2617                         prepare_write_ack(con);
2618                         goto more;
2619                 }
2620         }
2621
2622         /* Nothing to do! */
2623         con_flag_clear(con, CON_FLAG_WRITE_PENDING);
2624         dout("try_write nothing else to write.\n");
2625         ret = 0;
2626 out:
2627         dout("try_write done on %p ret %d\n", con, ret);
2628         return ret;
2629 }
2630
2631
2632
2633 /*
2634  * Read what we can from the socket.
2635  */
2636 static int try_read(struct ceph_connection *con)
2637 {
2638         int ret = -1;
2639
2640 more:
2641         dout("try_read start on %p state %lu\n", con, con->state);
2642         if (con->state != CON_STATE_CONNECTING &&
2643             con->state != CON_STATE_NEGOTIATING &&
2644             con->state != CON_STATE_OPEN)
2645                 return 0;
2646
2647         BUG_ON(!con->sock);
2648
2649         dout("try_read tag %d in_base_pos %d\n", (int)con->in_tag,
2650              con->in_base_pos);
2651
2652         if (con->state == CON_STATE_CONNECTING) {
2653                 dout("try_read connecting\n");
2654                 ret = read_partial_banner(con);
2655                 if (ret <= 0)
2656                         goto out;
2657                 ret = process_banner(con);
2658                 if (ret < 0)
2659                         goto out;
2660
2661                 con->state = CON_STATE_NEGOTIATING;
2662
2663                 /*
2664                  * Received banner is good, exchange connection info.
2665                  * Do not reset out_kvec, as sending our banner raced
2666                  * with receiving peer banner after connect completed.
2667                  */
2668                 ret = prepare_write_connect(con);
2669                 if (ret < 0)
2670                         goto out;
2671                 prepare_read_connect(con);
2672
2673                 /* Send connection info before awaiting response */
2674                 goto out;
2675         }
2676
2677         if (con->state == CON_STATE_NEGOTIATING) {
2678                 dout("try_read negotiating\n");
2679                 ret = read_partial_connect(con);
2680                 if (ret <= 0)
2681                         goto out;
2682                 ret = process_connect(con);
2683                 if (ret < 0)
2684                         goto out;
2685                 goto more;
2686         }
2687
2688         WARN_ON(con->state != CON_STATE_OPEN);
2689
2690         if (con->in_base_pos < 0) {
2691                 /*
2692                  * skipping + discarding content.
2693                  *
2694                  * FIXME: there must be a better way to do this!
2695                  */
2696                 static char buf[SKIP_BUF_SIZE];
2697                 int skip = min((int) sizeof (buf), -con->in_base_pos);
2698
2699                 dout("skipping %d / %d bytes\n", skip, -con->in_base_pos);
2700                 ret = ceph_tcp_recvmsg(con->sock, buf, skip);
2701                 if (ret <= 0)
2702                         goto out;
2703                 con->in_base_pos += ret;
2704                 if (con->in_base_pos)
2705                         goto more;
2706         }
2707         if (con->in_tag == CEPH_MSGR_TAG_READY) {
2708                 /*
2709                  * what's next?
2710                  */
2711                 ret = ceph_tcp_recvmsg(con->sock, &con->in_tag, 1);
2712                 if (ret <= 0)
2713                         goto out;
2714                 dout("try_read got tag %d\n", (int)con->in_tag);
2715                 switch (con->in_tag) {
2716                 case CEPH_MSGR_TAG_MSG:
2717                         prepare_read_message(con);
2718                         break;
2719                 case CEPH_MSGR_TAG_ACK:
2720                         prepare_read_ack(con);
2721                         break;
2722                 case CEPH_MSGR_TAG_KEEPALIVE2_ACK:
2723                         prepare_read_keepalive_ack(con);
2724                         break;
2725                 case CEPH_MSGR_TAG_CLOSE:
2726                         con_close_socket(con);
2727                         con->state = CON_STATE_CLOSED;
2728                         goto out;
2729                 default:
2730                         goto bad_tag;
2731                 }
2732         }
2733         if (con->in_tag == CEPH_MSGR_TAG_MSG) {
2734                 ret = read_partial_message(con);
2735                 if (ret <= 0) {
2736                         switch (ret) {
2737                         case -EBADMSG:
2738                                 con->error_msg = "bad crc/signature";
2739                                 /* fall through */
2740                         case -EBADE:
2741                                 ret = -EIO;
2742                                 break;
2743                         case -EIO:
2744                                 con->error_msg = "io error";
2745                                 break;
2746                         }
2747                         goto out;
2748                 }
2749                 if (con->in_tag == CEPH_MSGR_TAG_READY)
2750                         goto more;
2751                 process_message(con);
2752                 if (con->state == CON_STATE_OPEN)
2753                         prepare_read_tag(con);
2754                 goto more;
2755         }
2756         if (con->in_tag == CEPH_MSGR_TAG_ACK ||
2757             con->in_tag == CEPH_MSGR_TAG_SEQ) {
2758                 /*
2759                  * the final handshake seq exchange is semantically
2760                  * equivalent to an ACK
2761                  */
2762                 ret = read_partial_ack(con);
2763                 if (ret <= 0)
2764                         goto out;
2765                 process_ack(con);
2766                 goto more;
2767         }
2768         if (con->in_tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) {
2769                 ret = read_keepalive_ack(con);
2770                 if (ret <= 0)
2771                         goto out;
2772                 goto more;
2773         }
2774
2775 out:
2776         dout("try_read done on %p ret %d\n", con, ret);
2777         return ret;
2778
2779 bad_tag:
2780         pr_err("try_read bad con->in_tag = %d\n", (int)con->in_tag);
2781         con->error_msg = "protocol error, garbage tag";
2782         ret = -1;
2783         goto out;
2784 }
2785
2786
2787 /*
2788  * Atomically queue work on a connection after the specified delay.
2789  * Bump @con reference to avoid races with connection teardown.
2790  * Returns 0 if work was queued, or an error code otherwise.
2791  */
2792 static int queue_con_delay(struct ceph_connection *con, unsigned long delay)
2793 {
2794         if (!con->ops->get(con)) {
2795                 dout("%s %p ref count 0\n", __func__, con);
2796                 return -ENOENT;
2797         }
2798
2799         if (!queue_delayed_work(ceph_msgr_wq, &con->work, delay)) {
2800                 dout("%s %p - already queued\n", __func__, con);
2801                 con->ops->put(con);
2802                 return -EBUSY;
2803         }
2804
2805         dout("%s %p %lu\n", __func__, con, delay);
2806         return 0;
2807 }
2808
2809 static void queue_con(struct ceph_connection *con)
2810 {
2811         (void) queue_con_delay(con, 0);
2812 }
2813
2814 static void cancel_con(struct ceph_connection *con)
2815 {
2816         if (cancel_delayed_work(&con->work)) {
2817                 dout("%s %p\n", __func__, con);
2818                 con->ops->put(con);
2819         }
2820 }
2821
2822 static bool con_sock_closed(struct ceph_connection *con)
2823 {
2824         if (!con_flag_test_and_clear(con, CON_FLAG_SOCK_CLOSED))
2825                 return false;
2826
2827 #define CASE(x)                                                         \
2828         case CON_STATE_ ## x:                                           \
2829                 con->error_msg = "socket closed (con state " #x ")";    \
2830                 break;
2831
2832         switch (con->state) {
2833         CASE(CLOSED);
2834         CASE(PREOPEN);
2835         CASE(CONNECTING);
2836         CASE(NEGOTIATING);
2837         CASE(OPEN);
2838         CASE(STANDBY);
2839         default:
2840                 pr_warn("%s con %p unrecognized state %lu\n",
2841                         __func__, con, con->state);
2842                 con->error_msg = "unrecognized con state";
2843                 BUG();
2844                 break;
2845         }
2846 #undef CASE
2847
2848         return true;
2849 }
2850
2851 static bool con_backoff(struct ceph_connection *con)
2852 {
2853         int ret;
2854
2855         if (!con_flag_test_and_clear(con, CON_FLAG_BACKOFF))
2856                 return false;
2857
2858         ret = queue_con_delay(con, round_jiffies_relative(con->delay));
2859         if (ret) {
2860                 dout("%s: con %p FAILED to back off %lu\n", __func__,
2861                         con, con->delay);
2862                 BUG_ON(ret == -ENOENT);
2863                 con_flag_set(con, CON_FLAG_BACKOFF);
2864         }
2865
2866         return true;
2867 }
2868
2869 /* Finish fault handling; con->mutex must *not* be held here */
2870
2871 static void con_fault_finish(struct ceph_connection *con)
2872 {
2873         dout("%s %p\n", __func__, con);
2874
2875         /*
2876          * in case we faulted due to authentication, invalidate our
2877          * current tickets so that we can get new ones.
2878          */
2879         if (con->auth_retry) {
2880                 dout("auth_retry %d, invalidating\n", con->auth_retry);
2881                 if (con->ops->invalidate_authorizer)
2882                         con->ops->invalidate_authorizer(con);
2883                 con->auth_retry = 0;
2884         }
2885
2886         if (con->ops->fault)
2887                 con->ops->fault(con);
2888 }
2889
2890 /*
2891  * Do some work on a connection.  Drop a connection ref when we're done.
2892  */
2893 static void ceph_con_workfn(struct work_struct *work)
2894 {
2895         struct ceph_connection *con = container_of(work, struct ceph_connection,
2896                                                    work.work);
2897         bool fault;
2898
2899         mutex_lock(&con->mutex);
2900         while (true) {
2901                 int ret;
2902
2903                 if ((fault = con_sock_closed(con))) {
2904                         dout("%s: con %p SOCK_CLOSED\n", __func__, con);
2905                         break;
2906                 }
2907                 if (con_backoff(con)) {
2908                         dout("%s: con %p BACKOFF\n", __func__, con);
2909                         break;
2910                 }
2911                 if (con->state == CON_STATE_STANDBY) {
2912                         dout("%s: con %p STANDBY\n", __func__, con);
2913                         break;
2914                 }
2915                 if (con->state == CON_STATE_CLOSED) {
2916                         dout("%s: con %p CLOSED\n", __func__, con);
2917                         BUG_ON(con->sock);
2918                         break;
2919                 }
2920                 if (con->state == CON_STATE_PREOPEN) {
2921                         dout("%s: con %p PREOPEN\n", __func__, con);
2922                         BUG_ON(con->sock);
2923                 }
2924
2925                 ret = try_read(con);
2926                 if (ret < 0) {
2927                         if (ret == -EAGAIN)
2928                                 continue;
2929                         if (!con->error_msg)
2930                                 con->error_msg = "socket error on read";
2931                         fault = true;
2932                         break;
2933                 }
2934
2935                 ret = try_write(con);
2936                 if (ret < 0) {
2937                         if (ret == -EAGAIN)
2938                                 continue;
2939                         if (!con->error_msg)
2940                                 con->error_msg = "socket error on write";
2941                         fault = true;
2942                 }
2943
2944                 break;  /* If we make it to here, we're done */
2945         }
2946         if (fault)
2947                 con_fault(con);
2948         mutex_unlock(&con->mutex);
2949
2950         if (fault)
2951                 con_fault_finish(con);
2952
2953         con->ops->put(con);
2954 }
2955
2956 /*
2957  * Generic error/fault handler.  A retry mechanism is used with
2958  * exponential backoff
2959  */
2960 static void con_fault(struct ceph_connection *con)
2961 {
2962         dout("fault %p state %lu to peer %s\n",
2963              con, con->state, ceph_pr_addr(&con->peer_addr.in_addr));
2964
2965         pr_warn("%s%lld %s %s\n", ENTITY_NAME(con->peer_name),
2966                 ceph_pr_addr(&con->peer_addr.in_addr), con->error_msg);
2967         con->error_msg = NULL;
2968
2969         WARN_ON(con->state != CON_STATE_CONNECTING &&
2970                con->state != CON_STATE_NEGOTIATING &&
2971                con->state != CON_STATE_OPEN);
2972
2973         con_close_socket(con);
2974
2975         if (con_flag_test(con, CON_FLAG_LOSSYTX)) {
2976                 dout("fault on LOSSYTX channel, marking CLOSED\n");
2977                 con->state = CON_STATE_CLOSED;
2978                 return;
2979         }
2980
2981         if (con->in_msg) {
2982                 BUG_ON(con->in_msg->con != con);
2983                 ceph_msg_put(con->in_msg);
2984                 con->in_msg = NULL;
2985         }
2986         if (con->out_msg) {
2987                 BUG_ON(con->out_msg->con != con);
2988                 ceph_msg_put(con->out_msg);
2989                 con->out_msg = NULL;
2990         }
2991
2992         /* Requeue anything that hasn't been acked */
2993         list_splice_init(&con->out_sent, &con->out_queue);
2994
2995         /* If there are no messages queued or keepalive pending, place
2996          * the connection in a STANDBY state */
2997         if (list_empty(&con->out_queue) &&
2998             !con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING)) {
2999                 dout("fault %p setting STANDBY clearing WRITE_PENDING\n", con);
3000                 con_flag_clear(con, CON_FLAG_WRITE_PENDING);
3001                 con->state = CON_STATE_STANDBY;
3002         } else {
3003                 /* retry after a delay. */
3004                 con->state = CON_STATE_PREOPEN;
3005                 if (con->delay == 0)
3006                         con->delay = BASE_DELAY_INTERVAL;
3007                 else if (con->delay < MAX_DELAY_INTERVAL)
3008                         con->delay *= 2;
3009                 con_flag_set(con, CON_FLAG_BACKOFF);
3010                 queue_con(con);
3011         }
3012 }
3013
3014
3015
3016 /*
3017  * initialize a new messenger instance
3018  */
3019 void ceph_messenger_init(struct ceph_messenger *msgr,
3020                          struct ceph_entity_addr *myaddr)
3021 {
3022         spin_lock_init(&msgr->global_seq_lock);
3023
3024         if (myaddr)
3025                 msgr->inst.addr = *myaddr;
3026
3027         /* select a random nonce */
3028         msgr->inst.addr.type = 0;
3029         get_random_bytes(&msgr->inst.addr.nonce, sizeof(msgr->inst.addr.nonce));
3030         encode_my_addr(msgr);
3031
3032         atomic_set(&msgr->stopping, 0);
3033         write_pnet(&msgr->net, get_net(current->nsproxy->net_ns));
3034
3035         dout("%s %p\n", __func__, msgr);
3036 }
3037 EXPORT_SYMBOL(ceph_messenger_init);
3038
3039 void ceph_messenger_fini(struct ceph_messenger *msgr)
3040 {
3041         put_net(read_pnet(&msgr->net));
3042 }
3043 EXPORT_SYMBOL(ceph_messenger_fini);
3044
3045 static void msg_con_set(struct ceph_msg *msg, struct ceph_connection *con)
3046 {
3047         if (msg->con)
3048                 msg->con->ops->put(msg->con);
3049
3050         msg->con = con ? con->ops->get(con) : NULL;
3051         BUG_ON(msg->con != con);
3052 }
3053
3054 static void clear_standby(struct ceph_connection *con)
3055 {
3056         /* come back from STANDBY? */
3057         if (con->state == CON_STATE_STANDBY) {
3058                 dout("clear_standby %p and ++connect_seq\n", con);
3059                 con->state = CON_STATE_PREOPEN;
3060                 con->connect_seq++;
3061                 WARN_ON(con_flag_test(con, CON_FLAG_WRITE_PENDING));
3062                 WARN_ON(con_flag_test(con, CON_FLAG_KEEPALIVE_PENDING));
3063         }
3064 }
3065
3066 /*
3067  * Queue up an outgoing message on the given connection.
3068  */
3069 void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg)
3070 {
3071         /* set src+dst */
3072         msg->hdr.src = con->msgr->inst.name;
3073         BUG_ON(msg->front.iov_len != le32_to_cpu(msg->hdr.front_len));
3074         msg->needs_out_seq = true;
3075
3076         mutex_lock(&con->mutex);
3077
3078         if (con->state == CON_STATE_CLOSED) {
3079                 dout("con_send %p closed, dropping %p\n", con, msg);
3080                 ceph_msg_put(msg);
3081                 mutex_unlock(&con->mutex);
3082                 return;
3083         }
3084
3085         msg_con_set(msg, con);
3086
3087         BUG_ON(!list_empty(&msg->list_head));
3088         list_add_tail(&msg->list_head, &con->out_queue);
3089         dout("----- %p to %s%lld %d=%s len %d+%d+%d -----\n", msg,
3090              ENTITY_NAME(con->peer_name), le16_to_cpu(msg->hdr.type),
3091              ceph_msg_type_name(le16_to_cpu(msg->hdr.type)),
3092              le32_to_cpu(msg->hdr.front_len),
3093              le32_to_cpu(msg->hdr.middle_len),
3094              le32_to_cpu(msg->hdr.data_len));
3095
3096         clear_standby(con);
3097         mutex_unlock(&con->mutex);
3098
3099         /* if there wasn't anything waiting to send before, queue
3100          * new work */
3101         if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
3102                 queue_con(con);
3103 }
3104 EXPORT_SYMBOL(ceph_con_send);
3105
3106 /*
3107  * Revoke a message that was previously queued for send
3108  */
3109 void ceph_msg_revoke(struct ceph_msg *msg)
3110 {
3111         struct ceph_connection *con = msg->con;
3112
3113         if (!con) {
3114                 dout("%s msg %p null con\n", __func__, msg);
3115                 return;         /* Message not in our possession */
3116         }
3117
3118         mutex_lock(&con->mutex);
3119         if (!list_empty(&msg->list_head)) {
3120                 dout("%s %p msg %p - was on queue\n", __func__, con, msg);
3121                 list_del_init(&msg->list_head);
3122                 msg->hdr.seq = 0;
3123
3124                 ceph_msg_put(msg);
3125         }
3126         if (con->out_msg == msg) {
3127                 BUG_ON(con->out_skip);
3128                 /* footer */
3129                 if (con->out_msg_done) {
3130                         con->out_skip += con_out_kvec_skip(con);
3131                 } else {
3132                         BUG_ON(!msg->data_length);
3133                         con->out_skip += sizeof_footer(con);
3134                 }
3135                 /* data, middle, front */
3136                 if (msg->data_length)
3137                         con->out_skip += msg->cursor.total_resid;
3138                 if (msg->middle)
3139                         con->out_skip += con_out_kvec_skip(con);
3140                 con->out_skip += con_out_kvec_skip(con);
3141
3142                 dout("%s %p msg %p - was sending, will write %d skip %d\n",
3143                      __func__, con, msg, con->out_kvec_bytes, con->out_skip);
3144                 msg->hdr.seq = 0;
3145                 con->out_msg = NULL;
3146                 ceph_msg_put(msg);
3147         }
3148
3149         mutex_unlock(&con->mutex);
3150 }
3151
3152 /*
3153  * Revoke a message that we may be reading data into
3154  */
3155 void ceph_msg_revoke_incoming(struct ceph_msg *msg)
3156 {
3157         struct ceph_connection *con = msg->con;
3158
3159         if (!con) {
3160                 dout("%s msg %p null con\n", __func__, msg);
3161                 return;         /* Message not in our possession */
3162         }
3163
3164         mutex_lock(&con->mutex);
3165         if (con->in_msg == msg) {
3166                 unsigned int front_len = le32_to_cpu(con->in_hdr.front_len);
3167                 unsigned int middle_len = le32_to_cpu(con->in_hdr.middle_len);
3168                 unsigned int data_len = le32_to_cpu(con->in_hdr.data_len);
3169
3170                 /* skip rest of message */
3171                 dout("%s %p msg %p revoked\n", __func__, con, msg);
3172                 con->in_base_pos = con->in_base_pos -
3173                                 sizeof(struct ceph_msg_header) -
3174                                 front_len -
3175                                 middle_len -
3176                                 data_len -
3177                                 sizeof(struct ceph_msg_footer);
3178                 ceph_msg_put(con->in_msg);
3179                 con->in_msg = NULL;
3180                 con->in_tag = CEPH_MSGR_TAG_READY;
3181                 con->in_seq++;
3182         } else {
3183                 dout("%s %p in_msg %p msg %p no-op\n",
3184                      __func__, con, con->in_msg, msg);
3185         }
3186         mutex_unlock(&con->mutex);
3187 }
3188
3189 /*
3190  * Queue a keepalive byte to ensure the tcp connection is alive.
3191  */
3192 void ceph_con_keepalive(struct ceph_connection *con)
3193 {
3194         dout("con_keepalive %p\n", con);
3195         mutex_lock(&con->mutex);
3196         clear_standby(con);
3197         con_flag_set(con, CON_FLAG_KEEPALIVE_PENDING);
3198         mutex_unlock(&con->mutex);
3199
3200         if (con_flag_test_and_set(con, CON_FLAG_WRITE_PENDING) == 0)
3201                 queue_con(con);
3202 }
3203 EXPORT_SYMBOL(ceph_con_keepalive);
3204
3205 bool ceph_con_keepalive_expired(struct ceph_connection *con,
3206                                unsigned long interval)
3207 {
3208         if (interval > 0 &&
3209             (con->peer_features & CEPH_FEATURE_MSGR_KEEPALIVE2)) {
3210                 struct timespec now = CURRENT_TIME;
3211                 struct timespec ts;
3212                 jiffies_to_timespec(interval, &ts);
3213                 ts = timespec_add(con->last_keepalive_ack, ts);
3214                 return timespec_compare(&now, &ts) >= 0;
3215         }
3216         return false;
3217 }
3218
3219 static struct ceph_msg_data *ceph_msg_data_create(enum ceph_msg_data_type type)
3220 {
3221         struct ceph_msg_data *data;
3222
3223         if (WARN_ON(!ceph_msg_data_type_valid(type)))
3224                 return NULL;
3225
3226         data = kmem_cache_zalloc(ceph_msg_data_cache, GFP_NOFS);
3227         if (data)
3228                 data->type = type;
3229         INIT_LIST_HEAD(&data->links);
3230
3231         return data;
3232 }
3233
3234 static void ceph_msg_data_destroy(struct ceph_msg_data *data)
3235 {
3236         if (!data)
3237                 return;
3238
3239         WARN_ON(!list_empty(&data->links));
3240         if (data->type == CEPH_MSG_DATA_PAGELIST)
3241                 ceph_pagelist_release(data->pagelist);
3242         kmem_cache_free(ceph_msg_data_cache, data);
3243 }
3244
3245 void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
3246                 size_t length, size_t alignment)
3247 {
3248         struct ceph_msg_data *data;
3249
3250         BUG_ON(!pages);
3251         BUG_ON(!length);
3252
3253         data = ceph_msg_data_create(CEPH_MSG_DATA_PAGES);
3254         BUG_ON(!data);
3255         data->pages = pages;
3256         data->length = length;
3257         data->alignment = alignment & ~PAGE_MASK;
3258
3259         list_add_tail(&data->links, &msg->data);
3260         msg->data_length += length;
3261 }
3262 EXPORT_SYMBOL(ceph_msg_data_add_pages);
3263
3264 void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
3265                                 struct ceph_pagelist *pagelist)
3266 {
3267         struct ceph_msg_data *data;
3268
3269         BUG_ON(!pagelist);
3270         BUG_ON(!pagelist->length);
3271
3272         data = ceph_msg_data_create(CEPH_MSG_DATA_PAGELIST);
3273         BUG_ON(!data);
3274         data->pagelist = pagelist;
3275
3276         list_add_tail(&data->links, &msg->data);
3277         msg->data_length += pagelist->length;
3278 }
3279 EXPORT_SYMBOL(ceph_msg_data_add_pagelist);
3280
3281 #ifdef  CONFIG_BLOCK
3282 void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
3283                 size_t length)
3284 {
3285         struct ceph_msg_data *data;
3286
3287         BUG_ON(!bio);
3288
3289         data = ceph_msg_data_create(CEPH_MSG_DATA_BIO);
3290         BUG_ON(!data);
3291         data->bio = bio;
3292         data->bio_length = length;
3293
3294         list_add_tail(&data->links, &msg->data);
3295         msg->data_length += length;
3296 }
3297 EXPORT_SYMBOL(ceph_msg_data_add_bio);
3298 #endif  /* CONFIG_BLOCK */
3299
3300 /*
3301  * construct a new message with given type, size
3302  * the new msg has a ref count of 1.
3303  */
3304 struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
3305                               bool can_fail)
3306 {
3307         struct ceph_msg *m;
3308
3309         m = kmem_cache_zalloc(ceph_msg_cache, flags);
3310         if (m == NULL)
3311                 goto out;
3312
3313         m->hdr.type = cpu_to_le16(type);
3314         m->hdr.priority = cpu_to_le16(CEPH_MSG_PRIO_DEFAULT);
3315         m->hdr.front_len = cpu_to_le32(front_len);
3316
3317         INIT_LIST_HEAD(&m->list_head);
3318         kref_init(&m->kref);
3319         INIT_LIST_HEAD(&m->data);
3320
3321         /* front */
3322         if (front_len) {
3323                 m->front.iov_base = ceph_kvmalloc(front_len, flags);
3324                 if (m->front.iov_base == NULL) {
3325                         dout("ceph_msg_new can't allocate %d bytes\n",
3326                              front_len);
3327                         goto out2;
3328                 }
3329         } else {
3330                 m->front.iov_base = NULL;
3331         }
3332         m->front_alloc_len = m->front.iov_len = front_len;
3333
3334         dout("ceph_msg_new %p front %d\n", m, front_len);
3335         return m;
3336
3337 out2:
3338         ceph_msg_put(m);
3339 out:
3340         if (!can_fail) {
3341                 pr_err("msg_new can't create type %d front %d\n", type,
3342                        front_len);
3343                 WARN_ON(1);
3344         } else {
3345                 dout("msg_new can't create type %d front %d\n", type,
3346                      front_len);
3347         }
3348         return NULL;
3349 }
3350 EXPORT_SYMBOL(ceph_msg_new);
3351
3352 /*
3353  * Allocate "middle" portion of a message, if it is needed and wasn't
3354  * allocated by alloc_msg.  This allows us to read a small fixed-size
3355  * per-type header in the front and then gracefully fail (i.e.,
3356  * propagate the error to the caller based on info in the front) when
3357  * the middle is too large.
3358  */
3359 static int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg)
3360 {
3361         int type = le16_to_cpu(msg->hdr.type);
3362         int middle_len = le32_to_cpu(msg->hdr.middle_len);
3363
3364         dout("alloc_middle %p type %d %s middle_len %d\n", msg, type,
3365              ceph_msg_type_name(type), middle_len);
3366         BUG_ON(!middle_len);
3367         BUG_ON(msg->middle);
3368
3369         msg->middle = ceph_buffer_new(middle_len, GFP_NOFS);
3370         if (!msg->middle)
3371                 return -ENOMEM;
3372         return 0;
3373 }
3374
3375 /*
3376  * Allocate a message for receiving an incoming message on a
3377  * connection, and save the result in con->in_msg.  Uses the
3378  * connection's private alloc_msg op if available.
3379  *
3380  * Returns 0 on success, or a negative error code.
3381  *
3382  * On success, if we set *skip = 1:
3383  *  - the next message should be skipped and ignored.
3384  *  - con->in_msg == NULL
3385  * or if we set *skip = 0:
3386  *  - con->in_msg is non-null.
3387  * On error (ENOMEM, EAGAIN, ...),
3388  *  - con->in_msg == NULL
3389  */
3390 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
3391 {
3392         struct ceph_msg_header *hdr = &con->in_hdr;
3393         int middle_len = le32_to_cpu(hdr->middle_len);
3394         struct ceph_msg *msg;
3395         int ret = 0;
3396
3397         BUG_ON(con->in_msg != NULL);
3398         BUG_ON(!con->ops->alloc_msg);
3399
3400         mutex_unlock(&con->mutex);
3401         msg = con->ops->alloc_msg(con, hdr, skip);
3402         mutex_lock(&con->mutex);
3403         if (con->state != CON_STATE_OPEN) {
3404                 if (msg)
3405                         ceph_msg_put(msg);
3406                 return -EAGAIN;
3407         }
3408         if (msg) {
3409                 BUG_ON(*skip);
3410                 msg_con_set(msg, con);
3411                 con->in_msg = msg;
3412         } else {
3413                 /*
3414                  * Null message pointer means either we should skip
3415                  * this message or we couldn't allocate memory.  The
3416                  * former is not an error.
3417                  */
3418                 if (*skip)
3419                         return 0;
3420
3421                 con->error_msg = "error allocating memory for incoming message";
3422                 return -ENOMEM;
3423         }
3424         memcpy(&con->in_msg->hdr, &con->in_hdr, sizeof(con->in_hdr));
3425
3426         if (middle_len && !con->in_msg->middle) {
3427                 ret = ceph_alloc_middle(con, con->in_msg);
3428                 if (ret < 0) {
3429                         ceph_msg_put(con->in_msg);
3430                         con->in_msg = NULL;
3431                 }
3432         }
3433
3434         return ret;
3435 }
3436
3437
3438 /*
3439  * Free a generically kmalloc'd message.
3440  */
3441 static void ceph_msg_free(struct ceph_msg *m)
3442 {
3443         dout("%s %p\n", __func__, m);
3444         kvfree(m->front.iov_base);
3445         kmem_cache_free(ceph_msg_cache, m);
3446 }
3447
3448 static void ceph_msg_release(struct kref *kref)
3449 {
3450         struct ceph_msg *m = container_of(kref, struct ceph_msg, kref);
3451         struct ceph_msg_data *data, *next;
3452
3453         dout("%s %p\n", __func__, m);
3454         WARN_ON(!list_empty(&m->list_head));
3455
3456         msg_con_set(m, NULL);
3457
3458         /* drop middle, data, if any */
3459         if (m->middle) {
3460                 ceph_buffer_put(m->middle);
3461                 m->middle = NULL;
3462         }
3463
3464         list_for_each_entry_safe(data, next, &m->data, links) {
3465                 list_del_init(&data->links);
3466                 ceph_msg_data_destroy(data);
3467         }
3468         m->data_length = 0;
3469
3470         if (m->pool)
3471                 ceph_msgpool_put(m->pool, m);
3472         else
3473                 ceph_msg_free(m);
3474 }
3475
3476 struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
3477 {
3478         dout("%s %p (was %d)\n", __func__, msg,
3479              atomic_read(&msg->kref.refcount));
3480         kref_get(&msg->kref);
3481         return msg;
3482 }
3483 EXPORT_SYMBOL(ceph_msg_get);
3484
3485 void ceph_msg_put(struct ceph_msg *msg)
3486 {
3487         dout("%s %p (was %d)\n", __func__, msg,
3488              atomic_read(&msg->kref.refcount));
3489         kref_put(&msg->kref, ceph_msg_release);
3490 }
3491 EXPORT_SYMBOL(ceph_msg_put);
3492
3493 void ceph_msg_dump(struct ceph_msg *msg)
3494 {
3495         pr_debug("msg_dump %p (front_alloc_len %d length %zd)\n", msg,
3496                  msg->front_alloc_len, msg->data_length);
3497         print_hex_dump(KERN_DEBUG, "header: ",
3498                        DUMP_PREFIX_OFFSET, 16, 1,
3499                        &msg->hdr, sizeof(msg->hdr), true);
3500         print_hex_dump(KERN_DEBUG, " front: ",
3501                        DUMP_PREFIX_OFFSET, 16, 1,
3502                        msg->front.iov_base, msg->front.iov_len, true);
3503         if (msg->middle)
3504                 print_hex_dump(KERN_DEBUG, "middle: ",
3505                                DUMP_PREFIX_OFFSET, 16, 1,
3506                                msg->middle->vec.iov_base,
3507                                msg->middle->vec.iov_len, true);
3508         print_hex_dump(KERN_DEBUG, "footer: ",
3509                        DUMP_PREFIX_OFFSET, 16, 1,
3510                        &msg->footer, sizeof(msg->footer), true);
3511 }
3512 EXPORT_SYMBOL(ceph_msg_dump);