blob: 5b45b6c367e73fd7f12baa8b00997a596d138e1f [file] [log] [blame]
David Howells45025bc2016-08-24 07:30:52 +01001/* RxRPC virtual connection handler, common bits.
David Howells17926a72007-04-26 15:48:28 -07002 *
David Howells45025bc2016-08-24 07:30:52 +01003 * Copyright (C) 2007, 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
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070016#include <linux/net.h>
17#include <linux/skbuff.h>
David Howells17926a72007-04-26 15:48:28 -070018#include "ar-internal.h"
19
David Howells5873c082014-02-07 18:58:44 +000020/*
21 * Time till a connection expires after last use (in seconds).
22 */
David Howellsdad8aff2016-03-09 23:22:56 +000023unsigned int rxrpc_connection_expiry = 10 * 60;
David Howells5873c082014-02-07 18:58:44 +000024
David Howells17926a72007-04-26 15:48:28 -070025static void rxrpc_connection_reaper(struct work_struct *work);
26
27LIST_HEAD(rxrpc_connections);
David Howells4d028b22016-08-24 07:30:52 +010028LIST_HEAD(rxrpc_connection_proc_list);
David Howells17926a72007-04-26 15:48:28 -070029DEFINE_RWLOCK(rxrpc_connection_lock);
David Howells17926a72007-04-26 15:48:28 -070030static DECLARE_DELAYED_WORK(rxrpc_connection_reap, rxrpc_connection_reaper);
31
David Howells45025bc2016-08-24 07:30:52 +010032static void rxrpc_destroy_connection(struct rcu_head *);
33
David Howells17926a72007-04-26 15:48:28 -070034/*
David Howells17926a72007-04-26 15:48:28 -070035 * allocate a new connection
36 */
David Howellsc6d2b8d2016-04-04 14:00:40 +010037struct rxrpc_connection *rxrpc_alloc_connection(gfp_t gfp)
David Howells17926a72007-04-26 15:48:28 -070038{
39 struct rxrpc_connection *conn;
40
41 _enter("");
42
43 conn = kzalloc(sizeof(struct rxrpc_connection), gfp);
44 if (conn) {
David Howells45025bc2016-08-24 07:30:52 +010045 INIT_LIST_HEAD(&conn->cache_link);
David Howells999b69f2016-06-17 15:42:35 +010046 spin_lock_init(&conn->channel_lock);
David Howells45025bc2016-08-24 07:30:52 +010047 INIT_LIST_HEAD(&conn->waiting_calls);
David Howells17926a72007-04-26 15:48:28 -070048 INIT_WORK(&conn->processor, &rxrpc_process_connection);
David Howells4d028b22016-08-24 07:30:52 +010049 INIT_LIST_HEAD(&conn->proc_link);
David Howells999b69f2016-06-17 15:42:35 +010050 INIT_LIST_HEAD(&conn->link);
David Howells17926a72007-04-26 15:48:28 -070051 skb_queue_head_init(&conn->rx_queue);
David Howellse0e4d822016-04-07 17:23:58 +010052 conn->security = &rxrpc_no_security;
David Howells17926a72007-04-26 15:48:28 -070053 spin_lock_init(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -070054 conn->debug_id = atomic_inc_return(&rxrpc_debug_id);
David Howells17926a72007-04-26 15:48:28 -070055 conn->size_align = 4;
David Howells0d12f8a2016-03-04 15:53:46 +000056 conn->header_size = sizeof(struct rxrpc_wire_header);
David Howellsf51b4482016-08-23 15:27:24 +010057 conn->idle_timestamp = jiffies;
David Howells17926a72007-04-26 15:48:28 -070058 }
59
Adrian Bunk16c61ad2007-06-15 15:15:43 -070060 _leave(" = %p{%d}", conn, conn ? conn->debug_id : 0);
David Howells17926a72007-04-26 15:48:28 -070061 return conn;
62}
63
64/*
David Howells8496af52016-07-01 07:51:50 +010065 * Look up a connection in the cache by protocol parameters.
66 *
67 * If successful, a pointer to the connection is returned, but no ref is taken.
68 * NULL is returned if there is no match.
69 *
70 * The caller must be holding the RCU read lock.
David Howells17926a72007-04-26 15:48:28 -070071 */
David Howells8496af52016-07-01 07:51:50 +010072struct rxrpc_connection *rxrpc_find_connection_rcu(struct rxrpc_local *local,
73 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -070074{
75 struct rxrpc_connection *conn;
David Howells1291e9d2016-06-30 12:02:53 +010076 struct rxrpc_conn_proto k;
David Howells42886ff2016-06-16 13:31:07 +010077 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells1291e9d2016-06-30 12:02:53 +010078 struct sockaddr_rxrpc srx;
79 struct rxrpc_peer *peer;
David Howells17926a72007-04-26 15:48:28 -070080
David Howells8496af52016-07-01 07:51:50 +010081 _enter(",%x", sp->hdr.cid & RXRPC_CIDMASK);
David Howells17926a72007-04-26 15:48:28 -070082
David Howells1291e9d2016-06-30 12:02:53 +010083 if (rxrpc_extract_addr_from_skb(&srx, skb) < 0)
84 goto not_found;
David Howells17926a72007-04-26 15:48:28 -070085
David Howells8496af52016-07-01 07:51:50 +010086 k.epoch = sp->hdr.epoch;
87 k.cid = sp->hdr.cid & RXRPC_CIDMASK;
88
David Howells1291e9d2016-06-30 12:02:53 +010089 /* We may have to handle mixing IPv4 and IPv6 */
90 if (srx.transport.family != local->srx.transport.family) {
91 pr_warn_ratelimited("AF_RXRPC: Protocol mismatch %u not %u\n",
92 srx.transport.family,
93 local->srx.transport.family);
94 goto not_found;
95 }
96
97 k.epoch = sp->hdr.epoch;
98 k.cid = sp->hdr.cid & RXRPC_CIDMASK;
David Howells17926a72007-04-26 15:48:28 -070099
David Howells4a3388c2016-04-04 14:00:37 +0100100 if (sp->hdr.flags & RXRPC_CLIENT_INITIATED) {
David Howells1291e9d2016-06-30 12:02:53 +0100101 /* We need to look up service connections by the full protocol
102 * parameter set. We look up the peer first as an intermediate
103 * step and then the connection from the peer's tree.
104 */
105 peer = rxrpc_lookup_peer_rcu(local, &srx);
106 if (!peer)
107 goto not_found;
David Howells8496af52016-07-01 07:51:50 +0100108 conn = rxrpc_find_service_conn_rcu(peer, skb);
109 if (!conn || atomic_read(&conn->usage) == 0)
110 goto not_found;
111 _leave(" = %p", conn);
112 return conn;
David Howells4a3388c2016-04-04 14:00:37 +0100113 } else {
David Howells8496af52016-07-01 07:51:50 +0100114 /* Look up client connections by connection ID alone as their
115 * IDs are unique for this machine.
116 */
David Howells1291e9d2016-06-30 12:02:53 +0100117 conn = idr_find(&rxrpc_client_conn_ids,
David Howells8496af52016-07-01 07:51:50 +0100118 sp->hdr.cid >> RXRPC_CIDSHIFT);
119 if (!conn || atomic_read(&conn->usage) == 0) {
120 _debug("no conn");
121 goto not_found;
122 }
123
124 if (conn->proto.epoch != k.epoch ||
David Howells1291e9d2016-06-30 12:02:53 +0100125 conn->params.local != local)
126 goto not_found;
127
128 peer = conn->params.peer;
129 switch (srx.transport.family) {
130 case AF_INET:
131 if (peer->srx.transport.sin.sin_port !=
132 srx.transport.sin.sin_port ||
133 peer->srx.transport.sin.sin_addr.s_addr !=
134 srx.transport.sin.sin_addr.s_addr)
135 goto not_found;
136 break;
137 default:
138 BUG();
139 }
140
David Howells1291e9d2016-06-30 12:02:53 +0100141 _leave(" = %p", conn);
142 return conn;
David Howells17926a72007-04-26 15:48:28 -0700143 }
144
David Howells1291e9d2016-06-30 12:02:53 +0100145not_found:
David Howells17926a72007-04-26 15:48:28 -0700146 _leave(" = NULL");
147 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700148}
149
150/*
David Howells999b69f2016-06-17 15:42:35 +0100151 * Disconnect a call and clear any channel it occupies when that call
David Howellsa1399f82016-06-27 14:39:44 +0100152 * terminates. The caller must hold the channel_lock and must release the
153 * call's ref on the connection.
154 */
David Howells45025bc2016-08-24 07:30:52 +0100155void __rxrpc_disconnect_call(struct rxrpc_connection *conn,
156 struct rxrpc_call *call)
David Howellsa1399f82016-06-27 14:39:44 +0100157{
David Howells01a90a42016-08-23 15:27:24 +0100158 struct rxrpc_channel *chan =
159 &conn->channels[call->cid & RXRPC_CHANNELMASK];
David Howellsa1399f82016-06-27 14:39:44 +0100160
David Howells01a90a42016-08-23 15:27:24 +0100161 _enter("%d,%x", conn->debug_id, call->cid);
David Howellsa1399f82016-06-27 14:39:44 +0100162
163 if (rcu_access_pointer(chan->call) == call) {
164 /* Save the result of the call so that we can repeat it if necessary
165 * through the channel, whilst disposing of the actual call record.
166 */
David Howells18bfeba2016-08-23 15:27:25 +0100167 chan->last_service_id = call->service_id;
168 if (call->local_abort) {
169 chan->last_abort = call->local_abort;
170 chan->last_type = RXRPC_PACKET_TYPE_ABORT;
171 } else {
172 chan->last_seq = call->rx_data_eaten;
173 chan->last_type = RXRPC_PACKET_TYPE_ACK;
174 }
175 /* Sync with rxrpc_conn_retransmit(). */
David Howellsa1399f82016-06-27 14:39:44 +0100176 smp_wmb();
177 chan->last_call = chan->call_id;
178 chan->call_id = chan->call_counter;
179
180 rcu_assign_pointer(chan->call, NULL);
David Howellsa1399f82016-06-27 14:39:44 +0100181 }
182
183 _leave("");
184}
185
186/*
187 * Disconnect a call and clear any channel it occupies when that call
David Howells999b69f2016-06-17 15:42:35 +0100188 * terminates.
189 */
190void rxrpc_disconnect_call(struct rxrpc_call *call)
191{
192 struct rxrpc_connection *conn = call->conn;
David Howells999b69f2016-06-17 15:42:35 +0100193
David Howells45025bc2016-08-24 07:30:52 +0100194 if (rxrpc_is_client_call(call))
195 return rxrpc_disconnect_client_call(call);
196
David Howellse653cfe2016-04-04 14:00:38 +0100197 spin_lock(&conn->channel_lock);
David Howells45025bc2016-08-24 07:30:52 +0100198 __rxrpc_disconnect_call(conn, call);
David Howellse653cfe2016-04-04 14:00:38 +0100199 spin_unlock(&conn->channel_lock);
200
201 call->conn = NULL;
David Howellsf51b4482016-08-23 15:27:24 +0100202 conn->idle_timestamp = jiffies;
David Howellse653cfe2016-04-04 14:00:38 +0100203 rxrpc_put_connection(conn);
David Howells999b69f2016-06-17 15:42:35 +0100204}
205
206/*
David Howells45025bc2016-08-24 07:30:52 +0100207 * Kill off a connection.
208 */
209void rxrpc_kill_connection(struct rxrpc_connection *conn)
210{
211 ASSERT(!rcu_access_pointer(conn->channels[0].call) &&
212 !rcu_access_pointer(conn->channels[1].call) &&
213 !rcu_access_pointer(conn->channels[2].call) &&
214 !rcu_access_pointer(conn->channels[3].call));
215 ASSERT(list_empty(&conn->cache_link));
216
217 write_lock(&rxrpc_connection_lock);
218 list_del_init(&conn->proc_link);
219 write_unlock(&rxrpc_connection_lock);
220
221 /* Drain the Rx queue. Note that even though we've unpublished, an
222 * incoming packet could still be being added to our Rx queue, so we
223 * will need to drain it again in the RCU cleanup handler.
224 */
225 rxrpc_purge_queue(&conn->rx_queue);
226
227 /* Leave final destruction to RCU. The connection processor work item
228 * must carry a ref on the connection to prevent us getting here whilst
229 * it is queued or running.
230 */
231 call_rcu(&conn->rcu, rxrpc_destroy_connection);
232}
233
234/*
David Howells17926a72007-04-26 15:48:28 -0700235 * release a virtual connection
236 */
David Howellsf51b4482016-08-23 15:27:24 +0100237void __rxrpc_put_connection(struct rxrpc_connection *conn)
David Howells17926a72007-04-26 15:48:28 -0700238{
David Howellsf51b4482016-08-23 15:27:24 +0100239 rxrpc_queue_delayed_work(&rxrpc_connection_reap, 0);
David Howells17926a72007-04-26 15:48:28 -0700240}
241
242/*
243 * destroy a virtual connection
244 */
David Howellsdee46362016-06-27 17:11:19 +0100245static void rxrpc_destroy_connection(struct rcu_head *rcu)
David Howells17926a72007-04-26 15:48:28 -0700246{
David Howellsdee46362016-06-27 17:11:19 +0100247 struct rxrpc_connection *conn =
248 container_of(rcu, struct rxrpc_connection, rcu);
249
250 _enter("{%d,u=%d}", conn->debug_id, atomic_read(&conn->usage));
David Howells17926a72007-04-26 15:48:28 -0700251
252 ASSERTCMP(atomic_read(&conn->usage), ==, 0);
253
254 _net("DESTROY CONN %d", conn->debug_id);
255
David Howells17926a72007-04-26 15:48:28 -0700256 rxrpc_purge_queue(&conn->rx_queue);
257
David Howellse0e4d822016-04-07 17:23:58 +0100258 conn->security->clear(conn);
David Howells19ffa012016-04-04 14:00:36 +0100259 key_put(conn->params.key);
David Howellse0e4d822016-04-07 17:23:58 +0100260 key_put(conn->server_key);
David Howellsaa390bb2016-06-17 10:06:56 +0100261 rxrpc_put_peer(conn->params.peer);
262 rxrpc_put_local(conn->params.local);
David Howellse0e4d822016-04-07 17:23:58 +0100263
David Howells17926a72007-04-26 15:48:28 -0700264 kfree(conn);
265 _leave("");
266}
267
268/*
David Howells45025bc2016-08-24 07:30:52 +0100269 * reap dead service connections
David Howells17926a72007-04-26 15:48:28 -0700270 */
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800271static void rxrpc_connection_reaper(struct work_struct *work)
David Howells17926a72007-04-26 15:48:28 -0700272{
273 struct rxrpc_connection *conn, *_p;
David Howellsf51b4482016-08-23 15:27:24 +0100274 unsigned long reap_older_than, earliest, idle_timestamp, now;
David Howells17926a72007-04-26 15:48:28 -0700275
276 LIST_HEAD(graveyard);
277
278 _enter("");
279
David Howellsf51b4482016-08-23 15:27:24 +0100280 now = jiffies;
281 reap_older_than = now - rxrpc_connection_expiry * HZ;
David Howells17926a72007-04-26 15:48:28 -0700282 earliest = ULONG_MAX;
283
David Howellsb3f57502016-06-21 16:10:03 +0100284 write_lock(&rxrpc_connection_lock);
David Howells17926a72007-04-26 15:48:28 -0700285 list_for_each_entry_safe(conn, _p, &rxrpc_connections, link) {
David Howells001c1122016-06-30 10:45:22 +0100286 ASSERTCMP(atomic_read(&conn->usage), >, 0);
287 if (likely(atomic_read(&conn->usage) > 1))
David Howells17926a72007-04-26 15:48:28 -0700288 continue;
289
David Howellsf51b4482016-08-23 15:27:24 +0100290 idle_timestamp = READ_ONCE(conn->idle_timestamp);
291 _debug("reap CONN %d { u=%d,t=%ld }",
292 conn->debug_id, atomic_read(&conn->usage),
293 (long)reap_older_than - (long)idle_timestamp);
294
295 if (time_after(idle_timestamp, reap_older_than)) {
296 if (time_before(idle_timestamp, earliest))
297 earliest = idle_timestamp;
David Howells001c1122016-06-30 10:45:22 +0100298 continue;
David Howells999b69f2016-06-17 15:42:35 +0100299 }
David Howells001c1122016-06-30 10:45:22 +0100300
301 /* The usage count sits at 1 whilst the object is unused on the
302 * list; we reduce that to 0 to make the object unavailable.
303 */
304 if (atomic_cmpxchg(&conn->usage, 1, 0) != 1)
305 continue;
306
307 if (rxrpc_conn_is_client(conn))
David Howells45025bc2016-08-24 07:30:52 +0100308 BUG();
David Howells001c1122016-06-30 10:45:22 +0100309 else
310 rxrpc_unpublish_service_conn(conn);
311
312 list_move_tail(&conn->link, &graveyard);
David Howells17926a72007-04-26 15:48:28 -0700313 }
David Howellsb3f57502016-06-21 16:10:03 +0100314 write_unlock(&rxrpc_connection_lock);
David Howells17926a72007-04-26 15:48:28 -0700315
316 if (earliest != ULONG_MAX) {
317 _debug("reschedule reaper %ld", (long) earliest - now);
David Howellsf51b4482016-08-23 15:27:24 +0100318 ASSERT(time_after(earliest, now));
David Howells651350d2007-04-26 15:50:17 -0700319 rxrpc_queue_delayed_work(&rxrpc_connection_reap,
David Howellsf51b4482016-08-23 15:27:24 +0100320 earliest - now);
David Howells17926a72007-04-26 15:48:28 -0700321 }
322
David Howells17926a72007-04-26 15:48:28 -0700323 while (!list_empty(&graveyard)) {
324 conn = list_entry(graveyard.next, struct rxrpc_connection,
325 link);
326 list_del_init(&conn->link);
327
328 ASSERTCMP(atomic_read(&conn->usage), ==, 0);
David Howells45025bc2016-08-24 07:30:52 +0100329 rxrpc_kill_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700330 }
331
332 _leave("");
333}
334
335/*
David Howells45025bc2016-08-24 07:30:52 +0100336 * preemptively destroy all the service connection records rather than
337 * waiting for them to time out
David Howells17926a72007-04-26 15:48:28 -0700338 */
339void __exit rxrpc_destroy_all_connections(void)
340{
David Howellsdee46362016-06-27 17:11:19 +0100341 struct rxrpc_connection *conn, *_p;
342 bool leak = false;
343
David Howells17926a72007-04-26 15:48:28 -0700344 _enter("");
345
David Howells45025bc2016-08-24 07:30:52 +0100346 rxrpc_destroy_all_client_connections();
347
David Howells5873c082014-02-07 18:58:44 +0000348 rxrpc_connection_expiry = 0;
David Howells17926a72007-04-26 15:48:28 -0700349 cancel_delayed_work(&rxrpc_connection_reap);
David Howells651350d2007-04-26 15:50:17 -0700350 rxrpc_queue_delayed_work(&rxrpc_connection_reap, 0);
David Howellsdee46362016-06-27 17:11:19 +0100351 flush_workqueue(rxrpc_workqueue);
352
353 write_lock(&rxrpc_connection_lock);
354 list_for_each_entry_safe(conn, _p, &rxrpc_connections, link) {
355 pr_err("AF_RXRPC: Leaked conn %p {%d}\n",
356 conn, atomic_read(&conn->usage));
357 leak = true;
358 }
359 write_unlock(&rxrpc_connection_lock);
360 BUG_ON(leak);
361
David Howells45025bc2016-08-24 07:30:52 +0100362 ASSERT(list_empty(&rxrpc_connection_proc_list));
363
David Howellsdee46362016-06-27 17:11:19 +0100364 /* Make sure the local and peer records pinned by any dying connections
365 * are released.
366 */
367 rcu_barrier();
368 rxrpc_destroy_client_conn_ids();
David Howells17926a72007-04-26 15:48:28 -0700369
370 _leave("");
371}