blob: 0298fe2ad6d323b377b46d5dc70c8d472d899966 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howellsbe6e6702016-04-04 14:00:32 +01002/* RxRPC remote transport endpoint record management
David Howells17926a72007-04-26 15:48:28 -07003 *
David Howellsbe6e6702016-04-04 14:00:32 +01004 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
David Howells17926a72007-04-26 15:48:28 -07005 * Written by David Howells (dhowells@redhat.com)
David Howells17926a72007-04-26 15:48:28 -07006 */
7
Joe Perches9b6d5392016-06-02 12:08:52 -07008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
David Howells17926a72007-04-26 15:48:28 -070010#include <linux/module.h>
11#include <linux/net.h>
12#include <linux/skbuff.h>
13#include <linux/udp.h>
14#include <linux/in.h>
David Howells75b54cb2016-09-13 08:49:05 +010015#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
David Howellsbe6e6702016-04-04 14:00:32 +010017#include <linux/hashtable.h>
David Howells17926a72007-04-26 15:48:28 -070018#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include <net/ip.h>
David Howells224711d2007-05-04 12:41:11 -070021#include <net/route.h>
David Howells75b54cb2016-09-13 08:49:05 +010022#include <net/ip6_route.h>
David Howells17926a72007-04-26 15:48:28 -070023#include "ar-internal.h"
24
David Howellsbe6e6702016-04-04 14:00:32 +010025/*
26 * Hash a peer key.
27 */
28static unsigned long rxrpc_peer_hash_key(struct rxrpc_local *local,
29 const struct sockaddr_rxrpc *srx)
30{
31 const u16 *p;
32 unsigned int i, size;
33 unsigned long hash_key;
34
35 _enter("");
36
37 hash_key = (unsigned long)local / __alignof__(*local);
38 hash_key += srx->transport_type;
39 hash_key += srx->transport_len;
40 hash_key += srx->transport.family;
41
42 switch (srx->transport.family) {
43 case AF_INET:
44 hash_key += (u16 __force)srx->transport.sin.sin_port;
45 size = sizeof(srx->transport.sin.sin_addr);
46 p = (u16 *)&srx->transport.sin.sin_addr;
47 break;
David Howellsd1912742016-09-17 07:26:01 +010048#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +010049 case AF_INET6:
50 hash_key += (u16 __force)srx->transport.sin.sin_port;
51 size = sizeof(srx->transport.sin6.sin6_addr);
52 p = (u16 *)&srx->transport.sin6.sin6_addr;
53 break;
David Howellsd1912742016-09-17 07:26:01 +010054#endif
Arnd Bergmann2f9f9f52016-06-17 11:55:22 +020055 default:
56 WARN(1, "AF_RXRPC: Unsupported transport address family\n");
57 return 0;
David Howellsbe6e6702016-04-04 14:00:32 +010058 }
59
60 /* Step through the peer address in 16-bit portions for speed */
61 for (i = 0; i < size; i += sizeof(*p), p++)
62 hash_key += *p;
63
64 _leave(" 0x%lx", hash_key);
65 return hash_key;
66}
67
68/*
69 * Compare a peer to a key. Return -ve, 0 or +ve to indicate less than, same
70 * or greater than.
71 *
72 * Unfortunately, the primitives in linux/hashtable.h don't allow for sorted
73 * buckets and mid-bucket insertion, so we don't make full use of this
74 * information at this point.
75 */
76static long rxrpc_peer_cmp_key(const struct rxrpc_peer *peer,
77 struct rxrpc_local *local,
78 const struct sockaddr_rxrpc *srx,
79 unsigned long hash_key)
80{
81 long diff;
82
83 diff = ((peer->hash_key - hash_key) ?:
84 ((unsigned long)peer->local - (unsigned long)local) ?:
85 (peer->srx.transport_type - srx->transport_type) ?:
86 (peer->srx.transport_len - srx->transport_len) ?:
87 (peer->srx.transport.family - srx->transport.family));
88 if (diff != 0)
89 return diff;
90
91 switch (srx->transport.family) {
92 case AF_INET:
93 return ((u16 __force)peer->srx.transport.sin.sin_port -
94 (u16 __force)srx->transport.sin.sin_port) ?:
95 memcmp(&peer->srx.transport.sin.sin_addr,
96 &srx->transport.sin.sin_addr,
97 sizeof(struct in_addr));
David Howellsd1912742016-09-17 07:26:01 +010098#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +010099 case AF_INET6:
100 return ((u16 __force)peer->srx.transport.sin6.sin6_port -
101 (u16 __force)srx->transport.sin6.sin6_port) ?:
102 memcmp(&peer->srx.transport.sin6.sin6_addr,
103 &srx->transport.sin6.sin6_addr,
104 sizeof(struct in6_addr));
David Howellsd1912742016-09-17 07:26:01 +0100105#endif
David Howellsbe6e6702016-04-04 14:00:32 +0100106 default:
107 BUG();
108 }
109}
110
111/*
112 * Look up a remote transport endpoint for the specified address using RCU.
113 */
114static struct rxrpc_peer *__rxrpc_lookup_peer_rcu(
115 struct rxrpc_local *local,
116 const struct sockaddr_rxrpc *srx,
117 unsigned long hash_key)
118{
119 struct rxrpc_peer *peer;
David Howells2baec2c2017-05-24 17:02:32 +0100120 struct rxrpc_net *rxnet = local->rxnet;
David Howellsbe6e6702016-04-04 14:00:32 +0100121
David Howells2baec2c2017-05-24 17:02:32 +0100122 hash_for_each_possible_rcu(rxnet->peer_hash, peer, hash_link, hash_key) {
David Howells0099dc52018-09-27 15:13:09 +0100123 if (rxrpc_peer_cmp_key(peer, local, srx, hash_key) == 0 &&
124 atomic_read(&peer->usage) > 0)
David Howellsbe6e6702016-04-04 14:00:32 +0100125 return peer;
David Howellsbe6e6702016-04-04 14:00:32 +0100126 }
127
128 return NULL;
129}
130
131/*
132 * Look up a remote transport endpoint for the specified address using RCU.
133 */
134struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *local,
135 const struct sockaddr_rxrpc *srx)
136{
137 struct rxrpc_peer *peer;
138 unsigned long hash_key = rxrpc_peer_hash_key(local, srx);
139
140 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
141 if (peer) {
David Howells75b54cb2016-09-13 08:49:05 +0100142 _net("PEER %d {%pISp}", peer->debug_id, &peer->srx.transport);
David Howellsbe6e6702016-04-04 14:00:32 +0100143 _leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
144 }
145 return peer;
146}
David Howells17926a72007-04-26 15:48:28 -0700147
148/*
David Howells224711d2007-05-04 12:41:11 -0700149 * assess the MTU size for the network interface through which this peer is
150 * reached
151 */
David Howells5e33a232018-10-05 14:05:34 +0100152static void rxrpc_assess_MTU_size(struct rxrpc_sock *rx,
153 struct rxrpc_peer *peer)
David Howells224711d2007-05-04 12:41:11 -0700154{
David Howells5e33a232018-10-05 14:05:34 +0100155 struct net *net = sock_net(&rx->sk);
David Howells75b54cb2016-09-13 08:49:05 +0100156 struct dst_entry *dst;
David Howells224711d2007-05-04 12:41:11 -0700157 struct rtable *rt;
David Howells75b54cb2016-09-13 08:49:05 +0100158 struct flowi fl;
159 struct flowi4 *fl4 = &fl.u.ip4;
David Howellsd1912742016-09-17 07:26:01 +0100160#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100161 struct flowi6 *fl6 = &fl.u.ip6;
David Howellsd1912742016-09-17 07:26:01 +0100162#endif
David Howells224711d2007-05-04 12:41:11 -0700163
164 peer->if_mtu = 1500;
165
David Howells75b54cb2016-09-13 08:49:05 +0100166 memset(&fl, 0, sizeof(fl));
167 switch (peer->srx.transport.family) {
168 case AF_INET:
169 rt = ip_route_output_ports(
David Howells5e33a232018-10-05 14:05:34 +0100170 net, fl4, NULL,
David Howells75b54cb2016-09-13 08:49:05 +0100171 peer->srx.transport.sin.sin_addr.s_addr, 0,
172 htons(7000), htons(7001), IPPROTO_UDP, 0, 0);
173 if (IS_ERR(rt)) {
174 _leave(" [route err %ld]", PTR_ERR(rt));
175 return;
176 }
177 dst = &rt->dst;
178 break;
179
David Howellsd1912742016-09-17 07:26:01 +0100180#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100181 case AF_INET6:
182 fl6->flowi6_iif = LOOPBACK_IFINDEX;
183 fl6->flowi6_scope = RT_SCOPE_UNIVERSE;
184 fl6->flowi6_proto = IPPROTO_UDP;
185 memcpy(&fl6->daddr, &peer->srx.transport.sin6.sin6_addr,
186 sizeof(struct in6_addr));
187 fl6->fl6_dport = htons(7001);
188 fl6->fl6_sport = htons(7000);
David Howells5e33a232018-10-05 14:05:34 +0100189 dst = ip6_route_output(net, NULL, fl6);
David Howells07096f62016-10-13 08:43:17 +0100190 if (dst->error) {
191 _leave(" [route err %d]", dst->error);
David Howells75b54cb2016-09-13 08:49:05 +0100192 return;
193 }
194 break;
David Howellsd1912742016-09-17 07:26:01 +0100195#endif
David Howells75b54cb2016-09-13 08:49:05 +0100196
197 default:
198 BUG();
David Howells224711d2007-05-04 12:41:11 -0700199 }
200
David Howells75b54cb2016-09-13 08:49:05 +0100201 peer->if_mtu = dst_mtu(dst);
202 dst_release(dst);
David Howells224711d2007-05-04 12:41:11 -0700203
David Howellsa6a62b62007-05-10 03:15:25 -0700204 _leave(" [if_mtu %u]", peer->if_mtu);
David Howells224711d2007-05-04 12:41:11 -0700205}
206
207/*
David Howellsbe6e6702016-04-04 14:00:32 +0100208 * Allocate a peer.
David Howells17926a72007-04-26 15:48:28 -0700209 */
David Howellsbe6e6702016-04-04 14:00:32 +0100210struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *local, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700211{
David Howells033b2c7f2019-10-03 17:45:57 +0100212 const void *here = __builtin_return_address(0);
David Howells17926a72007-04-26 15:48:28 -0700213 struct rxrpc_peer *peer;
214
215 _enter("");
216
217 peer = kzalloc(sizeof(struct rxrpc_peer), gfp);
218 if (peer) {
David Howellsbe6e6702016-04-04 14:00:32 +0100219 atomic_set(&peer->usage, 1);
David Howells9ebedde2019-10-07 10:58:29 +0100220 peer->local = rxrpc_get_local(local);
David Howellsf66d7492016-04-04 14:00:34 +0100221 INIT_HLIST_HEAD(&peer->error_targets);
David Howellsaa390bb2016-06-17 10:06:56 +0100222 peer->service_conns = RB_ROOT;
David Howells8496af52016-07-01 07:51:50 +0100223 seqlock_init(&peer->service_conn_lock);
David Howells17926a72007-04-26 15:48:28 -0700224 spin_lock_init(&peer->lock);
David Howellsc1e15b42018-10-08 15:46:25 +0100225 spin_lock_init(&peer->rtt_input_lock);
David Howells17926a72007-04-26 15:48:28 -0700226 peer->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howellsf7aec122017-06-14 17:56:50 +0100227
David Howellsc410bf012020-05-11 14:54:34 +0100228 rxrpc_peer_init_rtt(peer);
229
David Howellsf7aec122017-06-14 17:56:50 +0100230 if (RXRPC_TX_SMSS > 2190)
231 peer->cong_cwnd = 2;
232 else if (RXRPC_TX_SMSS > 1095)
233 peer->cong_cwnd = 3;
234 else
235 peer->cong_cwnd = 4;
David S. Miller2f184392019-10-19 22:51:25 -0700236 trace_rxrpc_peer(peer->debug_id, rxrpc_peer_new, 1, here);
David Howellsbe6e6702016-04-04 14:00:32 +0100237 }
238
239 _leave(" = %p", peer);
240 return peer;
241}
242
243/*
David Howells248f2192016-09-08 11:10:12 +0100244 * Initialise peer record.
245 */
David Howells5e33a232018-10-05 14:05:34 +0100246static void rxrpc_init_peer(struct rxrpc_sock *rx, struct rxrpc_peer *peer,
247 unsigned long hash_key)
David Howells248f2192016-09-08 11:10:12 +0100248{
David Howells08a39682016-09-13 22:36:21 +0100249 peer->hash_key = hash_key;
David Howells5e33a232018-10-05 14:05:34 +0100250 rxrpc_assess_MTU_size(rx, peer);
David Howells248f2192016-09-08 11:10:12 +0100251 peer->mtu = peer->if_mtu;
David Howells0d4b1032016-09-22 00:29:31 +0100252 peer->rtt_last_req = ktime_get_real();
David Howells248f2192016-09-08 11:10:12 +0100253
David Howells75b54cb2016-09-13 08:49:05 +0100254 switch (peer->srx.transport.family) {
255 case AF_INET:
David Howells248f2192016-09-08 11:10:12 +0100256 peer->hdrsize = sizeof(struct iphdr);
David Howells75b54cb2016-09-13 08:49:05 +0100257 break;
David Howellsd1912742016-09-17 07:26:01 +0100258#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100259 case AF_INET6:
260 peer->hdrsize = sizeof(struct ipv6hdr);
261 break;
David Howellsd1912742016-09-17 07:26:01 +0100262#endif
David Howells75b54cb2016-09-13 08:49:05 +0100263 default:
264 BUG();
265 }
266
267 switch (peer->srx.transport_type) {
268 case SOCK_DGRAM:
269 peer->hdrsize += sizeof(struct udphdr);
270 break;
271 default:
David Howells248f2192016-09-08 11:10:12 +0100272 BUG();
273 }
274
275 peer->hdrsize += sizeof(struct rxrpc_wire_header);
276 peer->maxdata = peer->mtu - peer->hdrsize;
277}
278
279/*
David Howellsbe6e6702016-04-04 14:00:32 +0100280 * Set up a new peer.
281 */
David Howells5e33a232018-10-05 14:05:34 +0100282static struct rxrpc_peer *rxrpc_create_peer(struct rxrpc_sock *rx,
283 struct rxrpc_local *local,
David Howellsbe6e6702016-04-04 14:00:32 +0100284 struct sockaddr_rxrpc *srx,
285 unsigned long hash_key,
286 gfp_t gfp)
287{
288 struct rxrpc_peer *peer;
289
290 _enter("");
291
292 peer = rxrpc_alloc_peer(local, gfp);
293 if (peer) {
David Howells17926a72007-04-26 15:48:28 -0700294 memcpy(&peer->srx, srx, sizeof(*srx));
David Howells5e33a232018-10-05 14:05:34 +0100295 rxrpc_init_peer(rx, peer, hash_key);
David Howells17926a72007-04-26 15:48:28 -0700296 }
297
298 _leave(" = %p", peer);
299 return peer;
300}
301
Eiichi Tsukatabeacff52021-11-21 04:16:08 +0000302static void rxrpc_free_peer(struct rxrpc_peer *peer)
303{
304 rxrpc_put_local(peer->local);
305 kfree_rcu(peer, rcu);
306}
307
David Howells17926a72007-04-26 15:48:28 -0700308/*
David Howells0099dc52018-09-27 15:13:09 +0100309 * Set up a new incoming peer. There shouldn't be any other matching peers
310 * since we've already done a search in the list from the non-reentrant context
311 * (the data_ready handler) that is the only place we can add new peers.
David Howells248f2192016-09-08 11:10:12 +0100312 */
David Howells5e33a232018-10-05 14:05:34 +0100313void rxrpc_new_incoming_peer(struct rxrpc_sock *rx, struct rxrpc_local *local,
314 struct rxrpc_peer *peer)
David Howells248f2192016-09-08 11:10:12 +0100315{
David Howells2baec2c2017-05-24 17:02:32 +0100316 struct rxrpc_net *rxnet = local->rxnet;
David Howells248f2192016-09-08 11:10:12 +0100317 unsigned long hash_key;
318
David Howells0099dc52018-09-27 15:13:09 +0100319 hash_key = rxrpc_peer_hash_key(local, &peer->srx);
David Howells5e33a232018-10-05 14:05:34 +0100320 rxrpc_init_peer(rx, peer, hash_key);
David Howells248f2192016-09-08 11:10:12 +0100321
David Howells2baec2c2017-05-24 17:02:32 +0100322 spin_lock(&rxnet->peer_hash_lock);
David Howells0099dc52018-09-27 15:13:09 +0100323 hash_add_rcu(rxnet->peer_hash, &peer->hash_link, hash_key);
324 list_add_tail(&peer->keepalive_link, &rxnet->peer_keepalive_new);
David Howells2baec2c2017-05-24 17:02:32 +0100325 spin_unlock(&rxnet->peer_hash_lock);
David Howells248f2192016-09-08 11:10:12 +0100326}
327
328/*
David Howells17926a72007-04-26 15:48:28 -0700329 * obtain a remote transport endpoint for the specified address
330 */
David Howells5e33a232018-10-05 14:05:34 +0100331struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_sock *rx,
332 struct rxrpc_local *local,
David Howellsbe6e6702016-04-04 14:00:32 +0100333 struct sockaddr_rxrpc *srx, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700334{
335 struct rxrpc_peer *peer, *candidate;
David Howells2baec2c2017-05-24 17:02:32 +0100336 struct rxrpc_net *rxnet = local->rxnet;
David Howellsbe6e6702016-04-04 14:00:32 +0100337 unsigned long hash_key = rxrpc_peer_hash_key(local, srx);
David Howells17926a72007-04-26 15:48:28 -0700338
David Howells75b54cb2016-09-13 08:49:05 +0100339 _enter("{%pISp}", &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700340
341 /* search the peer list first */
David Howellsbe6e6702016-04-04 14:00:32 +0100342 rcu_read_lock();
343 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
344 if (peer && !rxrpc_get_peer_maybe(peer))
345 peer = NULL;
346 rcu_read_unlock();
David Howells17926a72007-04-26 15:48:28 -0700347
David Howellsbe6e6702016-04-04 14:00:32 +0100348 if (!peer) {
349 /* The peer is not yet present in hash - create a candidate
350 * for a new record and then redo the search.
351 */
David Howells5e33a232018-10-05 14:05:34 +0100352 candidate = rxrpc_create_peer(rx, local, srx, hash_key, gfp);
David Howellsbe6e6702016-04-04 14:00:32 +0100353 if (!candidate) {
354 _leave(" = NULL [nomem]");
355 return NULL;
356 }
David Howells17926a72007-04-26 15:48:28 -0700357
David Howells2baec2c2017-05-24 17:02:32 +0100358 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100359
360 /* Need to check that we aren't racing with someone else */
361 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
362 if (peer && !rxrpc_get_peer_maybe(peer))
363 peer = NULL;
David Howellsace45be2018-03-30 21:04:43 +0100364 if (!peer) {
David Howells2baec2c2017-05-24 17:02:32 +0100365 hash_add_rcu(rxnet->peer_hash,
David Howellsbe6e6702016-04-04 14:00:32 +0100366 &candidate->hash_link, hash_key);
David Howells330bdcf2018-08-08 11:30:02 +0100367 list_add_tail(&candidate->keepalive_link,
368 &rxnet->peer_keepalive_new);
David Howellsace45be2018-03-30 21:04:43 +0100369 }
David Howellsbe6e6702016-04-04 14:00:32 +0100370
David Howells2baec2c2017-05-24 17:02:32 +0100371 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100372
373 if (peer)
Eiichi Tsukatabeacff52021-11-21 04:16:08 +0000374 rxrpc_free_peer(candidate);
David Howellsbe6e6702016-04-04 14:00:32 +0100375 else
376 peer = candidate;
David Howells17926a72007-04-26 15:48:28 -0700377 }
378
David Howells75b54cb2016-09-13 08:49:05 +0100379 _net("PEER %d {%pISp}", peer->debug_id, &peer->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700380
David Howellsbe6e6702016-04-04 14:00:32 +0100381 _leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
David Howells17926a72007-04-26 15:48:28 -0700382 return peer;
David Howells17926a72007-04-26 15:48:28 -0700383}
384
385/*
David Howells1159d4b2018-03-30 21:05:38 +0100386 * Get a ref on a peer record.
David Howells17926a72007-04-26 15:48:28 -0700387 */
David Howells1159d4b2018-03-30 21:05:38 +0100388struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
389{
390 const void *here = __builtin_return_address(0);
391 int n;
392
393 n = atomic_inc_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100394 trace_rxrpc_peer(peer->debug_id, rxrpc_peer_got, n, here);
David Howells1159d4b2018-03-30 21:05:38 +0100395 return peer;
396}
397
398/*
399 * Get a ref on a peer record unless its usage has already reached 0.
400 */
401struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
402{
403 const void *here = __builtin_return_address(0);
404
405 if (peer) {
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100406 int n = atomic_fetch_add_unless(&peer->usage, 1, 0);
David Howells1159d4b2018-03-30 21:05:38 +0100407 if (n > 0)
David Howells55f6c98e2019-10-07 10:58:29 +0100408 trace_rxrpc_peer(peer->debug_id, rxrpc_peer_got, n + 1, here);
David Howells1159d4b2018-03-30 21:05:38 +0100409 else
410 peer = NULL;
411 }
412 return peer;
413}
414
415/*
David Howells1159d4b2018-03-30 21:05:38 +0100416 * Discard a peer record.
417 */
418static void __rxrpc_put_peer(struct rxrpc_peer *peer)
David Howells17926a72007-04-26 15:48:28 -0700419{
David Howells2baec2c2017-05-24 17:02:32 +0100420 struct rxrpc_net *rxnet = peer->local->rxnet;
421
David Howellsf66d7492016-04-04 14:00:34 +0100422 ASSERT(hlist_empty(&peer->error_targets));
David Howells17926a72007-04-26 15:48:28 -0700423
David Howells2baec2c2017-05-24 17:02:32 +0100424 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100425 hash_del_rcu(&peer->hash_link);
David Howells330bdcf2018-08-08 11:30:02 +0100426 list_del_init(&peer->keepalive_link);
David Howells2baec2c2017-05-24 17:02:32 +0100427 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howells17926a72007-04-26 15:48:28 -0700428
Eiichi Tsukatabeacff52021-11-21 04:16:08 +0000429 rxrpc_free_peer(peer);
David Howells17926a72007-04-26 15:48:28 -0700430}
David Howells8324f0b2016-08-30 09:49:29 +0100431
David Howells1159d4b2018-03-30 21:05:38 +0100432/*
433 * Drop a ref on a peer record.
434 */
435void rxrpc_put_peer(struct rxrpc_peer *peer)
436{
437 const void *here = __builtin_return_address(0);
David Howells55f6c98e2019-10-07 10:58:29 +0100438 unsigned int debug_id;
David Howells1159d4b2018-03-30 21:05:38 +0100439 int n;
440
441 if (peer) {
David Howells55f6c98e2019-10-07 10:58:29 +0100442 debug_id = peer->debug_id;
David Howells1159d4b2018-03-30 21:05:38 +0100443 n = atomic_dec_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100444 trace_rxrpc_peer(debug_id, rxrpc_peer_put, n, here);
David Howells1159d4b2018-03-30 21:05:38 +0100445 if (n == 0)
446 __rxrpc_put_peer(peer);
447 }
448}
449
David Howells17226f12018-03-30 21:05:44 +0100450/*
David Howells60034d3d2019-07-30 14:42:50 +0100451 * Drop a ref on a peer record where the caller already holds the
452 * peer_hash_lock.
453 */
454void rxrpc_put_peer_locked(struct rxrpc_peer *peer)
455{
456 const void *here = __builtin_return_address(0);
David Howells55f6c98e2019-10-07 10:58:29 +0100457 unsigned int debug_id = peer->debug_id;
David Howells60034d3d2019-07-30 14:42:50 +0100458 int n;
459
460 n = atomic_dec_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100461 trace_rxrpc_peer(debug_id, rxrpc_peer_put, n, here);
David Howells60034d3d2019-07-30 14:42:50 +0100462 if (n == 0) {
463 hash_del_rcu(&peer->hash_link);
464 list_del_init(&peer->keepalive_link);
Eiichi Tsukatabeacff52021-11-21 04:16:08 +0000465 rxrpc_free_peer(peer);
David Howells60034d3d2019-07-30 14:42:50 +0100466 }
467}
468
469/*
David Howells17226f12018-03-30 21:05:44 +0100470 * Make sure all peer records have been discarded.
471 */
472void rxrpc_destroy_all_peers(struct rxrpc_net *rxnet)
473{
474 struct rxrpc_peer *peer;
475 int i;
476
477 for (i = 0; i < HASH_SIZE(rxnet->peer_hash); i++) {
478 if (hlist_empty(&rxnet->peer_hash[i]))
479 continue;
480
481 hlist_for_each_entry(peer, &rxnet->peer_hash[i], hash_link) {
482 pr_err("Leaked peer %u {%u} %pISp\n",
483 peer->debug_id,
484 atomic_read(&peer->usage),
485 &peer->srx.transport);
486 }
487 }
488}
489
David Howells8324f0b2016-08-30 09:49:29 +0100490/**
491 * rxrpc_kernel_get_peer - Get the peer address of a call
492 * @sock: The socket on which the call is in progress.
493 * @call: The call to query
494 * @_srx: Where to place the result
495 *
496 * Get the address of the remote peer in a call.
497 */
498void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
499 struct sockaddr_rxrpc *_srx)
500{
501 *_srx = call->peer->srx;
502}
503EXPORT_SYMBOL(rxrpc_kernel_get_peer);
David Howellsf4d15fb2017-10-18 11:07:31 +0100504
505/**
David Howellsc410bf012020-05-11 14:54:34 +0100506 * rxrpc_kernel_get_srtt - Get a call's peer smoothed RTT
David Howellsf4d15fb2017-10-18 11:07:31 +0100507 * @sock: The socket on which the call is in progress.
508 * @call: The call to query
David Howells1d4adfa2020-08-20 15:13:00 +0100509 * @_srtt: Where to store the SRTT value.
David Howellsf4d15fb2017-10-18 11:07:31 +0100510 *
David Howells1d4adfa2020-08-20 15:13:00 +0100511 * Get the call's peer smoothed RTT in uS.
David Howellsf4d15fb2017-10-18 11:07:31 +0100512 */
David Howells1d4adfa2020-08-20 15:13:00 +0100513bool rxrpc_kernel_get_srtt(struct socket *sock, struct rxrpc_call *call,
514 u32 *_srtt)
David Howellsf4d15fb2017-10-18 11:07:31 +0100515{
David Howells1d4adfa2020-08-20 15:13:00 +0100516 struct rxrpc_peer *peer = call->peer;
517
518 if (peer->rtt_count == 0) {
519 *_srtt = 1000000; /* 1S */
520 return false;
521 }
522
523 *_srtt = call->peer->srtt_us >> 3;
524 return true;
David Howellsf4d15fb2017-10-18 11:07:31 +0100525}
David Howellsc410bf012020-05-11 14:54:34 +0100526EXPORT_SYMBOL(rxrpc_kernel_get_srtt);