]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/rxrpc/local_object.c
net: rds: exchange of 8K and 1M pool
[mirror_ubuntu-jammy-kernel.git] / net / rxrpc / local_object.c
CommitLineData
87563616 1/* Local endpoint object management
17926a79 2 *
4f95dd78 3 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
17926a79
DH
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
87563616 7 * modify it under the terms of the GNU General Public Licence
17926a79 8 * as published by the Free Software Foundation; either version
87563616 9 * 2 of the Licence, or (at your option) any later version.
17926a79
DH
10 */
11
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
17926a79
DH
14#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
5a0e3ad6 17#include <linux/slab.h>
44ba0698
DH
18#include <linux/udp.h>
19#include <linux/ip.h>
4f95dd78 20#include <linux/hashtable.h>
17926a79 21#include <net/sock.h>
5271953c 22#include <net/udp.h>
17926a79
DH
23#include <net/af_rxrpc.h>
24#include "ar-internal.h"
25
4f95dd78
DH
26static void rxrpc_local_processor(struct work_struct *);
27static void rxrpc_local_rcu(struct rcu_head *);
17926a79 28
17926a79 29/*
4f95dd78
DH
30 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
31 * same or greater than.
32 *
33 * We explicitly don't compare the RxRPC service ID as we want to reject
34 * conflicting uses by differing services. Further, we don't want to share
35 * addresses with different options (IPv6), so we don't compare those bits
36 * either.
17926a79 37 */
4f95dd78
DH
38static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
39 const struct sockaddr_rxrpc *srx)
40{
41 long diff;
42
43 diff = ((local->srx.transport_type - srx->transport_type) ?:
44 (local->srx.transport_len - srx->transport_len) ?:
45 (local->srx.transport.family - srx->transport.family));
46 if (diff != 0)
47 return diff;
48
49 switch (srx->transport.family) {
50 case AF_INET:
51 /* If the choice of UDP port is left up to the transport, then
52 * the endpoint record doesn't match.
53 */
54 return ((u16 __force)local->srx.transport.sin.sin_port -
55 (u16 __force)srx->transport.sin.sin_port) ?:
56 memcmp(&local->srx.transport.sin.sin_addr,
57 &srx->transport.sin.sin_addr,
58 sizeof(struct in_addr));
d1912747 59#ifdef CONFIG_AF_RXRPC_IPV6
75b54cb5
DH
60 case AF_INET6:
61 /* If the choice of UDP6 port is left up to the transport, then
62 * the endpoint record doesn't match.
63 */
64 return ((u16 __force)local->srx.transport.sin6.sin6_port -
65 (u16 __force)srx->transport.sin6.sin6_port) ?:
66 memcmp(&local->srx.transport.sin6.sin6_addr,
67 &srx->transport.sin6.sin6_addr,
68 sizeof(struct in6_addr));
d1912747 69#endif
4f95dd78
DH
70 default:
71 BUG();
72 }
73}
74
75/*
76 * Allocate a new local endpoint.
77 */
2baec2c3
DH
78static struct rxrpc_local *rxrpc_alloc_local(struct rxrpc_net *rxnet,
79 const struct sockaddr_rxrpc *srx)
17926a79
DH
80{
81 struct rxrpc_local *local;
82
83 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
84 if (local) {
4f95dd78 85 atomic_set(&local->usage, 1);
2baec2c3 86 local->rxnet = rxnet;
17926a79 87 INIT_LIST_HEAD(&local->link);
4f95dd78 88 INIT_WORK(&local->processor, rxrpc_local_processor);
17926a79 89 init_rwsem(&local->defrag_sem);
17926a79 90 skb_queue_head_init(&local->reject_queue);
44ba0698 91 skb_queue_head_init(&local->event_queue);
999b69f8
DH
92 local->client_conns = RB_ROOT;
93 spin_lock_init(&local->client_conns_lock);
17926a79
DH
94 spin_lock_init(&local->lock);
95 rwlock_init(&local->services_lock);
17926a79
DH
96 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
97 memcpy(&local->srx, srx, sizeof(*srx));
28036f44 98 local->srx.srx_service = 0;
09d2bf59 99 trace_rxrpc_local(local, rxrpc_local_new, 1, NULL);
17926a79
DH
100 }
101
102 _leave(" = %p", local);
103 return local;
104}
105
106/*
107 * create the local socket
4f95dd78 108 * - must be called with rxrpc_local_mutex locked
17926a79 109 */
2baec2c3 110static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
17926a79 111{
5271953c 112 struct sock *usk;
17926a79
DH
113 int ret, opt;
114
75b54cb5
DH
115 _enter("%p{%d,%d}",
116 local, local->srx.transport_type, local->srx.transport.family);
17926a79
DH
117
118 /* create a socket to represent the local endpoint */
2baec2c3 119 ret = sock_create_kern(net, local->srx.transport.family,
aaa31cbc 120 local->srx.transport_type, 0, &local->socket);
17926a79
DH
121 if (ret < 0) {
122 _leave(" = %d [socket]", ret);
123 return ret;
124 }
125
2cfa2271 126 /* set the socket up */
5271953c
DH
127 usk = local->socket->sk;
128 inet_sk(usk)->mc_loop = 0;
129
130 /* Enable CHECKSUM_UNNECESSARY to CHECKSUM_COMPLETE conversion */
131 inet_inc_convert_csum(usk);
132
133 rcu_assign_sk_user_data(usk, local);
134
135 udp_sk(usk)->encap_type = UDP_ENCAP_RXRPC;
136 udp_sk(usk)->encap_rcv = rxrpc_input_packet;
137 udp_sk(usk)->encap_destroy = NULL;
138 udp_sk(usk)->gro_receive = NULL;
139 udp_sk(usk)->gro_complete = NULL;
140
141 udp_encap_enable();
7ec8dc96 142#if IS_ENABLED(CONFIG_AF_RXRPC_IPV6)
5271953c
DH
143 if (local->srx.transport.family == AF_INET6)
144 udpv6_encap_enable();
145#endif
146 usk->sk_error_report = rxrpc_error_report;
2cfa2271 147
17926a79
DH
148 /* if a local address was supplied then bind it */
149 if (local->srx.transport_len > sizeof(sa_family_t)) {
150 _debug("bind");
151 ret = kernel_bind(local->socket,
4f95dd78 152 (struct sockaddr *)&local->srx.transport,
17926a79
DH
153 local->srx.transport_len);
154 if (ret < 0) {
4f95dd78 155 _debug("bind failed %d", ret);
17926a79
DH
156 goto error;
157 }
158 }
159
f2aeed3a 160 switch (local->srx.transport.family) {
37a675e7
DH
161 case AF_INET6:
162 /* we want to receive ICMPv6 errors */
f2aeed3a 163 opt = 1;
37a675e7 164 ret = kernel_setsockopt(local->socket, SOL_IPV6, IPV6_RECVERR,
f2aeed3a
DH
165 (char *) &opt, sizeof(opt));
166 if (ret < 0) {
167 _debug("setsockopt failed");
168 goto error;
169 }
17926a79 170
f2aeed3a 171 /* we want to set the don't fragment bit */
37a675e7
DH
172 opt = IPV6_PMTUDISC_DO;
173 ret = kernel_setsockopt(local->socket, SOL_IPV6, IPV6_MTU_DISCOVER,
f2aeed3a
DH
174 (char *) &opt, sizeof(opt));
175 if (ret < 0) {
176 _debug("setsockopt failed");
177 goto error;
178 }
f2aeed3a 179
37a675e7
DH
180 /* Fall through and set IPv4 options too otherwise we don't get
181 * errors from IPv4 packets sent through the IPv6 socket.
182 */
183
184 case AF_INET:
f2aeed3a
DH
185 /* we want to receive ICMP errors */
186 opt = 1;
37a675e7 187 ret = kernel_setsockopt(local->socket, SOL_IP, IP_RECVERR,
f2aeed3a
DH
188 (char *) &opt, sizeof(opt));
189 if (ret < 0) {
190 _debug("setsockopt failed");
191 goto error;
192 }
193
194 /* we want to set the don't fragment bit */
37a675e7
DH
195 opt = IP_PMTUDISC_DO;
196 ret = kernel_setsockopt(local->socket, SOL_IP, IP_MTU_DISCOVER,
f2aeed3a
DH
197 (char *) &opt, sizeof(opt));
198 if (ret < 0) {
199 _debug("setsockopt failed");
200 goto error;
201 }
b604dd98
DH
202
203 /* We want receive timestamps. */
204 opt = 1;
7f1bc6e9 205 ret = kernel_setsockopt(local->socket, SOL_SOCKET, SO_TIMESTAMPNS_OLD,
b604dd98
DH
206 (char *)&opt, sizeof(opt));
207 if (ret < 0) {
208 _debug("setsockopt failed");
209 goto error;
210 }
f2aeed3a
DH
211 break;
212
213 default:
214 BUG();
17926a79
DH
215 }
216
17926a79
DH
217 _leave(" = 0");
218 return 0;
219
220error:
91cf45f0 221 kernel_sock_shutdown(local->socket, SHUT_RDWR);
17926a79
DH
222 local->socket->sk->sk_user_data = NULL;
223 sock_release(local->socket);
224 local->socket = NULL;
225
226 _leave(" = %d", ret);
227 return ret;
228}
229
230/*
4f95dd78 231 * Look up or create a new local endpoint using the specified local address.
17926a79 232 */
2baec2c3
DH
233struct rxrpc_local *rxrpc_lookup_local(struct net *net,
234 const struct sockaddr_rxrpc *srx)
17926a79
DH
235{
236 struct rxrpc_local *local;
2baec2c3 237 struct rxrpc_net *rxnet = rxrpc_net(net);
4f95dd78
DH
238 struct list_head *cursor;
239 const char *age;
240 long diff;
17926a79
DH
241 int ret;
242
75b54cb5
DH
243 _enter("{%d,%d,%pISp}",
244 srx->transport_type, srx->transport.family, &srx->transport);
17926a79 245
2baec2c3 246 mutex_lock(&rxnet->local_mutex);
17926a79 247
2baec2c3
DH
248 for (cursor = rxnet->local_endpoints.next;
249 cursor != &rxnet->local_endpoints;
4f95dd78
DH
250 cursor = cursor->next) {
251 local = list_entry(cursor, struct rxrpc_local, link);
17926a79 252
4f95dd78
DH
253 diff = rxrpc_local_cmp_key(local, srx);
254 if (diff < 0)
17926a79 255 continue;
4f95dd78
DH
256 if (diff > 0)
257 break;
258
259 /* Services aren't allowed to share transport sockets, so
260 * reject that here. It is possible that the object is dying -
261 * but it may also still have the local transport address that
262 * we want bound.
263 */
264 if (srx->srx_service) {
265 local = NULL;
266 goto addr_in_use;
267 }
17926a79 268
4f95dd78
DH
269 /* Found a match. We replace a dying object. Attempting to
270 * bind the transport socket may still fail if we're attempting
271 * to use a local address that the dying object is still using.
272 */
5627cc8b 273 if (!rxrpc_get_local_maybe(local)) {
4f95dd78
DH
274 cursor = cursor->next;
275 list_del_init(&local->link);
276 break;
17926a79 277 }
17926a79 278
4f95dd78
DH
279 age = "old";
280 goto found;
281 }
17926a79 282
2baec2c3 283 local = rxrpc_alloc_local(rxnet, srx);
4f95dd78
DH
284 if (!local)
285 goto nomem;
17926a79 286
2baec2c3 287 ret = rxrpc_open_socket(local, net);
4f95dd78
DH
288 if (ret < 0)
289 goto sock_error;
290
291 list_add_tail(&local->link, cursor);
292 age = "new";
17926a79 293
4f95dd78 294found:
2baec2c3 295 mutex_unlock(&rxnet->local_mutex);
17926a79 296
75b54cb5
DH
297 _net("LOCAL %s %d {%pISp}",
298 age, local->debug_id, &local->srx.transport);
17926a79 299
4f95dd78 300 _leave(" = %p", local);
17926a79
DH
301 return local;
302
4f95dd78
DH
303nomem:
304 ret = -ENOMEM;
305sock_error:
2baec2c3 306 mutex_unlock(&rxnet->local_mutex);
4f95dd78
DH
307 kfree(local);
308 _leave(" = %d", ret);
309 return ERR_PTR(ret);
17926a79 310
4f95dd78 311addr_in_use:
2baec2c3 312 mutex_unlock(&rxnet->local_mutex);
4f95dd78
DH
313 _leave(" = -EADDRINUSE");
314 return ERR_PTR(-EADDRINUSE);
315}
17926a79 316
09d2bf59
DH
317/*
318 * Get a ref on a local endpoint.
319 */
320struct rxrpc_local *rxrpc_get_local(struct rxrpc_local *local)
321{
322 const void *here = __builtin_return_address(0);
323 int n;
324
325 n = atomic_inc_return(&local->usage);
326 trace_rxrpc_local(local, rxrpc_local_got, n, here);
327 return local;
328}
329
330/*
331 * Get a ref on a local endpoint unless its usage has already reached 0.
332 */
333struct rxrpc_local *rxrpc_get_local_maybe(struct rxrpc_local *local)
334{
335 const void *here = __builtin_return_address(0);
336
337 if (local) {
bfc18e38 338 int n = atomic_fetch_add_unless(&local->usage, 1, 0);
09d2bf59
DH
339 if (n > 0)
340 trace_rxrpc_local(local, rxrpc_local_got, n + 1, here);
341 else
342 local = NULL;
343 }
344 return local;
345}
346
347/*
348 * Queue a local endpoint.
349 */
350void rxrpc_queue_local(struct rxrpc_local *local)
351{
352 const void *here = __builtin_return_address(0);
353
354 if (rxrpc_queue_work(&local->processor))
355 trace_rxrpc_local(local, rxrpc_local_queued,
356 atomic_read(&local->usage), here);
357}
358
4f95dd78
DH
359/*
360 * A local endpoint reached its end of life.
361 */
09d2bf59 362static void __rxrpc_put_local(struct rxrpc_local *local)
4f95dd78
DH
363{
364 _enter("%d", local->debug_id);
365 rxrpc_queue_work(&local->processor);
17926a79
DH
366}
367
09d2bf59
DH
368/*
369 * Drop a ref on a local endpoint.
370 */
371void rxrpc_put_local(struct rxrpc_local *local)
372{
373 const void *here = __builtin_return_address(0);
374 int n;
375
376 if (local) {
377 n = atomic_dec_return(&local->usage);
378 trace_rxrpc_local(local, rxrpc_local_put, n, here);
379
380 if (n == 0)
381 __rxrpc_put_local(local);
382 }
383}
384
17926a79 385/*
4f95dd78
DH
386 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
387 * of.
388 *
389 * Closing the socket cannot be done from bottom half context or RCU callback
390 * context because it might sleep.
17926a79 391 */
4f95dd78 392static void rxrpc_local_destroyer(struct rxrpc_local *local)
17926a79 393{
4f95dd78 394 struct socket *socket = local->socket;
2baec2c3 395 struct rxrpc_net *rxnet = local->rxnet;
17926a79 396
4f95dd78 397 _enter("%d", local->debug_id);
17926a79 398
4f95dd78
DH
399 /* We can get a race between an incoming call packet queueing the
400 * processor again and the work processor starting the destruction
401 * process which will shut down the UDP socket.
402 */
403 if (local->dead) {
404 _leave(" [already dead]");
405 return;
17926a79 406 }
4f95dd78
DH
407 local->dead = true;
408
2baec2c3 409 mutex_lock(&rxnet->local_mutex);
4f95dd78 410 list_del_init(&local->link);
2baec2c3 411 mutex_unlock(&rxnet->local_mutex);
4f95dd78 412
999b69f8 413 ASSERT(RB_EMPTY_ROOT(&local->client_conns));
1e9e5c95 414 ASSERT(!local->service);
4f95dd78
DH
415
416 if (socket) {
417 local->socket = NULL;
418 kernel_sock_shutdown(socket, SHUT_RDWR);
419 socket->sk->sk_user_data = NULL;
420 sock_release(socket);
421 }
422
423 /* At this point, there should be no more packets coming in to the
424 * local endpoint.
425 */
4f95dd78
DH
426 rxrpc_purge_queue(&local->reject_queue);
427 rxrpc_purge_queue(&local->event_queue);
428
429 _debug("rcu local %d", local->debug_id);
430 call_rcu(&local->rcu, rxrpc_local_rcu);
17926a79
DH
431}
432
433/*
4f95dd78 434 * Process events on an endpoint
17926a79 435 */
4f95dd78 436static void rxrpc_local_processor(struct work_struct *work)
17926a79
DH
437{
438 struct rxrpc_local *local =
4f95dd78
DH
439 container_of(work, struct rxrpc_local, processor);
440 bool again;
17926a79 441
09d2bf59
DH
442 trace_rxrpc_local(local, rxrpc_local_processing,
443 atomic_read(&local->usage), NULL);
17926a79 444
4f95dd78
DH
445 do {
446 again = false;
447 if (atomic_read(&local->usage) == 0)
448 return rxrpc_local_destroyer(local);
17926a79 449
4f95dd78
DH
450 if (!skb_queue_empty(&local->reject_queue)) {
451 rxrpc_reject_packets(local);
452 again = true;
453 }
17926a79 454
4f95dd78
DH
455 if (!skb_queue_empty(&local->event_queue)) {
456 rxrpc_process_local_events(local);
457 again = true;
458 }
459 } while (again);
460}
17926a79 461
4f95dd78
DH
462/*
463 * Destroy a local endpoint after the RCU grace period expires.
464 */
465static void rxrpc_local_rcu(struct rcu_head *rcu)
466{
467 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
17926a79 468
4f95dd78 469 _enter("%d", local->debug_id);
17926a79 470
4f95dd78 471 ASSERT(!work_pending(&local->processor));
17926a79
DH
472
473 _net("DESTROY LOCAL %d", local->debug_id);
474 kfree(local);
17926a79
DH
475 _leave("");
476}
477
478/*
4f95dd78 479 * Verify the local endpoint list is empty by this point.
17926a79 480 */
2baec2c3 481void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
17926a79 482{
4f95dd78 483 struct rxrpc_local *local;
17926a79
DH
484
485 _enter("");
486
dee46364 487 flush_workqueue(rxrpc_workqueue);
17926a79 488
2baec2c3
DH
489 if (!list_empty(&rxnet->local_endpoints)) {
490 mutex_lock(&rxnet->local_mutex);
491 list_for_each_entry(local, &rxnet->local_endpoints, link) {
dee46364
DH
492 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
493 local, atomic_read(&local->usage));
494 }
2baec2c3 495 mutex_unlock(&rxnet->local_mutex);
dee46364 496 BUG();
17926a79 497 }
17926a79 498}