bind.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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 "rds.h"
  38. /*
  39. * XXX this probably still needs more work.. no INADDR_ANY, and rbtrees aren't
  40. * particularly zippy.
  41. *
  42. * This is now called for every incoming frame so we arguably care much more
  43. * about it than we used to.
  44. */
  45. static DEFINE_SPINLOCK(rds_bind_lock);
  46. static struct rb_root rds_bind_tree = RB_ROOT;
  47. static struct rds_sock *rds_bind_tree_walk(__be32 addr, __be16 port,
  48. struct rds_sock *insert)
  49. {
  50. struct rb_node **p = &rds_bind_tree.rb_node;
  51. struct rb_node *parent = NULL;
  52. struct rds_sock *rs;
  53. u64 cmp;
  54. u64 needle = ((u64)be32_to_cpu(addr) << 32) | be16_to_cpu(port);
  55. while (*p) {
  56. parent = *p;
  57. rs = rb_entry(parent, struct rds_sock, rs_bound_node);
  58. cmp = ((u64)be32_to_cpu(rs->rs_bound_addr) << 32) |
  59. be16_to_cpu(rs->rs_bound_port);
  60. if (needle < cmp)
  61. p = &(*p)->rb_left;
  62. else if (needle > cmp)
  63. p = &(*p)->rb_right;
  64. else
  65. return rs;
  66. }
  67. if (insert) {
  68. rb_link_node(&insert->rs_bound_node, parent, p);
  69. rb_insert_color(&insert->rs_bound_node, &rds_bind_tree);
  70. }
  71. return NULL;
  72. }
  73. /*
  74. * Return the rds_sock bound at the given local address.
  75. *
  76. * The rx path can race with rds_release. We notice if rds_release() has
  77. * marked this socket and don't return a rs ref to the rx path.
  78. */
  79. struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
  80. {
  81. struct rds_sock *rs;
  82. unsigned long flags;
  83. spin_lock_irqsave(&rds_bind_lock, flags);
  84. rs = rds_bind_tree_walk(addr, port, NULL);
  85. if (rs && !sock_flag(rds_rs_to_sk(rs), SOCK_DEAD))
  86. rds_sock_addref(rs);
  87. else
  88. rs = NULL;
  89. spin_unlock_irqrestore(&rds_bind_lock, flags);
  90. rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
  91. ntohs(port));
  92. return rs;
  93. }
  94. /* returns -ve errno or +ve port */
  95. static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
  96. {
  97. unsigned long flags;
  98. int ret = -EADDRINUSE;
  99. u16 rover, last;
  100. if (*port != 0) {
  101. rover = be16_to_cpu(*port);
  102. last = rover;
  103. } else {
  104. rover = max_t(u16, net_random(), 2);
  105. last = rover - 1;
  106. }
  107. spin_lock_irqsave(&rds_bind_lock, flags);
  108. do {
  109. if (rover == 0)
  110. rover++;
  111. if (rds_bind_tree_walk(addr, cpu_to_be16(rover), rs) == NULL) {
  112. *port = cpu_to_be16(rover);
  113. ret = 0;
  114. break;
  115. }
  116. } while (rover++ != last);
  117. if (ret == 0) {
  118. rs->rs_bound_addr = addr;
  119. rs->rs_bound_port = *port;
  120. rds_sock_addref(rs);
  121. rdsdebug("rs %p binding to %pI4:%d\n",
  122. rs, &addr, (int)ntohs(*port));
  123. }
  124. spin_unlock_irqrestore(&rds_bind_lock, flags);
  125. return ret;
  126. }
  127. void rds_remove_bound(struct rds_sock *rs)
  128. {
  129. unsigned long flags;
  130. spin_lock_irqsave(&rds_bind_lock, flags);
  131. if (rs->rs_bound_addr) {
  132. rdsdebug("rs %p unbinding from %pI4:%d\n",
  133. rs, &rs->rs_bound_addr,
  134. ntohs(rs->rs_bound_port));
  135. rb_erase(&rs->rs_bound_node, &rds_bind_tree);
  136. rds_sock_put(rs);
  137. rs->rs_bound_addr = 0;
  138. }
  139. spin_unlock_irqrestore(&rds_bind_lock, flags);
  140. }
  141. int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  142. {
  143. struct sock *sk = sock->sk;
  144. struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
  145. struct rds_sock *rs = rds_sk_to_rs(sk);
  146. struct rds_transport *trans;
  147. int ret = 0;
  148. lock_sock(sk);
  149. if (addr_len != sizeof(struct sockaddr_in) ||
  150. sin->sin_family != AF_INET ||
  151. rs->rs_bound_addr ||
  152. sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
  153. ret = -EINVAL;
  154. goto out;
  155. }
  156. ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
  157. if (ret)
  158. goto out;
  159. trans = rds_trans_get_preferred(sin->sin_addr.s_addr);
  160. if (trans == NULL) {
  161. ret = -EADDRNOTAVAIL;
  162. rds_remove_bound(rs);
  163. goto out;
  164. }
  165. rs->rs_transport = trans;
  166. ret = 0;
  167. out:
  168. release_sock(sk);
  169. return ret;
  170. }