Blame view

net/rxrpc/ar-connevent.c 9.03 KB
17926a793   David Howells   [AF_RXRPC]: Provi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  /* connection-level event 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.
   */
  
  #include <linux/module.h>
  #include <linux/net.h>
  #include <linux/skbuff.h>
  #include <linux/errqueue.h>
  #include <linux/udp.h>
  #include <linux/in.h>
  #include <linux/in6.h>
  #include <linux/icmp.h>
  #include <net/sock.h>
  #include <net/af_rxrpc.h>
  #include <net/ip.h>
  #include "ar-internal.h"
  
  /*
   * pass a connection-level abort onto all calls on that connection
   */
  static void rxrpc_abort_calls(struct rxrpc_connection *conn, int state,
  			      u32 abort_code)
  {
  	struct rxrpc_call *call;
  	struct rb_node *p;
  
  	_enter("{%d},%x", conn->debug_id, abort_code);
  
  	read_lock_bh(&conn->lock);
  
  	for (p = rb_first(&conn->calls); p; p = rb_next(p)) {
  		call = rb_entry(p, struct rxrpc_call, conn_node);
  		write_lock(&call->state_lock);
  		if (call->state <= RXRPC_CALL_COMPLETE) {
  			call->state = state;
  			call->abort_code = abort_code;
  			if (state == RXRPC_CALL_LOCALLY_ABORTED)
  				set_bit(RXRPC_CALL_CONN_ABORT, &call->events);
  			else
  				set_bit(RXRPC_CALL_RCVD_ABORT, &call->events);
651350d10   David Howells   [AF_RXRPC]: Add a...
48
  			rxrpc_queue_call(call);
17926a793   David Howells   [AF_RXRPC]: Provi...
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  		}
  		write_unlock(&call->state_lock);
  	}
  
  	read_unlock_bh(&conn->lock);
  	_leave("");
  }
  
  /*
   * generate a connection-level abort
   */
  static int rxrpc_abort_connection(struct rxrpc_connection *conn,
  				  u32 error, u32 abort_code)
  {
  	struct rxrpc_header hdr;
  	struct msghdr msg;
  	struct kvec iov[2];
  	__be32 word;
  	size_t len;
  	int ret;
  
  	_enter("%d,,%u,%u", conn->debug_id, error, abort_code);
  
  	/* generate a connection-level abort */
  	spin_lock_bh(&conn->state_lock);
  	if (conn->state < RXRPC_CONN_REMOTELY_ABORTED) {
  		conn->state = RXRPC_CONN_LOCALLY_ABORTED;
  		conn->error = error;
  		spin_unlock_bh(&conn->state_lock);
  	} else {
  		spin_unlock_bh(&conn->state_lock);
  		_leave(" = 0 [already dead]");
  		return 0;
  	}
  
  	rxrpc_abort_calls(conn, RXRPC_CALL_LOCALLY_ABORTED, abort_code);
  
  	msg.msg_name	= &conn->trans->peer->srx.transport.sin;
  	msg.msg_namelen	= sizeof(conn->trans->peer->srx.transport.sin);
  	msg.msg_control	= NULL;
  	msg.msg_controllen = 0;
  	msg.msg_flags	= 0;
  
  	hdr.epoch	= conn->epoch;
  	hdr.cid		= conn->cid;
  	hdr.callNumber	= 0;
  	hdr.seq		= 0;
  	hdr.type	= RXRPC_PACKET_TYPE_ABORT;
  	hdr.flags	= conn->out_clientflag;
  	hdr.userStatus	= 0;
  	hdr.securityIndex = conn->security_ix;
  	hdr._rsvd	= 0;
  	hdr.serviceId	= conn->service_id;
  
  	word = htonl(abort_code);
  
  	iov[0].iov_base	= &hdr;
  	iov[0].iov_len	= sizeof(hdr);
  	iov[1].iov_base	= &word;
  	iov[1].iov_len	= sizeof(word);
  
  	len = iov[0].iov_len + iov[1].iov_len;
  
  	hdr.serial = htonl(atomic_inc_return(&conn->serial));
  	_proto("Tx CONN ABORT %%%u { %d }", ntohl(hdr.serial), abort_code);
  
  	ret = kernel_sendmsg(conn->trans->local->socket, &msg, iov, 2, len);
  	if (ret < 0) {
  		_debug("sendmsg failed: %d", ret);
  		return -EAGAIN;
  	}
  
  	_leave(" = 0");
  	return 0;
  }
  
  /*
   * mark a call as being on a now-secured channel
   * - must be called with softirqs disabled
   */
5eaa65b24   Roel Kluin   net: Make static
129
  static void rxrpc_call_is_secure(struct rxrpc_call *call)
17926a793   David Howells   [AF_RXRPC]: Provi...
130
131
132
133
134
135
  {
  	_enter("%p", call);
  	if (call) {
  		read_lock(&call->state_lock);
  		if (call->state < RXRPC_CALL_COMPLETE &&
  		    !test_and_set_bit(RXRPC_CALL_SECURED, &call->events))
651350d10   David Howells   [AF_RXRPC]: Add a...
136
  			rxrpc_queue_call(call);
17926a793   David Howells   [AF_RXRPC]: Provi...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  		read_unlock(&call->state_lock);
  	}
  }
  
  /*
   * connection-level Rx packet processor
   */
  static int rxrpc_process_event(struct rxrpc_connection *conn,
  			       struct sk_buff *skb,
  			       u32 *_abort_code)
  {
  	struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
  	__be32 tmp;
  	u32 serial;
  	int loop, ret;
519d25679   David Howells   RxRPC: Don't atte...
152
153
  	if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
  		kleave(" = -ECONNABORTED [%u]", conn->state);
17926a793   David Howells   [AF_RXRPC]: Provi...
154
  		return -ECONNABORTED;
519d25679   David Howells   RxRPC: Don't atte...
155
  	}
17926a793   David Howells   [AF_RXRPC]: Provi...
156
157
  
  	serial = ntohl(sp->hdr.serial);
519d25679   David Howells   RxRPC: Don't atte...
158
  	_enter("{%d},{%u,%%%u},", conn->debug_id, sp->hdr.type, serial);
17926a793   David Howells   [AF_RXRPC]: Provi...
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
  	switch (sp->hdr.type) {
  	case RXRPC_PACKET_TYPE_ABORT:
  		if (skb_copy_bits(skb, 0, &tmp, sizeof(tmp)) < 0)
  			return -EPROTO;
  		_proto("Rx ABORT %%%u { ac=%d }", serial, ntohl(tmp));
  
  		conn->state = RXRPC_CONN_REMOTELY_ABORTED;
  		rxrpc_abort_calls(conn, RXRPC_CALL_REMOTELY_ABORTED,
  				  ntohl(tmp));
  		return -ECONNABORTED;
  
  	case RXRPC_PACKET_TYPE_CHALLENGE:
  		if (conn->security)
  			return conn->security->respond_to_challenge(
  				conn, skb, _abort_code);
  		return -EPROTO;
  
  	case RXRPC_PACKET_TYPE_RESPONSE:
  		if (!conn->security)
  			return -EPROTO;
  
  		ret = conn->security->verify_response(conn, skb, _abort_code);
  		if (ret < 0)
  			return ret;
  
  		ret = conn->security->init_connection_security(conn);
  		if (ret < 0)
  			return ret;
  
  		conn->security->prime_packet_security(conn);
  		read_lock_bh(&conn->lock);
  		spin_lock(&conn->state_lock);
  
  		if (conn->state == RXRPC_CONN_SERVER_CHALLENGING) {
  			conn->state = RXRPC_CONN_SERVER;
  			for (loop = 0; loop < RXRPC_MAXCALLS; loop++)
  				rxrpc_call_is_secure(conn->channels[loop]);
  		}
  
  		spin_unlock(&conn->state_lock);
  		read_unlock_bh(&conn->lock);
  		return 0;
  
  	default:
519d25679   David Howells   RxRPC: Don't atte...
203
  		_leave(" = -EPROTO [%u]", sp->hdr.type);
17926a793   David Howells   [AF_RXRPC]: Provi...
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
  		return -EPROTO;
  	}
  }
  
  /*
   * set up security and issue a challenge
   */
  static void rxrpc_secure_connection(struct rxrpc_connection *conn)
  {
  	u32 abort_code;
  	int ret;
  
  	_enter("{%d}", conn->debug_id);
  
  	ASSERT(conn->security_ix != 0);
  
  	if (!conn->key) {
  		_debug("set up security");
  		ret = rxrpc_init_server_conn_security(conn);
  		switch (ret) {
  		case 0:
  			break;
  		case -ENOENT:
  			abort_code = RX_CALL_DEAD;
  			goto abort;
  		default:
  			abort_code = RXKADNOAUTH;
  			goto abort;
  		}
  	}
  
  	ASSERT(conn->security != NULL);
  
  	if (conn->security->issue_challenge(conn) < 0) {
  		abort_code = RX_CALL_DEAD;
  		ret = -ENOMEM;
  		goto abort;
  	}
  
  	_leave("");
  	return;
  
  abort:
  	_debug("abort %d, %d", ret, abort_code);
  	rxrpc_abort_connection(conn, -ret, abort_code);
  	_leave(" [aborted]");
  }
  
  /*
   * connection-level event processor
   */
  void rxrpc_process_connection(struct work_struct *work)
  {
  	struct rxrpc_connection *conn =
  		container_of(work, struct rxrpc_connection, processor);
17926a793   David Howells   [AF_RXRPC]: Provi...
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
  	struct sk_buff *skb;
  	u32 abort_code = RX_PROTOCOL_ERROR;
  	int ret;
  
  	_enter("{%d}", conn->debug_id);
  
  	atomic_inc(&conn->usage);
  
  	if (test_and_clear_bit(RXRPC_CONN_CHALLENGE, &conn->events)) {
  		rxrpc_secure_connection(conn);
  		rxrpc_put_connection(conn);
  	}
  
  	/* go through the conn-level event packets, releasing the ref on this
  	 * connection that each one has when we've finished with it */
  	while ((skb = skb_dequeue(&conn->rx_queue))) {
17926a793   David Howells   [AF_RXRPC]: Provi...
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
  		ret = rxrpc_process_event(conn, skb, &abort_code);
  		switch (ret) {
  		case -EPROTO:
  		case -EKEYEXPIRED:
  		case -EKEYREJECTED:
  			goto protocol_error;
  		case -EAGAIN:
  			goto requeue_and_leave;
  		case -ECONNABORTED:
  		default:
  			rxrpc_put_connection(conn);
  			rxrpc_free_skb(skb);
  			break;
  		}
  	}
  
  out:
  	rxrpc_put_connection(conn);
  	_leave("");
  	return;
  
  requeue_and_leave:
  	skb_queue_head(&conn->rx_queue, skb);
  	goto out;
  
  protocol_error:
  	if (rxrpc_abort_connection(conn, -ret, abort_code) < 0)
  		goto requeue_and_leave;
  	rxrpc_put_connection(conn);
  	rxrpc_free_skb(skb);
  	_leave(" [EPROTO]");
  	goto out;
  }
  
  /*
651350d10   David Howells   [AF_RXRPC]: Add a...
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
   * put a packet up for transport-level abort
   */
  void rxrpc_reject_packet(struct rxrpc_local *local, struct sk_buff *skb)
  {
  	CHECK_SLAB_OKAY(&local->usage);
  
  	if (!atomic_inc_not_zero(&local->usage)) {
  		printk("resurrected on reject
  ");
  		BUG();
  	}
  
  	skb_queue_tail(&local->reject_queue, skb);
  	rxrpc_queue_work(&local->rejecter);
  }
  
  /*
17926a793   David Howells   [AF_RXRPC]: Provi...
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
   * reject packets through the local endpoint
   */
  void rxrpc_reject_packets(struct work_struct *work)
  {
  	union {
  		struct sockaddr sa;
  		struct sockaddr_in sin;
  	} sa;
  	struct rxrpc_skb_priv *sp;
  	struct rxrpc_header hdr;
  	struct rxrpc_local *local;
  	struct sk_buff *skb;
  	struct msghdr msg;
  	struct kvec iov[2];
  	size_t size;
  	__be32 code;
  
  	local = container_of(work, struct rxrpc_local, rejecter);
  	rxrpc_get_local(local);
  
  	_enter("%d", local->debug_id);
  
  	iov[0].iov_base = &hdr;
  	iov[0].iov_len = sizeof(hdr);
  	iov[1].iov_base = &code;
  	iov[1].iov_len = sizeof(code);
  	size = sizeof(hdr) + sizeof(code);
  
  	msg.msg_name = &sa;
  	msg.msg_control = NULL;
  	msg.msg_controllen = 0;
  	msg.msg_flags = 0;
  
  	memset(&sa, 0, sizeof(sa));
  	sa.sa.sa_family = local->srx.transport.family;
  	switch (sa.sa.sa_family) {
  	case AF_INET:
  		msg.msg_namelen = sizeof(sa.sin);
  		break;
  	default:
  		msg.msg_namelen = 0;
  		break;
  	}
  
  	memset(&hdr, 0, sizeof(hdr));
  	hdr.type = RXRPC_PACKET_TYPE_ABORT;
  
  	while ((skb = skb_dequeue(&local->reject_queue))) {
  		sp = rxrpc_skb(skb);
  		switch (sa.sa.sa_family) {
  		case AF_INET:
  			sa.sin.sin_port = udp_hdr(skb)->source;
  			sa.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
  			code = htonl(skb->priority);
  
  			hdr.epoch = sp->hdr.epoch;
  			hdr.cid = sp->hdr.cid;
  			hdr.callNumber = sp->hdr.callNumber;
  			hdr.serviceId = sp->hdr.serviceId;
  			hdr.flags = sp->hdr.flags;
  			hdr.flags ^= RXRPC_CLIENT_INITIATED;
  			hdr.flags &= RXRPC_CLIENT_INITIATED;
  
  			kernel_sendmsg(local->socket, &msg, iov, 2, size);
  			break;
  
  		default:
  			break;
  		}
  
  		rxrpc_free_skb(skb);
  		rxrpc_put_local(local);
  	}
  
  	rxrpc_put_local(local);
  	_leave("");
  }