1 /* RxRPC remote transport endpoint record management
3 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/module.h>
15 #include <linux/net.h>
16 #include <linux/skbuff.h>
17 #include <linux/udp.h>
19 #include <linux/slab.h>
20 #include <linux/hashtable.h>
22 #include <net/af_rxrpc.h>
24 #include <net/route.h>
25 #include "ar-internal.h"
27 static DEFINE_HASHTABLE(rxrpc_peer_hash
, 10);
28 static DEFINE_SPINLOCK(rxrpc_peer_hash_lock
);
33 static unsigned long rxrpc_peer_hash_key(struct rxrpc_local
*local
,
34 const struct sockaddr_rxrpc
*srx
)
38 unsigned long hash_key
;
42 hash_key
= (unsigned long)local
/ __alignof__(*local
);
43 hash_key
+= srx
->transport_type
;
44 hash_key
+= srx
->transport_len
;
45 hash_key
+= srx
->transport
.family
;
47 switch (srx
->transport
.family
) {
49 hash_key
+= (u16 __force
)srx
->transport
.sin
.sin_port
;
50 size
= sizeof(srx
->transport
.sin
.sin_addr
);
51 p
= (u16
*)&srx
->transport
.sin
.sin_addr
;
54 WARN(1, "AF_RXRPC: Unsupported transport address family\n");
58 /* Step through the peer address in 16-bit portions for speed */
59 for (i
= 0; i
< size
; i
+= sizeof(*p
), p
++)
62 _leave(" 0x%lx", hash_key
);
67 * Compare a peer to a key. Return -ve, 0 or +ve to indicate less than, same
70 * Unfortunately, the primitives in linux/hashtable.h don't allow for sorted
71 * buckets and mid-bucket insertion, so we don't make full use of this
72 * information at this point.
74 static long rxrpc_peer_cmp_key(const struct rxrpc_peer
*peer
,
75 struct rxrpc_local
*local
,
76 const struct sockaddr_rxrpc
*srx
,
77 unsigned long hash_key
)
81 diff
= ((peer
->hash_key
- hash_key
) ?:
82 ((unsigned long)peer
->local
- (unsigned long)local
) ?:
83 (peer
->srx
.transport_type
- srx
->transport_type
) ?:
84 (peer
->srx
.transport_len
- srx
->transport_len
) ?:
85 (peer
->srx
.transport
.family
- srx
->transport
.family
));
89 switch (srx
->transport
.family
) {
91 return ((u16 __force
)peer
->srx
.transport
.sin
.sin_port
-
92 (u16 __force
)srx
->transport
.sin
.sin_port
) ?:
93 memcmp(&peer
->srx
.transport
.sin
.sin_addr
,
94 &srx
->transport
.sin
.sin_addr
,
95 sizeof(struct in_addr
));
102 * Look up a remote transport endpoint for the specified address using RCU.
104 static struct rxrpc_peer
*__rxrpc_lookup_peer_rcu(
105 struct rxrpc_local
*local
,
106 const struct sockaddr_rxrpc
*srx
,
107 unsigned long hash_key
)
109 struct rxrpc_peer
*peer
;
111 hash_for_each_possible_rcu(rxrpc_peer_hash
, peer
, hash_link
, hash_key
) {
112 if (rxrpc_peer_cmp_key(peer
, local
, srx
, hash_key
) == 0) {
113 if (atomic_read(&peer
->usage
) == 0)
123 * Look up a remote transport endpoint for the specified address using RCU.
125 struct rxrpc_peer
*rxrpc_lookup_peer_rcu(struct rxrpc_local
*local
,
126 const struct sockaddr_rxrpc
*srx
)
128 struct rxrpc_peer
*peer
;
129 unsigned long hash_key
= rxrpc_peer_hash_key(local
, srx
);
131 peer
= __rxrpc_lookup_peer_rcu(local
, srx
, hash_key
);
133 switch (srx
->transport
.family
) {
135 _net("PEER %d {%d,%u,%pI4+%hu}",
137 peer
->srx
.transport_type
,
138 peer
->srx
.transport
.family
,
139 &peer
->srx
.transport
.sin
.sin_addr
,
140 ntohs(peer
->srx
.transport
.sin
.sin_port
));
144 _leave(" = %p {u=%d}", peer
, atomic_read(&peer
->usage
));
150 * assess the MTU size for the network interface through which this peer is
153 static void rxrpc_assess_MTU_size(struct rxrpc_peer
*peer
)
160 rt
= ip_route_output_ports(&init_net
, &fl4
, NULL
,
161 peer
->srx
.transport
.sin
.sin_addr
.s_addr
, 0,
162 htons(7000), htons(7001),
165 _leave(" [route err %ld]", PTR_ERR(rt
));
169 peer
->if_mtu
= dst_mtu(&rt
->dst
);
170 dst_release(&rt
->dst
);
172 _leave(" [if_mtu %u]", peer
->if_mtu
);
178 struct rxrpc_peer
*rxrpc_alloc_peer(struct rxrpc_local
*local
, gfp_t gfp
)
180 struct rxrpc_peer
*peer
;
184 peer
= kzalloc(sizeof(struct rxrpc_peer
), gfp
);
186 atomic_set(&peer
->usage
, 1);
188 INIT_HLIST_HEAD(&peer
->error_targets
);
189 INIT_WORK(&peer
->error_distributor
,
190 &rxrpc_peer_error_distributor
);
191 peer
->service_conns
= RB_ROOT
;
192 seqlock_init(&peer
->service_conn_lock
);
193 spin_lock_init(&peer
->lock
);
194 peer
->debug_id
= atomic_inc_return(&rxrpc_debug_id
);
197 _leave(" = %p", peer
);
204 static struct rxrpc_peer
*rxrpc_create_peer(struct rxrpc_local
*local
,
205 struct sockaddr_rxrpc
*srx
,
206 unsigned long hash_key
,
209 struct rxrpc_peer
*peer
;
213 peer
= rxrpc_alloc_peer(local
, gfp
);
215 peer
->hash_key
= hash_key
;
216 memcpy(&peer
->srx
, srx
, sizeof(*srx
));
218 rxrpc_assess_MTU_size(peer
);
219 peer
->mtu
= peer
->if_mtu
;
221 if (srx
->transport
.family
== AF_INET
) {
222 peer
->hdrsize
= sizeof(struct iphdr
);
223 switch (srx
->transport_type
) {
225 peer
->hdrsize
+= sizeof(struct udphdr
);
235 peer
->hdrsize
+= sizeof(struct rxrpc_wire_header
);
236 peer
->maxdata
= peer
->mtu
- peer
->hdrsize
;
239 _leave(" = %p", peer
);
244 * obtain a remote transport endpoint for the specified address
246 struct rxrpc_peer
*rxrpc_lookup_peer(struct rxrpc_local
*local
,
247 struct sockaddr_rxrpc
*srx
, gfp_t gfp
)
249 struct rxrpc_peer
*peer
, *candidate
;
250 unsigned long hash_key
= rxrpc_peer_hash_key(local
, srx
);
252 _enter("{%d,%d,%pI4+%hu}",
255 &srx
->transport
.sin
.sin_addr
,
256 ntohs(srx
->transport
.sin
.sin_port
));
258 /* search the peer list first */
260 peer
= __rxrpc_lookup_peer_rcu(local
, srx
, hash_key
);
261 if (peer
&& !rxrpc_get_peer_maybe(peer
))
266 /* The peer is not yet present in hash - create a candidate
267 * for a new record and then redo the search.
269 candidate
= rxrpc_create_peer(local
, srx
, hash_key
, gfp
);
271 _leave(" = NULL [nomem]");
275 spin_lock(&rxrpc_peer_hash_lock
);
277 /* Need to check that we aren't racing with someone else */
278 peer
= __rxrpc_lookup_peer_rcu(local
, srx
, hash_key
);
279 if (peer
&& !rxrpc_get_peer_maybe(peer
))
282 hash_add_rcu(rxrpc_peer_hash
,
283 &candidate
->hash_link
, hash_key
);
285 spin_unlock(&rxrpc_peer_hash_lock
);
293 _net("PEER %d {%d,%pI4+%hu}",
295 peer
->srx
.transport_type
,
296 &peer
->srx
.transport
.sin
.sin_addr
,
297 ntohs(peer
->srx
.transport
.sin
.sin_port
));
299 _leave(" = %p {u=%d}", peer
, atomic_read(&peer
->usage
));
304 * Discard a ref on a remote peer record.
306 void __rxrpc_put_peer(struct rxrpc_peer
*peer
)
308 ASSERT(hlist_empty(&peer
->error_targets
));
310 spin_lock(&rxrpc_peer_hash_lock
);
311 hash_del_rcu(&peer
->hash_link
);
312 spin_unlock(&rxrpc_peer_hash_lock
);
314 kfree_rcu(peer
, rcu
);