blob: 8f9a2a7eeb7cebaedd180bf6a4e0364c10fe6ddd [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* AF_RXRPC sendmsg() implementation.
2 *
3 * Copyright (C) 2007, 2016 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/net.h>
15#include <linux/gfp.h>
16#include <linux/skbuff.h>
17#include <linux/export.h>
18#include <linux/sched/signal.h>
19
20#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
24enum rxrpc_command {
25 RXRPC_CMD_SEND_DATA, /* send data message */
26 RXRPC_CMD_SEND_ABORT, /* request abort generation */
27 RXRPC_CMD_ACCEPT, /* [server] accept incoming call */
28 RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */
29};
30
31struct rxrpc_send_params {
32 s64 tx_total_len; /* Total Tx data length (if send data) */
33 unsigned long user_call_ID; /* User's call ID */
34 u32 abort_code; /* Abort code to Tx (if abort) */
35 enum rxrpc_command command : 8; /* The command to implement */
36 bool exclusive; /* Shared or exclusive call */
37 bool upgrade; /* If the connection is upgradeable */
38};
39
40/*
41 * wait for space to appear in the transmit/ACK window
42 * - caller holds the socket locked
43 */
44static int rxrpc_wait_for_tx_window(struct rxrpc_sock *rx,
45 struct rxrpc_call *call,
46 long *timeo)
47{
48 DECLARE_WAITQUEUE(myself, current);
49 int ret;
50
51 _enter(",{%u,%u,%u}",
52 call->tx_hard_ack, call->tx_top, call->tx_winsize);
53
54 add_wait_queue(&call->waitq, &myself);
55
56 for (;;) {
57 set_current_state(TASK_INTERRUPTIBLE);
58 ret = 0;
59 if (call->tx_top - call->tx_hard_ack <
60 min_t(unsigned int, call->tx_winsize,
61 call->cong_cwnd + call->cong_extra))
62 break;
63 if (call->state >= RXRPC_CALL_COMPLETE) {
64 ret = call->error;
65 break;
66 }
67 if (signal_pending(current)) {
68 ret = sock_intr_errno(*timeo);
69 break;
70 }
71
72 trace_rxrpc_transmit(call, rxrpc_transmit_wait);
73 mutex_unlock(&call->user_mutex);
74 *timeo = schedule_timeout(*timeo);
75 if (mutex_lock_interruptible(&call->user_mutex) < 0) {
76 ret = sock_intr_errno(*timeo);
77 break;
78 }
79 }
80
81 remove_wait_queue(&call->waitq, &myself);
82 set_current_state(TASK_RUNNING);
83 _leave(" = %d", ret);
84 return ret;
85}
86
87/*
88 * Schedule an instant Tx resend.
89 */
90static inline void rxrpc_instant_resend(struct rxrpc_call *call, int ix)
91{
92 spin_lock_bh(&call->lock);
93
94 if (call->state < RXRPC_CALL_COMPLETE) {
95 call->rxtx_annotations[ix] =
96 (call->rxtx_annotations[ix] & RXRPC_TX_ANNO_LAST) |
97 RXRPC_TX_ANNO_RETRANS;
98 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
99 rxrpc_queue_call(call);
100 }
101
102 spin_unlock_bh(&call->lock);
103}
104
105/*
106 * Notify the owner of the call that the transmit phase is ended and the last
107 * packet has been queued.
108 */
109static void rxrpc_notify_end_tx(struct rxrpc_sock *rx, struct rxrpc_call *call,
110 rxrpc_notify_end_tx_t notify_end_tx)
111{
112 if (notify_end_tx)
113 notify_end_tx(&rx->sk, call, call->user_call_ID);
114}
115
116/*
117 * Queue a DATA packet for transmission, set the resend timeout and send the
118 * packet immediately
119 */
120static void rxrpc_queue_packet(struct rxrpc_sock *rx, struct rxrpc_call *call,
121 struct sk_buff *skb, bool last,
122 rxrpc_notify_end_tx_t notify_end_tx)
123{
124 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
125 rxrpc_seq_t seq = sp->hdr.seq;
126 int ret, ix;
127 u8 annotation = RXRPC_TX_ANNO_UNACK;
128
129 _net("queue skb %p [%d]", skb, seq);
130
131 ASSERTCMP(seq, ==, call->tx_top + 1);
132
133 if (last) {
134 annotation |= RXRPC_TX_ANNO_LAST;
135 set_bit(RXRPC_CALL_TX_LASTQ, &call->flags);
136 }
137
138 /* We have to set the timestamp before queueing as the retransmit
139 * algorithm can see the packet as soon as we queue it.
140 */
141 skb->tstamp = ktime_get_real();
142
143 ix = seq & RXRPC_RXTX_BUFF_MASK;
144 rxrpc_get_skb(skb, rxrpc_skb_tx_got);
145 call->rxtx_annotations[ix] = annotation;
146 smp_wmb();
147 call->rxtx_buffer[ix] = skb;
148 call->tx_top = seq;
149 if (last)
150 trace_rxrpc_transmit(call, rxrpc_transmit_queue_last);
151 else
152 trace_rxrpc_transmit(call, rxrpc_transmit_queue);
153
154 if (last || call->state == RXRPC_CALL_SERVER_ACK_REQUEST) {
155 _debug("________awaiting reply/ACK__________");
156 write_lock_bh(&call->state_lock);
157 switch (call->state) {
158 case RXRPC_CALL_CLIENT_SEND_REQUEST:
159 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
160 rxrpc_notify_end_tx(rx, call, notify_end_tx);
161 break;
162 case RXRPC_CALL_SERVER_ACK_REQUEST:
163 call->state = RXRPC_CALL_SERVER_SEND_REPLY;
164 call->ack_at = call->expire_at;
165 if (call->ackr_reason == RXRPC_ACK_DELAY)
166 call->ackr_reason = 0;
167 __rxrpc_set_timer(call, rxrpc_timer_init_for_send_reply,
168 ktime_get_real());
169 if (!last)
170 break;
171 case RXRPC_CALL_SERVER_SEND_REPLY:
172 call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
173 rxrpc_notify_end_tx(rx, call, notify_end_tx);
174 break;
175 default:
176 break;
177 }
178 write_unlock_bh(&call->state_lock);
179 }
180
181 if (seq == 1 && rxrpc_is_client_call(call))
182 rxrpc_expose_client_call(call);
183
184 ret = rxrpc_send_data_packet(call, skb, false);
185 if (ret < 0) {
186 _debug("need instant resend %d", ret);
187 rxrpc_instant_resend(call, ix);
188 } else {
189 ktime_t now = ktime_get_real(), resend_at;
190
191 resend_at = ktime_add_ms(now, rxrpc_resend_timeout);
192
193 if (ktime_before(resend_at, call->resend_at)) {
194 call->resend_at = resend_at;
195 rxrpc_set_timer(call, rxrpc_timer_set_for_send, now);
196 }
197 }
198
199 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
200 _leave("");
201}
202
203/*
204 * send data through a socket
205 * - must be called in process context
206 * - The caller holds the call user access mutex, but not the socket lock.
207 */
208static int rxrpc_send_data(struct rxrpc_sock *rx,
209 struct rxrpc_call *call,
210 struct msghdr *msg, size_t len,
211 rxrpc_notify_end_tx_t notify_end_tx)
212{
213 struct rxrpc_skb_priv *sp;
214 struct sk_buff *skb;
215 struct sock *sk = &rx->sk;
216 long timeo;
217 bool more;
218 int ret, copied;
219
220 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
221
222 /* this should be in poll */
223 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
224
225 if (sk->sk_shutdown & SEND_SHUTDOWN)
226 return -EPIPE;
227
228 more = msg->msg_flags & MSG_MORE;
229
230 if (call->tx_total_len != -1) {
231 if (len > call->tx_total_len)
232 return -EMSGSIZE;
233 if (!more && len != call->tx_total_len)
234 return -EMSGSIZE;
235 }
236
237 skb = call->tx_pending;
238 call->tx_pending = NULL;
239 rxrpc_see_skb(skb, rxrpc_skb_tx_seen);
240
241 copied = 0;
242 do {
243 /* Check to see if there's a ping ACK to reply to. */
244 if (call->ackr_reason == RXRPC_ACK_PING_RESPONSE)
245 rxrpc_send_ack_packet(call, false);
246
247 if (!skb) {
248 size_t size, chunk, max, space;
249
250 _debug("alloc");
251
252 if (call->tx_top - call->tx_hard_ack >=
253 min_t(unsigned int, call->tx_winsize,
254 call->cong_cwnd + call->cong_extra)) {
255 ret = -EAGAIN;
256 if (msg->msg_flags & MSG_DONTWAIT)
257 goto maybe_error;
258 ret = rxrpc_wait_for_tx_window(rx, call,
259 &timeo);
260 if (ret < 0)
261 goto maybe_error;
262 }
263
264 max = RXRPC_JUMBO_DATALEN;
265 max -= call->conn->security_size;
266 max &= ~(call->conn->size_align - 1UL);
267
268 chunk = max;
269 if (chunk > msg_data_left(msg) && !more)
270 chunk = msg_data_left(msg);
271
272 space = chunk + call->conn->size_align;
273 space &= ~(call->conn->size_align - 1UL);
274
275 size = space + call->conn->security_size;
276
277 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
278
279 /* create a buffer that we can retain until it's ACK'd */
280 skb = sock_alloc_send_skb(
281 sk, size, msg->msg_flags & MSG_DONTWAIT, &ret);
282 if (!skb)
283 goto maybe_error;
284
285 rxrpc_new_skb(skb, rxrpc_skb_tx_new);
286
287 _debug("ALLOC SEND %p", skb);
288
289 ASSERTCMP(skb->mark, ==, 0);
290
291 _debug("HS: %u", call->conn->security_size);
292 skb_reserve(skb, call->conn->security_size);
293 skb->len += call->conn->security_size;
294
295 sp = rxrpc_skb(skb);
296 sp->remain = chunk;
297 if (sp->remain > skb_tailroom(skb))
298 sp->remain = skb_tailroom(skb);
299
300 _net("skb: hr %d, tr %d, hl %d, rm %d",
301 skb_headroom(skb),
302 skb_tailroom(skb),
303 skb_headlen(skb),
304 sp->remain);
305
306 skb->ip_summed = CHECKSUM_UNNECESSARY;
307 }
308
309 _debug("append");
310 sp = rxrpc_skb(skb);
311
312 /* append next segment of data to the current buffer */
313 if (msg_data_left(msg) > 0) {
314 int copy = skb_tailroom(skb);
315 ASSERTCMP(copy, >, 0);
316 if (copy > msg_data_left(msg))
317 copy = msg_data_left(msg);
318 if (copy > sp->remain)
319 copy = sp->remain;
320
321 _debug("add");
322 ret = skb_add_data(skb, &msg->msg_iter, copy);
323 _debug("added");
324 if (ret < 0)
325 goto efault;
326 sp->remain -= copy;
327 skb->mark += copy;
328 copied += copy;
329 if (call->tx_total_len != -1)
330 call->tx_total_len -= copy;
331 }
332
333 /* add the packet to the send queue if it's now full */
334 if (sp->remain <= 0 ||
335 (msg_data_left(msg) == 0 && !more)) {
336 struct rxrpc_connection *conn = call->conn;
337 uint32_t seq;
338 size_t pad;
339
340 /* pad out if we're using security */
341 if (conn->security_ix) {
342 pad = conn->security_size + skb->mark;
343 pad = conn->size_align - pad;
344 pad &= conn->size_align - 1;
345 _debug("pad %zu", pad);
346 if (pad)
347 skb_put_zero(skb, pad);
348 }
349
350 seq = call->tx_top + 1;
351
352 sp->hdr.seq = seq;
353 sp->hdr._rsvd = 0;
354 sp->hdr.flags = conn->out_clientflag;
355
356 if (msg_data_left(msg) == 0 && !more)
357 sp->hdr.flags |= RXRPC_LAST_PACKET;
358 else if (call->tx_top - call->tx_hard_ack <
359 call->tx_winsize)
360 sp->hdr.flags |= RXRPC_MORE_PACKETS;
361
362 ret = conn->security->secure_packet(
363 call, skb, skb->mark, skb->head);
364 if (ret < 0)
365 goto out;
366
367 rxrpc_queue_packet(rx, call, skb,
368 !msg_data_left(msg) && !more,
369 notify_end_tx);
370 skb = NULL;
371 }
372
373 /* Check for the far side aborting the call or a network error
374 * occurring. If this happens, save any packet that was under
375 * construction so that in the case of a network error, the
376 * call can be retried or redirected.
377 */
378 if (call->state == RXRPC_CALL_COMPLETE) {
379 ret = call->error;
380 goto out;
381 }
382 } while (msg_data_left(msg) > 0);
383
384success:
385 ret = copied;
386out:
387 call->tx_pending = skb;
388 _leave(" = %d", ret);
389 return ret;
390
391maybe_error:
392 if (copied)
393 goto success;
394 goto out;
395
396efault:
397 ret = -EFAULT;
398 goto out;
399}
400
401/*
402 * extract control messages from the sendmsg() control buffer
403 */
404static int rxrpc_sendmsg_cmsg(struct msghdr *msg, struct rxrpc_send_params *p)
405{
406 struct cmsghdr *cmsg;
407 bool got_user_ID = false;
408 int len;
409
410 if (msg->msg_controllen == 0)
411 return -EINVAL;
412
413 for_each_cmsghdr(cmsg, msg) {
414 if (!CMSG_OK(msg, cmsg))
415 return -EINVAL;
416
417 len = cmsg->cmsg_len - sizeof(struct cmsghdr);
418 _debug("CMSG %d, %d, %d",
419 cmsg->cmsg_level, cmsg->cmsg_type, len);
420
421 if (cmsg->cmsg_level != SOL_RXRPC)
422 continue;
423
424 switch (cmsg->cmsg_type) {
425 case RXRPC_USER_CALL_ID:
426 if (msg->msg_flags & MSG_CMSG_COMPAT) {
427 if (len != sizeof(u32))
428 return -EINVAL;
429 p->user_call_ID = *(u32 *)CMSG_DATA(cmsg);
430 } else {
431 if (len != sizeof(unsigned long))
432 return -EINVAL;
433 p->user_call_ID = *(unsigned long *)
434 CMSG_DATA(cmsg);
435 }
436 got_user_ID = true;
437 break;
438
439 case RXRPC_ABORT:
440 if (p->command != RXRPC_CMD_SEND_DATA)
441 return -EINVAL;
442 p->command = RXRPC_CMD_SEND_ABORT;
443 if (len != sizeof(p->abort_code))
444 return -EINVAL;
445 p->abort_code = *(unsigned int *)CMSG_DATA(cmsg);
446 if (p->abort_code == 0)
447 return -EINVAL;
448 break;
449
450 case RXRPC_ACCEPT:
451 if (p->command != RXRPC_CMD_SEND_DATA)
452 return -EINVAL;
453 p->command = RXRPC_CMD_ACCEPT;
454 if (len != 0)
455 return -EINVAL;
456 break;
457
458 case RXRPC_EXCLUSIVE_CALL:
459 p->exclusive = true;
460 if (len != 0)
461 return -EINVAL;
462 break;
463
464 case RXRPC_UPGRADE_SERVICE:
465 p->upgrade = true;
466 if (len != 0)
467 return -EINVAL;
468 break;
469
470 case RXRPC_TX_LENGTH:
471 if (p->tx_total_len != -1 || len != sizeof(__s64))
472 return -EINVAL;
473 p->tx_total_len = *(__s64 *)CMSG_DATA(cmsg);
474 if (p->tx_total_len < 0)
475 return -EINVAL;
476 break;
477
478 default:
479 return -EINVAL;
480 }
481 }
482
483 if (!got_user_ID)
484 return -EINVAL;
485 if (p->tx_total_len != -1 && p->command != RXRPC_CMD_SEND_DATA)
486 return -EINVAL;
487 _leave(" = 0");
488 return 0;
489}
490
491/*
492 * Create a new client call for sendmsg().
493 * - Called with the socket lock held, which it must release.
494 * - If it returns a call, the call's lock will need releasing by the caller.
495 */
496static struct rxrpc_call *
497rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg,
498 struct rxrpc_send_params *p)
499 __releases(&rx->sk.sk_lock.slock)
500{
501 struct rxrpc_conn_parameters cp;
502 struct rxrpc_call *call;
503 struct key *key;
504
505 DECLARE_SOCKADDR(struct sockaddr_rxrpc *, srx, msg->msg_name);
506
507 _enter("");
508
509 if (!msg->msg_name) {
510 release_sock(&rx->sk);
511 return ERR_PTR(-EDESTADDRREQ);
512 }
513
514 key = rx->key;
515 if (key && !rx->key->payload.data[0])
516 key = NULL;
517
518 memset(&cp, 0, sizeof(cp));
519 cp.local = rx->local;
520 cp.key = rx->key;
521 cp.security_level = rx->min_sec_level;
522 cp.exclusive = rx->exclusive | p->exclusive;
523 cp.upgrade = p->upgrade;
524 cp.service_id = srx->srx_service;
525 call = rxrpc_new_client_call(rx, &cp, srx, p->user_call_ID,
526 p->tx_total_len, GFP_KERNEL);
527 /* The socket is now unlocked */
528
529 _leave(" = %p\n", call);
530 return call;
531}
532
533/*
534 * send a message forming part of a client call through an RxRPC socket
535 * - caller holds the socket locked
536 * - the socket may be either a client socket or a server socket
537 */
538int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
539 __releases(&rx->sk.sk_lock.slock)
540{
541 enum rxrpc_call_state state;
542 struct rxrpc_call *call;
543 int ret;
544
545 struct rxrpc_send_params p = {
546 .tx_total_len = -1,
547 .user_call_ID = 0,
548 .abort_code = 0,
549 .command = RXRPC_CMD_SEND_DATA,
550 .exclusive = false,
551 .upgrade = true,
552 };
553
554 _enter("");
555
556 ret = rxrpc_sendmsg_cmsg(msg, &p);
557 if (ret < 0)
558 goto error_release_sock;
559
560 if (p.command == RXRPC_CMD_ACCEPT) {
561 ret = -EINVAL;
562 if (rx->sk.sk_state != RXRPC_SERVER_LISTENING)
563 goto error_release_sock;
564 call = rxrpc_accept_call(rx, p.user_call_ID, NULL);
565 /* The socket is now unlocked. */
566 if (IS_ERR(call))
567 return PTR_ERR(call);
568 ret = 0;
569 goto out_put_unlock;
570 }
571
572 call = rxrpc_find_call_by_user_ID(rx, p.user_call_ID);
573 if (!call) {
574 ret = -EBADSLT;
575 if (p.command != RXRPC_CMD_SEND_DATA)
576 goto error_release_sock;
577 call = rxrpc_new_client_call_for_sendmsg(rx, msg, &p);
578 /* The socket is now unlocked... */
579 if (IS_ERR(call))
580 return PTR_ERR(call);
581 /* ... and we have the call lock. */
582 ret = 0;
583 if (READ_ONCE(call->state) == RXRPC_CALL_COMPLETE)
584 goto out_put_unlock;
585 } else {
586 switch (READ_ONCE(call->state)) {
587 case RXRPC_CALL_UNINITIALISED:
588 case RXRPC_CALL_CLIENT_AWAIT_CONN:
589 case RXRPC_CALL_SERVER_PREALLOC:
590 case RXRPC_CALL_SERVER_SECURING:
591 case RXRPC_CALL_SERVER_ACCEPTING:
592 rxrpc_put_call(call, rxrpc_call_put);
593 ret = -EBUSY;
594 goto error_release_sock;
595 default:
596 break;
597 }
598
599 ret = mutex_lock_interruptible(&call->user_mutex);
600 release_sock(&rx->sk);
601 if (ret < 0) {
602 ret = -ERESTARTSYS;
603 goto error_put;
604 }
605
606 if (p.tx_total_len != -1) {
607 ret = -EINVAL;
608 if (call->tx_total_len != -1 ||
609 call->tx_pending ||
610 call->tx_top != 0)
611 goto error_put;
612 call->tx_total_len = p.tx_total_len;
613 }
614 }
615
616 state = READ_ONCE(call->state);
617 _debug("CALL %d USR %lx ST %d on CONN %p",
618 call->debug_id, call->user_call_ID, state, call->conn);
619
620 if (state >= RXRPC_CALL_COMPLETE) {
621 /* it's too late for this call */
622 ret = -ESHUTDOWN;
623 } else if (p.command == RXRPC_CMD_SEND_ABORT) {
624 ret = 0;
625 if (rxrpc_abort_call("CMD", call, 0, p.abort_code, -ECONNABORTED))
626 ret = rxrpc_send_abort_packet(call);
627 } else if (p.command != RXRPC_CMD_SEND_DATA) {
628 ret = -EINVAL;
629 } else if (rxrpc_is_client_call(call) &&
630 state != RXRPC_CALL_CLIENT_SEND_REQUEST) {
631 /* request phase complete for this client call */
632 ret = -EPROTO;
633 } else if (rxrpc_is_service_call(call) &&
634 state != RXRPC_CALL_SERVER_ACK_REQUEST &&
635 state != RXRPC_CALL_SERVER_SEND_REPLY) {
636 /* Reply phase not begun or not complete for service call. */
637 ret = -EPROTO;
638 } else {
639 ret = rxrpc_send_data(rx, call, msg, len, NULL);
640 }
641
642out_put_unlock:
643 mutex_unlock(&call->user_mutex);
644error_put:
645 rxrpc_put_call(call, rxrpc_call_put);
646 _leave(" = %d", ret);
647 return ret;
648
649error_release_sock:
650 release_sock(&rx->sk);
651 return ret;
652}
653
654/**
655 * rxrpc_kernel_send_data - Allow a kernel service to send data on a call
656 * @sock: The socket the call is on
657 * @call: The call to send data through
658 * @msg: The data to send
659 * @len: The amount of data to send
660 * @notify_end_tx: Notification that the last packet is queued.
661 *
662 * Allow a kernel service to send data on a call. The call must be in an state
663 * appropriate to sending data. No control data should be supplied in @msg,
664 * nor should an address be supplied. MSG_MORE should be flagged if there's
665 * more data to come, otherwise this data will end the transmission phase.
666 */
667int rxrpc_kernel_send_data(struct socket *sock, struct rxrpc_call *call,
668 struct msghdr *msg, size_t len,
669 rxrpc_notify_end_tx_t notify_end_tx)
670{
671 int ret;
672
673 _enter("{%d,%s},", call->debug_id, rxrpc_call_states[call->state]);
674
675 ASSERTCMP(msg->msg_name, ==, NULL);
676 ASSERTCMP(msg->msg_control, ==, NULL);
677
678 mutex_lock(&call->user_mutex);
679
680 _debug("CALL %d USR %lx ST %d on CONN %p",
681 call->debug_id, call->user_call_ID, call->state, call->conn);
682
683 switch (READ_ONCE(call->state)) {
684 case RXRPC_CALL_CLIENT_SEND_REQUEST:
685 case RXRPC_CALL_SERVER_ACK_REQUEST:
686 case RXRPC_CALL_SERVER_SEND_REPLY:
687 ret = rxrpc_send_data(rxrpc_sk(sock->sk), call, msg, len,
688 notify_end_tx);
689 break;
690 case RXRPC_CALL_COMPLETE:
691 read_lock_bh(&call->state_lock);
692 ret = call->error;
693 read_unlock_bh(&call->state_lock);
694 break;
695 default:
696 /* Request phase complete for this client call */
697 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("late_send"));
698 ret = -EPROTO;
699 break;
700 }
701
702 mutex_unlock(&call->user_mutex);
703 _leave(" = %d", ret);
704 return ret;
705}
706EXPORT_SYMBOL(rxrpc_kernel_send_data);
707
708/**
709 * rxrpc_kernel_abort_call - Allow a kernel service to abort a call
710 * @sock: The socket the call is on
711 * @call: The call to be aborted
712 * @abort_code: The abort code to stick into the ABORT packet
713 * @error: Local error value
714 * @why: 3-char string indicating why.
715 *
716 * Allow a kernel service to abort a call, if it's still in an abortable state
717 * and return true if the call was aborted, false if it was already complete.
718 */
719bool rxrpc_kernel_abort_call(struct socket *sock, struct rxrpc_call *call,
720 u32 abort_code, int error, const char *why)
721{
722 bool aborted;
723
724 _enter("{%d},%d,%d,%s", call->debug_id, abort_code, error, why);
725
726 mutex_lock(&call->user_mutex);
727
728 aborted = rxrpc_abort_call(why, call, 0, abort_code, error);
729 if (aborted)
730 rxrpc_send_abort_packet(call);
731
732 mutex_unlock(&call->user_mutex);
733 return aborted;
734}
735EXPORT_SYMBOL(rxrpc_kernel_abort_call);
736
737/**
738 * rxrpc_kernel_set_tx_length - Set the total Tx length on a call
739 * @sock: The socket the call is on
740 * @call: The call to be informed
741 * @tx_total_len: The amount of data to be transmitted for this call
742 *
743 * Allow a kernel service to set the total transmit length on a call. This
744 * allows buffer-to-packet encrypt-and-copy to be performed.
745 *
746 * This function is primarily for use for setting the reply length since the
747 * request length can be set when beginning the call.
748 */
749void rxrpc_kernel_set_tx_length(struct socket *sock, struct rxrpc_call *call,
750 s64 tx_total_len)
751{
752 WARN_ON(call->tx_total_len != -1);
753 call->tx_total_len = tx_total_len;
754}
755EXPORT_SYMBOL(rxrpc_kernel_set_tx_length);