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