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