1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* Local endpoint object management
4 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
16 #include <linux/hashtable.h>
19 #include <net/udp_tunnel.h>
20 #include <net/af_rxrpc.h>
21 #include "ar-internal.h"
23 static void rxrpc_local_processor(struct work_struct *);
24 static void rxrpc_local_rcu(struct rcu_head *);
27 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
28 * same or greater than.
30 * We explicitly don't compare the RxRPC service ID as we want to reject
31 * conflicting uses by differing services. Further, we don't want to share
32 * addresses with different options (IPv6), so we don't compare those bits
35 static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
36 const struct sockaddr_rxrpc *srx)
40 diff = ((local->srx.transport_type - srx->transport_type) ?:
41 (local->srx.transport_len - srx->transport_len) ?:
42 (local->srx.transport.family - srx->transport.family));
46 switch (srx->transport.family) {
48 /* If the choice of UDP port is left up to the transport, then
49 * the endpoint record doesn't match.
51 return ((u16 __force)local->srx.transport.sin.sin_port -
52 (u16 __force)srx->transport.sin.sin_port) ?:
53 memcmp(&local->srx.transport.sin.sin_addr,
54 &srx->transport.sin.sin_addr,
55 sizeof(struct in_addr));
56 #ifdef CONFIG_AF_RXRPC_IPV6
58 /* If the choice of UDP6 port is left up to the transport, then
59 * the endpoint record doesn't match.
61 return ((u16 __force)local->srx.transport.sin6.sin6_port -
62 (u16 __force)srx->transport.sin6.sin6_port) ?:
63 memcmp(&local->srx.transport.sin6.sin6_addr,
64 &srx->transport.sin6.sin6_addr,
65 sizeof(struct in6_addr));
73 * Allocate a new local endpoint.
75 static struct rxrpc_local *rxrpc_alloc_local(struct rxrpc_net *rxnet,
76 const struct sockaddr_rxrpc *srx)
78 struct rxrpc_local *local;
80 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
82 atomic_set(&local->usage, 1);
83 atomic_set(&local->active_users, 1);
85 INIT_LIST_HEAD(&local->link);
86 INIT_WORK(&local->processor, rxrpc_local_processor);
87 init_rwsem(&local->defrag_sem);
88 skb_queue_head_init(&local->reject_queue);
89 skb_queue_head_init(&local->event_queue);
90 local->client_bundles = RB_ROOT;
91 spin_lock_init(&local->client_bundles_lock);
92 spin_lock_init(&local->lock);
93 rwlock_init(&local->services_lock);
94 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
95 memcpy(&local->srx, srx, sizeof(*srx));
96 local->srx.srx_service = 0;
97 trace_rxrpc_local(local->debug_id, rxrpc_local_new, 1, NULL);
100 _leave(" = %p", local);
105 * create the local socket
106 * - must be called with rxrpc_local_mutex locked
108 static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
110 struct udp_tunnel_sock_cfg tuncfg = {NULL};
111 struct sockaddr_rxrpc *srx = &local->srx;
112 struct udp_port_cfg udp_conf = {0};
117 local, srx->transport_type, srx->transport.family);
119 udp_conf.family = srx->transport.family;
120 if (udp_conf.family == AF_INET) {
121 udp_conf.local_ip = srx->transport.sin.sin_addr;
122 udp_conf.local_udp_port = srx->transport.sin.sin_port;
123 #if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
125 udp_conf.local_ip6 = srx->transport.sin6.sin6_addr;
126 udp_conf.local_udp_port = srx->transport.sin6.sin6_port;
129 ret = udp_sock_create(net, &udp_conf, &local->socket);
131 _leave(" = %d [socket]", ret);
135 tuncfg.encap_type = UDP_ENCAP_RXRPC;
136 tuncfg.encap_rcv = rxrpc_input_packet;
137 tuncfg.sk_user_data = local;
138 setup_udp_tunnel_sock(net, local->socket, &tuncfg);
140 /* set the socket up */
141 usk = local->socket->sk;
142 usk->sk_error_report = rxrpc_error_report;
144 switch (srx->transport.family) {
146 /* we want to receive ICMPv6 errors */
147 ip6_sock_set_recverr(usk);
149 /* Fall through and set IPv4 options too otherwise we don't get
150 * errors from IPv4 packets sent through the IPv6 socket.
154 /* we want to receive ICMP errors */
155 ip_sock_set_recverr(usk);
157 /* we want to set the don't fragment bit */
158 ip_sock_set_mtu_discover(usk, IP_PMTUDISC_DO);
160 /* We want receive timestamps. */
161 sock_enable_timestamps(usk);
173 * Look up or create a new local endpoint using the specified local address.
175 struct rxrpc_local *rxrpc_lookup_local(struct net *net,
176 const struct sockaddr_rxrpc *srx)
178 struct rxrpc_local *local;
179 struct rxrpc_net *rxnet = rxrpc_net(net);
180 struct list_head *cursor;
185 _enter("{%d,%d,%pISp}",
186 srx->transport_type, srx->transport.family, &srx->transport);
188 mutex_lock(&rxnet->local_mutex);
190 for (cursor = rxnet->local_endpoints.next;
191 cursor != &rxnet->local_endpoints;
192 cursor = cursor->next) {
193 local = list_entry(cursor, struct rxrpc_local, link);
195 diff = rxrpc_local_cmp_key(local, srx);
201 /* Services aren't allowed to share transport sockets, so
202 * reject that here. It is possible that the object is dying -
203 * but it may also still have the local transport address that
206 if (srx->srx_service) {
211 /* Found a match. We replace a dying object. Attempting to
212 * bind the transport socket may still fail if we're attempting
213 * to use a local address that the dying object is still using.
215 if (!rxrpc_use_local(local))
222 local = rxrpc_alloc_local(rxnet, srx);
226 ret = rxrpc_open_socket(local, net);
230 if (cursor != &rxnet->local_endpoints)
231 list_replace_init(cursor, &local->link);
233 list_add_tail(&local->link, cursor);
237 mutex_unlock(&rxnet->local_mutex);
239 _net("LOCAL %s %d {%pISp}",
240 age, local->debug_id, &local->srx.transport);
242 _leave(" = %p", local);
248 mutex_unlock(&rxnet->local_mutex);
250 call_rcu(&local->rcu, rxrpc_local_rcu);
251 _leave(" = %d", ret);
255 mutex_unlock(&rxnet->local_mutex);
256 _leave(" = -EADDRINUSE");
257 return ERR_PTR(-EADDRINUSE);
261 * Get a ref on a local endpoint.
263 struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *local)
265 const void *here = __builtin_return_address(0);
268 n = atomic_inc_return(&local->usage);
269 trace_rxrpc_local(local->debug_id, rxrpc_local_got, n, here);
274 * Get a ref on a local endpoint unless its usage has already reached 0.
276 struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
278 const void *here = __builtin_return_address(0);
281 int n = atomic_fetch_add_unless(&local->usage, 1, 0);
283 trace_rxrpc_local(local->debug_id, rxrpc_local_got,
292 * Queue a local endpoint and pass the caller's reference to the work item.
294 void rxrpc_queue_local(struct rxrpc_local *local)
296 const void *here = __builtin_return_address(0);
297 unsigned int debug_id = local->debug_id;
298 int n = atomic_read(&local->usage);
300 if (rxrpc_queue_work(&local->processor))
301 trace_rxrpc_local(debug_id, rxrpc_local_queued, n, here);
303 rxrpc_put_local(local);
307 * Drop a ref on a local endpoint.
309 void rxrpc_put_local(struct rxrpc_local *local)
311 const void *here = __builtin_return_address(0);
312 unsigned int debug_id;
316 debug_id = local->debug_id;
318 n = atomic_dec_return(&local->usage);
319 trace_rxrpc_local(debug_id, rxrpc_local_put, n, here);
322 call_rcu(&local->rcu, rxrpc_local_rcu);
327 * Start using a local endpoint.
329 struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *local)
331 local = rxrpc_get_local_maybe(local);
335 if (!__rxrpc_use_local(local)) {
336 rxrpc_put_local(local);
344 * Cease using a local endpoint. Once the number of active users reaches 0, we
345 * start the closure of the transport in the work processor.
347 void rxrpc_unuse_local(struct rxrpc_local *local)
350 if (__rxrpc_unuse_local(local)) {
351 rxrpc_get_local(local);
352 rxrpc_queue_local(local);
358 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
361 * Closing the socket cannot be done from bottom half context or RCU callback
362 * context because it might sleep.
364 static void rxrpc_local_destroyer(struct rxrpc_local *local)
366 struct socket *socket = local->socket;
367 struct rxrpc_net *rxnet = local->rxnet;
369 _enter("%d", local->debug_id);
373 mutex_lock(&rxnet->local_mutex);
374 list_del_init(&local->link);
375 mutex_unlock(&rxnet->local_mutex);
377 rxrpc_clean_up_local_conns(local);
378 rxrpc_service_connection_reaper(&rxnet->service_conn_reaper);
379 ASSERT(!local->service);
382 local->socket = NULL;
383 kernel_sock_shutdown(socket, SHUT_RDWR);
384 socket->sk->sk_user_data = NULL;
385 sock_release(socket);
388 /* At this point, there should be no more packets coming in to the
391 rxrpc_purge_queue(&local->reject_queue);
392 rxrpc_purge_queue(&local->event_queue);
396 * Process events on an endpoint. The work item carries a ref which
399 static void rxrpc_local_processor(struct work_struct *work)
401 struct rxrpc_local *local =
402 container_of(work, struct rxrpc_local, processor);
405 trace_rxrpc_local(local->debug_id, rxrpc_local_processing,
406 atomic_read(&local->usage), NULL);
410 if (!__rxrpc_use_local(local)) {
411 rxrpc_local_destroyer(local);
415 if (!skb_queue_empty(&local->reject_queue)) {
416 rxrpc_reject_packets(local);
420 if (!skb_queue_empty(&local->event_queue)) {
421 rxrpc_process_local_events(local);
425 __rxrpc_unuse_local(local);
428 rxrpc_put_local(local);
432 * Destroy a local endpoint after the RCU grace period expires.
434 static void rxrpc_local_rcu(struct rcu_head *rcu)
436 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
438 _enter("%d", local->debug_id);
440 ASSERT(!work_pending(&local->processor));
442 _net("DESTROY LOCAL %d", local->debug_id);
448 * Verify the local endpoint list is empty by this point.
450 void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
452 struct rxrpc_local *local;
456 flush_workqueue(rxrpc_workqueue);
458 if (!list_empty(&rxnet->local_endpoints)) {
459 mutex_lock(&rxnet->local_mutex);
460 list_for_each_entry(local, &rxnet->local_endpoints, link) {
461 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
462 local, atomic_read(&local->usage));
464 mutex_unlock(&rxnet->local_mutex);