blob: a12cea0cbc056cbfaad4ff23f829b638d0e7c8b0 [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 Howellsa1767072016-09-29 22:37:15 +0100310 if (retrans ||
David Howellsb112a672016-09-29 22:37:16 +0100311 call->cong_mode == RXRPC_CALL_SLOW_START ||
David Howells57494342016-09-24 18:05:27 +0100312 (call->peer->rtt_usage < 3 && sp->hdr.seq & 1) ||
David Howells0d4b1032016-09-22 00:29:31 +0100313 ktime_before(ktime_add_ms(call->peer->rtt_last_req, 1000),
314 ktime_get_real()))
315 whdr.flags |= RXRPC_REQUEST_ACK;
316
David Howells8a681c362016-09-17 10:49:15 +0100317 if (IS_ENABLED(CONFIG_AF_RXRPC_INJECT_LOSS)) {
318 static int lose;
319 if ((lose++ & 7) == 7) {
David Howellsa1767072016-09-29 22:37:15 +0100320 ret = 0;
321 lost = true;
322 goto done;
David Howells8a681c362016-09-17 10:49:15 +0100323 }
324 }
325
David Howells5a924b82016-09-22 00:29:31 +0100326 _proto("Tx DATA %%%u { #%u }", serial, sp->hdr.seq);
327
David Howells17926a72007-04-26 15:48:28 -0700328 /* send the packet with the don't fragment bit set if we currently
329 * think it's small enough */
David Howells5a924b82016-09-22 00:29:31 +0100330 if (iov[1].iov_len >= call->peer->maxdata)
331 goto send_fragmentable;
David Howells17926a72007-04-26 15:48:28 -0700332
David Howells5a924b82016-09-22 00:29:31 +0100333 down_read(&conn->params.local->defrag_sem);
334 /* send the packet by UDP
335 * - returns -EMSGSIZE if UDP would have to fragment the packet
336 * to go out of the interface
337 * - in which case, we'll have processed the ICMP error
338 * message and update the peer record
339 */
340 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700341
David Howells5a924b82016-09-22 00:29:31 +0100342 up_read(&conn->params.local->defrag_sem);
343 if (ret == -EMSGSIZE)
344 goto send_fragmentable;
345
346done:
David Howellsa1767072016-09-29 22:37:15 +0100347 trace_rxrpc_tx_data(call, sp->hdr.seq, serial, whdr.flags,
348 retrans, lost);
David Howells50235c42016-09-22 00:29:31 +0100349 if (ret >= 0) {
David Howells0d4b1032016-09-22 00:29:31 +0100350 ktime_t now = ktime_get_real();
351 skb->tstamp = now;
David Howells50235c42016-09-22 00:29:31 +0100352 smp_wmb();
David Howells5a924b82016-09-22 00:29:31 +0100353 sp->hdr.serial = serial;
David Howells0d4b1032016-09-22 00:29:31 +0100354 if (whdr.flags & RXRPC_REQUEST_ACK) {
355 call->peer->rtt_last_req = now;
David Howells50235c42016-09-22 00:29:31 +0100356 trace_rxrpc_rtt_tx(call, rxrpc_rtt_tx_data, serial);
David Howells0d4b1032016-09-22 00:29:31 +0100357 }
David Howells17926a72007-04-26 15:48:28 -0700358 }
David Howells5a924b82016-09-22 00:29:31 +0100359 _leave(" = %d [%u]", ret, call->peer->maxdata);
360 return ret;
David Howells17926a72007-04-26 15:48:28 -0700361
362send_fragmentable:
363 /* attempt to send this message with fragmentation enabled */
364 _debug("send fragment");
365
David Howells985a5c82016-06-17 11:53:37 +0100366 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700367
David Howells985a5c82016-06-17 11:53:37 +0100368 switch (conn->params.local->srx.transport.family) {
369 case AF_INET:
370 opt = IP_PMTUDISC_DONT;
371 ret = kernel_setsockopt(conn->params.local->socket,
372 SOL_IP, IP_MTU_DISCOVER,
373 (char *)&opt, sizeof(opt));
374 if (ret == 0) {
David Howells5a924b82016-09-22 00:29:31 +0100375 ret = kernel_sendmsg(conn->params.local->socket, &msg,
376 iov, 2, len);
David Howells985a5c82016-06-17 11:53:37 +0100377
378 opt = IP_PMTUDISC_DO;
379 kernel_setsockopt(conn->params.local->socket, SOL_IP,
380 IP_MTU_DISCOVER,
381 (char *)&opt, sizeof(opt));
382 }
383 break;
David Howells75b54cb2016-09-13 08:49:05 +0100384
David Howellsd1912742016-09-17 07:26:01 +0100385#ifdef CONFIG_AF_RXRPC_IPV6
David Howells75b54cb2016-09-13 08:49:05 +0100386 case AF_INET6:
387 opt = IPV6_PMTUDISC_DONT;
388 ret = kernel_setsockopt(conn->params.local->socket,
389 SOL_IPV6, IPV6_MTU_DISCOVER,
390 (char *)&opt, sizeof(opt));
391 if (ret == 0) {
392 ret = kernel_sendmsg(conn->params.local->socket, &msg,
393 iov, 1, iov[0].iov_len);
394
395 opt = IPV6_PMTUDISC_DO;
396 kernel_setsockopt(conn->params.local->socket,
397 SOL_IPV6, IPV6_MTU_DISCOVER,
398 (char *)&opt, sizeof(opt));
399 }
400 break;
David Howellsd1912742016-09-17 07:26:01 +0100401#endif
David Howells17926a72007-04-26 15:48:28 -0700402 }
403
David Howells985a5c82016-06-17 11:53:37 +0100404 up_write(&conn->params.local->defrag_sem);
David Howells5a924b82016-09-22 00:29:31 +0100405 goto done;
David Howells17926a72007-04-26 15:48:28 -0700406}
David Howells248f2192016-09-08 11:10:12 +0100407
408/*
409 * reject packets through the local endpoint
410 */
411void rxrpc_reject_packets(struct rxrpc_local *local)
412{
David Howells1c2bc7b2016-09-13 08:49:05 +0100413 struct sockaddr_rxrpc srx;
David Howells248f2192016-09-08 11:10:12 +0100414 struct rxrpc_skb_priv *sp;
415 struct rxrpc_wire_header whdr;
416 struct sk_buff *skb;
417 struct msghdr msg;
418 struct kvec iov[2];
419 size_t size;
420 __be32 code;
421
422 _enter("%d", local->debug_id);
423
424 iov[0].iov_base = &whdr;
425 iov[0].iov_len = sizeof(whdr);
426 iov[1].iov_base = &code;
427 iov[1].iov_len = sizeof(code);
428 size = sizeof(whdr) + sizeof(code);
429
David Howells1c2bc7b2016-09-13 08:49:05 +0100430 msg.msg_name = &srx.transport;
David Howells248f2192016-09-08 11:10:12 +0100431 msg.msg_control = NULL;
432 msg.msg_controllen = 0;
433 msg.msg_flags = 0;
434
David Howells248f2192016-09-08 11:10:12 +0100435 memset(&whdr, 0, sizeof(whdr));
436 whdr.type = RXRPC_PACKET_TYPE_ABORT;
437
438 while ((skb = skb_dequeue(&local->reject_queue))) {
David Howells71f3ca42016-09-17 10:49:14 +0100439 rxrpc_see_skb(skb, rxrpc_skb_rx_seen);
David Howells248f2192016-09-08 11:10:12 +0100440 sp = rxrpc_skb(skb);
David Howells1c2bc7b2016-09-13 08:49:05 +0100441
442 if (rxrpc_extract_addr_from_skb(&srx, skb) == 0) {
443 msg.msg_namelen = srx.transport_len;
444
David Howells248f2192016-09-08 11:10:12 +0100445 code = htonl(skb->priority);
446
447 whdr.epoch = htonl(sp->hdr.epoch);
448 whdr.cid = htonl(sp->hdr.cid);
449 whdr.callNumber = htonl(sp->hdr.callNumber);
450 whdr.serviceId = htons(sp->hdr.serviceId);
451 whdr.flags = sp->hdr.flags;
452 whdr.flags ^= RXRPC_CLIENT_INITIATED;
453 whdr.flags &= RXRPC_CLIENT_INITIATED;
454
455 kernel_sendmsg(local->socket, &msg, iov, 2, size);
David Howells248f2192016-09-08 11:10:12 +0100456 }
457
David Howells71f3ca42016-09-17 10:49:14 +0100458 rxrpc_free_skb(skb, rxrpc_skb_rx_freed);
David Howells248f2192016-09-08 11:10:12 +0100459 }
460
461 _leave("");
462}