blob: ede058f9cc15e9c8d08888bb7ca03bb50c3486ba [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 Howells730c5fd2019-08-09 15:20:41 +010082 atomic_set(&local->active_users, 1);
David Howells2baec2c2017-05-24 17:02:32 +010083 local->rxnet = rxnet;
David Howells17926a72007-04-26 15:48:28 -070084 INIT_LIST_HEAD(&local->link);
David Howells4f95dd72016-04-04 14:00:35 +010085 INIT_WORK(&local->processor, rxrpc_local_processor);
David Howells17926a72007-04-26 15:48:28 -070086 init_rwsem(&local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -070087 skb_queue_head_init(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +010088 skb_queue_head_init(&local->event_queue);
David Howells999b69f2016-06-17 15:42:35 +010089 local->client_conns = RB_ROOT;
90 spin_lock_init(&local->client_conns_lock);
David Howells17926a72007-04-26 15:48:28 -070091 spin_lock_init(&local->lock);
92 rwlock_init(&local->services_lock);
David Howells17926a72007-04-26 15:48:28 -070093 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
94 memcpy(&local->srx, srx, sizeof(*srx));
David Howells28036f42017-06-05 14:30:49 +010095 local->srx.srx_service = 0;
David Howells06d95322019-08-13 22:26:36 +010096 trace_rxrpc_local(local->debug_id, rxrpc_local_new, 1, NULL);
David Howells17926a72007-04-26 15:48:28 -070097 }
98
99 _leave(" = %p", local);
100 return local;
101}
102
103/*
104 * create the local socket
David Howells4f95dd72016-04-04 14:00:35 +0100105 * - must be called with rxrpc_local_mutex locked
David Howells17926a72007-04-26 15:48:28 -0700106 */
David Howells2baec2c2017-05-24 17:02:32 +0100107static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
David Howells17926a72007-04-26 15:48:28 -0700108{
David Howells52719532018-10-04 11:10:51 +0100109 struct sock *usk;
Christoph Hellwigfce93492020-05-28 07:12:32 +0200110 int ret;
David Howells17926a72007-04-26 15:48:28 -0700111
David Howells75b54cb2016-09-13 08:49:05 +0100112 _enter("%p{%d,%d}",
113 local, local->srx.transport_type, local->srx.transport.family);
David Howells17926a72007-04-26 15:48:28 -0700114
115 /* create a socket to represent the local endpoint */
David Howells2baec2c2017-05-24 17:02:32 +0100116 ret = sock_create_kern(net, local->srx.transport.family,
David Howellsaaa31cb2016-09-13 08:49:05 +0100117 local->srx.transport_type, 0, &local->socket);
David Howells17926a72007-04-26 15:48:28 -0700118 if (ret < 0) {
119 _leave(" = %d [socket]", ret);
120 return ret;
121 }
122
David Howells2cfa2272018-10-05 14:05:35 +0100123 /* set the socket up */
David Howells52719532018-10-04 11:10:51 +0100124 usk = local->socket->sk;
125 inet_sk(usk)->mc_loop = 0;
126
127 /* Enable CHECKSUM_UNNECESSARY to CHECKSUM_COMPLETE conversion */
128 inet_inc_convert_csum(usk);
129
130 rcu_assign_sk_user_data(usk, local);
131
132 udp_sk(usk)->encap_type = UDP_ENCAP_RXRPC;
133 udp_sk(usk)->encap_rcv = rxrpc_input_packet;
134 udp_sk(usk)->encap_destroy = NULL;
135 udp_sk(usk)->gro_receive = NULL;
136 udp_sk(usk)->gro_complete = NULL;
137
138 udp_encap_enable();
David Howells7ec8dc92018-10-12 16:38:36 +0100139#if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
David Howells52719532018-10-04 11:10:51 +0100140 if (local->srx.transport.family == AF_INET6)
141 udpv6_encap_enable();
142#endif
143 usk->sk_error_report = rxrpc_error_report;
David Howells2cfa2272018-10-05 14:05:35 +0100144
David Howells17926a72007-04-26 15:48:28 -0700145 /* if a local address was supplied then bind it */
146 if (local->srx.transport_len > sizeof(sa_family_t)) {
147 _debug("bind");
148 ret = kernel_bind(local->socket,
David Howells4f95dd72016-04-04 14:00:35 +0100149 (struct sockaddr *)&local->srx.transport,
David Howells17926a72007-04-26 15:48:28 -0700150 local->srx.transport_len);
151 if (ret < 0) {
David Howells4f95dd72016-04-04 14:00:35 +0100152 _debug("bind failed %d", ret);
David Howells17926a72007-04-26 15:48:28 -0700153 goto error;
154 }
155 }
156
David Howellsf2aeed32018-05-10 23:26:00 +0100157 switch (local->srx.transport.family) {
David Howells37a675e2018-09-27 15:13:09 +0100158 case AF_INET6:
159 /* we want to receive ICMPv6 errors */
Christoph Hellwigfce93492020-05-28 07:12:32 +0200160 ip6_sock_set_recverr(local->socket->sk);
David Howells37a675e2018-09-27 15:13:09 +0100161
David Howells37a675e2018-09-27 15:13:09 +0100162 /* Fall through and set IPv4 options too otherwise we don't get
163 * errors from IPv4 packets sent through the IPv6 socket.
164 */
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500165 fallthrough;
David Howellsf2aeed32018-05-10 23:26:00 +0100166 case AF_INET:
167 /* we want to receive ICMP errors */
Christoph Hellwigdb45c0e2020-05-28 07:12:28 +0200168 ip_sock_set_recverr(local->socket->sk);
David Howells17926a72007-04-26 15:48:28 -0700169
David Howellsf2aeed32018-05-10 23:26:00 +0100170 /* we want to set the don't fragment bit */
Christoph Hellwig2de569b2020-05-28 07:12:29 +0200171 ip_sock_set_mtu_discover(local->socket->sk, IP_PMTUDISC_DO);
David Howellsb604dd92018-09-27 15:13:08 +0100172
173 /* We want receive timestamps. */
Christoph Hellwig783da702020-05-28 07:12:14 +0200174 sock_enable_timestamps(local->socket->sk);
David Howellsf2aeed32018-05-10 23:26:00 +0100175 break;
176
177 default:
178 BUG();
David Howells17926a72007-04-26 15:48:28 -0700179 }
180
David Howells17926a72007-04-26 15:48:28 -0700181 _leave(" = 0");
182 return 0;
183
184error:
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800185 kernel_sock_shutdown(local->socket, SHUT_RDWR);
David Howells17926a72007-04-26 15:48:28 -0700186 local->socket->sk->sk_user_data = NULL;
187 sock_release(local->socket);
188 local->socket = NULL;
189
190 _leave(" = %d", ret);
191 return ret;
192}
193
194/*
David Howells4f95dd72016-04-04 14:00:35 +0100195 * Look up or create a new local endpoint using the specified local address.
David Howells17926a72007-04-26 15:48:28 -0700196 */
David Howells2baec2c2017-05-24 17:02:32 +0100197struct rxrpc_local *rxrpc_lookup_local(struct net *net,
198 const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -0700199{
200 struct rxrpc_local *local;
David Howells2baec2c2017-05-24 17:02:32 +0100201 struct rxrpc_net *rxnet = rxrpc_net(net);
David Howells4f95dd72016-04-04 14:00:35 +0100202 struct list_head *cursor;
203 const char *age;
204 long diff;
David Howells17926a72007-04-26 15:48:28 -0700205 int ret;
206
David Howells75b54cb2016-09-13 08:49:05 +0100207 _enter("{%d,%d,%pISp}",
208 srx->transport_type, srx->transport.family, &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700209
David Howells2baec2c2017-05-24 17:02:32 +0100210 mutex_lock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700211
David Howells2baec2c2017-05-24 17:02:32 +0100212 for (cursor = rxnet->local_endpoints.next;
213 cursor != &rxnet->local_endpoints;
David Howells4f95dd72016-04-04 14:00:35 +0100214 cursor = cursor->next) {
215 local = list_entry(cursor, struct rxrpc_local, link);
David Howells17926a72007-04-26 15:48:28 -0700216
David Howells4f95dd72016-04-04 14:00:35 +0100217 diff = rxrpc_local_cmp_key(local, srx);
218 if (diff < 0)
David Howells17926a72007-04-26 15:48:28 -0700219 continue;
David Howells4f95dd72016-04-04 14:00:35 +0100220 if (diff > 0)
221 break;
David Howells17926a72007-04-26 15:48:28 -0700222
David Howells4f95dd72016-04-04 14:00:35 +0100223 /* Services aren't allowed to share transport sockets, so
224 * reject that here. It is possible that the object is dying -
225 * but it may also still have the local transport address that
226 * we want bound.
227 */
228 if (srx->srx_service) {
229 local = NULL;
230 goto addr_in_use;
David Howells17926a72007-04-26 15:48:28 -0700231 }
David Howells4f95dd72016-04-04 14:00:35 +0100232
233 /* Found a match. We replace a dying object. Attempting to
234 * bind the transport socket may still fail if we're attempting
235 * to use a local address that the dying object is still using.
236 */
David Howells730c5fd2019-08-09 15:20:41 +0100237 if (!rxrpc_use_local(local))
David Howells4f95dd72016-04-04 14:00:35 +0100238 break;
David Howells4f95dd72016-04-04 14:00:35 +0100239
240 age = "old";
241 goto found;
David Howells17926a72007-04-26 15:48:28 -0700242 }
243
David Howells2baec2c2017-05-24 17:02:32 +0100244 local = rxrpc_alloc_local(rxnet, srx);
David Howells4f95dd72016-04-04 14:00:35 +0100245 if (!local)
246 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700247
David Howells2baec2c2017-05-24 17:02:32 +0100248 ret = rxrpc_open_socket(local, net);
David Howells4f95dd72016-04-04 14:00:35 +0100249 if (ret < 0)
250 goto sock_error;
David Howells17926a72007-04-26 15:48:28 -0700251
David Howells730c5fd2019-08-09 15:20:41 +0100252 if (cursor != &rxnet->local_endpoints)
David Howellsb00df842019-08-12 23:30:06 +0100253 list_replace_init(cursor, &local->link);
David Howells730c5fd2019-08-09 15:20:41 +0100254 else
255 list_add_tail(&local->link, cursor);
David Howells4f95dd72016-04-04 14:00:35 +0100256 age = "new";
David Howells17926a72007-04-26 15:48:28 -0700257
David Howells4f95dd72016-04-04 14:00:35 +0100258found:
David Howells2baec2c2017-05-24 17:02:32 +0100259 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100260
David Howells75b54cb2016-09-13 08:49:05 +0100261 _net("LOCAL %s %d {%pISp}",
262 age, local->debug_id, &local->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700263
David Howells4f95dd72016-04-04 14:00:35 +0100264 _leave(" = %p", local);
David Howells17926a72007-04-26 15:48:28 -0700265 return local;
266
David Howells4f95dd72016-04-04 14:00:35 +0100267nomem:
268 ret = -ENOMEM;
269sock_error:
David Howells2baec2c2017-05-24 17:02:32 +0100270 mutex_unlock(&rxnet->local_mutex);
Eric Dumazet032be5f2019-04-24 09:44:11 -0700271 if (local)
272 call_rcu(&local->rcu, rxrpc_local_rcu);
David Howells4f95dd72016-04-04 14:00:35 +0100273 _leave(" = %d", ret);
274 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700275
David Howells4f95dd72016-04-04 14:00:35 +0100276addr_in_use:
David Howells2baec2c2017-05-24 17:02:32 +0100277 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100278 _leave(" = -EADDRINUSE");
279 return ERR_PTR(-EADDRINUSE);
David Howells17926a72007-04-26 15:48:28 -0700280}
281
282/*
David Howells09d2bf52018-03-30 21:05:28 +0100283 * Get a ref on a local endpoint.
284 */
285struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *local)
286{
287 const void *here = __builtin_return_address(0);
288 int n;
289
290 n = atomic_inc_return(&local->usage);
David Howells06d95322019-08-13 22:26:36 +0100291 trace_rxrpc_local(local->debug_id, rxrpc_local_got, n, here);
David Howells09d2bf52018-03-30 21:05:28 +0100292 return local;
293}
294
295/*
296 * Get a ref on a local endpoint unless its usage has already reached 0.
297 */
298struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
299{
300 const void *here = __builtin_return_address(0);
301
302 if (local) {
Mark Rutlandbfc18e32018-06-21 13:13:04 +0100303 int n = atomic_fetch_add_unless(&local->usage, 1, 0);
David Howells09d2bf52018-03-30 21:05:28 +0100304 if (n > 0)
David Howells06d95322019-08-13 22:26:36 +0100305 trace_rxrpc_local(local->debug_id, rxrpc_local_got,
306 n + 1, here);
David Howells09d2bf52018-03-30 21:05:28 +0100307 else
308 local = NULL;
309 }
310 return local;
311}
312
313/*
David Howells06d95322019-08-13 22:26:36 +0100314 * Queue a local endpoint and pass the caller's reference to the work item.
David Howells09d2bf52018-03-30 21:05:28 +0100315 */
316void rxrpc_queue_local(struct rxrpc_local *local)
317{
318 const void *here = __builtin_return_address(0);
David Howells06d95322019-08-13 22:26:36 +0100319 unsigned int debug_id = local->debug_id;
320 int n = atomic_read(&local->usage);
David Howells09d2bf52018-03-30 21:05:28 +0100321
322 if (rxrpc_queue_work(&local->processor))
David Howells06d95322019-08-13 22:26:36 +0100323 trace_rxrpc_local(debug_id, rxrpc_local_queued, n, here);
David Howells730c5fd2019-08-09 15:20:41 +0100324 else
325 rxrpc_put_local(local);
David Howells17926a72007-04-26 15:48:28 -0700326}
327
328/*
David Howells09d2bf52018-03-30 21:05:28 +0100329 * Drop a ref on a local endpoint.
330 */
331void rxrpc_put_local(struct rxrpc_local *local)
332{
333 const void *here = __builtin_return_address(0);
David Howellsfac20b92020-01-30 21:50:35 +0000334 unsigned int debug_id;
David Howells09d2bf52018-03-30 21:05:28 +0100335 int n;
336
337 if (local) {
David Howellsfac20b92020-01-30 21:50:35 +0000338 debug_id = local->debug_id;
339
David Howells09d2bf52018-03-30 21:05:28 +0100340 n = atomic_dec_return(&local->usage);
David Howellsfac20b92020-01-30 21:50:35 +0000341 trace_rxrpc_local(debug_id, rxrpc_local_put, n, here);
David Howells09d2bf52018-03-30 21:05:28 +0100342
343 if (n == 0)
David Howells730c5fd2019-08-09 15:20:41 +0100344 call_rcu(&local->rcu, rxrpc_local_rcu);
David Howells09d2bf52018-03-30 21:05:28 +0100345 }
346}
347
348/*
David Howells730c5fd2019-08-09 15:20:41 +0100349 * Start using a local endpoint.
350 */
351struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *local)
352{
David Howells730c5fd2019-08-09 15:20:41 +0100353 local = rxrpc_get_local_maybe(local);
354 if (!local)
355 return NULL;
356
David Howells04d36d72020-01-30 21:50:36 +0000357 if (!__rxrpc_use_local(local)) {
David Howells730c5fd2019-08-09 15:20:41 +0100358 rxrpc_put_local(local);
359 return NULL;
360 }
361
362 return local;
363}
364
365/*
366 * Cease using a local endpoint. Once the number of active users reaches 0, we
367 * start the closure of the transport in the work processor.
368 */
369void rxrpc_unuse_local(struct rxrpc_local *local)
370{
David Howells68553f12019-08-09 22:47:47 +0100371 if (local) {
David Howells04d36d72020-01-30 21:50:36 +0000372 if (__rxrpc_unuse_local(local)) {
373 rxrpc_get_local(local);
David Howells68553f12019-08-09 22:47:47 +0100374 rxrpc_queue_local(local);
David Howells04d36d72020-01-30 21:50:36 +0000375 }
David Howells68553f12019-08-09 22:47:47 +0100376 }
David Howells730c5fd2019-08-09 15:20:41 +0100377}
378
379/*
David Howells4f95dd72016-04-04 14:00:35 +0100380 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
381 * of.
382 *
383 * Closing the socket cannot be done from bottom half context or RCU callback
384 * context because it might sleep.
David Howells17926a72007-04-26 15:48:28 -0700385 */
David Howells4f95dd72016-04-04 14:00:35 +0100386static void rxrpc_local_destroyer(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700387{
David Howells4f95dd72016-04-04 14:00:35 +0100388 struct socket *socket = local->socket;
David Howells2baec2c2017-05-24 17:02:32 +0100389 struct rxrpc_net *rxnet = local->rxnet;
David Howells17926a72007-04-26 15:48:28 -0700390
David Howells4f95dd72016-04-04 14:00:35 +0100391 _enter("%d", local->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700392
David Howellsd12040b2019-08-29 14:12:11 +0100393 local->dead = true;
394
David Howells2baec2c2017-05-24 17:02:32 +0100395 mutex_lock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100396 list_del_init(&local->link);
David Howells2baec2c2017-05-24 17:02:32 +0100397 mutex_unlock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700398
David Howellsd12040b2019-08-29 14:12:11 +0100399 rxrpc_clean_up_local_conns(local);
400 rxrpc_service_connection_reaper(&rxnet->service_conn_reaper);
David Howells1e9e5c92016-09-29 22:37:15 +0100401 ASSERT(!local->service);
David Howells17926a72007-04-26 15:48:28 -0700402
David Howells4f95dd72016-04-04 14:00:35 +0100403 if (socket) {
404 local->socket = NULL;
405 kernel_sock_shutdown(socket, SHUT_RDWR);
406 socket->sk->sk_user_data = NULL;
407 sock_release(socket);
408 }
409
410 /* At this point, there should be no more packets coming in to the
411 * local endpoint.
412 */
David Howells17926a72007-04-26 15:48:28 -0700413 rxrpc_purge_queue(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +0100414 rxrpc_purge_queue(&local->event_queue);
David Howells4f95dd72016-04-04 14:00:35 +0100415}
416
417/*
David Howells730c5fd2019-08-09 15:20:41 +0100418 * Process events on an endpoint. The work item carries a ref which
419 * we must release.
David Howells4f95dd72016-04-04 14:00:35 +0100420 */
421static void rxrpc_local_processor(struct work_struct *work)
422{
423 struct rxrpc_local *local =
424 container_of(work, struct rxrpc_local, processor);
425 bool again;
426
David Howells06d95322019-08-13 22:26:36 +0100427 trace_rxrpc_local(local->debug_id, rxrpc_local_processing,
David Howells09d2bf52018-03-30 21:05:28 +0100428 atomic_read(&local->usage), NULL);
David Howells4f95dd72016-04-04 14:00:35 +0100429
430 do {
431 again = false;
David Howells04d36d72020-01-30 21:50:36 +0000432 if (!__rxrpc_use_local(local)) {
David Howells730c5fd2019-08-09 15:20:41 +0100433 rxrpc_local_destroyer(local);
434 break;
435 }
David Howells4f95dd72016-04-04 14:00:35 +0100436
David Howells4f95dd72016-04-04 14:00:35 +0100437 if (!skb_queue_empty(&local->reject_queue)) {
438 rxrpc_reject_packets(local);
439 again = true;
440 }
441
442 if (!skb_queue_empty(&local->event_queue)) {
443 rxrpc_process_local_events(local);
444 again = true;
445 }
David Howells04d36d72020-01-30 21:50:36 +0000446
447 __rxrpc_unuse_local(local);
David Howells4f95dd72016-04-04 14:00:35 +0100448 } while (again);
David Howells730c5fd2019-08-09 15:20:41 +0100449
450 rxrpc_put_local(local);
David Howells4f95dd72016-04-04 14:00:35 +0100451}
452
453/*
454 * Destroy a local endpoint after the RCU grace period expires.
455 */
456static void rxrpc_local_rcu(struct rcu_head *rcu)
457{
458 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
459
460 _enter("%d", local->debug_id);
461
462 ASSERT(!work_pending(&local->processor));
David Howells17926a72007-04-26 15:48:28 -0700463
464 _net("DESTROY LOCAL %d", local->debug_id);
465 kfree(local);
David Howells17926a72007-04-26 15:48:28 -0700466 _leave("");
467}
468
469/*
David Howells4f95dd72016-04-04 14:00:35 +0100470 * Verify the local endpoint list is empty by this point.
David Howells17926a72007-04-26 15:48:28 -0700471 */
David Howells2baec2c2017-05-24 17:02:32 +0100472void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700473{
David Howells4f95dd72016-04-04 14:00:35 +0100474 struct rxrpc_local *local;
David Howells17926a72007-04-26 15:48:28 -0700475
476 _enter("");
477
David Howellsdee46362016-06-27 17:11:19 +0100478 flush_workqueue(rxrpc_workqueue);
David Howells17926a72007-04-26 15:48:28 -0700479
David Howells2baec2c2017-05-24 17:02:32 +0100480 if (!list_empty(&rxnet->local_endpoints)) {
481 mutex_lock(&rxnet->local_mutex);
482 list_for_each_entry(local, &rxnet->local_endpoints, link) {
David Howellsdee46362016-06-27 17:11:19 +0100483 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
484 local, atomic_read(&local->usage));
485 }
David Howells2baec2c2017-05-24 17:02:32 +0100486 mutex_unlock(&rxnet->local_mutex);
David Howellsdee46362016-06-27 17:11:19 +0100487 BUG();
David Howells17926a72007-04-26 15:48:28 -0700488 }
David Howells17926a72007-04-26 15:48:28 -0700489}