blob: 041da40dbf936d20f37b61cc12fc6803a4125524 [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 Howells2baec2c2017-05-24 17:02:32 +0100210 write_lock(&rxnet->conn_lock);
211 list_add_tail(&conn->proc_link, &rxnet->conn_proc_list);
212 write_unlock(&rxnet->conn_lock);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100213
214 /* We steal the caller's peer ref. */
215 cp->peer = NULL;
216 rxrpc_get_local(conn->params.local);
217 key_get(conn->params.key);
218
David Howells363deea2016-09-17 10:49:14 +0100219 trace_rxrpc_conn(conn, rxrpc_conn_new_client, atomic_read(&conn->usage),
220 __builtin_return_address(0));
221 trace_rxrpc_client(conn, -1, rxrpc_client_alloc);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100222 _leave(" = %p", conn);
223 return conn;
224
225error_2:
226 conn->security->clear(conn);
227error_1:
228 rxrpc_put_client_connection_id(conn);
229error_0:
230 kfree(conn);
231 _leave(" = %d", ret);
232 return ERR_PTR(ret);
233}
234
235/*
David Howells45025bc2016-08-24 07:30:52 +0100236 * Determine if a connection may be reused.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100237 */
David Howells45025bc2016-08-24 07:30:52 +0100238static bool rxrpc_may_reuse_conn(struct rxrpc_connection *conn)
239{
David Howells2baec2c2017-05-24 17:02:32 +0100240 struct rxrpc_net *rxnet = conn->params.local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100241 int id_cursor, id, distance, limit;
242
243 if (test_bit(RXRPC_CONN_DONT_REUSE, &conn->flags))
244 goto dont_reuse;
245
David Howells2baec2c2017-05-24 17:02:32 +0100246 if (conn->proto.epoch != rxnet->epoch)
David Howells45025bc2016-08-24 07:30:52 +0100247 goto mark_dont_reuse;
248
249 /* The IDR tree gets very expensive on memory if the connection IDs are
250 * widely scattered throughout the number space, so we shall want to
251 * kill off connections that, say, have an ID more than about four
252 * times the maximum number of client conns away from the current
253 * allocation point to try and keep the IDs concentrated.
254 */
Matthew Wilcox44430612016-12-14 15:09:19 -0800255 id_cursor = idr_get_cursor(&rxrpc_client_conn_ids);
David Howells45025bc2016-08-24 07:30:52 +0100256 id = conn->proto.cid >> RXRPC_CIDSHIFT;
257 distance = id - id_cursor;
258 if (distance < 0)
259 distance = -distance;
Matthew Wilcox44430612016-12-14 15:09:19 -0800260 limit = max(rxrpc_max_client_connections * 4, 1024U);
David Howells45025bc2016-08-24 07:30:52 +0100261 if (distance > limit)
262 goto mark_dont_reuse;
263
264 return true;
265
266mark_dont_reuse:
267 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
268dont_reuse:
269 return false;
270}
271
272/*
273 * Create or find a client connection to use for a call.
274 *
275 * If we return with a connection, the call will be on its waiting list. It's
276 * left to the caller to assign a channel and wake up the call.
277 */
278static int rxrpc_get_client_conn(struct rxrpc_call *call,
279 struct rxrpc_conn_parameters *cp,
280 struct sockaddr_rxrpc *srx,
281 gfp_t gfp)
David Howellsc6d2b8d2016-04-04 14:00:40 +0100282{
283 struct rxrpc_connection *conn, *candidate = NULL;
284 struct rxrpc_local *local = cp->local;
285 struct rb_node *p, **pp, *parent;
286 long diff;
David Howells45025bc2016-08-24 07:30:52 +0100287 int ret = -ENOMEM;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100288
289 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
290
291 cp->peer = rxrpc_lookup_peer(cp->local, srx, gfp);
292 if (!cp->peer)
David Howells45025bc2016-08-24 07:30:52 +0100293 goto error;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100294
David Howellsf7aec122017-06-14 17:56:50 +0100295 call->cong_cwnd = cp->peer->cong_cwnd;
296 if (call->cong_cwnd >= call->cong_ssthresh)
297 call->cong_mode = RXRPC_CALL_CONGEST_AVOIDANCE;
298 else
299 call->cong_mode = RXRPC_CALL_SLOW_START;
300
David Howells45025bc2016-08-24 07:30:52 +0100301 /* If the connection is not meant to be exclusive, search the available
302 * connections to see if the connection we want to use already exists.
303 */
David Howellsc6d2b8d2016-04-04 14:00:40 +0100304 if (!cp->exclusive) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100305 _debug("search 1");
306 spin_lock(&local->client_conns_lock);
307 p = local->client_conns.rb_node;
308 while (p) {
309 conn = rb_entry(p, struct rxrpc_connection, client_node);
310
311#define cmp(X) ((long)conn->params.X - (long)cp->X)
312 diff = (cmp(peer) ?:
313 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100314 cmp(security_level) ?:
315 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100316#undef cmp
317 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100318 p = p->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100319 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100320 p = p->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100321 } else {
322 if (rxrpc_may_reuse_conn(conn) &&
323 rxrpc_get_connection_maybe(conn))
324 goto found_extant_conn;
325 /* The connection needs replacing. It's better
326 * to effect that when we have something to
327 * replace it with so that we don't have to
328 * rebalance the tree twice.
329 */
330 break;
331 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100332 }
333 spin_unlock(&local->client_conns_lock);
334 }
335
David Howells45025bc2016-08-24 07:30:52 +0100336 /* There wasn't a connection yet or we need an exclusive connection.
337 * We need to create a candidate and then potentially redo the search
338 * in case we're racing with another thread also trying to connect on a
339 * shareable connection.
340 */
341 _debug("new conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100342 candidate = rxrpc_alloc_client_connection(cp, gfp);
David Howells45025bc2016-08-24 07:30:52 +0100343 if (IS_ERR(candidate)) {
344 ret = PTR_ERR(candidate);
345 goto error_peer;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100346 }
347
David Howells45025bc2016-08-24 07:30:52 +0100348 /* Add the call to the new connection's waiting list in case we're
349 * going to have to wait for the connection to come live. It's our
350 * connection, so we want first dibs on the channel slots. We would
351 * normally have to take channel_lock but we do this before anyone else
352 * can see the connection.
353 */
354 list_add_tail(&call->chan_wait_link, &candidate->waiting_calls);
355
David Howellsc6d2b8d2016-04-04 14:00:40 +0100356 if (cp->exclusive) {
David Howells45025bc2016-08-24 07:30:52 +0100357 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100358 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100359 call->service_id = candidate->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100360 _leave(" = 0 [exclusive %d]", candidate->debug_id);
361 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100362 }
363
David Howells45025bc2016-08-24 07:30:52 +0100364 /* Publish the new connection for userspace to find. We need to redo
365 * the search before doing this lest we race with someone else adding a
366 * conflicting instance.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100367 */
368 _debug("search 2");
369 spin_lock(&local->client_conns_lock);
370
371 pp = &local->client_conns.rb_node;
372 parent = NULL;
373 while (*pp) {
374 parent = *pp;
375 conn = rb_entry(parent, struct rxrpc_connection, client_node);
376
David Howells45025bc2016-08-24 07:30:52 +0100377#define cmp(X) ((long)conn->params.X - (long)candidate->params.X)
David Howellsc6d2b8d2016-04-04 14:00:40 +0100378 diff = (cmp(peer) ?:
379 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100380 cmp(security_level) ?:
381 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100382#undef cmp
383 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100384 pp = &(*pp)->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100385 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100386 pp = &(*pp)->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100387 } else {
388 if (rxrpc_may_reuse_conn(conn) &&
389 rxrpc_get_connection_maybe(conn))
390 goto found_extant_conn;
391 /* The old connection is from an outdated epoch. */
392 _debug("replace conn");
393 clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags);
394 rb_replace_node(&conn->client_node,
395 &candidate->client_node,
396 &local->client_conns);
David Howells363deea2016-09-17 10:49:14 +0100397 trace_rxrpc_client(conn, -1, rxrpc_client_replace);
David Howells45025bc2016-08-24 07:30:52 +0100398 goto candidate_published;
399 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100400 }
401
David Howellsc6d2b8d2016-04-04 14:00:40 +0100402 _debug("new conn");
David Howells001c1122016-06-30 10:45:22 +0100403 rb_link_node(&candidate->client_node, parent, pp);
404 rb_insert_color(&candidate->client_node, &local->client_conns);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100405
David Howells45025bc2016-08-24 07:30:52 +0100406candidate_published:
407 set_bit(RXRPC_CONN_IN_CLIENT_CONNS, &candidate->flags);
408 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100409 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100410 call->service_id = candidate->service_id;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100411 spin_unlock(&local->client_conns_lock);
David Howells45025bc2016-08-24 07:30:52 +0100412 _leave(" = 0 [new %d]", candidate->debug_id);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100413 return 0;
414
David Howells45025bc2016-08-24 07:30:52 +0100415 /* We come here if we found a suitable connection already in existence.
416 * Discard any candidate we may have allocated, and try to get a
417 * channel on this one.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100418 */
419found_extant_conn:
420 _debug("found conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100421 spin_unlock(&local->client_conns_lock);
422
David Howells363deea2016-09-17 10:49:14 +0100423 if (candidate) {
424 trace_rxrpc_client(candidate, -1, rxrpc_client_duplicate);
425 rxrpc_put_connection(candidate);
426 candidate = NULL;
427 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100428
David Howellsc6d2b8d2016-04-04 14:00:40 +0100429 spin_lock(&conn->channel_lock);
David Howells45025bc2016-08-24 07:30:52 +0100430 call->conn = conn;
David Howells278ac0c2016-09-07 15:19:25 +0100431 call->security_ix = conn->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100432 call->service_id = conn->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100433 list_add(&call->chan_wait_link, &conn->waiting_calls);
434 spin_unlock(&conn->channel_lock);
435 _leave(" = 0 [extant %d]", conn->debug_id);
436 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100437
David Howells45025bc2016-08-24 07:30:52 +0100438error_peer:
David Howellsc6d2b8d2016-04-04 14:00:40 +0100439 rxrpc_put_peer(cp->peer);
440 cp->peer = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100441error:
442 _leave(" = %d", ret);
443 return ret;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100444}
David Howells001c1122016-06-30 10:45:22 +0100445
446/*
David Howells45025bc2016-08-24 07:30:52 +0100447 * Activate a connection.
David Howells001c1122016-06-30 10:45:22 +0100448 */
David Howells2baec2c2017-05-24 17:02:32 +0100449static void rxrpc_activate_conn(struct rxrpc_net *rxnet,
450 struct rxrpc_connection *conn)
David Howells001c1122016-06-30 10:45:22 +0100451{
David Howells4e255722017-06-05 14:30:49 +0100452 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags)) {
453 trace_rxrpc_client(conn, -1, rxrpc_client_to_upgrade);
454 conn->cache_state = RXRPC_CONN_CLIENT_UPGRADE;
455 } else {
456 trace_rxrpc_client(conn, -1, rxrpc_client_to_active);
457 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
458 }
David Howells2baec2c2017-05-24 17:02:32 +0100459 rxnet->nr_active_client_conns++;
460 list_move_tail(&conn->cache_link, &rxnet->active_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100461}
David Howells001c1122016-06-30 10:45:22 +0100462
David Howells45025bc2016-08-24 07:30:52 +0100463/*
464 * Attempt to animate a connection for a new call.
465 *
466 * If it's not exclusive, the connection is in the endpoint tree, and we're in
467 * the conn's list of those waiting to grab a channel. There is, however, a
468 * limit on the number of live connections allowed at any one time, so we may
469 * have to wait for capacity to become available.
470 *
471 * Note that a connection on the waiting queue might *also* have active
472 * channels if it has been culled to make space and then re-requested by a new
473 * call.
474 */
David Howells2baec2c2017-05-24 17:02:32 +0100475static void rxrpc_animate_client_conn(struct rxrpc_net *rxnet,
476 struct rxrpc_connection *conn)
David Howells45025bc2016-08-24 07:30:52 +0100477{
478 unsigned int nr_conns;
479
480 _enter("%d,%d", conn->debug_id, conn->cache_state);
481
David Howells4e255722017-06-05 14:30:49 +0100482 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE ||
483 conn->cache_state == RXRPC_CONN_CLIENT_UPGRADE)
David Howells45025bc2016-08-24 07:30:52 +0100484 goto out;
485
David Howells2baec2c2017-05-24 17:02:32 +0100486 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100487
David Howells2baec2c2017-05-24 17:02:32 +0100488 nr_conns = rxnet->nr_client_conns;
David Howells363deea2016-09-17 10:49:14 +0100489 if (!test_and_set_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
490 trace_rxrpc_client(conn, -1, rxrpc_client_count);
David Howells2baec2c2017-05-24 17:02:32 +0100491 rxnet->nr_client_conns = nr_conns + 1;
David Howells363deea2016-09-17 10:49:14 +0100492 }
David Howells45025bc2016-08-24 07:30:52 +0100493
494 switch (conn->cache_state) {
495 case RXRPC_CONN_CLIENT_ACTIVE:
David Howells4e255722017-06-05 14:30:49 +0100496 case RXRPC_CONN_CLIENT_UPGRADE:
David Howells45025bc2016-08-24 07:30:52 +0100497 case RXRPC_CONN_CLIENT_WAITING:
498 break;
499
500 case RXRPC_CONN_CLIENT_INACTIVE:
501 case RXRPC_CONN_CLIENT_CULLED:
502 case RXRPC_CONN_CLIENT_IDLE:
503 if (nr_conns >= rxrpc_max_client_connections)
504 goto wait_for_capacity;
505 goto activate_conn;
506
507 default:
508 BUG();
509 }
510
511out_unlock:
David Howells2baec2c2017-05-24 17:02:32 +0100512 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100513out:
514 _leave(" [%d]", conn->cache_state);
515 return;
516
517activate_conn:
518 _debug("activate");
David Howells2baec2c2017-05-24 17:02:32 +0100519 rxrpc_activate_conn(rxnet, conn);
David Howells45025bc2016-08-24 07:30:52 +0100520 goto out_unlock;
521
522wait_for_capacity:
523 _debug("wait");
David Howells363deea2016-09-17 10:49:14 +0100524 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +0100525 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
David Howells2baec2c2017-05-24 17:02:32 +0100526 list_move_tail(&conn->cache_link, &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100527 goto out_unlock;
528}
529
530/*
531 * Deactivate a channel.
532 */
533static void rxrpc_deactivate_one_channel(struct rxrpc_connection *conn,
534 unsigned int channel)
535{
536 struct rxrpc_channel *chan = &conn->channels[channel];
537
538 rcu_assign_pointer(chan->call, NULL);
539 conn->active_chans &= ~(1 << channel);
540}
541
542/*
543 * Assign a channel to the call at the front of the queue and wake the call up.
544 * We don't increment the callNumber counter until this number has been exposed
545 * to the world.
546 */
547static void rxrpc_activate_one_channel(struct rxrpc_connection *conn,
548 unsigned int channel)
549{
550 struct rxrpc_channel *chan = &conn->channels[channel];
551 struct rxrpc_call *call = list_entry(conn->waiting_calls.next,
552 struct rxrpc_call, chan_wait_link);
553 u32 call_id = chan->call_counter + 1;
554
David Howells363deea2016-09-17 10:49:14 +0100555 trace_rxrpc_client(conn, channel, rxrpc_client_chan_activate);
556
David Howells3136ef42017-11-24 10:18:41 +0000557 /* Cancel the final ACK on the previous call if it hasn't been sent yet
558 * as the DATA packet will implicitly ACK it.
559 */
560 clear_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags);
561
David Howellsaf338a92016-09-04 13:10:10 +0100562 write_lock_bh(&call->state_lock);
David Howellsc038a582017-08-29 10:19:01 +0100563 if (!test_bit(RXRPC_CALL_TX_LASTQ, &call->flags))
564 call->state = RXRPC_CALL_CLIENT_SEND_REQUEST;
565 else
566 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
David Howellsaf338a92016-09-04 13:10:10 +0100567 write_unlock_bh(&call->state_lock);
568
David Howellse34d4232016-08-30 09:49:29 +0100569 rxrpc_see_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100570 list_del_init(&call->chan_wait_link);
571 conn->active_chans |= 1 << channel;
572 call->peer = rxrpc_get_peer(conn->params.peer);
573 call->cid = conn->proto.cid | channel;
574 call->call_id = call_id;
575
David Howells89ca6942017-04-06 10:12:00 +0100576 trace_rxrpc_connect_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100577 _net("CONNECT call %08x:%08x as call %d on conn %d",
578 call->cid, call->call_id, call->debug_id, conn->debug_id);
579
580 /* Paired with the read barrier in rxrpc_wait_for_channel(). This
581 * orders cid and epoch in the connection wrt to call_id without the
582 * need to take the channel_lock.
583 *
584 * We provisionally assign a callNumber at this point, but we don't
585 * confirm it until the call is about to be exposed.
586 *
587 * TODO: Pair with a barrier in the data_ready handler when that looks
588 * at the call ID through a connection channel.
589 */
590 smp_wmb();
591 chan->call_id = call_id;
592 rcu_assign_pointer(chan->call, call);
593 wake_up(&call->waitq);
594}
595
596/*
David Howells2629c7f2016-09-29 22:37:15 +0100597 * Assign channels and callNumbers to waiting calls with channel_lock
598 * held by caller.
599 */
600static void rxrpc_activate_channels_locked(struct rxrpc_connection *conn)
601{
602 u8 avail, mask;
603
604 switch (conn->cache_state) {
605 case RXRPC_CONN_CLIENT_ACTIVE:
606 mask = RXRPC_ACTIVE_CHANS_MASK;
607 break;
David Howells4e255722017-06-05 14:30:49 +0100608 case RXRPC_CONN_CLIENT_UPGRADE:
609 mask = 0x01;
610 break;
David Howells2629c7f2016-09-29 22:37:15 +0100611 default:
612 return;
613 }
614
615 while (!list_empty(&conn->waiting_calls) &&
616 (avail = ~conn->active_chans,
617 avail &= mask,
618 avail != 0))
619 rxrpc_activate_one_channel(conn, __ffs(avail));
620}
621
622/*
David Howells45025bc2016-08-24 07:30:52 +0100623 * Assign channels and callNumbers to waiting calls.
624 */
625static void rxrpc_activate_channels(struct rxrpc_connection *conn)
626{
David Howells45025bc2016-08-24 07:30:52 +0100627 _enter("%d", conn->debug_id);
628
David Howells363deea2016-09-17 10:49:14 +0100629 trace_rxrpc_client(conn, -1, rxrpc_client_activate_chans);
630
David Howells2629c7f2016-09-29 22:37:15 +0100631 if (conn->active_chans == RXRPC_ACTIVE_CHANS_MASK)
David Howells45025bc2016-08-24 07:30:52 +0100632 return;
633
634 spin_lock(&conn->channel_lock);
David Howells2629c7f2016-09-29 22:37:15 +0100635 rxrpc_activate_channels_locked(conn);
David Howells45025bc2016-08-24 07:30:52 +0100636 spin_unlock(&conn->channel_lock);
637 _leave("");
638}
639
640/*
641 * Wait for a callNumber and a channel to be granted to a call.
642 */
643static int rxrpc_wait_for_channel(struct rxrpc_call *call, gfp_t gfp)
644{
645 int ret = 0;
646
647 _enter("%d", call->debug_id);
648
649 if (!call->call_id) {
650 DECLARE_WAITQUEUE(myself, current);
651
652 if (!gfpflags_allow_blocking(gfp)) {
653 ret = -EAGAIN;
654 goto out;
655 }
656
657 add_wait_queue_exclusive(&call->waitq, &myself);
658 for (;;) {
659 set_current_state(TASK_INTERRUPTIBLE);
660 if (call->call_id)
661 break;
662 if (signal_pending(current)) {
663 ret = -ERESTARTSYS;
664 break;
665 }
666 schedule();
667 }
668 remove_wait_queue(&call->waitq, &myself);
669 __set_current_state(TASK_RUNNING);
670 }
671
672 /* Paired with the write barrier in rxrpc_activate_one_channel(). */
673 smp_rmb();
674
675out:
676 _leave(" = %d", ret);
677 return ret;
678}
679
680/*
681 * find a connection for a call
682 * - called in process context with IRQs enabled
683 */
684int rxrpc_connect_call(struct rxrpc_call *call,
685 struct rxrpc_conn_parameters *cp,
686 struct sockaddr_rxrpc *srx,
687 gfp_t gfp)
688{
David Howells2baec2c2017-05-24 17:02:32 +0100689 struct rxrpc_net *rxnet = cp->local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100690 int ret;
691
692 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
693
David Howells3d18cbb2017-11-24 10:18:42 +0000694 rxrpc_discard_expired_client_conns(&rxnet->client_conn_reaper);
David Howells2baec2c2017-05-24 17:02:32 +0100695 rxrpc_cull_active_client_conns(rxnet);
David Howells45025bc2016-08-24 07:30:52 +0100696
697 ret = rxrpc_get_client_conn(call, cp, srx, gfp);
698 if (ret < 0)
David Howellsc038a582017-08-29 10:19:01 +0100699 goto out;
David Howells45025bc2016-08-24 07:30:52 +0100700
David Howells2baec2c2017-05-24 17:02:32 +0100701 rxrpc_animate_client_conn(rxnet, call->conn);
David Howells45025bc2016-08-24 07:30:52 +0100702 rxrpc_activate_channels(call->conn);
703
704 ret = rxrpc_wait_for_channel(call, gfp);
David Howellsc038a582017-08-29 10:19:01 +0100705 if (ret < 0) {
David Howells45025bc2016-08-24 07:30:52 +0100706 rxrpc_disconnect_client_call(call);
David Howellsc038a582017-08-29 10:19:01 +0100707 goto out;
708 }
David Howells45025bc2016-08-24 07:30:52 +0100709
David Howellsc038a582017-08-29 10:19:01 +0100710 spin_lock_bh(&call->conn->params.peer->lock);
711 hlist_add_head(&call->error_link,
712 &call->conn->params.peer->error_targets);
713 spin_unlock_bh(&call->conn->params.peer->lock);
714
715out:
David Howells45025bc2016-08-24 07:30:52 +0100716 _leave(" = %d", ret);
717 return ret;
718}
719
720/*
721 * Note that a connection is about to be exposed to the world. Once it is
722 * exposed, we maintain an extra ref on it that stops it from being summarily
723 * discarded before it's (a) had a chance to deal with retransmission and (b)
724 * had a chance at re-use (the per-connection security negotiation is
725 * expensive).
726 */
David Howells363deea2016-09-17 10:49:14 +0100727static void rxrpc_expose_client_conn(struct rxrpc_connection *conn,
728 unsigned int channel)
David Howells45025bc2016-08-24 07:30:52 +0100729{
David Howells363deea2016-09-17 10:49:14 +0100730 if (!test_and_set_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
731 trace_rxrpc_client(conn, channel, rxrpc_client_exposed);
David Howells45025bc2016-08-24 07:30:52 +0100732 rxrpc_get_connection(conn);
David Howells363deea2016-09-17 10:49:14 +0100733 }
David Howells45025bc2016-08-24 07:30:52 +0100734}
735
736/*
737 * Note that a call, and thus a connection, is about to be exposed to the
738 * world.
739 */
740void rxrpc_expose_client_call(struct rxrpc_call *call)
741{
David Howells363deea2016-09-17 10:49:14 +0100742 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
David Howells45025bc2016-08-24 07:30:52 +0100743 struct rxrpc_connection *conn = call->conn;
David Howells363deea2016-09-17 10:49:14 +0100744 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells45025bc2016-08-24 07:30:52 +0100745
746 if (!test_and_set_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
747 /* Mark the call ID as being used. If the callNumber counter
748 * exceeds ~2 billion, we kill the connection after its
749 * outstanding calls have finished so that the counter doesn't
750 * wrap.
751 */
752 chan->call_counter++;
753 if (chan->call_counter >= INT_MAX)
754 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
David Howells363deea2016-09-17 10:49:14 +0100755 rxrpc_expose_client_conn(conn, channel);
David Howells45025bc2016-08-24 07:30:52 +0100756 }
757}
758
759/*
David Howells3d18cbb2017-11-24 10:18:42 +0000760 * Set the reap timer.
761 */
762static void rxrpc_set_client_reap_timer(struct rxrpc_net *rxnet)
763{
764 unsigned long now = jiffies;
765 unsigned long reap_at = now + rxrpc_conn_idle_client_expiry;
766
767 if (rxnet->live)
768 timer_reduce(&rxnet->client_conn_reap_timer, reap_at);
769}
770
771/*
David Howells45025bc2016-08-24 07:30:52 +0100772 * Disconnect a client call.
773 */
774void rxrpc_disconnect_client_call(struct rxrpc_call *call)
775{
776 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
777 struct rxrpc_connection *conn = call->conn;
778 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells88f2a8252018-03-30 21:05:17 +0100779 struct rxrpc_net *rxnet = conn->params.local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100780
David Howells363deea2016-09-17 10:49:14 +0100781 trace_rxrpc_client(conn, channel, rxrpc_client_chan_disconnect);
David Howells45025bc2016-08-24 07:30:52 +0100782 call->conn = NULL;
783
784 spin_lock(&conn->channel_lock);
785
786 /* Calls that have never actually been assigned a channel can simply be
787 * discarded. If the conn didn't get used either, it will follow
788 * immediately unless someone else grabs it in the meantime.
789 */
790 if (!list_empty(&call->chan_wait_link)) {
791 _debug("call is waiting");
792 ASSERTCMP(call->call_id, ==, 0);
793 ASSERT(!test_bit(RXRPC_CALL_EXPOSED, &call->flags));
794 list_del_init(&call->chan_wait_link);
795
David Howells363deea2016-09-17 10:49:14 +0100796 trace_rxrpc_client(conn, channel, rxrpc_client_chan_unstarted);
797
David Howells45025bc2016-08-24 07:30:52 +0100798 /* We must deactivate or idle the connection if it's now
799 * waiting for nothing.
800 */
David Howells2baec2c2017-05-24 17:02:32 +0100801 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100802 if (conn->cache_state == RXRPC_CONN_CLIENT_WAITING &&
803 list_empty(&conn->waiting_calls) &&
804 !conn->active_chans)
805 goto idle_connection;
806 goto out;
807 }
808
809 ASSERTCMP(rcu_access_pointer(chan->call), ==, call);
David Howells45025bc2016-08-24 07:30:52 +0100810
811 /* If a client call was exposed to the world, we save the result for
812 * retransmission.
813 *
814 * We use a barrier here so that the call number and abort code can be
815 * read without needing to take a lock.
816 *
817 * TODO: Make the incoming packet handler check this and handle
818 * terminal retransmission without requiring access to the call.
819 */
820 if (test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
David Howellsf5c17aa2016-08-30 09:49:28 +0100821 _debug("exposed %u,%u", call->call_id, call->abort_code);
David Howells45025bc2016-08-24 07:30:52 +0100822 __rxrpc_disconnect_call(conn, call);
823 }
824
825 /* See if we can pass the channel directly to another call. */
826 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE &&
827 !list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +0100828 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100829 rxrpc_activate_one_channel(conn, channel);
830 goto out_2;
831 }
832
David Howells3136ef42017-11-24 10:18:41 +0000833 /* Schedule the final ACK to be transmitted in a short while so that it
834 * can be skipped if we find a follow-on call. The first DATA packet
835 * of the follow on call will implicitly ACK this call.
836 */
David Howells17e9e232018-02-06 16:44:12 +0000837 if (call->completion == RXRPC_CALL_SUCCEEDED &&
838 test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
David Howells3136ef42017-11-24 10:18:41 +0000839 unsigned long final_ack_at = jiffies + 2;
840
841 WRITE_ONCE(chan->final_ack_at, final_ack_at);
842 smp_wmb(); /* vs rxrpc_process_delayed_final_acks() */
843 set_bit(RXRPC_CONN_FINAL_ACK_0 + channel, &conn->flags);
844 rxrpc_reduce_conn_timer(conn, final_ack_at);
845 }
846
David Howells45025bc2016-08-24 07:30:52 +0100847 /* Things are more complex and we need the cache lock. We might be
848 * able to simply idle the conn or it might now be lurking on the wait
849 * list. It might even get moved back to the active list whilst we're
850 * waiting for the lock.
851 */
David Howells2baec2c2017-05-24 17:02:32 +0100852 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100853
854 switch (conn->cache_state) {
David Howells4e255722017-06-05 14:30:49 +0100855 case RXRPC_CONN_CLIENT_UPGRADE:
856 /* Deal with termination of a service upgrade probe. */
857 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
858 clear_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
859 trace_rxrpc_client(conn, channel, rxrpc_client_to_active);
860 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
861 rxrpc_activate_channels_locked(conn);
862 }
863 /* fall through */
David Howells45025bc2016-08-24 07:30:52 +0100864 case RXRPC_CONN_CLIENT_ACTIVE:
865 if (list_empty(&conn->waiting_calls)) {
866 rxrpc_deactivate_one_channel(conn, channel);
867 if (!conn->active_chans) {
David Howells2baec2c2017-05-24 17:02:32 +0100868 rxnet->nr_active_client_conns--;
David Howells45025bc2016-08-24 07:30:52 +0100869 goto idle_connection;
870 }
871 goto out;
872 }
873
David Howells363deea2016-09-17 10:49:14 +0100874 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100875 rxrpc_activate_one_channel(conn, channel);
876 goto out;
877
878 case RXRPC_CONN_CLIENT_CULLED:
879 rxrpc_deactivate_one_channel(conn, channel);
880 ASSERT(list_empty(&conn->waiting_calls));
881 if (!conn->active_chans)
882 goto idle_connection;
883 goto out;
884
885 case RXRPC_CONN_CLIENT_WAITING:
886 rxrpc_deactivate_one_channel(conn, channel);
887 goto out;
888
889 default:
890 BUG();
891 }
892
893out:
David Howells2baec2c2017-05-24 17:02:32 +0100894 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100895out_2:
896 spin_unlock(&conn->channel_lock);
897 rxrpc_put_connection(conn);
898 _leave("");
899 return;
900
901idle_connection:
902 /* As no channels remain active, the connection gets deactivated
903 * immediately or moved to the idle list for a short while.
904 */
905 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100906 trace_rxrpc_client(conn, channel, rxrpc_client_to_idle);
David Howells45025bc2016-08-24 07:30:52 +0100907 conn->idle_timestamp = jiffies;
908 conn->cache_state = RXRPC_CONN_CLIENT_IDLE;
David Howells2baec2c2017-05-24 17:02:32 +0100909 list_move_tail(&conn->cache_link, &rxnet->idle_client_conns);
910 if (rxnet->idle_client_conns.next == &conn->cache_link &&
911 !rxnet->kill_all_client_conns)
David Howells3d18cbb2017-11-24 10:18:42 +0000912 rxrpc_set_client_reap_timer(rxnet);
David Howells45025bc2016-08-24 07:30:52 +0100913 } else {
David Howells363deea2016-09-17 10:49:14 +0100914 trace_rxrpc_client(conn, channel, rxrpc_client_to_inactive);
David Howells45025bc2016-08-24 07:30:52 +0100915 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
916 list_del_init(&conn->cache_link);
917 }
918 goto out;
919}
920
921/*
922 * Clean up a dead client connection.
923 */
924static struct rxrpc_connection *
925rxrpc_put_one_client_conn(struct rxrpc_connection *conn)
926{
David Howells66d58af2016-09-17 10:49:12 +0100927 struct rxrpc_connection *next = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100928 struct rxrpc_local *local = conn->params.local;
David Howells2baec2c2017-05-24 17:02:32 +0100929 struct rxrpc_net *rxnet = local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100930 unsigned int nr_conns;
931
David Howells363deea2016-09-17 10:49:14 +0100932 trace_rxrpc_client(conn, -1, rxrpc_client_cleanup);
933
David Howells45025bc2016-08-24 07:30:52 +0100934 if (test_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags)) {
935 spin_lock(&local->client_conns_lock);
936 if (test_and_clear_bit(RXRPC_CONN_IN_CLIENT_CONNS,
937 &conn->flags))
938 rb_erase(&conn->client_node, &local->client_conns);
939 spin_unlock(&local->client_conns_lock);
940 }
David Howells001c1122016-06-30 10:45:22 +0100941
942 rxrpc_put_client_connection_id(conn);
David Howells45025bc2016-08-24 07:30:52 +0100943
944 ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_INACTIVE);
945
David Howells66d58af2016-09-17 10:49:12 +0100946 if (test_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100947 trace_rxrpc_client(conn, -1, rxrpc_client_uncount);
David Howells2baec2c2017-05-24 17:02:32 +0100948 spin_lock(&rxnet->client_conn_cache_lock);
949 nr_conns = --rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100950
David Howells66d58af2016-09-17 10:49:12 +0100951 if (nr_conns < rxrpc_max_client_connections &&
David Howells2baec2c2017-05-24 17:02:32 +0100952 !list_empty(&rxnet->waiting_client_conns)) {
953 next = list_entry(rxnet->waiting_client_conns.next,
David Howells66d58af2016-09-17 10:49:12 +0100954 struct rxrpc_connection, cache_link);
955 rxrpc_get_connection(next);
David Howells2baec2c2017-05-24 17:02:32 +0100956 rxrpc_activate_conn(rxnet, next);
David Howells66d58af2016-09-17 10:49:12 +0100957 }
David Howells45025bc2016-08-24 07:30:52 +0100958
David Howells2baec2c2017-05-24 17:02:32 +0100959 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100960 }
961
David Howells45025bc2016-08-24 07:30:52 +0100962 rxrpc_kill_connection(conn);
David Howells45025bc2016-08-24 07:30:52 +0100963 if (next)
964 rxrpc_activate_channels(next);
965
966 /* We need to get rid of the temporary ref we took upon next, but we
967 * can't call rxrpc_put_connection() recursively.
968 */
969 return next;
970}
971
972/*
973 * Clean up a dead client connections.
974 */
975void rxrpc_put_client_conn(struct rxrpc_connection *conn)
976{
David Howells363deea2016-09-17 10:49:14 +0100977 const void *here = __builtin_return_address(0);
978 int n;
David Howells45025bc2016-08-24 07:30:52 +0100979
980 do {
David Howells363deea2016-09-17 10:49:14 +0100981 n = atomic_dec_return(&conn->usage);
982 trace_rxrpc_conn(conn, rxrpc_conn_put_client, n, here);
983 if (n > 0)
984 return;
985 ASSERTCMP(n, >=, 0);
David Howells45025bc2016-08-24 07:30:52 +0100986
David Howells363deea2016-09-17 10:49:14 +0100987 conn = rxrpc_put_one_client_conn(conn);
988 } while (conn);
David Howells45025bc2016-08-24 07:30:52 +0100989}
990
991/*
992 * Kill the longest-active client connections to make room for new ones.
993 */
David Howells2baec2c2017-05-24 17:02:32 +0100994static void rxrpc_cull_active_client_conns(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +0100995{
996 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +0100997 unsigned int nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100998 unsigned int nr_active, limit;
999
1000 _enter("");
1001
1002 ASSERTCMP(nr_conns, >=, 0);
1003 if (nr_conns < rxrpc_max_client_connections) {
1004 _leave(" [ok]");
1005 return;
1006 }
1007 limit = rxrpc_reap_client_connections;
1008
David Howells2baec2c2017-05-24 17:02:32 +01001009 spin_lock(&rxnet->client_conn_cache_lock);
1010 nr_active = rxnet->nr_active_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001011
1012 while (nr_active > limit) {
David Howells2baec2c2017-05-24 17:02:32 +01001013 ASSERT(!list_empty(&rxnet->active_client_conns));
1014 conn = list_entry(rxnet->active_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +01001015 struct rxrpc_connection, cache_link);
David Howells4e255722017-06-05 14:30:49 +01001016 ASSERTIFCMP(conn->cache_state != RXRPC_CONN_CLIENT_ACTIVE,
1017 conn->cache_state, ==, RXRPC_CONN_CLIENT_UPGRADE);
David Howells45025bc2016-08-24 07:30:52 +01001018
1019 if (list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +01001020 trace_rxrpc_client(conn, -1, rxrpc_client_to_culled);
David Howells45025bc2016-08-24 07:30:52 +01001021 conn->cache_state = RXRPC_CONN_CLIENT_CULLED;
1022 list_del_init(&conn->cache_link);
1023 } else {
David Howells363deea2016-09-17 10:49:14 +01001024 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +01001025 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
1026 list_move_tail(&conn->cache_link,
David Howells2baec2c2017-05-24 17:02:32 +01001027 &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +01001028 }
1029
1030 nr_active--;
1031 }
1032
David Howells2baec2c2017-05-24 17:02:32 +01001033 rxnet->nr_active_client_conns = nr_active;
1034 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001035 ASSERTCMP(nr_active, >=, 0);
1036 _leave(" [culled]");
1037}
1038
1039/*
1040 * Discard expired client connections from the idle list. Each conn in the
1041 * idle list has been exposed and holds an extra ref because of that.
1042 *
1043 * This may be called from conn setup or from a work item so cannot be
1044 * considered non-reentrant.
1045 */
David Howells2baec2c2017-05-24 17:02:32 +01001046void rxrpc_discard_expired_client_conns(struct work_struct *work)
David Howells45025bc2016-08-24 07:30:52 +01001047{
1048 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +01001049 struct rxrpc_net *rxnet =
David Howells3d18cbb2017-11-24 10:18:42 +00001050 container_of(work, struct rxrpc_net, client_conn_reaper);
David Howells45025bc2016-08-24 07:30:52 +01001051 unsigned long expiry, conn_expires_at, now;
1052 unsigned int nr_conns;
1053 bool did_discard = false;
1054
David Howells2baec2c2017-05-24 17:02:32 +01001055 _enter("");
David Howells45025bc2016-08-24 07:30:52 +01001056
David Howells2baec2c2017-05-24 17:02:32 +01001057 if (list_empty(&rxnet->idle_client_conns)) {
David Howells45025bc2016-08-24 07:30:52 +01001058 _leave(" [empty]");
1059 return;
1060 }
1061
1062 /* Don't double up on the discarding */
David Howells2baec2c2017-05-24 17:02:32 +01001063 if (!spin_trylock(&rxnet->client_conn_discard_lock)) {
David Howells45025bc2016-08-24 07:30:52 +01001064 _leave(" [already]");
1065 return;
1066 }
1067
1068 /* We keep an estimate of what the number of conns ought to be after
1069 * we've discarded some so that we don't overdo the discarding.
1070 */
David Howells2baec2c2017-05-24 17:02:32 +01001071 nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001072
1073next:
David Howells2baec2c2017-05-24 17:02:32 +01001074 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001075
David Howells2baec2c2017-05-24 17:02:32 +01001076 if (list_empty(&rxnet->idle_client_conns))
David Howells45025bc2016-08-24 07:30:52 +01001077 goto out;
1078
David Howells2baec2c2017-05-24 17:02:32 +01001079 conn = list_entry(rxnet->idle_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +01001080 struct rxrpc_connection, cache_link);
1081 ASSERT(test_bit(RXRPC_CONN_EXPOSED, &conn->flags));
1082
David Howells2baec2c2017-05-24 17:02:32 +01001083 if (!rxnet->kill_all_client_conns) {
David Howells45025bc2016-08-24 07:30:52 +01001084 /* If the number of connections is over the reap limit, we
1085 * expedite discard by reducing the expiry timeout. We must,
1086 * however, have at least a short grace period to be able to do
1087 * final-ACK or ABORT retransmission.
1088 */
1089 expiry = rxrpc_conn_idle_client_expiry;
1090 if (nr_conns > rxrpc_reap_client_connections)
1091 expiry = rxrpc_conn_idle_client_fast_expiry;
David Howellsf859ab62017-11-24 10:18:42 +00001092 if (conn->params.local->service_closed)
1093 expiry = rxrpc_closed_conn_expiry * HZ;
David Howells45025bc2016-08-24 07:30:52 +01001094
1095 conn_expires_at = conn->idle_timestamp + expiry;
1096
1097 now = READ_ONCE(jiffies);
1098 if (time_after(conn_expires_at, now))
1099 goto not_yet_expired;
1100 }
1101
David Howells363deea2016-09-17 10:49:14 +01001102 trace_rxrpc_client(conn, -1, rxrpc_client_discard);
David Howells45025bc2016-08-24 07:30:52 +01001103 if (!test_and_clear_bit(RXRPC_CONN_EXPOSED, &conn->flags))
1104 BUG();
1105 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
1106 list_del_init(&conn->cache_link);
1107
David Howells2baec2c2017-05-24 17:02:32 +01001108 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001109
1110 /* When we cleared the EXPOSED flag, we took on responsibility for the
1111 * reference that that had on the usage count. We deal with that here.
1112 * If someone re-sets the flag and re-gets the ref, that's fine.
1113 */
1114 rxrpc_put_connection(conn);
1115 did_discard = true;
1116 nr_conns--;
1117 goto next;
1118
1119not_yet_expired:
1120 /* The connection at the front of the queue hasn't yet expired, so
1121 * schedule the work item for that point if we discarded something.
1122 *
1123 * We don't worry if the work item is already scheduled - it can look
1124 * after rescheduling itself at a later time. We could cancel it, but
1125 * then things get messier.
1126 */
1127 _debug("not yet");
David Howells2baec2c2017-05-24 17:02:32 +01001128 if (!rxnet->kill_all_client_conns)
David Howells3d18cbb2017-11-24 10:18:42 +00001129 timer_reduce(&rxnet->client_conn_reap_timer,
1130 conn_expires_at);
David Howells45025bc2016-08-24 07:30:52 +01001131
1132out:
David Howells2baec2c2017-05-24 17:02:32 +01001133 spin_unlock(&rxnet->client_conn_cache_lock);
1134 spin_unlock(&rxnet->client_conn_discard_lock);
David Howells45025bc2016-08-24 07:30:52 +01001135 _leave("");
1136}
1137
1138/*
1139 * Preemptively destroy all the client connection records rather than waiting
1140 * for them to time out
1141 */
David Howells2baec2c2017-05-24 17:02:32 +01001142void rxrpc_destroy_all_client_connections(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +01001143{
1144 _enter("");
1145
David Howells2baec2c2017-05-24 17:02:32 +01001146 spin_lock(&rxnet->client_conn_cache_lock);
1147 rxnet->kill_all_client_conns = true;
1148 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001149
David Howells3d18cbb2017-11-24 10:18:42 +00001150 del_timer_sync(&rxnet->client_conn_reap_timer);
David Howells45025bc2016-08-24 07:30:52 +01001151
David Howells3d18cbb2017-11-24 10:18:42 +00001152 if (!rxrpc_queue_work(&rxnet->client_conn_reaper))
David Howells45025bc2016-08-24 07:30:52 +01001153 _debug("destroy: queue failed");
1154
1155 _leave("");
David Howells001c1122016-06-30 10:45:22 +01001156}