David Howells | 8756361 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 1 | /* Local endpoint object management |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | * |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 3 | * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
David Howells | 8756361 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 7 | * modify it under the terms of the GNU General Public Licence |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 8 | * as published by the Free Software Foundation; either version |
David Howells | 8756361 | 2016-04-04 14:00:34 +0100 | [diff] [blame] | 9 | * 2 of the Licence, or (at your option) any later version. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
| 15 | #include <linux/net.h> |
| 16 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 18 | #include <linux/udp.h> |
| 19 | #include <linux/ip.h> |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 20 | #include <linux/hashtable.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 21 | #include <net/sock.h> |
| 22 | #include <net/af_rxrpc.h> |
| 23 | #include "ar-internal.h" |
| 24 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 25 | static void rxrpc_local_processor(struct work_struct *); |
| 26 | static void rxrpc_local_rcu(struct rcu_head *); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 27 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 28 | static DEFINE_MUTEX(rxrpc_local_mutex); |
| 29 | static LIST_HEAD(rxrpc_local_endpoints); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 30 | |
| 31 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 39 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 40 | static 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)); |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 61 | #ifdef CONFIG_AF_RXRPC_IPV6 |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 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)); |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 71 | #endif |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 72 | default: |
| 73 | BUG(); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | * Allocate a new local endpoint. |
| 79 | */ |
| 80 | static struct rxrpc_local *rxrpc_alloc_local(const struct sockaddr_rxrpc *srx) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 81 | { |
| 82 | struct rxrpc_local *local; |
| 83 | |
| 84 | local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL); |
| 85 | if (local) { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 86 | atomic_set(&local->usage, 1); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 87 | INIT_LIST_HEAD(&local->link); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 88 | INIT_WORK(&local->processor, rxrpc_local_processor); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 89 | init_rwsem(&local->defrag_sem); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 90 | skb_queue_head_init(&local->reject_queue); |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 91 | skb_queue_head_init(&local->event_queue); |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 92 | local->client_conns = RB_ROOT; |
| 93 | spin_lock_init(&local->client_conns_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 94 | spin_lock_init(&local->lock); |
| 95 | rwlock_init(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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 |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 106 | * - must be called with rxrpc_local_mutex locked |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 107 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 108 | static int rxrpc_open_socket(struct rxrpc_local *local) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 109 | { |
| 110 | struct sock *sock; |
| 111 | int ret, opt; |
| 112 | |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 113 | _enter("%p{%d,%d}", |
| 114 | local, local->srx.transport_type, local->srx.transport.family); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 115 | |
| 116 | /* create a socket to represent the local endpoint */ |
David Howells | aaa31cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 117 | ret = sock_create_kern(&init_net, local->srx.transport.family, |
| 118 | local->srx.transport_type, 0, &local->socket); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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, |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 128 | (struct sockaddr *)&local->srx.transport, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 129 | local->srx.transport_len); |
| 130 | if (ret < 0) { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 131 | _debug("bind failed %d", ret); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 154 | /* set the socket up */ |
| 155 | sock = local->socket->sk; |
| 156 | sock->sk_user_data = local; |
| 157 | sock->sk_data_ready = rxrpc_data_ready; |
David Howells | abe89ef | 2016-04-04 14:00:32 +0100 | [diff] [blame] | 158 | sock->sk_error_report = rxrpc_error_report; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 159 | _leave(" = 0"); |
| 160 | return 0; |
| 161 | |
| 162 | error: |
Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 163 | kernel_sock_shutdown(local->socket, SHUT_RDWR); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 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 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 173 | * Look up or create a new local endpoint using the specified local address. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 174 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 175 | struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *srx) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 176 | { |
| 177 | struct rxrpc_local *local; |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 178 | struct list_head *cursor; |
| 179 | const char *age; |
| 180 | long diff; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 181 | int ret; |
| 182 | |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 183 | _enter("{%d,%d,%pISp}", |
| 184 | srx->transport_type, srx->transport.family, &srx->transport); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 185 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 186 | mutex_lock(&rxrpc_local_mutex); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 187 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 192 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 193 | diff = rxrpc_local_cmp_key(local, srx); |
| 194 | if (diff < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 195 | continue; |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 196 | if (diff > 0) |
| 197 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 198 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 207 | } |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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 | */ |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 213 | if (!rxrpc_get_local_maybe(local)) { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 214 | cursor = cursor->next; |
| 215 | list_del_init(&local->link); |
| 216 | break; |
| 217 | } |
| 218 | |
| 219 | age = "old"; |
| 220 | goto found; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 221 | } |
| 222 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 223 | local = rxrpc_alloc_local(srx); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 224 | if (!local) |
| 225 | goto nomem; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 226 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 227 | ret = rxrpc_open_socket(local); |
| 228 | if (ret < 0) |
| 229 | goto sock_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 230 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 231 | list_add_tail(&local->link, cursor); |
| 232 | age = "new"; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 233 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 234 | found: |
| 235 | mutex_unlock(&rxrpc_local_mutex); |
| 236 | |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 237 | _net("LOCAL %s %d {%pISp}", |
| 238 | age, local->debug_id, &local->srx.transport); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 239 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 240 | _leave(" = %p", local); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 241 | return local; |
| 242 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 243 | nomem: |
| 244 | ret = -ENOMEM; |
| 245 | sock_error: |
| 246 | mutex_unlock(&rxrpc_local_mutex); |
| 247 | kfree(local); |
| 248 | _leave(" = %d", ret); |
| 249 | return ERR_PTR(ret); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 250 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 251 | addr_in_use: |
| 252 | mutex_unlock(&rxrpc_local_mutex); |
| 253 | _leave(" = -EADDRINUSE"); |
| 254 | return ERR_PTR(-EADDRINUSE); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 258 | * A local endpoint reached its end of life. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 259 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 260 | void __rxrpc_put_local(struct rxrpc_local *local) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 261 | { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 262 | _enter("%d", local->debug_id); |
| 263 | rxrpc_queue_work(&local->processor); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 272 | */ |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 273 | static void rxrpc_local_destroyer(struct rxrpc_local *local) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 274 | { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 275 | struct socket *socket = local->socket; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 276 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 277 | _enter("%d", local->debug_id); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 278 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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]"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 285 | return; |
| 286 | } |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 287 | local->dead = true; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 288 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 289 | mutex_lock(&rxrpc_local_mutex); |
| 290 | list_del_init(&local->link); |
| 291 | mutex_unlock(&rxrpc_local_mutex); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 292 | |
David Howells | 999b69f | 2016-06-17 15:42:35 +0100 | [diff] [blame] | 293 | ASSERT(RB_EMPTY_ROOT(&local->client_conns)); |
David Howells | 1e9e5c9 | 2016-09-29 22:37:15 +0100 | [diff] [blame] | 294 | ASSERT(!local->service); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 295 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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 | */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 306 | rxrpc_purge_queue(&local->reject_queue); |
David Howells | 44ba069 | 2015-04-01 16:31:26 +0100 | [diff] [blame] | 307 | rxrpc_purge_queue(&local->event_queue); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 308 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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 | */ |
| 316 | static 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 | |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 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 | */ |
| 344 | static 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)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 351 | |
| 352 | _net("DESTROY LOCAL %d", local->debug_id); |
| 353 | kfree(local); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 354 | _leave(""); |
| 355 | } |
| 356 | |
| 357 | /* |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 358 | * Verify the local endpoint list is empty by this point. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 359 | */ |
| 360 | void __exit rxrpc_destroy_all_locals(void) |
| 361 | { |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 362 | struct rxrpc_local *local; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 363 | |
| 364 | _enter(""); |
| 365 | |
David Howells | dee4636 | 2016-06-27 17:11:19 +0100 | [diff] [blame] | 366 | flush_workqueue(rxrpc_workqueue); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 367 | |
David Howells | dee4636 | 2016-06-27 17:11:19 +0100 | [diff] [blame] | 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(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 376 | } |
David Howells | dee4636 | 2016-06-27 17:11:19 +0100 | [diff] [blame] | 377 | |
| 378 | rcu_barrier(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 379 | } |