tcp_connect.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. * Copyright (c) 2006, 2017 Oracle and/or its affiliates. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. *
  32. */
  33. #include <linux/kernel.h>
  34. #include <linux/in.h>
  35. #include <net/tcp.h>
  36. #include "rds.h"
  37. #include "tcp.h"
  38. void rds_tcp_state_change(struct sock *sk)
  39. {
  40. void (*state_change)(struct sock *sk);
  41. struct rds_conn_path *cp;
  42. struct rds_tcp_connection *tc;
  43. read_lock_bh(&sk->sk_callback_lock);
  44. cp = sk->sk_user_data;
  45. if (!cp) {
  46. state_change = sk->sk_state_change;
  47. goto out;
  48. }
  49. tc = cp->cp_transport_data;
  50. state_change = tc->t_orig_state_change;
  51. rdsdebug("sock %p state_change to %d\n", tc->t_sock, sk->sk_state);
  52. switch (sk->sk_state) {
  53. /* ignore connecting sockets as they make progress */
  54. case TCP_SYN_SENT:
  55. case TCP_SYN_RECV:
  56. break;
  57. case TCP_ESTABLISHED:
  58. /* Force the peer to reconnect so that we have the
  59. * TCP ports going from <smaller-ip>.<transient> to
  60. * <larger-ip>.<RDS_TCP_PORT>. We avoid marking the
  61. * RDS connection as RDS_CONN_UP until the reconnect,
  62. * to avoid RDS datagram loss.
  63. */
  64. if (rds_addr_cmp(&cp->cp_conn->c_laddr,
  65. &cp->cp_conn->c_faddr) >= 0 &&
  66. rds_conn_path_transition(cp, RDS_CONN_CONNECTING,
  67. RDS_CONN_ERROR)) {
  68. rds_conn_path_drop(cp, false);
  69. } else {
  70. rds_connect_path_complete(cp, RDS_CONN_CONNECTING);
  71. }
  72. break;
  73. case TCP_CLOSE_WAIT:
  74. case TCP_CLOSE:
  75. rds_conn_path_drop(cp, false);
  76. break;
  77. default:
  78. break;
  79. }
  80. out:
  81. read_unlock_bh(&sk->sk_callback_lock);
  82. state_change(sk);
  83. }
  84. int rds_tcp_conn_path_connect(struct rds_conn_path *cp)
  85. {
  86. struct socket *sock = NULL;
  87. struct sockaddr_in6 sin6;
  88. struct sockaddr_in sin;
  89. struct sockaddr *addr;
  90. int addrlen;
  91. bool isv6;
  92. int ret;
  93. struct rds_connection *conn = cp->cp_conn;
  94. struct rds_tcp_connection *tc = cp->cp_transport_data;
  95. /* for multipath rds,we only trigger the connection after
  96. * the handshake probe has determined the number of paths.
  97. */
  98. if (cp->cp_index > 0 && cp->cp_conn->c_npaths < 2)
  99. return -EAGAIN;
  100. mutex_lock(&tc->t_conn_path_lock);
  101. if (rds_conn_path_up(cp)) {
  102. mutex_unlock(&tc->t_conn_path_lock);
  103. return 0;
  104. }
  105. if (ipv6_addr_v4mapped(&conn->c_laddr)) {
  106. ret = sock_create_kern(rds_conn_net(conn), PF_INET,
  107. SOCK_STREAM, IPPROTO_TCP, &sock);
  108. isv6 = false;
  109. } else {
  110. ret = sock_create_kern(rds_conn_net(conn), PF_INET6,
  111. SOCK_STREAM, IPPROTO_TCP, &sock);
  112. isv6 = true;
  113. }
  114. if (ret < 0)
  115. goto out;
  116. if (!rds_tcp_tune(sock)) {
  117. ret = -EINVAL;
  118. goto out;
  119. }
  120. if (isv6) {
  121. sin6.sin6_family = AF_INET6;
  122. sin6.sin6_addr = conn->c_laddr;
  123. sin6.sin6_port = 0;
  124. sin6.sin6_flowinfo = 0;
  125. sin6.sin6_scope_id = conn->c_dev_if;
  126. addr = (struct sockaddr *)&sin6;
  127. addrlen = sizeof(sin6);
  128. } else {
  129. sin.sin_family = AF_INET;
  130. sin.sin_addr.s_addr = conn->c_laddr.s6_addr32[3];
  131. sin.sin_port = 0;
  132. addr = (struct sockaddr *)&sin;
  133. addrlen = sizeof(sin);
  134. }
  135. ret = kernel_bind(sock, addr, addrlen);
  136. if (ret) {
  137. rdsdebug("bind failed with %d at address %pI6c\n",
  138. ret, &conn->c_laddr);
  139. goto out;
  140. }
  141. if (isv6) {
  142. sin6.sin6_family = AF_INET6;
  143. sin6.sin6_addr = conn->c_faddr;
  144. sin6.sin6_port = htons(RDS_TCP_PORT);
  145. sin6.sin6_flowinfo = 0;
  146. sin6.sin6_scope_id = conn->c_dev_if;
  147. addr = (struct sockaddr *)&sin6;
  148. addrlen = sizeof(sin6);
  149. } else {
  150. sin.sin_family = AF_INET;
  151. sin.sin_addr.s_addr = conn->c_faddr.s6_addr32[3];
  152. sin.sin_port = htons(RDS_TCP_PORT);
  153. addr = (struct sockaddr *)&sin;
  154. addrlen = sizeof(sin);
  155. }
  156. /*
  157. * once we call connect() we can start getting callbacks and they
  158. * own the socket
  159. */
  160. rds_tcp_set_callbacks(sock, cp);
  161. ret = kernel_connect(sock, addr, addrlen, O_NONBLOCK);
  162. rdsdebug("connect to address %pI6c returned %d\n", &conn->c_faddr, ret);
  163. if (ret == -EINPROGRESS)
  164. ret = 0;
  165. if (ret == 0) {
  166. rds_tcp_keepalive(sock);
  167. sock = NULL;
  168. } else {
  169. rds_tcp_restore_callbacks(sock, cp->cp_transport_data);
  170. }
  171. out:
  172. mutex_unlock(&tc->t_conn_path_lock);
  173. if (sock)
  174. sock_release(sock);
  175. return ret;
  176. }
  177. /*
  178. * Before killing the tcp socket this needs to serialize with callbacks. The
  179. * caller has already grabbed the sending sem so we're serialized with other
  180. * senders.
  181. *
  182. * TCP calls the callbacks with the sock lock so we hold it while we reset the
  183. * callbacks to those set by TCP. Our callbacks won't execute again once we
  184. * hold the sock lock.
  185. */
  186. void rds_tcp_conn_path_shutdown(struct rds_conn_path *cp)
  187. {
  188. struct rds_tcp_connection *tc = cp->cp_transport_data;
  189. struct socket *sock = tc->t_sock;
  190. rdsdebug("shutting down conn %p tc %p sock %p\n",
  191. cp->cp_conn, tc, sock);
  192. if (sock) {
  193. if (rds_destroy_pending(cp->cp_conn))
  194. sock_no_linger(sock->sk);
  195. sock->ops->shutdown(sock, RCV_SHUTDOWN | SEND_SHUTDOWN);
  196. lock_sock(sock->sk);
  197. rds_tcp_restore_callbacks(sock, tc); /* tc->tc_sock = NULL */
  198. release_sock(sock->sk);
  199. sock_release(sock);
  200. }
  201. if (tc->t_tinc) {
  202. rds_inc_put(&tc->t_tinc->ti_inc);
  203. tc->t_tinc = NULL;
  204. }
  205. tc->t_tinc_hdr_rem = sizeof(struct rds_header);
  206. tc->t_tinc_data_rem = 0;
  207. }