David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 1 | /* 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 Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 10 | * |
| 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 | * |
| 34 | * The connection is on the rxrpc_active_client_conns list which is kept |
| 35 | * in activation order for culling purposes. |
| 36 | * |
| 37 | * rxrpc_nr_active_client_conns is held incremented also. |
| 38 | * |
| 39 | * (4) CULLED - The connection got summarily culled to try and free up |
| 40 | * capacity. Calls currently in progress on the connection are allowed to |
| 41 | * continue, but new calls will have to wait. There can be no waiters in |
| 42 | * this state - the conn would have to go to the WAITING state instead. |
| 43 | * |
| 44 | * (5) IDLE - The connection has no calls in progress upon it and must have |
| 45 | * been exposed to the world (ie. the EXPOSED flag must be set). When it |
| 46 | * expires, the EXPOSED flag is cleared and the connection transitions to |
| 47 | * the INACTIVE state. |
| 48 | * |
| 49 | * The connection is on the rxrpc_idle_client_conns list which is kept in |
| 50 | * order of how soon they'll expire. |
| 51 | * |
| 52 | * There are flags of relevance to the cache: |
| 53 | * |
| 54 | * (1) EXPOSED - The connection ID got exposed to the world. If this flag is |
| 55 | * set, an extra ref is added to the connection preventing it from being |
| 56 | * reaped when it has no calls outstanding. This flag is cleared and the |
| 57 | * ref dropped when a conn is discarded from the idle list. |
| 58 | * |
| 59 | * This allows us to move terminal call state retransmission to the |
| 60 | * connection and to discard the call immediately we think it is done |
| 61 | * with. It also give us a chance to reuse the connection. |
| 62 | * |
| 63 | * (2) DONT_REUSE - The connection should be discarded as soon as possible and |
| 64 | * should not be reused. This is set when an exclusive connection is used |
| 65 | * or a call ID counter overflows. |
| 66 | * |
| 67 | * The caching state may only be changed if the cache lock is held. |
| 68 | * |
| 69 | * There are two idle client connection expiry durations. If the total number |
| 70 | * of connections is below the reap threshold, we use the normal duration; if |
| 71 | * it's above, we use the fast duration. |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 72 | */ |
| 73 | |
| 74 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 75 | |
| 76 | #include <linux/slab.h> |
| 77 | #include <linux/idr.h> |
| 78 | #include <linux/timer.h> |
| 79 | #include "ar-internal.h" |
| 80 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 81 | __read_mostly unsigned int rxrpc_max_client_connections = 1000; |
| 82 | __read_mostly unsigned int rxrpc_reap_client_connections = 900; |
| 83 | __read_mostly unsigned int rxrpc_conn_idle_client_expiry = 2 * 60 * HZ; |
| 84 | __read_mostly unsigned int rxrpc_conn_idle_client_fast_expiry = 2 * HZ; |
| 85 | |
| 86 | static unsigned int rxrpc_nr_client_conns; |
| 87 | static unsigned int rxrpc_nr_active_client_conns; |
| 88 | static __read_mostly bool rxrpc_kill_all_client_conns; |
| 89 | |
| 90 | static DEFINE_SPINLOCK(rxrpc_client_conn_cache_lock); |
| 91 | static DEFINE_SPINLOCK(rxrpc_client_conn_discard_mutex); |
| 92 | static LIST_HEAD(rxrpc_waiting_client_conns); |
| 93 | static LIST_HEAD(rxrpc_active_client_conns); |
| 94 | static LIST_HEAD(rxrpc_idle_client_conns); |
| 95 | |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 96 | /* |
| 97 | * We use machine-unique IDs for our client connections. |
| 98 | */ |
| 99 | DEFINE_IDR(rxrpc_client_conn_ids); |
| 100 | static DEFINE_SPINLOCK(rxrpc_conn_id_lock); |
| 101 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 102 | static void rxrpc_cull_active_client_conns(void); |
| 103 | static void rxrpc_discard_expired_client_conns(struct work_struct *); |
| 104 | |
| 105 | static DECLARE_DELAYED_WORK(rxrpc_client_conn_reap, |
| 106 | rxrpc_discard_expired_client_conns); |
| 107 | |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 108 | /* |
| 109 | * Get a connection ID and epoch for a client connection from the global pool. |
| 110 | * The connection struct pointer is then recorded in the idr radix tree. The |
| 111 | * epoch is changed if this wraps. |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 112 | */ |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 113 | static int rxrpc_get_client_connection_id(struct rxrpc_connection *conn, |
| 114 | gfp_t gfp) |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 115 | { |
| 116 | u32 epoch; |
| 117 | int id; |
| 118 | |
| 119 | _enter(""); |
| 120 | |
| 121 | idr_preload(gfp); |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 122 | spin_lock(&rxrpc_conn_id_lock); |
| 123 | |
| 124 | epoch = rxrpc_epoch; |
| 125 | |
| 126 | /* We could use idr_alloc_cyclic() here, but we really need to know |
| 127 | * when the thing wraps so that we can advance the epoch. |
| 128 | */ |
| 129 | if (rxrpc_client_conn_ids.cur == 0) |
| 130 | rxrpc_client_conn_ids.cur = 1; |
| 131 | id = idr_alloc(&rxrpc_client_conn_ids, conn, |
| 132 | rxrpc_client_conn_ids.cur, 0x40000000, GFP_NOWAIT); |
| 133 | if (id < 0) { |
| 134 | if (id != -ENOSPC) |
| 135 | goto error; |
| 136 | id = idr_alloc(&rxrpc_client_conn_ids, conn, |
| 137 | 1, 0x40000000, GFP_NOWAIT); |
| 138 | if (id < 0) |
| 139 | goto error; |
| 140 | epoch++; |
| 141 | rxrpc_epoch = epoch; |
| 142 | } |
| 143 | rxrpc_client_conn_ids.cur = id + 1; |
| 144 | |
| 145 | spin_unlock(&rxrpc_conn_id_lock); |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 146 | idr_preload_end(); |
| 147 | |
| 148 | conn->proto.epoch = epoch; |
| 149 | conn->proto.cid = id << RXRPC_CIDSHIFT; |
| 150 | set_bit(RXRPC_CONN_HAS_IDR, &conn->flags); |
| 151 | _leave(" [CID %x:%x]", epoch, conn->proto.cid); |
| 152 | return 0; |
| 153 | |
| 154 | error: |
| 155 | spin_unlock(&rxrpc_conn_id_lock); |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 156 | idr_preload_end(); |
| 157 | _leave(" = %d", id); |
| 158 | return id; |
| 159 | } |
| 160 | |
| 161 | /* |
| 162 | * Release a connection ID for a client connection from the global pool. |
| 163 | */ |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 164 | static void rxrpc_put_client_connection_id(struct rxrpc_connection *conn) |
David Howells | 4a3388c | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 165 | { |
| 166 | if (test_bit(RXRPC_CONN_HAS_IDR, &conn->flags)) { |
| 167 | spin_lock(&rxrpc_conn_id_lock); |
| 168 | idr_remove(&rxrpc_client_conn_ids, |
| 169 | conn->proto.cid >> RXRPC_CIDSHIFT); |
| 170 | spin_unlock(&rxrpc_conn_id_lock); |
| 171 | } |
| 172 | } |
David Howells | eb9b9d2 | 2016-06-27 10:32:02 +0100 | [diff] [blame] | 173 | |
| 174 | /* |
| 175 | * Destroy the client connection ID tree. |
| 176 | */ |
| 177 | void rxrpc_destroy_client_conn_ids(void) |
| 178 | { |
| 179 | struct rxrpc_connection *conn; |
| 180 | int id; |
| 181 | |
| 182 | if (!idr_is_empty(&rxrpc_client_conn_ids)) { |
| 183 | idr_for_each_entry(&rxrpc_client_conn_ids, conn, id) { |
| 184 | pr_err("AF_RXRPC: Leaked client conn %p {%d}\n", |
| 185 | conn, atomic_read(&conn->usage)); |
| 186 | } |
| 187 | BUG(); |
| 188 | } |
| 189 | |
| 190 | idr_destroy(&rxrpc_client_conn_ids); |
| 191 | } |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 192 | |
| 193 | /* |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 194 | * Allocate a client connection. |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 195 | */ |
| 196 | static struct rxrpc_connection * |
| 197 | rxrpc_alloc_client_connection(struct rxrpc_conn_parameters *cp, gfp_t gfp) |
| 198 | { |
| 199 | struct rxrpc_connection *conn; |
| 200 | int ret; |
| 201 | |
| 202 | _enter(""); |
| 203 | |
| 204 | conn = rxrpc_alloc_connection(gfp); |
| 205 | if (!conn) { |
| 206 | _leave(" = -ENOMEM"); |
| 207 | return ERR_PTR(-ENOMEM); |
| 208 | } |
| 209 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 210 | atomic_set(&conn->usage, 1); |
| 211 | if (conn->params.exclusive) |
| 212 | __set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags); |
| 213 | |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 214 | conn->params = *cp; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 215 | conn->out_clientflag = RXRPC_CLIENT_INITIATED; |
| 216 | conn->state = RXRPC_CONN_CLIENT; |
| 217 | |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 218 | ret = rxrpc_get_client_connection_id(conn, gfp); |
| 219 | if (ret < 0) |
| 220 | goto error_0; |
| 221 | |
| 222 | ret = rxrpc_init_client_conn_security(conn); |
| 223 | if (ret < 0) |
| 224 | goto error_1; |
| 225 | |
| 226 | ret = conn->security->prime_packet_security(conn); |
| 227 | if (ret < 0) |
| 228 | goto error_2; |
| 229 | |
| 230 | write_lock(&rxrpc_connection_lock); |
David Howells | 4d028b2 | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 231 | list_add_tail(&conn->proc_link, &rxrpc_connection_proc_list); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 232 | write_unlock(&rxrpc_connection_lock); |
| 233 | |
| 234 | /* We steal the caller's peer ref. */ |
| 235 | cp->peer = NULL; |
| 236 | rxrpc_get_local(conn->params.local); |
| 237 | key_get(conn->params.key); |
| 238 | |
| 239 | _leave(" = %p", conn); |
| 240 | return conn; |
| 241 | |
| 242 | error_2: |
| 243 | conn->security->clear(conn); |
| 244 | error_1: |
| 245 | rxrpc_put_client_connection_id(conn); |
| 246 | error_0: |
| 247 | kfree(conn); |
| 248 | _leave(" = %d", ret); |
| 249 | return ERR_PTR(ret); |
| 250 | } |
| 251 | |
| 252 | /* |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 253 | * Determine if a connection may be reused. |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 254 | */ |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 255 | static bool rxrpc_may_reuse_conn(struct rxrpc_connection *conn) |
| 256 | { |
| 257 | int id_cursor, id, distance, limit; |
| 258 | |
| 259 | if (test_bit(RXRPC_CONN_DONT_REUSE, &conn->flags)) |
| 260 | goto dont_reuse; |
| 261 | |
| 262 | if (conn->proto.epoch != rxrpc_epoch) |
| 263 | goto mark_dont_reuse; |
| 264 | |
| 265 | /* The IDR tree gets very expensive on memory if the connection IDs are |
| 266 | * widely scattered throughout the number space, so we shall want to |
| 267 | * kill off connections that, say, have an ID more than about four |
| 268 | * times the maximum number of client conns away from the current |
| 269 | * allocation point to try and keep the IDs concentrated. |
| 270 | */ |
| 271 | id_cursor = READ_ONCE(rxrpc_client_conn_ids.cur); |
| 272 | id = conn->proto.cid >> RXRPC_CIDSHIFT; |
| 273 | distance = id - id_cursor; |
| 274 | if (distance < 0) |
| 275 | distance = -distance; |
| 276 | limit = round_up(rxrpc_max_client_connections, IDR_SIZE) * 4; |
| 277 | if (distance > limit) |
| 278 | goto mark_dont_reuse; |
| 279 | |
| 280 | return true; |
| 281 | |
| 282 | mark_dont_reuse: |
| 283 | set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags); |
| 284 | dont_reuse: |
| 285 | return false; |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | * Create or find a client connection to use for a call. |
| 290 | * |
| 291 | * If we return with a connection, the call will be on its waiting list. It's |
| 292 | * left to the caller to assign a channel and wake up the call. |
| 293 | */ |
| 294 | static int rxrpc_get_client_conn(struct rxrpc_call *call, |
| 295 | struct rxrpc_conn_parameters *cp, |
| 296 | struct sockaddr_rxrpc *srx, |
| 297 | gfp_t gfp) |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 298 | { |
| 299 | struct rxrpc_connection *conn, *candidate = NULL; |
| 300 | struct rxrpc_local *local = cp->local; |
| 301 | struct rb_node *p, **pp, *parent; |
| 302 | long diff; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 303 | int ret = -ENOMEM; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 304 | |
| 305 | _enter("{%d,%lx},", call->debug_id, call->user_call_ID); |
| 306 | |
| 307 | cp->peer = rxrpc_lookup_peer(cp->local, srx, gfp); |
| 308 | if (!cp->peer) |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 309 | goto error; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 310 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 311 | /* If the connection is not meant to be exclusive, search the available |
| 312 | * connections to see if the connection we want to use already exists. |
| 313 | */ |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 314 | if (!cp->exclusive) { |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 315 | _debug("search 1"); |
| 316 | spin_lock(&local->client_conns_lock); |
| 317 | p = local->client_conns.rb_node; |
| 318 | while (p) { |
| 319 | conn = rb_entry(p, struct rxrpc_connection, client_node); |
| 320 | |
| 321 | #define cmp(X) ((long)conn->params.X - (long)cp->X) |
| 322 | diff = (cmp(peer) ?: |
| 323 | cmp(key) ?: |
| 324 | cmp(security_level)); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 325 | #undef cmp |
| 326 | if (diff < 0) { |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 327 | p = p->rb_left; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 328 | } else if (diff > 0) { |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 329 | p = p->rb_right; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 330 | } else { |
| 331 | if (rxrpc_may_reuse_conn(conn) && |
| 332 | rxrpc_get_connection_maybe(conn)) |
| 333 | goto found_extant_conn; |
| 334 | /* The connection needs replacing. It's better |
| 335 | * to effect that when we have something to |
| 336 | * replace it with so that we don't have to |
| 337 | * rebalance the tree twice. |
| 338 | */ |
| 339 | break; |
| 340 | } |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 341 | } |
| 342 | spin_unlock(&local->client_conns_lock); |
| 343 | } |
| 344 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 345 | /* There wasn't a connection yet or we need an exclusive connection. |
| 346 | * We need to create a candidate and then potentially redo the search |
| 347 | * in case we're racing with another thread also trying to connect on a |
| 348 | * shareable connection. |
| 349 | */ |
| 350 | _debug("new conn"); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 351 | candidate = rxrpc_alloc_client_connection(cp, gfp); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 352 | if (IS_ERR(candidate)) { |
| 353 | ret = PTR_ERR(candidate); |
| 354 | goto error_peer; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 355 | } |
| 356 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 357 | /* Add the call to the new connection's waiting list in case we're |
| 358 | * going to have to wait for the connection to come live. It's our |
| 359 | * connection, so we want first dibs on the channel slots. We would |
| 360 | * normally have to take channel_lock but we do this before anyone else |
| 361 | * can see the connection. |
| 362 | */ |
| 363 | list_add_tail(&call->chan_wait_link, &candidate->waiting_calls); |
| 364 | |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 365 | if (cp->exclusive) { |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 366 | call->conn = candidate; |
| 367 | _leave(" = 0 [exclusive %d]", candidate->debug_id); |
| 368 | return 0; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 369 | } |
| 370 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 371 | /* Publish the new connection for userspace to find. We need to redo |
| 372 | * the search before doing this lest we race with someone else adding a |
| 373 | * conflicting instance. |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 374 | */ |
| 375 | _debug("search 2"); |
| 376 | spin_lock(&local->client_conns_lock); |
| 377 | |
| 378 | pp = &local->client_conns.rb_node; |
| 379 | parent = NULL; |
| 380 | while (*pp) { |
| 381 | parent = *pp; |
| 382 | conn = rb_entry(parent, struct rxrpc_connection, client_node); |
| 383 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 384 | #define cmp(X) ((long)conn->params.X - (long)candidate->params.X) |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 385 | diff = (cmp(peer) ?: |
| 386 | cmp(key) ?: |
| 387 | cmp(security_level)); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 388 | #undef cmp |
| 389 | if (diff < 0) { |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 390 | pp = &(*pp)->rb_left; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 391 | } else if (diff > 0) { |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 392 | pp = &(*pp)->rb_right; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 393 | } else { |
| 394 | if (rxrpc_may_reuse_conn(conn) && |
| 395 | rxrpc_get_connection_maybe(conn)) |
| 396 | goto found_extant_conn; |
| 397 | /* The old connection is from an outdated epoch. */ |
| 398 | _debug("replace conn"); |
| 399 | clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags); |
| 400 | rb_replace_node(&conn->client_node, |
| 401 | &candidate->client_node, |
| 402 | &local->client_conns); |
| 403 | goto candidate_published; |
| 404 | } |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 405 | } |
| 406 | |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 407 | _debug("new conn"); |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 408 | rb_link_node(&candidate->client_node, parent, pp); |
| 409 | rb_insert_color(&candidate->client_node, &local->client_conns); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 410 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 411 | candidate_published: |
| 412 | set_bit(RXRPC_CONN_IN_CLIENT_CONNS, &candidate->flags); |
| 413 | call->conn = candidate; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 414 | spin_unlock(&local->client_conns_lock); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 415 | _leave(" = 0 [new %d]", candidate->debug_id); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 416 | return 0; |
| 417 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 418 | /* We come here if we found a suitable connection already in existence. |
| 419 | * Discard any candidate we may have allocated, and try to get a |
| 420 | * channel on this one. |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 421 | */ |
| 422 | found_extant_conn: |
| 423 | _debug("found conn"); |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 424 | spin_unlock(&local->client_conns_lock); |
| 425 | |
| 426 | rxrpc_put_connection(candidate); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 427 | candidate = NULL; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 428 | |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 429 | spin_lock(&conn->channel_lock); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 430 | call->conn = conn; |
| 431 | list_add(&call->chan_wait_link, &conn->waiting_calls); |
| 432 | spin_unlock(&conn->channel_lock); |
| 433 | _leave(" = 0 [extant %d]", conn->debug_id); |
| 434 | return 0; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 435 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 436 | error_peer: |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 437 | rxrpc_put_peer(cp->peer); |
| 438 | cp->peer = NULL; |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 439 | error: |
| 440 | _leave(" = %d", ret); |
| 441 | return ret; |
David Howells | c6d2b8d | 2016-04-04 14:00:40 +0100 | [diff] [blame] | 442 | } |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 443 | |
| 444 | /* |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 445 | * Activate a connection. |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 446 | */ |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 447 | static void rxrpc_activate_conn(struct rxrpc_connection *conn) |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 448 | { |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 449 | conn->cache_state = RXRPC_CONN_CLIENT_ACTIVE; |
| 450 | rxrpc_nr_active_client_conns++; |
| 451 | list_move_tail(&conn->cache_link, &rxrpc_active_client_conns); |
| 452 | } |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 453 | |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 454 | /* |
| 455 | * Attempt to animate a connection for a new call. |
| 456 | * |
| 457 | * If it's not exclusive, the connection is in the endpoint tree, and we're in |
| 458 | * the conn's list of those waiting to grab a channel. There is, however, a |
| 459 | * limit on the number of live connections allowed at any one time, so we may |
| 460 | * have to wait for capacity to become available. |
| 461 | * |
| 462 | * Note that a connection on the waiting queue might *also* have active |
| 463 | * channels if it has been culled to make space and then re-requested by a new |
| 464 | * call. |
| 465 | */ |
| 466 | static void rxrpc_animate_client_conn(struct rxrpc_connection *conn) |
| 467 | { |
| 468 | unsigned int nr_conns; |
| 469 | |
| 470 | _enter("%d,%d", conn->debug_id, conn->cache_state); |
| 471 | |
| 472 | if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE) |
| 473 | goto out; |
| 474 | |
| 475 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 476 | |
| 477 | nr_conns = rxrpc_nr_client_conns; |
| 478 | if (!test_and_set_bit(RXRPC_CONN_COUNTED, &conn->flags)) |
| 479 | rxrpc_nr_client_conns = nr_conns + 1; |
| 480 | |
| 481 | switch (conn->cache_state) { |
| 482 | case RXRPC_CONN_CLIENT_ACTIVE: |
| 483 | case RXRPC_CONN_CLIENT_WAITING: |
| 484 | break; |
| 485 | |
| 486 | case RXRPC_CONN_CLIENT_INACTIVE: |
| 487 | case RXRPC_CONN_CLIENT_CULLED: |
| 488 | case RXRPC_CONN_CLIENT_IDLE: |
| 489 | if (nr_conns >= rxrpc_max_client_connections) |
| 490 | goto wait_for_capacity; |
| 491 | goto activate_conn; |
| 492 | |
| 493 | default: |
| 494 | BUG(); |
| 495 | } |
| 496 | |
| 497 | out_unlock: |
| 498 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 499 | out: |
| 500 | _leave(" [%d]", conn->cache_state); |
| 501 | return; |
| 502 | |
| 503 | activate_conn: |
| 504 | _debug("activate"); |
| 505 | rxrpc_activate_conn(conn); |
| 506 | goto out_unlock; |
| 507 | |
| 508 | wait_for_capacity: |
| 509 | _debug("wait"); |
| 510 | conn->cache_state = RXRPC_CONN_CLIENT_WAITING; |
| 511 | list_move_tail(&conn->cache_link, &rxrpc_waiting_client_conns); |
| 512 | goto out_unlock; |
| 513 | } |
| 514 | |
| 515 | /* |
| 516 | * Deactivate a channel. |
| 517 | */ |
| 518 | static void rxrpc_deactivate_one_channel(struct rxrpc_connection *conn, |
| 519 | unsigned int channel) |
| 520 | { |
| 521 | struct rxrpc_channel *chan = &conn->channels[channel]; |
| 522 | |
| 523 | rcu_assign_pointer(chan->call, NULL); |
| 524 | conn->active_chans &= ~(1 << channel); |
| 525 | } |
| 526 | |
| 527 | /* |
| 528 | * Assign a channel to the call at the front of the queue and wake the call up. |
| 529 | * We don't increment the callNumber counter until this number has been exposed |
| 530 | * to the world. |
| 531 | */ |
| 532 | static void rxrpc_activate_one_channel(struct rxrpc_connection *conn, |
| 533 | unsigned int channel) |
| 534 | { |
| 535 | struct rxrpc_channel *chan = &conn->channels[channel]; |
| 536 | struct rxrpc_call *call = list_entry(conn->waiting_calls.next, |
| 537 | struct rxrpc_call, chan_wait_link); |
| 538 | u32 call_id = chan->call_counter + 1; |
| 539 | |
David Howells | e34d423 | 2016-08-30 09:49:29 +0100 | [diff] [blame^] | 540 | rxrpc_see_call(call); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 541 | list_del_init(&call->chan_wait_link); |
| 542 | conn->active_chans |= 1 << channel; |
| 543 | call->peer = rxrpc_get_peer(conn->params.peer); |
| 544 | call->cid = conn->proto.cid | channel; |
| 545 | call->call_id = call_id; |
| 546 | |
| 547 | _net("CONNECT call %08x:%08x as call %d on conn %d", |
| 548 | call->cid, call->call_id, call->debug_id, conn->debug_id); |
| 549 | |
| 550 | /* Paired with the read barrier in rxrpc_wait_for_channel(). This |
| 551 | * orders cid and epoch in the connection wrt to call_id without the |
| 552 | * need to take the channel_lock. |
| 553 | * |
| 554 | * We provisionally assign a callNumber at this point, but we don't |
| 555 | * confirm it until the call is about to be exposed. |
| 556 | * |
| 557 | * TODO: Pair with a barrier in the data_ready handler when that looks |
| 558 | * at the call ID through a connection channel. |
| 559 | */ |
| 560 | smp_wmb(); |
| 561 | chan->call_id = call_id; |
| 562 | rcu_assign_pointer(chan->call, call); |
| 563 | wake_up(&call->waitq); |
| 564 | } |
| 565 | |
| 566 | /* |
| 567 | * Assign channels and callNumbers to waiting calls. |
| 568 | */ |
| 569 | static void rxrpc_activate_channels(struct rxrpc_connection *conn) |
| 570 | { |
| 571 | unsigned char mask; |
| 572 | |
| 573 | _enter("%d", conn->debug_id); |
| 574 | |
| 575 | if (conn->cache_state != RXRPC_CONN_CLIENT_ACTIVE || |
| 576 | conn->active_chans == RXRPC_ACTIVE_CHANS_MASK) |
| 577 | return; |
| 578 | |
| 579 | spin_lock(&conn->channel_lock); |
| 580 | |
| 581 | while (!list_empty(&conn->waiting_calls) && |
| 582 | (mask = ~conn->active_chans, |
| 583 | mask &= RXRPC_ACTIVE_CHANS_MASK, |
| 584 | mask != 0)) |
| 585 | rxrpc_activate_one_channel(conn, __ffs(mask)); |
| 586 | |
| 587 | spin_unlock(&conn->channel_lock); |
| 588 | _leave(""); |
| 589 | } |
| 590 | |
| 591 | /* |
| 592 | * Wait for a callNumber and a channel to be granted to a call. |
| 593 | */ |
| 594 | static int rxrpc_wait_for_channel(struct rxrpc_call *call, gfp_t gfp) |
| 595 | { |
| 596 | int ret = 0; |
| 597 | |
| 598 | _enter("%d", call->debug_id); |
| 599 | |
| 600 | if (!call->call_id) { |
| 601 | DECLARE_WAITQUEUE(myself, current); |
| 602 | |
| 603 | if (!gfpflags_allow_blocking(gfp)) { |
| 604 | ret = -EAGAIN; |
| 605 | goto out; |
| 606 | } |
| 607 | |
| 608 | add_wait_queue_exclusive(&call->waitq, &myself); |
| 609 | for (;;) { |
| 610 | set_current_state(TASK_INTERRUPTIBLE); |
| 611 | if (call->call_id) |
| 612 | break; |
| 613 | if (signal_pending(current)) { |
| 614 | ret = -ERESTARTSYS; |
| 615 | break; |
| 616 | } |
| 617 | schedule(); |
| 618 | } |
| 619 | remove_wait_queue(&call->waitq, &myself); |
| 620 | __set_current_state(TASK_RUNNING); |
| 621 | } |
| 622 | |
| 623 | /* Paired with the write barrier in rxrpc_activate_one_channel(). */ |
| 624 | smp_rmb(); |
| 625 | |
| 626 | out: |
| 627 | _leave(" = %d", ret); |
| 628 | return ret; |
| 629 | } |
| 630 | |
| 631 | /* |
| 632 | * find a connection for a call |
| 633 | * - called in process context with IRQs enabled |
| 634 | */ |
| 635 | int rxrpc_connect_call(struct rxrpc_call *call, |
| 636 | struct rxrpc_conn_parameters *cp, |
| 637 | struct sockaddr_rxrpc *srx, |
| 638 | gfp_t gfp) |
| 639 | { |
| 640 | int ret; |
| 641 | |
| 642 | _enter("{%d,%lx},", call->debug_id, call->user_call_ID); |
| 643 | |
| 644 | rxrpc_discard_expired_client_conns(NULL); |
| 645 | rxrpc_cull_active_client_conns(); |
| 646 | |
| 647 | ret = rxrpc_get_client_conn(call, cp, srx, gfp); |
| 648 | if (ret < 0) |
| 649 | return ret; |
| 650 | |
| 651 | rxrpc_animate_client_conn(call->conn); |
| 652 | rxrpc_activate_channels(call->conn); |
| 653 | |
| 654 | ret = rxrpc_wait_for_channel(call, gfp); |
| 655 | if (ret < 0) |
| 656 | rxrpc_disconnect_client_call(call); |
| 657 | |
| 658 | _leave(" = %d", ret); |
| 659 | return ret; |
| 660 | } |
| 661 | |
| 662 | /* |
| 663 | * Note that a connection is about to be exposed to the world. Once it is |
| 664 | * exposed, we maintain an extra ref on it that stops it from being summarily |
| 665 | * discarded before it's (a) had a chance to deal with retransmission and (b) |
| 666 | * had a chance at re-use (the per-connection security negotiation is |
| 667 | * expensive). |
| 668 | */ |
| 669 | static void rxrpc_expose_client_conn(struct rxrpc_connection *conn) |
| 670 | { |
| 671 | if (!test_and_set_bit(RXRPC_CONN_EXPOSED, &conn->flags)) |
| 672 | rxrpc_get_connection(conn); |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Note that a call, and thus a connection, is about to be exposed to the |
| 677 | * world. |
| 678 | */ |
| 679 | void rxrpc_expose_client_call(struct rxrpc_call *call) |
| 680 | { |
| 681 | struct rxrpc_connection *conn = call->conn; |
| 682 | struct rxrpc_channel *chan = |
| 683 | &conn->channels[call->cid & RXRPC_CHANNELMASK]; |
| 684 | |
| 685 | if (!test_and_set_bit(RXRPC_CALL_EXPOSED, &call->flags)) { |
| 686 | /* Mark the call ID as being used. If the callNumber counter |
| 687 | * exceeds ~2 billion, we kill the connection after its |
| 688 | * outstanding calls have finished so that the counter doesn't |
| 689 | * wrap. |
| 690 | */ |
| 691 | chan->call_counter++; |
| 692 | if (chan->call_counter >= INT_MAX) |
| 693 | set_bit(RXRPC_CONN_DONT_REUSE, &conn->flags); |
| 694 | rxrpc_expose_client_conn(conn); |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | /* |
| 699 | * Disconnect a client call. |
| 700 | */ |
| 701 | void rxrpc_disconnect_client_call(struct rxrpc_call *call) |
| 702 | { |
| 703 | unsigned int channel = call->cid & RXRPC_CHANNELMASK; |
| 704 | struct rxrpc_connection *conn = call->conn; |
| 705 | struct rxrpc_channel *chan = &conn->channels[channel]; |
| 706 | |
| 707 | call->conn = NULL; |
| 708 | |
| 709 | spin_lock(&conn->channel_lock); |
| 710 | |
| 711 | /* Calls that have never actually been assigned a channel can simply be |
| 712 | * discarded. If the conn didn't get used either, it will follow |
| 713 | * immediately unless someone else grabs it in the meantime. |
| 714 | */ |
| 715 | if (!list_empty(&call->chan_wait_link)) { |
| 716 | _debug("call is waiting"); |
| 717 | ASSERTCMP(call->call_id, ==, 0); |
| 718 | ASSERT(!test_bit(RXRPC_CALL_EXPOSED, &call->flags)); |
| 719 | list_del_init(&call->chan_wait_link); |
| 720 | |
| 721 | /* We must deactivate or idle the connection if it's now |
| 722 | * waiting for nothing. |
| 723 | */ |
| 724 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 725 | if (conn->cache_state == RXRPC_CONN_CLIENT_WAITING && |
| 726 | list_empty(&conn->waiting_calls) && |
| 727 | !conn->active_chans) |
| 728 | goto idle_connection; |
| 729 | goto out; |
| 730 | } |
| 731 | |
| 732 | ASSERTCMP(rcu_access_pointer(chan->call), ==, call); |
| 733 | ASSERTCMP(atomic_read(&conn->usage), >=, 2); |
| 734 | |
| 735 | /* If a client call was exposed to the world, we save the result for |
| 736 | * retransmission. |
| 737 | * |
| 738 | * We use a barrier here so that the call number and abort code can be |
| 739 | * read without needing to take a lock. |
| 740 | * |
| 741 | * TODO: Make the incoming packet handler check this and handle |
| 742 | * terminal retransmission without requiring access to the call. |
| 743 | */ |
| 744 | if (test_bit(RXRPC_CALL_EXPOSED, &call->flags)) { |
David Howells | f5c17aa | 2016-08-30 09:49:28 +0100 | [diff] [blame] | 745 | _debug("exposed %u,%u", call->call_id, call->abort_code); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 746 | __rxrpc_disconnect_call(conn, call); |
| 747 | } |
| 748 | |
| 749 | /* See if we can pass the channel directly to another call. */ |
| 750 | if (conn->cache_state == RXRPC_CONN_CLIENT_ACTIVE && |
| 751 | !list_empty(&conn->waiting_calls)) { |
| 752 | _debug("pass chan"); |
| 753 | rxrpc_activate_one_channel(conn, channel); |
| 754 | goto out_2; |
| 755 | } |
| 756 | |
| 757 | /* Things are more complex and we need the cache lock. We might be |
| 758 | * able to simply idle the conn or it might now be lurking on the wait |
| 759 | * list. It might even get moved back to the active list whilst we're |
| 760 | * waiting for the lock. |
| 761 | */ |
| 762 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 763 | |
| 764 | switch (conn->cache_state) { |
| 765 | case RXRPC_CONN_CLIENT_ACTIVE: |
| 766 | if (list_empty(&conn->waiting_calls)) { |
| 767 | rxrpc_deactivate_one_channel(conn, channel); |
| 768 | if (!conn->active_chans) { |
| 769 | rxrpc_nr_active_client_conns--; |
| 770 | goto idle_connection; |
| 771 | } |
| 772 | goto out; |
| 773 | } |
| 774 | |
| 775 | _debug("pass chan 2"); |
| 776 | rxrpc_activate_one_channel(conn, channel); |
| 777 | goto out; |
| 778 | |
| 779 | case RXRPC_CONN_CLIENT_CULLED: |
| 780 | rxrpc_deactivate_one_channel(conn, channel); |
| 781 | ASSERT(list_empty(&conn->waiting_calls)); |
| 782 | if (!conn->active_chans) |
| 783 | goto idle_connection; |
| 784 | goto out; |
| 785 | |
| 786 | case RXRPC_CONN_CLIENT_WAITING: |
| 787 | rxrpc_deactivate_one_channel(conn, channel); |
| 788 | goto out; |
| 789 | |
| 790 | default: |
| 791 | BUG(); |
| 792 | } |
| 793 | |
| 794 | out: |
| 795 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 796 | out_2: |
| 797 | spin_unlock(&conn->channel_lock); |
| 798 | rxrpc_put_connection(conn); |
| 799 | _leave(""); |
| 800 | return; |
| 801 | |
| 802 | idle_connection: |
| 803 | /* As no channels remain active, the connection gets deactivated |
| 804 | * immediately or moved to the idle list for a short while. |
| 805 | */ |
| 806 | if (test_bit(RXRPC_CONN_EXPOSED, &conn->flags)) { |
| 807 | _debug("make idle"); |
| 808 | conn->idle_timestamp = jiffies; |
| 809 | conn->cache_state = RXRPC_CONN_CLIENT_IDLE; |
| 810 | list_move_tail(&conn->cache_link, &rxrpc_idle_client_conns); |
| 811 | if (rxrpc_idle_client_conns.next == &conn->cache_link && |
| 812 | !rxrpc_kill_all_client_conns) |
| 813 | queue_delayed_work(rxrpc_workqueue, |
| 814 | &rxrpc_client_conn_reap, |
| 815 | rxrpc_conn_idle_client_expiry); |
| 816 | } else { |
| 817 | _debug("make inactive"); |
| 818 | conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE; |
| 819 | list_del_init(&conn->cache_link); |
| 820 | } |
| 821 | goto out; |
| 822 | } |
| 823 | |
| 824 | /* |
| 825 | * Clean up a dead client connection. |
| 826 | */ |
| 827 | static struct rxrpc_connection * |
| 828 | rxrpc_put_one_client_conn(struct rxrpc_connection *conn) |
| 829 | { |
| 830 | struct rxrpc_connection *next; |
| 831 | struct rxrpc_local *local = conn->params.local; |
| 832 | unsigned int nr_conns; |
| 833 | |
| 834 | if (test_bit(RXRPC_CONN_IN_CLIENT_CONNS, &conn->flags)) { |
| 835 | spin_lock(&local->client_conns_lock); |
| 836 | if (test_and_clear_bit(RXRPC_CONN_IN_CLIENT_CONNS, |
| 837 | &conn->flags)) |
| 838 | rb_erase(&conn->client_node, &local->client_conns); |
| 839 | spin_unlock(&local->client_conns_lock); |
| 840 | } |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 841 | |
| 842 | rxrpc_put_client_connection_id(conn); |
David Howells | 45025bc | 2016-08-24 07:30:52 +0100 | [diff] [blame] | 843 | |
| 844 | ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_INACTIVE); |
| 845 | |
| 846 | if (!test_bit(RXRPC_CONN_COUNTED, &conn->flags)) |
| 847 | return NULL; |
| 848 | |
| 849 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 850 | nr_conns = --rxrpc_nr_client_conns; |
| 851 | |
| 852 | next = NULL; |
| 853 | if (nr_conns < rxrpc_max_client_connections && |
| 854 | !list_empty(&rxrpc_waiting_client_conns)) { |
| 855 | next = list_entry(rxrpc_waiting_client_conns.next, |
| 856 | struct rxrpc_connection, cache_link); |
| 857 | rxrpc_get_connection(next); |
| 858 | rxrpc_activate_conn(next); |
| 859 | } |
| 860 | |
| 861 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 862 | rxrpc_kill_connection(conn); |
| 863 | |
| 864 | if (next) |
| 865 | rxrpc_activate_channels(next); |
| 866 | |
| 867 | /* We need to get rid of the temporary ref we took upon next, but we |
| 868 | * can't call rxrpc_put_connection() recursively. |
| 869 | */ |
| 870 | return next; |
| 871 | } |
| 872 | |
| 873 | /* |
| 874 | * Clean up a dead client connections. |
| 875 | */ |
| 876 | void rxrpc_put_client_conn(struct rxrpc_connection *conn) |
| 877 | { |
| 878 | struct rxrpc_connection *next; |
| 879 | |
| 880 | do { |
| 881 | _enter("%p{u=%d,d=%d}", |
| 882 | conn, atomic_read(&conn->usage), conn->debug_id); |
| 883 | |
| 884 | next = rxrpc_put_one_client_conn(conn); |
| 885 | |
| 886 | if (!next) |
| 887 | break; |
| 888 | conn = next; |
| 889 | } while (atomic_dec_and_test(&conn->usage)); |
| 890 | |
| 891 | _leave(""); |
| 892 | } |
| 893 | |
| 894 | /* |
| 895 | * Kill the longest-active client connections to make room for new ones. |
| 896 | */ |
| 897 | static void rxrpc_cull_active_client_conns(void) |
| 898 | { |
| 899 | struct rxrpc_connection *conn; |
| 900 | unsigned int nr_conns = rxrpc_nr_client_conns; |
| 901 | unsigned int nr_active, limit; |
| 902 | |
| 903 | _enter(""); |
| 904 | |
| 905 | ASSERTCMP(nr_conns, >=, 0); |
| 906 | if (nr_conns < rxrpc_max_client_connections) { |
| 907 | _leave(" [ok]"); |
| 908 | return; |
| 909 | } |
| 910 | limit = rxrpc_reap_client_connections; |
| 911 | |
| 912 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 913 | nr_active = rxrpc_nr_active_client_conns; |
| 914 | |
| 915 | while (nr_active > limit) { |
| 916 | ASSERT(!list_empty(&rxrpc_active_client_conns)); |
| 917 | conn = list_entry(rxrpc_active_client_conns.next, |
| 918 | struct rxrpc_connection, cache_link); |
| 919 | ASSERTCMP(conn->cache_state, ==, RXRPC_CONN_CLIENT_ACTIVE); |
| 920 | |
| 921 | if (list_empty(&conn->waiting_calls)) { |
| 922 | conn->cache_state = RXRPC_CONN_CLIENT_CULLED; |
| 923 | list_del_init(&conn->cache_link); |
| 924 | } else { |
| 925 | conn->cache_state = RXRPC_CONN_CLIENT_WAITING; |
| 926 | list_move_tail(&conn->cache_link, |
| 927 | &rxrpc_waiting_client_conns); |
| 928 | } |
| 929 | |
| 930 | nr_active--; |
| 931 | } |
| 932 | |
| 933 | rxrpc_nr_active_client_conns = nr_active; |
| 934 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 935 | ASSERTCMP(nr_active, >=, 0); |
| 936 | _leave(" [culled]"); |
| 937 | } |
| 938 | |
| 939 | /* |
| 940 | * Discard expired client connections from the idle list. Each conn in the |
| 941 | * idle list has been exposed and holds an extra ref because of that. |
| 942 | * |
| 943 | * This may be called from conn setup or from a work item so cannot be |
| 944 | * considered non-reentrant. |
| 945 | */ |
| 946 | static void rxrpc_discard_expired_client_conns(struct work_struct *work) |
| 947 | { |
| 948 | struct rxrpc_connection *conn; |
| 949 | unsigned long expiry, conn_expires_at, now; |
| 950 | unsigned int nr_conns; |
| 951 | bool did_discard = false; |
| 952 | |
| 953 | _enter("%c", work ? 'w' : 'n'); |
| 954 | |
| 955 | if (list_empty(&rxrpc_idle_client_conns)) { |
| 956 | _leave(" [empty]"); |
| 957 | return; |
| 958 | } |
| 959 | |
| 960 | /* Don't double up on the discarding */ |
| 961 | if (!spin_trylock(&rxrpc_client_conn_discard_mutex)) { |
| 962 | _leave(" [already]"); |
| 963 | return; |
| 964 | } |
| 965 | |
| 966 | /* We keep an estimate of what the number of conns ought to be after |
| 967 | * we've discarded some so that we don't overdo the discarding. |
| 968 | */ |
| 969 | nr_conns = rxrpc_nr_client_conns; |
| 970 | |
| 971 | next: |
| 972 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 973 | |
| 974 | if (list_empty(&rxrpc_idle_client_conns)) |
| 975 | goto out; |
| 976 | |
| 977 | conn = list_entry(rxrpc_idle_client_conns.next, |
| 978 | struct rxrpc_connection, cache_link); |
| 979 | ASSERT(test_bit(RXRPC_CONN_EXPOSED, &conn->flags)); |
| 980 | |
| 981 | if (!rxrpc_kill_all_client_conns) { |
| 982 | /* If the number of connections is over the reap limit, we |
| 983 | * expedite discard by reducing the expiry timeout. We must, |
| 984 | * however, have at least a short grace period to be able to do |
| 985 | * final-ACK or ABORT retransmission. |
| 986 | */ |
| 987 | expiry = rxrpc_conn_idle_client_expiry; |
| 988 | if (nr_conns > rxrpc_reap_client_connections) |
| 989 | expiry = rxrpc_conn_idle_client_fast_expiry; |
| 990 | |
| 991 | conn_expires_at = conn->idle_timestamp + expiry; |
| 992 | |
| 993 | now = READ_ONCE(jiffies); |
| 994 | if (time_after(conn_expires_at, now)) |
| 995 | goto not_yet_expired; |
| 996 | } |
| 997 | |
| 998 | _debug("discard conn %d", conn->debug_id); |
| 999 | if (!test_and_clear_bit(RXRPC_CONN_EXPOSED, &conn->flags)) |
| 1000 | BUG(); |
| 1001 | conn->cache_state = RXRPC_CONN_CLIENT_INACTIVE; |
| 1002 | list_del_init(&conn->cache_link); |
| 1003 | |
| 1004 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 1005 | |
| 1006 | /* When we cleared the EXPOSED flag, we took on responsibility for the |
| 1007 | * reference that that had on the usage count. We deal with that here. |
| 1008 | * If someone re-sets the flag and re-gets the ref, that's fine. |
| 1009 | */ |
| 1010 | rxrpc_put_connection(conn); |
| 1011 | did_discard = true; |
| 1012 | nr_conns--; |
| 1013 | goto next; |
| 1014 | |
| 1015 | not_yet_expired: |
| 1016 | /* The connection at the front of the queue hasn't yet expired, so |
| 1017 | * schedule the work item for that point if we discarded something. |
| 1018 | * |
| 1019 | * We don't worry if the work item is already scheduled - it can look |
| 1020 | * after rescheduling itself at a later time. We could cancel it, but |
| 1021 | * then things get messier. |
| 1022 | */ |
| 1023 | _debug("not yet"); |
| 1024 | if (!rxrpc_kill_all_client_conns) |
| 1025 | queue_delayed_work(rxrpc_workqueue, |
| 1026 | &rxrpc_client_conn_reap, |
| 1027 | conn_expires_at - now); |
| 1028 | |
| 1029 | out: |
| 1030 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 1031 | spin_unlock(&rxrpc_client_conn_discard_mutex); |
| 1032 | _leave(""); |
| 1033 | } |
| 1034 | |
| 1035 | /* |
| 1036 | * Preemptively destroy all the client connection records rather than waiting |
| 1037 | * for them to time out |
| 1038 | */ |
| 1039 | void __exit rxrpc_destroy_all_client_connections(void) |
| 1040 | { |
| 1041 | _enter(""); |
| 1042 | |
| 1043 | spin_lock(&rxrpc_client_conn_cache_lock); |
| 1044 | rxrpc_kill_all_client_conns = true; |
| 1045 | spin_unlock(&rxrpc_client_conn_cache_lock); |
| 1046 | |
| 1047 | cancel_delayed_work(&rxrpc_client_conn_reap); |
| 1048 | |
| 1049 | if (!queue_delayed_work(rxrpc_workqueue, &rxrpc_client_conn_reap, 0)) |
| 1050 | _debug("destroy: queue failed"); |
| 1051 | |
| 1052 | _leave(""); |
David Howells | 001c112 | 2016-06-30 10:45:22 +0100 | [diff] [blame] | 1053 | } |