call_object.c 14.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/* RxRPC individual remote procedure call handling
 *
 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

12 13
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

14
#include <linux/slab.h>
15 16
#include <linux/module.h>
#include <linux/circ_buf.h>
17
#include <linux/spinlock_types.h>
18 19 20 21
#include <net/sock.h>
#include <net/af_rxrpc.h>
#include "ar-internal.h"

22 23 24
/*
 * Maximum lifetime of a call (in jiffies).
 */
25
unsigned int rxrpc_max_call_lifetime = 60 * HZ;
26

27
const char *const rxrpc_call_states[NR__RXRPC_CALL_STATES] = {
28
	[RXRPC_CALL_UNINITIALISED]		= "Uninit  ",
29
	[RXRPC_CALL_CLIENT_AWAIT_CONN]		= "ClWtConn",
30 31 32
	[RXRPC_CALL_CLIENT_SEND_REQUEST]	= "ClSndReq",
	[RXRPC_CALL_CLIENT_AWAIT_REPLY]		= "ClAwtRpl",
	[RXRPC_CALL_CLIENT_RECV_REPLY]		= "ClRcvRpl",
33
	[RXRPC_CALL_SERVER_PREALLOC]		= "SvPrealc",
34 35 36 37 38 39 40
	[RXRPC_CALL_SERVER_SECURING]		= "SvSecure",
	[RXRPC_CALL_SERVER_ACCEPTING]		= "SvAccept",
	[RXRPC_CALL_SERVER_RECV_REQUEST]	= "SvRcvReq",
	[RXRPC_CALL_SERVER_ACK_REQUEST]		= "SvAckReq",
	[RXRPC_CALL_SERVER_SEND_REPLY]		= "SvSndRpl",
	[RXRPC_CALL_SERVER_AWAIT_ACK]		= "SvAwtACK",
	[RXRPC_CALL_COMPLETE]			= "Complete",
41 42 43 44
};

const char *const rxrpc_call_completions[NR__RXRPC_CALL_COMPLETIONS] = {
	[RXRPC_CALL_SUCCEEDED]			= "Complete",
45 46
	[RXRPC_CALL_REMOTELY_ABORTED]		= "RmtAbort",
	[RXRPC_CALL_LOCALLY_ABORTED]		= "LocAbort",
47
	[RXRPC_CALL_LOCAL_ERROR]		= "LocError",
48 49 50
	[RXRPC_CALL_NETWORK_ERROR]		= "NetError",
};

51 52 53 54 55 56 57 58
const char rxrpc_call_traces[rxrpc_call__nr_trace][4] = {
	[rxrpc_call_new_client]		= "NWc",
	[rxrpc_call_new_service]	= "NWs",
	[rxrpc_call_queued]		= "QUE",
	[rxrpc_call_queued_ref]		= "QUR",
	[rxrpc_call_seen]		= "SEE",
	[rxrpc_call_got]		= "GOT",
	[rxrpc_call_got_userid]		= "Gus",
59
	[rxrpc_call_got_kernel]		= "Gke",
60 61
	[rxrpc_call_put]		= "PUT",
	[rxrpc_call_put_userid]		= "Pus",
62
	[rxrpc_call_put_kernel]		= "Pke",
63 64 65
	[rxrpc_call_put_noqueue]	= "PNQ",
};

66 67 68 69
struct kmem_cache *rxrpc_call_jar;
LIST_HEAD(rxrpc_calls);
DEFINE_RWLOCK(rxrpc_call_lock);

70 71 72 73 74 75 76 77 78
static void rxrpc_call_timer_expired(unsigned long _call)
{
	struct rxrpc_call *call = (struct rxrpc_call *)_call;

	_enter("%d", call->debug_id);

	if (call->state < RXRPC_CALL_COMPLETE)
		rxrpc_queue_call(call);
}
79

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
/*
 * find an extant server call
 * - called in process context with IRQs enabled
 */
struct rxrpc_call *rxrpc_find_call_by_user_ID(struct rxrpc_sock *rx,
					      unsigned long user_call_ID)
{
	struct rxrpc_call *call;
	struct rb_node *p;

	_enter("%p,%lx", rx, user_call_ID);

	read_lock(&rx->call_lock);

	p = rx->calls.rb_node;
	while (p) {
		call = rb_entry(p, struct rxrpc_call, sock_node);

		if (user_call_ID < call->user_call_ID)
			p = p->rb_left;
		else if (user_call_ID > call->user_call_ID)
			p = p->rb_right;
		else
			goto found_extant_call;
	}

	read_unlock(&rx->call_lock);
	_leave(" = NULL");
	return NULL;

found_extant_call:
111
	rxrpc_get_call(call, rxrpc_call_got);
112 113 114 115 116
	read_unlock(&rx->call_lock);
	_leave(" = %p [%d]", call, atomic_read(&call->usage));
	return call;
}

117 118 119
/*
 * allocate a new call
 */
120
struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
121 122 123 124 125 126 127
{
	struct rxrpc_call *call;

	call = kmem_cache_zalloc(rxrpc_call_jar, gfp);
	if (!call)
		return NULL;

128 129
	call->rxtx_buffer = kcalloc(RXRPC_RXTX_BUFF_SIZE,
				    sizeof(struct sk_buff *),
130
				    gfp);
131 132
	if (!call->rxtx_buffer)
		goto nomem;
133

134 135 136 137 138 139
	call->rxtx_annotations = kcalloc(RXRPC_RXTX_BUFF_SIZE, sizeof(u8), gfp);
	if (!call->rxtx_annotations)
		goto nomem_2;

	setup_timer(&call->timer, rxrpc_call_timer_expired,
		    (unsigned long)call);
140
	INIT_WORK(&call->processor, &rxrpc_process_call);
141
	INIT_LIST_HEAD(&call->link);
142
	INIT_LIST_HEAD(&call->chan_wait_link);
143
	INIT_LIST_HEAD(&call->accept_link);
144 145
	INIT_LIST_HEAD(&call->recvmsg_link);
	INIT_LIST_HEAD(&call->sock_link);
146
	init_waitqueue_head(&call->waitq);
147 148 149 150 151 152 153
	spin_lock_init(&call->lock);
	rwlock_init(&call->state_lock);
	atomic_set(&call->usage, 1);
	call->debug_id = atomic_inc_return(&rxrpc_debug_id);

	memset(&call->sock_node, 0xed, sizeof(call->sock_node));

154
	/* Leave space in the ring to handle a maxed-out jumbo packet */
155
	call->rx_winsize = rxrpc_rx_window_size;
156 157
	call->tx_winsize = 16;
	call->rx_expect_next = 1;
158
	return call;
159 160 161 162 163 164

nomem_2:
	kfree(call->rxtx_buffer);
nomem:
	kmem_cache_free(rxrpc_call_jar, call);
	return NULL;
165 166 167
}

/*
168
 * Allocate a new client call.
169
 */
170
static struct rxrpc_call *rxrpc_alloc_client_call(struct sockaddr_rxrpc *srx,
171
						  gfp_t gfp)
172 173 174 175 176 177 178 179
{
	struct rxrpc_call *call;

	_enter("");

	call = rxrpc_alloc_call(gfp);
	if (!call)
		return ERR_PTR(-ENOMEM);
180 181 182 183 184 185 186 187
	call->state = RXRPC_CALL_CLIENT_AWAIT_CONN;
	call->service_id = srx->srx_service;

	_leave(" = %p", call);
	return call;
}

/*
188
 * Initiate the call ack/resend/expiry timer.
189
 */
190
static void rxrpc_start_call_timer(struct rxrpc_call *call)
191
{
192 193 194 195 196 197 198 199
	unsigned long expire_at;

	expire_at = jiffies + rxrpc_max_call_lifetime;
	call->expire_at = expire_at;
	call->ack_at = expire_at;
	call->resend_at = expire_at;
	call->timer.expires = expire_at;
	add_timer(&call->timer);
200 201 202 203 204 205
}

/*
 * set up a call for the given data
 * - called in process context with IRQs enabled
 */
206
struct rxrpc_call *rxrpc_new_client_call(struct rxrpc_sock *rx,
207
					 struct rxrpc_conn_parameters *cp,
208
					 struct sockaddr_rxrpc *srx,
209 210 211
					 unsigned long user_call_ID,
					 gfp_t gfp)
{
212 213
	struct rxrpc_call *call, *xcall;
	struct rb_node *parent, **pp;
D
David Howells 已提交
214
	const void *here = __builtin_return_address(0);
215
	int ret;
216

217
	_enter("%p,%lx", rx, user_call_ID);
218

219
	call = rxrpc_alloc_client_call(srx, gfp);
220 221 222
	if (IS_ERR(call)) {
		_leave(" = %ld", PTR_ERR(call));
		return call;
223 224
	}

225 226
	trace_rxrpc_call(call, 0, atomic_read(&call->usage), here,
			 (const void *)user_call_ID);
D
David Howells 已提交
227

228
	/* Publish the call, even though it is incompletely set up as yet */
229 230
	call->user_call_ID = user_call_ID;
	__set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
231 232 233 234 235 236 237

	write_lock(&rx->call_lock);

	pp = &rx->calls.rb_node;
	parent = NULL;
	while (*pp) {
		parent = *pp;
238
		xcall = rb_entry(parent, struct rxrpc_call, sock_node);
239

240
		if (user_call_ID < xcall->user_call_ID)
241
			pp = &(*pp)->rb_left;
242
		else if (user_call_ID > xcall->user_call_ID)
243 244
			pp = &(*pp)->rb_right;
		else
245
			goto found_user_ID_now_present;
246 247
	}

248
	rcu_assign_pointer(call->socket, rx);
249
	rxrpc_get_call(call, rxrpc_call_got_userid);
250 251
	rb_link_node(&call->sock_node, parent, pp);
	rb_insert_color(&call->sock_node, &rx->calls);
252 253
	list_add(&call->sock_link, &rx->sock_calls);

254 255
	write_unlock(&rx->call_lock);

256
	write_lock(&rxrpc_call_lock);
257
	list_add_tail(&call->link, &rxrpc_calls);
258
	write_unlock(&rxrpc_call_lock);
259

260 261 262 263
	/* Set up or get a connection record and set the protocol parameters,
	 * including channel number and call ID.
	 */
	ret = rxrpc_connect_call(call, cp, srx, gfp);
264 265 266
	if (ret < 0)
		goto error;

267 268 269 270 271 272 273
	spin_lock_bh(&call->conn->params.peer->lock);
	hlist_add_head(&call->error_link,
		       &call->conn->params.peer->error_targets);
	spin_unlock_bh(&call->conn->params.peer->lock);

	rxrpc_start_call_timer(call);

274 275 276 277 278
	_net("CALL new %d on CONN %d", call->debug_id, call->conn->debug_id);

	_leave(" = %p [new]", call);
	return call;

279 280 281 282
error:
	write_lock(&rx->call_lock);
	rb_erase(&call->sock_node, &rx->calls);
	write_unlock(&rx->call_lock);
283
	rxrpc_put_call(call, rxrpc_call_put_userid);
284

285
	write_lock(&rxrpc_call_lock);
286
	list_del_init(&call->link);
287
	write_unlock(&rxrpc_call_lock);
288

289 290 291
error_out:
	__rxrpc_set_call_completion(call, RXRPC_CALL_LOCAL_ERROR,
				    RX_CALL_DEAD, ret);
292
	set_bit(RXRPC_CALL_RELEASED, &call->flags);
293
	rxrpc_put_call(call, rxrpc_call_put);
294 295 296
	_leave(" = %d", ret);
	return ERR_PTR(ret);

297 298 299 300 301 302
	/* We unexpectedly found the user ID in the list after taking
	 * the call_lock.  This shouldn't happen unless the user races
	 * with itself and tries to add the same user ID twice at the
	 * same time in different threads.
	 */
found_user_ID_now_present:
303
	write_unlock(&rx->call_lock);
304 305
	ret = -EEXIST;
	goto error_out;
306 307 308
}

/*
309 310
 * Set up an incoming call.  call->conn points to the connection.
 * This is called in BH context and isn't allowed to fail.
311
 */
312 313 314
void rxrpc_incoming_call(struct rxrpc_sock *rx,
			 struct rxrpc_call *call,
			 struct sk_buff *skb)
315
{
316
	struct rxrpc_connection *conn = call->conn;
317
	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
318
	u32 chan;
319

320
	_enter(",%d", call->conn->debug_id);
D
David Howells 已提交
321

322 323 324 325 326 327 328 329 330 331 332 333 334
	rcu_assign_pointer(call->socket, rx);
	call->call_id		= sp->hdr.callNumber;
	call->service_id	= sp->hdr.serviceId;
	call->cid		= sp->hdr.cid;
	call->state		= RXRPC_CALL_SERVER_ACCEPTING;
	if (sp->hdr.securityIndex > 0)
		call->state	= RXRPC_CALL_SERVER_SECURING;

	/* Set the channel for this call.  We don't get channel_lock as we're
	 * only defending against the data_ready handler (which we're called
	 * from) and the RESPONSE packet parser (which is only really
	 * interested in call_counter and can cope with a disagreement with the
	 * call pointer).
335
	 */
336 337 338
	chan = sp->hdr.cid & RXRPC_CHANNELMASK;
	conn->channels[chan].call_counter = call->call_id;
	conn->channels[chan].call_id = call->call_id;
339
	rcu_assign_pointer(conn->channels[chan].call, call);
340

341 342 343
	spin_lock(&conn->params.peer->lock);
	hlist_add_head(&call->error_link, &conn->params.peer->error_targets);
	spin_unlock(&conn->params.peer->lock);
344 345 346

	_net("CALL incoming %d on CONN %d", call->debug_id, call->conn->debug_id);

347 348
	rxrpc_start_call_timer(call);
	_leave("");
349 350
}

351 352 353 354 355 356 357 358 359 360
/*
 * Queue a call's work processor, getting a ref to pass to the work queue.
 */
bool rxrpc_queue_call(struct rxrpc_call *call)
{
	const void *here = __builtin_return_address(0);
	int n = __atomic_add_unless(&call->usage, 1, 0);
	if (n == 0)
		return false;
	if (rxrpc_queue_work(&call->processor))
361
		trace_rxrpc_call(call, rxrpc_call_queued, n + 1, here, NULL);
362 363 364 365 366 367 368 369 370 371 372 373 374 375
	else
		rxrpc_put_call(call, rxrpc_call_put_noqueue);
	return true;
}

/*
 * Queue a call's work processor, passing the callers ref to the work queue.
 */
bool __rxrpc_queue_call(struct rxrpc_call *call)
{
	const void *here = __builtin_return_address(0);
	int n = atomic_read(&call->usage);
	ASSERTCMP(n, >=, 1);
	if (rxrpc_queue_work(&call->processor))
376
		trace_rxrpc_call(call, rxrpc_call_queued_ref, n, here, NULL);
377 378 379 380 381
	else
		rxrpc_put_call(call, rxrpc_call_put_noqueue);
	return true;
}

D
David Howells 已提交
382 383 384 385 386 387 388 389 390
/*
 * Note the re-emergence of a call.
 */
void rxrpc_see_call(struct rxrpc_call *call)
{
	const void *here = __builtin_return_address(0);
	if (call) {
		int n = atomic_read(&call->usage);

391
		trace_rxrpc_call(call, rxrpc_call_seen, n, here, NULL);
D
David Howells 已提交
392 393 394 395 396 397
	}
}

/*
 * Note the addition of a ref on a call.
 */
398
void rxrpc_get_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
D
David Howells 已提交
399 400 401 402
{
	const void *here = __builtin_return_address(0);
	int n = atomic_inc_return(&call->usage);

403
	trace_rxrpc_call(call, op, n, here, NULL);
D
David Howells 已提交
404 405 406
}

/*
407
 * Detach a call from its owning socket.
D
David Howells 已提交
408
 */
409
void rxrpc_release_call(struct rxrpc_sock *rx, struct rxrpc_call *call)
D
David Howells 已提交
410
{
411 412 413
	struct rxrpc_connection *conn = call->conn;
	bool put = false;
	int i;
D
David Howells 已提交
414

415
	_enter("{%d,%d}", call->debug_id, atomic_read(&call->usage));
D
David Howells 已提交
416

417
	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
418

D
David Howells 已提交
419 420
	rxrpc_see_call(call);

421 422 423 424 425
	spin_lock_bh(&call->lock);
	if (test_and_set_bit(RXRPC_CALL_RELEASED, &call->flags))
		BUG();
	spin_unlock_bh(&call->lock);

426
	del_timer_sync(&call->timer);
427

428 429
	/* Make sure we don't get any more notifications */
	write_lock_bh(&rx->recvmsg_lock);
430

431
	if (!list_empty(&call->recvmsg_link)) {
432 433
		_debug("unlinking once-pending call %p { e=%lx f=%lx }",
		       call, call->events, call->flags);
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
		list_del(&call->recvmsg_link);
		put = true;
	}

	/* list_empty() must return false in rxrpc_notify_socket() */
	call->recvmsg_link.next = NULL;
	call->recvmsg_link.prev = NULL;

	write_unlock_bh(&rx->recvmsg_lock);
	if (put)
		rxrpc_put_call(call, rxrpc_call_put);

	write_lock(&rx->call_lock);

	if (test_and_clear_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
449 450
		rb_erase(&call->sock_node, &rx->calls);
		memset(&call->sock_node, 0xdd, sizeof(call->sock_node));
451
		rxrpc_put_call(call, rxrpc_call_put_userid);
452 453
	}

454 455 456 457 458 459
	list_del(&call->sock_link);
	write_unlock(&rx->call_lock);

	_debug("RELEASE CALL %p (%d CONN %p)", call, call->debug_id, conn);

	if (conn)
460
		rxrpc_disconnect_call(call);
461

462 463 464
	for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++) {
		rxrpc_free_skb(call->rxtx_buffer[i]);
		call->rxtx_buffer[i] = NULL;
465 466 467 468 469 470 471 472 473 474 475 476 477 478
	}

	_leave("");
}

/*
 * release all the calls associated with a socket
 */
void rxrpc_release_calls_on_socket(struct rxrpc_sock *rx)
{
	struct rxrpc_call *call;

	_enter("%p", rx);

479 480 481 482 483 484
	while (!list_empty(&rx->sock_calls)) {
		call = list_entry(rx->sock_calls.next,
				  struct rxrpc_call, sock_link);
		rxrpc_get_call(call, rxrpc_call_got);
		rxrpc_abort_call("SKT", call, 0, RX_CALL_DEAD, ECONNRESET);
		rxrpc_send_call_packet(call, RXRPC_PACKET_TYPE_ABORT);
485
		rxrpc_release_call(rx, call);
486
		rxrpc_put_call(call, rxrpc_call_put);
487 488
	}

489 490 491 492 493 494
	_leave("");
}

/*
 * release a call
 */
495
void rxrpc_put_call(struct rxrpc_call *call, enum rxrpc_call_trace op)
496
{
D
David Howells 已提交
497
	const void *here = __builtin_return_address(0);
498
	int n;
499

D
David Howells 已提交
500
	ASSERT(call != NULL);
501

D
David Howells 已提交
502
	n = atomic_dec_return(&call->usage);
503
	trace_rxrpc_call(call, op, n, here, NULL);
D
David Howells 已提交
504 505 506
	ASSERTCMP(n, >=, 0);
	if (n == 0) {
		_debug("call %d dead", call->debug_id);
507
		ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
508

509 510 511
		write_lock(&rxrpc_call_lock);
		list_del_init(&call->link);
		write_unlock(&rxrpc_call_lock);
D
David Howells 已提交
512

513
		rxrpc_cleanup_call(call);
514 515 516
	}
}

517 518 519 520 521 522 523
/*
 * Final call destruction under RCU.
 */
static void rxrpc_rcu_destroy_call(struct rcu_head *rcu)
{
	struct rxrpc_call *call = container_of(rcu, struct rxrpc_call, rcu);

524
	rxrpc_put_peer(call->peer);
525 526
	kfree(call->rxtx_buffer);
	kfree(call->rxtx_annotations);
527 528 529
	kmem_cache_free(rxrpc_call_jar, call);
}

530 531 532
/*
 * clean up a call
 */
533
void rxrpc_cleanup_call(struct rxrpc_call *call)
534
{
535
	int i;
536

537
	_net("DESTROY CALL %d", call->debug_id);
538 539 540

	memset(&call->sock_node, 0xcd, sizeof(call->sock_node));

541
	del_timer_sync(&call->timer);
542

543
	ASSERTCMP(call->state, ==, RXRPC_CALL_COMPLETE);
544
	ASSERT(test_bit(RXRPC_CALL_RELEASED, &call->flags));
545
	ASSERTCMP(call->conn, ==, NULL);
546

547 548 549
	/* Clean up the Rx/Tx buffer */
	for (i = 0; i < RXRPC_RXTX_BUFF_SIZE; i++)
		rxrpc_free_skb(call->rxtx_buffer[i]);
550 551 552

	rxrpc_free_skb(call->tx_pending);

553
	call_rcu(&call->rcu, rxrpc_rcu_destroy_call);
554 555 556
}

/*
557
 * Make sure that all calls are gone.
558 559 560 561 562 563
 */
void __exit rxrpc_destroy_all_calls(void)
{
	struct rxrpc_call *call;

	_enter("");
564 565 566

	if (list_empty(&rxrpc_calls))
		return;
567 568

	write_lock(&rxrpc_call_lock);
569 570 571 572 573

	while (!list_empty(&rxrpc_calls)) {
		call = list_entry(rxrpc_calls.next, struct rxrpc_call, link);
		_debug("Zapping call %p", call);

D
David Howells 已提交
574
		rxrpc_see_call(call);
575 576
		list_del_init(&call->link);

577
		pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
578 579 580
		       call, atomic_read(&call->usage),
		       rxrpc_call_states[call->state],
		       call->flags, call->events);
581

582
		write_unlock(&rxrpc_call_lock);
583
		cond_resched();
584
		write_lock(&rxrpc_call_lock);
585 586
	}

587
	write_unlock(&rxrpc_call_lock);
588
}