blob: a753796fbe8f774c4af7b9963c18534bc229bfba [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 Howells4f95dd72016-04-04 14:00:35 +010028static DEFINE_MUTEX(rxrpc_local_mutex);
29static LIST_HEAD(rxrpc_local_endpoints);
David Howells17926a72007-04-26 15:48:28 -070030
31/*
David Howells4f95dd72016-04-04 14:00:35 +010032 * 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 Howells17926a72007-04-26 15:48:28 -070039 */
David Howells4f95dd72016-04-04 14:00:35 +010040static 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));
61 default:
62 BUG();
63 }
64}
65
66/*
67 * Allocate a new local endpoint.
68 */
69static struct rxrpc_local *rxrpc_alloc_local(const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -070070{
71 struct rxrpc_local *local;
72
73 local = kzalloc(sizeof(struct rxrpc_local), GFP_KERNEL);
74 if (local) {
David Howells4f95dd72016-04-04 14:00:35 +010075 atomic_set(&local->usage, 1);
David Howells17926a72007-04-26 15:48:28 -070076 INIT_LIST_HEAD(&local->link);
David Howells4f95dd72016-04-04 14:00:35 +010077 INIT_WORK(&local->processor, rxrpc_local_processor);
78 INIT_LIST_HEAD(&local->services);
David Howells17926a72007-04-26 15:48:28 -070079 init_rwsem(&local->defrag_sem);
80 skb_queue_head_init(&local->accept_queue);
81 skb_queue_head_init(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +010082 skb_queue_head_init(&local->event_queue);
David Howells999b69f2016-06-17 15:42:35 +010083 local->client_conns = RB_ROOT;
84 spin_lock_init(&local->client_conns_lock);
David Howells17926a72007-04-26 15:48:28 -070085 spin_lock_init(&local->lock);
86 rwlock_init(&local->services_lock);
David Howells17926a72007-04-26 15:48:28 -070087 local->debug_id = atomic_inc_return(&rxrpc_debug_id);
88 memcpy(&local->srx, srx, sizeof(*srx));
89 }
90
91 _leave(" = %p", local);
92 return local;
93}
94
95/*
96 * create the local socket
David Howells4f95dd72016-04-04 14:00:35 +010097 * - must be called with rxrpc_local_mutex locked
David Howells17926a72007-04-26 15:48:28 -070098 */
David Howells4f95dd72016-04-04 14:00:35 +010099static int rxrpc_open_socket(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700100{
101 struct sock *sock;
102 int ret, opt;
103
104 _enter("%p{%d}", local, local->srx.transport_type);
105
106 /* create a socket to represent the local endpoint */
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -0500107 ret = sock_create_kern(&init_net, PF_INET, local->srx.transport_type,
108 IPPROTO_UDP, &local->socket);
David Howells17926a72007-04-26 15:48:28 -0700109 if (ret < 0) {
110 _leave(" = %d [socket]", ret);
111 return ret;
112 }
113
114 /* if a local address was supplied then bind it */
115 if (local->srx.transport_len > sizeof(sa_family_t)) {
116 _debug("bind");
117 ret = kernel_bind(local->socket,
David Howells4f95dd72016-04-04 14:00:35 +0100118 (struct sockaddr *)&local->srx.transport,
David Howells17926a72007-04-26 15:48:28 -0700119 local->srx.transport_len);
120 if (ret < 0) {
David Howells4f95dd72016-04-04 14:00:35 +0100121 _debug("bind failed %d", ret);
David Howells17926a72007-04-26 15:48:28 -0700122 goto error;
123 }
124 }
125
126 /* we want to receive ICMP errors */
127 opt = 1;
128 ret = kernel_setsockopt(local->socket, SOL_IP, IP_RECVERR,
129 (char *) &opt, sizeof(opt));
130 if (ret < 0) {
131 _debug("setsockopt failed");
132 goto error;
133 }
134
135 /* we want to set the don't fragment bit */
136 opt = IP_PMTUDISC_DO;
137 ret = kernel_setsockopt(local->socket, SOL_IP, IP_MTU_DISCOVER,
138 (char *) &opt, sizeof(opt));
139 if (ret < 0) {
140 _debug("setsockopt failed");
141 goto error;
142 }
143
David Howells17926a72007-04-26 15:48:28 -0700144 /* set the socket up */
145 sock = local->socket->sk;
146 sock->sk_user_data = local;
147 sock->sk_data_ready = rxrpc_data_ready;
David Howellsabe89ef2016-04-04 14:00:32 +0100148 sock->sk_error_report = rxrpc_error_report;
David Howells17926a72007-04-26 15:48:28 -0700149 _leave(" = 0");
150 return 0;
151
152error:
Trond Myklebust91cf45f2007-11-12 18:10:39 -0800153 kernel_sock_shutdown(local->socket, SHUT_RDWR);
David Howells17926a72007-04-26 15:48:28 -0700154 local->socket->sk->sk_user_data = NULL;
155 sock_release(local->socket);
156 local->socket = NULL;
157
158 _leave(" = %d", ret);
159 return ret;
160}
161
162/*
David Howells4f95dd72016-04-04 14:00:35 +0100163 * Look up or create a new local endpoint using the specified local address.
David Howells17926a72007-04-26 15:48:28 -0700164 */
David Howells4f95dd72016-04-04 14:00:35 +0100165struct rxrpc_local *rxrpc_lookup_local(const struct sockaddr_rxrpc *srx)
David Howells17926a72007-04-26 15:48:28 -0700166{
167 struct rxrpc_local *local;
David Howells4f95dd72016-04-04 14:00:35 +0100168 struct list_head *cursor;
169 const char *age;
170 long diff;
David Howells17926a72007-04-26 15:48:28 -0700171 int ret;
172
David Howells4f95dd72016-04-04 14:00:35 +0100173 if (srx->transport.family == AF_INET) {
174 _enter("{%d,%u,%pI4+%hu}",
175 srx->transport_type,
176 srx->transport.family,
177 &srx->transport.sin.sin_addr,
178 ntohs(srx->transport.sin.sin_port));
179 } else {
180 _enter("{%d,%u}",
181 srx->transport_type,
182 srx->transport.family);
183 return ERR_PTR(-EAFNOSUPPORT);
184 }
David Howells17926a72007-04-26 15:48:28 -0700185
David Howells4f95dd72016-04-04 14:00:35 +0100186 mutex_lock(&rxrpc_local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700187
David Howells4f95dd72016-04-04 14:00:35 +0100188 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 Howells17926a72007-04-26 15:48:28 -0700192
David Howells4f95dd72016-04-04 14:00:35 +0100193 diff = rxrpc_local_cmp_key(local, srx);
194 if (diff < 0)
David Howells17926a72007-04-26 15:48:28 -0700195 continue;
David Howells4f95dd72016-04-04 14:00:35 +0100196 if (diff > 0)
197 break;
David Howells17926a72007-04-26 15:48:28 -0700198
David Howells4f95dd72016-04-04 14:00:35 +0100199 /* 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 Howells17926a72007-04-26 15:48:28 -0700207 }
David Howells4f95dd72016-04-04 14:00:35 +0100208
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 Howells5627cc82016-04-04 14:00:38 +0100213 if (!rxrpc_get_local_maybe(local)) {
David Howells4f95dd72016-04-04 14:00:35 +0100214 cursor = cursor->next;
215 list_del_init(&local->link);
216 break;
217 }
218
219 age = "old";
220 goto found;
David Howells17926a72007-04-26 15:48:28 -0700221 }
222
David Howells17926a72007-04-26 15:48:28 -0700223 local = rxrpc_alloc_local(srx);
David Howells4f95dd72016-04-04 14:00:35 +0100224 if (!local)
225 goto nomem;
David Howells17926a72007-04-26 15:48:28 -0700226
David Howells4f95dd72016-04-04 14:00:35 +0100227 ret = rxrpc_open_socket(local);
228 if (ret < 0)
229 goto sock_error;
David Howells17926a72007-04-26 15:48:28 -0700230
David Howells4f95dd72016-04-04 14:00:35 +0100231 list_add_tail(&local->link, cursor);
232 age = "new";
David Howells17926a72007-04-26 15:48:28 -0700233
David Howells4f95dd72016-04-04 14:00:35 +0100234found:
235 mutex_unlock(&rxrpc_local_mutex);
236
237 _net("LOCAL %s %d {%d,%u,%pI4+%hu}",
238 age,
David Howells17926a72007-04-26 15:48:28 -0700239 local->debug_id,
240 local->srx.transport_type,
241 local->srx.transport.family,
Harvey Harrison21454aa2008-10-31 00:54:56 -0700242 &local->srx.transport.sin.sin_addr,
David Howells17926a72007-04-26 15:48:28 -0700243 ntohs(local->srx.transport.sin.sin_port));
244
David Howells4f95dd72016-04-04 14:00:35 +0100245 _leave(" = %p", local);
David Howells17926a72007-04-26 15:48:28 -0700246 return local;
247
David Howells4f95dd72016-04-04 14:00:35 +0100248nomem:
249 ret = -ENOMEM;
250sock_error:
251 mutex_unlock(&rxrpc_local_mutex);
252 kfree(local);
253 _leave(" = %d", ret);
254 return ERR_PTR(ret);
David Howells17926a72007-04-26 15:48:28 -0700255
David Howells4f95dd72016-04-04 14:00:35 +0100256addr_in_use:
257 mutex_unlock(&rxrpc_local_mutex);
258 _leave(" = -EADDRINUSE");
259 return ERR_PTR(-EADDRINUSE);
David Howells17926a72007-04-26 15:48:28 -0700260}
261
262/*
David Howells4f95dd72016-04-04 14:00:35 +0100263 * A local endpoint reached its end of life.
David Howells17926a72007-04-26 15:48:28 -0700264 */
David Howells4f95dd72016-04-04 14:00:35 +0100265void __rxrpc_put_local(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700266{
David Howells4f95dd72016-04-04 14:00:35 +0100267 _enter("%d", local->debug_id);
268 rxrpc_queue_work(&local->processor);
David Howells17926a72007-04-26 15:48:28 -0700269}
270
271/*
David Howells4f95dd72016-04-04 14:00:35 +0100272 * Destroy a local endpoint's socket and then hand the record to RCU to dispose
273 * of.
274 *
275 * Closing the socket cannot be done from bottom half context or RCU callback
276 * context because it might sleep.
David Howells17926a72007-04-26 15:48:28 -0700277 */
David Howells4f95dd72016-04-04 14:00:35 +0100278static void rxrpc_local_destroyer(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700279{
David Howells4f95dd72016-04-04 14:00:35 +0100280 struct socket *socket = local->socket;
David Howells17926a72007-04-26 15:48:28 -0700281
David Howells4f95dd72016-04-04 14:00:35 +0100282 _enter("%d", local->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700283
David Howells4f95dd72016-04-04 14:00:35 +0100284 /* We can get a race between an incoming call packet queueing the
285 * processor again and the work processor starting the destruction
286 * process which will shut down the UDP socket.
287 */
288 if (local->dead) {
289 _leave(" [already dead]");
David Howells17926a72007-04-26 15:48:28 -0700290 return;
291 }
David Howells4f95dd72016-04-04 14:00:35 +0100292 local->dead = true;
David Howells17926a72007-04-26 15:48:28 -0700293
David Howells4f95dd72016-04-04 14:00:35 +0100294 mutex_lock(&rxrpc_local_mutex);
295 list_del_init(&local->link);
296 mutex_unlock(&rxrpc_local_mutex);
David Howells17926a72007-04-26 15:48:28 -0700297
David Howells999b69f2016-06-17 15:42:35 +0100298 ASSERT(RB_EMPTY_ROOT(&local->client_conns));
David Howells17926a72007-04-26 15:48:28 -0700299 ASSERT(list_empty(&local->services));
David Howells17926a72007-04-26 15:48:28 -0700300
David Howells4f95dd72016-04-04 14:00:35 +0100301 if (socket) {
302 local->socket = NULL;
303 kernel_sock_shutdown(socket, SHUT_RDWR);
304 socket->sk->sk_user_data = NULL;
305 sock_release(socket);
306 }
307
308 /* At this point, there should be no more packets coming in to the
309 * local endpoint.
310 */
David Howells17926a72007-04-26 15:48:28 -0700311 rxrpc_purge_queue(&local->accept_queue);
312 rxrpc_purge_queue(&local->reject_queue);
David Howells44ba0692015-04-01 16:31:26 +0100313 rxrpc_purge_queue(&local->event_queue);
David Howells17926a72007-04-26 15:48:28 -0700314
David Howells4f95dd72016-04-04 14:00:35 +0100315 _debug("rcu local %d", local->debug_id);
316 call_rcu(&local->rcu, rxrpc_local_rcu);
317}
318
319/*
320 * Process events on an endpoint
321 */
322static void rxrpc_local_processor(struct work_struct *work)
323{
324 struct rxrpc_local *local =
325 container_of(work, struct rxrpc_local, processor);
326 bool again;
327
328 _enter("%d", local->debug_id);
329
330 do {
331 again = false;
332 if (atomic_read(&local->usage) == 0)
333 return rxrpc_local_destroyer(local);
334
335 if (!skb_queue_empty(&local->accept_queue)) {
336 rxrpc_accept_incoming_calls(local);
337 again = true;
338 }
339
340 if (!skb_queue_empty(&local->reject_queue)) {
341 rxrpc_reject_packets(local);
342 again = true;
343 }
344
345 if (!skb_queue_empty(&local->event_queue)) {
346 rxrpc_process_local_events(local);
347 again = true;
348 }
349 } while (again);
350}
351
352/*
353 * Destroy a local endpoint after the RCU grace period expires.
354 */
355static void rxrpc_local_rcu(struct rcu_head *rcu)
356{
357 struct rxrpc_local *local = container_of(rcu, struct rxrpc_local, rcu);
358
359 _enter("%d", local->debug_id);
360
361 ASSERT(!work_pending(&local->processor));
David Howells17926a72007-04-26 15:48:28 -0700362
363 _net("DESTROY LOCAL %d", local->debug_id);
364 kfree(local);
David Howells17926a72007-04-26 15:48:28 -0700365 _leave("");
366}
367
368/*
David Howells4f95dd72016-04-04 14:00:35 +0100369 * Verify the local endpoint list is empty by this point.
David Howells17926a72007-04-26 15:48:28 -0700370 */
371void __exit rxrpc_destroy_all_locals(void)
372{
David Howells4f95dd72016-04-04 14:00:35 +0100373 struct rxrpc_local *local;
David Howells17926a72007-04-26 15:48:28 -0700374
375 _enter("");
376
David Howellsdee46362016-06-27 17:11:19 +0100377 flush_workqueue(rxrpc_workqueue);
David Howells17926a72007-04-26 15:48:28 -0700378
David Howellsdee46362016-06-27 17:11:19 +0100379 if (!list_empty(&rxrpc_local_endpoints)) {
380 mutex_lock(&rxrpc_local_mutex);
381 list_for_each_entry(local, &rxrpc_local_endpoints, link) {
382 pr_err("AF_RXRPC: Leaked local %p {%d}\n",
383 local, atomic_read(&local->usage));
384 }
385 mutex_unlock(&rxrpc_local_mutex);
386 BUG();
David Howells17926a72007-04-26 15:48:28 -0700387 }
David Howellsdee46362016-06-27 17:11:19 +0100388
389 rcu_barrier();
David Howells17926a72007-04-26 15:48:28 -0700390}