bind.c 6.2 KB
Newer Older
A
Andy Grover 已提交
1
/*
2
 * Copyright (c) 2006, 2018 Oracle and/or its affiliates. All rights reserved.
A
Andy Grover 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */
#include <linux/kernel.h>
#include <net/sock.h>
#include <linux/in.h>
36
#include <linux/ipv6.h>
A
Andy Grover 已提交
37
#include <linux/if_arp.h>
38
#include <linux/jhash.h>
39
#include <linux/ratelimit.h>
A
Andy Grover 已提交
40 41
#include "rds.h"

42 43
static struct rhashtable bind_hash_table;

44
static const struct rhashtable_params ht_parms = {
45
	.nelem_hint = 768,
46
	.key_len = RDS_BOUND_KEY_LEN,
47 48 49 50
	.key_offset = offsetof(struct rds_sock, rs_bound_key),
	.head_offset = offsetof(struct rds_sock, rs_bound_node),
	.max_size = 16384,
	.min_size = 1024,
51 52
};

53 54 55 56 57 58 59 60 61 62 63 64 65
/* Create a key for the bind hash table manipulation.  Port is in network byte
 * order.
 */
static inline void __rds_create_bind_key(u8 *key, const struct in6_addr *addr,
					 __be16 port, __u32 scope_id)
{
	memcpy(key, addr, sizeof(*addr));
	key += sizeof(*addr);
	memcpy(key, &port, sizeof(port));
	key += sizeof(port);
	memcpy(key, &scope_id, sizeof(scope_id));
}

A
Andy Grover 已提交
66 67 68 69 70 71
/*
 * Return the rds_sock bound at the given local address.
 *
 * The rx path can race with rds_release.  We notice if rds_release() has
 * marked this socket and don't return a rs ref to the rx path.
 */
72 73
struct rds_sock *rds_find_bound(const struct in6_addr *addr, __be16 port,
				__u32 scope_id)
A
Andy Grover 已提交
74
{
75
	u8 key[RDS_BOUND_KEY_LEN];
A
Andy Grover 已提交
76
	struct rds_sock *rs;
77

78 79
	__rds_create_bind_key(key, addr, port, scope_id);
	rs = rhashtable_lookup_fast(&bind_hash_table, key, ht_parms);
80 81 82
	if (rs && !sock_flag(rds_rs_to_sk(rs), SOCK_DEAD))
		rds_sock_addref(rs);
	else
A
Andy Grover 已提交
83 84
		rs = NULL;

85 86
	rdsdebug("returning rs %p for %pI6c:%u\n", rs, addr,
		 ntohs(port));
87

A
Andy Grover 已提交
88 89 90 91
	return rs;
}

/* returns -ve errno or +ve port */
92 93
static int rds_add_bound(struct rds_sock *rs, const struct in6_addr *addr,
			 __be16 *port, __u32 scope_id)
A
Andy Grover 已提交
94 95 96
{
	int ret = -EADDRINUSE;
	u16 rover, last;
97
	u8 key[RDS_BOUND_KEY_LEN];
A
Andy Grover 已提交
98 99 100

	if (*port != 0) {
		rover = be16_to_cpu(*port);
101 102
		if (rover == RDS_FLAG_PROBE_PORT)
			return -EINVAL;
A
Andy Grover 已提交
103 104
		last = rover;
	} else {
105
		rover = max_t(u16, prandom_u32(), 2);
A
Andy Grover 已提交
106 107 108 109 110 111
		last = rover - 1;
	}

	do {
		if (rover == 0)
			rover++;
112

113 114
		if (rover == RDS_FLAG_PROBE_PORT)
			continue;
115 116 117
		__rds_create_bind_key(key, addr, cpu_to_be16(rover),
				      scope_id);
		if (rhashtable_lookup_fast(&bind_hash_table, key, ht_parms))
118 119
			continue;

120 121
		memcpy(rs->rs_bound_key, key, sizeof(rs->rs_bound_key));
		rs->rs_bound_addr = *addr;
122 123
		net_get_random_once(&rs->rs_hash_initval,
				    sizeof(rs->rs_hash_initval));
124 125 126 127 128
		rs->rs_bound_port = cpu_to_be16(rover);
		rs->rs_bound_node.next = NULL;
		rds_sock_addref(rs);
		if (!rhashtable_insert_fast(&bind_hash_table,
					    &rs->rs_bound_node, ht_parms)) {
129
			*port = rs->rs_bound_port;
A
Andy Grover 已提交
130
			ret = 0;
131 132
			rdsdebug("rs %p binding to %pI4:%d\n",
			  rs, &addr, (int)ntohs(*port));
A
Andy Grover 已提交
133
			break;
134
		} else {
135
			rs->rs_bound_addr = in6addr_any;
136 137 138
			rds_sock_put(rs);
			ret = -ENOMEM;
			break;
A
Andy Grover 已提交
139 140 141 142 143 144 145 146 147
		}
	} while (rover++ != last);

	return ret;
}

void rds_remove_bound(struct rds_sock *rs)
{

148
	if (ipv6_addr_any(&rs->rs_bound_addr))
149
		return;
A
Andy Grover 已提交
150

151
	rdsdebug("rs %p unbinding from %pI6c:%d\n",
152 153
		 rs, &rs->rs_bound_addr,
		 ntohs(rs->rs_bound_port));
A
Andy Grover 已提交
154

155 156
	rhashtable_remove_fast(&bind_hash_table, &rs->rs_bound_node, ht_parms);
	rds_sock_put(rs);
157
	rs->rs_bound_addr = in6addr_any;
A
Andy Grover 已提交
158 159 160 161 162 163
}

int rds_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
{
	struct sock *sk = sock->sk;
	struct rds_sock *rs = rds_sk_to_rs(sk);
164
	struct in6_addr v6addr, *binding_addr;
A
Andy Grover 已提交
165
	struct rds_transport *trans;
166
	__u32 scope_id = 0;
A
Andy Grover 已提交
167
	int ret = 0;
168
	__be16 port;
A
Andy Grover 已提交
169

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
	/* We only allow an RDS socket to be bound to an IPv4 address. IPv6
	 * address support will be added later.
	 */
	if (addr_len == sizeof(struct sockaddr_in)) {
		struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;

		if (sin->sin_family != AF_INET ||
		    sin->sin_addr.s_addr == htonl(INADDR_ANY))
			return -EINVAL;
		ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &v6addr);
		binding_addr = &v6addr;
		port = sin->sin_port;
	} else if (addr_len == sizeof(struct sockaddr_in6)) {
		return -EPROTONOSUPPORT;
	} else {
		return -EINVAL;
	}
A
Andy Grover 已提交
187 188
	lock_sock(sk);

189 190
	/* RDS socket does not allow re-binding. */
	if (!ipv6_addr_any(&rs->rs_bound_addr)) {
A
Andy Grover 已提交
191 192 193 194
		ret = -EINVAL;
		goto out;
	}

195
	ret = rds_add_bound(rs, binding_addr, &port, scope_id);
A
Andy Grover 已提交
196 197 198
	if (ret)
		goto out;

199
	if (rs->rs_transport) { /* previously bound */
200 201
		trans = rs->rs_transport;
		if (trans->laddr_check(sock_net(sock->sk),
202
				       binding_addr, scope_id) != 0) {
203 204 205 206 207
			ret = -ENOPROTOOPT;
			rds_remove_bound(rs);
		} else {
			ret = 0;
		}
208 209
		goto out;
	}
210 211
	trans = rds_trans_get_preferred(sock_net(sock->sk), binding_addr,
					scope_id);
212
	if (!trans) {
A
Andy Grover 已提交
213 214
		ret = -EADDRNOTAVAIL;
		rds_remove_bound(rs);
215 216
		pr_info_ratelimited("RDS: %s could not find a transport for %pI6c, load rds_tcp or rds_rdma?\n",
				    __func__, binding_addr);
A
Andy Grover 已提交
217 218 219 220 221 222 223 224 225 226
		goto out;
	}

	rs->rs_transport = trans;
	ret = 0;

out:
	release_sock(sk);
	return ret;
}
227

228
void rds_bind_lock_destroy(void)
229
{
230 231
	rhashtable_destroy(&bind_hash_table);
}
232

233 234 235
int rds_bind_lock_init(void)
{
	return rhashtable_init(&bind_hash_table, &ht_parms);
236
}