bind.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * Copyright (c) 2006 Oracle. 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 <net/sock.h>
  35. #include <linux/in.h>
  36. #include <linux/if_arp.h>
  37. #include <linux/jhash.h>
  38. #include <linux/ratelimit.h>
  39. #include "rds.h"
  40. static struct rhashtable bind_hash_table;
  41. static const struct rhashtable_params ht_parms = {
  42. .nelem_hint = 768,
  43. .key_len = sizeof(u64),
  44. .key_offset = offsetof(struct rds_sock, rs_bound_key),
  45. .head_offset = offsetof(struct rds_sock, rs_bound_node),
  46. .max_size = 16384,
  47. .min_size = 1024,
  48. };
  49. /*
  50. * Return the rds_sock bound at the given local address.
  51. *
  52. * The rx path can race with rds_release. We notice if rds_release() has
  53. * marked this socket and don't return a rs ref to the rx path.
  54. */
  55. struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
  56. {
  57. u64 key = ((u64)addr << 32) | port;
  58. struct rds_sock *rs;
  59. rcu_read_lock();
  60. rs = rhashtable_lookup(&bind_hash_table, &key, ht_parms);
  61. if (rs && (sock_flag(rds_rs_to_sk(rs), SOCK_DEAD) ||
  62. !refcount_inc_not_zero(&rds_rs_to_sk(rs)->sk_refcnt)))
  63. rs = NULL;
  64. rcu_read_unlock();
  65. rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
  66. ntohs(port));
  67. return rs;
  68. }
  69. /* returns -ve errno or +ve port */
  70. static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
  71. {
  72. int ret = -EADDRINUSE;
  73. u16 rover, last;
  74. u64 key;
  75. if (*port != 0) {
  76. rover = be16_to_cpu(*port);
  77. if (rover == RDS_FLAG_PROBE_PORT)
  78. return -EINVAL;
  79. last = rover;
  80. } else {
  81. rover = max_t(u16, prandom_u32(), 2);
  82. last = rover - 1;
  83. }
  84. do {
  85. if (rover == 0)
  86. rover++;
  87. if (rover == RDS_FLAG_PROBE_PORT)
  88. continue;
  89. key = ((u64)addr << 32) | cpu_to_be16(rover);
  90. if (rhashtable_lookup_fast(&bind_hash_table, &key, ht_parms))
  91. continue;
  92. rs->rs_bound_key = key;
  93. rs->rs_bound_addr = addr;
  94. net_get_random_once(&rs->rs_hash_initval,
  95. sizeof(rs->rs_hash_initval));
  96. rs->rs_bound_port = cpu_to_be16(rover);
  97. rs->rs_bound_node.next = NULL;
  98. rds_sock_addref(rs);
  99. if (!rhashtable_insert_fast(&bind_hash_table,
  100. &rs->rs_bound_node, ht_parms)) {
  101. *port = rs->rs_bound_port;
  102. ret = 0;
  103. rdsdebug("rs %p binding to %pI4:%d\n",
  104. rs, &addr, (int)ntohs(*port));
  105. break;
  106. } else {
  107. rs->rs_bound_addr = 0;
  108. rds_sock_put(rs);
  109. ret = -ENOMEM;
  110. break;
  111. }
  112. } while (rover++ != last);
  113. return ret;
  114. }
  115. void rds_remove_bound(struct rds_sock *rs)
  116. {
  117. if (!rs->rs_bound_addr)
  118. return;
  119. rdsdebug("rs %p unbinding from %pI4:%d\n",
  120. rs, &rs->rs_bound_addr,
  121. ntohs(rs->rs_bound_port));
  122. rhashtable_remove_fast(&bind_hash_table, &rs->rs_bound_node, ht_parms);
  123. rds_sock_put(rs);
  124. rs->rs_bound_addr = 0;
  125. }
  126. int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  127. {
  128. struct sock *sk = sock->sk;
  129. struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
  130. struct rds_sock *rs = rds_sk_to_rs(sk);
  131. struct rds_transport *trans;
  132. int ret = 0;
  133. lock_sock(sk);
  134. if (addr_len != sizeof(struct sockaddr_in) ||
  135. sin->sin_family != AF_INET ||
  136. rs->rs_bound_addr ||
  137. sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
  138. ret = -EINVAL;
  139. goto out;
  140. }
  141. sock_set_flag(sk, SOCK_RCU_FREE);
  142. ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
  143. if (ret)
  144. goto out;
  145. if (rs->rs_transport) { /* previously bound */
  146. trans = rs->rs_transport;
  147. if (trans->laddr_check(sock_net(sock->sk),
  148. sin->sin_addr.s_addr) != 0) {
  149. ret = -ENOPROTOOPT;
  150. rds_remove_bound(rs);
  151. } else {
  152. ret = 0;
  153. }
  154. goto out;
  155. }
  156. trans = rds_trans_get_preferred(sock_net(sock->sk),
  157. sin->sin_addr.s_addr);
  158. if (!trans) {
  159. ret = -EADDRNOTAVAIL;
  160. rds_remove_bound(rs);
  161. pr_info_ratelimited("RDS: %s could not find a transport for %pI4, load rds_tcp or rds_rdma?\n",
  162. __func__, &sin->sin_addr.s_addr);
  163. goto out;
  164. }
  165. rs->rs_transport = trans;
  166. ret = 0;
  167. out:
  168. release_sock(sk);
  169. return ret;
  170. }
  171. void rds_bind_lock_destroy(void)
  172. {
  173. rhashtable_destroy(&bind_hash_table);
  174. }
  175. int rds_bind_lock_init(void)
  176. {
  177. return rhashtable_init(&bind_hash_table, &ht_parms);
  178. }