treewide: Use fallthrough pseudo-keyword
[linux-block.git] / net / rxrpc / local_object.c
CommitLineData
b4d0d230 1// SPDX-License-Identifier: GPL-2.0-or-later
87563616 2/* Local endpoint object management
17926a79 3 *
4f95dd78 4 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
17926a79 5 * Written by David Howells (dhowells@redhat.com)
17926a79
DH
6 */
7
9b6d5398
JP
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
17926a79
DH
10#include <linux/module.h>
11#include <linux/net.h>
12#include <linux/skbuff.h>
5a0e3ad6 13#include <linux/slab.h>
44ba0698
DH
14#include <linux/udp.h>
15#include <linux/ip.h>
4f95dd78 16#include <linux/hashtable.h>
17926a79 17#include <net/sock.h>
5271953c 18#include <net/udp.h>
17926a79
DH
19#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
4f95dd78
DH
22static void rxrpc_local_processor(struct work_struct *);
23static void rxrpc_local_rcu(struct rcu_head *);
17926a79 24
17926a79 25/*
4f95dd78
DH
26 * 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.
17926a79 33 */
4f95dd78
DH
34static 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));
d1912747 55#ifdef CONFIG_AF_RXRPC_IPV6
75b54cb5
DH
56 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));
d1912747 65#endif
4f95dd78
DH
66 default:
67 BUG();
68 }
69}
70
71/*
72 * Allocate a new local endpoint.
73 */
2baec2c3
DH
74static struct rxrpc_local *rxrpc_alloc_local(struct rxrpc_net *rxnet,
75 const struct sockaddr_rxrpc *srx)
17926a79
DH
76{
77 struct rxrpc_local *local;
78
79 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
80 if (local) {
4f95dd78 81 atomic_set(&local->usage, 1);
730c5fd4 82 atomic_set(&local->active_users, 1);
2baec2c3 83 local->rxnet = rxnet;
17926a79 84 INIT_LIST_HEAD(&local->link);
4f95dd78 85 INIT_WORK(&local->processor, rxrpc_local_processor);
17926a79 86 init_rwsem(&local->defrag_sem);
17926a79 87 skb_queue_head_init(&local->reject_queue);
44ba0698 88 skb_queue_head_init(&local->event_queue);
999b69f8
DH
89 local->client_conns = RB_ROOT;
90 spin_lock_init(&local->client_conns_lock);
17926a79
DH
91 spin_lock_init(&local->lock);
92 rwlock_init(&local->services_lock);
17926a79
DH
93 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
94 memcpy(&local->srx, srx, sizeof(*srx));
28036f44 95 local->srx.srx_service = 0;
06d9532f 96 trace_rxrpc_local(local->debug_id, rxrpc_local_new, 1, NULL);
17926a79
DH
97 }
98
99 _leave(" = %p", local);
100 return local;
101}
102
103/*
104 * create the local socket
4f95dd78 105 * - must be called with rxrpc_local_mutex locked
17926a79 106 */
2baec2c3 107static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
17926a79 108{
5271953c 109 struct sock *usk;
fce93494 110 int ret;
17926a79 111
75b54cb5
DH
112 _enter("%p{%d,%d}",
113 local, local->srx.transport_type, local->srx.transport.family);
17926a79
DH
114
115 /* create a socket to represent the local endpoint */
2baec2c3 116 ret = sock_create_kern(net, local->srx.transport.family,
aaa31cbc 117 local->srx.transport_type, 0, &local->socket);
17926a79
DH
118 if (ret < 0) {
119 _leave(" = %d [socket]", ret);
120 return ret;
121 }
122
2cfa2271 123 /* set the socket up */
5271953c
DH
124 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();
7ec8dc96 139#if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
5271953c
DH
140 if (local->srx.transport.family == AF_INET6)
141 udpv6_encap_enable();
142#endif
143 usk->sk_error_report = rxrpc_error_report;
2cfa2271 144
17926a79
DH
145 /* 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,
4f95dd78 149 (struct sockaddr *)&local->srx.transport,
17926a79
DH
150 local->srx.transport_len);
151 if (ret < 0) {
4f95dd78 152 _debug("bind failed %d", ret);
17926a79
DH
153 goto error;
154 }
155 }
156
f2aeed3a 157 switch (local->srx.transport.family) {
37a675e7
DH
158 case AF_INET6:
159 /* we want to receive ICMPv6 errors */
fce93494 160 ip6_sock_set_recverr(local->socket->sk);
17926a79 161
37a675e7
DH
162 /* Fall through and set IPv4 options too otherwise we don't get
163 * errors from IPv4 packets sent through the IPv6 socket.
164 */
df561f66 165 fallthrough;
37a675e7 166 case AF_INET:
f2aeed3a 167 /* we want to receive ICMP errors */
db45c0ef 168 ip_sock_set_recverr(local->socket->sk);
f2aeed3a
DH
169
170 /* we want to set the don't fragment bit */
2de569bd 171 ip_sock_set_mtu_discover(local->socket->sk, IP_PMTUDISC_DO);
b604dd98
DH
172
173 /* We want receive timestamps. */
783da70e 174 sock_enable_timestamps(local->socket->sk);
f2aeed3a
DH
175 break;
176
177 default:
178 BUG();
17926a79
DH
179 }
180
17926a79
DH
181 _leave(" = 0");
182 return 0;
183
184error:
91cf45f0 185 kernel_sock_shutdown(local->socket, SHUT_RDWR);
17926a79
DH
186 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/*
4f95dd78 195 * Look up or create a new local endpoint using the specified local address.
17926a79 196 */
2baec2c3
DH
197struct rxrpc_local *rxrpc_lookup_local(struct net *net,
198 const struct sockaddr_rxrpc *srx)
17926a79
DH
199{
200 struct rxrpc_local *local;
2baec2c3 201 struct rxrpc_net *rxnet = rxrpc_net(net);
4f95dd78
DH
202 struct list_head *cursor;
203 const char *age;
204 long diff;
17926a79
DH
205 int ret;
206
75b54cb5
DH
207 _enter("{%d,%d,%pISp}",
208 srx->transport_type, srx->transport.family, &srx->transport);
17926a79 209
2baec2c3 210 mutex_lock(&rxnet->local_mutex);
17926a79 211
2baec2c3
DH
212 for (cursor = rxnet->local_endpoints.next;
213 cursor != &rxnet->local_endpoints;
4f95dd78
DH
214 cursor = cursor->next) {
215 local = list_entry(cursor, struct rxrpc_local, link);
17926a79 216
4f95dd78
DH
217 diff = rxrpc_local_cmp_key(local, srx);
218 if (diff < 0)
17926a79 219 continue;
4f95dd78
DH
220 if (diff > 0)
221 break;
222
223 /* 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;
231 }
17926a79 232
4f95dd78
DH
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 */
730c5fd4 237 if (!rxrpc_use_local(local))
4f95dd78 238 break;
17926a79 239
4f95dd78
DH
240 age = "old";
241 goto found;
242 }
17926a79 243
2baec2c3 244 local = rxrpc_alloc_local(rxnet, srx);
4f95dd78
DH
245 if (!local)
246 goto nomem;
17926a79 247
2baec2c3 248 ret = rxrpc_open_socket(local, net);
4f95dd78
DH
249 if (ret < 0)
250 goto sock_error;
251
730c5fd4 252 if (cursor != &rxnet->local_endpoints)
b00df840 253 list_replace_init(cursor, &local->link);
730c5fd4
DH
254 else
255 list_add_tail(&local->link, cursor);
4f95dd78 256 age = "new";
17926a79 257
4f95dd78 258found:
2baec2c3 259 mutex_unlock(&rxnet->local_mutex);
17926a79 260
75b54cb5
DH
261 _net("LOCAL %s %d {%pISp}",
262 age, local->debug_id, &local->srx.transport);
17926a79 263
4f95dd78 264 _leave(" = %p", local);
17926a79
DH
265 return local;
266
4f95dd78
DH
267nomem:
268 ret = -ENOMEM;
269sock_error:
2baec2c3 270 mutex_unlock(&rxnet->local_mutex);
032be5f1
ED
271 if (local)
272 call_rcu(&local->rcu, rxrpc_local_rcu);
4f95dd78
DH
273 _leave(" = %d", ret);
274 return ERR_PTR(ret);
17926a79 275
4f95dd78 276addr_in_use:
2baec2c3 277 mutex_unlock(&rxnet->local_mutex);
4f95dd78
DH
278 _leave(" = -EADDRINUSE");
279 return ERR_PTR(-EADDRINUSE);
280}
17926a79 281
09d2bf59
DH
282/*
283 * 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);
06d9532f 291 trace_rxrpc_local(local->debug_id, rxrpc_local_got, n, here);
09d2bf59
DH
292 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) {
bfc18e38 303 int n = atomic_fetch_add_unless(&local->usage, 1, 0);
09d2bf59 304 if (n > 0)
06d9532f
DH
305 trace_rxrpc_local(local->debug_id, rxrpc_local_got,
306 n + 1, here);
09d2bf59
DH
307 else
308 local = NULL;
309 }
310 return local;
311}
312
313/*
06d9532f 314 * Queue a local endpoint and pass the caller's reference to the work item.
09d2bf59
DH
315 */
316void rxrpc_queue_local(struct rxrpc_local *local)
317{
318 const void *here = __builtin_return_address(0);
06d9532f
DH
319 unsigned int debug_id = local->debug_id;
320 int n = atomic_read(&local->usage);
09d2bf59
DH
321
322 if (rxrpc_queue_work(&local->processor))
06d9532f 323 trace_rxrpc_local(debug_id, rxrpc_local_queued, n, here);
730c5fd4
DH
324 else
325 rxrpc_put_local(local);
17926a79
DH
326}
327
09d2bf59
DH
328/*
329 * 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);
fac20b9e 334 unsigned int debug_id;
09d2bf59
DH
335 int n;
336
337 if (local) {
fac20b9e
DH
338 debug_id = local->debug_id;
339
09d2bf59 340 n = atomic_dec_return(&local->usage);
fac20b9e 341 trace_rxrpc_local(debug_id, rxrpc_local_put, n, here);
09d2bf59
DH
342
343 if (n == 0)
730c5fd4 344 call_rcu(&local->rcu, rxrpc_local_rcu);
09d2bf59
DH
345 }
346}
347
730c5fd4
DH
348/*
349 * Start using a local endpoint.
350 */
351struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *local)
352{
730c5fd4
DH
353 local = rxrpc_get_local_maybe(local);
354 if (!local)
355 return NULL;
356
04d36d74 357 if (!__rxrpc_use_local(local)) {
730c5fd4
DH
358 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{
68553f1a 371 if (local) {
04d36d74
DH
372 if (__rxrpc_unuse_local(local)) {
373 rxrpc_get_local(local);
68553f1a 374 rxrpc_queue_local(local);
04d36d74 375 }
68553f1a 376 }
730c5fd4
DH
377}
378
17926a79 379/*
4f95dd78
DH
380 * 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.
17926a79 385 */
4f95dd78 386static void rxrpc_local_destroyer(struct rxrpc_local *local)
17926a79 387{
4f95dd78 388 struct socket *socket = local->socket;
2baec2c3 389 struct rxrpc_net *rxnet = local->rxnet;
17926a79 390
4f95dd78 391 _enter("%d", local->debug_id);
17926a79 392
d12040b6
DH
393 local->dead = true;
394
2baec2c3 395 mutex_lock(&rxnet->local_mutex);
4f95dd78 396 list_del_init(&local->link);
2baec2c3 397 mutex_unlock(&rxnet->local_mutex);
4f95dd78 398
d12040b6
DH
399 rxrpc_clean_up_local_conns(local);
400 rxrpc_service_connection_reaper(&rxnet->service_conn_reaper);
1e9e5c95 401 ASSERT(!local->service);
4f95dd78
DH
402
403 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 */
4f95dd78
DH
413 rxrpc_purge_queue(&local->reject_queue);
414 rxrpc_purge_queue(&local->event_queue);
17926a79
DH
415}
416
417/*
730c5fd4
DH
418 * Process events on an endpoint. The work item carries a ref which
419 * we must release.
17926a79 420 */
4f95dd78 421static void rxrpc_local_processor(struct work_struct *work)
17926a79
DH
422{
423 struct rxrpc_local *local =
4f95dd78
DH
424 container_of(work, struct rxrpc_local, processor);
425 bool again;
17926a79 426
06d9532f 427 trace_rxrpc_local(local->debug_id, rxrpc_local_processing,
09d2bf59 428 atomic_read(&local->usage), NULL);
17926a79 429
4f95dd78
DH
430 do {
431 again = false;
04d36d74 432 if (!__rxrpc_use_local(local)) {
730c5fd4
DH
433 rxrpc_local_destroyer(local);
434 break;
435 }
17926a79 436
4f95dd78
DH
437 if (!skb_queue_empty(&local->reject_queue)) {
438 rxrpc_reject_packets(local);
439 again = true;
440 }
17926a79 441
4f95dd78
DH
442 if (!skb_queue_empty(&local->event_queue)) {
443 rxrpc_process_local_events(local);
444 again = true;
445 }
04d36d74
DH
446
447 __rxrpc_unuse_local(local);
4f95dd78 448 } while (again);
730c5fd4
DH
449
450 rxrpc_put_local(local);
4f95dd78 451}
17926a79 452
4f95dd78
DH
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);
17926a79 459
4f95dd78 460 _enter("%d", local->debug_id);
17926a79 461
4f95dd78 462 ASSERT(!work_pending(&local->processor));
17926a79
DH
463
464 _net("DESTROY LOCAL %d", local->debug_id);
465 kfree(local);
17926a79
DH
466 _leave("");
467}
468
469/*
4f95dd78 470 * Verify the local endpoint list is empty by this point.
17926a79 471 */
2baec2c3 472void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
17926a79 473{
4f95dd78 474 struct rxrpc_local *local;
17926a79
DH
475
476 _enter("");
477
dee46364 478 flush_workqueue(rxrpc_workqueue);
17926a79 479
2baec2c3
DH
480 if (!list_empty(&rxnet->local_endpoints)) {
481 mutex_lock(&rxnet->local_mutex);
482 list_for_each_entry(local, &rxnet->local_endpoints, link) {
dee46364
DH
483 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
484 local, atomic_read(&local->usage));
485 }
2baec2c3 486 mutex_unlock(&rxnet->local_mutex);
dee46364 487 BUG();
17926a79 488 }
17926a79 489}