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