blob: 01989e2104bd66fdcc9e51f62228de24f5bbae04 [file] [log] [blame]
Andy Grover639b3212009-02-24 15:30:18 +00001/*
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>
Chris Mason38a4e5e2010-05-11 15:09:45 -070037#include <linux/jhash.h>
Manuel Zerpiescb0a6052011-06-16 02:09:57 +000038#include <linux/ratelimit.h>
Andy Grover639b3212009-02-24 15:30:18 +000039#include "rds.h"
40
Chris Mason38a4e5e2010-05-11 15:09:45 -070041#define BIND_HASH_SIZE 1024
42static struct hlist_head bind_hash_table[BIND_HASH_SIZE];
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050043static DEFINE_RWLOCK(rds_bind_lock);
Andy Grover639b3212009-02-24 15:30:18 +000044
Chris Mason38a4e5e2010-05-11 15:09:45 -070045static struct hlist_head *hash_to_bucket(__be32 addr, __be16 port)
Andy Grover639b3212009-02-24 15:30:18 +000046{
Chris Mason38a4e5e2010-05-11 15:09:45 -070047 return bind_hash_table + (jhash_2words((u32)addr, (u32)port, 0) &
48 (BIND_HASH_SIZE - 1));
49}
50
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050051/* must hold either read or write lock (write lock for insert != NULL) */
Chris Mason38a4e5e2010-05-11 15:09:45 -070052static struct rds_sock *rds_bind_lookup(__be32 addr, __be16 port,
53 struct rds_sock *insert)
54{
Andy Grover639b3212009-02-24 15:30:18 +000055 struct rds_sock *rs;
Chris Mason38a4e5e2010-05-11 15:09:45 -070056 struct hlist_head *head = hash_to_bucket(addr, port);
Andy Grover639b3212009-02-24 15:30:18 +000057 u64 cmp;
58 u64 needle = ((u64)be32_to_cpu(addr) << 32) | be16_to_cpu(port);
59
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050060 hlist_for_each_entry(rs, head, rs_bound_node) {
Andy Grover639b3212009-02-24 15:30:18 +000061 cmp = ((u64)be32_to_cpu(rs->rs_bound_addr) << 32) |
62 be16_to_cpu(rs->rs_bound_port);
63
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050064 if (cmp == needle)
Andy Grover639b3212009-02-24 15:30:18 +000065 return rs;
66 }
67
68 if (insert) {
Chris Mason38a4e5e2010-05-11 15:09:45 -070069 /*
70 * make sure our addr and port are set before
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050071 * we are added to the list.
Chris Mason38a4e5e2010-05-11 15:09:45 -070072 */
73 insert->rs_bound_addr = addr;
74 insert->rs_bound_port = port;
75 rds_sock_addref(insert);
76
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050077 hlist_add_head(&insert->rs_bound_node, head);
Andy Grover639b3212009-02-24 15:30:18 +000078 }
79 return NULL;
80}
81
82/*
83 * Return the rds_sock bound at the given local address.
84 *
85 * The rx path can race with rds_release. We notice if rds_release() has
86 * marked this socket and don't return a rs ref to the rx path.
87 */
88struct rds_sock *rds_find_bound(__be32 addr, __be16 port)
89{
90 struct rds_sock *rs;
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050091 unsigned long flags;
Andy Grover639b3212009-02-24 15:30:18 +000092
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050093 read_lock_irqsave(&rds_bind_lock, flags);
Chris Mason38a4e5e2010-05-11 15:09:45 -070094 rs = rds_bind_lookup(addr, port, NULL);
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -050095 read_unlock_irqrestore(&rds_bind_lock, flags);
Chris Mason38a4e5e2010-05-11 15:09:45 -070096
Andy Grover639b3212009-02-24 15:30:18 +000097 if (rs && !sock_flag(rds_rs_to_sk(rs), SOCK_DEAD))
98 rds_sock_addref(rs);
99 else
100 rs = NULL;
Andy Grover639b3212009-02-24 15:30:18 +0000101
102 rdsdebug("returning rs %p for %pI4:%u\n", rs, &addr,
103 ntohs(port));
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500104
Andy Grover639b3212009-02-24 15:30:18 +0000105 return rs;
106}
107
108/* returns -ve errno or +ve port */
109static int rds_add_bound(struct rds_sock *rs, __be32 addr, __be16 *port)
110{
111 unsigned long flags;
112 int ret = -EADDRINUSE;
113 u16 rover, last;
114
115 if (*port != 0) {
116 rover = be16_to_cpu(*port);
117 last = rover;
118 } else {
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500119 rover = max_t(u16, prandom_u32(), 2);
Andy Grover639b3212009-02-24 15:30:18 +0000120 last = rover - 1;
121 }
122
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500123 write_lock_irqsave(&rds_bind_lock, flags);
Andy Grover639b3212009-02-24 15:30:18 +0000124
125 do {
126 if (rover == 0)
127 rover++;
Chris Mason38a4e5e2010-05-11 15:09:45 -0700128 if (!rds_bind_lookup(addr, cpu_to_be16(rover), rs)) {
129 *port = rs->rs_bound_port;
Andy Grover639b3212009-02-24 15:30:18 +0000130 ret = 0;
Chris Mason38a4e5e2010-05-11 15:09:45 -0700131 rdsdebug("rs %p binding to %pI4:%d\n",
132 rs, &addr, (int)ntohs(*port));
Andy Grover639b3212009-02-24 15:30:18 +0000133 break;
134 }
135 } while (rover++ != last);
136
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500137 write_unlock_irqrestore(&rds_bind_lock, flags);
Andy Grover639b3212009-02-24 15:30:18 +0000138
139 return ret;
140}
141
142void rds_remove_bound(struct rds_sock *rs)
143{
144 unsigned long flags;
145
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500146 write_lock_irqsave(&rds_bind_lock, flags);
Andy Grover639b3212009-02-24 15:30:18 +0000147
148 if (rs->rs_bound_addr) {
149 rdsdebug("rs %p unbinding from %pI4:%d\n",
150 rs, &rs->rs_bound_addr,
151 ntohs(rs->rs_bound_port));
152
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500153 hlist_del_init(&rs->rs_bound_node);
Andy Grover639b3212009-02-24 15:30:18 +0000154 rds_sock_put(rs);
155 rs->rs_bound_addr = 0;
156 }
157
Santosh Shilimkar8b0a6b42012-02-03 11:09:23 -0500158 write_unlock_irqrestore(&rds_bind_lock, flags);
Andy Grover639b3212009-02-24 15:30:18 +0000159}
160
161int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
162{
163 struct sock *sk = sock->sk;
164 struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
165 struct rds_sock *rs = rds_sk_to_rs(sk);
166 struct rds_transport *trans;
167 int ret = 0;
168
169 lock_sock(sk);
170
171 if (addr_len != sizeof(struct sockaddr_in) ||
172 sin->sin_family != AF_INET ||
173 rs->rs_bound_addr ||
174 sin->sin_addr.s_addr == htonl(INADDR_ANY)) {
175 ret = -EINVAL;
176 goto out;
177 }
178
179 ret = rds_add_bound(rs, sin->sin_addr.s_addr, &sin->sin_port);
180 if (ret)
181 goto out;
182
Sowmini Varadhand97dac52015-05-29 17:28:08 -0400183 if (rs->rs_transport) { /* previously bound */
184 ret = 0;
185 goto out;
186 }
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400187 trans = rds_trans_get_preferred(sock_net(sock->sk),
188 sin->sin_addr.s_addr);
Andy Grover8690bfa2010-01-12 11:56:44 -0800189 if (!trans) {
Andy Grover639b3212009-02-24 15:30:18 +0000190 ret = -EADDRNOTAVAIL;
191 rds_remove_bound(rs);
Manuel Zerpiescb0a6052011-06-16 02:09:57 +0000192 printk_ratelimited(KERN_INFO "RDS: rds_bind() could not find a transport, "
Andy Groverf2c44932009-08-21 12:28:35 +0000193 "load rds_tcp or rds_rdma?\n");
Andy Grover639b3212009-02-24 15:30:18 +0000194 goto out;
195 }
196
197 rs->rs_transport = trans;
198 ret = 0;
199
200out:
201 release_sock(sk);
Andy Grover639b3212009-02-24 15:30:18 +0000202 return ret;
203}