Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm
[deliverable/linux.git] / net / rxrpc / output.c
CommitLineData
17926a79
DH
1/* 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
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
17926a79 14#include <linux/net.h>
5a0e3ad6 15#include <linux/gfp.h>
17926a79
DH
16#include <linux/skbuff.h>
17#include <linux/circ_buf.h>
bc3b2d7f 18#include <linux/export.h>
17926a79
DH
19#include <net/sock.h>
20#include <net/af_rxrpc.h>
21#include "ar-internal.h"
22
5873c083
DH
23/*
24 * Time till packet resend (in jiffies).
25 */
dad8aff7 26unsigned int rxrpc_resend_timeout = 4 * HZ;
17926a79 27
1b784140 28static int rxrpc_send_data(struct rxrpc_sock *rx,
17926a79
DH
29 struct rxrpc_call *call,
30 struct msghdr *msg, size_t len);
31
32/*
33 * extract control messages from the sendmsg() control buffer
34 */
2341e077 35static int rxrpc_sendmsg_cmsg(struct msghdr *msg,
17926a79
DH
36 unsigned long *user_call_ID,
37 enum rxrpc_command *command,
cc8feb8e
DH
38 u32 *abort_code,
39 bool *_exclusive)
17926a79
DH
40{
41 struct cmsghdr *cmsg;
2341e077 42 bool got_user_ID = false;
17926a79
DH
43 int len;
44
45 *command = RXRPC_CMD_SEND_DATA;
46
47 if (msg->msg_controllen == 0)
48 return -EINVAL;
49
f95b414e 50 for_each_cmsghdr(cmsg, msg) {
17926a79
DH
51 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);
2341e077 74 got_user_ID = true;
17926a79
DH
75 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;
17926a79
DH
95 break;
96
cc8feb8e
DH
97 case RXRPC_EXCLUSIVE_CALL:
98 *_exclusive = true;
99 if (len != 0)
100 return -EINVAL;
101 break;
17926a79
DH
102 default:
103 return -EINVAL;
104 }
105 }
106
2341e077
DH
107 if (!got_user_ID)
108 return -EINVAL;
17926a79
DH
109 _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{
118 write_lock_bh(&call->state_lock);
119
120 if (call->state <= RXRPC_CALL_COMPLETE) {
121 call->state = RXRPC_CALL_LOCALLY_ABORTED;
dc44b3a0 122 call->local_abort = abort_code;
4c198ad1 123 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
17926a79
DH
124 del_timer_sync(&call->resend_timer);
125 del_timer_sync(&call->ack_timer);
4c198ad1
DH
126 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
127 clear_bit(RXRPC_CALL_EV_ACK, &call->events);
17926a79 128 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
651350d1 129 rxrpc_queue_call(call);
17926a79
DH
130 }
131
132 write_unlock_bh(&call->state_lock);
133}
134
2341e077
DH
135/*
136 * 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,
cc8feb8e 140 unsigned long user_call_ID, bool exclusive)
2341e077 141{
19ffa01c 142 struct rxrpc_conn_parameters cp;
2341e077
DH
143 struct rxrpc_call *call;
144 struct key *key;
2341e077
DH
145
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
19ffa01c
DH
153 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;
cc8feb8e 161 cp.exclusive = rx->exclusive | exclusive;
19ffa01c 162 cp.service_id = srx->srx_service;
aa390bbe 163 call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, GFP_KERNEL);
2341e077
DH
164
165 _leave(" = %p\n", call);
166 return call;
2341e077
DH
167}
168
17926a79
DH
169/*
170 * 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 */
2341e077 174int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
17926a79 175{
17926a79
DH
176 enum rxrpc_command cmd;
177 struct rxrpc_call *call;
178 unsigned long user_call_ID = 0;
cc8feb8e 179 bool exclusive = false;
17926a79
DH
180 u32 abort_code = 0;
181 int ret;
182
183 _enter("");
184
cc8feb8e
DH
185 ret = rxrpc_sendmsg_cmsg(msg, &user_call_ID, &cmd, &abort_code,
186 &exclusive);
17926a79
DH
187 if (ret < 0)
188 return ret;
189
2341e077
DH
190 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;
17926a79
DH
198 }
199
2341e077
DH
200 call = rxrpc_find_call_by_user_ID(rx, user_call_ID);
201 if (!call) {
202 if (cmd != RXRPC_CMD_SEND_DATA)
203 return -EBADSLT;
cc8feb8e
DH
204 call = rxrpc_new_client_call_for_sendmsg(rx, msg, user_call_ID,
205 exclusive);
2341e077
DH
206 if (IS_ERR(call))
207 return PTR_ERR(call);
17926a79
DH
208 }
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 */
2341e077 215 ret = -ECONNRESET;
17926a79
DH
216 } else if (cmd == RXRPC_CMD_SEND_ABORT) {
217 rxrpc_send_abort(call, abort_code);
2341e077 218 ret = 0;
17926a79
DH
219 } else if (cmd != RXRPC_CMD_SEND_DATA) {
220 ret = -EINVAL;
2341e077
DH
221 } else if (!call->in_clientflag &&
222 call->state != RXRPC_CALL_CLIENT_SEND_REQUEST) {
17926a79
DH
223 /* request phase complete for this client call */
224 ret = -EPROTO;
2341e077
DH
225 } else if (call->in_clientflag &&
226 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;
17926a79 230 } else {
1b784140 231 ret = rxrpc_send_data(rx, call, msg, len);
17926a79
DH
232 }
233
234 rxrpc_put_call(call);
235 _leave(" = %d", ret);
236 return ret;
237}
238
651350d1
DH
239/**
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 {
1b784140 272 ret = rxrpc_send_data(call->socket, call, msg, len);
651350d1
DH
273 }
274
275 release_sock(&call->socket->sk);
276 _leave(" = %d", ret);
277 return ret;
278}
279
280EXPORT_SYMBOL(rxrpc_kernel_send_data);
281
2c53040f 282/**
651350d1
DH
283 * 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
298 if (call->state < RXRPC_CALL_COMPLETE)
299 rxrpc_send_abort(call, abort_code);
300
301 release_sock(&call->socket->sk);
302 _leave("");
303}
304
305EXPORT_SYMBOL(rxrpc_kernel_abort_call);
306
17926a79
DH
307/*
308 * send a packet through the transport endpoint
309 */
985a5c82 310int rxrpc_send_data_packet(struct rxrpc_connection *conn, struct sk_buff *skb)
17926a79
DH
311{
312 struct kvec iov[1];
313 struct msghdr msg;
314 int ret, opt;
315
316 _enter(",{%d}", skb->len);
317
318 iov[0].iov_base = skb->head;
319 iov[0].iov_len = skb->len;
320
985a5c82
DH
321 msg.msg_name = &conn->params.peer->srx.transport;
322 msg.msg_namelen = conn->params.peer->srx.transport_len;
17926a79
DH
323 msg.msg_control = NULL;
324 msg.msg_controllen = 0;
325 msg.msg_flags = 0;
326
327 /* send the packet with the don't fragment bit set if we currently
328 * think it's small enough */
985a5c82
DH
329 if (skb->len - sizeof(struct rxrpc_wire_header) < conn->params.peer->maxdata) {
330 down_read(&conn->params.local->defrag_sem);
17926a79
DH
331 /* send the packet by UDP
332 * - returns -EMSGSIZE if UDP would have to fragment the packet
333 * to go out of the interface
334 * - in which case, we'll have processed the ICMP error
335 * message and update the peer record
336 */
985a5c82 337 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 1,
17926a79
DH
338 iov[0].iov_len);
339
985a5c82 340 up_read(&conn->params.local->defrag_sem);
17926a79
DH
341 if (ret == -EMSGSIZE)
342 goto send_fragmentable;
343
985a5c82 344 _leave(" = %d [%u]", ret, conn->params.peer->maxdata);
17926a79
DH
345 return ret;
346 }
347
348send_fragmentable:
349 /* attempt to send this message with fragmentation enabled */
350 _debug("send fragment");
351
985a5c82
DH
352 down_write(&conn->params.local->defrag_sem);
353
354 switch (conn->params.local->srx.transport.family) {
355 case AF_INET:
356 opt = IP_PMTUDISC_DONT;
357 ret = kernel_setsockopt(conn->params.local->socket,
358 SOL_IP, IP_MTU_DISCOVER,
359 (char *)&opt, sizeof(opt));
360 if (ret == 0) {
361 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 1,
362 iov[0].iov_len);
363
364 opt = IP_PMTUDISC_DO;
365 kernel_setsockopt(conn->params.local->socket, SOL_IP,
366 IP_MTU_DISCOVER,
367 (char *)&opt, sizeof(opt));
368 }
369 break;
17926a79
DH
370 }
371
985a5c82
DH
372 up_write(&conn->params.local->defrag_sem);
373 _leave(" = %d [frag %u]", ret, conn->params.peer->maxdata);
17926a79
DH
374 return ret;
375}
376
377/*
378 * wait for space to appear in the transmit/ACK window
379 * - caller holds the socket locked
380 */
381static int rxrpc_wait_for_tx_window(struct rxrpc_sock *rx,
382 struct rxrpc_call *call,
383 long *timeo)
384{
385 DECLARE_WAITQUEUE(myself, current);
386 int ret;
387
388 _enter(",{%d},%ld",
ee72b9fd
DH
389 CIRC_SPACE(call->acks_head, ACCESS_ONCE(call->acks_tail),
390 call->acks_winsz),
17926a79
DH
391 *timeo);
392
393 add_wait_queue(&call->tx_waitq, &myself);
394
395 for (;;) {
396 set_current_state(TASK_INTERRUPTIBLE);
397 ret = 0;
ee72b9fd 398 if (CIRC_SPACE(call->acks_head, ACCESS_ONCE(call->acks_tail),
17926a79
DH
399 call->acks_winsz) > 0)
400 break;
401 if (signal_pending(current)) {
402 ret = sock_intr_errno(*timeo);
403 break;
404 }
405
406 release_sock(&rx->sk);
407 *timeo = schedule_timeout(*timeo);
408 lock_sock(&rx->sk);
409 }
410
411 remove_wait_queue(&call->tx_waitq, &myself);
412 set_current_state(TASK_RUNNING);
413 _leave(" = %d", ret);
414 return ret;
415}
416
417/*
418 * attempt to schedule an instant Tx resend
419 */
420static inline void rxrpc_instant_resend(struct rxrpc_call *call)
421{
422 read_lock_bh(&call->state_lock);
423 if (try_to_del_timer_sync(&call->resend_timer) >= 0) {
424 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
425 if (call->state < RXRPC_CALL_COMPLETE &&
4c198ad1 426 !test_and_set_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events))
651350d1 427 rxrpc_queue_call(call);
17926a79
DH
428 }
429 read_unlock_bh(&call->state_lock);
430}
431
432/*
433 * queue a packet for transmission, set the resend timer and attempt
434 * to send the packet immediately
435 */
436static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,
437 bool last)
438{
439 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
440 int ret;
441
442 _net("queue skb %p [%d]", skb, call->acks_head);
443
444 ASSERT(call->acks_window != NULL);
445 call->acks_window[call->acks_head] = (unsigned long) skb;
446 smp_wmb();
447 call->acks_head = (call->acks_head + 1) & (call->acks_winsz - 1);
448
449 if (last || call->state == RXRPC_CALL_SERVER_ACK_REQUEST) {
450 _debug("________awaiting reply/ACK__________");
451 write_lock_bh(&call->state_lock);
452 switch (call->state) {
453 case RXRPC_CALL_CLIENT_SEND_REQUEST:
454 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
455 break;
456 case RXRPC_CALL_SERVER_ACK_REQUEST:
457 call->state = RXRPC_CALL_SERVER_SEND_REPLY;
458 if (!last)
459 break;
460 case RXRPC_CALL_SERVER_SEND_REPLY:
461 call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
462 break;
463 default:
464 break;
465 }
466 write_unlock_bh(&call->state_lock);
467 }
468
0d12f8a4 469 _proto("Tx DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
17926a79 470
3db1cd5c 471 sp->need_resend = false;
5873c083 472 sp->resend_at = jiffies + rxrpc_resend_timeout;
17926a79
DH
473 if (!test_and_set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags)) {
474 _debug("run timer");
475 call->resend_timer.expires = sp->resend_at;
476 add_timer(&call->resend_timer);
477 }
478
479 /* attempt to cancel the rx-ACK timer, deferring reply transmission if
480 * we're ACK'ing the request phase of an incoming call */
481 ret = -EAGAIN;
482 if (try_to_del_timer_sync(&call->ack_timer) >= 0) {
483 /* the packet may be freed by rxrpc_process_call() before this
484 * returns */
985a5c82 485 ret = rxrpc_send_data_packet(call->conn, skb);
17926a79
DH
486 _net("sent skb %p", skb);
487 } else {
488 _debug("failed to delete ACK timer");
489 }
490
491 if (ret < 0) {
492 _debug("need instant resend %d", ret);
3db1cd5c 493 sp->need_resend = true;
17926a79
DH
494 rxrpc_instant_resend(call);
495 }
496
497 _leave("");
498}
499
0d12f8a4
DH
500/*
501 * Convert a host-endian header into a network-endian header.
502 */
503static void rxrpc_insert_header(struct sk_buff *skb)
504{
505 struct rxrpc_wire_header whdr;
506 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
507
508 whdr.epoch = htonl(sp->hdr.epoch);
509 whdr.cid = htonl(sp->hdr.cid);
510 whdr.callNumber = htonl(sp->hdr.callNumber);
511 whdr.seq = htonl(sp->hdr.seq);
512 whdr.serial = htonl(sp->hdr.serial);
513 whdr.type = sp->hdr.type;
514 whdr.flags = sp->hdr.flags;
515 whdr.userStatus = sp->hdr.userStatus;
516 whdr.securityIndex = sp->hdr.securityIndex;
517 whdr._rsvd = htons(sp->hdr._rsvd);
518 whdr.serviceId = htons(sp->hdr.serviceId);
519
520 memcpy(skb->head, &whdr, sizeof(whdr));
521}
522
17926a79
DH
523/*
524 * send data through a socket
525 * - must be called in process context
526 * - caller holds the socket locked
527 */
1b784140 528static int rxrpc_send_data(struct rxrpc_sock *rx,
17926a79
DH
529 struct rxrpc_call *call,
530 struct msghdr *msg, size_t len)
531{
532 struct rxrpc_skb_priv *sp;
17926a79 533 struct sk_buff *skb;
17926a79
DH
534 struct sock *sk = &rx->sk;
535 long timeo;
536 bool more;
af2b040e 537 int ret, copied;
17926a79 538
17926a79
DH
539 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
540
541 /* this should be in poll */
9cd3e072 542 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
17926a79
DH
543
544 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
545 return -EPIPE;
546
17926a79
DH
547 more = msg->msg_flags & MSG_MORE;
548
549 skb = call->tx_pending;
550 call->tx_pending = NULL;
551
552 copied = 0;
3af6878e 553 do {
17926a79
DH
554 if (!skb) {
555 size_t size, chunk, max, space;
556
557 _debug("alloc");
558
ee72b9fd
DH
559 if (CIRC_SPACE(call->acks_head,
560 ACCESS_ONCE(call->acks_tail),
17926a79
DH
561 call->acks_winsz) <= 0) {
562 ret = -EAGAIN;
563 if (msg->msg_flags & MSG_DONTWAIT)
564 goto maybe_error;
565 ret = rxrpc_wait_for_tx_window(rx, call,
566 &timeo);
567 if (ret < 0)
568 goto maybe_error;
569 }
570
85f32278 571 max = call->conn->params.peer->maxdata;
17926a79
DH
572 max -= call->conn->security_size;
573 max &= ~(call->conn->size_align - 1UL);
574
575 chunk = max;
01e97e65
AV
576 if (chunk > msg_data_left(msg) && !more)
577 chunk = msg_data_left(msg);
17926a79
DH
578
579 space = chunk + call->conn->size_align;
580 space &= ~(call->conn->size_align - 1UL);
581
582 size = space + call->conn->header_size;
583
584 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
585
586 /* create a buffer that we can retain until it's ACK'd */
587 skb = sock_alloc_send_skb(
588 sk, size, msg->msg_flags & MSG_DONTWAIT, &ret);
589 if (!skb)
590 goto maybe_error;
591
592 rxrpc_new_skb(skb);
593
594 _debug("ALLOC SEND %p", skb);
595
596 ASSERTCMP(skb->mark, ==, 0);
597
598 _debug("HS: %u", call->conn->header_size);
599 skb_reserve(skb, call->conn->header_size);
600 skb->len += call->conn->header_size;
601
602 sp = rxrpc_skb(skb);
603 sp->remain = chunk;
604 if (sp->remain > skb_tailroom(skb))
605 sp->remain = skb_tailroom(skb);
606
607 _net("skb: hr %d, tr %d, hl %d, rm %d",
608 skb_headroom(skb),
609 skb_tailroom(skb),
610 skb_headlen(skb),
611 sp->remain);
612
613 skb->ip_summed = CHECKSUM_UNNECESSARY;
614 }
615
616 _debug("append");
617 sp = rxrpc_skb(skb);
618
619 /* append next segment of data to the current buffer */
01e97e65 620 if (msg_data_left(msg) > 0) {
aab94830
DH
621 int copy = skb_tailroom(skb);
622 ASSERTCMP(copy, >, 0);
01e97e65
AV
623 if (copy > msg_data_left(msg))
624 copy = msg_data_left(msg);
aab94830
DH
625 if (copy > sp->remain)
626 copy = sp->remain;
627
628 _debug("add");
629 ret = skb_add_data(skb, &msg->msg_iter, copy);
630 _debug("added");
631 if (ret < 0)
632 goto efault;
633 sp->remain -= copy;
634 skb->mark += copy;
635 copied += copy;
aab94830 636 }
17926a79
DH
637
638 /* check for the far side aborting the call or a network error
639 * occurring */
640 if (call->state > RXRPC_CALL_COMPLETE)
641 goto call_aborted;
642
643 /* add the packet to the send queue if it's now full */
382d7974 644 if (sp->remain <= 0 ||
01e97e65 645 (msg_data_left(msg) == 0 && !more)) {
17926a79 646 struct rxrpc_connection *conn = call->conn;
e8388eb1 647 uint32_t seq;
17926a79
DH
648 size_t pad;
649
650 /* pad out if we're using security */
e0e4d82f 651 if (conn->security_ix) {
17926a79
DH
652 pad = conn->security_size + skb->mark;
653 pad = conn->size_align - pad;
654 pad &= conn->size_align - 1;
655 _debug("pad %zu", pad);
656 if (pad)
657 memset(skb_put(skb, pad), 0, pad);
658 }
659
e8388eb1
DH
660 seq = atomic_inc_return(&call->sequence);
661
19ffa01c 662 sp->hdr.epoch = conn->proto.epoch;
0d12f8a4 663 sp->hdr.cid = call->cid;
17926a79 664 sp->hdr.callNumber = call->call_id;
0d12f8a4
DH
665 sp->hdr.seq = seq;
666 sp->hdr.serial = atomic_inc_return(&conn->serial);
667 sp->hdr.type = RXRPC_PACKET_TYPE_DATA;
17926a79
DH
668 sp->hdr.userStatus = 0;
669 sp->hdr.securityIndex = conn->security_ix;
0d12f8a4
DH
670 sp->hdr._rsvd = 0;
671 sp->hdr.serviceId = call->service_id;
17926a79
DH
672
673 sp->hdr.flags = conn->out_clientflag;
01e97e65 674 if (msg_data_left(msg) == 0 && !more)
17926a79 675 sp->hdr.flags |= RXRPC_LAST_PACKET;
ee72b9fd
DH
676 else if (CIRC_SPACE(call->acks_head,
677 ACCESS_ONCE(call->acks_tail),
17926a79
DH
678 call->acks_winsz) > 1)
679 sp->hdr.flags |= RXRPC_MORE_PACKETS;
e8388eb1
DH
680 if (more && seq & 1)
681 sp->hdr.flags |= RXRPC_REQUEST_ACK;
17926a79 682
e0e4d82f 683 ret = conn->security->secure_packet(
17926a79 684 call, skb, skb->mark,
0d12f8a4 685 skb->head + sizeof(struct rxrpc_wire_header));
17926a79
DH
686 if (ret < 0)
687 goto out;
688
0d12f8a4 689 rxrpc_insert_header(skb);
01e97e65 690 rxrpc_queue_packet(call, skb, !msg_data_left(msg) && !more);
17926a79
DH
691 skb = NULL;
692 }
01e97e65 693 } while (msg_data_left(msg) > 0);
17926a79 694
19e6454c
DH
695success:
696 ret = copied;
17926a79
DH
697out:
698 call->tx_pending = skb;
699 _leave(" = %d", ret);
700 return ret;
701
702call_aborted:
703 rxrpc_free_skb(skb);
704 if (call->state == RXRPC_CALL_NETWORK_ERROR)
f66d7490
DH
705 ret = call->error_report < RXRPC_LOCAL_ERROR_OFFSET ?
706 call->error_report :
707 call->error_report - RXRPC_LOCAL_ERROR_OFFSET;
17926a79
DH
708 else
709 ret = -ECONNABORTED;
710 _leave(" = %d", ret);
711 return ret;
712
713maybe_error:
714 if (copied)
19e6454c 715 goto success;
17926a79
DH
716 goto out;
717
718efault:
719 ret = -EFAULT;
720 goto out;
721}
This page took 1.055348 seconds and 5 git commands to generate.