blob: 59d32860331205a5b12e2c711250f478124bdd1c [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* RxRPC packet transmission
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/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
David Howells17926a72007-04-26 15:48:28 -070016#include <linux/skbuff.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040017#include <linux/export.h>
David Howells17926a72007-04-26 15:48:28 -070018#include <net/sock.h>
19#include <net/af_rxrpc.h>
20#include "ar-internal.h"
21
David Howells26cb02a2016-10-06 08:11:49 +010022struct rxrpc_ack_buffer {
David Howells8d94aa32016-09-07 09:19:31 +010023 struct rxrpc_wire_header whdr;
David Howells26cb02a2016-10-06 08:11:49 +010024 struct rxrpc_ackpacket ack;
25 u8 acks[255];
26 u8 pad[3];
David Howells8d94aa32016-09-07 09:19:31 +010027 struct rxrpc_ackinfo ackinfo;
28};
29
David Howells26cb02a2016-10-06 08:11:49 +010030struct rxrpc_abort_buffer {
31 struct rxrpc_wire_header whdr;
32 __be32 abort_code;
33};
34
David Howells8d94aa32016-09-07 09:19:31 +010035/*
36 * Fill out an ACK packet.
37 */
38static size_t rxrpc_fill_out_ack(struct rxrpc_call *call,
David Howells26cb02a2016-10-06 08:11:49 +010039 struct rxrpc_ack_buffer *pkt,
David Howells805b21b2016-09-24 18:05:26 +010040 rxrpc_seq_t *_hard_ack,
David Howellsa5af7e12016-10-06 08:11:49 +010041 rxrpc_seq_t *_top,
42 u8 reason)
David Howells8d94aa32016-09-07 09:19:31 +010043{
David Howellsf3639df2016-09-17 10:49:13 +010044 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +010045 rxrpc_seq_t hard_ack, top, seq;
46 int ix;
David Howells8d94aa32016-09-07 09:19:31 +010047 u32 mtu, jmax;
48 u8 *ackp = pkt->acks;
49
David Howells248f2192016-09-08 11:10:12 +010050 /* Barrier against rxrpc_input_data(). */
David Howellsf3639df2016-09-17 10:49:13 +010051 serial = call->ackr_serial;
David Howells248f2192016-09-08 11:10:12 +010052 hard_ack = READ_ONCE(call->rx_hard_ack);
53 top = smp_load_acquire(&call->rx_top);
David Howells805b21b2016-09-24 18:05:26 +010054 *_hard_ack = hard_ack;
55 *_top = top;
David Howells248f2192016-09-08 11:10:12 +010056
David Howells8d94aa32016-09-07 09:19:31 +010057 pkt->ack.bufferSpace = htons(8);
David Howells248f2192016-09-08 11:10:12 +010058 pkt->ack.maxSkew = htons(call->ackr_skew);
59 pkt->ack.firstPacket = htonl(hard_ack + 1);
David Howells8d94aa32016-09-07 09:19:31 +010060 pkt->ack.previousPacket = htonl(call->ackr_prev_seq);
David Howellsf3639df2016-09-17 10:49:13 +010061 pkt->ack.serial = htonl(serial);
David Howellsa5af7e12016-10-06 08:11:49 +010062 pkt->ack.reason = reason;
David Howells248f2192016-09-08 11:10:12 +010063 pkt->ack.nAcks = top - hard_ack;
David Howells8d94aa32016-09-07 09:19:31 +010064
David Howellsa5af7e12016-10-06 08:11:49 +010065 if (reason == RXRPC_ACK_PING)
David Howells8e831342016-09-22 00:29:31 +010066 pkt->whdr.flags |= RXRPC_REQUEST_ACK;
67
David Howells248f2192016-09-08 11:10:12 +010068 if (after(top, hard_ack)) {
69 seq = hard_ack + 1;
70 do {
71 ix = seq & RXRPC_RXTX_BUFF_MASK;
72 if (call->rxtx_buffer[ix])
73 *ackp++ = RXRPC_ACK_TYPE_ACK;
74 else
75 *ackp++ = RXRPC_ACK_TYPE_NACK;
76 seq++;
77 } while (before_eq(seq, top));
78 }
79
80 mtu = call->conn->params.peer->if_mtu;
81 mtu -= call->conn->params.peer->hdrsize;
David Howells75e42122016-09-13 22:36:22 +010082 jmax = (call->nr_jumbo_bad > 3) ? 1 : rxrpc_rx_jumbo_max;
David Howells8d94aa32016-09-07 09:19:31 +010083 pkt->ackinfo.rxMTU = htonl(rxrpc_rx_mtu);
84 pkt->ackinfo.maxMTU = htonl(mtu);
David Howells75e42122016-09-13 22:36:22 +010085 pkt->ackinfo.rwind = htonl(call->rx_winsize);
David Howells8d94aa32016-09-07 09:19:31 +010086 pkt->ackinfo.jumbo_max = htonl(jmax);
87
88 *ackp++ = 0;
89 *ackp++ = 0;
90 *ackp++ = 0;
David Howells248f2192016-09-08 11:10:12 +010091 return top - hard_ack + 3;
David Howells8d94aa32016-09-07 09:19:31 +010092}
93
94/*
David Howells26cb02a2016-10-06 08:11:49 +010095 * Send an ACK call packet.
David Howells8d94aa32016-09-07 09:19:31 +010096 */
David Howellsa5af7e12016-10-06 08:11:49 +010097int rxrpc_send_ack_packet(struct rxrpc_call *call, bool ping)
David Howells8d94aa32016-09-07 09:19:31 +010098{
99 struct rxrpc_connection *conn = NULL;
David Howells26cb02a2016-10-06 08:11:49 +0100100 struct rxrpc_ack_buffer *pkt;
David Howells8d94aa32016-09-07 09:19:31 +0100101 struct msghdr msg;
102 struct kvec iov[2];
103 rxrpc_serial_t serial;
David Howells805b21b2016-09-24 18:05:26 +0100104 rxrpc_seq_t hard_ack, top;
David Howells8d94aa32016-09-07 09:19:31 +0100105 size_t len, n;
David Howells26cb02a2016-10-06 08:11:49 +0100106 int ret;
David Howellsa5af7e12016-10-06 08:11:49 +0100107 u8 reason;
David Howells8d94aa32016-09-07 09:19:31 +0100108
109 spin_lock_bh(&call->lock);
110 if (call->conn)
111 conn = rxrpc_get_connection_maybe(call->conn);
112 spin_unlock_bh(&call->lock);
113 if (!conn)
114 return -ECONNRESET;
115
116 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
117 if (!pkt) {
118 rxrpc_put_connection(conn);
119 return -ENOMEM;
120 }
121
David Howells8d94aa32016-09-07 09:19:31 +0100122 msg.msg_name = &call->peer->srx.transport;
123 msg.msg_namelen = call->peer->srx.transport_len;
124 msg.msg_control = NULL;
125 msg.msg_controllen = 0;
126 msg.msg_flags = 0;
127
128 pkt->whdr.epoch = htonl(conn->proto.epoch);
129 pkt->whdr.cid = htonl(call->cid);
130 pkt->whdr.callNumber = htonl(call->call_id);
131 pkt->whdr.seq = 0;
David Howells26cb02a2016-10-06 08:11:49 +0100132 pkt->whdr.type = RXRPC_PACKET_TYPE_ACK;
133 pkt->whdr.flags = RXRPC_SLOW_START_OK | conn->out_clientflag;
David Howells8d94aa32016-09-07 09:19:31 +0100134 pkt->whdr.userStatus = 0;
135 pkt->whdr.securityIndex = call->security_ix;
136 pkt->whdr._rsvd = 0;
137 pkt->whdr.serviceId = htons(call->service_id);
138
David Howells26cb02a2016-10-06 08:11:49 +0100139 spin_lock_bh(&call->lock);
David Howellsa5af7e12016-10-06 08:11:49 +0100140 if (ping) {
141 reason = RXRPC_ACK_PING;
142 } else {
143 reason = call->ackr_reason;
144 if (!call->ackr_reason) {
145 spin_unlock_bh(&call->lock);
146 ret = 0;
147 goto out;
148 }
149 call->ackr_reason = 0;
David Howells8d94aa32016-09-07 09:19:31 +0100150 }
David Howellsa5af7e12016-10-06 08:11:49 +0100151 n = rxrpc_fill_out_ack(call, pkt, &hard_ack, &top, reason);
David Howells26cb02a2016-10-06 08:11:49 +0100152
153 spin_unlock_bh(&call->lock);
154
155 iov[0].iov_base = pkt;
156 iov[0].iov_len = sizeof(pkt->whdr) + sizeof(pkt->ack) + n;
157 iov[1].iov_base = &pkt->ackinfo;
158 iov[1].iov_len = sizeof(pkt->ackinfo);
159 len = iov[0].iov_len + iov[1].iov_len;
David Howells8d94aa32016-09-07 09:19:31 +0100160
David Howellsb86e2182016-09-23 15:08:48 +0100161 serial = atomic_inc_return(&conn->serial);
162 pkt->whdr.serial = htonl(serial);
David Howells26cb02a2016-10-06 08:11:49 +0100163 trace_rxrpc_tx_ack(call, serial,
164 ntohl(pkt->ack.firstPacket),
165 ntohl(pkt->ack.serial),
166 pkt->ack.reason, pkt->ack.nAcks);
David Howellsb86e2182016-09-23 15:08:48 +0100167
David Howells8e831342016-09-22 00:29:31 +0100168 if (ping) {
David Howellsa5af7e12016-10-06 08:11:49 +0100169 call->ping_serial = serial;
David Howells8e831342016-09-22 00:29:31 +0100170 smp_wmb();
171 /* We need to stick a time in before we send the packet in case
172 * the reply gets back before kernel_sendmsg() completes - but
173 * asking UDP to send the packet can take a relatively long
174 * time, so we update the time after, on the assumption that
175 * the packet transmission is more likely to happen towards the
176 * end of the kernel_sendmsg() call.
177 */
David Howellsa5af7e12016-10-06 08:11:49 +0100178 call->ping_time = ktime_get_real();
David Howells8e831342016-09-22 00:29:31 +0100179 set_bit(RXRPC_CALL_PINGING, &call->flags);
180 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_ping, serial);
181 }
David Howells26cb02a2016-10-06 08:11:49 +0100182
183 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells8e831342016-09-22 00:29:31 +0100184 if (ping)
David Howellsa5af7e12016-10-06 08:11:49 +0100185 call->ping_time = ktime_get_real();
David Howells8d94aa32016-09-07 09:19:31 +0100186
David Howells26cb02a2016-10-06 08:11:49 +0100187 if (call->state < RXRPC_CALL_COMPLETE) {
David Howells805b21b2016-09-24 18:05:26 +0100188 if (ret < 0) {
David Howellsa5af7e12016-10-06 08:11:49 +0100189 if (ping)
190 clear_bit(RXRPC_CALL_PINGING, &call->flags);
David Howells248f2192016-09-08 11:10:12 +0100191 rxrpc_propose_ACK(call, pkt->ack.reason,
192 ntohs(pkt->ack.maxSkew),
193 ntohl(pkt->ack.serial),
David Howells9c7ad432016-09-23 13:50:40 +0100194 true, true,
195 rxrpc_propose_ack_retry_tx);
David Howells805b21b2016-09-24 18:05:26 +0100196 } else {
197 spin_lock_bh(&call->lock);
198 if (after(hard_ack, call->ackr_consumed))
199 call->ackr_consumed = hard_ack;
200 if (after(top, call->ackr_seen))
201 call->ackr_seen = top;
202 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100203 }
204 }
205
David Howells8d94aa32016-09-07 09:19:31 +0100206out:
207 rxrpc_put_connection(conn);
208 kfree(pkt);
209 return ret;
210}
211
David Howells5873c082014-02-07 18:58:44 +0000212/*
David Howells26cb02a2016-10-06 08:11:49 +0100213 * Send an ABORT call packet.
214 */
215int rxrpc_send_abort_packet(struct rxrpc_call *call)
216{
217 struct rxrpc_connection *conn = NULL;
218 struct rxrpc_abort_buffer pkt;
219 struct msghdr msg;
220 struct kvec iov[1];
221 rxrpc_serial_t serial;
222 int ret;
223
224 spin_lock_bh(&call->lock);
225 if (call->conn)
226 conn = rxrpc_get_connection_maybe(call->conn);
227 spin_unlock_bh(&call->lock);
228 if (!conn)
229 return -ECONNRESET;
230
231 msg.msg_name = &call->peer->srx.transport;
232 msg.msg_namelen = call->peer->srx.transport_len;
233 msg.msg_control = NULL;
234 msg.msg_controllen = 0;
235 msg.msg_flags = 0;
236
237 pkt.whdr.epoch = htonl(conn->proto.epoch);
238 pkt.whdr.cid = htonl(call->cid);
239 pkt.whdr.callNumber = htonl(call->call_id);
240 pkt.whdr.seq = 0;
241 pkt.whdr.type = RXRPC_PACKET_TYPE_ABORT;
242 pkt.whdr.flags = conn->out_clientflag;
243 pkt.whdr.userStatus = 0;
244 pkt.whdr.securityIndex = call->security_ix;
245 pkt.whdr._rsvd = 0;
246 pkt.whdr.serviceId = htons(call->service_id);
247 pkt.abort_code = htonl(call->abort_code);
248
249 iov[0].iov_base = &pkt;
250 iov[0].iov_len = sizeof(pkt);
251
252 serial = atomic_inc_return(&conn->serial);
253 pkt.whdr.serial = htonl(serial);
254
255 ret = kernel_sendmsg(conn->params.local->socket,
256 &msg, iov, 1, sizeof(pkt));
257
258 rxrpc_put_connection(conn);
259 return ret;
260}
261
262/*
David Howells17926a72007-04-26 15:48:28 -0700263 * send a packet through the transport endpoint
264 */
David Howellsa1767072016-09-29 22:37:15 +0100265int rxrpc_send_data_packet(struct rxrpc_call *call, struct sk_buff *skb,
266 bool retrans)
David Howells17926a72007-04-26 15:48:28 -0700267{
David Howells5a924b82016-09-22 00:29:31 +0100268 struct rxrpc_connection *conn = call->conn;
269 struct rxrpc_wire_header whdr;
270 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700271 struct msghdr msg;
David Howells5a924b82016-09-22 00:29:31 +0100272 struct kvec iov[2];
273 rxrpc_serial_t serial;
274 size_t len;
David Howellsa1767072016-09-29 22:37:15 +0100275 bool lost = false;
David Howells17926a72007-04-26 15:48:28 -0700276 int ret, opt;
277
278 _enter(",{%d}", skb->len);
279
David Howells5a924b82016-09-22 00:29:31 +0100280 /* Each transmission of a Tx packet needs a new serial number */
281 serial = atomic_inc_return(&conn->serial);
David Howells17926a72007-04-26 15:48:28 -0700282
David Howells5a924b82016-09-22 00:29:31 +0100283 whdr.epoch = htonl(conn->proto.epoch);
284 whdr.cid = htonl(call->cid);
285 whdr.callNumber = htonl(call->call_id);
286 whdr.seq = htonl(sp->hdr.seq);
287 whdr.serial = htonl(serial);
288 whdr.type = RXRPC_PACKET_TYPE_DATA;
289 whdr.flags = sp->hdr.flags;
290 whdr.userStatus = 0;
291 whdr.securityIndex = call->security_ix;
292 whdr._rsvd = htons(sp->hdr._rsvd);
293 whdr.serviceId = htons(call->service_id);
294
295 iov[0].iov_base = &whdr;
296 iov[0].iov_len = sizeof(whdr);
297 iov[1].iov_base = skb->head;
298 iov[1].iov_len = skb->len;
299 len = iov[0].iov_len + iov[1].iov_len;
300
301 msg.msg_name = &call->peer->srx.transport;
302 msg.msg_namelen = call->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700303 msg.msg_control = NULL;
304 msg.msg_controllen = 0;
305 msg.msg_flags = 0;
306
David Howells57494342016-09-24 18:05:27 +0100307 /* If our RTT cache needs working on, request an ACK. Also request
308 * ACKs if a DATA packet appears to have been lost.
309 */
David Howellsbf7d6202016-10-06 08:11:51 +0100310 if (!(sp->hdr.flags & RXRPC_LAST_PACKET) &&
311 (retrans ||
312 call->cong_mode == RXRPC_CALL_SLOW_START ||
313 (call->peer->rtt_usage < 3 && sp->hdr.seq & 1) ||
314 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
315 ktime_get_real())))
David Howells0d4b1032016-09-22 00:29:31 +0100316 whdr.flags |= RXRPC_REQUEST_ACK;
317
David Howells8a681c362016-09-17 10:49:15 +0100318 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
319 static int lose;
320 if ((lose++ & 7) == 7) {
David Howellsa1767072016-09-29 22:37:15 +0100321 ret = 0;
322 lost = true;
323 goto done;
David Howells8a681c362016-09-17 10:49:15 +0100324 }
325 }
326
David Howells5a924b82016-09-22 00:29:31 +0100327 _proto("Tx DATA %%%u { #%u }", serial, sp->hdr.seq);
328
David Howells17926a72007-04-26 15:48:28 -0700329 /* send the packet with the don't fragment bit set if we currently
330 * think it's small enough */
David Howells5a924b82016-09-22 00:29:31 +0100331 if (iov[1].iov_len >= call->peer->maxdata)
332 goto send_fragmentable;
David Howells17926a72007-04-26 15:48:28 -0700333
David Howells5a924b82016-09-22 00:29:31 +0100334 down_read(&conn->params.local->defrag_sem);
335 /* send the packet by UDP
336 * - returns -EMSGSIZE if UDP would have to fragment the packet
337 * to go out of the interface
338 * - in which case, we'll have processed the ICMP error
339 * message and update the peer record
340 */
341 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700342
David Howells5a924b82016-09-22 00:29:31 +0100343 up_read(&conn->params.local->defrag_sem);
344 if (ret == -EMSGSIZE)
345 goto send_fragmentable;
346
347done:
David Howellsa1767072016-09-29 22:37:15 +0100348 trace_rxrpc_tx_data(call, sp->hdr.seq, serial, whdr.flags,
349 retrans, lost);
David Howells50235c42016-09-22 00:29:31 +0100350 if (ret >= 0) {
David Howells0d4b1032016-09-22 00:29:31 +0100351 ktime_t now = ktime_get_real();
352 skb->tstamp = now;
David Howells50235c42016-09-22 00:29:31 +0100353 smp_wmb();
David Howells5a924b82016-09-22 00:29:31 +0100354 sp->hdr.serial = serial;
David Howells0d4b1032016-09-22 00:29:31 +0100355 if (whdr.flags & RXRPC_REQUEST_ACK) {
356 call->peer->rtt_last_req = now;
David Howells50235c42016-09-22 00:29:31 +0100357 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_data, serial);
David Howells0d4b1032016-09-22 00:29:31 +0100358 }
David Howells17926a72007-04-26 15:48:28 -0700359 }
David Howells5a924b82016-09-22 00:29:31 +0100360 _leave(" = %d [%u]", ret, call->peer->maxdata);
361 return ret;
David Howells17926a72007-04-26 15:48:28 -0700362
363send_fragmentable:
364 /* attempt to send this message with fragmentation enabled */
365 _debug("send fragment");
366
David Howells985a5c82016-06-17 11:53:37 +0100367 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700368
David Howells985a5c82016-06-17 11:53:37 +0100369 switch (conn->params.local->srx.transport.family) {
370 case AF_INET:
371 opt = IP_PMTUDISC_DONT;
372 ret = kernel_setsockopt(conn->params.local->socket,
373 SOL_IP, IP_MTU_DISCOVER,
374 (char *)&opt, sizeof(opt));
375 if (ret == 0) {
David Howells5a924b82016-09-22 00:29:31 +0100376 ret = kernel_sendmsg(conn->params.local->socket, &msg,
377 iov, 2, len);
David Howells985a5c82016-06-17 11:53:37 +0100378
379 opt = IP_PMTUDISC_DO;
380 kernel_setsockopt(conn->params.local->socket, SOL_IP,
381 IP_MTU_DISCOVER,
382 (char *)&opt, sizeof(opt));
383 }
384 break;
David Howells75b54cb2016-09-13 08:49:05 +0100385
David Howellsd1912742016-09-17 07:26:01 +0100386#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100387 case AF_INET6:
388 opt = IPV6_PMTUDISC_DONT;
389 ret = kernel_setsockopt(conn->params.local->socket,
390 SOL_IPV6, IPV6_MTU_DISCOVER,
391 (char *)&opt, sizeof(opt));
392 if (ret == 0) {
393 ret = kernel_sendmsg(conn->params.local->socket, &msg,
David Howells85924b82018-02-22 14:38:14 +0000394 iov, 2, len);
David Howells75b54cb2016-09-13 08:49:05 +0100395
396 opt = IPV6_PMTUDISC_DO;
397 kernel_setsockopt(conn->params.local->socket,
398 SOL_IPV6, IPV6_MTU_DISCOVER,
399 (char *)&opt, sizeof(opt));
400 }
401 break;
David Howellsd1912742016-09-17 07:26:01 +0100402#endif
David Howells17926a72007-04-26 15:48:28 -0700403 }
404
David Howells985a5c82016-06-17 11:53:37 +0100405 up_write(&conn->params.local->defrag_sem);
David Howells5a924b82016-09-22 00:29:31 +0100406 goto done;
David Howells17926a72007-04-26 15:48:28 -0700407}
David Howells248f2192016-09-08 11:10:12 +0100408
409/*
410 * reject packets through the local endpoint
411 */
412void rxrpc_reject_packets(struct rxrpc_local *local)
413{
David Howells1c2bc7b2016-09-13 08:49:05 +0100414 struct sockaddr_rxrpc srx;
David Howells248f2192016-09-08 11:10:12 +0100415 struct rxrpc_skb_priv *sp;
416 struct rxrpc_wire_header whdr;
417 struct sk_buff *skb;
418 struct msghdr msg;
419 struct kvec iov[2];
420 size_t size;
421 __be32 code;
422
423 _enter("%d", local->debug_id);
424
425 iov[0].iov_base = &whdr;
426 iov[0].iov_len = sizeof(whdr);
427 iov[1].iov_base = &code;
428 iov[1].iov_len = sizeof(code);
429 size = sizeof(whdr) + sizeof(code);
430
David Howells1c2bc7b2016-09-13 08:49:05 +0100431 msg.msg_name = &srx.transport;
David Howells248f2192016-09-08 11:10:12 +0100432 msg.msg_control = NULL;
433 msg.msg_controllen = 0;
434 msg.msg_flags = 0;
435
David Howells248f2192016-09-08 11:10:12 +0100436 memset(&whdr, 0, sizeof(whdr));
437 whdr.type = RXRPC_PACKET_TYPE_ABORT;
438
439 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100440 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells248f2192016-09-08 11:10:12 +0100441 sp = rxrpc_skb(skb);
David Howells1c2bc7b2016-09-13 08:49:05 +0100442
443 if (rxrpc_extract_addr_from_skb(&srx, skb) == 0) {
444 msg.msg_namelen = srx.transport_len;
445
David Howells248f2192016-09-08 11:10:12 +0100446 code = htonl(skb->priority);
447
448 whdr.epoch = htonl(sp->hdr.epoch);
449 whdr.cid = htonl(sp->hdr.cid);
450 whdr.callNumber = htonl(sp->hdr.callNumber);
451 whdr.serviceId = htons(sp->hdr.serviceId);
452 whdr.flags = sp->hdr.flags;
453 whdr.flags ^= RXRPC_CLIENT_INITIATED;
454 whdr.flags &= RXRPC_CLIENT_INITIATED;
455
456 kernel_sendmsg(local->socket, &msg, iov, 2, size);
David Howells248f2192016-09-08 11:10:12 +0100457 }
458
David Howells71f3ca42016-09-17 10:49:14 +0100459 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells248f2192016-09-08 11:10:12 +0100460 }
461
462 _leave("");
463}