blob: 036e1112b0c567c60420db1e372fd05ad2f28e06 [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>
17#include <linux/circ_buf.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <net/sock.h>
20#include <net/af_rxrpc.h>
21#include "ar-internal.h"
22
David Howells5873c082014-02-07 18:58:44 +000023/*
24 * Time till packet resend (in jiffies).
25 */
David Howellsdad8aff2016-03-09 23:22:56 +000026unsigned int rxrpc_resend_timeout = 4 * HZ;
David Howells17926a72007-04-26 15:48:28 -070027
Ying Xue1b784142015-03-02 15:37:48 +080028static int rxrpc_send_data(struct rxrpc_sock *rx,
David Howells17926a72007-04-26 15:48:28 -070029 struct rxrpc_call *call,
30 struct msghdr *msg, size_t len);
31
32/*
33 * extract control messages from the sendmsg() control buffer
34 */
David Howells2341e072016-06-09 23:02:51 +010035static int rxrpc_sendmsg_cmsg(struct msghdr *msg,
David Howells17926a72007-04-26 15:48:28 -070036 unsigned long *user_call_ID,
37 enum rxrpc_command *command,
David Howellscc8feb82016-04-04 14:00:37 +010038 u32 *abort_code,
39 bool *_exclusive)
David Howells17926a72007-04-26 15:48:28 -070040{
41 struct cmsghdr *cmsg;
David Howells2341e072016-06-09 23:02:51 +010042 bool got_user_ID = false;
David Howells17926a72007-04-26 15:48:28 -070043 int len;
44
45 *command = RXRPC_CMD_SEND_DATA;
46
47 if (msg->msg_controllen == 0)
48 return -EINVAL;
49
Gu Zhengf95b4142014-12-11 11:22:04 +080050 for_each_cmsghdr(cmsg, msg) {
David Howells17926a72007-04-26 15:48:28 -070051 if (!CMSG_OK(msg, cmsg))
52 return -EINVAL;
53
54 len = cmsg->cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr));
55 _debug("CMSG %d, %d, %d",
56 cmsg->cmsg_level, cmsg->cmsg_type, len);
57
58 if (cmsg->cmsg_level != SOL_RXRPC)
59 continue;
60
61 switch (cmsg->cmsg_type) {
62 case RXRPC_USER_CALL_ID:
63 if (msg->msg_flags & MSG_CMSG_COMPAT) {
64 if (len != sizeof(u32))
65 return -EINVAL;
66 *user_call_ID = *(u32 *) CMSG_DATA(cmsg);
67 } else {
68 if (len != sizeof(unsigned long))
69 return -EINVAL;
70 *user_call_ID = *(unsigned long *)
71 CMSG_DATA(cmsg);
72 }
73 _debug("User Call ID %lx", *user_call_ID);
David Howells2341e072016-06-09 23:02:51 +010074 got_user_ID = true;
David Howells17926a72007-04-26 15:48:28 -070075 break;
76
77 case RXRPC_ABORT:
78 if (*command != RXRPC_CMD_SEND_DATA)
79 return -EINVAL;
80 *command = RXRPC_CMD_SEND_ABORT;
81 if (len != sizeof(*abort_code))
82 return -EINVAL;
83 *abort_code = *(unsigned int *) CMSG_DATA(cmsg);
84 _debug("Abort %x", *abort_code);
85 if (*abort_code == 0)
86 return -EINVAL;
87 break;
88
89 case RXRPC_ACCEPT:
90 if (*command != RXRPC_CMD_SEND_DATA)
91 return -EINVAL;
92 *command = RXRPC_CMD_ACCEPT;
93 if (len != 0)
94 return -EINVAL;
David Howells17926a72007-04-26 15:48:28 -070095 break;
96
David Howellscc8feb82016-04-04 14:00:37 +010097 case RXRPC_EXCLUSIVE_CALL:
98 *_exclusive = true;
99 if (len != 0)
100 return -EINVAL;
101 break;
David Howells17926a72007-04-26 15:48:28 -0700102 default:
103 return -EINVAL;
104 }
105 }
106
David Howells2341e072016-06-09 23:02:51 +0100107 if (!got_user_ID)
108 return -EINVAL;
David Howells17926a72007-04-26 15:48:28 -0700109 _leave(" = 0");
110 return 0;
111}
112
113/*
114 * abort a call, sending an ABORT packet to the peer
115 */
116static void rxrpc_send_abort(struct rxrpc_call *call, u32 abort_code)
117{
David Howellsf5c17aa2016-08-30 09:49:28 +0100118 if (call->state >= RXRPC_CALL_COMPLETE)
119 return;
120
David Howells17926a72007-04-26 15:48:28 -0700121 write_lock_bh(&call->state_lock);
122
David Howellsf5c17aa2016-08-30 09:49:28 +0100123 if (__rxrpc_abort_call(call, abort_code, ECONNABORTED)) {
David Howells17926a72007-04-26 15:48:28 -0700124 del_timer_sync(&call->resend_timer);
125 del_timer_sync(&call->ack_timer);
David Howells4c198ad2016-03-04 15:53:46 +0000126 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
127 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
David Howells17926a72007-04-26 15:48:28 -0700128 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
David Howells651350d2007-04-26 15:50:17 -0700129 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700130 }
131
132 write_unlock_bh(&call->state_lock);
133}
134
135/*
David Howells2341e072016-06-09 23:02:51 +0100136 * Create a new client call for sendmsg().
137 */
138static struct rxrpc_call *
139rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg,
David Howellscc8feb82016-04-04 14:00:37 +0100140 unsigned long user_call_ID, bool exclusive)
David Howells2341e072016-06-09 23:02:51 +0100141{
David Howells19ffa012016-04-04 14:00:36 +0100142 struct rxrpc_conn_parameters cp;
David Howells2341e072016-06-09 23:02:51 +0100143 struct rxrpc_call *call;
144 struct key *key;
David Howells2341e072016-06-09 23:02:51 +0100145
146 DECLARE_SOCKADDR(struct sockaddr_rxrpc *, srx, msg->msg_name);
147
148 _enter("");
149
150 if (!msg->msg_name)
151 return ERR_PTR(-EDESTADDRREQ);
152
David Howells19ffa012016-04-04 14:00:36 +0100153 key = rx->key;
154 if (key && !rx->key->payload.data[0])
155 key = NULL;
156
157 memset(&cp, 0, sizeof(cp));
158 cp.local = rx->local;
159 cp.key = rx->key;
160 cp.security_level = rx->min_sec_level;
David Howellscc8feb82016-04-04 14:00:37 +0100161 cp.exclusive = rx->exclusive | exclusive;
David Howells19ffa012016-04-04 14:00:36 +0100162 cp.service_id = srx->srx_service;
David Howellsaa390bb2016-06-17 10:06:56 +0100163 call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, GFP_KERNEL);
David Howells2341e072016-06-09 23:02:51 +0100164
165 _leave(" = %p\n", call);
166 return call;
David Howells2341e072016-06-09 23:02:51 +0100167}
168
169/*
David Howells17926a72007-04-26 15:48:28 -0700170 * send a message forming part of a client call through an RxRPC socket
171 * - caller holds the socket locked
172 * - the socket may be either a client socket or a server socket
173 */
David Howells2341e072016-06-09 23:02:51 +0100174int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
David Howells17926a72007-04-26 15:48:28 -0700175{
David Howells17926a72007-04-26 15:48:28 -0700176 enum rxrpc_command cmd;
177 struct rxrpc_call *call;
178 unsigned long user_call_ID = 0;
David Howellscc8feb82016-04-04 14:00:37 +0100179 bool exclusive = false;
David Howells17926a72007-04-26 15:48:28 -0700180 u32 abort_code = 0;
181 int ret;
182
183 _enter("");
184
David Howellscc8feb82016-04-04 14:00:37 +0100185 ret = rxrpc_sendmsg_cmsg(msg, &user_call_ID, &cmd, &abort_code,
186 &exclusive);
David Howells17926a72007-04-26 15:48:28 -0700187 if (ret < 0)
188 return ret;
189
David Howells2341e072016-06-09 23:02:51 +0100190 if (cmd == RXRPC_CMD_ACCEPT) {
191 if (rx->sk.sk_state != RXRPC_SERVER_LISTENING)
192 return -EINVAL;
193 call = rxrpc_accept_call(rx, user_call_ID);
194 if (IS_ERR(call))
195 return PTR_ERR(call);
196 rxrpc_put_call(call);
197 return 0;
David Howells17926a72007-04-26 15:48:28 -0700198 }
199
David Howells2341e072016-06-09 23:02:51 +0100200 call = rxrpc_find_call_by_user_ID(rx, user_call_ID);
201 if (!call) {
202 if (cmd != RXRPC_CMD_SEND_DATA)
203 return -EBADSLT;
David Howellscc8feb82016-04-04 14:00:37 +0100204 call = rxrpc_new_client_call_for_sendmsg(rx, msg, user_call_ID,
205 exclusive);
David Howells2341e072016-06-09 23:02:51 +0100206 if (IS_ERR(call))
207 return PTR_ERR(call);
David Howells17926a72007-04-26 15:48:28 -0700208 }
209
210 _debug("CALL %d USR %lx ST %d on CONN %p",
211 call->debug_id, call->user_call_ID, call->state, call->conn);
212
213 if (call->state >= RXRPC_CALL_COMPLETE) {
214 /* it's too late for this call */
David Howellsf5c17aa2016-08-30 09:49:28 +0100215 ret = -ESHUTDOWN;
David Howells17926a72007-04-26 15:48:28 -0700216 } else if (cmd == RXRPC_CMD_SEND_ABORT) {
217 rxrpc_send_abort(call, abort_code);
David Howells2341e072016-06-09 23:02:51 +0100218 ret = 0;
David Howells17926a72007-04-26 15:48:28 -0700219 } else if (cmd != RXRPC_CMD_SEND_DATA) {
220 ret = -EINVAL;
David Howellsdabe5a72016-08-23 15:27:24 +0100221 } else if (rxrpc_is_client_call(call) &&
David Howells2341e072016-06-09 23:02:51 +0100222 call->state != RXRPC_CALL_CLIENT_SEND_REQUEST) {
David Howells17926a72007-04-26 15:48:28 -0700223 /* request phase complete for this client call */
224 ret = -EPROTO;
David Howellsdabe5a72016-08-23 15:27:24 +0100225 } else if (rxrpc_is_service_call(call) &&
David Howells2341e072016-06-09 23:02:51 +0100226 call->state != RXRPC_CALL_SERVER_ACK_REQUEST &&
227 call->state != RXRPC_CALL_SERVER_SEND_REPLY) {
228 /* Reply phase not begun or not complete for service call. */
229 ret = -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700230 } else {
Ying Xue1b784142015-03-02 15:37:48 +0800231 ret = rxrpc_send_data(rx, call, msg, len);
David Howells17926a72007-04-26 15:48:28 -0700232 }
233
234 rxrpc_put_call(call);
235 _leave(" = %d", ret);
236 return ret;
237}
238
David Howells651350d2007-04-26 15:50:17 -0700239/**
240 * rxrpc_kernel_send_data - Allow a kernel service to send data on a call
241 * @call: The call to send data through
242 * @msg: The data to send
243 * @len: The amount of data to send
244 *
245 * Allow a kernel service to send data on a call. The call must be in an state
246 * appropriate to sending data. No control data should be supplied in @msg,
247 * nor should an address be supplied. MSG_MORE should be flagged if there's
248 * more data to come, otherwise this data will end the transmission phase.
249 */
250int rxrpc_kernel_send_data(struct rxrpc_call *call, struct msghdr *msg,
251 size_t len)
252{
253 int ret;
254
255 _enter("{%d,%s},", call->debug_id, rxrpc_call_states[call->state]);
256
257 ASSERTCMP(msg->msg_name, ==, NULL);
258 ASSERTCMP(msg->msg_control, ==, NULL);
259
260 lock_sock(&call->socket->sk);
261
262 _debug("CALL %d USR %lx ST %d on CONN %p",
263 call->debug_id, call->user_call_ID, call->state, call->conn);
264
265 if (call->state >= RXRPC_CALL_COMPLETE) {
266 ret = -ESHUTDOWN; /* it's too late for this call */
267 } else if (call->state != RXRPC_CALL_CLIENT_SEND_REQUEST &&
268 call->state != RXRPC_CALL_SERVER_ACK_REQUEST &&
269 call->state != RXRPC_CALL_SERVER_SEND_REPLY) {
270 ret = -EPROTO; /* request phase complete for this client call */
271 } else {
Ying Xue1b784142015-03-02 15:37:48 +0800272 ret = rxrpc_send_data(call->socket, call, msg, len);
David Howells651350d2007-04-26 15:50:17 -0700273 }
274
275 release_sock(&call->socket->sk);
276 _leave(" = %d", ret);
277 return ret;
278}
279
280EXPORT_SYMBOL(rxrpc_kernel_send_data);
281
Ben Hutchings2c530402012-07-10 10:55:09 +0000282/**
David Howells651350d2007-04-26 15:50:17 -0700283 * rxrpc_kernel_abort_call - Allow a kernel service to abort a call
284 * @call: The call to be aborted
285 * @abort_code: The abort code to stick into the ABORT packet
286 *
287 * Allow a kernel service to abort a call, if it's still in an abortable state.
288 */
289void rxrpc_kernel_abort_call(struct rxrpc_call *call, u32 abort_code)
290{
291 _enter("{%d},%d", call->debug_id, abort_code);
292
293 lock_sock(&call->socket->sk);
294
295 _debug("CALL %d USR %lx ST %d on CONN %p",
296 call->debug_id, call->user_call_ID, call->state, call->conn);
297
David Howellsf5c17aa2016-08-30 09:49:28 +0100298 rxrpc_send_abort(call, abort_code);
David Howells651350d2007-04-26 15:50:17 -0700299
300 release_sock(&call->socket->sk);
301 _leave("");
302}
303
304EXPORT_SYMBOL(rxrpc_kernel_abort_call);
305
David Howells17926a72007-04-26 15:48:28 -0700306/*
David Howells17926a72007-04-26 15:48:28 -0700307 * send a packet through the transport endpoint
308 */
David Howells985a5c82016-06-17 11:53:37 +0100309int rxrpc_send_data_packet(struct rxrpc_connection *conn, struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700310{
311 struct kvec iov[1];
312 struct msghdr msg;
313 int ret, opt;
314
315 _enter(",{%d}", skb->len);
316
317 iov[0].iov_base = skb->head;
318 iov[0].iov_len = skb->len;
319
David Howells985a5c82016-06-17 11:53:37 +0100320 msg.msg_name = &conn->params.peer->srx.transport;
321 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700322 msg.msg_control = NULL;
323 msg.msg_controllen = 0;
324 msg.msg_flags = 0;
325
326 /* send the packet with the don't fragment bit set if we currently
327 * think it's small enough */
David Howells985a5c82016-06-17 11:53:37 +0100328 if (skb->len - sizeof(struct rxrpc_wire_header) < conn->params.peer->maxdata) {
329 down_read(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700330 /* send the packet by UDP
331 * - returns -EMSGSIZE if UDP would have to fragment the packet
332 * to go out of the interface
333 * - in which case, we'll have processed the ICMP error
334 * message and update the peer record
335 */
David Howells985a5c82016-06-17 11:53:37 +0100336 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 1,
David Howells17926a72007-04-26 15:48:28 -0700337 iov[0].iov_len);
338
David Howells985a5c82016-06-17 11:53:37 +0100339 up_read(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700340 if (ret == -EMSGSIZE)
341 goto send_fragmentable;
342
David Howells985a5c82016-06-17 11:53:37 +0100343 _leave(" = %d [%u]", ret, conn->params.peer->maxdata);
David Howells17926a72007-04-26 15:48:28 -0700344 return ret;
345 }
346
347send_fragmentable:
348 /* attempt to send this message with fragmentation enabled */
349 _debug("send fragment");
350
David Howells985a5c82016-06-17 11:53:37 +0100351 down_write(&conn->params.local->defrag_sem);
David Howells17926a72007-04-26 15:48:28 -0700352
David Howells985a5c82016-06-17 11:53:37 +0100353 switch (conn->params.local->srx.transport.family) {
354 case AF_INET:
355 opt = IP_PMTUDISC_DONT;
356 ret = kernel_setsockopt(conn->params.local->socket,
357 SOL_IP, IP_MTU_DISCOVER,
358 (char *)&opt, sizeof(opt));
359 if (ret == 0) {
360 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 1,
361 iov[0].iov_len);
362
363 opt = IP_PMTUDISC_DO;
364 kernel_setsockopt(conn->params.local->socket, SOL_IP,
365 IP_MTU_DISCOVER,
366 (char *)&opt, sizeof(opt));
367 }
368 break;
David Howells17926a72007-04-26 15:48:28 -0700369 }
370
David Howells985a5c82016-06-17 11:53:37 +0100371 up_write(&conn->params.local->defrag_sem);
372 _leave(" = %d [frag %u]", ret, conn->params.peer->maxdata);
David Howells17926a72007-04-26 15:48:28 -0700373 return ret;
374}
375
376/*
377 * wait for space to appear in the transmit/ACK window
378 * - caller holds the socket locked
379 */
380static int rxrpc_wait_for_tx_window(struct rxrpc_sock *rx,
381 struct rxrpc_call *call,
382 long *timeo)
383{
384 DECLARE_WAITQUEUE(myself, current);
385 int ret;
386
387 _enter(",{%d},%ld",
David Howellsee72b9f2016-03-04 15:58:06 +0000388 CIRC_SPACE(call->acks_head, ACCESS_ONCE(call->acks_tail),
389 call->acks_winsz),
David Howells17926a72007-04-26 15:48:28 -0700390 *timeo);
391
David Howells45025bc2016-08-24 07:30:52 +0100392 add_wait_queue(&call->waitq, &myself);
David Howells17926a72007-04-26 15:48:28 -0700393
394 for (;;) {
395 set_current_state(TASK_INTERRUPTIBLE);
396 ret = 0;
David Howellsee72b9f2016-03-04 15:58:06 +0000397 if (CIRC_SPACE(call->acks_head, ACCESS_ONCE(call->acks_tail),
David Howells17926a72007-04-26 15:48:28 -0700398 call->acks_winsz) > 0)
399 break;
400 if (signal_pending(current)) {
401 ret = sock_intr_errno(*timeo);
402 break;
403 }
404
405 release_sock(&rx->sk);
406 *timeo = schedule_timeout(*timeo);
407 lock_sock(&rx->sk);
408 }
409
David Howells45025bc2016-08-24 07:30:52 +0100410 remove_wait_queue(&call->waitq, &myself);
David Howells17926a72007-04-26 15:48:28 -0700411 set_current_state(TASK_RUNNING);
412 _leave(" = %d", ret);
413 return ret;
414}
415
416/*
417 * attempt to schedule an instant Tx resend
418 */
419static inline void rxrpc_instant_resend(struct rxrpc_call *call)
420{
421 read_lock_bh(&call->state_lock);
422 if (try_to_del_timer_sync(&call->resend_timer) >= 0) {
423 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
424 if (call->state < RXRPC_CALL_COMPLETE &&
David Howells4c198ad2016-03-04 15:53:46 +0000425 !test_and_set_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events))
David Howells651350d2007-04-26 15:50:17 -0700426 rxrpc_queue_call(call);
David Howells17926a72007-04-26 15:48:28 -0700427 }
428 read_unlock_bh(&call->state_lock);
429}
430
431/*
432 * queue a packet for transmission, set the resend timer and attempt
433 * to send the packet immediately
434 */
435static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,
436 bool last)
437{
438 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
439 int ret;
440
441 _net("queue skb %p [%d]", skb, call->acks_head);
442
443 ASSERT(call->acks_window != NULL);
444 call->acks_window[call->acks_head] = (unsigned long) skb;
445 smp_wmb();
446 call->acks_head = (call->acks_head + 1) & (call->acks_winsz - 1);
447
448 if (last || call->state == RXRPC_CALL_SERVER_ACK_REQUEST) {
449 _debug("________awaiting reply/ACK__________");
450 write_lock_bh(&call->state_lock);
451 switch (call->state) {
452 case RXRPC_CALL_CLIENT_SEND_REQUEST:
453 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
454 break;
455 case RXRPC_CALL_SERVER_ACK_REQUEST:
456 call->state = RXRPC_CALL_SERVER_SEND_REPLY;
457 if (!last)
458 break;
459 case RXRPC_CALL_SERVER_SEND_REPLY:
460 call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
461 break;
462 default:
463 break;
464 }
465 write_unlock_bh(&call->state_lock);
466 }
467
David Howells0d12f8a2016-03-04 15:53:46 +0000468 _proto("Tx DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
David Howells17926a72007-04-26 15:48:28 -0700469
Rusty Russell3db1cd52011-12-19 13:56:45 +0000470 sp->need_resend = false;
David Howells5873c082014-02-07 18:58:44 +0000471 sp->resend_at = jiffies + rxrpc_resend_timeout;
David Howells17926a72007-04-26 15:48:28 -0700472 if (!test_and_set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags)) {
473 _debug("run timer");
474 call->resend_timer.expires = sp->resend_at;
475 add_timer(&call->resend_timer);
476 }
477
478 /* attempt to cancel the rx-ACK timer, deferring reply transmission if
479 * we're ACK'ing the request phase of an incoming call */
480 ret = -EAGAIN;
481 if (try_to_del_timer_sync(&call->ack_timer) >= 0) {
482 /* the packet may be freed by rxrpc_process_call() before this
483 * returns */
David Howells45025bc2016-08-24 07:30:52 +0100484 if (rxrpc_is_client_call(call))
485 rxrpc_expose_client_call(call);
David Howells985a5c82016-06-17 11:53:37 +0100486 ret = rxrpc_send_data_packet(call->conn, skb);
David Howells17926a72007-04-26 15:48:28 -0700487 _net("sent skb %p", skb);
488 } else {
489 _debug("failed to delete ACK timer");
490 }
491
492 if (ret < 0) {
493 _debug("need instant resend %d", ret);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000494 sp->need_resend = true;
David Howells17926a72007-04-26 15:48:28 -0700495 rxrpc_instant_resend(call);
496 }
497
498 _leave("");
499}
500
501/*
David Howells0d12f8a2016-03-04 15:53:46 +0000502 * Convert a host-endian header into a network-endian header.
503 */
504static void rxrpc_insert_header(struct sk_buff *skb)
505{
506 struct rxrpc_wire_header whdr;
507 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
508
509 whdr.epoch = htonl(sp->hdr.epoch);
510 whdr.cid = htonl(sp->hdr.cid);
511 whdr.callNumber = htonl(sp->hdr.callNumber);
512 whdr.seq = htonl(sp->hdr.seq);
513 whdr.serial = htonl(sp->hdr.serial);
514 whdr.type = sp->hdr.type;
515 whdr.flags = sp->hdr.flags;
516 whdr.userStatus = sp->hdr.userStatus;
517 whdr.securityIndex = sp->hdr.securityIndex;
518 whdr._rsvd = htons(sp->hdr._rsvd);
519 whdr.serviceId = htons(sp->hdr.serviceId);
520
521 memcpy(skb->head, &whdr, sizeof(whdr));
522}
523
524/*
David Howells17926a72007-04-26 15:48:28 -0700525 * send data through a socket
526 * - must be called in process context
527 * - caller holds the socket locked
528 */
Ying Xue1b784142015-03-02 15:37:48 +0800529static int rxrpc_send_data(struct rxrpc_sock *rx,
David Howells17926a72007-04-26 15:48:28 -0700530 struct rxrpc_call *call,
531 struct msghdr *msg, size_t len)
532{
533 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700534 struct sk_buff *skb;
David Howells17926a72007-04-26 15:48:28 -0700535 struct sock *sk = &rx->sk;
536 long timeo;
537 bool more;
Al Viroaf2b0402014-11-27 21:44:24 -0500538 int ret, copied;
David Howells17926a72007-04-26 15:48:28 -0700539
David Howells17926a72007-04-26 15:48:28 -0700540 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
541
542 /* this should be in poll */
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800543 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
David Howells17926a72007-04-26 15:48:28 -0700544
545 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
546 return -EPIPE;
547
David Howells17926a72007-04-26 15:48:28 -0700548 more = msg->msg_flags & MSG_MORE;
549
550 skb = call->tx_pending;
551 call->tx_pending = NULL;
David Howellsdf844fd2016-08-23 15:27:24 +0100552 rxrpc_see_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700553
554 copied = 0;
David Howells3af68782015-04-01 14:06:00 +0100555 do {
David Howells17926a72007-04-26 15:48:28 -0700556 if (!skb) {
557 size_t size, chunk, max, space;
558
559 _debug("alloc");
560
David Howellsee72b9f2016-03-04 15:58:06 +0000561 if (CIRC_SPACE(call->acks_head,
562 ACCESS_ONCE(call->acks_tail),
David Howells17926a72007-04-26 15:48:28 -0700563 call->acks_winsz) <= 0) {
564 ret = -EAGAIN;
565 if (msg->msg_flags & MSG_DONTWAIT)
566 goto maybe_error;
567 ret = rxrpc_wait_for_tx_window(rx, call,
568 &timeo);
569 if (ret < 0)
570 goto maybe_error;
571 }
572
David Howells85f32272016-04-04 14:00:36 +0100573 max = call->conn->params.peer->maxdata;
David Howells17926a72007-04-26 15:48:28 -0700574 max -= call->conn->security_size;
575 max &= ~(call->conn->size_align - 1UL);
576
577 chunk = max;
Al Viro01e97e62014-12-15 21:39:31 -0500578 if (chunk > msg_data_left(msg) && !more)
579 chunk = msg_data_left(msg);
David Howells17926a72007-04-26 15:48:28 -0700580
581 space = chunk + call->conn->size_align;
582 space &= ~(call->conn->size_align - 1UL);
583
584 size = space + call->conn->header_size;
585
586 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
587
588 /* create a buffer that we can retain until it's ACK'd */
589 skb = sock_alloc_send_skb(
590 sk, size, msg->msg_flags & MSG_DONTWAIT, &ret);
591 if (!skb)
592 goto maybe_error;
593
594 rxrpc_new_skb(skb);
595
596 _debug("ALLOC SEND %p", skb);
597
598 ASSERTCMP(skb->mark, ==, 0);
599
600 _debug("HS: %u", call->conn->header_size);
601 skb_reserve(skb, call->conn->header_size);
602 skb->len += call->conn->header_size;
603
604 sp = rxrpc_skb(skb);
605 sp->remain = chunk;
606 if (sp->remain > skb_tailroom(skb))
607 sp->remain = skb_tailroom(skb);
608
609 _net("skb: hr %d, tr %d, hl %d, rm %d",
610 skb_headroom(skb),
611 skb_tailroom(skb),
612 skb_headlen(skb),
613 sp->remain);
614
615 skb->ip_summed = CHECKSUM_UNNECESSARY;
616 }
617
618 _debug("append");
619 sp = rxrpc_skb(skb);
620
621 /* append next segment of data to the current buffer */
Al Viro01e97e62014-12-15 21:39:31 -0500622 if (msg_data_left(msg) > 0) {
David Howellsaab94832015-04-01 15:48:00 +0100623 int copy = skb_tailroom(skb);
624 ASSERTCMP(copy, >, 0);
Al Viro01e97e62014-12-15 21:39:31 -0500625 if (copy > msg_data_left(msg))
626 copy = msg_data_left(msg);
David Howellsaab94832015-04-01 15:48:00 +0100627 if (copy > sp->remain)
628 copy = sp->remain;
David Howells17926a72007-04-26 15:48:28 -0700629
David Howellsaab94832015-04-01 15:48:00 +0100630 _debug("add");
631 ret = skb_add_data(skb, &msg->msg_iter, copy);
632 _debug("added");
633 if (ret < 0)
634 goto efault;
635 sp->remain -= copy;
636 skb->mark += copy;
637 copied += copy;
David Howellsaab94832015-04-01 15:48:00 +0100638 }
David Howells17926a72007-04-26 15:48:28 -0700639
640 /* check for the far side aborting the call or a network error
641 * occurring */
David Howellsf5c17aa2016-08-30 09:49:28 +0100642 if (call->state == RXRPC_CALL_COMPLETE)
643 goto call_terminated;
David Howells17926a72007-04-26 15:48:28 -0700644
645 /* add the packet to the send queue if it's now full */
David Howells382d7972015-04-01 15:43:26 +0100646 if (sp->remain <= 0 ||
Al Viro01e97e62014-12-15 21:39:31 -0500647 (msg_data_left(msg) == 0 && !more)) {
David Howells17926a72007-04-26 15:48:28 -0700648 struct rxrpc_connection *conn = call->conn;
David Howellse8388eb2014-02-14 20:05:32 +0000649 uint32_t seq;
David Howells17926a72007-04-26 15:48:28 -0700650 size_t pad;
651
652 /* pad out if we're using security */
David Howellse0e4d822016-04-07 17:23:58 +0100653 if (conn->security_ix) {
David Howells17926a72007-04-26 15:48:28 -0700654 pad = conn->security_size + skb->mark;
655 pad = conn->size_align - pad;
656 pad &= conn->size_align - 1;
657 _debug("pad %zu", pad);
658 if (pad)
659 memset(skb_put(skb, pad), 0, pad);
660 }
661
David Howellse8388eb2014-02-14 20:05:32 +0000662 seq = atomic_inc_return(&call->sequence);
663
David Howells19ffa012016-04-04 14:00:36 +0100664 sp->hdr.epoch = conn->proto.epoch;
David Howells0d12f8a2016-03-04 15:53:46 +0000665 sp->hdr.cid = call->cid;
David Howells17926a72007-04-26 15:48:28 -0700666 sp->hdr.callNumber = call->call_id;
David Howells0d12f8a2016-03-04 15:53:46 +0000667 sp->hdr.seq = seq;
668 sp->hdr.serial = atomic_inc_return(&conn->serial);
669 sp->hdr.type = RXRPC_PACKET_TYPE_DATA;
David Howells17926a72007-04-26 15:48:28 -0700670 sp->hdr.userStatus = 0;
671 sp->hdr.securityIndex = conn->security_ix;
David Howells0d12f8a2016-03-04 15:53:46 +0000672 sp->hdr._rsvd = 0;
673 sp->hdr.serviceId = call->service_id;
David Howells17926a72007-04-26 15:48:28 -0700674
675 sp->hdr.flags = conn->out_clientflag;
Al Viro01e97e62014-12-15 21:39:31 -0500676 if (msg_data_left(msg) == 0 && !more)
David Howells17926a72007-04-26 15:48:28 -0700677 sp->hdr.flags |= RXRPC_LAST_PACKET;
David Howellsee72b9f2016-03-04 15:58:06 +0000678 else if (CIRC_SPACE(call->acks_head,
679 ACCESS_ONCE(call->acks_tail),
David Howells17926a72007-04-26 15:48:28 -0700680 call->acks_winsz) > 1)
681 sp->hdr.flags |= RXRPC_MORE_PACKETS;
David Howellse8388eb2014-02-14 20:05:32 +0000682 if (more && seq & 1)
683 sp->hdr.flags |= RXRPC_REQUEST_ACK;
David Howells17926a72007-04-26 15:48:28 -0700684
David Howellse0e4d822016-04-07 17:23:58 +0100685 ret = conn->security->secure_packet(
David Howells17926a72007-04-26 15:48:28 -0700686 call, skb, skb->mark,
David Howells0d12f8a2016-03-04 15:53:46 +0000687 skb->head + sizeof(struct rxrpc_wire_header));
David Howells17926a72007-04-26 15:48:28 -0700688 if (ret < 0)
689 goto out;
690
David Howells0d12f8a2016-03-04 15:53:46 +0000691 rxrpc_insert_header(skb);
Al Viro01e97e62014-12-15 21:39:31 -0500692 rxrpc_queue_packet(call, skb, !msg_data_left(msg) && !more);
David Howells17926a72007-04-26 15:48:28 -0700693 skb = NULL;
694 }
Al Viro01e97e62014-12-15 21:39:31 -0500695 } while (msg_data_left(msg) > 0);
David Howells17926a72007-04-26 15:48:28 -0700696
David Howells19e64542007-06-18 23:30:41 -0700697success:
698 ret = copied;
David Howells17926a72007-04-26 15:48:28 -0700699out:
700 call->tx_pending = skb;
701 _leave(" = %d", ret);
702 return ret;
703
David Howellsf5c17aa2016-08-30 09:49:28 +0100704call_terminated:
David Howells17926a72007-04-26 15:48:28 -0700705 rxrpc_free_skb(skb);
David Howellsf5c17aa2016-08-30 09:49:28 +0100706 _leave(" = %d", -call->error);
David Howells17926a72007-04-26 15:48:28 -0700707 return ret;
708
709maybe_error:
710 if (copied)
David Howells19e64542007-06-18 23:30:41 -0700711 goto success;
David Howells17926a72007-04-26 15:48:28 -0700712 goto out;
713
714efault:
715 ret = -EFAULT;
716 goto out;
717}