2 * Copyright (c) 2006 Oracle. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/kernel.h>
36 #include <linux/if_arp.h>
40 * XXX this probably still needs more work.. no INADDR_ANY, and rbtrees aren't
43 * This is now called for every incoming frame so we arguably care much more
44 * about it than we used to.
46 static DEFINE_SPINLOCK(rds_bind_lock);
47 static struct rb_root rds_bind_tree = RB_ROOT;
49 static struct rds_sock *rds_bind_tree_walk(__be32 addr, __be16 port,
50 struct rds_sock *insert)
52 struct rb_node **p = &rds_bind_tree.rb_node;
53 struct rb_node *parent = NULL;
56 u64 needle = ((u64)be32_to_cpu(addr) << 32) | be16_to_cpu(port);
60 rs = rb_entry(parent, struct rds_sock, rs_bound_node);
62 cmp = ((u64)be32_to_cpu(rs->rs_bound_addr) << 32) |
63 be16_to_cpu(rs->rs_bound_port);
67 else if (needle > cmp)
74 rb_link_node(&insert->rs_bound_node, parent, p);
75 rb_insert_color(&insert->rs_bound_node, &rds_bind_tree);
81 * Return the rds_sock bound at the given local address.
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.
86 struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
91 spin_lock_irqsave(&rds_bind_lock, flags);
92 rs = rds_bind_tree_walk(addr, port, NULL);
93 if (rs && !sock_flag(rds_rs_to_sk(rs), SOCK_DEAD))
97 spin_unlock_irqrestore(&rds_bind_lock, flags);
99 rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
104 /* returns -ve errno or +ve port */
105 static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
108 int ret = -EADDRINUSE;
112 rover = be16_to_cpu(*port);
115 rover = max_t(u16, net_random(), 2);
119 spin_lock_irqsave(&rds_bind_lock, flags);
124 if (rds_bind_tree_walk(addr, cpu_to_be16(rover), rs) == NULL) {
125 *port = cpu_to_be16(rover);
129 } while (rover++ != last);
132 rs->rs_bound_addr = addr;
133 rs->rs_bound_port = *port;
136 rdsdebug("rs %p binding to %pI4:%d\n",
137 rs, &addr, (int)ntohs(*port));
140 spin_unlock_irqrestore(&rds_bind_lock, flags);
145 void rds_remove_bound(struct rds_sock *rs)
149 spin_lock_irqsave(&rds_bind_lock, flags);
151 if (rs->rs_bound_addr) {
152 rdsdebug("rs %p unbinding from %pI4:%d\n",
153 rs, &rs->rs_bound_addr,
154 ntohs(rs->rs_bound_port));
156 rb_erase(&rs->rs_bound_node, &rds_bind_tree);
158 rs->rs_bound_addr = 0;
161 spin_unlock_irqrestore(&rds_bind_lock, flags);
164 int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
166 struct sock *sk = sock->sk;
167 struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
168 struct rds_sock *rs = rds_sk_to_rs(sk);
169 struct rds_transport *trans;
174 if (addr_len != sizeof(struct sockaddr_in) ||
175 sin->sin_family != AF_INET ||
177 sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
182 ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
186 trans = rds_trans_get_preferred(sin->sin_addr.s_addr);
188 ret = -EADDRNOTAVAIL;
189 rds_remove_bound(rs);
193 rs->rs_transport = trans;