blob: 8c7938ba6a847a0aa520e20d56ffc2844c9d5747 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* connection-level event handling
2 *
3 * Copyright (C) 2007 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 License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
17#include <linux/errqueue.h>
18#include <linux/udp.h>
19#include <linux/in.h>
20#include <linux/in6.h>
21#include <linux/icmp.h>
22#include <net/sock.h>
23#include <net/af_rxrpc.h>
24#include <net/ip.h>
25#include "ar-internal.h"
26
27/*
David Howells18bfeba2016-08-23 15:27:25 +010028 * Retransmit terminal ACK or ABORT of the previous call.
29 */
David Howellsf5c17aa2016-08-30 09:49:28 +010030static void rxrpc_conn_retransmit_call(struct rxrpc_connection *conn,
31 struct sk_buff *skb)
David Howells18bfeba2016-08-23 15:27:25 +010032{
33 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
34 struct rxrpc_channel *chan;
35 struct msghdr msg;
36 struct kvec iov;
37 struct {
38 struct rxrpc_wire_header whdr;
39 union {
40 struct {
41 __be32 code;
42 } abort;
43 struct {
44 struct rxrpc_ackpacket ack;
David Howells2266ffd2016-08-24 13:06:14 +010045 u8 padding[3];
David Howells18bfeba2016-08-23 15:27:25 +010046 struct rxrpc_ackinfo info;
47 };
48 };
49 } __attribute__((packed)) pkt;
50 size_t len;
51 u32 serial, mtu, call_id;
52
53 _enter("%d", conn->debug_id);
54
55 chan = &conn->channels[sp->hdr.cid & RXRPC_CHANNELMASK];
56
57 /* If the last call got moved on whilst we were waiting to run, just
58 * ignore this packet.
59 */
60 call_id = READ_ONCE(chan->last_call);
61 /* Sync with __rxrpc_disconnect_call() */
62 smp_rmb();
63 if (call_id != sp->hdr.callNumber)
64 return;
65
66 msg.msg_name = &conn->params.peer->srx.transport;
67 msg.msg_namelen = conn->params.peer->srx.transport_len;
68 msg.msg_control = NULL;
69 msg.msg_controllen = 0;
70 msg.msg_flags = 0;
71
72 pkt.whdr.epoch = htonl(sp->hdr.epoch);
73 pkt.whdr.cid = htonl(sp->hdr.cid);
74 pkt.whdr.callNumber = htonl(sp->hdr.callNumber);
75 pkt.whdr.seq = 0;
76 pkt.whdr.type = chan->last_type;
77 pkt.whdr.flags = conn->out_clientflag;
78 pkt.whdr.userStatus = 0;
79 pkt.whdr.securityIndex = conn->security_ix;
80 pkt.whdr._rsvd = 0;
81 pkt.whdr.serviceId = htons(chan->last_service_id);
82
83 len = sizeof(pkt.whdr);
84 switch (chan->last_type) {
85 case RXRPC_PACKET_TYPE_ABORT:
86 pkt.abort.code = htonl(chan->last_abort);
87 len += sizeof(pkt.abort);
88 break;
89
90 case RXRPC_PACKET_TYPE_ACK:
91 mtu = conn->params.peer->if_mtu;
92 mtu -= conn->params.peer->hdrsize;
93 pkt.ack.bufferSpace = 0;
94 pkt.ack.maxSkew = htons(skb->priority);
95 pkt.ack.firstPacket = htonl(chan->last_seq);
96 pkt.ack.previousPacket = htonl(chan->last_seq - 1);
97 pkt.ack.serial = htonl(sp->hdr.serial);
98 pkt.ack.reason = RXRPC_ACK_DUPLICATE;
99 pkt.ack.nAcks = 0;
100 pkt.info.rxMTU = htonl(rxrpc_rx_mtu);
101 pkt.info.maxMTU = htonl(mtu);
102 pkt.info.rwind = htonl(rxrpc_rx_window_size);
103 pkt.info.jumbo_max = htonl(rxrpc_rx_jumbo_max);
104 len += sizeof(pkt.ack) + sizeof(pkt.info);
105 break;
106 }
107
108 /* Resync with __rxrpc_disconnect_call() and check that the last call
109 * didn't get advanced whilst we were filling out the packets.
110 */
111 smp_rmb();
112 if (READ_ONCE(chan->last_call) != call_id)
113 return;
114
115 iov.iov_base = &pkt;
116 iov.iov_len = len;
117
118 serial = atomic_inc_return(&conn->serial);
119 pkt.whdr.serial = htonl(serial);
120
121 switch (chan->last_type) {
122 case RXRPC_PACKET_TYPE_ABORT:
123 _proto("Tx ABORT %%%u { %d } [re]", serial, conn->local_abort);
124 break;
125 case RXRPC_PACKET_TYPE_ACK:
126 _proto("Tx ACK %%%u [re]", serial);
127 break;
128 }
129
130 kernel_sendmsg(conn->params.local->socket, &msg, &iov, 1, len);
131 _leave("");
132 return;
133}
134
135/*
David Howells17926a72007-04-26 15:48:28 -0700136 * pass a connection-level abort onto all calls on that connection
137 */
David Howellsf5c17aa2016-08-30 09:49:28 +0100138static void rxrpc_abort_calls(struct rxrpc_connection *conn,
139 enum rxrpc_call_completion compl,
140 u32 abort_code, int error)
David Howells17926a72007-04-26 15:48:28 -0700141{
142 struct rxrpc_call *call;
David Howellsf5c17aa2016-08-30 09:49:28 +0100143 bool queue;
144 int i, bit;
David Howells17926a72007-04-26 15:48:28 -0700145
146 _enter("{%d},%x", conn->debug_id, abort_code);
147
David Howellsf5c17aa2016-08-30 09:49:28 +0100148 if (compl == RXRPC_CALL_LOCALLY_ABORTED)
149 bit = RXRPC_CALL_EV_CONN_ABORT;
150 else
151 bit = RXRPC_CALL_EV_RCVD_ABORT;
152
David Howellsa1399f82016-06-27 14:39:44 +0100153 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700154
David Howellsa1399f82016-06-27 14:39:44 +0100155 for (i = 0; i < RXRPC_MAXCALLS; i++) {
156 call = rcu_dereference_protected(
157 conn->channels[i].call,
158 lockdep_is_held(&conn->channel_lock));
David Howellsccbd3db2016-08-30 09:49:28 +0100159 if (call) {
David Howellse34d4232016-08-30 09:49:29 +0100160 rxrpc_see_call(call);
David Howells5a429762016-09-06 22:19:51 +0100161 if (compl == RXRPC_CALL_LOCALLY_ABORTED)
162 trace_rxrpc_abort("CON", call->cid,
163 call->call_id, 0,
164 abort_code, error);
165
David Howellsccbd3db2016-08-30 09:49:28 +0100166 write_lock_bh(&call->state_lock);
David Howellsf5c17aa2016-08-30 09:49:28 +0100167 if (rxrpc_set_call_completion(call, compl, abort_code,
168 error)) {
169 set_bit(bit, &call->events);
170 queue = true;
David Howellsdc44b3a2016-04-07 17:23:30 +0100171 }
David Howellsccbd3db2016-08-30 09:49:28 +0100172 write_unlock_bh(&call->state_lock);
David Howellsf5c17aa2016-08-30 09:49:28 +0100173 if (queue)
174 rxrpc_queue_call(call);
David Howells5a429762016-09-06 22:19:51 +0100175
David Howells17926a72007-04-26 15:48:28 -0700176 }
David Howells17926a72007-04-26 15:48:28 -0700177 }
178
David Howellsa1399f82016-06-27 14:39:44 +0100179 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700180 _leave("");
181}
182
183/*
184 * generate a connection-level abort
185 */
186static int rxrpc_abort_connection(struct rxrpc_connection *conn,
187 u32 error, u32 abort_code)
188{
David Howells0d12f8a2016-03-04 15:53:46 +0000189 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700190 struct msghdr msg;
191 struct kvec iov[2];
192 __be32 word;
193 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000194 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700195 int ret;
196
197 _enter("%d,,%u,%u", conn->debug_id, error, abort_code);
198
199 /* generate a connection-level abort */
200 spin_lock_bh(&conn->state_lock);
David Howellsf5c17aa2016-08-30 09:49:28 +0100201 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
David Howells17926a72007-04-26 15:48:28 -0700202 spin_unlock_bh(&conn->state_lock);
203 _leave(" = 0 [already dead]");
204 return 0;
205 }
206
David Howellsf5c17aa2016-08-30 09:49:28 +0100207 conn->state = RXRPC_CONN_LOCALLY_ABORTED;
208 spin_unlock_bh(&conn->state_lock);
209
210 rxrpc_abort_calls(conn, RXRPC_CALL_LOCALLY_ABORTED, abort_code, error);
David Howells17926a72007-04-26 15:48:28 -0700211
David Howells85f32272016-04-04 14:00:36 +0100212 msg.msg_name = &conn->params.peer->srx.transport;
213 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700214 msg.msg_control = NULL;
215 msg.msg_controllen = 0;
216 msg.msg_flags = 0;
217
David Howells19ffa012016-04-04 14:00:36 +0100218 whdr.epoch = htonl(conn->proto.epoch);
219 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000220 whdr.callNumber = 0;
221 whdr.seq = 0;
222 whdr.type = RXRPC_PACKET_TYPE_ABORT;
223 whdr.flags = conn->out_clientflag;
224 whdr.userStatus = 0;
225 whdr.securityIndex = conn->security_ix;
226 whdr._rsvd = 0;
David Howells19ffa012016-04-04 14:00:36 +0100227 whdr.serviceId = htons(conn->params.service_id);
David Howells17926a72007-04-26 15:48:28 -0700228
David Howellsdc44b3a2016-04-07 17:23:30 +0100229 word = htonl(conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700230
David Howells0d12f8a2016-03-04 15:53:46 +0000231 iov[0].iov_base = &whdr;
232 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700233 iov[1].iov_base = &word;
234 iov[1].iov_len = sizeof(word);
235
236 len = iov[0].iov_len + iov[1].iov_len;
237
David Howells0d12f8a2016-03-04 15:53:46 +0000238 serial = atomic_inc_return(&conn->serial);
239 whdr.serial = htonl(serial);
David Howellsdc44b3a2016-04-07 17:23:30 +0100240 _proto("Tx CONN ABORT %%%u { %d }", serial, conn->local_abort);
David Howells17926a72007-04-26 15:48:28 -0700241
David Howells85f32272016-04-04 14:00:36 +0100242 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700243 if (ret < 0) {
244 _debug("sendmsg failed: %d", ret);
245 return -EAGAIN;
246 }
247
248 _leave(" = 0");
249 return 0;
250}
251
252/*
253 * mark a call as being on a now-secured channel
254 * - must be called with softirqs disabled
255 */
Roel Kluin5eaa65b2008-12-10 15:18:31 -0800256static void rxrpc_call_is_secure(struct rxrpc_call *call)
David Howells17926a72007-04-26 15:48:28 -0700257{
258 _enter("%p", call);
259 if (call) {
260 read_lock(&call->state_lock);
261 if (call->state < RXRPC_CALL_COMPLETE &&
David Howells4c198ad2016-03-04 15:53:46 +0000262 !test_and_set_bit(RXRPC_CALL_EV_SECURED, &call->events))
David Howells651350d2007-04-26 15:50:17 -0700263 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700264 read_unlock(&call->state_lock);
265 }
266}
267
268/*
269 * connection-level Rx packet processor
270 */
271static int rxrpc_process_event(struct rxrpc_connection *conn,
272 struct sk_buff *skb,
273 u32 *_abort_code)
274{
275 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells0d12f8a2016-03-04 15:53:46 +0000276 __be32 wtmp;
277 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700278 int loop, ret;
279
David Howells519d2562009-06-16 21:36:44 +0100280 if (conn->state >= RXRPC_CONN_REMOTELY_ABORTED) {
281 kleave(" = -ECONNABORTED [%u]", conn->state);
David Howells17926a72007-04-26 15:48:28 -0700282 return -ECONNABORTED;
David Howells519d2562009-06-16 21:36:44 +0100283 }
David Howells17926a72007-04-26 15:48:28 -0700284
David Howells0d12f8a2016-03-04 15:53:46 +0000285 _enter("{%d},{%u,%%%u},", conn->debug_id, sp->hdr.type, sp->hdr.serial);
David Howells519d2562009-06-16 21:36:44 +0100286
David Howells17926a72007-04-26 15:48:28 -0700287 switch (sp->hdr.type) {
David Howells18bfeba2016-08-23 15:27:25 +0100288 case RXRPC_PACKET_TYPE_DATA:
289 case RXRPC_PACKET_TYPE_ACK:
David Howellsf5c17aa2016-08-30 09:49:28 +0100290 rxrpc_conn_retransmit_call(conn, skb);
David Howells18bfeba2016-08-23 15:27:25 +0100291 return 0;
292
David Howells17926a72007-04-26 15:48:28 -0700293 case RXRPC_PACKET_TYPE_ABORT:
David Howells0d12f8a2016-03-04 15:53:46 +0000294 if (skb_copy_bits(skb, 0, &wtmp, sizeof(wtmp)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700295 return -EPROTO;
David Howells0d12f8a2016-03-04 15:53:46 +0000296 abort_code = ntohl(wtmp);
297 _proto("Rx ABORT %%%u { ac=%d }", sp->hdr.serial, abort_code);
David Howells17926a72007-04-26 15:48:28 -0700298
299 conn->state = RXRPC_CONN_REMOTELY_ABORTED;
David Howellsf5c17aa2016-08-30 09:49:28 +0100300 rxrpc_abort_calls(conn, 0, RXRPC_CALL_REMOTELY_ABORTED,
David Howells0d12f8a2016-03-04 15:53:46 +0000301 abort_code);
David Howells17926a72007-04-26 15:48:28 -0700302 return -ECONNABORTED;
303
304 case RXRPC_PACKET_TYPE_CHALLENGE:
David Howellse0e4d822016-04-07 17:23:58 +0100305 return conn->security->respond_to_challenge(conn, skb,
306 _abort_code);
David Howells17926a72007-04-26 15:48:28 -0700307
308 case RXRPC_PACKET_TYPE_RESPONSE:
David Howells17926a72007-04-26 15:48:28 -0700309 ret = conn->security->verify_response(conn, skb, _abort_code);
310 if (ret < 0)
311 return ret;
312
313 ret = conn->security->init_connection_security(conn);
314 if (ret < 0)
315 return ret;
316
Herbert Xua2636292016-06-26 14:55:24 -0700317 ret = conn->security->prime_packet_security(conn);
318 if (ret < 0)
319 return ret;
320
David Howellsa1399f82016-06-27 14:39:44 +0100321 spin_lock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700322 spin_lock(&conn->state_lock);
323
David Howellsbba304d2016-06-27 10:32:02 +0100324 if (conn->state == RXRPC_CONN_SERVICE_CHALLENGING) {
325 conn->state = RXRPC_CONN_SERVICE;
David Howells17926a72007-04-26 15:48:28 -0700326 for (loop = 0; loop < RXRPC_MAXCALLS; loop++)
David Howellsdee46362016-06-27 17:11:19 +0100327 rxrpc_call_is_secure(
328 rcu_dereference_protected(
David Howellsa1399f82016-06-27 14:39:44 +0100329 conn->channels[loop].call,
330 lockdep_is_held(&conn->channel_lock)));
David Howells17926a72007-04-26 15:48:28 -0700331 }
332
333 spin_unlock(&conn->state_lock);
David Howellsa1399f82016-06-27 14:39:44 +0100334 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -0700335 return 0;
336
337 default:
David Howells519d2562009-06-16 21:36:44 +0100338 _leave(" = -EPROTO [%u]", sp->hdr.type);
David Howells17926a72007-04-26 15:48:28 -0700339 return -EPROTO;
340 }
341}
342
343/*
344 * set up security and issue a challenge
345 */
346static void rxrpc_secure_connection(struct rxrpc_connection *conn)
347{
348 u32 abort_code;
349 int ret;
350
351 _enter("{%d}", conn->debug_id);
352
353 ASSERT(conn->security_ix != 0);
354
David Howells19ffa012016-04-04 14:00:36 +0100355 if (!conn->params.key) {
David Howells17926a72007-04-26 15:48:28 -0700356 _debug("set up security");
357 ret = rxrpc_init_server_conn_security(conn);
358 switch (ret) {
359 case 0:
360 break;
361 case -ENOENT:
362 abort_code = RX_CALL_DEAD;
363 goto abort;
364 default:
365 abort_code = RXKADNOAUTH;
366 goto abort;
367 }
368 }
369
David Howells17926a72007-04-26 15:48:28 -0700370 if (conn->security->issue_challenge(conn) < 0) {
371 abort_code = RX_CALL_DEAD;
372 ret = -ENOMEM;
373 goto abort;
374 }
375
376 _leave("");
377 return;
378
379abort:
380 _debug("abort %d, %d", ret, abort_code);
381 rxrpc_abort_connection(conn, -ret, abort_code);
382 _leave(" [aborted]");
383}
384
385/*
386 * connection-level event processor
387 */
388void rxrpc_process_connection(struct work_struct *work)
389{
390 struct rxrpc_connection *conn =
391 container_of(work, struct rxrpc_connection, processor);
David Howells17926a72007-04-26 15:48:28 -0700392 struct sk_buff *skb;
393 u32 abort_code = RX_PROTOCOL_ERROR;
394 int ret;
395
396 _enter("{%d}", conn->debug_id);
397
David Howells2c4579e2016-06-27 10:32:03 +0100398 if (test_and_clear_bit(RXRPC_CONN_EV_CHALLENGE, &conn->events))
David Howells17926a72007-04-26 15:48:28 -0700399 rxrpc_secure_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700400
401 /* go through the conn-level event packets, releasing the ref on this
402 * connection that each one has when we've finished with it */
403 while ((skb = skb_dequeue(&conn->rx_queue))) {
David Howellsdf844fd2016-08-23 15:27:24 +0100404 rxrpc_see_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700405 ret = rxrpc_process_event(conn, skb, &abort_code);
406 switch (ret) {
407 case -EPROTO:
408 case -EKEYEXPIRED:
409 case -EKEYREJECTED:
410 goto protocol_error;
411 case -EAGAIN:
412 goto requeue_and_leave;
413 case -ECONNABORTED:
414 default:
David Howells17926a72007-04-26 15:48:28 -0700415 rxrpc_free_skb(skb);
416 break;
417 }
418 }
419
420out:
421 rxrpc_put_connection(conn);
422 _leave("");
423 return;
424
425requeue_and_leave:
426 skb_queue_head(&conn->rx_queue, skb);
427 goto out;
428
429protocol_error:
430 if (rxrpc_abort_connection(conn, -ret, abort_code) < 0)
431 goto requeue_and_leave;
David Howells17926a72007-04-26 15:48:28 -0700432 rxrpc_free_skb(skb);
433 _leave(" [EPROTO]");
434 goto out;
435}
436
437/*
David Howells651350d2007-04-26 15:50:17 -0700438 * put a packet up for transport-level abort
439 */
440void rxrpc_reject_packet(struct rxrpc_local *local, struct sk_buff *skb)
441{
442 CHECK_SLAB_OKAY(&local->usage);
443
David Howells651350d2007-04-26 15:50:17 -0700444 skb_queue_tail(&local->reject_queue, skb);
David Howells5acbee42016-06-27 10:32:02 +0100445 rxrpc_queue_local(local);
David Howells651350d2007-04-26 15:50:17 -0700446}
447
448/*
David Howells17926a72007-04-26 15:48:28 -0700449 * reject packets through the local endpoint
450 */
David Howells4f95dd72016-04-04 14:00:35 +0100451void rxrpc_reject_packets(struct rxrpc_local *local)
David Howells17926a72007-04-26 15:48:28 -0700452{
453 union {
454 struct sockaddr sa;
455 struct sockaddr_in sin;
456 } sa;
457 struct rxrpc_skb_priv *sp;
David Howells0d12f8a2016-03-04 15:53:46 +0000458 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700459 struct sk_buff *skb;
460 struct msghdr msg;
461 struct kvec iov[2];
462 size_t size;
463 __be32 code;
464
David Howells17926a72007-04-26 15:48:28 -0700465 _enter("%d", local->debug_id);
466
David Howells0d12f8a2016-03-04 15:53:46 +0000467 iov[0].iov_base = &whdr;
468 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700469 iov[1].iov_base = &code;
470 iov[1].iov_len = sizeof(code);
David Howells0d12f8a2016-03-04 15:53:46 +0000471 size = sizeof(whdr) + sizeof(code);
David Howells17926a72007-04-26 15:48:28 -0700472
473 msg.msg_name = &sa;
474 msg.msg_control = NULL;
475 msg.msg_controllen = 0;
476 msg.msg_flags = 0;
477
478 memset(&sa, 0, sizeof(sa));
479 sa.sa.sa_family = local->srx.transport.family;
480 switch (sa.sa.sa_family) {
481 case AF_INET:
482 msg.msg_namelen = sizeof(sa.sin);
483 break;
484 default:
485 msg.msg_namelen = 0;
486 break;
487 }
488
David Howells0d12f8a2016-03-04 15:53:46 +0000489 memset(&whdr, 0, sizeof(whdr));
490 whdr.type = RXRPC_PACKET_TYPE_ABORT;
David Howells17926a72007-04-26 15:48:28 -0700491
492 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howellsdf844fd2016-08-23 15:27:24 +0100493 rxrpc_see_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700494 sp = rxrpc_skb(skb);
495 switch (sa.sa.sa_family) {
496 case AF_INET:
497 sa.sin.sin_port = udp_hdr(skb)->source;
498 sa.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
499 code = htonl(skb->priority);
500
David Howells0d12f8a2016-03-04 15:53:46 +0000501 whdr.epoch = htonl(sp->hdr.epoch);
502 whdr.cid = htonl(sp->hdr.cid);
503 whdr.callNumber = htonl(sp->hdr.callNumber);
504 whdr.serviceId = htons(sp->hdr.serviceId);
505 whdr.flags = sp->hdr.flags;
506 whdr.flags ^= RXRPC_CLIENT_INITIATED;
507 whdr.flags &= RXRPC_CLIENT_INITIATED;
David Howells17926a72007-04-26 15:48:28 -0700508
509 kernel_sendmsg(local->socket, &msg, iov, 2, size);
510 break;
511
512 default:
513 break;
514 }
515
516 rxrpc_free_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700517 }
518
David Howells17926a72007-04-26 15:48:28 -0700519 _leave("");
520}