]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/rds/bind.c
RDS: fix rds_sock reference bug while doing bind
[karo-tx-linux.git] / net / rds / bind.c
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
41 #define BIND_HASH_SIZE 1024
42 static struct hlist_head bind_hash_table[BIND_HASH_SIZE];
43 static DEFINE_RWLOCK(rds_bind_lock);
44
45 static struct hlist_head *hash_to_bucket(__be32 addr, __be16 port)
46 {
47         return bind_hash_table + (jhash_2words((u32)addr, (u32)port, 0) &
48                                   (BIND_HASH_SIZE - 1));
49 }
50
51 /* must hold either read or write lock (write lock for insert != NULL) */
52 static struct rds_sock *rds_bind_lookup(__be32 addr, __be16 port,
53                                         struct rds_sock *insert)
54 {
55         struct rds_sock *rs;
56         struct hlist_head *head = hash_to_bucket(addr, port);
57         u64 cmp;
58         u64 needle = ((u64)be32_to_cpu(addr) << 32) | be16_to_cpu(port);
59
60         hlist_for_each_entry(rs, head, rs_bound_node) {
61                 cmp = ((u64)be32_to_cpu(rs->rs_bound_addr) << 32) |
62                       be16_to_cpu(rs->rs_bound_port);
63
64                 if (cmp == needle) {
65                         rds_sock_addref(rs);
66                         return rs;
67                 }
68         }
69
70         if (insert) {
71                 /*
72                  * make sure our addr and port are set before
73                  * we are added to the list.
74                  */
75                 insert->rs_bound_addr = addr;
76                 insert->rs_bound_port = port;
77                 rds_sock_addref(insert);
78
79                 hlist_add_head(&insert->rs_bound_node, head);
80         }
81         return NULL;
82 }
83
84 /*
85  * Return the rds_sock bound at the given local address.
86  *
87  * The rx path can race with rds_release.  We notice if rds_release() has
88  * marked this socket and don't return a rs ref to the rx path.
89  */
90 struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
91 {
92         struct rds_sock *rs;
93         unsigned long flags;
94
95         read_lock_irqsave(&rds_bind_lock, flags);
96         rs = rds_bind_lookup(addr, port, NULL);
97         read_unlock_irqrestore(&rds_bind_lock, flags);
98
99         if (rs && sock_flag(rds_rs_to_sk(rs), SOCK_DEAD)) {
100                 rds_sock_put(rs);
101                 rs = NULL;
102         }
103
104         rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
105                 ntohs(port));
106
107         return rs;
108 }
109
110 /* returns -ve errno or +ve port */
111 static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
112 {
113         unsigned long flags;
114         int ret = -EADDRINUSE;
115         u16 rover, last;
116
117         if (*port != 0) {
118                 rover = be16_to_cpu(*port);
119                 last = rover;
120         } else {
121                 rover = max_t(u16, prandom_u32(), 2);
122                 last = rover - 1;
123         }
124
125         write_lock_irqsave(&rds_bind_lock, flags);
126
127         do {
128                 struct rds_sock *rrs;
129                 if (rover == 0)
130                         rover++;
131                 rrs = rds_bind_lookup(addr, cpu_to_be16(rover), rs);
132                 if (!rrs) {
133                         *port = rs->rs_bound_port;
134                         ret = 0;
135                         rdsdebug("rs %p binding to %pI4:%d\n",
136                           rs, &addr, (int)ntohs(*port));
137                         break;
138                 } else {
139                         rds_sock_put(rrs);
140                 }
141         } while (rover++ != last);
142
143         write_unlock_irqrestore(&rds_bind_lock, flags);
144
145         return ret;
146 }
147
148 void rds_remove_bound(struct rds_sock *rs)
149 {
150         unsigned long flags;
151
152         write_lock_irqsave(&rds_bind_lock, flags);
153
154         if (rs->rs_bound_addr) {
155                 rdsdebug("rs %p unbinding from %pI4:%d\n",
156                   rs, &rs->rs_bound_addr,
157                   ntohs(rs->rs_bound_port));
158
159                 hlist_del_init(&rs->rs_bound_node);
160                 rds_sock_put(rs);
161                 rs->rs_bound_addr = 0;
162         }
163
164         write_unlock_irqrestore(&rds_bind_lock, flags);
165 }
166
167 int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
168 {
169         struct sock *sk = sock->sk;
170         struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
171         struct rds_sock *rs = rds_sk_to_rs(sk);
172         struct rds_transport *trans;
173         int ret = 0;
174
175         lock_sock(sk);
176
177         if (addr_len != sizeof(struct sockaddr_in) ||
178             sin->sin_family != AF_INET ||
179             rs->rs_bound_addr ||
180             sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
181                 ret = -EINVAL;
182                 goto out;
183         }
184
185         ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
186         if (ret)
187                 goto out;
188
189         if (rs->rs_transport) { /* previously bound */
190                 ret = 0;
191                 goto out;
192         }
193         trans = rds_trans_get_preferred(sock_net(sock->sk),
194                                         sin->sin_addr.s_addr);
195         if (!trans) {
196                 ret = -EADDRNOTAVAIL;
197                 rds_remove_bound(rs);
198                 printk_ratelimited(KERN_INFO "RDS: rds_bind() could not find a transport, "
199                                 "load rds_tcp or rds_rdma?\n");
200                 goto out;
201         }
202
203         rs->rs_transport = trans;
204         ret = 0;
205
206 out:
207         release_sock(sk);
208         return ret;
209 }