blob: 38b99db30e541e789b838e10600944f11b4124e0 [file] [log] [blame]
David Howells87563612016-04-04 14:00:34 +01001/* Local endpoint object management
David Howells17926a72007-04-26 15:48:28 -07002 *
David Howells4f95dd72016-04-04 14:00:35 +01003 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
David Howells17926a72007-04-26 15:48:28 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
David Howells87563612016-04-04 14:00:34 +01007 * modify it under the terms of the GNU General Public Licence
David Howells17926a72007-04-26 15:48:28 -07008 * as published by the Free Software Foundation; either version
David Howells87563612016-04-04 14:00:34 +01009 * 2 of the Licence, or (at your option) any later version.
David Howells17926a72007-04-26 15:48:28 -070010 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
David Howells44ba0692015-04-01 16:31:26 +010018#include <linux/udp.h>
19#include <linux/ip.h>
David Howells4f95dd72016-04-04 14:00:35 +010020#include <linux/hashtable.h>
David Howells17926a72007-04-26 15:48:28 -070021#include <net/sock.h>
22#include <net/af_rxrpc.h>
23#include "ar-internal.h"
24
David Howells4f95dd72016-04-04 14:00:35 +010025static void rxrpc_local_processor(struct work_struct *);
26static void rxrpc_local_rcu(struct rcu_head *);
David Howells17926a72007-04-26 15:48:28 -070027
David Howells17926a72007-04-26 15:48:28 -070028/*
David Howells4f95dd72016-04-04 14:00:35 +010029 * Compare a local to an address. Return -ve, 0 or +ve to indicate less than,
30 * same or greater than.
31 *
32 * We explicitly don't compare the RxRPC service ID as we want to reject
33 * conflicting uses by differing services. Further, we don't want to share
34 * addresses with different options (IPv6), so we don't compare those bits
35 * either.
David Howells17926a72007-04-26 15:48:28 -070036 */
David Howells4f95dd72016-04-04 14:00:35 +010037static long rxrpc_local_cmp_key(const struct rxrpc_local *local,
38 const struct sockaddr_rxrpc *srx)
39{
40 long diff;
41
42 diff = ((local->srx.transport_type - srx->transport_type) ?:
43 (local->srx.transport_len - srx->transport_len) ?:
44 (local->srx.transport.family - srx->transport.family));
45 if (diff != 0)
46 return diff;
47
48 switch (srx->transport.family) {
49 case AF_INET:
50 /* If the choice of UDP port is left up to the transport, then
51 * the endpoint record doesn't match.
52 */
53 return ((u16 __force)local->srx.transport.sin.sin_port -
54 (u16 __force)srx->transport.sin.sin_port) ?:
55 memcmp(&local->srx.transport.sin.sin_addr,
56 &srx->transport.sin.sin_addr,
57 sizeof(struct in_addr));
David Howellsd1912742016-09-17 07:26:01 +010058#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +010059 case AF_INET6:
60 /* If the choice of UDP6 port is left up to the transport, then
61 * the endpoint record doesn't match.
62 */
63 return ((u16 __force)local->srx.transport.sin6.sin6_port -
64 (u16 __force)srx->transport.sin6.sin6_port) ?:
65 memcmp(&local->srx.transport.sin6.sin6_addr,
66 &srx->transport.sin6.sin6_addr,
67 sizeof(struct in6_addr));
David Howellsd1912742016-09-17 07:26:01 +010068#endif
David Howells4f95dd72016-04-04 14:00:35 +010069 default:
70 BUG();
71 }
72}
73
74/*
75 * Allocate a new local endpoint.
76 */
David Howells2baec2c2017-05-24 17:02:32 +010077static struct rxrpc_local *rxrpc_alloc_local(struct rxrpc_net *rxnet,
78 const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -070079{
80 struct rxrpc_local *local;
81
82 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
83 if (local) {
David Howells4f95dd72016-04-04 14:00:35 +010084 atomic_set(&local->usage, 1);
David Howells2baec2c2017-05-24 17:02:32 +010085 local->rxnet = rxnet;
David Howells17926a72007-04-26 15:48:28 -070086 INIT_LIST_HEAD(&local->link);
David Howells4f95dd72016-04-04 14:00:35 +010087 INIT_WORK(&local->processor, rxrpc_local_processor);
David Howells17926a72007-04-26 15:48:28 -070088 init_rwsem(&local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -070089 skb_queue_head_init(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +010090 skb_queue_head_init(&local->event_queue);
David Howells999b69f2016-06-17 15:42:35 +010091 local->client_conns = RB_ROOT;
92 spin_lock_init(&local->client_conns_lock);
David Howells17926a72007-04-26 15:48:28 -070093 spin_lock_init(&local->lock);
94 rwlock_init(&local->services_lock);
David Howells17926a72007-04-26 15:48:28 -070095 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
96 memcpy(&local->srx, srx, sizeof(*srx));
David Howells28036f42017-06-05 14:30:49 +010097 local->srx.srx_service = 0;
David Howells17926a72007-04-26 15:48:28 -070098 }
99
100 _leave(" = %p", local);
101 return local;
102}
103
104/*
105 * create the local socket
David Howells4f95dd72016-04-04 14:00:35 +0100106 * - must be called with rxrpc_local_mutex locked
David Howells17926a72007-04-26 15:48:28 -0700107 */
David Howells2baec2c2017-05-24 17:02:32 +0100108static int rxrpc_open_socket(struct rxrpc_local *local, struct net *net)
David Howells17926a72007-04-26 15:48:28 -0700109{
110 struct sock *sock;
111 int ret, opt;
112
David Howells75b54cb2016-09-13 08:49:05 +0100113 _enter("%p{%d,%d}",
114 local, local->srx.transport_type, local->srx.transport.family);
David Howells17926a72007-04-26 15:48:28 -0700115
116 /* create a socket to represent the local endpoint */
David Howells2baec2c2017-05-24 17:02:32 +0100117 ret = sock_create_kern(net, local->srx.transport.family,
David Howellsaaa31cb2016-09-13 08:49:05 +0100118 local->srx.transport_type, 0, &local->socket);
David Howells17926a72007-04-26 15:48:28 -0700119 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 Howells4f95dd72016-04-04 14:00:35 +0100128 (struct sockaddr *)&local->srx.transport,
David Howells17926a72007-04-26 15:48:28 -0700129 local->srx.transport_len);
130 if (ret < 0) {
David Howells4f95dd72016-04-04 14:00:35 +0100131 _debug("bind failed %d", ret);
David Howells17926a72007-04-26 15:48:28 -0700132 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 Howells17926a72007-04-26 15:48:28 -0700154 /* set the socket up */
155 sock = local->socket->sk;
156 sock->sk_user_data = local;
157 sock->sk_data_ready = rxrpc_data_ready;
David Howellsabe89ef2016-04-04 14:00:32 +0100158 sock->sk_error_report = rxrpc_error_report;
David Howells17926a72007-04-26 15:48:28 -0700159 _leave(" = 0");
160 return 0;
161
162error:
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800163 kernel_sock_shutdown(local->socket, SHUT_RDWR);
David Howells17926a72007-04-26 15:48:28 -0700164 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 Howells4f95dd72016-04-04 14:00:35 +0100173 * Look up or create a new local endpoint using the specified local address.
David Howells17926a72007-04-26 15:48:28 -0700174 */
David Howells2baec2c2017-05-24 17:02:32 +0100175struct rxrpc_local *rxrpc_lookup_local(struct net *net,
176 const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -0700177{
178 struct rxrpc_local *local;
David Howells2baec2c2017-05-24 17:02:32 +0100179 struct rxrpc_net *rxnet = rxrpc_net(net);
David Howells4f95dd72016-04-04 14:00:35 +0100180 struct list_head *cursor;
181 const char *age;
182 long diff;
David Howells17926a72007-04-26 15:48:28 -0700183 int ret;
184
David Howells75b54cb2016-09-13 08:49:05 +0100185 _enter("{%d,%d,%pISp}",
186 srx->transport_type, srx->transport.family, &srx->transport);
David Howells17926a72007-04-26 15:48:28 -0700187
David Howells2baec2c2017-05-24 17:02:32 +0100188 mutex_lock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700189
David Howells2baec2c2017-05-24 17:02:32 +0100190 for (cursor = rxnet->local_endpoints.next;
191 cursor != &rxnet->local_endpoints;
David Howells4f95dd72016-04-04 14:00:35 +0100192 cursor = cursor->next) {
193 local = list_entry(cursor, struct rxrpc_local, link);
David Howells17926a72007-04-26 15:48:28 -0700194
David Howells4f95dd72016-04-04 14:00:35 +0100195 diff = rxrpc_local_cmp_key(local, srx);
196 if (diff < 0)
David Howells17926a72007-04-26 15:48:28 -0700197 continue;
David Howells4f95dd72016-04-04 14:00:35 +0100198 if (diff > 0)
199 break;
David Howells17926a72007-04-26 15:48:28 -0700200
David Howells4f95dd72016-04-04 14:00:35 +0100201 /* 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
204 * we want bound.
205 */
206 if (srx->srx_service) {
207 local = NULL;
208 goto addr_in_use;
David Howells17926a72007-04-26 15:48:28 -0700209 }
David Howells4f95dd72016-04-04 14:00:35 +0100210
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.
214 */
David Howells5627cc82016-04-04 14:00:38 +0100215 if (!rxrpc_get_local_maybe(local)) {
David Howells4f95dd72016-04-04 14:00:35 +0100216 cursor = cursor->next;
217 list_del_init(&local->link);
218 break;
219 }
220
221 age = "old";
222 goto found;
David Howells17926a72007-04-26 15:48:28 -0700223 }
224
David Howells2baec2c2017-05-24 17:02:32 +0100225 local = rxrpc_alloc_local(rxnet, srx);
David Howells4f95dd72016-04-04 14:00:35 +0100226 if (!local)
227 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700228
David Howells2baec2c2017-05-24 17:02:32 +0100229 ret = rxrpc_open_socket(local, net);
David Howells4f95dd72016-04-04 14:00:35 +0100230 if (ret < 0)
231 goto sock_error;
David Howells17926a72007-04-26 15:48:28 -0700232
David Howells4f95dd72016-04-04 14:00:35 +0100233 list_add_tail(&local->link, cursor);
234 age = "new";
David Howells17926a72007-04-26 15:48:28 -0700235
David Howells4f95dd72016-04-04 14:00:35 +0100236found:
David Howells2baec2c2017-05-24 17:02:32 +0100237 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100238
David Howells75b54cb2016-09-13 08:49:05 +0100239 _net("LOCAL %s %d {%pISp}",
240 age, local->debug_id, &local->srx.transport);
David Howells17926a72007-04-26 15:48:28 -0700241
David Howells4f95dd72016-04-04 14:00:35 +0100242 _leave(" = %p", local);
David Howells17926a72007-04-26 15:48:28 -0700243 return local;
244
David Howells4f95dd72016-04-04 14:00:35 +0100245nomem:
246 ret = -ENOMEM;
247sock_error:
David Howells2baec2c2017-05-24 17:02:32 +0100248 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100249 kfree(local);
250 _leave(" = %d", ret);
251 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700252
David Howells4f95dd72016-04-04 14:00:35 +0100253addr_in_use:
David Howells2baec2c2017-05-24 17:02:32 +0100254 mutex_unlock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100255 _leave(" = -EADDRINUSE");
256 return ERR_PTR(-EADDRINUSE);
David Howells17926a72007-04-26 15:48:28 -0700257}
258
259/*
David Howells4f95dd72016-04-04 14:00:35 +0100260 * A local endpoint reached its end of life.
David Howells17926a72007-04-26 15:48:28 -0700261 */
David Howells4f95dd72016-04-04 14:00:35 +0100262void __rxrpc_put_local(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700263{
David Howells4f95dd72016-04-04 14:00:35 +0100264 _enter("%d", local->debug_id);
265 rxrpc_queue_work(&local->processor);
David Howells17926a72007-04-26 15:48:28 -0700266}
267
268/*
David Howells4f95dd72016-04-04 14:00:35 +0100269 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
270 * of.
271 *
272 * Closing the socket cannot be done from bottom half context or RCU callback
273 * context because it might sleep.
David Howells17926a72007-04-26 15:48:28 -0700274 */
David Howells4f95dd72016-04-04 14:00:35 +0100275static void rxrpc_local_destroyer(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700276{
David Howells4f95dd72016-04-04 14:00:35 +0100277 struct socket *socket = local->socket;
David Howells2baec2c2017-05-24 17:02:32 +0100278 struct rxrpc_net *rxnet = local->rxnet;
David Howells17926a72007-04-26 15:48:28 -0700279
David Howells4f95dd72016-04-04 14:00:35 +0100280 _enter("%d", local->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700281
David Howells4f95dd72016-04-04 14:00:35 +0100282 /* We can get a race between an incoming call packet queueing the
283 * processor again and the work processor starting the destruction
284 * process which will shut down the UDP socket.
285 */
286 if (local->dead) {
287 _leave(" [already dead]");
David Howells17926a72007-04-26 15:48:28 -0700288 return;
289 }
David Howells4f95dd72016-04-04 14:00:35 +0100290 local->dead = true;
David Howells17926a72007-04-26 15:48:28 -0700291
David Howells2baec2c2017-05-24 17:02:32 +0100292 mutex_lock(&rxnet->local_mutex);
David Howells4f95dd72016-04-04 14:00:35 +0100293 list_del_init(&local->link);
David Howells2baec2c2017-05-24 17:02:32 +0100294 mutex_unlock(&rxnet->local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700295
David Howells999b69f2016-06-17 15:42:35 +0100296 ASSERT(RB_EMPTY_ROOT(&local->client_conns));
David Howells1e9e5c92016-09-29 22:37:15 +0100297 ASSERT(!local->service);
David Howells17926a72007-04-26 15:48:28 -0700298
David Howells4f95dd72016-04-04 14:00:35 +0100299 if (socket) {
300 local->socket = NULL;
301 kernel_sock_shutdown(socket, SHUT_RDWR);
302 socket->sk->sk_user_data = NULL;
303 sock_release(socket);
304 }
305
306 /* At this point, there should be no more packets coming in to the
307 * local endpoint.
308 */
David Howells17926a72007-04-26 15:48:28 -0700309 rxrpc_purge_queue(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +0100310 rxrpc_purge_queue(&local->event_queue);
David Howells17926a72007-04-26 15:48:28 -0700311
David Howells4f95dd72016-04-04 14:00:35 +0100312 _debug("rcu local %d", local->debug_id);
313 call_rcu(&local->rcu, rxrpc_local_rcu);
314}
315
316/*
317 * Process events on an endpoint
318 */
319static void rxrpc_local_processor(struct work_struct *work)
320{
321 struct rxrpc_local *local =
322 container_of(work, struct rxrpc_local, processor);
323 bool again;
324
325 _enter("%d", local->debug_id);
326
327 do {
328 again = false;
329 if (atomic_read(&local->usage) == 0)
330 return rxrpc_local_destroyer(local);
331
David Howells4f95dd72016-04-04 14:00:35 +0100332 if (!skb_queue_empty(&local->reject_queue)) {
333 rxrpc_reject_packets(local);
334 again = true;
335 }
336
337 if (!skb_queue_empty(&local->event_queue)) {
338 rxrpc_process_local_events(local);
339 again = true;
340 }
341 } while (again);
342}
343
344/*
345 * Destroy a local endpoint after the RCU grace period expires.
346 */
347static void rxrpc_local_rcu(struct rcu_head *rcu)
348{
349 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
350
351 _enter("%d", local->debug_id);
352
353 ASSERT(!work_pending(&local->processor));
David Howells17926a72007-04-26 15:48:28 -0700354
355 _net("DESTROY LOCAL %d", local->debug_id);
356 kfree(local);
David Howells17926a72007-04-26 15:48:28 -0700357 _leave("");
358}
359
360/*
David Howells4f95dd72016-04-04 14:00:35 +0100361 * Verify the local endpoint list is empty by this point.
David Howells17926a72007-04-26 15:48:28 -0700362 */
David Howells2baec2c2017-05-24 17:02:32 +0100363void rxrpc_destroy_all_locals(struct rxrpc_net *rxnet)
David Howells17926a72007-04-26 15:48:28 -0700364{
David Howells4f95dd72016-04-04 14:00:35 +0100365 struct rxrpc_local *local;
David Howells17926a72007-04-26 15:48:28 -0700366
367 _enter("");
368
David Howellsdee46362016-06-27 17:11:19 +0100369 flush_workqueue(rxrpc_workqueue);
David Howells17926a72007-04-26 15:48:28 -0700370
David Howells2baec2c2017-05-24 17:02:32 +0100371 if (!list_empty(&rxnet->local_endpoints)) {
372 mutex_lock(&rxnet->local_mutex);
373 list_for_each_entry(local, &rxnet->local_endpoints, link) {
David Howellsdee46362016-06-27 17:11:19 +0100374 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
375 local, atomic_read(&local->usage));
376 }
David Howells2baec2c2017-05-24 17:02:32 +0100377 mutex_unlock(&rxnet->local_mutex);
David Howellsdee46362016-06-27 17:11:19 +0100378 BUG();
David Howells17926a72007-04-26 15:48:28 -0700379 }
David Howells17926a72007-04-26 15:48:28 -0700380}