blob: 5691b7d266ca0aaef3a5b2da30d64891e644f0f5 [file] [log] [blame]
David Howellsbe6e6702016-04-04 14:00:32 +01001/* RxRPC remote transport endpoint record management
David Howells17926a72007-04-26 15:48:28 -07002 *
David Howellsbe6e6702016-04-04 14:00:32 +01003 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
David Howells17926a72007-04-26 15:48:28 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
17#include <linux/udp.h>
18#include <linux/in.h>
David Howells75b54cb2016-09-13 08:49:05 +010019#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
David Howellsbe6e6702016-04-04 14:00:32 +010021#include <linux/hashtable.h>
David Howells17926a72007-04-26 15:48:28 -070022#include <net/sock.h>
23#include <net/af_rxrpc.h>
24#include <net/ip.h>
David Howells224711d2007-05-04 12:41:11 -070025#include <net/route.h>
David Howells75b54cb2016-09-13 08:49:05 +010026#include <net/ip6_route.h>
David Howells17926a72007-04-26 15:48:28 -070027#include "ar-internal.h"
28
David Howellsbe6e6702016-04-04 14:00:32 +010029/*
30 * Hash a peer key.
31 */
32static unsigned long rxrpc_peer_hash_key(struct rxrpc_local *local,
33 const struct sockaddr_rxrpc *srx)
34{
35 const u16 *p;
36 unsigned int i, size;
37 unsigned long hash_key;
38
39 _enter("");
40
41 hash_key = (unsigned long)local / __alignof__(*local);
42 hash_key += srx->transport_type;
43 hash_key += srx->transport_len;
44 hash_key += srx->transport.family;
45
46 switch (srx->transport.family) {
47 case AF_INET:
48 hash_key += (u16 __force)srx->transport.sin.sin_port;
49 size = sizeof(srx->transport.sin.sin_addr);
50 p = (u16 *)&srx->transport.sin.sin_addr;
51 break;
David Howellsd1912742016-09-17 07:26:01 +010052#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +010053 case AF_INET6:
54 hash_key += (u16 __force)srx->transport.sin.sin_port;
55 size = sizeof(srx->transport.sin6.sin6_addr);
56 p = (u16 *)&srx->transport.sin6.sin6_addr;
57 break;
David Howellsd1912742016-09-17 07:26:01 +010058#endif
Arnd Bergmann2f9f9f52016-06-17 11:55:22 +020059 default:
60 WARN(1, "AF_RXRPC: Unsupported transport address family\n");
61 return 0;
David Howellsbe6e6702016-04-04 14:00:32 +010062 }
63
64 /* Step through the peer address in 16-bit portions for speed */
65 for (i = 0; i < size; i += sizeof(*p), p++)
66 hash_key += *p;
67
68 _leave(" 0x%lx", hash_key);
69 return hash_key;
70}
71
72/*
73 * Compare a peer to a key. Return -ve, 0 or +ve to indicate less than, same
74 * or greater than.
75 *
76 * Unfortunately, the primitives in linux/hashtable.h don't allow for sorted
77 * buckets and mid-bucket insertion, so we don't make full use of this
78 * information at this point.
79 */
80static long rxrpc_peer_cmp_key(const struct rxrpc_peer *peer,
81 struct rxrpc_local *local,
82 const struct sockaddr_rxrpc *srx,
83 unsigned long hash_key)
84{
85 long diff;
86
87 diff = ((peer->hash_key - hash_key) ?:
88 ((unsigned long)peer->local - (unsigned long)local) ?:
89 (peer->srx.transport_type - srx->transport_type) ?:
90 (peer->srx.transport_len - srx->transport_len) ?:
91 (peer->srx.transport.family - srx->transport.family));
92 if (diff != 0)
93 return diff;
94
95 switch (srx->transport.family) {
96 case AF_INET:
97 return ((u16 __force)peer->srx.transport.sin.sin_port -
98 (u16 __force)srx->transport.sin.sin_port) ?:
99 memcmp(&peer->srx.transport.sin.sin_addr,
100 &srx->transport.sin.sin_addr,
101 sizeof(struct in_addr));
David Howellsd1912742016-09-17 07:26:01 +0100102#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100103 case AF_INET6:
104 return ((u16 __force)peer->srx.transport.sin6.sin6_port -
105 (u16 __force)srx->transport.sin6.sin6_port) ?:
106 memcmp(&peer->srx.transport.sin6.sin6_addr,
107 &srx->transport.sin6.sin6_addr,
108 sizeof(struct in6_addr));
David Howellsd1912742016-09-17 07:26:01 +0100109#endif
David Howellsbe6e6702016-04-04 14:00:32 +0100110 default:
111 BUG();
112 }
113}
114
115/*
116 * Look up a remote transport endpoint for the specified address using RCU.
117 */
118static struct rxrpc_peer *__rxrpc_lookup_peer_rcu(
119 struct rxrpc_local *local,
120 const struct sockaddr_rxrpc *srx,
121 unsigned long hash_key)
122{
123 struct rxrpc_peer *peer;
David Howells2baec2c2017-05-24 17:02:32 +0100124 struct rxrpc_net *rxnet = local->rxnet;
David Howellsbe6e6702016-04-04 14:00:32 +0100125
David Howells2baec2c2017-05-24 17:02:32 +0100126 hash_for_each_possible_rcu(rxnet->peer_hash, peer, hash_link, hash_key) {
David Howells0099dc52018-09-27 15:13:09 +0100127 if (rxrpc_peer_cmp_key(peer, local, srx, hash_key) == 0 &&
128 atomic_read(&peer->usage) > 0)
David Howellsbe6e6702016-04-04 14:00:32 +0100129 return peer;
David Howellsbe6e6702016-04-04 14:00:32 +0100130 }
131
132 return NULL;
133}
134
135/*
136 * Look up a remote transport endpoint for the specified address using RCU.
137 */
138struct rxrpc_peer *rxrpc_lookup_peer_rcu(struct rxrpc_local *local,
139 const struct sockaddr_rxrpc *srx)
140{
141 struct rxrpc_peer *peer;
142 unsigned long hash_key = rxrpc_peer_hash_key(local, srx);
143
144 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
145 if (peer) {
David Howells75b54cb2016-09-13 08:49:05 +0100146 _net("PEER %d {%pISp}", peer->debug_id, &peer->srx.transport);
David Howellsbe6e6702016-04-04 14:00:32 +0100147 _leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
148 }
149 return peer;
150}
David Howells17926a72007-04-26 15:48:28 -0700151
152/*
David Howells224711d2007-05-04 12:41:11 -0700153 * assess the MTU size for the network interface through which this peer is
154 * reached
155 */
David Howells5e33a232018-10-05 14:05:34 +0100156static void rxrpc_assess_MTU_size(struct rxrpc_sock *rx,
157 struct rxrpc_peer *peer)
David Howells224711d2007-05-04 12:41:11 -0700158{
David Howells5e33a232018-10-05 14:05:34 +0100159 struct net *net = sock_net(&rx->sk);
David Howells75b54cb2016-09-13 08:49:05 +0100160 struct dst_entry *dst;
David Howells224711d2007-05-04 12:41:11 -0700161 struct rtable *rt;
David Howells75b54cb2016-09-13 08:49:05 +0100162 struct flowi fl;
163 struct flowi4 *fl4 = &fl.u.ip4;
David Howellsd1912742016-09-17 07:26:01 +0100164#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100165 struct flowi6 *fl6 = &fl.u.ip6;
David Howellsd1912742016-09-17 07:26:01 +0100166#endif
David Howells224711d2007-05-04 12:41:11 -0700167
168 peer->if_mtu = 1500;
169
David Howells75b54cb2016-09-13 08:49:05 +0100170 memset(&fl, 0, sizeof(fl));
171 switch (peer->srx.transport.family) {
172 case AF_INET:
173 rt = ip_route_output_ports(
David Howells5e33a232018-10-05 14:05:34 +0100174 net, fl4, NULL,
David Howells75b54cb2016-09-13 08:49:05 +0100175 peer->srx.transport.sin.sin_addr.s_addr, 0,
176 htons(7000), htons(7001), IPPROTO_UDP, 0, 0);
177 if (IS_ERR(rt)) {
178 _leave(" [route err %ld]", PTR_ERR(rt));
179 return;
180 }
181 dst = &rt->dst;
182 break;
183
David Howellsd1912742016-09-17 07:26:01 +0100184#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100185 case AF_INET6:
186 fl6->flowi6_iif = LOOPBACK_IFINDEX;
187 fl6->flowi6_scope = RT_SCOPE_UNIVERSE;
188 fl6->flowi6_proto = IPPROTO_UDP;
189 memcpy(&fl6->daddr, &peer->srx.transport.sin6.sin6_addr,
190 sizeof(struct in6_addr));
191 fl6->fl6_dport = htons(7001);
192 fl6->fl6_sport = htons(7000);
David Howells5e33a232018-10-05 14:05:34 +0100193 dst = ip6_route_output(net, NULL, fl6);
David Howells07096f62016-10-13 08:43:17 +0100194 if (dst->error) {
195 _leave(" [route err %d]", dst->error);
David Howells75b54cb2016-09-13 08:49:05 +0100196 return;
197 }
198 break;
David Howellsd1912742016-09-17 07:26:01 +0100199#endif
David Howells75b54cb2016-09-13 08:49:05 +0100200
201 default:
202 BUG();
David Howells224711d2007-05-04 12:41:11 -0700203 }
204
David Howells75b54cb2016-09-13 08:49:05 +0100205 peer->if_mtu = dst_mtu(dst);
206 dst_release(dst);
David Howells224711d2007-05-04 12:41:11 -0700207
David Howellsa6a62b62007-05-10 03:15:25 -0700208 _leave(" [if_mtu %u]", peer->if_mtu);
David Howells224711d2007-05-04 12:41:11 -0700209}
210
211/*
David Howellsbe6e6702016-04-04 14:00:32 +0100212 * Allocate a peer.
David Howells17926a72007-04-26 15:48:28 -0700213 */
David Howellsbe6e6702016-04-04 14:00:32 +0100214struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *local, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700215{
216 struct rxrpc_peer *peer;
217
218 _enter("");
219
220 peer = kzalloc(sizeof(struct rxrpc_peer), gfp);
221 if (peer) {
David Howellsbe6e6702016-04-04 14:00:32 +0100222 atomic_set(&peer->usage, 1);
223 peer->local = local;
David Howellsf66d7492016-04-04 14:00:34 +0100224 INIT_HLIST_HEAD(&peer->error_targets);
David Howellsaa390bb2016-06-17 10:06:56 +0100225 peer->service_conns = RB_ROOT;
David Howells8496af52016-07-01 07:51:50 +0100226 seqlock_init(&peer->service_conn_lock);
David Howells17926a72007-04-26 15:48:28 -0700227 spin_lock_init(&peer->lock);
David Howellsc1e15b42018-10-08 15:46:25 +0100228 spin_lock_init(&peer->rtt_input_lock);
David Howells17926a72007-04-26 15:48:28 -0700229 peer->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howellsf7aec122017-06-14 17:56:50 +0100230
231 if (RXRPC_TX_SMSS > 2190)
232 peer->cong_cwnd = 2;
233 else if (RXRPC_TX_SMSS > 1095)
234 peer->cong_cwnd = 3;
235 else
236 peer->cong_cwnd = 4;
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
302/*
David Howells0099dc52018-09-27 15:13:09 +0100303 * Set up a new incoming peer. There shouldn't be any other matching peers
304 * since we've already done a search in the list from the non-reentrant context
305 * (the data_ready handler) that is the only place we can add new peers.
David Howells248f2192016-09-08 11:10:12 +0100306 */
David Howells5e33a232018-10-05 14:05:34 +0100307void rxrpc_new_incoming_peer(struct rxrpc_sock *rx, struct rxrpc_local *local,
308 struct rxrpc_peer *peer)
David Howells248f2192016-09-08 11:10:12 +0100309{
David Howells2baec2c2017-05-24 17:02:32 +0100310 struct rxrpc_net *rxnet = local->rxnet;
David Howells248f2192016-09-08 11:10:12 +0100311 unsigned long hash_key;
312
David Howells0099dc52018-09-27 15:13:09 +0100313 hash_key = rxrpc_peer_hash_key(local, &peer->srx);
314 peer->local = local;
David Howells5e33a232018-10-05 14:05:34 +0100315 rxrpc_init_peer(rx, peer, hash_key);
David Howells248f2192016-09-08 11:10:12 +0100316
David Howells2baec2c2017-05-24 17:02:32 +0100317 spin_lock(&rxnet->peer_hash_lock);
David Howells0099dc52018-09-27 15:13:09 +0100318 hash_add_rcu(rxnet->peer_hash, &peer->hash_link, hash_key);
319 list_add_tail(&peer->keepalive_link, &rxnet->peer_keepalive_new);
David Howells2baec2c2017-05-24 17:02:32 +0100320 spin_unlock(&rxnet->peer_hash_lock);
David Howells248f2192016-09-08 11:10:12 +0100321}
322
323/*
David Howells17926a72007-04-26 15:48:28 -0700324 * obtain a remote transport endpoint for the specified address
325 */
David Howells5e33a232018-10-05 14:05:34 +0100326struct rxrpc_peer *rxrpc_lookup_peer(struct rxrpc_sock *rx,
327 struct rxrpc_local *local,
David Howellsbe6e6702016-04-04 14:00:32 +0100328 struct sockaddr_rxrpc *srx, gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -0700329{
330 struct rxrpc_peer *peer, *candidate;
David Howells2baec2c2017-05-24 17:02:32 +0100331 struct rxrpc_net *rxnet = local->rxnet;
David Howellsbe6e6702016-04-04 14:00:32 +0100332 unsigned long hash_key = rxrpc_peer_hash_key(local, srx);
David Howells17926a72007-04-26 15:48:28 -0700333
David Howells75b54cb2016-09-13 08:49:05 +0100334 _enter("{%pISp}", &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700335
336 /* search the peer list first */
David Howellsbe6e6702016-04-04 14:00:32 +0100337 rcu_read_lock();
338 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
339 if (peer && !rxrpc_get_peer_maybe(peer))
340 peer = NULL;
341 rcu_read_unlock();
David Howells17926a72007-04-26 15:48:28 -0700342
David Howellsbe6e6702016-04-04 14:00:32 +0100343 if (!peer) {
344 /* The peer is not yet present in hash - create a candidate
345 * for a new record and then redo the search.
346 */
David Howells5e33a232018-10-05 14:05:34 +0100347 candidate = rxrpc_create_peer(rx, local, srx, hash_key, gfp);
David Howellsbe6e6702016-04-04 14:00:32 +0100348 if (!candidate) {
349 _leave(" = NULL [nomem]");
350 return NULL;
351 }
David Howells17926a72007-04-26 15:48:28 -0700352
David Howells2baec2c2017-05-24 17:02:32 +0100353 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100354
355 /* Need to check that we aren't racing with someone else */
356 peer = __rxrpc_lookup_peer_rcu(local, srx, hash_key);
357 if (peer && !rxrpc_get_peer_maybe(peer))
358 peer = NULL;
David Howellsace45be2018-03-30 21:04:43 +0100359 if (!peer) {
David Howells2baec2c2017-05-24 17:02:32 +0100360 hash_add_rcu(rxnet->peer_hash,
David Howellsbe6e6702016-04-04 14:00:32 +0100361 &candidate->hash_link, hash_key);
David Howells330bdcf2018-08-08 11:30:02 +0100362 list_add_tail(&candidate->keepalive_link,
363 &rxnet->peer_keepalive_new);
David Howellsace45be2018-03-30 21:04:43 +0100364 }
David Howellsbe6e6702016-04-04 14:00:32 +0100365
David Howells2baec2c2017-05-24 17:02:32 +0100366 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100367
368 if (peer)
369 kfree(candidate);
370 else
371 peer = candidate;
David Howells17926a72007-04-26 15:48:28 -0700372 }
373
David Howells75b54cb2016-09-13 08:49:05 +0100374 _net("PEER %d {%pISp}", peer->debug_id, &peer->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700375
David Howellsbe6e6702016-04-04 14:00:32 +0100376 _leave(" = %p {u=%d}", peer, atomic_read(&peer->usage));
David Howells17926a72007-04-26 15:48:28 -0700377 return peer;
David Howells17926a72007-04-26 15:48:28 -0700378}
379
380/*
David Howells1159d4b2018-03-30 21:05:38 +0100381 * Get a ref on a peer record.
David Howells17926a72007-04-26 15:48:28 -0700382 */
David Howells1159d4b2018-03-30 21:05:38 +0100383struct rxrpc_peer *rxrpc_get_peer(struct rxrpc_peer *peer)
384{
385 const void *here = __builtin_return_address(0);
386 int n;
387
388 n = atomic_inc_return(&peer->usage);
389 trace_rxrpc_peer(peer, rxrpc_peer_got, n, here);
390 return peer;
391}
392
393/*
394 * Get a ref on a peer record unless its usage has already reached 0.
395 */
396struct rxrpc_peer *rxrpc_get_peer_maybe(struct rxrpc_peer *peer)
397{
398 const void *here = __builtin_return_address(0);
399
400 if (peer) {
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100401 int n = atomic_fetch_add_unless(&peer->usage, 1, 0);
David Howells1159d4b2018-03-30 21:05:38 +0100402 if (n > 0)
403 trace_rxrpc_peer(peer, rxrpc_peer_got, n + 1, here);
404 else
405 peer = NULL;
406 }
407 return peer;
408}
409
410/*
David Howells1159d4b2018-03-30 21:05:38 +0100411 * Discard a peer record.
412 */
413static void __rxrpc_put_peer(struct rxrpc_peer *peer)
David Howells17926a72007-04-26 15:48:28 -0700414{
David Howells2baec2c2017-05-24 17:02:32 +0100415 struct rxrpc_net *rxnet = peer->local->rxnet;
416
David Howellsf66d7492016-04-04 14:00:34 +0100417 ASSERT(hlist_empty(&peer->error_targets));
David Howells17926a72007-04-26 15:48:28 -0700418
David Howells2baec2c2017-05-24 17:02:32 +0100419 spin_lock_bh(&rxnet->peer_hash_lock);
David Howellsbe6e6702016-04-04 14:00:32 +0100420 hash_del_rcu(&peer->hash_link);
David Howells330bdcf2018-08-08 11:30:02 +0100421 list_del_init(&peer->keepalive_link);
David Howells2baec2c2017-05-24 17:02:32 +0100422 spin_unlock_bh(&rxnet->peer_hash_lock);
David Howells17926a72007-04-26 15:48:28 -0700423
David Howellsbe6e6702016-04-04 14:00:32 +0100424 kfree_rcu(peer, rcu);
David Howells17926a72007-04-26 15:48:28 -0700425}
David Howells8324f0b2016-08-30 09:49:29 +0100426
David Howells1159d4b2018-03-30 21:05:38 +0100427/*
428 * Drop a ref on a peer record.
429 */
430void rxrpc_put_peer(struct rxrpc_peer *peer)
431{
432 const void *here = __builtin_return_address(0);
433 int n;
434
435 if (peer) {
436 n = atomic_dec_return(&peer->usage);
437 trace_rxrpc_peer(peer, rxrpc_peer_put, n, here);
438 if (n == 0)
439 __rxrpc_put_peer(peer);
440 }
441}
442
David Howells17226f12018-03-30 21:05:44 +0100443/*
444 * Make sure all peer records have been discarded.
445 */
446void rxrpc_destroy_all_peers(struct rxrpc_net *rxnet)
447{
448 struct rxrpc_peer *peer;
449 int i;
450
451 for (i = 0; i < HASH_SIZE(rxnet->peer_hash); i++) {
452 if (hlist_empty(&rxnet->peer_hash[i]))
453 continue;
454
455 hlist_for_each_entry(peer, &rxnet->peer_hash[i], hash_link) {
456 pr_err("Leaked peer %u {%u} %pISp\n",
457 peer->debug_id,
458 atomic_read(&peer->usage),
459 &peer->srx.transport);
460 }
461 }
462}
463
David Howells8324f0b2016-08-30 09:49:29 +0100464/**
465 * rxrpc_kernel_get_peer - Get the peer address of a call
466 * @sock: The socket on which the call is in progress.
467 * @call: The call to query
468 * @_srx: Where to place the result
469 *
470 * Get the address of the remote peer in a call.
471 */
472void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
473 struct sockaddr_rxrpc *_srx)
474{
475 *_srx = call->peer->srx;
476}
477EXPORT_SYMBOL(rxrpc_kernel_get_peer);
David Howellsf4d15fb2017-10-18 11:07:31 +0100478
479/**
480 * rxrpc_kernel_get_rtt - Get a call's peer RTT
481 * @sock: The socket on which the call is in progress.
482 * @call: The call to query
483 *
484 * Get the call's peer RTT.
485 */
486u64 rxrpc_kernel_get_rtt(struct socket *sock, struct rxrpc_call *call)
487{
488 return call->peer->rtt;
489}
490EXPORT_SYMBOL(rxrpc_kernel_get_rtt);