Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/* Local endpoint object management
3 *
4 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
10#include <linux/module.h>
11#include <linux/net.h>
12#include <linux/skbuff.h>
13#include <linux/slab.h>
14#include <linux/udp.h>
15#include <linux/ip.h>
16#include <linux/hashtable.h>
17#include <net/sock.h>
18#include <net/udp.h>
19#include <net/udp_tunnel.h>
20#include <net/af_rxrpc.h>
21#include "ar-internal.h"
22
23static void rxrpc_local_rcu(struct rcu_head *);
24
25/*
26 * Handle an ICMP/ICMP6 error turning up at the tunnel. Push it through the
27 * usual mechanism so that it gets parsed and presented through the UDP
28 * socket's error_report().
29 */
30static void rxrpc_encap_err_rcv(struct sock *sk, struct sk_buff *skb, int err,
31 __be16 port, u32 info, u8 *payload)
32{
33 if (ip_hdr(skb)->version == IPVERSION)
34 return ip_icmp_error(sk, skb, err, port, info, payload);
35 if (IS_ENABLED(CONFIG_AF_RXRPC_IPV6))
36 return ipv6_icmp_error(sk, skb, err, port, info, payload);
37}
38
39/*
40 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
41 * same or greater than.
42 *
43 * We explicitly don't compare the RxRPC service ID as we want to reject
44 * conflicting uses by differing services. Further, we don't want to share
45 * addresses with different options (IPv6), so we don't compare those bits
46 * either.
47 */
48static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
49 const struct sockaddr_rxrpc *srx)
50{
51 long diff;
52
53 diff = ((local->srx.transport_type - srx->transport_type) ?:
54 (local->srx.transport_len - srx->transport_len) ?:
55 (local->srx.transport.family - srx->transport.family));
56 if (diff != 0)
57 return diff;
58
59 switch (srx->transport.family) {
60 case AF_INET:
61 /* If the choice of UDP port is left up to the transport, then
62 * the endpoint record doesn't match.
63 */
64 return ((u16 __force)local->srx.transport.sin.sin_port -
65 (u16 __force)srx->transport.sin.sin_port) ?:
66 memcmp(&local->srx.transport.sin.sin_addr,
67 &srx->transport.sin.sin_addr,
68 sizeof(struct in_addr));
69#ifdef CONFIG_AF_RXRPC_IPV6
70 case AF_INET6:
71 /* If the choice of UDP6 port is left up to the transport, then
72 * the endpoint record doesn't match.
73 */
74 return ((u16 __force)local->srx.transport.sin6.sin6_port -
75 (u16 __force)srx->transport.sin6.sin6_port) ?:
76 memcmp(&local->srx.transport.sin6.sin6_addr,
77 &srx->transport.sin6.sin6_addr,
78 sizeof(struct in6_addr));
79#endif
80 default:
81 BUG();
82 }
83}
84
85static void rxrpc_client_conn_reap_timeout(struct timer_list *timer)
86{
87 struct rxrpc_local *local =
88 container_of(timer, struct rxrpc_local, client_conn_reap_timer);
89
90 if (local->kill_all_client_conns &&
91 test_and_set_bit(RXRPC_CLIENT_CONN_REAP_TIMER, &local->client_conn_flags))
92 rxrpc_wake_up_io_thread(local);
93}
94
95/*
96 * Allocate a new local endpoint.
97 */
98static struct rxrpc_local *rxrpc_alloc_local(struct net *net,
99 const struct sockaddr_rxrpc *srx)
100{
101 struct rxrpc_local *local;
102 u32 tmp;
103
104 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
105 if (local) {
106 refcount_set(&local->ref, 1);
107 atomic_set(&local->active_users, 1);
108 local->net = net;
109 local->rxnet = rxrpc_net(net);
110 INIT_HLIST_NODE(&local->link);
111 init_rwsem(&local->defrag_sem);
112 init_completion(&local->io_thread_ready);
113 skb_queue_head_init(&local->rx_queue);
114 INIT_LIST_HEAD(&local->conn_attend_q);
115 INIT_LIST_HEAD(&local->call_attend_q);
116
117 local->client_bundles = RB_ROOT;
118 spin_lock_init(&local->client_bundles_lock);
119 local->kill_all_client_conns = false;
120 INIT_LIST_HEAD(&local->idle_client_conns);
121 timer_setup(&local->client_conn_reap_timer,
122 rxrpc_client_conn_reap_timeout, 0);
123
124 spin_lock_init(&local->lock);
125 rwlock_init(&local->services_lock);
126 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
127 memcpy(&local->srx, srx, sizeof(*srx));
128 local->srx.srx_service = 0;
129 idr_init(&local->conn_ids);
130 get_random_bytes(&tmp, sizeof(tmp));
131 tmp &= 0x3fffffff;
132 if (tmp == 0)
133 tmp = 1;
134 idr_set_cursor(&local->conn_ids, tmp);
135 INIT_LIST_HEAD(&local->new_client_calls);
136 spin_lock_init(&local->client_call_lock);
137
138 trace_rxrpc_local(local->debug_id, rxrpc_local_new, 1, 1);
139 }
140
141 _leave(" = %p", local);
142 return local;
143}
144
145/*
146 * create the local socket
147 * - must be called with rxrpc_local_mutex locked
148 */
149static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
150{
151 struct udp_tunnel_sock_cfg tuncfg = {NULL};
152 struct sockaddr_rxrpc *srx = &local->srx;
153 struct udp_port_cfg udp_conf = {0};
154 struct task_struct *io_thread;
155 struct sock *usk;
156 int ret;
157
158 _enter("%p{%d,%d}",
159 local, srx->transport_type, srx->transport.family);
160
161 udp_conf.family = srx->transport.family;
162 udp_conf.use_udp_checksums = true;
163 if (udp_conf.family == AF_INET) {
164 udp_conf.local_ip = srx->transport.sin.sin_addr;
165 udp_conf.local_udp_port = srx->transport.sin.sin_port;
166#if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
167 } else {
168 udp_conf.local_ip6 = srx->transport.sin6.sin6_addr;
169 udp_conf.local_udp_port = srx->transport.sin6.sin6_port;
170 udp_conf.use_udp6_tx_checksums = true;
171 udp_conf.use_udp6_rx_checksums = true;
172#endif
173 }
174 ret = udp_sock_create(net, &udp_conf, &local->socket);
175 if (ret < 0) {
176 _leave(" = %d [socket]", ret);
177 return ret;
178 }
179
180 tuncfg.encap_type = UDP_ENCAP_RXRPC;
181 tuncfg.encap_rcv = rxrpc_encap_rcv;
182 tuncfg.encap_err_rcv = rxrpc_encap_err_rcv;
183 tuncfg.sk_user_data = local;
184 setup_udp_tunnel_sock(net, local->socket, &tuncfg);
185
186 /* set the socket up */
187 usk = local->socket->sk;
188 usk->sk_error_report = rxrpc_error_report;
189
190 switch (srx->transport.family) {
191 case AF_INET6:
192 /* we want to receive ICMPv6 errors */
193 ip6_sock_set_recverr(usk);
194
195 /* Fall through and set IPv4 options too otherwise we don't get
196 * errors from IPv4 packets sent through the IPv6 socket.
197 */
198 fallthrough;
199 case AF_INET:
200 /* we want to receive ICMP errors */
201 ip_sock_set_recverr(usk);
202
203 /* we want to set the don't fragment bit */
204 ip_sock_set_mtu_discover(usk, IP_PMTUDISC_DO);
205
206 /* We want receive timestamps. */
207 sock_enable_timestamps(usk);
208 break;
209
210 default:
211 BUG();
212 }
213
214 io_thread = kthread_run(rxrpc_io_thread, local,
215 "krxrpcio/%u", ntohs(udp_conf.local_udp_port));
216 if (IS_ERR(io_thread)) {
217 ret = PTR_ERR(io_thread);
218 goto error_sock;
219 }
220
221 wait_for_completion(&local->io_thread_ready);
222 local->io_thread = io_thread;
223 _leave(" = 0");
224 return 0;
225
226error_sock:
227 kernel_sock_shutdown(local->socket, SHUT_RDWR);
228 local->socket->sk->sk_user_data = NULL;
229 sock_release(local->socket);
230 local->socket = NULL;
231 return ret;
232}
233
234/*
235 * Look up or create a new local endpoint using the specified local address.
236 */
237struct rxrpc_local *rxrpc_lookup_local(struct net *net,
238 const struct sockaddr_rxrpc *srx)
239{
240 struct rxrpc_local *local;
241 struct rxrpc_net *rxnet = rxrpc_net(net);
242 struct hlist_node *cursor;
243 long diff;
244 int ret;
245
246 _enter("{%d,%d,%pISp}",
247 srx->transport_type, srx->transport.family, &srx->transport);
248
249 mutex_lock(&rxnet->local_mutex);
250
251 hlist_for_each(cursor, &rxnet->local_endpoints) {
252 local = hlist_entry(cursor, struct rxrpc_local, link);
253
254 diff = rxrpc_local_cmp_key(local, srx);
255 if (diff != 0)
256 continue;
257
258 /* Services aren't allowed to share transport sockets, so
259 * reject that here. It is possible that the object is dying -
260 * but it may also still have the local transport address that
261 * we want bound.
262 */
263 if (srx->srx_service) {
264 local = NULL;
265 goto addr_in_use;
266 }
267
268 /* Found a match. We want to replace a dying object.
269 * Attempting to bind the transport socket may still fail if
270 * we're attempting to use a local address that the dying
271 * object is still using.
272 */
273 if (!rxrpc_use_local(local, rxrpc_local_use_lookup))
274 break;
275
276 goto found;
277 }
278
279 local = rxrpc_alloc_local(net, srx);
280 if (!local)
281 goto nomem;
282
283 ret = rxrpc_open_socket(local, net);
284 if (ret < 0)
285 goto sock_error;
286
287 if (cursor) {
288 hlist_replace_rcu(cursor, &local->link);
289 cursor->pprev = NULL;
290 } else {
291 hlist_add_head_rcu(&local->link, &rxnet->local_endpoints);
292 }
293
294found:
295 mutex_unlock(&rxnet->local_mutex);
296 _leave(" = %p", local);
297 return local;
298
299nomem:
300 ret = -ENOMEM;
301sock_error:
302 mutex_unlock(&rxnet->local_mutex);
303 if (local)
304 call_rcu(&local->rcu, rxrpc_local_rcu);
305 _leave(" = %d", ret);
306 return ERR_PTR(ret);
307
308addr_in_use:
309 mutex_unlock(&rxnet->local_mutex);
310 _leave(" = -EADDRINUSE");
311 return ERR_PTR(-EADDRINUSE);
312}
313
314/*
315 * Get a ref on a local endpoint.
316 */
317struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *local,
318 enum rxrpc_local_trace why)
319{
320 int r, u;
321
322 u = atomic_read(&local->active_users);
323 __refcount_inc(&local->ref, &r);
324 trace_rxrpc_local(local->debug_id, why, r + 1, u);
325 return local;
326}
327
328/*
329 * Get a ref on a local endpoint unless its usage has already reached 0.
330 */
331struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local,
332 enum rxrpc_local_trace why)
333{
334 int r, u;
335
336 if (local && __refcount_inc_not_zero(&local->ref, &r)) {
337 u = atomic_read(&local->active_users);
338 trace_rxrpc_local(local->debug_id, why, r + 1, u);
339 return local;
340 }
341
342 return NULL;
343}
344
345/*
346 * Drop a ref on a local endpoint.
347 */
348void rxrpc_put_local(struct rxrpc_local *local, enum rxrpc_local_trace why)
349{
350 unsigned int debug_id;
351 bool dead;
352 int r, u;
353
354 if (local) {
355 debug_id = local->debug_id;
356
357 u = atomic_read(&local->active_users);
358 dead = __refcount_dec_and_test(&local->ref, &r);
359 trace_rxrpc_local(debug_id, why, r, u);
360
361 if (dead)
362 call_rcu(&local->rcu, rxrpc_local_rcu);
363 }
364}
365
366/*
367 * Start using a local endpoint.
368 */
369struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *local,
370 enum rxrpc_local_trace why)
371{
372 local = rxrpc_get_local_maybe(local, rxrpc_local_get_for_use);
373 if (!local)
374 return NULL;
375
376 if (!__rxrpc_use_local(local, why)) {
377 rxrpc_put_local(local, rxrpc_local_put_for_use);
378 return NULL;
379 }
380
381 return local;
382}
383
384/*
385 * Cease using a local endpoint. Once the number of active users reaches 0, we
386 * start the closure of the transport in the I/O thread..
387 */
388void rxrpc_unuse_local(struct rxrpc_local *local, enum rxrpc_local_trace why)
389{
390 unsigned int debug_id;
391 int r, u;
392
393 if (local) {
394 debug_id = local->debug_id;
395 r = refcount_read(&local->ref);
396 u = atomic_dec_return(&local->active_users);
397 trace_rxrpc_local(debug_id, why, r, u);
398 if (u == 0)
399 kthread_stop(local->io_thread);
400 }
401}
402
403/*
404 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
405 * of.
406 *
407 * Closing the socket cannot be done from bottom half context or RCU callback
408 * context because it might sleep.
409 */
410void rxrpc_destroy_local(struct rxrpc_local *local)
411{
412 struct socket *socket = local->socket;
413 struct rxrpc_net *rxnet = local->rxnet;
414
415 _enter("%d", local->debug_id);
416
417 local->dead = true;
418
419 mutex_lock(&rxnet->local_mutex);
420 hlist_del_init_rcu(&local->link);
421 mutex_unlock(&rxnet->local_mutex);
422
423 rxrpc_clean_up_local_conns(local);
424 rxrpc_service_connection_reaper(&rxnet->service_conn_reaper);
425 ASSERT(!local->service);
426
427 if (socket) {
428 local->socket = NULL;
429 kernel_sock_shutdown(socket, SHUT_RDWR);
430 socket->sk->sk_user_data = NULL;
431 sock_release(socket);
432 }
433
434 /* At this point, there should be no more packets coming in to the
435 * local endpoint.
436 */
437 rxrpc_purge_queue(&local->rx_queue);
438 rxrpc_purge_client_connections(local);
439}
440
441/*
442 * Destroy a local endpoint after the RCU grace period expires.
443 */
444static void rxrpc_local_rcu(struct rcu_head *rcu)
445{
446 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
447
448 rxrpc_see_local(local, rxrpc_local_free);
449 kfree(local);
450}
451
452/*
453 * Verify the local endpoint list is empty by this point.
454 */
455void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
456{
457 struct rxrpc_local *local;
458
459 _enter("");
460
461 flush_workqueue(rxrpc_workqueue);
462
463 if (!hlist_empty(&rxnet->local_endpoints)) {
464 mutex_lock(&rxnet->local_mutex);
465 hlist_for_each_entry(local, &rxnet->local_endpoints, link) {
466 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
467 local, refcount_read(&local->ref));
468 }
469 mutex_unlock(&rxnet->local_mutex);
470 BUG();
471 }
472}
1/* Local endpoint object management
2 *
3 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
4 * 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
17#include <linux/slab.h>
18#include <linux/udp.h>
19#include <linux/ip.h>
20#include <linux/hashtable.h>
21#include <net/sock.h>
22#include <net/af_rxrpc.h>
23#include "ar-internal.h"
24
25static void rxrpc_local_processor(struct work_struct *);
26static void rxrpc_local_rcu(struct rcu_head *);
27
28static DEFINE_MUTEX(rxrpc_local_mutex);
29static LIST_HEAD(rxrpc_local_endpoints);
30
31/*
32 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
33 * same or greater than.
34 *
35 * We explicitly don't compare the RxRPC service ID as we want to reject
36 * conflicting uses by differing services. Further, we don't want to share
37 * addresses with different options (IPv6), so we don't compare those bits
38 * either.
39 */
40static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
41 const struct sockaddr_rxrpc *srx)
42{
43 long diff;
44
45 diff = ((local->srx.transport_type - srx->transport_type) ?:
46 (local->srx.transport_len - srx->transport_len) ?:
47 (local->srx.transport.family - srx->transport.family));
48 if (diff != 0)
49 return diff;
50
51 switch (srx->transport.family) {
52 case AF_INET:
53 /* If the choice of UDP port is left up to the transport, then
54 * the endpoint record doesn't match.
55 */
56 return ((u16 __force)local->srx.transport.sin.sin_port -
57 (u16 __force)srx->transport.sin.sin_port) ?:
58 memcmp(&local->srx.transport.sin.sin_addr,
59 &srx->transport.sin.sin_addr,
60 sizeof(struct in_addr));
61#ifdef CONFIG_AF_RXRPC_IPV6
62 case AF_INET6:
63 /* If the choice of UDP6 port is left up to the transport, then
64 * the endpoint record doesn't match.
65 */
66 return ((u16 __force)local->srx.transport.sin6.sin6_port -
67 (u16 __force)srx->transport.sin6.sin6_port) ?:
68 memcmp(&local->srx.transport.sin6.sin6_addr,
69 &srx->transport.sin6.sin6_addr,
70 sizeof(struct in6_addr));
71#endif
72 default:
73 BUG();
74 }
75}
76
77/*
78 * Allocate a new local endpoint.
79 */
80static struct rxrpc_local *rxrpc_alloc_local(const struct sockaddr_rxrpc *srx)
81{
82 struct rxrpc_local *local;
83
84 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
85 if (local) {
86 atomic_set(&local->usage, 1);
87 INIT_LIST_HEAD(&local->link);
88 INIT_WORK(&local->processor, rxrpc_local_processor);
89 init_rwsem(&local->defrag_sem);
90 skb_queue_head_init(&local->reject_queue);
91 skb_queue_head_init(&local->event_queue);
92 local->client_conns = RB_ROOT;
93 spin_lock_init(&local->client_conns_lock);
94 spin_lock_init(&local->lock);
95 rwlock_init(&local->services_lock);
96 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
97 memcpy(&local->srx, srx, sizeof(*srx));
98 }
99
100 _leave(" = %p", local);
101 return local;
102}
103
104/*
105 * create the local socket
106 * - must be called with rxrpc_local_mutex locked
107 */
108static int rxrpc_open_socket(struct rxrpc_local *local)
109{
110 struct sock *sock;
111 int ret, opt;
112
113 _enter("%p{%d,%d}",
114 local, local->srx.transport_type, local->srx.transport.family);
115
116 /* create a socket to represent the local endpoint */
117 ret = sock_create_kern(&init_net, local->srx.transport.family,
118 local->srx.transport_type, 0, &local->socket);
119 if (ret < 0) {
120 _leave(" = %d [socket]", ret);
121 return ret;
122 }
123
124 /* if a local address was supplied then bind it */
125 if (local->srx.transport_len > sizeof(sa_family_t)) {
126 _debug("bind");
127 ret = kernel_bind(local->socket,
128 (struct sockaddr *)&local->srx.transport,
129 local->srx.transport_len);
130 if (ret < 0) {
131 _debug("bind failed %d", ret);
132 goto error;
133 }
134 }
135
136 /* we want to receive ICMP errors */
137 opt = 1;
138 ret = kernel_setsockopt(local->socket, SOL_IP, IP_RECVERR,
139 (char *) &opt, sizeof(opt));
140 if (ret < 0) {
141 _debug("setsockopt failed");
142 goto error;
143 }
144
145 /* we want to set the don't fragment bit */
146 opt = IP_PMTUDISC_DO;
147 ret = kernel_setsockopt(local->socket, SOL_IP, IP_MTU_DISCOVER,
148 (char *) &opt, sizeof(opt));
149 if (ret < 0) {
150 _debug("setsockopt failed");
151 goto error;
152 }
153
154 /* set the socket up */
155 sock = local->socket->sk;
156 sock->sk_user_data = local;
157 sock->sk_data_ready = rxrpc_data_ready;
158 sock->sk_error_report = rxrpc_error_report;
159 _leave(" = 0");
160 return 0;
161
162error:
163 kernel_sock_shutdown(local->socket, SHUT_RDWR);
164 local->socket->sk->sk_user_data = NULL;
165 sock_release(local->socket);
166 local->socket = NULL;
167
168 _leave(" = %d", ret);
169 return ret;
170}
171
172/*
173 * Look up or create a new local endpoint using the specified local address.
174 */
175struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *srx)
176{
177 struct rxrpc_local *local;
178 struct list_head *cursor;
179 const char *age;
180 long diff;
181 int ret;
182
183 _enter("{%d,%d,%pISp}",
184 srx->transport_type, srx->transport.family, &srx->transport);
185
186 mutex_lock(&rxrpc_local_mutex);
187
188 for (cursor = rxrpc_local_endpoints.next;
189 cursor != &rxrpc_local_endpoints;
190 cursor = cursor->next) {
191 local = list_entry(cursor, struct rxrpc_local, link);
192
193 diff = rxrpc_local_cmp_key(local, srx);
194 if (diff < 0)
195 continue;
196 if (diff > 0)
197 break;
198
199 /* Services aren't allowed to share transport sockets, so
200 * reject that here. It is possible that the object is dying -
201 * but it may also still have the local transport address that
202 * we want bound.
203 */
204 if (srx->srx_service) {
205 local = NULL;
206 goto addr_in_use;
207 }
208
209 /* Found a match. We replace a dying object. Attempting to
210 * bind the transport socket may still fail if we're attempting
211 * to use a local address that the dying object is still using.
212 */
213 if (!rxrpc_get_local_maybe(local)) {
214 cursor = cursor->next;
215 list_del_init(&local->link);
216 break;
217 }
218
219 age = "old";
220 goto found;
221 }
222
223 local = rxrpc_alloc_local(srx);
224 if (!local)
225 goto nomem;
226
227 ret = rxrpc_open_socket(local);
228 if (ret < 0)
229 goto sock_error;
230
231 list_add_tail(&local->link, cursor);
232 age = "new";
233
234found:
235 mutex_unlock(&rxrpc_local_mutex);
236
237 _net("LOCAL %s %d {%pISp}",
238 age, local->debug_id, &local->srx.transport);
239
240 _leave(" = %p", local);
241 return local;
242
243nomem:
244 ret = -ENOMEM;
245sock_error:
246 mutex_unlock(&rxrpc_local_mutex);
247 kfree(local);
248 _leave(" = %d", ret);
249 return ERR_PTR(ret);
250
251addr_in_use:
252 mutex_unlock(&rxrpc_local_mutex);
253 _leave(" = -EADDRINUSE");
254 return ERR_PTR(-EADDRINUSE);
255}
256
257/*
258 * A local endpoint reached its end of life.
259 */
260void __rxrpc_put_local(struct rxrpc_local *local)
261{
262 _enter("%d", local->debug_id);
263 rxrpc_queue_work(&local->processor);
264}
265
266/*
267 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
268 * of.
269 *
270 * Closing the socket cannot be done from bottom half context or RCU callback
271 * context because it might sleep.
272 */
273static void rxrpc_local_destroyer(struct rxrpc_local *local)
274{
275 struct socket *socket = local->socket;
276
277 _enter("%d", local->debug_id);
278
279 /* We can get a race between an incoming call packet queueing the
280 * processor again and the work processor starting the destruction
281 * process which will shut down the UDP socket.
282 */
283 if (local->dead) {
284 _leave(" [already dead]");
285 return;
286 }
287 local->dead = true;
288
289 mutex_lock(&rxrpc_local_mutex);
290 list_del_init(&local->link);
291 mutex_unlock(&rxrpc_local_mutex);
292
293 ASSERT(RB_EMPTY_ROOT(&local->client_conns));
294 ASSERT(!local->service);
295
296 if (socket) {
297 local->socket = NULL;
298 kernel_sock_shutdown(socket, SHUT_RDWR);
299 socket->sk->sk_user_data = NULL;
300 sock_release(socket);
301 }
302
303 /* At this point, there should be no more packets coming in to the
304 * local endpoint.
305 */
306 rxrpc_purge_queue(&local->reject_queue);
307 rxrpc_purge_queue(&local->event_queue);
308
309 _debug("rcu local %d", local->debug_id);
310 call_rcu(&local->rcu, rxrpc_local_rcu);
311}
312
313/*
314 * Process events on an endpoint
315 */
316static void rxrpc_local_processor(struct work_struct *work)
317{
318 struct rxrpc_local *local =
319 container_of(work, struct rxrpc_local, processor);
320 bool again;
321
322 _enter("%d", local->debug_id);
323
324 do {
325 again = false;
326 if (atomic_read(&local->usage) == 0)
327 return rxrpc_local_destroyer(local);
328
329 if (!skb_queue_empty(&local->reject_queue)) {
330 rxrpc_reject_packets(local);
331 again = true;
332 }
333
334 if (!skb_queue_empty(&local->event_queue)) {
335 rxrpc_process_local_events(local);
336 again = true;
337 }
338 } while (again);
339}
340
341/*
342 * Destroy a local endpoint after the RCU grace period expires.
343 */
344static void rxrpc_local_rcu(struct rcu_head *rcu)
345{
346 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
347
348 _enter("%d", local->debug_id);
349
350 ASSERT(!work_pending(&local->processor));
351
352 _net("DESTROY LOCAL %d", local->debug_id);
353 kfree(local);
354 _leave("");
355}
356
357/*
358 * Verify the local endpoint list is empty by this point.
359 */
360void __exit rxrpc_destroy_all_locals(void)
361{
362 struct rxrpc_local *local;
363
364 _enter("");
365
366 flush_workqueue(rxrpc_workqueue);
367
368 if (!list_empty(&rxrpc_local_endpoints)) {
369 mutex_lock(&rxrpc_local_mutex);
370 list_for_each_entry(local, &rxrpc_local_endpoints, link) {
371 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
372 local, atomic_read(&local->usage));
373 }
374 mutex_unlock(&rxrpc_local_mutex);
375 BUG();
376 }
377
378 rcu_barrier();
379}