blob: 521189f4b6667fee627bf27fb0742882227a51b3 [file] [log] [blame]
David Howells4a3388c2016-04-04 14:00:37 +01001/* Client connection-specific management code.
2 *
3 * Copyright (C) 2016 Red Hat, Inc. All Rights Reserved.
4 * 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
David Howells45025bc2016-08-24 07:30:52 +010010 *
11 *
12 * Client connections need to be cached for a little while after they've made a
13 * call so as to handle retransmitted DATA packets in case the server didn't
14 * receive the final ACK or terminating ABORT we sent it.
15 *
16 * Client connections can be in one of a number of cache states:
17 *
18 * (1) INACTIVE - The connection is not held in any list and may not have been
19 * exposed to the world. If it has been previously exposed, it was
20 * discarded from the idle list after expiring.
21 *
22 * (2) WAITING - The connection is waiting for the number of client conns to
23 * drop below the maximum capacity. Calls may be in progress upon it from
24 * when it was active and got culled.
25 *
26 * The connection is on the rxrpc_waiting_client_conns list which is kept
27 * in to-be-granted order. Culled conns with waiters go to the back of
28 * the queue just like new conns.
29 *
30 * (3) ACTIVE - The connection has at least one call in progress upon it, it
31 * may freely grant available channels to new calls and calls may be
32 * waiting on it for channels to become available.
33 *
David Howells2baec2c2017-05-24 17:02:32 +010034 * The connection is on the rxnet->active_client_conns list which is kept
David Howells45025bc2016-08-24 07:30:52 +010035 * in activation order for culling purposes.
36 *
37 * rxrpc_nr_active_client_conns is held incremented also.
38 *
David Howells4e255722017-06-05 14:30:49 +010039 * (4) UPGRADE - As for ACTIVE, but only one call may be in progress and is
40 * being used to probe for service upgrade.
41 *
42 * (5) CULLED - The connection got summarily culled to try and free up
David Howells45025bc2016-08-24 07:30:52 +010043 * capacity. Calls currently in progress on the connection are allowed to
44 * continue, but new calls will have to wait. There can be no waiters in
45 * this state - the conn would have to go to the WAITING state instead.
46 *
David Howells4e255722017-06-05 14:30:49 +010047 * (6) IDLE - The connection has no calls in progress upon it and must have
David Howells45025bc2016-08-24 07:30:52 +010048 * been exposed to the world (ie. the EXPOSED flag must be set). When it
49 * expires, the EXPOSED flag is cleared and the connection transitions to
50 * the INACTIVE state.
51 *
David Howells2baec2c2017-05-24 17:02:32 +010052 * The connection is on the rxnet->idle_client_conns list which is kept in
David Howells45025bc2016-08-24 07:30:52 +010053 * order of how soon they'll expire.
54 *
55 * There are flags of relevance to the cache:
56 *
57 * (1) EXPOSED - The connection ID got exposed to the world. If this flag is
58 * set, an extra ref is added to the connection preventing it from being
59 * reaped when it has no calls outstanding. This flag is cleared and the
60 * ref dropped when a conn is discarded from the idle list.
61 *
62 * This allows us to move terminal call state retransmission to the
63 * connection and to discard the call immediately we think it is done
64 * with. It also give us a chance to reuse the connection.
65 *
66 * (2) DONT_REUSE - The connection should be discarded as soon as possible and
67 * should not be reused. This is set when an exclusive connection is used
68 * or a call ID counter overflows.
69 *
70 * The caching state may only be changed if the cache lock is held.
71 *
72 * There are two idle client connection expiry durations. If the total number
73 * of connections is below the reap threshold, we use the normal duration; if
74 * it's above, we use the fast duration.
David Howells4a3388c2016-04-04 14:00:37 +010075 */
76
77#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
78
79#include <linux/slab.h>
80#include <linux/idr.h>
81#include <linux/timer.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010082#include <linux/sched/signal.h>
83
David Howells4a3388c2016-04-04 14:00:37 +010084#include "ar-internal.h"
85
David Howells45025bc2016-08-24 07:30:52 +010086__read_mostly unsigned int rxrpc_max_client_connections = 1000;
87__read_mostly unsigned int rxrpc_reap_client_connections = 900;
David Howellsa158bdd2017-11-24 10:18:41 +000088__read_mostly unsigned long rxrpc_conn_idle_client_expiry = 2 * 60 * HZ;
89__read_mostly unsigned long rxrpc_conn_idle_client_fast_expiry = 2 * HZ;
David Howells45025bc2016-08-24 07:30:52 +010090
David Howells4a3388c2016-04-04 14:00:37 +010091/*
92 * We use machine-unique IDs for our client connections.
93 */
94DEFINE_IDR(rxrpc_client_conn_ids);
95static DEFINE_SPINLOCK(rxrpc_conn_id_lock);
96
David Howells2baec2c2017-05-24 17:02:32 +010097static void rxrpc_cull_active_client_conns(struct rxrpc_net *);
David Howells45025bc2016-08-24 07:30:52 +010098
David Howells4a3388c2016-04-04 14:00:37 +010099/*
100 * Get a connection ID and epoch for a client connection from the global pool.
101 * The connection struct pointer is then recorded in the idr radix tree. The
David Howells090f85d2016-09-04 13:14:46 +0100102 * epoch doesn't change until the client is rebooted (or, at least, unless the
103 * module is unloaded).
David Howells4a3388c2016-04-04 14:00:37 +0100104 */
David Howellsc6d2b8d2016-04-04 14:00:40 +0100105static int rxrpc_get_client_connection_id(struct rxrpc_connection *conn,
106 gfp_t gfp)
David Howells4a3388c2016-04-04 14:00:37 +0100107{
David Howells2baec2c2017-05-24 17:02:32 +0100108 struct rxrpc_net *rxnet = conn->params.local->rxnet;
David Howells4a3388c2016-04-04 14:00:37 +0100109 int id;
110
111 _enter("");
112
113 idr_preload(gfp);
David Howells4a3388c2016-04-04 14:00:37 +0100114 spin_lock(&rxrpc_conn_id_lock);
115
David Howells090f85d2016-09-04 13:14:46 +0100116 id = idr_alloc_cyclic(&rxrpc_client_conn_ids, conn,
117 1, 0x40000000, GFP_NOWAIT);
118 if (id < 0)
119 goto error;
David Howells4a3388c2016-04-04 14:00:37 +0100120
121 spin_unlock(&rxrpc_conn_id_lock);
David Howells4a3388c2016-04-04 14:00:37 +0100122 idr_preload_end();
123
David Howells2baec2c2017-05-24 17:02:32 +0100124 conn->proto.epoch = rxnet->epoch;
David Howells4a3388c2016-04-04 14:00:37 +0100125 conn->proto.cid = id << RXRPC_CIDSHIFT;
126 set_bit(RXRPC_CONN_HAS_IDR, &conn->flags);
David Howells090f85d2016-09-04 13:14:46 +0100127 _leave(" [CID %x]", conn->proto.cid);
David Howells4a3388c2016-04-04 14:00:37 +0100128 return 0;
129
130error:
131 spin_unlock(&rxrpc_conn_id_lock);
David Howells4a3388c2016-04-04 14:00:37 +0100132 idr_preload_end();
133 _leave(" = %d", id);
134 return id;
135}
136
137/*
138 * Release a connection ID for a client connection from the global pool.
139 */
David Howells001c1122016-06-30 10:45:22 +0100140static void rxrpc_put_client_connection_id(struct rxrpc_connection *conn)
David Howells4a3388c2016-04-04 14:00:37 +0100141{
142 if (test_bit(RXRPC_CONN_HAS_IDR, &conn->flags)) {
143 spin_lock(&rxrpc_conn_id_lock);
144 idr_remove(&rxrpc_client_conn_ids,
145 conn->proto.cid >> RXRPC_CIDSHIFT);
146 spin_unlock(&rxrpc_conn_id_lock);
147 }
148}
David Howellseb9b9d22016-06-27 10:32:02 +0100149
150/*
151 * Destroy the client connection ID tree.
152 */
153void rxrpc_destroy_client_conn_ids(void)
154{
155 struct rxrpc_connection *conn;
156 int id;
157
158 if (!idr_is_empty(&rxrpc_client_conn_ids)) {
159 idr_for_each_entry(&rxrpc_client_conn_ids, conn, id) {
160 pr_err("AF_RXRPC: Leaked client conn %p {%d}\n",
161 conn, atomic_read(&conn->usage));
162 }
163 BUG();
164 }
165
166 idr_destroy(&rxrpc_client_conn_ids);
167}
David Howellsc6d2b8d2016-04-04 14:00:40 +0100168
169/*
David Howells45025bc2016-08-24 07:30:52 +0100170 * Allocate a client connection.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100171 */
172static struct rxrpc_connection *
173rxrpc_alloc_client_connection(struct rxrpc_conn_parameters *cp, gfp_t gfp)
174{
175 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +0100176 struct rxrpc_net *rxnet = cp->local->rxnet;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100177 int ret;
178
179 _enter("");
180
181 conn = rxrpc_alloc_connection(gfp);
182 if (!conn) {
183 _leave(" = -ENOMEM");
184 return ERR_PTR(-ENOMEM);
185 }
186
David Howells45025bc2016-08-24 07:30:52 +0100187 atomic_set(&conn->usage, 1);
David Howells8732db62016-09-29 22:37:15 +0100188 if (cp->exclusive)
David Howells45025bc2016-08-24 07:30:52 +0100189 __set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
David Howells4e255722017-06-05 14:30:49 +0100190 if (cp->upgrade)
191 __set_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
David Howells45025bc2016-08-24 07:30:52 +0100192
David Howellsc6d2b8d2016-04-04 14:00:40 +0100193 conn->params = *cp;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100194 conn->out_clientflag = RXRPC_CLIENT_INITIATED;
195 conn->state = RXRPC_CONN_CLIENT;
David Howells68d6d1a2017-06-05 14:30:49 +0100196 conn->service_id = cp->service_id;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100197
David Howellsc6d2b8d2016-04-04 14:00:40 +0100198 ret = rxrpc_get_client_connection_id(conn, gfp);
199 if (ret < 0)
200 goto error_0;
201
202 ret = rxrpc_init_client_conn_security(conn);
203 if (ret < 0)
204 goto error_1;
205
206 ret = conn->security->prime_packet_security(conn);
207 if (ret < 0)
208 goto error_2;
209
David Howells31f5f9a162018-03-30 21:05:33 +0100210 atomic_inc(&rxnet->nr_conns);
David Howells2baec2c2017-05-24 17:02:32 +0100211 write_lock(&rxnet->conn_lock);
212 list_add_tail(&conn->proc_link, &rxnet->conn_proc_list);
213 write_unlock(&rxnet->conn_lock);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100214
215 /* We steal the caller's peer ref. */
216 cp->peer = NULL;
217 rxrpc_get_local(conn->params.local);
218 key_get(conn->params.key);
219
David Howells363deea2016-09-17 10:49:14 +0100220 trace_rxrpc_conn(conn, rxrpc_conn_new_client, atomic_read(&conn->usage),
221 __builtin_return_address(0));
222 trace_rxrpc_client(conn, -1, rxrpc_client_alloc);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100223 _leave(" = %p", conn);
224 return conn;
225
226error_2:
227 conn->security->clear(conn);
228error_1:
229 rxrpc_put_client_connection_id(conn);
230error_0:
231 kfree(conn);
232 _leave(" = %d", ret);
233 return ERR_PTR(ret);
234}
235
236/*
David Howells45025bc2016-08-24 07:30:52 +0100237 * Determine if a connection may be reused.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100238 */
David Howells45025bc2016-08-24 07:30:52 +0100239static bool rxrpc_may_reuse_conn(struct rxrpc_connection *conn)
240{
David Howells2baec2c2017-05-24 17:02:32 +0100241 struct rxrpc_net *rxnet = conn->params.local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100242 int id_cursor, id, distance, limit;
243
244 if (test_bit(RXRPC_CONN_DONT_REUSE, &conn->flags))
245 goto dont_reuse;
246
David Howells2baec2c2017-05-24 17:02:32 +0100247 if (conn->proto.epoch != rxnet->epoch)
David Howells45025bc2016-08-24 07:30:52 +0100248 goto mark_dont_reuse;
249
250 /* The IDR tree gets very expensive on memory if the connection IDs are
251 * widely scattered throughout the number space, so we shall want to
252 * kill off connections that, say, have an ID more than about four
253 * times the maximum number of client conns away from the current
254 * allocation point to try and keep the IDs concentrated.
255 */
Matthew Wilcox44430612016-12-14 15:09:19 -0800256 id_cursor = idr_get_cursor(&rxrpc_client_conn_ids);
David Howells45025bc2016-08-24 07:30:52 +0100257 id = conn->proto.cid >> RXRPC_CIDSHIFT;
258 distance = id - id_cursor;
259 if (distance < 0)
260 distance = -distance;
Matthew Wilcox44430612016-12-14 15:09:19 -0800261 limit = max(rxrpc_max_client_connections * 4, 1024U);
David Howells45025bc2016-08-24 07:30:52 +0100262 if (distance > limit)
263 goto mark_dont_reuse;
264
265 return true;
266
267mark_dont_reuse:
268 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
269dont_reuse:
270 return false;
271}
272
273/*
274 * Create or find a client connection to use for a call.
275 *
276 * If we return with a connection, the call will be on its waiting list. It's
277 * left to the caller to assign a channel and wake up the call.
278 */
David Howells5e33a232018-10-05 14:05:34 +0100279static int rxrpc_get_client_conn(struct rxrpc_sock *rx,
280 struct rxrpc_call *call,
David Howells45025bc2016-08-24 07:30:52 +0100281 struct rxrpc_conn_parameters *cp,
282 struct sockaddr_rxrpc *srx,
283 gfp_t gfp)
David Howellsc6d2b8d2016-04-04 14:00:40 +0100284{
285 struct rxrpc_connection *conn, *candidate = NULL;
286 struct rxrpc_local *local = cp->local;
287 struct rb_node *p, **pp, *parent;
288 long diff;
David Howells45025bc2016-08-24 07:30:52 +0100289 int ret = -ENOMEM;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100290
291 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
292
David Howells5e33a232018-10-05 14:05:34 +0100293 cp->peer = rxrpc_lookup_peer(rx, cp->local, srx, gfp);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100294 if (!cp->peer)
David Howells45025bc2016-08-24 07:30:52 +0100295 goto error;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100296
David Howellsf7aec122017-06-14 17:56:50 +0100297 call->cong_cwnd = cp->peer->cong_cwnd;
298 if (call->cong_cwnd >= call->cong_ssthresh)
299 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
300 else
301 call->cong_mode = RXRPC_CALL_SLOW_START;
302
David Howells45025bc2016-08-24 07:30:52 +0100303 /* If the connection is not meant to be exclusive, search the available
304 * connections to see if the connection we want to use already exists.
305 */
David Howellsc6d2b8d2016-04-04 14:00:40 +0100306 if (!cp->exclusive) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100307 _debug("search 1");
308 spin_lock(&local->client_conns_lock);
309 p = local->client_conns.rb_node;
310 while (p) {
311 conn = rb_entry(p, struct rxrpc_connection, client_node);
312
313#define cmp(X) ((long)conn->params.X - (long)cp->X)
314 diff = (cmp(peer) ?:
315 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100316 cmp(security_level) ?:
317 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100318#undef cmp
319 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100320 p = p->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100321 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100322 p = p->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100323 } else {
324 if (rxrpc_may_reuse_conn(conn) &&
325 rxrpc_get_connection_maybe(conn))
326 goto found_extant_conn;
327 /* The connection needs replacing. It's better
328 * to effect that when we have something to
329 * replace it with so that we don't have to
330 * rebalance the tree twice.
331 */
332 break;
333 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100334 }
335 spin_unlock(&local->client_conns_lock);
336 }
337
David Howells45025bc2016-08-24 07:30:52 +0100338 /* There wasn't a connection yet or we need an exclusive connection.
339 * We need to create a candidate and then potentially redo the search
340 * in case we're racing with another thread also trying to connect on a
341 * shareable connection.
342 */
343 _debug("new conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100344 candidate = rxrpc_alloc_client_connection(cp, gfp);
David Howells45025bc2016-08-24 07:30:52 +0100345 if (IS_ERR(candidate)) {
346 ret = PTR_ERR(candidate);
347 goto error_peer;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100348 }
349
David Howells45025bc2016-08-24 07:30:52 +0100350 /* Add the call to the new connection's waiting list in case we're
351 * going to have to wait for the connection to come live. It's our
352 * connection, so we want first dibs on the channel slots. We would
353 * normally have to take channel_lock but we do this before anyone else
354 * can see the connection.
355 */
356 list_add_tail(&call->chan_wait_link, &candidate->waiting_calls);
357
David Howellsc6d2b8d2016-04-04 14:00:40 +0100358 if (cp->exclusive) {
David Howells45025bc2016-08-24 07:30:52 +0100359 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100360 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100361 call->service_id = candidate->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100362 _leave(" = 0 [exclusive %d]", candidate->debug_id);
363 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100364 }
365
David Howells45025bc2016-08-24 07:30:52 +0100366 /* Publish the new connection for userspace to find. We need to redo
367 * the search before doing this lest we race with someone else adding a
368 * conflicting instance.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100369 */
370 _debug("search 2");
371 spin_lock(&local->client_conns_lock);
372
373 pp = &local->client_conns.rb_node;
374 parent = NULL;
375 while (*pp) {
376 parent = *pp;
377 conn = rb_entry(parent, struct rxrpc_connection, client_node);
378
David Howells45025bc2016-08-24 07:30:52 +0100379#define cmp(X) ((long)conn->params.X - (long)candidate->params.X)
David Howellsc6d2b8d2016-04-04 14:00:40 +0100380 diff = (cmp(peer) ?:
381 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100382 cmp(security_level) ?:
383 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100384#undef cmp
385 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100386 pp = &(*pp)->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100387 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100388 pp = &(*pp)->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100389 } else {
390 if (rxrpc_may_reuse_conn(conn) &&
391 rxrpc_get_connection_maybe(conn))
392 goto found_extant_conn;
393 /* The old connection is from an outdated epoch. */
394 _debug("replace conn");
395 clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags);
396 rb_replace_node(&conn->client_node,
397 &candidate->client_node,
398 &local->client_conns);
David Howells363deea2016-09-17 10:49:14 +0100399 trace_rxrpc_client(conn, -1, rxrpc_client_replace);
David Howells45025bc2016-08-24 07:30:52 +0100400 goto candidate_published;
401 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100402 }
403
David Howellsc6d2b8d2016-04-04 14:00:40 +0100404 _debug("new conn");
David Howells001c1122016-06-30 10:45:22 +0100405 rb_link_node(&candidate->client_node, parent, pp);
406 rb_insert_color(&candidate->client_node, &local->client_conns);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100407
David Howells45025bc2016-08-24 07:30:52 +0100408candidate_published:
409 set_bit(RXRPC_CONN_IN_CLIENT_CONNS, &candidate->flags);
410 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100411 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100412 call->service_id = candidate->service_id;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100413 spin_unlock(&local->client_conns_lock);
David Howells45025bc2016-08-24 07:30:52 +0100414 _leave(" = 0 [new %d]", candidate->debug_id);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100415 return 0;
416
David Howells45025bc2016-08-24 07:30:52 +0100417 /* We come here if we found a suitable connection already in existence.
418 * Discard any candidate we may have allocated, and try to get a
419 * channel on this one.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100420 */
421found_extant_conn:
422 _debug("found conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100423 spin_unlock(&local->client_conns_lock);
424
David Howells363deea2016-09-17 10:49:14 +0100425 if (candidate) {
426 trace_rxrpc_client(candidate, -1, rxrpc_client_duplicate);
427 rxrpc_put_connection(candidate);
428 candidate = NULL;
429 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100430
David Howellsc6d2b8d2016-04-04 14:00:40 +0100431 spin_lock(&conn->channel_lock);
David Howells45025bc2016-08-24 07:30:52 +0100432 call->conn = conn;
David Howells278ac0c2016-09-07 15:19:25 +0100433 call->security_ix = conn->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100434 call->service_id = conn->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100435 list_add(&call->chan_wait_link, &conn->waiting_calls);
436 spin_unlock(&conn->channel_lock);
437 _leave(" = 0 [extant %d]", conn->debug_id);
438 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100439
David Howells45025bc2016-08-24 07:30:52 +0100440error_peer:
David Howellsc6d2b8d2016-04-04 14:00:40 +0100441 rxrpc_put_peer(cp->peer);
442 cp->peer = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100443error:
444 _leave(" = %d", ret);
445 return ret;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100446}
David Howells001c1122016-06-30 10:45:22 +0100447
448/*
David Howells45025bc2016-08-24 07:30:52 +0100449 * Activate a connection.
David Howells001c1122016-06-30 10:45:22 +0100450 */
David Howells2baec2c2017-05-24 17:02:32 +0100451static void rxrpc_activate_conn(struct rxrpc_net *rxnet,
452 struct rxrpc_connection *conn)
David Howells001c1122016-06-30 10:45:22 +0100453{
David Howells4e255722017-06-05 14:30:49 +0100454 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags)) {
455 trace_rxrpc_client(conn, -1, rxrpc_client_to_upgrade);
456 conn->cache_state = RXRPC_CONN_CLIENT_UPGRADE;
457 } else {
458 trace_rxrpc_client(conn, -1, rxrpc_client_to_active);
459 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
460 }
David Howells2baec2c2017-05-24 17:02:32 +0100461 rxnet->nr_active_client_conns++;
462 list_move_tail(&conn->cache_link, &rxnet->active_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100463}
David Howells001c1122016-06-30 10:45:22 +0100464
David Howells45025bc2016-08-24 07:30:52 +0100465/*
466 * Attempt to animate a connection for a new call.
467 *
468 * If it's not exclusive, the connection is in the endpoint tree, and we're in
469 * the conn's list of those waiting to grab a channel. There is, however, a
470 * limit on the number of live connections allowed at any one time, so we may
471 * have to wait for capacity to become available.
472 *
473 * Note that a connection on the waiting queue might *also* have active
474 * channels if it has been culled to make space and then re-requested by a new
475 * call.
476 */
David Howells2baec2c2017-05-24 17:02:32 +0100477static void rxrpc_animate_client_conn(struct rxrpc_net *rxnet,
478 struct rxrpc_connection *conn)
David Howells45025bc2016-08-24 07:30:52 +0100479{
480 unsigned int nr_conns;
481
482 _enter("%d,%d", conn->debug_id, conn->cache_state);
483
David Howells4e255722017-06-05 14:30:49 +0100484 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE ||
485 conn->cache_state == RXRPC_CONN_CLIENT_UPGRADE)
David Howells45025bc2016-08-24 07:30:52 +0100486 goto out;
487
David Howells2baec2c2017-05-24 17:02:32 +0100488 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100489
David Howells2baec2c2017-05-24 17:02:32 +0100490 nr_conns = rxnet->nr_client_conns;
David Howells363deea2016-09-17 10:49:14 +0100491 if (!test_and_set_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
492 trace_rxrpc_client(conn, -1, rxrpc_client_count);
David Howells2baec2c2017-05-24 17:02:32 +0100493 rxnet->nr_client_conns = nr_conns + 1;
David Howells363deea2016-09-17 10:49:14 +0100494 }
David Howells45025bc2016-08-24 07:30:52 +0100495
496 switch (conn->cache_state) {
497 case RXRPC_CONN_CLIENT_ACTIVE:
David Howells4e255722017-06-05 14:30:49 +0100498 case RXRPC_CONN_CLIENT_UPGRADE:
David Howells45025bc2016-08-24 07:30:52 +0100499 case RXRPC_CONN_CLIENT_WAITING:
500 break;
501
502 case RXRPC_CONN_CLIENT_INACTIVE:
503 case RXRPC_CONN_CLIENT_CULLED:
504 case RXRPC_CONN_CLIENT_IDLE:
505 if (nr_conns >= rxrpc_max_client_connections)
506 goto wait_for_capacity;
507 goto activate_conn;
508
509 default:
510 BUG();
511 }
512
513out_unlock:
David Howells2baec2c2017-05-24 17:02:32 +0100514 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100515out:
516 _leave(" [%d]", conn->cache_state);
517 return;
518
519activate_conn:
520 _debug("activate");
David Howells2baec2c2017-05-24 17:02:32 +0100521 rxrpc_activate_conn(rxnet, conn);
David Howells45025bc2016-08-24 07:30:52 +0100522 goto out_unlock;
523
524wait_for_capacity:
525 _debug("wait");
David Howells363deea2016-09-17 10:49:14 +0100526 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +0100527 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
David Howells2baec2c2017-05-24 17:02:32 +0100528 list_move_tail(&conn->cache_link, &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100529 goto out_unlock;
530}
531
532/*
533 * Deactivate a channel.
534 */
535static void rxrpc_deactivate_one_channel(struct rxrpc_connection *conn,
536 unsigned int channel)
537{
538 struct rxrpc_channel *chan = &conn->channels[channel];
539
540 rcu_assign_pointer(chan->call, NULL);
541 conn->active_chans &= ~(1 << channel);
542}
543
544/*
545 * Assign a channel to the call at the front of the queue and wake the call up.
546 * We don't increment the callNumber counter until this number has been exposed
547 * to the world.
548 */
549static void rxrpc_activate_one_channel(struct rxrpc_connection *conn,
550 unsigned int channel)
551{
552 struct rxrpc_channel *chan = &conn->channels[channel];
553 struct rxrpc_call *call = list_entry(conn->waiting_calls.next,
554 struct rxrpc_call, chan_wait_link);
555 u32 call_id = chan->call_counter + 1;
556
David Howells363deea2016-09-17 10:49:14 +0100557 trace_rxrpc_client(conn, channel, rxrpc_client_chan_activate);
558
David Howells3136ef42017-11-24 10:18:41 +0000559 /* Cancel the final ACK on the previous call if it hasn't been sent yet
560 * as the DATA packet will implicitly ACK it.
561 */
562 clear_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags);
563
David Howellsaf338a92016-09-04 13:10:10 +0100564 write_lock_bh(&call->state_lock);
David Howellsc038a582017-08-29 10:19:01 +0100565 if (!test_bit(RXRPC_CALL_TX_LASTQ, &call->flags))
566 call->state = RXRPC_CALL_CLIENT_SEND_REQUEST;
567 else
568 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
David Howellsaf338a92016-09-04 13:10:10 +0100569 write_unlock_bh(&call->state_lock);
570
David Howellse34d4232016-08-30 09:49:29 +0100571 rxrpc_see_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100572 list_del_init(&call->chan_wait_link);
573 conn->active_chans |= 1 << channel;
574 call->peer = rxrpc_get_peer(conn->params.peer);
575 call->cid = conn->proto.cid | channel;
576 call->call_id = call_id;
577
David Howells89ca6942017-04-06 10:12:00 +0100578 trace_rxrpc_connect_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100579 _net("CONNECT call %08x:%08x as call %d on conn %d",
580 call->cid, call->call_id, call->debug_id, conn->debug_id);
581
582 /* Paired with the read barrier in rxrpc_wait_for_channel(). This
583 * orders cid and epoch in the connection wrt to call_id without the
584 * need to take the channel_lock.
585 *
586 * We provisionally assign a callNumber at this point, but we don't
587 * confirm it until the call is about to be exposed.
588 *
589 * TODO: Pair with a barrier in the data_ready handler when that looks
590 * at the call ID through a connection channel.
591 */
592 smp_wmb();
593 chan->call_id = call_id;
David Howells4764c0d2018-07-23 17:18:37 +0100594 chan->call_debug_id = call->debug_id;
David Howells45025bc2016-08-24 07:30:52 +0100595 rcu_assign_pointer(chan->call, call);
596 wake_up(&call->waitq);
597}
598
599/*
David Howells2629c7f2016-09-29 22:37:15 +0100600 * Assign channels and callNumbers to waiting calls with channel_lock
601 * held by caller.
602 */
603static void rxrpc_activate_channels_locked(struct rxrpc_connection *conn)
604{
605 u8 avail, mask;
606
607 switch (conn->cache_state) {
608 case RXRPC_CONN_CLIENT_ACTIVE:
609 mask = RXRPC_ACTIVE_CHANS_MASK;
610 break;
David Howells4e255722017-06-05 14:30:49 +0100611 case RXRPC_CONN_CLIENT_UPGRADE:
612 mask = 0x01;
613 break;
David Howells2629c7f2016-09-29 22:37:15 +0100614 default:
615 return;
616 }
617
618 while (!list_empty(&conn->waiting_calls) &&
619 (avail = ~conn->active_chans,
620 avail &= mask,
621 avail != 0))
622 rxrpc_activate_one_channel(conn, __ffs(avail));
623}
624
625/*
David Howells45025bc2016-08-24 07:30:52 +0100626 * Assign channels and callNumbers to waiting calls.
627 */
628static void rxrpc_activate_channels(struct rxrpc_connection *conn)
629{
David Howells45025bc2016-08-24 07:30:52 +0100630 _enter("%d", conn->debug_id);
631
David Howells363deea2016-09-17 10:49:14 +0100632 trace_rxrpc_client(conn, -1, rxrpc_client_activate_chans);
633
David Howells2629c7f2016-09-29 22:37:15 +0100634 if (conn->active_chans == RXRPC_ACTIVE_CHANS_MASK)
David Howells45025bc2016-08-24 07:30:52 +0100635 return;
636
637 spin_lock(&conn->channel_lock);
David Howells2629c7f2016-09-29 22:37:15 +0100638 rxrpc_activate_channels_locked(conn);
David Howells45025bc2016-08-24 07:30:52 +0100639 spin_unlock(&conn->channel_lock);
640 _leave("");
641}
642
643/*
644 * Wait for a callNumber and a channel to be granted to a call.
645 */
646static int rxrpc_wait_for_channel(struct rxrpc_call *call, gfp_t gfp)
647{
648 int ret = 0;
649
650 _enter("%d", call->debug_id);
651
652 if (!call->call_id) {
653 DECLARE_WAITQUEUE(myself, current);
654
655 if (!gfpflags_allow_blocking(gfp)) {
656 ret = -EAGAIN;
657 goto out;
658 }
659
660 add_wait_queue_exclusive(&call->waitq, &myself);
661 for (;;) {
662 set_current_state(TASK_INTERRUPTIBLE);
663 if (call->call_id)
664 break;
665 if (signal_pending(current)) {
666 ret = -ERESTARTSYS;
667 break;
668 }
669 schedule();
670 }
671 remove_wait_queue(&call->waitq, &myself);
672 __set_current_state(TASK_RUNNING);
673 }
674
675 /* Paired with the write barrier in rxrpc_activate_one_channel(). */
676 smp_rmb();
677
678out:
679 _leave(" = %d", ret);
680 return ret;
681}
682
683/*
684 * find a connection for a call
685 * - called in process context with IRQs enabled
686 */
David Howells5e33a232018-10-05 14:05:34 +0100687int rxrpc_connect_call(struct rxrpc_sock *rx,
688 struct rxrpc_call *call,
David Howells45025bc2016-08-24 07:30:52 +0100689 struct rxrpc_conn_parameters *cp,
690 struct sockaddr_rxrpc *srx,
691 gfp_t gfp)
692{
David Howells2baec2c2017-05-24 17:02:32 +0100693 struct rxrpc_net *rxnet = cp->local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100694 int ret;
695
696 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
697
David Howells3d18cbb2017-11-24 10:18:42 +0000698 rxrpc_discard_expired_client_conns(&rxnet->client_conn_reaper);
David Howells2baec2c2017-05-24 17:02:32 +0100699 rxrpc_cull_active_client_conns(rxnet);
David Howells45025bc2016-08-24 07:30:52 +0100700
David Howells5e33a232018-10-05 14:05:34 +0100701 ret = rxrpc_get_client_conn(rx, call, cp, srx, gfp);
David Howells45025bc2016-08-24 07:30:52 +0100702 if (ret < 0)
David Howellsc038a582017-08-29 10:19:01 +0100703 goto out;
David Howells45025bc2016-08-24 07:30:52 +0100704
David Howells2baec2c2017-05-24 17:02:32 +0100705 rxrpc_animate_client_conn(rxnet, call->conn);
David Howells45025bc2016-08-24 07:30:52 +0100706 rxrpc_activate_channels(call->conn);
707
708 ret = rxrpc_wait_for_channel(call, gfp);
David Howellsc038a582017-08-29 10:19:01 +0100709 if (ret < 0) {
David Howells45025bc2016-08-24 07:30:52 +0100710 rxrpc_disconnect_client_call(call);
David Howellsc038a582017-08-29 10:19:01 +0100711 goto out;
712 }
David Howells45025bc2016-08-24 07:30:52 +0100713
David Howellsc038a582017-08-29 10:19:01 +0100714 spin_lock_bh(&call->conn->params.peer->lock);
David Howellsf3344302018-09-27 15:13:09 +0100715 hlist_add_head_rcu(&call->error_link,
716 &call->conn->params.peer->error_targets);
David Howellsc038a582017-08-29 10:19:01 +0100717 spin_unlock_bh(&call->conn->params.peer->lock);
718
719out:
David Howells45025bc2016-08-24 07:30:52 +0100720 _leave(" = %d", ret);
721 return ret;
722}
723
724/*
725 * Note that a connection is about to be exposed to the world. Once it is
726 * exposed, we maintain an extra ref on it that stops it from being summarily
727 * discarded before it's (a) had a chance to deal with retransmission and (b)
728 * had a chance at re-use (the per-connection security negotiation is
729 * expensive).
730 */
David Howells363deea2016-09-17 10:49:14 +0100731static void rxrpc_expose_client_conn(struct rxrpc_connection *conn,
732 unsigned int channel)
David Howells45025bc2016-08-24 07:30:52 +0100733{
David Howells363deea2016-09-17 10:49:14 +0100734 if (!test_and_set_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
735 trace_rxrpc_client(conn, channel, rxrpc_client_exposed);
David Howells45025bc2016-08-24 07:30:52 +0100736 rxrpc_get_connection(conn);
David Howells363deea2016-09-17 10:49:14 +0100737 }
David Howells45025bc2016-08-24 07:30:52 +0100738}
739
740/*
741 * Note that a call, and thus a connection, is about to be exposed to the
742 * world.
743 */
744void rxrpc_expose_client_call(struct rxrpc_call *call)
745{
David Howells363deea2016-09-17 10:49:14 +0100746 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
David Howells45025bc2016-08-24 07:30:52 +0100747 struct rxrpc_connection *conn = call->conn;
David Howells363deea2016-09-17 10:49:14 +0100748 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells45025bc2016-08-24 07:30:52 +0100749
750 if (!test_and_set_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
751 /* Mark the call ID as being used. If the callNumber counter
752 * exceeds ~2 billion, we kill the connection after its
753 * outstanding calls have finished so that the counter doesn't
754 * wrap.
755 */
756 chan->call_counter++;
757 if (chan->call_counter >= INT_MAX)
758 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
David Howells363deea2016-09-17 10:49:14 +0100759 rxrpc_expose_client_conn(conn, channel);
David Howells45025bc2016-08-24 07:30:52 +0100760 }
761}
762
763/*
David Howells3d18cbb2017-11-24 10:18:42 +0000764 * Set the reap timer.
765 */
766static void rxrpc_set_client_reap_timer(struct rxrpc_net *rxnet)
767{
768 unsigned long now = jiffies;
769 unsigned long reap_at = now + rxrpc_conn_idle_client_expiry;
770
771 if (rxnet->live)
772 timer_reduce(&rxnet->client_conn_reap_timer, reap_at);
773}
774
775/*
David Howells45025bc2016-08-24 07:30:52 +0100776 * Disconnect a client call.
777 */
778void rxrpc_disconnect_client_call(struct rxrpc_call *call)
779{
780 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
781 struct rxrpc_connection *conn = call->conn;
782 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells88f2a8252018-03-30 21:05:17 +0100783 struct rxrpc_net *rxnet = conn->params.local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100784
David Howells363deea2016-09-17 10:49:14 +0100785 trace_rxrpc_client(conn, channel, rxrpc_client_chan_disconnect);
David Howells45025bc2016-08-24 07:30:52 +0100786 call->conn = NULL;
787
788 spin_lock(&conn->channel_lock);
789
790 /* Calls that have never actually been assigned a channel can simply be
791 * discarded. If the conn didn't get used either, it will follow
792 * immediately unless someone else grabs it in the meantime.
793 */
794 if (!list_empty(&call->chan_wait_link)) {
795 _debug("call is waiting");
796 ASSERTCMP(call->call_id, ==, 0);
797 ASSERT(!test_bit(RXRPC_CALL_EXPOSED, &call->flags));
798 list_del_init(&call->chan_wait_link);
799
David Howells363deea2016-09-17 10:49:14 +0100800 trace_rxrpc_client(conn, channel, rxrpc_client_chan_unstarted);
801
David Howells45025bc2016-08-24 07:30:52 +0100802 /* We must deactivate or idle the connection if it's now
803 * waiting for nothing.
804 */
David Howells2baec2c2017-05-24 17:02:32 +0100805 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100806 if (conn->cache_state == RXRPC_CONN_CLIENT_WAITING &&
807 list_empty(&conn->waiting_calls) &&
808 !conn->active_chans)
809 goto idle_connection;
810 goto out;
811 }
812
813 ASSERTCMP(rcu_access_pointer(chan->call), ==, call);
David Howells45025bc2016-08-24 07:30:52 +0100814
815 /* If a client call was exposed to the world, we save the result for
816 * retransmission.
817 *
818 * We use a barrier here so that the call number and abort code can be
819 * read without needing to take a lock.
820 *
821 * TODO: Make the incoming packet handler check this and handle
822 * terminal retransmission without requiring access to the call.
823 */
824 if (test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
David Howellsf5c17aa2016-08-30 09:49:28 +0100825 _debug("exposed %u,%u", call->call_id, call->abort_code);
David Howells45025bc2016-08-24 07:30:52 +0100826 __rxrpc_disconnect_call(conn, call);
827 }
828
829 /* See if we can pass the channel directly to another call. */
830 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE &&
831 !list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +0100832 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100833 rxrpc_activate_one_channel(conn, channel);
834 goto out_2;
835 }
836
David Howells3136ef42017-11-24 10:18:41 +0000837 /* Schedule the final ACK to be transmitted in a short while so that it
838 * can be skipped if we find a follow-on call. The first DATA packet
839 * of the follow on call will implicitly ACK this call.
840 */
David Howells17e9e232018-02-06 16:44:12 +0000841 if (call->completion == RXRPC_CALL_SUCCEEDED &&
842 test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
David Howells3136ef42017-11-24 10:18:41 +0000843 unsigned long final_ack_at = jiffies + 2;
844
845 WRITE_ONCE(chan->final_ack_at, final_ack_at);
846 smp_wmb(); /* vs rxrpc_process_delayed_final_acks() */
847 set_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags);
848 rxrpc_reduce_conn_timer(conn, final_ack_at);
849 }
850
David Howells45025bc2016-08-24 07:30:52 +0100851 /* Things are more complex and we need the cache lock. We might be
852 * able to simply idle the conn or it might now be lurking on the wait
853 * list. It might even get moved back to the active list whilst we're
854 * waiting for the lock.
855 */
David Howells2baec2c2017-05-24 17:02:32 +0100856 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100857
858 switch (conn->cache_state) {
David Howells4e255722017-06-05 14:30:49 +0100859 case RXRPC_CONN_CLIENT_UPGRADE:
860 /* Deal with termination of a service upgrade probe. */
861 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
862 clear_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
863 trace_rxrpc_client(conn, channel, rxrpc_client_to_active);
864 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
865 rxrpc_activate_channels_locked(conn);
866 }
867 /* fall through */
David Howells45025bc2016-08-24 07:30:52 +0100868 case RXRPC_CONN_CLIENT_ACTIVE:
869 if (list_empty(&conn->waiting_calls)) {
870 rxrpc_deactivate_one_channel(conn, channel);
871 if (!conn->active_chans) {
David Howells2baec2c2017-05-24 17:02:32 +0100872 rxnet->nr_active_client_conns--;
David Howells45025bc2016-08-24 07:30:52 +0100873 goto idle_connection;
874 }
875 goto out;
876 }
877
David Howells363deea2016-09-17 10:49:14 +0100878 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100879 rxrpc_activate_one_channel(conn, channel);
880 goto out;
881
882 case RXRPC_CONN_CLIENT_CULLED:
883 rxrpc_deactivate_one_channel(conn, channel);
884 ASSERT(list_empty(&conn->waiting_calls));
885 if (!conn->active_chans)
886 goto idle_connection;
887 goto out;
888
889 case RXRPC_CONN_CLIENT_WAITING:
890 rxrpc_deactivate_one_channel(conn, channel);
891 goto out;
892
893 default:
894 BUG();
895 }
896
897out:
David Howells2baec2c2017-05-24 17:02:32 +0100898 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100899out_2:
900 spin_unlock(&conn->channel_lock);
901 rxrpc_put_connection(conn);
902 _leave("");
903 return;
904
905idle_connection:
906 /* As no channels remain active, the connection gets deactivated
907 * immediately or moved to the idle list for a short while.
908 */
909 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100910 trace_rxrpc_client(conn, channel, rxrpc_client_to_idle);
David Howells45025bc2016-08-24 07:30:52 +0100911 conn->idle_timestamp = jiffies;
912 conn->cache_state = RXRPC_CONN_CLIENT_IDLE;
David Howells2baec2c2017-05-24 17:02:32 +0100913 list_move_tail(&conn->cache_link, &rxnet->idle_client_conns);
914 if (rxnet->idle_client_conns.next == &conn->cache_link &&
915 !rxnet->kill_all_client_conns)
David Howells3d18cbb2017-11-24 10:18:42 +0000916 rxrpc_set_client_reap_timer(rxnet);
David Howells45025bc2016-08-24 07:30:52 +0100917 } else {
David Howells363deea2016-09-17 10:49:14 +0100918 trace_rxrpc_client(conn, channel, rxrpc_client_to_inactive);
David Howells45025bc2016-08-24 07:30:52 +0100919 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
920 list_del_init(&conn->cache_link);
921 }
922 goto out;
923}
924
925/*
926 * Clean up a dead client connection.
927 */
928static struct rxrpc_connection *
929rxrpc_put_one_client_conn(struct rxrpc_connection *conn)
930{
David Howells66d58af2016-09-17 10:49:12 +0100931 struct rxrpc_connection *next = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100932 struct rxrpc_local *local = conn->params.local;
David Howells2baec2c2017-05-24 17:02:32 +0100933 struct rxrpc_net *rxnet = local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100934 unsigned int nr_conns;
935
David Howells363deea2016-09-17 10:49:14 +0100936 trace_rxrpc_client(conn, -1, rxrpc_client_cleanup);
937
David Howells45025bc2016-08-24 07:30:52 +0100938 if (test_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags)) {
939 spin_lock(&local->client_conns_lock);
940 if (test_and_clear_bit(RXRPC_CONN_IN_CLIENT_CONNS,
941 &conn->flags))
942 rb_erase(&conn->client_node, &local->client_conns);
943 spin_unlock(&local->client_conns_lock);
944 }
David Howells001c1122016-06-30 10:45:22 +0100945
946 rxrpc_put_client_connection_id(conn);
David Howells45025bc2016-08-24 07:30:52 +0100947
948 ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_INACTIVE);
949
David Howells66d58af2016-09-17 10:49:12 +0100950 if (test_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100951 trace_rxrpc_client(conn, -1, rxrpc_client_uncount);
David Howells2baec2c2017-05-24 17:02:32 +0100952 spin_lock(&rxnet->client_conn_cache_lock);
953 nr_conns = --rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100954
David Howells66d58af2016-09-17 10:49:12 +0100955 if (nr_conns < rxrpc_max_client_connections &&
David Howells2baec2c2017-05-24 17:02:32 +0100956 !list_empty(&rxnet->waiting_client_conns)) {
957 next = list_entry(rxnet->waiting_client_conns.next,
David Howells66d58af2016-09-17 10:49:12 +0100958 struct rxrpc_connection, cache_link);
959 rxrpc_get_connection(next);
David Howells2baec2c2017-05-24 17:02:32 +0100960 rxrpc_activate_conn(rxnet, next);
David Howells66d58af2016-09-17 10:49:12 +0100961 }
David Howells45025bc2016-08-24 07:30:52 +0100962
David Howells2baec2c2017-05-24 17:02:32 +0100963 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100964 }
965
David Howells45025bc2016-08-24 07:30:52 +0100966 rxrpc_kill_connection(conn);
David Howells45025bc2016-08-24 07:30:52 +0100967 if (next)
968 rxrpc_activate_channels(next);
969
970 /* We need to get rid of the temporary ref we took upon next, but we
971 * can't call rxrpc_put_connection() recursively.
972 */
973 return next;
974}
975
976/*
977 * Clean up a dead client connections.
978 */
979void rxrpc_put_client_conn(struct rxrpc_connection *conn)
980{
David Howells363deea2016-09-17 10:49:14 +0100981 const void *here = __builtin_return_address(0);
982 int n;
David Howells45025bc2016-08-24 07:30:52 +0100983
984 do {
David Howells363deea2016-09-17 10:49:14 +0100985 n = atomic_dec_return(&conn->usage);
986 trace_rxrpc_conn(conn, rxrpc_conn_put_client, n, here);
987 if (n > 0)
988 return;
989 ASSERTCMP(n, >=, 0);
David Howells45025bc2016-08-24 07:30:52 +0100990
David Howells363deea2016-09-17 10:49:14 +0100991 conn = rxrpc_put_one_client_conn(conn);
992 } while (conn);
David Howells45025bc2016-08-24 07:30:52 +0100993}
994
995/*
996 * Kill the longest-active client connections to make room for new ones.
997 */
David Howells2baec2c2017-05-24 17:02:32 +0100998static void rxrpc_cull_active_client_conns(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +0100999{
1000 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +01001001 unsigned int nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001002 unsigned int nr_active, limit;
1003
1004 _enter("");
1005
1006 ASSERTCMP(nr_conns, >=, 0);
1007 if (nr_conns < rxrpc_max_client_connections) {
1008 _leave(" [ok]");
1009 return;
1010 }
1011 limit = rxrpc_reap_client_connections;
1012
David Howells2baec2c2017-05-24 17:02:32 +01001013 spin_lock(&rxnet->client_conn_cache_lock);
1014 nr_active = rxnet->nr_active_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001015
1016 while (nr_active > limit) {
David Howells2baec2c2017-05-24 17:02:32 +01001017 ASSERT(!list_empty(&rxnet->active_client_conns));
1018 conn = list_entry(rxnet->active_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +01001019 struct rxrpc_connection, cache_link);
David Howells4e255722017-06-05 14:30:49 +01001020 ASSERTIFCMP(conn->cache_state != RXRPC_CONN_CLIENT_ACTIVE,
1021 conn->cache_state, ==, RXRPC_CONN_CLIENT_UPGRADE);
David Howells45025bc2016-08-24 07:30:52 +01001022
1023 if (list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +01001024 trace_rxrpc_client(conn, -1, rxrpc_client_to_culled);
David Howells45025bc2016-08-24 07:30:52 +01001025 conn->cache_state = RXRPC_CONN_CLIENT_CULLED;
1026 list_del_init(&conn->cache_link);
1027 } else {
David Howells363deea2016-09-17 10:49:14 +01001028 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +01001029 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
1030 list_move_tail(&conn->cache_link,
David Howells2baec2c2017-05-24 17:02:32 +01001031 &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +01001032 }
1033
1034 nr_active--;
1035 }
1036
David Howells2baec2c2017-05-24 17:02:32 +01001037 rxnet->nr_active_client_conns = nr_active;
1038 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001039 ASSERTCMP(nr_active, >=, 0);
1040 _leave(" [culled]");
1041}
1042
1043/*
1044 * Discard expired client connections from the idle list. Each conn in the
1045 * idle list has been exposed and holds an extra ref because of that.
1046 *
1047 * This may be called from conn setup or from a work item so cannot be
1048 * considered non-reentrant.
1049 */
David Howells2baec2c2017-05-24 17:02:32 +01001050void rxrpc_discard_expired_client_conns(struct work_struct *work)
David Howells45025bc2016-08-24 07:30:52 +01001051{
1052 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +01001053 struct rxrpc_net *rxnet =
David Howells3d18cbb2017-11-24 10:18:42 +00001054 container_of(work, struct rxrpc_net, client_conn_reaper);
David Howells45025bc2016-08-24 07:30:52 +01001055 unsigned long expiry, conn_expires_at, now;
1056 unsigned int nr_conns;
David Howells45025bc2016-08-24 07:30:52 +01001057
David Howells2baec2c2017-05-24 17:02:32 +01001058 _enter("");
David Howells45025bc2016-08-24 07:30:52 +01001059
David Howells2baec2c2017-05-24 17:02:32 +01001060 if (list_empty(&rxnet->idle_client_conns)) {
David Howells45025bc2016-08-24 07:30:52 +01001061 _leave(" [empty]");
1062 return;
1063 }
1064
1065 /* Don't double up on the discarding */
David Howells2baec2c2017-05-24 17:02:32 +01001066 if (!spin_trylock(&rxnet->client_conn_discard_lock)) {
David Howells45025bc2016-08-24 07:30:52 +01001067 _leave(" [already]");
1068 return;
1069 }
1070
1071 /* We keep an estimate of what the number of conns ought to be after
1072 * we've discarded some so that we don't overdo the discarding.
1073 */
David Howells2baec2c2017-05-24 17:02:32 +01001074 nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001075
1076next:
David Howells2baec2c2017-05-24 17:02:32 +01001077 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001078
David Howells2baec2c2017-05-24 17:02:32 +01001079 if (list_empty(&rxnet->idle_client_conns))
David Howells45025bc2016-08-24 07:30:52 +01001080 goto out;
1081
David Howells2baec2c2017-05-24 17:02:32 +01001082 conn = list_entry(rxnet->idle_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +01001083 struct rxrpc_connection, cache_link);
1084 ASSERT(test_bit(RXRPC_CONN_EXPOSED, &conn->flags));
1085
David Howells2baec2c2017-05-24 17:02:32 +01001086 if (!rxnet->kill_all_client_conns) {
David Howells45025bc2016-08-24 07:30:52 +01001087 /* If the number of connections is over the reap limit, we
1088 * expedite discard by reducing the expiry timeout. We must,
1089 * however, have at least a short grace period to be able to do
1090 * final-ACK or ABORT retransmission.
1091 */
1092 expiry = rxrpc_conn_idle_client_expiry;
1093 if (nr_conns > rxrpc_reap_client_connections)
1094 expiry = rxrpc_conn_idle_client_fast_expiry;
David Howellsf859ab62017-11-24 10:18:42 +00001095 if (conn->params.local->service_closed)
1096 expiry = rxrpc_closed_conn_expiry * HZ;
David Howells45025bc2016-08-24 07:30:52 +01001097
1098 conn_expires_at = conn->idle_timestamp + expiry;
1099
1100 now = READ_ONCE(jiffies);
1101 if (time_after(conn_expires_at, now))
1102 goto not_yet_expired;
1103 }
1104
David Howells363deea2016-09-17 10:49:14 +01001105 trace_rxrpc_client(conn, -1, rxrpc_client_discard);
David Howells45025bc2016-08-24 07:30:52 +01001106 if (!test_and_clear_bit(RXRPC_CONN_EXPOSED, &conn->flags))
1107 BUG();
1108 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
1109 list_del_init(&conn->cache_link);
1110
David Howells2baec2c2017-05-24 17:02:32 +01001111 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001112
1113 /* When we cleared the EXPOSED flag, we took on responsibility for the
1114 * reference that that had on the usage count. We deal with that here.
1115 * If someone re-sets the flag and re-gets the ref, that's fine.
1116 */
1117 rxrpc_put_connection(conn);
David Howells45025bc2016-08-24 07:30:52 +01001118 nr_conns--;
1119 goto next;
1120
1121not_yet_expired:
1122 /* The connection at the front of the queue hasn't yet expired, so
1123 * schedule the work item for that point if we discarded something.
1124 *
1125 * We don't worry if the work item is already scheduled - it can look
1126 * after rescheduling itself at a later time. We could cancel it, but
1127 * then things get messier.
1128 */
1129 _debug("not yet");
David Howells2baec2c2017-05-24 17:02:32 +01001130 if (!rxnet->kill_all_client_conns)
David Howells3d18cbb2017-11-24 10:18:42 +00001131 timer_reduce(&rxnet->client_conn_reap_timer,
1132 conn_expires_at);
David Howells45025bc2016-08-24 07:30:52 +01001133
1134out:
David Howells2baec2c2017-05-24 17:02:32 +01001135 spin_unlock(&rxnet->client_conn_cache_lock);
1136 spin_unlock(&rxnet->client_conn_discard_lock);
David Howells45025bc2016-08-24 07:30:52 +01001137 _leave("");
1138}
1139
1140/*
1141 * Preemptively destroy all the client connection records rather than waiting
1142 * for them to time out
1143 */
David Howells2baec2c2017-05-24 17:02:32 +01001144void rxrpc_destroy_all_client_connections(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +01001145{
1146 _enter("");
1147
David Howells2baec2c2017-05-24 17:02:32 +01001148 spin_lock(&rxnet->client_conn_cache_lock);
1149 rxnet->kill_all_client_conns = true;
1150 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001151
David Howells3d18cbb2017-11-24 10:18:42 +00001152 del_timer_sync(&rxnet->client_conn_reap_timer);
David Howells45025bc2016-08-24 07:30:52 +01001153
David Howells3d18cbb2017-11-24 10:18:42 +00001154 if (!rxrpc_queue_work(&rxnet->client_conn_reaper))
David Howells45025bc2016-08-24 07:30:52 +01001155 _debug("destroy: queue failed");
1156
1157 _leave("");
David Howells001c1122016-06-30 10:45:22 +01001158}