blob: b1c71bad510b7c0200b2efed2a1652ecf254ca67 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells87563612016-04-04 14:00:34 +01002/* Local endpoint object management
David Howells17926a72007-04-26 15:48:28 -07003 *
David Howells4f95dd72016-04-04 14:00:35 +01004 * Copyright (C) 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
David Howells44ba0692015-04-01 16:31:26 +010014#include <linux/udp.h>
15#include <linux/ip.h>
David Howells4f95dd72016-04-04 14:00:35 +010016#include <linux/hashtable.h>
David Howells17926a72007-04-26 15:48:28 -070017#include <net/sock.h>
David Howells52719532018-10-04 11:10:51 +010018#include <net/udp.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
David Howells4f95dd72016-04-04 14:00:35 +010022static void rxrpc_local_processor(struct work_struct *);
23static void rxrpc_local_rcu(struct rcu_head *);
David Howells17926a72007-04-26 15:48:28 -070024
David Howells17926a72007-04-26 15:48:28 -070025/*
David Howells4f95dd72016-04-04 14:00:35 +010026 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
27 * same or greater than.
28 *
29 * We explicitly don't compare the RxRPC service ID as we want to reject
30 * conflicting uses by differing services. Further, we don't want to share
31 * addresses with different options (IPv6), so we don't compare those bits
32 * either.
David Howells17926a72007-04-26 15:48:28 -070033 */
David Howells4f95dd72016-04-04 14:00:35 +010034static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
35 const struct sockaddr_rxrpc *srx)
36{
37 long diff;
38
39 diff = ((local->srx.transport_type - srx->transport_type) ?:
40 (local->srx.transport_len - srx->transport_len) ?:
41 (local->srx.transport.family - srx->transport.family));
42 if (diff != 0)
43 return diff;
44
45 switch (srx->transport.family) {
46 case AF_INET:
47 /* If the choice of UDP port is left up to the transport, then
48 * the endpoint record doesn't match.
49 */
50 return ((u16 __force)local->srx.transport.sin.sin_port -
51 (u16 __force)srx->transport.sin.sin_port) ?:
52 memcmp(&local->srx.transport.sin.sin_addr,
53 &srx->transport.sin.sin_addr,
54 sizeof(struct in_addr));
David Howellsd1912742016-09-17 07:26:01 +010055#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +010056 case AF_INET6:
57 /* If the choice of UDP6 port is left up to the transport, then
58 * the endpoint record doesn't match.
59 */
60 return ((u16 __force)local->srx.transport.sin6.sin6_port -
61 (u16 __force)srx->transport.sin6.sin6_port) ?:
62 memcmp(&local->srx.transport.sin6.sin6_addr,
63 &srx->transport.sin6.sin6_addr,
64 sizeof(struct in6_addr));
David Howellsd1912742016-09-17 07:26:01 +010065#endif
David Howells4f95dd72016-04-04 14:00:35 +010066 default:
67 BUG();
68 }
69}
70
71/*
72 * Allocate a new local endpoint.
73 */
David Howells2baec2c2017-05-24 17:02:32 +010074static struct rxrpc_local *rxrpc_alloc_local(struct rxrpc_net *rxnet,
75 const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -070076{
77 struct rxrpc_local *local;
78
79 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
80 if (local) {
David Howells4f95dd72016-04-04 14:00:35 +010081 atomic_set(&local->usage, 1);
David Howells2baec2c2017-05-24 17:02:32 +010082 local->rxnet = rxnet;
David Howells17926a72007-04-26 15:48:28 -070083 INIT_LIST_HEAD(&local->link);
David Howells4f95dd72016-04-04 14:00:35 +010084 INIT_WORK(&local->processor, rxrpc_local_processor);
David Howells17926a72007-04-26 15:48:28 -070085 init_rwsem(&local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -070086 skb_queue_head_init(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +010087 skb_queue_head_init(&local->event_queue);
David Howells999b69f2016-06-17 15:42:35 +010088 local->client_conns = RB_ROOT;
89 spin_lock_init(&local->client_conns_lock);
David Howells17926a72007-04-26 15:48:28 -070090 spin_lock_init(&local->lock);
91 rwlock_init(&local->services_lock);
David Howells17926a72007-04-26 15:48:28 -070092 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
93 memcpy(&local->srx, srx, sizeof(*srx));
David Howells28036f42017-06-05 14:30:49 +010094 local->srx.srx_service = 0;
David Howells09d2bf52018-03-30 21:05:28 +010095 trace_rxrpc_local(local, rxrpc_local_new, 1, NULL);
David Howells17926a72007-04-26 15:48:28 -070096 }
97
98 _leave(" = %p", local);
99 return local;
100}
101
102/*
103 * create the local socket
David Howells4f95dd72016-04-04 14:00:35 +0100104 * - must be called with rxrpc_local_mutex locked
David Howells17926a72007-04-26 15:48:28 -0700105 */
David Howells2baec2c2017-05-24 17:02:32 +0100106static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
David Howells17926a72007-04-26 15:48:28 -0700107{
David Howells52719532018-10-04 11:10:51 +0100108 struct sock *usk;
David Howells17926a72007-04-26 15:48:28 -0700109 int ret, opt;
110
David Howells75b54cb2016-09-13 08:49:05 +0100111 _enter("%p{%d,%d}",
112 local, local->srx.transport_type, local->srx.transport.family);
David Howells17926a72007-04-26 15:48:28 -0700113
114 /* create a socket to represent the local endpoint */
David Howells2baec2c2017-05-24 17:02:32 +0100115 ret = sock_create_kern(net, local->srx.transport.family,
David Howellsaaa31cb2016-09-13 08:49:05 +0100116 local->srx.transport_type, 0, &local->socket);
David Howells17926a72007-04-26 15:48:28 -0700117 if (ret < 0) {
118 _leave(" = %d [socket]", ret);
119 return ret;
120 }
121
David Howells2cfa2272018-10-05 14:05:35 +0100122 /* set the socket up */
David Howells52719532018-10-04 11:10:51 +0100123 usk = local->socket->sk;
124 inet_sk(usk)->mc_loop = 0;
125
126 /* Enable CHECKSUM_UNNECESSARY to CHECKSUM_COMPLETE conversion */
127 inet_inc_convert_csum(usk);
128
129 rcu_assign_sk_user_data(usk, local);
130
131 udp_sk(usk)->encap_type = UDP_ENCAP_RXRPC;
132 udp_sk(usk)->encap_rcv = rxrpc_input_packet;
133 udp_sk(usk)->encap_destroy = NULL;
134 udp_sk(usk)->gro_receive = NULL;
135 udp_sk(usk)->gro_complete = NULL;
136
137 udp_encap_enable();
David Howells7ec8dc92018-10-12 16:38:36 +0100138#if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
David Howells52719532018-10-04 11:10:51 +0100139 if (local->srx.transport.family == AF_INET6)
140 udpv6_encap_enable();
141#endif
142 usk->sk_error_report = rxrpc_error_report;
David Howells2cfa2272018-10-05 14:05:35 +0100143
David Howells17926a72007-04-26 15:48:28 -0700144 /* if a local address was supplied then bind it */
145 if (local->srx.transport_len > sizeof(sa_family_t)) {
146 _debug("bind");
147 ret = kernel_bind(local->socket,
David Howells4f95dd72016-04-04 14:00:35 +0100148 (struct sockaddr *)&local->srx.transport,
David Howells17926a72007-04-26 15:48:28 -0700149 local->srx.transport_len);
150 if (ret < 0) {
David Howells4f95dd72016-04-04 14:00:35 +0100151 _debug("bind failed %d", ret);
David Howells17926a72007-04-26 15:48:28 -0700152 goto error;
153 }
154 }
155
David Howellsf2aeed32018-05-10 23:26:00 +0100156 switch (local->srx.transport.family) {
David Howells37a675e2018-09-27 15:13:09 +0100157 case AF_INET6:
158 /* we want to receive ICMPv6 errors */
159 opt = 1;
160 ret = kernel_setsockopt(local->socket, SOL_IPV6, IPV6_RECVERR,
161 (char *) &opt, sizeof(opt));
162 if (ret < 0) {
163 _debug("setsockopt failed");
164 goto error;
165 }
166
167 /* we want to set the don't fragment bit */
168 opt = IPV6_PMTUDISC_DO;
169 ret = kernel_setsockopt(local->socket, SOL_IPV6, IPV6_MTU_DISCOVER,
170 (char *) &opt, sizeof(opt));
171 if (ret < 0) {
172 _debug("setsockopt failed");
173 goto error;
174 }
175
176 /* Fall through and set IPv4 options too otherwise we don't get
177 * errors from IPv4 packets sent through the IPv6 socket.
178 */
Gustavo A. R. Silva936ee652019-04-01 14:39:31 -0500179 /* Fall through */
David Howellsf2aeed32018-05-10 23:26:00 +0100180 case AF_INET:
181 /* we want to receive ICMP errors */
182 opt = 1;
183 ret = kernel_setsockopt(local->socket, SOL_IP, IP_RECVERR,
184 (char *) &opt, sizeof(opt));
185 if (ret < 0) {
186 _debug("setsockopt failed");
187 goto error;
188 }
David Howells17926a72007-04-26 15:48:28 -0700189
David Howellsf2aeed32018-05-10 23:26:00 +0100190 /* we want to set the don't fragment bit */
191 opt = IP_PMTUDISC_DO;
192 ret = kernel_setsockopt(local->socket, SOL_IP, IP_MTU_DISCOVER,
193 (char *) &opt, sizeof(opt));
194 if (ret < 0) {
195 _debug("setsockopt failed");
196 goto error;
197 }
David Howellsb604dd92018-09-27 15:13:08 +0100198
199 /* We want receive timestamps. */
200 opt = 1;
Deepa Dinamani7f1bc6e2019-02-02 07:34:46 -0800201 ret = kernel_setsockopt(local->socket, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
David Howellsb604dd92018-09-27 15:13:08 +0100202 (char *)&opt, sizeof(opt));
203 if (ret < 0) {
204 _debug("setsockopt failed");
205 goto error;
206 }
David Howellsf2aeed32018-05-10 23:26:00 +0100207 break;
208
209 default:
210 BUG();
David Howells17926a72007-04-26 15:48:28 -0700211 }
212
David Howells17926a72007-04-26 15:48:28 -0700213 _leave(" = 0");
214 return 0;
215
216error:
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800217 kernel_sock_shutdown(local->socket, SHUT_RDWR);
David Howells17926a72007-04-26 15:48:28 -0700218 local->socket->sk->sk_user_data = NULL;
219 sock_release(local->socket);
220 local->socket = NULL;
221
222 _leave(" = %d", ret);
223 return ret;
224}
225
226/*
David Howells4f95dd72016-04-04 14:00:35 +0100227 * Look up or create a new local endpoint using the specified local address.
David Howells17926a72007-04-26 15:48:28 -0700228 */
David Howells2baec2c2017-05-24 17:02:32 +0100229struct rxrpc_local *rxrpc_lookup_local(struct net *net,
230 const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -0700231{
232 struct rxrpc_local *local;
David Howells2baec2c2017-05-24 17:02:32 +0100233 struct rxrpc_net *rxnet = rxrpc_net(net);
David Howells4f95dd72016-04-04 14:00:35 +0100234 struct list_head *cursor;
235 const char *age;
236 long diff;
David Howells17926a72007-04-26 15:48:28 -0700237 int ret;
238
David Howells75b54cb2016-09-13 08:49:05 +0100239 _enter("{%d,%d,%pISp}",
240 srx->transport_type, srx->transport.family, &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700241
David Howells2baec2c2017-05-24 17:02:32 +0100242 mutex_lock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700243
David Howells2baec2c2017-05-24 17:02:32 +0100244 for (cursor = rxnet->local_endpoints.next;
245 cursor != &rxnet->local_endpoints;
David Howells4f95dd72016-04-04 14:00:35 +0100246 cursor = cursor->next) {
247 local = list_entry(cursor, struct rxrpc_local, link);
David Howells17926a72007-04-26 15:48:28 -0700248
David Howells4f95dd72016-04-04 14:00:35 +0100249 diff = rxrpc_local_cmp_key(local, srx);
250 if (diff < 0)
David Howells17926a72007-04-26 15:48:28 -0700251 continue;
David Howells4f95dd72016-04-04 14:00:35 +0100252 if (diff > 0)
253 break;
David Howells17926a72007-04-26 15:48:28 -0700254
David Howells4f95dd72016-04-04 14:00:35 +0100255 /* Services aren't allowed to share transport sockets, so
256 * reject that here. It is possible that the object is dying -
257 * but it may also still have the local transport address that
258 * we want bound.
259 */
260 if (srx->srx_service) {
261 local = NULL;
262 goto addr_in_use;
David Howells17926a72007-04-26 15:48:28 -0700263 }
David Howells4f95dd72016-04-04 14:00:35 +0100264
265 /* Found a match. We replace a dying object. Attempting to
266 * bind the transport socket may still fail if we're attempting
267 * to use a local address that the dying object is still using.
268 */
David Howells5627cc82016-04-04 14:00:38 +0100269 if (!rxrpc_get_local_maybe(local)) {
David Howells4f95dd72016-04-04 14:00:35 +0100270 cursor = cursor->next;
271 list_del_init(&local->link);
272 break;
273 }
274
275 age = "old";
276 goto found;
David Howells17926a72007-04-26 15:48:28 -0700277 }
278
David Howells2baec2c2017-05-24 17:02:32 +0100279 local = rxrpc_alloc_local(rxnet, srx);
David Howells4f95dd72016-04-04 14:00:35 +0100280 if (!local)
281 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700282
David Howells2baec2c2017-05-24 17:02:32 +0100283 ret = rxrpc_open_socket(local, net);
David Howells4f95dd72016-04-04 14:00:35 +0100284 if (ret < 0)
285 goto sock_error;
David Howells17926a72007-04-26 15:48:28 -0700286
David Howells4f95dd72016-04-04 14:00:35 +0100287 list_add_tail(&local->link, cursor);
288 age = "new";
David Howells17926a72007-04-26 15:48:28 -0700289
David Howells4f95dd72016-04-04 14:00:35 +0100290found:
David Howells2baec2c2017-05-24 17:02:32 +0100291 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100292
David Howells75b54cb2016-09-13 08:49:05 +0100293 _net("LOCAL %s %d {%pISp}",
294 age, local->debug_id, &local->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700295
David Howells4f95dd72016-04-04 14:00:35 +0100296 _leave(" = %p", local);
David Howells17926a72007-04-26 15:48:28 -0700297 return local;
298
David Howells4f95dd72016-04-04 14:00:35 +0100299nomem:
300 ret = -ENOMEM;
301sock_error:
David Howells2baec2c2017-05-24 17:02:32 +0100302 mutex_unlock(&rxnet->local_mutex);
Eric Dumazet032be5f2019-04-24 09:44:11 -0700303 if (local)
304 call_rcu(&local->rcu, rxrpc_local_rcu);
David Howells4f95dd72016-04-04 14:00:35 +0100305 _leave(" = %d", ret);
306 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700307
David Howells4f95dd72016-04-04 14:00:35 +0100308addr_in_use:
David Howells2baec2c2017-05-24 17:02:32 +0100309 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100310 _leave(" = -EADDRINUSE");
311 return ERR_PTR(-EADDRINUSE);
David Howells17926a72007-04-26 15:48:28 -0700312}
313
314/*
David Howells09d2bf52018-03-30 21:05:28 +0100315 * Get a ref on a local endpoint.
316 */
317struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *local)
318{
319 const void *here = __builtin_return_address(0);
320 int n;
321
322 n = atomic_inc_return(&local->usage);
323 trace_rxrpc_local(local, rxrpc_local_got, n, here);
324 return local;
325}
326
327/*
328 * Get a ref on a local endpoint unless its usage has already reached 0.
329 */
330struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
331{
332 const void *here = __builtin_return_address(0);
333
334 if (local) {
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100335 int n = atomic_fetch_add_unless(&local->usage, 1, 0);
David Howells09d2bf52018-03-30 21:05:28 +0100336 if (n > 0)
337 trace_rxrpc_local(local, rxrpc_local_got, n + 1, here);
338 else
339 local = NULL;
340 }
341 return local;
342}
343
344/*
345 * Queue a local endpoint.
346 */
347void rxrpc_queue_local(struct rxrpc_local *local)
348{
349 const void *here = __builtin_return_address(0);
350
351 if (rxrpc_queue_work(&local->processor))
352 trace_rxrpc_local(local, rxrpc_local_queued,
353 atomic_read(&local->usage), here);
354}
355
356/*
David Howells4f95dd72016-04-04 14:00:35 +0100357 * A local endpoint reached its end of life.
David Howells17926a72007-04-26 15:48:28 -0700358 */
David Howells09d2bf52018-03-30 21:05:28 +0100359static void __rxrpc_put_local(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700360{
David Howells4f95dd72016-04-04 14:00:35 +0100361 _enter("%d", local->debug_id);
362 rxrpc_queue_work(&local->processor);
David Howells17926a72007-04-26 15:48:28 -0700363}
364
365/*
David Howells09d2bf52018-03-30 21:05:28 +0100366 * Drop a ref on a local endpoint.
367 */
368void rxrpc_put_local(struct rxrpc_local *local)
369{
370 const void *here = __builtin_return_address(0);
371 int n;
372
373 if (local) {
374 n = atomic_dec_return(&local->usage);
375 trace_rxrpc_local(local, rxrpc_local_put, n, here);
376
377 if (n == 0)
378 __rxrpc_put_local(local);
379 }
380}
381
382/*
David Howells4f95dd72016-04-04 14:00:35 +0100383 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
384 * of.
385 *
386 * Closing the socket cannot be done from bottom half context or RCU callback
387 * context because it might sleep.
David Howells17926a72007-04-26 15:48:28 -0700388 */
David Howells4f95dd72016-04-04 14:00:35 +0100389static void rxrpc_local_destroyer(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700390{
David Howells4f95dd72016-04-04 14:00:35 +0100391 struct socket *socket = local->socket;
David Howells2baec2c2017-05-24 17:02:32 +0100392 struct rxrpc_net *rxnet = local->rxnet;
David Howells17926a72007-04-26 15:48:28 -0700393
David Howells4f95dd72016-04-04 14:00:35 +0100394 _enter("%d", local->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700395
David Howells4f95dd72016-04-04 14:00:35 +0100396 /* We can get a race between an incoming call packet queueing the
397 * processor again and the work processor starting the destruction
398 * process which will shut down the UDP socket.
399 */
400 if (local->dead) {
401 _leave(" [already dead]");
David Howells17926a72007-04-26 15:48:28 -0700402 return;
403 }
David Howells4f95dd72016-04-04 14:00:35 +0100404 local->dead = true;
David Howells17926a72007-04-26 15:48:28 -0700405
David Howells2baec2c2017-05-24 17:02:32 +0100406 mutex_lock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100407 list_del_init(&local->link);
David Howells2baec2c2017-05-24 17:02:32 +0100408 mutex_unlock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700409
David Howells999b69f2016-06-17 15:42:35 +0100410 ASSERT(RB_EMPTY_ROOT(&local->client_conns));
David Howells1e9e5c92016-09-29 22:37:15 +0100411 ASSERT(!local->service);
David Howells17926a72007-04-26 15:48:28 -0700412
David Howells4f95dd72016-04-04 14:00:35 +0100413 if (socket) {
414 local->socket = NULL;
415 kernel_sock_shutdown(socket, SHUT_RDWR);
416 socket->sk->sk_user_data = NULL;
417 sock_release(socket);
418 }
419
420 /* At this point, there should be no more packets coming in to the
421 * local endpoint.
422 */
David Howells17926a72007-04-26 15:48:28 -0700423 rxrpc_purge_queue(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +0100424 rxrpc_purge_queue(&local->event_queue);
David Howells17926a72007-04-26 15:48:28 -0700425
David Howells4f95dd72016-04-04 14:00:35 +0100426 _debug("rcu local %d", local->debug_id);
427 call_rcu(&local->rcu, rxrpc_local_rcu);
428}
429
430/*
431 * Process events on an endpoint
432 */
433static void rxrpc_local_processor(struct work_struct *work)
434{
435 struct rxrpc_local *local =
436 container_of(work, struct rxrpc_local, processor);
437 bool again;
438
David Howells09d2bf52018-03-30 21:05:28 +0100439 trace_rxrpc_local(local, rxrpc_local_processing,
440 atomic_read(&local->usage), NULL);
David Howells4f95dd72016-04-04 14:00:35 +0100441
442 do {
443 again = false;
444 if (atomic_read(&local->usage) == 0)
445 return rxrpc_local_destroyer(local);
446
David Howells4f95dd72016-04-04 14:00:35 +0100447 if (!skb_queue_empty(&local->reject_queue)) {
448 rxrpc_reject_packets(local);
449 again = true;
450 }
451
452 if (!skb_queue_empty(&local->event_queue)) {
453 rxrpc_process_local_events(local);
454 again = true;
455 }
456 } while (again);
457}
458
459/*
460 * Destroy a local endpoint after the RCU grace period expires.
461 */
462static void rxrpc_local_rcu(struct rcu_head *rcu)
463{
464 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
465
466 _enter("%d", local->debug_id);
467
468 ASSERT(!work_pending(&local->processor));
David Howells17926a72007-04-26 15:48:28 -0700469
470 _net("DESTROY LOCAL %d", local->debug_id);
471 kfree(local);
David Howells17926a72007-04-26 15:48:28 -0700472 _leave("");
473}
474
475/*
David Howells4f95dd72016-04-04 14:00:35 +0100476 * Verify the local endpoint list is empty by this point.
David Howells17926a72007-04-26 15:48:28 -0700477 */
David Howells2baec2c2017-05-24 17:02:32 +0100478void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700479{
David Howells4f95dd72016-04-04 14:00:35 +0100480 struct rxrpc_local *local;
David Howells17926a72007-04-26 15:48:28 -0700481
482 _enter("");
483
David Howellsdee46362016-06-27 17:11:19 +0100484 flush_workqueue(rxrpc_workqueue);
David Howells17926a72007-04-26 15:48:28 -0700485
David Howells2baec2c2017-05-24 17:02:32 +0100486 if (!list_empty(&rxnet->local_endpoints)) {
487 mutex_lock(&rxnet->local_mutex);
488 list_for_each_entry(local, &rxnet->local_endpoints, link) {
David Howellsdee46362016-06-27 17:11:19 +0100489 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
490 local, atomic_read(&local->usage));
491 }
David Howells2baec2c2017-05-24 17:02:32 +0100492 mutex_unlock(&rxnet->local_mutex);
David Howellsdee46362016-06-27 17:11:19 +0100493 BUG();
David Howells17926a72007-04-26 15:48:28 -0700494 }
David Howells17926a72007-04-26 15:48:28 -0700495}