blob: dd8bb919c15a16b912c4b5e9b43a047b9b401ff0 [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;
88__read_mostly unsigned int rxrpc_conn_idle_client_expiry = 2 * 60 * HZ;
89__read_mostly unsigned int rxrpc_conn_idle_client_fast_expiry = 2 * HZ;
90
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 Howells45025bc2016-08-24 07:30:52 +0100295 /* If the connection is not meant to be exclusive, search the available
296 * connections to see if the connection we want to use already exists.
297 */
David Howellsc6d2b8d2016-04-04 14:00:40 +0100298 if (!cp->exclusive) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100299 _debug("search 1");
300 spin_lock(&local->client_conns_lock);
301 p = local->client_conns.rb_node;
302 while (p) {
303 conn = rb_entry(p, struct rxrpc_connection, client_node);
304
305#define cmp(X) ((long)conn->params.X - (long)cp->X)
306 diff = (cmp(peer) ?:
307 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100308 cmp(security_level) ?:
309 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100310#undef cmp
311 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100312 p = p->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100313 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100314 p = p->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100315 } else {
316 if (rxrpc_may_reuse_conn(conn) &&
317 rxrpc_get_connection_maybe(conn))
318 goto found_extant_conn;
319 /* The connection needs replacing. It's better
320 * to effect that when we have something to
321 * replace it with so that we don't have to
322 * rebalance the tree twice.
323 */
324 break;
325 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100326 }
327 spin_unlock(&local->client_conns_lock);
328 }
329
David Howells45025bc2016-08-24 07:30:52 +0100330 /* There wasn't a connection yet or we need an exclusive connection.
331 * We need to create a candidate and then potentially redo the search
332 * in case we're racing with another thread also trying to connect on a
333 * shareable connection.
334 */
335 _debug("new conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100336 candidate = rxrpc_alloc_client_connection(cp, gfp);
David Howells45025bc2016-08-24 07:30:52 +0100337 if (IS_ERR(candidate)) {
338 ret = PTR_ERR(candidate);
339 goto error_peer;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100340 }
341
David Howells45025bc2016-08-24 07:30:52 +0100342 /* Add the call to the new connection's waiting list in case we're
343 * going to have to wait for the connection to come live. It's our
344 * connection, so we want first dibs on the channel slots. We would
345 * normally have to take channel_lock but we do this before anyone else
346 * can see the connection.
347 */
348 list_add_tail(&call->chan_wait_link, &candidate->waiting_calls);
349
David Howellsc6d2b8d2016-04-04 14:00:40 +0100350 if (cp->exclusive) {
David Howells45025bc2016-08-24 07:30:52 +0100351 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100352 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100353 call->service_id = candidate->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100354 _leave(" = 0 [exclusive %d]", candidate->debug_id);
355 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100356 }
357
David Howells45025bc2016-08-24 07:30:52 +0100358 /* Publish the new connection for userspace to find. We need to redo
359 * the search before doing this lest we race with someone else adding a
360 * conflicting instance.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100361 */
362 _debug("search 2");
363 spin_lock(&local->client_conns_lock);
364
365 pp = &local->client_conns.rb_node;
366 parent = NULL;
367 while (*pp) {
368 parent = *pp;
369 conn = rb_entry(parent, struct rxrpc_connection, client_node);
370
David Howells45025bc2016-08-24 07:30:52 +0100371#define cmp(X) ((long)conn->params.X - (long)candidate->params.X)
David Howellsc6d2b8d2016-04-04 14:00:40 +0100372 diff = (cmp(peer) ?:
373 cmp(key) ?:
David Howells4e255722017-06-05 14:30:49 +0100374 cmp(security_level) ?:
375 cmp(upgrade));
David Howells45025bc2016-08-24 07:30:52 +0100376#undef cmp
377 if (diff < 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100378 pp = &(*pp)->rb_left;
David Howells45025bc2016-08-24 07:30:52 +0100379 } else if (diff > 0) {
David Howellsc6d2b8d2016-04-04 14:00:40 +0100380 pp = &(*pp)->rb_right;
David Howells45025bc2016-08-24 07:30:52 +0100381 } else {
382 if (rxrpc_may_reuse_conn(conn) &&
383 rxrpc_get_connection_maybe(conn))
384 goto found_extant_conn;
385 /* The old connection is from an outdated epoch. */
386 _debug("replace conn");
387 clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags);
388 rb_replace_node(&conn->client_node,
389 &candidate->client_node,
390 &local->client_conns);
David Howells363deea2016-09-17 10:49:14 +0100391 trace_rxrpc_client(conn, -1, rxrpc_client_replace);
David Howells45025bc2016-08-24 07:30:52 +0100392 goto candidate_published;
393 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100394 }
395
David Howellsc6d2b8d2016-04-04 14:00:40 +0100396 _debug("new conn");
David Howells001c1122016-06-30 10:45:22 +0100397 rb_link_node(&candidate->client_node, parent, pp);
398 rb_insert_color(&candidate->client_node, &local->client_conns);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100399
David Howells45025bc2016-08-24 07:30:52 +0100400candidate_published:
401 set_bit(RXRPC_CONN_IN_CLIENT_CONNS, &candidate->flags);
402 call->conn = candidate;
David Howells278ac0c2016-09-07 15:19:25 +0100403 call->security_ix = candidate->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100404 call->service_id = candidate->service_id;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100405 spin_unlock(&local->client_conns_lock);
David Howells45025bc2016-08-24 07:30:52 +0100406 _leave(" = 0 [new %d]", candidate->debug_id);
David Howellsc6d2b8d2016-04-04 14:00:40 +0100407 return 0;
408
David Howells45025bc2016-08-24 07:30:52 +0100409 /* We come here if we found a suitable connection already in existence.
410 * Discard any candidate we may have allocated, and try to get a
411 * channel on this one.
David Howellsc6d2b8d2016-04-04 14:00:40 +0100412 */
413found_extant_conn:
414 _debug("found conn");
David Howellsc6d2b8d2016-04-04 14:00:40 +0100415 spin_unlock(&local->client_conns_lock);
416
David Howells363deea2016-09-17 10:49:14 +0100417 if (candidate) {
418 trace_rxrpc_client(candidate, -1, rxrpc_client_duplicate);
419 rxrpc_put_connection(candidate);
420 candidate = NULL;
421 }
David Howellsc6d2b8d2016-04-04 14:00:40 +0100422
David Howellsc6d2b8d2016-04-04 14:00:40 +0100423 spin_lock(&conn->channel_lock);
David Howells45025bc2016-08-24 07:30:52 +0100424 call->conn = conn;
David Howells278ac0c2016-09-07 15:19:25 +0100425 call->security_ix = conn->security_ix;
David Howells68d6d1a2017-06-05 14:30:49 +0100426 call->service_id = conn->service_id;
David Howells45025bc2016-08-24 07:30:52 +0100427 list_add(&call->chan_wait_link, &conn->waiting_calls);
428 spin_unlock(&conn->channel_lock);
429 _leave(" = 0 [extant %d]", conn->debug_id);
430 return 0;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100431
David Howells45025bc2016-08-24 07:30:52 +0100432error_peer:
David Howellsc6d2b8d2016-04-04 14:00:40 +0100433 rxrpc_put_peer(cp->peer);
434 cp->peer = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100435error:
436 _leave(" = %d", ret);
437 return ret;
David Howellsc6d2b8d2016-04-04 14:00:40 +0100438}
David Howells001c1122016-06-30 10:45:22 +0100439
440/*
David Howells45025bc2016-08-24 07:30:52 +0100441 * Activate a connection.
David Howells001c1122016-06-30 10:45:22 +0100442 */
David Howells2baec2c2017-05-24 17:02:32 +0100443static void rxrpc_activate_conn(struct rxrpc_net *rxnet,
444 struct rxrpc_connection *conn)
David Howells001c1122016-06-30 10:45:22 +0100445{
David Howells4e255722017-06-05 14:30:49 +0100446 if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags)) {
447 trace_rxrpc_client(conn, -1, rxrpc_client_to_upgrade);
448 conn->cache_state = RXRPC_CONN_CLIENT_UPGRADE;
449 } else {
450 trace_rxrpc_client(conn, -1, rxrpc_client_to_active);
451 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
452 }
David Howells2baec2c2017-05-24 17:02:32 +0100453 rxnet->nr_active_client_conns++;
454 list_move_tail(&conn->cache_link, &rxnet->active_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100455}
David Howells001c1122016-06-30 10:45:22 +0100456
David Howells45025bc2016-08-24 07:30:52 +0100457/*
458 * Attempt to animate a connection for a new call.
459 *
460 * If it's not exclusive, the connection is in the endpoint tree, and we're in
461 * the conn's list of those waiting to grab a channel. There is, however, a
462 * limit on the number of live connections allowed at any one time, so we may
463 * have to wait for capacity to become available.
464 *
465 * Note that a connection on the waiting queue might *also* have active
466 * channels if it has been culled to make space and then re-requested by a new
467 * call.
468 */
David Howells2baec2c2017-05-24 17:02:32 +0100469static void rxrpc_animate_client_conn(struct rxrpc_net *rxnet,
470 struct rxrpc_connection *conn)
David Howells45025bc2016-08-24 07:30:52 +0100471{
472 unsigned int nr_conns;
473
474 _enter("%d,%d", conn->debug_id, conn->cache_state);
475
David Howells4e255722017-06-05 14:30:49 +0100476 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE ||
477 conn->cache_state == RXRPC_CONN_CLIENT_UPGRADE)
David Howells45025bc2016-08-24 07:30:52 +0100478 goto out;
479
David Howells2baec2c2017-05-24 17:02:32 +0100480 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100481
David Howells2baec2c2017-05-24 17:02:32 +0100482 nr_conns = rxnet->nr_client_conns;
David Howells363deea2016-09-17 10:49:14 +0100483 if (!test_and_set_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
484 trace_rxrpc_client(conn, -1, rxrpc_client_count);
David Howells2baec2c2017-05-24 17:02:32 +0100485 rxnet->nr_client_conns = nr_conns + 1;
David Howells363deea2016-09-17 10:49:14 +0100486 }
David Howells45025bc2016-08-24 07:30:52 +0100487
488 switch (conn->cache_state) {
489 case RXRPC_CONN_CLIENT_ACTIVE:
David Howells4e255722017-06-05 14:30:49 +0100490 case RXRPC_CONN_CLIENT_UPGRADE:
David Howells45025bc2016-08-24 07:30:52 +0100491 case RXRPC_CONN_CLIENT_WAITING:
492 break;
493
494 case RXRPC_CONN_CLIENT_INACTIVE:
495 case RXRPC_CONN_CLIENT_CULLED:
496 case RXRPC_CONN_CLIENT_IDLE:
497 if (nr_conns >= rxrpc_max_client_connections)
498 goto wait_for_capacity;
499 goto activate_conn;
500
501 default:
502 BUG();
503 }
504
505out_unlock:
David Howells2baec2c2017-05-24 17:02:32 +0100506 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100507out:
508 _leave(" [%d]", conn->cache_state);
509 return;
510
511activate_conn:
512 _debug("activate");
David Howells2baec2c2017-05-24 17:02:32 +0100513 rxrpc_activate_conn(rxnet, conn);
David Howells45025bc2016-08-24 07:30:52 +0100514 goto out_unlock;
515
516wait_for_capacity:
517 _debug("wait");
David Howells363deea2016-09-17 10:49:14 +0100518 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +0100519 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
David Howells2baec2c2017-05-24 17:02:32 +0100520 list_move_tail(&conn->cache_link, &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100521 goto out_unlock;
522}
523
524/*
525 * Deactivate a channel.
526 */
527static void rxrpc_deactivate_one_channel(struct rxrpc_connection *conn,
528 unsigned int channel)
529{
530 struct rxrpc_channel *chan = &conn->channels[channel];
531
532 rcu_assign_pointer(chan->call, NULL);
533 conn->active_chans &= ~(1 << channel);
534}
535
536/*
537 * Assign a channel to the call at the front of the queue and wake the call up.
538 * We don't increment the callNumber counter until this number has been exposed
539 * to the world.
540 */
541static void rxrpc_activate_one_channel(struct rxrpc_connection *conn,
542 unsigned int channel)
543{
544 struct rxrpc_channel *chan = &conn->channels[channel];
545 struct rxrpc_call *call = list_entry(conn->waiting_calls.next,
546 struct rxrpc_call, chan_wait_link);
547 u32 call_id = chan->call_counter + 1;
548
David Howells363deea2016-09-17 10:49:14 +0100549 trace_rxrpc_client(conn, channel, rxrpc_client_chan_activate);
550
David Howellsaf338a92016-09-04 13:10:10 +0100551 write_lock_bh(&call->state_lock);
552 call->state = RXRPC_CALL_CLIENT_SEND_REQUEST;
553 write_unlock_bh(&call->state_lock);
554
David Howellse34d4232016-08-30 09:49:29 +0100555 rxrpc_see_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100556 list_del_init(&call->chan_wait_link);
557 conn->active_chans |= 1 << channel;
558 call->peer = rxrpc_get_peer(conn->params.peer);
559 call->cid = conn->proto.cid | channel;
560 call->call_id = call_id;
561
David Howells89ca6942017-04-06 10:12:00 +0100562 trace_rxrpc_connect_call(call);
David Howells45025bc2016-08-24 07:30:52 +0100563 _net("CONNECT call %08x:%08x as call %d on conn %d",
564 call->cid, call->call_id, call->debug_id, conn->debug_id);
565
566 /* Paired with the read barrier in rxrpc_wait_for_channel(). This
567 * orders cid and epoch in the connection wrt to call_id without the
568 * need to take the channel_lock.
569 *
570 * We provisionally assign a callNumber at this point, but we don't
571 * confirm it until the call is about to be exposed.
572 *
573 * TODO: Pair with a barrier in the data_ready handler when that looks
574 * at the call ID through a connection channel.
575 */
576 smp_wmb();
577 chan->call_id = call_id;
578 rcu_assign_pointer(chan->call, call);
579 wake_up(&call->waitq);
580}
581
582/*
David Howells2629c7f2016-09-29 22:37:15 +0100583 * Assign channels and callNumbers to waiting calls with channel_lock
584 * held by caller.
585 */
586static void rxrpc_activate_channels_locked(struct rxrpc_connection *conn)
587{
588 u8 avail, mask;
589
590 switch (conn->cache_state) {
591 case RXRPC_CONN_CLIENT_ACTIVE:
592 mask = RXRPC_ACTIVE_CHANS_MASK;
593 break;
David Howells4e255722017-06-05 14:30:49 +0100594 case RXRPC_CONN_CLIENT_UPGRADE:
595 mask = 0x01;
596 break;
David Howells2629c7f2016-09-29 22:37:15 +0100597 default:
598 return;
599 }
600
601 while (!list_empty(&conn->waiting_calls) &&
602 (avail = ~conn->active_chans,
603 avail &= mask,
604 avail != 0))
605 rxrpc_activate_one_channel(conn, __ffs(avail));
606}
607
608/*
David Howells45025bc2016-08-24 07:30:52 +0100609 * Assign channels and callNumbers to waiting calls.
610 */
611static void rxrpc_activate_channels(struct rxrpc_connection *conn)
612{
David Howells45025bc2016-08-24 07:30:52 +0100613 _enter("%d", conn->debug_id);
614
David Howells363deea2016-09-17 10:49:14 +0100615 trace_rxrpc_client(conn, -1, rxrpc_client_activate_chans);
616
David Howells2629c7f2016-09-29 22:37:15 +0100617 if (conn->active_chans == RXRPC_ACTIVE_CHANS_MASK)
David Howells45025bc2016-08-24 07:30:52 +0100618 return;
619
620 spin_lock(&conn->channel_lock);
David Howells2629c7f2016-09-29 22:37:15 +0100621 rxrpc_activate_channels_locked(conn);
David Howells45025bc2016-08-24 07:30:52 +0100622 spin_unlock(&conn->channel_lock);
623 _leave("");
624}
625
626/*
627 * Wait for a callNumber and a channel to be granted to a call.
628 */
629static int rxrpc_wait_for_channel(struct rxrpc_call *call, gfp_t gfp)
630{
631 int ret = 0;
632
633 _enter("%d", call->debug_id);
634
635 if (!call->call_id) {
636 DECLARE_WAITQUEUE(myself, current);
637
638 if (!gfpflags_allow_blocking(gfp)) {
639 ret = -EAGAIN;
640 goto out;
641 }
642
643 add_wait_queue_exclusive(&call->waitq, &myself);
644 for (;;) {
645 set_current_state(TASK_INTERRUPTIBLE);
646 if (call->call_id)
647 break;
648 if (signal_pending(current)) {
649 ret = -ERESTARTSYS;
650 break;
651 }
652 schedule();
653 }
654 remove_wait_queue(&call->waitq, &myself);
655 __set_current_state(TASK_RUNNING);
656 }
657
658 /* Paired with the write barrier in rxrpc_activate_one_channel(). */
659 smp_rmb();
660
661out:
662 _leave(" = %d", ret);
663 return ret;
664}
665
666/*
667 * find a connection for a call
668 * - called in process context with IRQs enabled
669 */
670int rxrpc_connect_call(struct rxrpc_call *call,
671 struct rxrpc_conn_parameters *cp,
672 struct sockaddr_rxrpc *srx,
673 gfp_t gfp)
674{
David Howells2baec2c2017-05-24 17:02:32 +0100675 struct rxrpc_net *rxnet = cp->local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100676 int ret;
677
678 _enter("{%d,%lx},", call->debug_id, call->user_call_ID);
679
David Howells2baec2c2017-05-24 17:02:32 +0100680 rxrpc_discard_expired_client_conns(&rxnet->client_conn_reaper.work);
681 rxrpc_cull_active_client_conns(rxnet);
David Howells45025bc2016-08-24 07:30:52 +0100682
683 ret = rxrpc_get_client_conn(call, cp, srx, gfp);
684 if (ret < 0)
685 return ret;
686
David Howells2baec2c2017-05-24 17:02:32 +0100687 rxrpc_animate_client_conn(rxnet, call->conn);
David Howells45025bc2016-08-24 07:30:52 +0100688 rxrpc_activate_channels(call->conn);
689
690 ret = rxrpc_wait_for_channel(call, gfp);
691 if (ret < 0)
692 rxrpc_disconnect_client_call(call);
693
694 _leave(" = %d", ret);
695 return ret;
696}
697
698/*
699 * Note that a connection is about to be exposed to the world. Once it is
700 * exposed, we maintain an extra ref on it that stops it from being summarily
701 * discarded before it's (a) had a chance to deal with retransmission and (b)
702 * had a chance at re-use (the per-connection security negotiation is
703 * expensive).
704 */
David Howells363deea2016-09-17 10:49:14 +0100705static void rxrpc_expose_client_conn(struct rxrpc_connection *conn,
706 unsigned int channel)
David Howells45025bc2016-08-24 07:30:52 +0100707{
David Howells363deea2016-09-17 10:49:14 +0100708 if (!test_and_set_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
709 trace_rxrpc_client(conn, channel, rxrpc_client_exposed);
David Howells45025bc2016-08-24 07:30:52 +0100710 rxrpc_get_connection(conn);
David Howells363deea2016-09-17 10:49:14 +0100711 }
David Howells45025bc2016-08-24 07:30:52 +0100712}
713
714/*
715 * Note that a call, and thus a connection, is about to be exposed to the
716 * world.
717 */
718void rxrpc_expose_client_call(struct rxrpc_call *call)
719{
David Howells363deea2016-09-17 10:49:14 +0100720 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
David Howells45025bc2016-08-24 07:30:52 +0100721 struct rxrpc_connection *conn = call->conn;
David Howells363deea2016-09-17 10:49:14 +0100722 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells45025bc2016-08-24 07:30:52 +0100723
724 if (!test_and_set_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
725 /* Mark the call ID as being used. If the callNumber counter
726 * exceeds ~2 billion, we kill the connection after its
727 * outstanding calls have finished so that the counter doesn't
728 * wrap.
729 */
730 chan->call_counter++;
731 if (chan->call_counter >= INT_MAX)
732 set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags);
David Howells363deea2016-09-17 10:49:14 +0100733 rxrpc_expose_client_conn(conn, channel);
David Howells45025bc2016-08-24 07:30:52 +0100734 }
735}
736
737/*
738 * Disconnect a client call.
739 */
740void rxrpc_disconnect_client_call(struct rxrpc_call *call)
741{
742 unsigned int channel = call->cid & RXRPC_CHANNELMASK;
743 struct rxrpc_connection *conn = call->conn;
744 struct rxrpc_channel *chan = &conn->channels[channel];
David Howells2baec2c2017-05-24 17:02:32 +0100745 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&call->socket->sk));
David Howells45025bc2016-08-24 07:30:52 +0100746
David Howells363deea2016-09-17 10:49:14 +0100747 trace_rxrpc_client(conn, channel, rxrpc_client_chan_disconnect);
David Howells45025bc2016-08-24 07:30:52 +0100748 call->conn = NULL;
749
750 spin_lock(&conn->channel_lock);
751
752 /* Calls that have never actually been assigned a channel can simply be
753 * discarded. If the conn didn't get used either, it will follow
754 * immediately unless someone else grabs it in the meantime.
755 */
756 if (!list_empty(&call->chan_wait_link)) {
757 _debug("call is waiting");
758 ASSERTCMP(call->call_id, ==, 0);
759 ASSERT(!test_bit(RXRPC_CALL_EXPOSED, &call->flags));
760 list_del_init(&call->chan_wait_link);
761
David Howells363deea2016-09-17 10:49:14 +0100762 trace_rxrpc_client(conn, channel, rxrpc_client_chan_unstarted);
763
David Howells45025bc2016-08-24 07:30:52 +0100764 /* We must deactivate or idle the connection if it's now
765 * waiting for nothing.
766 */
David Howells2baec2c2017-05-24 17:02:32 +0100767 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100768 if (conn->cache_state == RXRPC_CONN_CLIENT_WAITING &&
769 list_empty(&conn->waiting_calls) &&
770 !conn->active_chans)
771 goto idle_connection;
772 goto out;
773 }
774
775 ASSERTCMP(rcu_access_pointer(chan->call), ==, call);
David Howells45025bc2016-08-24 07:30:52 +0100776
777 /* If a client call was exposed to the world, we save the result for
778 * retransmission.
779 *
780 * We use a barrier here so that the call number and abort code can be
781 * read without needing to take a lock.
782 *
783 * TODO: Make the incoming packet handler check this and handle
784 * terminal retransmission without requiring access to the call.
785 */
786 if (test_bit(RXRPC_CALL_EXPOSED, &call->flags)) {
David Howellsf5c17aa2016-08-30 09:49:28 +0100787 _debug("exposed %u,%u", call->call_id, call->abort_code);
David Howells45025bc2016-08-24 07:30:52 +0100788 __rxrpc_disconnect_call(conn, call);
789 }
790
791 /* See if we can pass the channel directly to another call. */
792 if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE &&
793 !list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +0100794 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100795 rxrpc_activate_one_channel(conn, channel);
796 goto out_2;
797 }
798
799 /* Things are more complex and we need the cache lock. We might be
800 * able to simply idle the conn or it might now be lurking on the wait
801 * list. It might even get moved back to the active list whilst we're
802 * waiting for the lock.
803 */
David Howells2baec2c2017-05-24 17:02:32 +0100804 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100805
806 switch (conn->cache_state) {
David Howells4e255722017-06-05 14:30:49 +0100807 case RXRPC_CONN_CLIENT_UPGRADE:
808 /* Deal with termination of a service upgrade probe. */
809 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
810 clear_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags);
811 trace_rxrpc_client(conn, channel, rxrpc_client_to_active);
812 conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE;
813 rxrpc_activate_channels_locked(conn);
814 }
815 /* fall through */
David Howells45025bc2016-08-24 07:30:52 +0100816 case RXRPC_CONN_CLIENT_ACTIVE:
817 if (list_empty(&conn->waiting_calls)) {
818 rxrpc_deactivate_one_channel(conn, channel);
819 if (!conn->active_chans) {
David Howells2baec2c2017-05-24 17:02:32 +0100820 rxnet->nr_active_client_conns--;
David Howells45025bc2016-08-24 07:30:52 +0100821 goto idle_connection;
822 }
823 goto out;
824 }
825
David Howells363deea2016-09-17 10:49:14 +0100826 trace_rxrpc_client(conn, channel, rxrpc_client_chan_pass);
David Howells45025bc2016-08-24 07:30:52 +0100827 rxrpc_activate_one_channel(conn, channel);
828 goto out;
829
830 case RXRPC_CONN_CLIENT_CULLED:
831 rxrpc_deactivate_one_channel(conn, channel);
832 ASSERT(list_empty(&conn->waiting_calls));
833 if (!conn->active_chans)
834 goto idle_connection;
835 goto out;
836
837 case RXRPC_CONN_CLIENT_WAITING:
838 rxrpc_deactivate_one_channel(conn, channel);
839 goto out;
840
841 default:
842 BUG();
843 }
844
845out:
David Howells2baec2c2017-05-24 17:02:32 +0100846 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100847out_2:
848 spin_unlock(&conn->channel_lock);
849 rxrpc_put_connection(conn);
850 _leave("");
851 return;
852
853idle_connection:
854 /* As no channels remain active, the connection gets deactivated
855 * immediately or moved to the idle list for a short while.
856 */
857 if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100858 trace_rxrpc_client(conn, channel, rxrpc_client_to_idle);
David Howells45025bc2016-08-24 07:30:52 +0100859 conn->idle_timestamp = jiffies;
860 conn->cache_state = RXRPC_CONN_CLIENT_IDLE;
David Howells2baec2c2017-05-24 17:02:32 +0100861 list_move_tail(&conn->cache_link, &rxnet->idle_client_conns);
862 if (rxnet->idle_client_conns.next == &conn->cache_link &&
863 !rxnet->kill_all_client_conns)
David Howells45025bc2016-08-24 07:30:52 +0100864 queue_delayed_work(rxrpc_workqueue,
David Howells2baec2c2017-05-24 17:02:32 +0100865 &rxnet->client_conn_reaper,
David Howells45025bc2016-08-24 07:30:52 +0100866 rxrpc_conn_idle_client_expiry);
867 } else {
David Howells363deea2016-09-17 10:49:14 +0100868 trace_rxrpc_client(conn, channel, rxrpc_client_to_inactive);
David Howells45025bc2016-08-24 07:30:52 +0100869 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
870 list_del_init(&conn->cache_link);
871 }
872 goto out;
873}
874
875/*
876 * Clean up a dead client connection.
877 */
878static struct rxrpc_connection *
879rxrpc_put_one_client_conn(struct rxrpc_connection *conn)
880{
David Howells66d58af2016-09-17 10:49:12 +0100881 struct rxrpc_connection *next = NULL;
David Howells45025bc2016-08-24 07:30:52 +0100882 struct rxrpc_local *local = conn->params.local;
David Howells2baec2c2017-05-24 17:02:32 +0100883 struct rxrpc_net *rxnet = local->rxnet;
David Howells45025bc2016-08-24 07:30:52 +0100884 unsigned int nr_conns;
885
David Howells363deea2016-09-17 10:49:14 +0100886 trace_rxrpc_client(conn, -1, rxrpc_client_cleanup);
887
David Howells45025bc2016-08-24 07:30:52 +0100888 if (test_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags)) {
889 spin_lock(&local->client_conns_lock);
890 if (test_and_clear_bit(RXRPC_CONN_IN_CLIENT_CONNS,
891 &conn->flags))
892 rb_erase(&conn->client_node, &local->client_conns);
893 spin_unlock(&local->client_conns_lock);
894 }
David Howells001c1122016-06-30 10:45:22 +0100895
896 rxrpc_put_client_connection_id(conn);
David Howells45025bc2016-08-24 07:30:52 +0100897
898 ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_INACTIVE);
899
David Howells66d58af2016-09-17 10:49:12 +0100900 if (test_bit(RXRPC_CONN_COUNTED, &conn->flags)) {
David Howells363deea2016-09-17 10:49:14 +0100901 trace_rxrpc_client(conn, -1, rxrpc_client_uncount);
David Howells2baec2c2017-05-24 17:02:32 +0100902 spin_lock(&rxnet->client_conn_cache_lock);
903 nr_conns = --rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100904
David Howells66d58af2016-09-17 10:49:12 +0100905 if (nr_conns < rxrpc_max_client_connections &&
David Howells2baec2c2017-05-24 17:02:32 +0100906 !list_empty(&rxnet->waiting_client_conns)) {
907 next = list_entry(rxnet->waiting_client_conns.next,
David Howells66d58af2016-09-17 10:49:12 +0100908 struct rxrpc_connection, cache_link);
909 rxrpc_get_connection(next);
David Howells2baec2c2017-05-24 17:02:32 +0100910 rxrpc_activate_conn(rxnet, next);
David Howells66d58af2016-09-17 10:49:12 +0100911 }
David Howells45025bc2016-08-24 07:30:52 +0100912
David Howells2baec2c2017-05-24 17:02:32 +0100913 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100914 }
915
David Howells45025bc2016-08-24 07:30:52 +0100916 rxrpc_kill_connection(conn);
David Howells45025bc2016-08-24 07:30:52 +0100917 if (next)
918 rxrpc_activate_channels(next);
919
920 /* We need to get rid of the temporary ref we took upon next, but we
921 * can't call rxrpc_put_connection() recursively.
922 */
923 return next;
924}
925
926/*
927 * Clean up a dead client connections.
928 */
929void rxrpc_put_client_conn(struct rxrpc_connection *conn)
930{
David Howells363deea2016-09-17 10:49:14 +0100931 const void *here = __builtin_return_address(0);
932 int n;
David Howells45025bc2016-08-24 07:30:52 +0100933
934 do {
David Howells363deea2016-09-17 10:49:14 +0100935 n = atomic_dec_return(&conn->usage);
936 trace_rxrpc_conn(conn, rxrpc_conn_put_client, n, here);
937 if (n > 0)
938 return;
939 ASSERTCMP(n, >=, 0);
David Howells45025bc2016-08-24 07:30:52 +0100940
David Howells363deea2016-09-17 10:49:14 +0100941 conn = rxrpc_put_one_client_conn(conn);
942 } while (conn);
David Howells45025bc2016-08-24 07:30:52 +0100943}
944
945/*
946 * Kill the longest-active client connections to make room for new ones.
947 */
David Howells2baec2c2017-05-24 17:02:32 +0100948static void rxrpc_cull_active_client_conns(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +0100949{
950 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +0100951 unsigned int nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100952 unsigned int nr_active, limit;
953
954 _enter("");
955
956 ASSERTCMP(nr_conns, >=, 0);
957 if (nr_conns < rxrpc_max_client_connections) {
958 _leave(" [ok]");
959 return;
960 }
961 limit = rxrpc_reap_client_connections;
962
David Howells2baec2c2017-05-24 17:02:32 +0100963 spin_lock(&rxnet->client_conn_cache_lock);
964 nr_active = rxnet->nr_active_client_conns;
David Howells45025bc2016-08-24 07:30:52 +0100965
966 while (nr_active > limit) {
David Howells2baec2c2017-05-24 17:02:32 +0100967 ASSERT(!list_empty(&rxnet->active_client_conns));
968 conn = list_entry(rxnet->active_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +0100969 struct rxrpc_connection, cache_link);
David Howells4e255722017-06-05 14:30:49 +0100970 ASSERTIFCMP(conn->cache_state != RXRPC_CONN_CLIENT_ACTIVE,
971 conn->cache_state, ==, RXRPC_CONN_CLIENT_UPGRADE);
David Howells45025bc2016-08-24 07:30:52 +0100972
973 if (list_empty(&conn->waiting_calls)) {
David Howells363deea2016-09-17 10:49:14 +0100974 trace_rxrpc_client(conn, -1, rxrpc_client_to_culled);
David Howells45025bc2016-08-24 07:30:52 +0100975 conn->cache_state = RXRPC_CONN_CLIENT_CULLED;
976 list_del_init(&conn->cache_link);
977 } else {
David Howells363deea2016-09-17 10:49:14 +0100978 trace_rxrpc_client(conn, -1, rxrpc_client_to_waiting);
David Howells45025bc2016-08-24 07:30:52 +0100979 conn->cache_state = RXRPC_CONN_CLIENT_WAITING;
980 list_move_tail(&conn->cache_link,
David Howells2baec2c2017-05-24 17:02:32 +0100981 &rxnet->waiting_client_conns);
David Howells45025bc2016-08-24 07:30:52 +0100982 }
983
984 nr_active--;
985 }
986
David Howells2baec2c2017-05-24 17:02:32 +0100987 rxnet->nr_active_client_conns = nr_active;
988 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +0100989 ASSERTCMP(nr_active, >=, 0);
990 _leave(" [culled]");
991}
992
993/*
994 * Discard expired client connections from the idle list. Each conn in the
995 * idle list has been exposed and holds an extra ref because of that.
996 *
997 * This may be called from conn setup or from a work item so cannot be
998 * considered non-reentrant.
999 */
David Howells2baec2c2017-05-24 17:02:32 +01001000void rxrpc_discard_expired_client_conns(struct work_struct *work)
David Howells45025bc2016-08-24 07:30:52 +01001001{
1002 struct rxrpc_connection *conn;
David Howells2baec2c2017-05-24 17:02:32 +01001003 struct rxrpc_net *rxnet =
1004 container_of(to_delayed_work(work),
1005 struct rxrpc_net, client_conn_reaper);
David Howells45025bc2016-08-24 07:30:52 +01001006 unsigned long expiry, conn_expires_at, now;
1007 unsigned int nr_conns;
1008 bool did_discard = false;
1009
David Howells2baec2c2017-05-24 17:02:32 +01001010 _enter("");
David Howells45025bc2016-08-24 07:30:52 +01001011
David Howells2baec2c2017-05-24 17:02:32 +01001012 if (list_empty(&rxnet->idle_client_conns)) {
David Howells45025bc2016-08-24 07:30:52 +01001013 _leave(" [empty]");
1014 return;
1015 }
1016
1017 /* Don't double up on the discarding */
David Howells2baec2c2017-05-24 17:02:32 +01001018 if (!spin_trylock(&rxnet->client_conn_discard_lock)) {
David Howells45025bc2016-08-24 07:30:52 +01001019 _leave(" [already]");
1020 return;
1021 }
1022
1023 /* We keep an estimate of what the number of conns ought to be after
1024 * we've discarded some so that we don't overdo the discarding.
1025 */
David Howells2baec2c2017-05-24 17:02:32 +01001026 nr_conns = rxnet->nr_client_conns;
David Howells45025bc2016-08-24 07:30:52 +01001027
1028next:
David Howells2baec2c2017-05-24 17:02:32 +01001029 spin_lock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001030
David Howells2baec2c2017-05-24 17:02:32 +01001031 if (list_empty(&rxnet->idle_client_conns))
David Howells45025bc2016-08-24 07:30:52 +01001032 goto out;
1033
David Howells2baec2c2017-05-24 17:02:32 +01001034 conn = list_entry(rxnet->idle_client_conns.next,
David Howells45025bc2016-08-24 07:30:52 +01001035 struct rxrpc_connection, cache_link);
1036 ASSERT(test_bit(RXRPC_CONN_EXPOSED, &conn->flags));
1037
David Howells2baec2c2017-05-24 17:02:32 +01001038 if (!rxnet->kill_all_client_conns) {
David Howells45025bc2016-08-24 07:30:52 +01001039 /* If the number of connections is over the reap limit, we
1040 * expedite discard by reducing the expiry timeout. We must,
1041 * however, have at least a short grace period to be able to do
1042 * final-ACK or ABORT retransmission.
1043 */
1044 expiry = rxrpc_conn_idle_client_expiry;
1045 if (nr_conns > rxrpc_reap_client_connections)
1046 expiry = rxrpc_conn_idle_client_fast_expiry;
1047
1048 conn_expires_at = conn->idle_timestamp + expiry;
1049
1050 now = READ_ONCE(jiffies);
1051 if (time_after(conn_expires_at, now))
1052 goto not_yet_expired;
1053 }
1054
David Howells363deea2016-09-17 10:49:14 +01001055 trace_rxrpc_client(conn, -1, rxrpc_client_discard);
David Howells45025bc2016-08-24 07:30:52 +01001056 if (!test_and_clear_bit(RXRPC_CONN_EXPOSED, &conn->flags))
1057 BUG();
1058 conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE;
1059 list_del_init(&conn->cache_link);
1060
David Howells2baec2c2017-05-24 17:02:32 +01001061 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001062
1063 /* When we cleared the EXPOSED flag, we took on responsibility for the
1064 * reference that that had on the usage count. We deal with that here.
1065 * If someone re-sets the flag and re-gets the ref, that's fine.
1066 */
1067 rxrpc_put_connection(conn);
1068 did_discard = true;
1069 nr_conns--;
1070 goto next;
1071
1072not_yet_expired:
1073 /* The connection at the front of the queue hasn't yet expired, so
1074 * schedule the work item for that point if we discarded something.
1075 *
1076 * We don't worry if the work item is already scheduled - it can look
1077 * after rescheduling itself at a later time. We could cancel it, but
1078 * then things get messier.
1079 */
1080 _debug("not yet");
David Howells2baec2c2017-05-24 17:02:32 +01001081 if (!rxnet->kill_all_client_conns)
David Howells45025bc2016-08-24 07:30:52 +01001082 queue_delayed_work(rxrpc_workqueue,
David Howells2baec2c2017-05-24 17:02:32 +01001083 &rxnet->client_conn_reaper,
David Howells45025bc2016-08-24 07:30:52 +01001084 conn_expires_at - now);
1085
1086out:
David Howells2baec2c2017-05-24 17:02:32 +01001087 spin_unlock(&rxnet->client_conn_cache_lock);
1088 spin_unlock(&rxnet->client_conn_discard_lock);
David Howells45025bc2016-08-24 07:30:52 +01001089 _leave("");
1090}
1091
1092/*
1093 * Preemptively destroy all the client connection records rather than waiting
1094 * for them to time out
1095 */
David Howells2baec2c2017-05-24 17:02:32 +01001096void rxrpc_destroy_all_client_connections(struct rxrpc_net *rxnet)
David Howells45025bc2016-08-24 07:30:52 +01001097{
1098 _enter("");
1099
David Howells2baec2c2017-05-24 17:02:32 +01001100 spin_lock(&rxnet->client_conn_cache_lock);
1101 rxnet->kill_all_client_conns = true;
1102 spin_unlock(&rxnet->client_conn_cache_lock);
David Howells45025bc2016-08-24 07:30:52 +01001103
David Howells2baec2c2017-05-24 17:02:32 +01001104 cancel_delayed_work(&rxnet->client_conn_reaper);
David Howells45025bc2016-08-24 07:30:52 +01001105
David Howells2baec2c2017-05-24 17:02:32 +01001106 if (!queue_delayed_work(rxrpc_workqueue, &rxnet->client_conn_reaper, 0))
David Howells45025bc2016-08-24 07:30:52 +01001107 _debug("destroy: queue failed");
1108
1109 _leave("");
David Howells001c1122016-06-30 10:45:22 +01001110}