blob: 64830d8c1fdb5cf21497e89b812a18aa5fb9c143 [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{
212 struct rxrpc_peer *peer;
213
214 _enter("");
215
216 peer = kzalloc(sizeof(struct rxrpc_peer), gfp);
217 if (peer) {
David Howellsbe6e6702016-04-04 14:00:32 +0100218 atomic_set(&peer->usage, 1);
David Howells9ebedde2019-10-07 10:58:29 +0100219 peer->local = rxrpc_get_local(local);
David Howellsf66d7492016-04-04 14:00:34 +0100220 INIT_HLIST_HEAD(&peer->error_targets);
David Howellsaa390bb2016-06-17 10:06:56 +0100221 peer->service_conns = RB_ROOT;
David Howells8496af52016-07-01 07:51:50 +0100222 seqlock_init(&peer->service_conn_lock);
David Howells17926a72007-04-26 15:48:28 -0700223 spin_lock_init(&peer->lock);
David Howellsc1e15b42018-10-08 15:46:25 +0100224 spin_lock_init(&peer->rtt_input_lock);
David Howells17926a72007-04-26 15:48:28 -0700225 peer->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howellsf7aec122017-06-14 17:56:50 +0100226
227 if (RXRPC_TX_SMSS > 2190)
228 peer->cong_cwnd = 2;
229 else if (RXRPC_TX_SMSS > 1095)
230 peer->cong_cwnd = 3;
231 else
232 peer->cong_cwnd = 4;
David Howellsbe6e6702016-04-04 14:00:32 +0100233 }
234
235 _leave(" = %p", peer);
236 return peer;
237}
238
239/*
David Howells248f2192016-09-08 11:10:12 +0100240 * Initialise peer record.
241 */
David Howells5e33a232018-10-05 14:05:34 +0100242static void rxrpc_init_peer(struct rxrpc_sock *rx, struct rxrpc_peer *peer,
243 unsigned long hash_key)
David Howells248f2192016-09-08 11:10:12 +0100244{
David Howells08a39682016-09-13 22:36:21 +0100245 peer->hash_key = hash_key;
David Howells5e33a232018-10-05 14:05:34 +0100246 rxrpc_assess_MTU_size(rx, peer);
David Howells248f2192016-09-08 11:10:12 +0100247 peer->mtu = peer->if_mtu;
David Howells0d4b1032016-09-22 00:29:31 +0100248 peer->rtt_last_req = ktime_get_real();
David Howells248f2192016-09-08 11:10:12 +0100249
David Howells75b54cb2016-09-13 08:49:05 +0100250 switch (peer->srx.transport.family) {
251 case AF_INET:
David Howells248f2192016-09-08 11:10:12 +0100252 peer->hdrsize = sizeof(struct iphdr);
David Howells75b54cb2016-09-13 08:49:05 +0100253 break;
David Howellsd1912742016-09-17 07:26:01 +0100254#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100255 case AF_INET6:
256 peer->hdrsize = sizeof(struct ipv6hdr);
257 break;
David Howellsd1912742016-09-17 07:26:01 +0100258#endif
David Howells75b54cb2016-09-13 08:49:05 +0100259 default:
260 BUG();
261 }
262
263 switch (peer->srx.transport_type) {
264 case SOCK_DGRAM:
265 peer->hdrsize += sizeof(struct udphdr);
266 break;
267 default:
David Howells248f2192016-09-08 11:10:12 +0100268 BUG();
269 }
270
271 peer->hdrsize += sizeof(struct rxrpc_wire_header);
272 peer->maxdata = peer->mtu - peer->hdrsize;
273}
274
275/*
David Howellsbe6e6702016-04-04 14:00:32 +0100276 * Set up a new peer.
277 */
David Howells5e33a232018-10-05 14:05:34 +0100278static struct rxrpc_peer *rxrpc_create_peer(struct rxrpc_sock *rx,
279 struct rxrpc_local *local,
David Howellsbe6e6702016-04-04 14:00:32 +0100280 struct sockaddr_rxrpc *srx,
281 unsigned long hash_key,
282 gfp_t gfp)
283{
284 struct rxrpc_peer *peer;
285
286 _enter("");
287
288 peer = rxrpc_alloc_peer(local, gfp);
289 if (peer) {
David Howells17926a72007-04-26 15:48:28 -0700290 memcpy(&peer->srx, srx, sizeof(*srx));
David Howells5e33a232018-10-05 14:05:34 +0100291 rxrpc_init_peer(rx, peer, hash_key);
David Howells17926a72007-04-26 15:48:28 -0700292 }
293
294 _leave(" = %p", peer);
295 return peer;
296}
297
298/*
David Howells0099dc52018-09-27 15:13:09 +0100299 * Set up a new incoming peer. There shouldn't be any other matching peers
300 * since we've already done a search in the list from the non-reentrant context
301 * (the data_ready handler) that is the only place we can add new peers.
David Howells248f2192016-09-08 11:10:12 +0100302 */
David Howells5e33a232018-10-05 14:05:34 +0100303void rxrpc_new_incoming_peer(struct rxrpc_sock *rx, struct rxrpc_local *local,
304 struct rxrpc_peer *peer)
David Howells248f2192016-09-08 11:10:12 +0100305{
David Howells2baec2c2017-05-24 17:02:32 +0100306 struct rxrpc_net *rxnet = local->rxnet;
David Howells248f2192016-09-08 11:10:12 +0100307 unsigned long hash_key;
308
David Howells0099dc52018-09-27 15:13:09 +0100309 hash_key = rxrpc_peer_hash_key(local, &peer->srx);
David Howells5e33a232018-10-05 14:05:34 +0100310 rxrpc_init_peer(rx, peer, hash_key);
David Howells248f2192016-09-08 11:10:12 +0100311
David Howells2baec2c2017-05-24 17:02:32 +0100312 spin_lock(&rxnet->peer_hash_lock);
David Howells0099dc52018-09-27 15:13:09 +0100313 hash_add_rcu(rxnet->peer_hash, &peer->hash_link, hash_key);
314 list_add_tail(&peer->keepalive_link, &rxnet->peer_keepalive_new);
David Howells2baec2c2017-05-24 17:02:32 +0100315 spin_unlock(&rxnet->peer_hash_lock);
David Howells248f2192016-09-08 11:10:12 +0100316}
317
318/*
David Howells17926a72007-04-26 15:48:28 -0700319 * obtain a remote transport endpoint for the specified address
320 */
David Howells5e33a232018-10-05 14:05:34 +0100321struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_sock *rx,
322 struct rxrpc_local *local,
David Howellsbe6e6702016-04-04 14:00:32 +0100323 struct sockaddr_rxrpc *srx, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700324{
325 struct rxrpc_peer *peer, *candidate;
David Howells2baec2c2017-05-24 17:02:32 +0100326 struct rxrpc_net *rxnet = local->rxnet;
David Howellsbe6e6702016-04-04 14:00:32 +0100327 unsigned long hash_key = rxrpc_peer_hash_key(local, srx);
David Howells17926a72007-04-26 15:48:28 -0700328
David Howells75b54cb2016-09-13 08:49:05 +0100329 _enter("{%pISp}", &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700330
331 /* search the peer list first */
David Howellsbe6e6702016-04-04 14:00:32 +0100332 rcu_read_lock();
333 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
334 if (peer && !rxrpc_get_peer_maybe(peer))
335 peer = NULL;
336 rcu_read_unlock();
David Howells17926a72007-04-26 15:48:28 -0700337
David Howellsbe6e6702016-04-04 14:00:32 +0100338 if (!peer) {
339 /* The peer is not yet present in hash - create a candidate
340 * for a new record and then redo the search.
341 */
David Howells5e33a232018-10-05 14:05:34 +0100342 candidate = rxrpc_create_peer(rx, local, srx, hash_key, gfp);
David Howellsbe6e6702016-04-04 14:00:32 +0100343 if (!candidate) {
344 _leave(" = NULL [nomem]");
345 return NULL;
346 }
David Howells17926a72007-04-26 15:48:28 -0700347
David Howells2baec2c2017-05-24 17:02:32 +0100348 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100349
350 /* Need to check that we aren't racing with someone else */
351 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
352 if (peer && !rxrpc_get_peer_maybe(peer))
353 peer = NULL;
David Howellsace45be2018-03-30 21:04:43 +0100354 if (!peer) {
David Howells2baec2c2017-05-24 17:02:32 +0100355 hash_add_rcu(rxnet->peer_hash,
David Howellsbe6e6702016-04-04 14:00:32 +0100356 &candidate->hash_link, hash_key);
David Howells330bdcf2018-08-08 11:30:02 +0100357 list_add_tail(&candidate->keepalive_link,
358 &rxnet->peer_keepalive_new);
David Howellsace45be2018-03-30 21:04:43 +0100359 }
David Howellsbe6e6702016-04-04 14:00:32 +0100360
David Howells2baec2c2017-05-24 17:02:32 +0100361 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100362
363 if (peer)
364 kfree(candidate);
365 else
366 peer = candidate;
David Howells17926a72007-04-26 15:48:28 -0700367 }
368
David Howells75b54cb2016-09-13 08:49:05 +0100369 _net("PEER %d {%pISp}", peer->debug_id, &peer->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700370
David Howellsbe6e6702016-04-04 14:00:32 +0100371 _leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
David Howells17926a72007-04-26 15:48:28 -0700372 return peer;
David Howells17926a72007-04-26 15:48:28 -0700373}
374
375/*
David Howells1159d4b2018-03-30 21:05:38 +0100376 * Get a ref on a peer record.
David Howells17926a72007-04-26 15:48:28 -0700377 */
David Howells1159d4b2018-03-30 21:05:38 +0100378struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
379{
380 const void *here = __builtin_return_address(0);
381 int n;
382
383 n = atomic_inc_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100384 trace_rxrpc_peer(peer->debug_id, rxrpc_peer_got, n, here);
David Howells1159d4b2018-03-30 21:05:38 +0100385 return peer;
386}
387
388/*
389 * Get a ref on a peer record unless its usage has already reached 0.
390 */
391struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
392{
393 const void *here = __builtin_return_address(0);
394
395 if (peer) {
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100396 int n = atomic_fetch_add_unless(&peer->usage, 1, 0);
David Howells1159d4b2018-03-30 21:05:38 +0100397 if (n > 0)
David Howells55f6c98e2019-10-07 10:58:29 +0100398 trace_rxrpc_peer(peer->debug_id, rxrpc_peer_got, n + 1, here);
David Howells1159d4b2018-03-30 21:05:38 +0100399 else
400 peer = NULL;
401 }
402 return peer;
403}
404
405/*
David Howells1159d4b2018-03-30 21:05:38 +0100406 * Discard a peer record.
407 */
408static void __rxrpc_put_peer(struct rxrpc_peer *peer)
David Howells17926a72007-04-26 15:48:28 -0700409{
David Howells2baec2c2017-05-24 17:02:32 +0100410 struct rxrpc_net *rxnet = peer->local->rxnet;
411
David Howellsf66d7492016-04-04 14:00:34 +0100412 ASSERT(hlist_empty(&peer->error_targets));
David Howells17926a72007-04-26 15:48:28 -0700413
David Howells2baec2c2017-05-24 17:02:32 +0100414 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100415 hash_del_rcu(&peer->hash_link);
David Howells330bdcf2018-08-08 11:30:02 +0100416 list_del_init(&peer->keepalive_link);
David Howells2baec2c2017-05-24 17:02:32 +0100417 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howells17926a72007-04-26 15:48:28 -0700418
David Howells9ebedde2019-10-07 10:58:29 +0100419 rxrpc_put_local(peer->local);
David Howellsbe6e6702016-04-04 14:00:32 +0100420 kfree_rcu(peer, rcu);
David Howells17926a72007-04-26 15:48:28 -0700421}
David Howells8324f0b2016-08-30 09:49:29 +0100422
David Howells1159d4b2018-03-30 21:05:38 +0100423/*
424 * Drop a ref on a peer record.
425 */
426void rxrpc_put_peer(struct rxrpc_peer *peer)
427{
428 const void *here = __builtin_return_address(0);
David Howells55f6c98e2019-10-07 10:58:29 +0100429 unsigned int debug_id;
David Howells1159d4b2018-03-30 21:05:38 +0100430 int n;
431
432 if (peer) {
David Howells55f6c98e2019-10-07 10:58:29 +0100433 debug_id = peer->debug_id;
David Howells1159d4b2018-03-30 21:05:38 +0100434 n = atomic_dec_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100435 trace_rxrpc_peer(debug_id, rxrpc_peer_put, n, here);
David Howells1159d4b2018-03-30 21:05:38 +0100436 if (n == 0)
437 __rxrpc_put_peer(peer);
438 }
439}
440
David Howells17226f12018-03-30 21:05:44 +0100441/*
David Howells60034d3d2019-07-30 14:42:50 +0100442 * Drop a ref on a peer record where the caller already holds the
443 * peer_hash_lock.
444 */
445void rxrpc_put_peer_locked(struct rxrpc_peer *peer)
446{
447 const void *here = __builtin_return_address(0);
David Howells55f6c98e2019-10-07 10:58:29 +0100448 unsigned int debug_id = peer->debug_id;
David Howells60034d3d2019-07-30 14:42:50 +0100449 int n;
450
451 n = atomic_dec_return(&peer->usage);
David Howells55f6c98e2019-10-07 10:58:29 +0100452 trace_rxrpc_peer(debug_id, rxrpc_peer_put, n, here);
David Howells60034d3d2019-07-30 14:42:50 +0100453 if (n == 0) {
454 hash_del_rcu(&peer->hash_link);
455 list_del_init(&peer->keepalive_link);
David Howells9ebedde2019-10-07 10:58:29 +0100456 rxrpc_put_local(peer->local);
David Howells60034d3d2019-07-30 14:42:50 +0100457 kfree_rcu(peer, rcu);
458 }
459}
460
461/*
David Howells17226f12018-03-30 21:05:44 +0100462 * Make sure all peer records have been discarded.
463 */
464void rxrpc_destroy_all_peers(struct rxrpc_net *rxnet)
465{
466 struct rxrpc_peer *peer;
467 int i;
468
469 for (i = 0; i < HASH_SIZE(rxnet->peer_hash); i++) {
470 if (hlist_empty(&rxnet->peer_hash[i]))
471 continue;
472
473 hlist_for_each_entry(peer, &rxnet->peer_hash[i], hash_link) {
474 pr_err("Leaked peer %u {%u} %pISp\n",
475 peer->debug_id,
476 atomic_read(&peer->usage),
477 &peer->srx.transport);
478 }
479 }
480}
481
David Howells8324f0b2016-08-30 09:49:29 +0100482/**
483 * rxrpc_kernel_get_peer - Get the peer address of a call
484 * @sock: The socket on which the call is in progress.
485 * @call: The call to query
486 * @_srx: Where to place the result
487 *
488 * Get the address of the remote peer in a call.
489 */
490void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
491 struct sockaddr_rxrpc *_srx)
492{
493 *_srx = call->peer->srx;
494}
495EXPORT_SYMBOL(rxrpc_kernel_get_peer);
David Howellsf4d15fb2017-10-18 11:07:31 +0100496
497/**
498 * rxrpc_kernel_get_rtt - Get a call's peer RTT
499 * @sock: The socket on which the call is in progress.
500 * @call: The call to query
501 *
502 * Get the call's peer RTT.
503 */
504u64 rxrpc_kernel_get_rtt(struct socket *sock, struct rxrpc_call *call)
505{
506 return call->peer->rtt;
507}
508EXPORT_SYMBOL(rxrpc_kernel_get_rtt);