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. #define BIND_HASH_SIZE 1024
  41. static struct hlist_head bind_hash_table[BIND_HASH_SIZE];
  42. static DEFINE_SPINLOCK(rds_bind_lock);
  43. static struct hlist_head *hash_to_bucket(__be32 addr, __be16 port)
  44. {
  45. return bind_hash_table + (jhash_2words((u32)addr, (u32)port, 0) &
  46. (BIND_HASH_SIZE - 1));
  47. }
  48. static struct rds_sock *rds_bind_lookup(__be32 addr, __be16 port,
  49. struct rds_sock *insert)
  50. {
  51. struct rds_sock *rs;
  52. struct hlist_node *node;
  53. struct hlist_head *head = hash_to_bucket(addr, port);
  54. u64 cmp;
  55. u64 needle = ((u64)be32_to_cpu(addr) << 32) | be16_to_cpu(port);
  56. rcu_read_lock();
  57. hlist_for_each_entry_rcu(rs, node, head, rs_bound_node) {
  58. cmp = ((u64)be32_to_cpu(rs->rs_bound_addr) << 32) |
  59. be16_to_cpu(rs->rs_bound_port);
  60. if (cmp == needle) {
  61. rcu_read_unlock();
  62. return rs;
  63. }
  64. }
  65. rcu_read_unlock();
  66. if (insert) {
  67. /*
  68. * make sure our addr and port are set before
  69. * we are added to the list, other people
  70. * in rcu will find us as soon as the
  71. * hlist_add_head_rcu is done
  72. */
  73. insert->rs_bound_addr = addr;
  74. insert->rs_bound_port = port;
  75. rds_sock_addref(insert);
  76. hlist_add_head_rcu(&insert->rs_bound_node, head);
  77. }
  78. return NULL;
  79. }
  80. /*
  81. * Return the rds_sock bound at the given local address.
  82. *
  83. * The rx path can race with rds_release. We notice if rds_release() has
  84. * marked this socket and don't return a rs ref to the rx path.
  85. */
  86. struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
  87. {
  88. struct rds_sock *rs;
  89. rs = rds_bind_lookup(addr, port, NULL);
  90. if (rs && !sock_flag(rds_rs_to_sk(rs), SOCK_DEAD))
  91. rds_sock_addref(rs);
  92. else
  93. rs = NULL;
  94. rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
  95. ntohs(port));
  96. return rs;
  97. }
  98. /* returns -ve errno or +ve port */
  99. static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
  100. {
  101. unsigned long flags;
  102. int ret = -EADDRINUSE;
  103. u16 rover, last;
  104. if (*port != 0) {
  105. rover = be16_to_cpu(*port);
  106. last = rover;
  107. } else {
  108. rover = max_t(u16, net_random(), 2);
  109. last = rover - 1;
  110. }
  111. spin_lock_irqsave(&rds_bind_lock, flags);
  112. do {
  113. if (rover == 0)
  114. rover++;
  115. if (!rds_bind_lookup(addr, cpu_to_be16(rover), rs)) {
  116. *port = rs->rs_bound_port;
  117. ret = 0;
  118. rdsdebug("rs %p binding to %pI4:%d\n",
  119. rs, &addr, (int)ntohs(*port));
  120. break;
  121. }
  122. } while (rover++ != last);
  123. spin_unlock_irqrestore(&rds_bind_lock, flags);
  124. return ret;
  125. }
  126. void rds_remove_bound(struct rds_sock *rs)
  127. {
  128. unsigned long flags;
  129. spin_lock_irqsave(&rds_bind_lock, flags);
  130. if (rs->rs_bound_addr) {
  131. rdsdebug("rs %p unbinding from %pI4:%d\n",
  132. rs, &rs->rs_bound_addr,
  133. ntohs(rs->rs_bound_port));
  134. hlist_del_init_rcu(&rs->rs_bound_node);
  135. rds_sock_put(rs);
  136. rs->rs_bound_addr = 0;
  137. }
  138. spin_unlock_irqrestore(&rds_bind_lock, flags);
  139. }
  140. int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  141. {
  142. struct sock *sk = sock->sk;
  143. struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
  144. struct rds_sock *rs = rds_sk_to_rs(sk);
  145. struct rds_transport *trans;
  146. int ret = 0;
  147. lock_sock(sk);
  148. if (addr_len != sizeof(struct sockaddr_in) ||
  149. sin->sin_family != AF_INET ||
  150. rs->rs_bound_addr ||
  151. sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
  152. ret = -EINVAL;
  153. goto out;
  154. }
  155. ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
  156. if (ret)
  157. goto out;
  158. trans = rds_trans_get_preferred(sin->sin_addr.s_addr);
  159. if (!trans) {
  160. ret = -EADDRNOTAVAIL;
  161. rds_remove_bound(rs);
  162. printk_ratelimited(KERN_INFO "RDS: rds_bind() could not find a transport, "
  163. "load rds_tcp or rds_rdma?\n");
  164. goto out;
  165. }
  166. rs->rs_transport = trans;
  167. ret = 0;
  168. out:
  169. release_sock(sk);
  170. /* we might have called rds_remove_bound on error */
  171. if (ret)
  172. synchronize_rcu();
  173. return ret;
  174. }