1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* AF_RXRPC sendmsg() implementation.
4 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/net.h>
11 #include <linux/gfp.h>
12 #include <linux/skbuff.h>
13 #include <linux/export.h>
14 #include <linux/sched/signal.h>
17 #include <net/af_rxrpc.h>
18 #include "ar-internal.h"
21 * Wait for space to appear in the Tx queue or a signal to occur.
23 static int rxrpc_wait_for_tx_window_intr(struct rxrpc_sock
*rx
,
24 struct rxrpc_call
*call
,
28 set_current_state(TASK_INTERRUPTIBLE
);
29 if (call
->tx_top
- call
->tx_hard_ack
<
30 min_t(unsigned int, call
->tx_winsize
,
31 call
->cong_cwnd
+ call
->cong_extra
))
34 if (call
->state
>= RXRPC_CALL_COMPLETE
)
37 if (signal_pending(current
))
38 return sock_intr_errno(*timeo
);
40 trace_rxrpc_transmit(call
, rxrpc_transmit_wait
);
41 mutex_unlock(&call
->user_mutex
);
42 *timeo
= schedule_timeout(*timeo
);
43 if (mutex_lock_interruptible(&call
->user_mutex
) < 0)
44 return sock_intr_errno(*timeo
);
49 * Wait for space to appear in the Tx queue uninterruptibly, but with
50 * a timeout of 2*RTT if no progress was made and a signal occurred.
52 static int rxrpc_wait_for_tx_window_nonintr(struct rxrpc_sock
*rx
,
53 struct rxrpc_call
*call
)
55 rxrpc_seq_t tx_start
, tx_win
;
56 signed long rtt2
, timeout
;
59 rtt
= READ_ONCE(call
->peer
->rtt
);
60 rtt2
= nsecs_to_jiffies64(rtt
) * 2;
65 tx_start
= READ_ONCE(call
->tx_hard_ack
);
68 set_current_state(TASK_UNINTERRUPTIBLE
);
70 tx_win
= READ_ONCE(call
->tx_hard_ack
);
71 if (call
->tx_top
- tx_win
<
72 min_t(unsigned int, call
->tx_winsize
,
73 call
->cong_cwnd
+ call
->cong_extra
))
76 if (call
->state
>= RXRPC_CALL_COMPLETE
)
79 if (test_bit(RXRPC_CALL_IS_INTR
, &call
->flags
) &&
81 tx_win
== tx_start
&& signal_pending(current
))
84 if (tx_win
!= tx_start
) {
89 trace_rxrpc_transmit(call
, rxrpc_transmit_wait
);
90 timeout
= schedule_timeout(timeout
);
95 * wait for space to appear in the transmit/ACK window
96 * - caller holds the socket locked
98 static int rxrpc_wait_for_tx_window(struct rxrpc_sock
*rx
,
99 struct rxrpc_call
*call
,
103 DECLARE_WAITQUEUE(myself
, current
);
106 _enter(",{%u,%u,%u}",
107 call
->tx_hard_ack
, call
->tx_top
, call
->tx_winsize
);
109 add_wait_queue(&call
->waitq
, &myself
);
112 ret
= rxrpc_wait_for_tx_window_nonintr(rx
, call
);
114 ret
= rxrpc_wait_for_tx_window_intr(rx
, call
, timeo
);
116 remove_wait_queue(&call
->waitq
, &myself
);
117 set_current_state(TASK_RUNNING
);
118 _leave(" = %d", ret
);
123 * Schedule an instant Tx resend.
125 static inline void rxrpc_instant_resend(struct rxrpc_call
*call
, int ix
)
127 spin_lock_bh(&call
->lock
);
129 if (call
->state
< RXRPC_CALL_COMPLETE
) {
130 call
->rxtx_annotations
[ix
] =
131 (call
->rxtx_annotations
[ix
] & RXRPC_TX_ANNO_LAST
) |
132 RXRPC_TX_ANNO_RETRANS
;
133 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND
, &call
->events
))
134 rxrpc_queue_call(call
);
137 spin_unlock_bh(&call
->lock
);
141 * Notify the owner of the call that the transmit phase is ended and the last
142 * packet has been queued.
144 static void rxrpc_notify_end_tx(struct rxrpc_sock
*rx
, struct rxrpc_call
*call
,
145 rxrpc_notify_end_tx_t notify_end_tx
)
148 notify_end_tx(&rx
->sk
, call
, call
->user_call_ID
);
152 * Queue a DATA packet for transmission, set the resend timeout and send
153 * the packet immediately. Returns the error from rxrpc_send_data_packet()
154 * in case the caller wants to do something with it.
156 static int rxrpc_queue_packet(struct rxrpc_sock
*rx
, struct rxrpc_call
*call
,
157 struct sk_buff
*skb
, bool last
,
158 rxrpc_notify_end_tx_t notify_end_tx
)
160 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
162 rxrpc_seq_t seq
= sp
->hdr
.seq
;
164 u8 annotation
= RXRPC_TX_ANNO_UNACK
;
166 _net("queue skb %p [%d]", skb
, seq
);
168 ASSERTCMP(seq
, ==, call
->tx_top
+ 1);
171 annotation
|= RXRPC_TX_ANNO_LAST
;
173 /* We have to set the timestamp before queueing as the retransmit
174 * algorithm can see the packet as soon as we queue it.
176 skb
->tstamp
= ktime_get_real();
178 ix
= seq
& RXRPC_RXTX_BUFF_MASK
;
179 rxrpc_get_skb(skb
, rxrpc_skb_got
);
180 call
->rxtx_annotations
[ix
] = annotation
;
182 call
->rxtx_buffer
[ix
] = skb
;
185 trace_rxrpc_transmit(call
, rxrpc_transmit_queue_last
);
187 trace_rxrpc_transmit(call
, rxrpc_transmit_queue
);
189 if (last
|| call
->state
== RXRPC_CALL_SERVER_ACK_REQUEST
) {
190 _debug("________awaiting reply/ACK__________");
191 write_lock_bh(&call
->state_lock
);
192 switch (call
->state
) {
193 case RXRPC_CALL_CLIENT_SEND_REQUEST
:
194 call
->state
= RXRPC_CALL_CLIENT_AWAIT_REPLY
;
195 rxrpc_notify_end_tx(rx
, call
, notify_end_tx
);
197 case RXRPC_CALL_SERVER_ACK_REQUEST
:
198 call
->state
= RXRPC_CALL_SERVER_SEND_REPLY
;
200 WRITE_ONCE(call
->ack_at
, now
+ MAX_JIFFY_OFFSET
);
201 if (call
->ackr_reason
== RXRPC_ACK_DELAY
)
202 call
->ackr_reason
= 0;
203 trace_rxrpc_timer(call
, rxrpc_timer_init_for_send_reply
, now
);
207 case RXRPC_CALL_SERVER_SEND_REPLY
:
208 call
->state
= RXRPC_CALL_SERVER_AWAIT_ACK
;
209 rxrpc_notify_end_tx(rx
, call
, notify_end_tx
);
214 write_unlock_bh(&call
->state_lock
);
217 if (seq
== 1 && rxrpc_is_client_call(call
))
218 rxrpc_expose_client_call(call
);
220 ret
= rxrpc_send_data_packet(call
, skb
, false);
226 rxrpc_set_call_completion(call
,
227 RXRPC_CALL_LOCAL_ERROR
,
229 rxrpc_notify_socket(call
);
232 _debug("need instant resend %d", ret
);
233 rxrpc_instant_resend(call
, ix
);
235 unsigned long now
= jiffies
, resend_at
;
237 if (call
->peer
->rtt_usage
> 1)
238 resend_at
= nsecs_to_jiffies(call
->peer
->rtt
* 3 / 2);
240 resend_at
= rxrpc_resend_timeout
;
245 WRITE_ONCE(call
->resend_at
, resend_at
);
246 rxrpc_reduce_call_timer(call
, resend_at
, now
,
247 rxrpc_timer_set_for_send
);
251 rxrpc_free_skb(skb
, rxrpc_skb_freed
);
252 _leave(" = %d", ret
);
257 * send data through a socket
258 * - must be called in process context
259 * - The caller holds the call user access mutex, but not the socket lock.
261 static int rxrpc_send_data(struct rxrpc_sock
*rx
,
262 struct rxrpc_call
*call
,
263 struct msghdr
*msg
, size_t len
,
264 rxrpc_notify_end_tx_t notify_end_tx
)
266 struct rxrpc_skb_priv
*sp
;
268 struct sock
*sk
= &rx
->sk
;
273 timeo
= sock_sndtimeo(sk
, msg
->msg_flags
& MSG_DONTWAIT
);
275 /* this should be in poll */
276 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE
, sk
);
278 if (sk
->sk_err
|| (sk
->sk_shutdown
& SEND_SHUTDOWN
))
281 more
= msg
->msg_flags
& MSG_MORE
;
283 if (call
->tx_total_len
!= -1) {
284 if (len
> call
->tx_total_len
)
286 if (!more
&& len
!= call
->tx_total_len
)
290 skb
= call
->tx_pending
;
291 call
->tx_pending
= NULL
;
292 rxrpc_see_skb(skb
, rxrpc_skb_seen
);
296 /* Check to see if there's a ping ACK to reply to. */
297 if (call
->ackr_reason
== RXRPC_ACK_PING_RESPONSE
)
298 rxrpc_send_ack_packet(call
, false, NULL
);
301 size_t size
, chunk
, max
, space
;
305 if (call
->tx_top
- call
->tx_hard_ack
>=
306 min_t(unsigned int, call
->tx_winsize
,
307 call
->cong_cwnd
+ call
->cong_extra
)) {
309 if (msg
->msg_flags
& MSG_DONTWAIT
)
311 ret
= rxrpc_wait_for_tx_window(rx
, call
,
313 msg
->msg_flags
& MSG_WAITALL
);
318 max
= RXRPC_JUMBO_DATALEN
;
319 max
-= call
->conn
->security_size
;
320 max
&= ~(call
->conn
->size_align
- 1UL);
323 if (chunk
> msg_data_left(msg
) && !more
)
324 chunk
= msg_data_left(msg
);
326 space
= chunk
+ call
->conn
->size_align
;
327 space
&= ~(call
->conn
->size_align
- 1UL);
329 size
= space
+ call
->conn
->security_size
;
331 _debug("SIZE: %zu/%zu/%zu", chunk
, space
, size
);
333 /* create a buffer that we can retain until it's ACK'd */
334 skb
= sock_alloc_send_skb(
335 sk
, size
, msg
->msg_flags
& MSG_DONTWAIT
, &ret
);
340 sp
->rx_flags
|= RXRPC_SKB_TX_BUFFER
;
341 rxrpc_new_skb(skb
, rxrpc_skb_new
);
343 _debug("ALLOC SEND %p", skb
);
345 ASSERTCMP(skb
->mark
, ==, 0);
347 _debug("HS: %u", call
->conn
->security_size
);
348 skb_reserve(skb
, call
->conn
->security_size
);
349 skb
->len
+= call
->conn
->security_size
;
352 if (sp
->remain
> skb_tailroom(skb
))
353 sp
->remain
= skb_tailroom(skb
);
355 _net("skb: hr %d, tr %d, hl %d, rm %d",
361 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
367 /* append next segment of data to the current buffer */
368 if (msg_data_left(msg
) > 0) {
369 int copy
= skb_tailroom(skb
);
370 ASSERTCMP(copy
, >, 0);
371 if (copy
> msg_data_left(msg
))
372 copy
= msg_data_left(msg
);
373 if (copy
> sp
->remain
)
377 ret
= skb_add_data(skb
, &msg
->msg_iter
, copy
);
384 if (call
->tx_total_len
!= -1)
385 call
->tx_total_len
-= copy
;
388 /* check for the far side aborting the call or a network error
390 if (call
->state
== RXRPC_CALL_COMPLETE
)
391 goto call_terminated
;
393 /* add the packet to the send queue if it's now full */
394 if (sp
->remain
<= 0 ||
395 (msg_data_left(msg
) == 0 && !more
)) {
396 struct rxrpc_connection
*conn
= call
->conn
;
400 /* pad out if we're using security */
401 if (conn
->security_ix
) {
402 pad
= conn
->security_size
+ skb
->mark
;
403 pad
= conn
->size_align
- pad
;
404 pad
&= conn
->size_align
- 1;
405 _debug("pad %zu", pad
);
407 skb_put_zero(skb
, pad
);
410 seq
= call
->tx_top
+ 1;
414 sp
->hdr
.flags
= conn
->out_clientflag
;
416 if (msg_data_left(msg
) == 0 && !more
)
417 sp
->hdr
.flags
|= RXRPC_LAST_PACKET
;
418 else if (call
->tx_top
- call
->tx_hard_ack
<
420 sp
->hdr
.flags
|= RXRPC_MORE_PACKETS
;
422 ret
= conn
->security
->secure_packet(
423 call
, skb
, skb
->mark
, skb
->head
);
427 ret
= rxrpc_queue_packet(rx
, call
, skb
,
428 !msg_data_left(msg
) && !more
,
430 /* Should check for failure here */
433 } while (msg_data_left(msg
) > 0);
438 call
->tx_pending
= skb
;
439 _leave(" = %d", ret
);
443 rxrpc_free_skb(skb
, rxrpc_skb_freed
);
444 _leave(" = %d", call
->error
);
458 * extract control messages from the sendmsg() control buffer
460 static int rxrpc_sendmsg_cmsg(struct msghdr
*msg
, struct rxrpc_send_params
*p
)
462 struct cmsghdr
*cmsg
;
463 bool got_user_ID
= false;
466 if (msg
->msg_controllen
== 0)
469 for_each_cmsghdr(cmsg
, msg
) {
470 if (!CMSG_OK(msg
, cmsg
))
473 len
= cmsg
->cmsg_len
- sizeof(struct cmsghdr
);
474 _debug("CMSG %d, %d, %d",
475 cmsg
->cmsg_level
, cmsg
->cmsg_type
, len
);
477 if (cmsg
->cmsg_level
!= SOL_RXRPC
)
480 switch (cmsg
->cmsg_type
) {
481 case RXRPC_USER_CALL_ID
:
482 if (msg
->msg_flags
& MSG_CMSG_COMPAT
) {
483 if (len
!= sizeof(u32
))
485 p
->call
.user_call_ID
= *(u32
*)CMSG_DATA(cmsg
);
487 if (len
!= sizeof(unsigned long))
489 p
->call
.user_call_ID
= *(unsigned long *)
496 if (p
->command
!= RXRPC_CMD_SEND_DATA
)
498 p
->command
= RXRPC_CMD_SEND_ABORT
;
499 if (len
!= sizeof(p
->abort_code
))
501 p
->abort_code
= *(unsigned int *)CMSG_DATA(cmsg
);
502 if (p
->abort_code
== 0)
507 if (p
->command
!= RXRPC_CMD_SEND_DATA
)
509 p
->command
= RXRPC_CMD_ACCEPT
;
514 case RXRPC_EXCLUSIVE_CALL
:
520 case RXRPC_UPGRADE_SERVICE
:
526 case RXRPC_TX_LENGTH
:
527 if (p
->call
.tx_total_len
!= -1 || len
!= sizeof(__s64
))
529 p
->call
.tx_total_len
= *(__s64
*)CMSG_DATA(cmsg
);
530 if (p
->call
.tx_total_len
< 0)
534 case RXRPC_SET_CALL_TIMEOUT
:
535 if (len
& 3 || len
< 4 || len
> 12)
537 memcpy(&p
->call
.timeouts
, CMSG_DATA(cmsg
), len
);
538 p
->call
.nr_timeouts
= len
/ 4;
539 if (p
->call
.timeouts
.hard
> INT_MAX
/ HZ
)
541 if (p
->call
.nr_timeouts
>= 2 && p
->call
.timeouts
.idle
> 60 * 60 * 1000)
543 if (p
->call
.nr_timeouts
>= 3 && p
->call
.timeouts
.normal
> 60 * 60 * 1000)
554 if (p
->call
.tx_total_len
!= -1 && p
->command
!= RXRPC_CMD_SEND_DATA
)
561 * Create a new client call for sendmsg().
562 * - Called with the socket lock held, which it must release.
563 * - If it returns a call, the call's lock will need releasing by the caller.
565 static struct rxrpc_call
*
566 rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock
*rx
, struct msghdr
*msg
,
567 struct rxrpc_send_params
*p
)
568 __releases(&rx
->sk
.sk_lock
.slock
)
569 __acquires(&call
->user_mutex
)
571 struct rxrpc_conn_parameters cp
;
572 struct rxrpc_call
*call
;
575 DECLARE_SOCKADDR(struct sockaddr_rxrpc
*, srx
, msg
->msg_name
);
579 if (!msg
->msg_name
) {
580 release_sock(&rx
->sk
);
581 return ERR_PTR(-EDESTADDRREQ
);
585 if (key
&& !rx
->key
->payload
.data
[0])
588 memset(&cp
, 0, sizeof(cp
));
589 cp
.local
= rx
->local
;
591 cp
.security_level
= rx
->min_sec_level
;
592 cp
.exclusive
= rx
->exclusive
| p
->exclusive
;
593 cp
.upgrade
= p
->upgrade
;
594 cp
.service_id
= srx
->srx_service
;
595 call
= rxrpc_new_client_call(rx
, &cp
, srx
, &p
->call
, GFP_KERNEL
,
596 atomic_inc_return(&rxrpc_debug_id
));
597 /* The socket is now unlocked */
599 rxrpc_put_peer(cp
.peer
);
600 _leave(" = %p\n", call
);
605 * send a message forming part of a client call through an RxRPC socket
606 * - caller holds the socket locked
607 * - the socket may be either a client socket or a server socket
609 int rxrpc_do_sendmsg(struct rxrpc_sock
*rx
, struct msghdr
*msg
, size_t len
)
610 __releases(&rx
->sk
.sk_lock
.slock
)
611 __releases(&call
->user_mutex
)
613 enum rxrpc_call_state state
;
614 struct rxrpc_call
*call
;
615 unsigned long now
, j
;
618 struct rxrpc_send_params p
= {
619 .call
.tx_total_len
= -1,
620 .call
.user_call_ID
= 0,
621 .call
.nr_timeouts
= 0,
624 .command
= RXRPC_CMD_SEND_DATA
,
631 ret
= rxrpc_sendmsg_cmsg(msg
, &p
);
633 goto error_release_sock
;
635 if (p
.command
== RXRPC_CMD_ACCEPT
) {
637 if (rx
->sk
.sk_state
!= RXRPC_SERVER_LISTENING
)
638 goto error_release_sock
;
639 call
= rxrpc_accept_call(rx
, p
.call
.user_call_ID
, NULL
);
640 /* The socket is now unlocked. */
642 return PTR_ERR(call
);
647 call
= rxrpc_find_call_by_user_ID(rx
, p
.call
.user_call_ID
);
650 if (p
.command
!= RXRPC_CMD_SEND_DATA
)
651 goto error_release_sock
;
652 call
= rxrpc_new_client_call_for_sendmsg(rx
, msg
, &p
);
653 /* The socket is now unlocked... */
655 return PTR_ERR(call
);
656 /* ... and we have the call lock. */
658 switch (READ_ONCE(call
->state
)) {
659 case RXRPC_CALL_UNINITIALISED
:
660 case RXRPC_CALL_CLIENT_AWAIT_CONN
:
661 case RXRPC_CALL_SERVER_PREALLOC
:
662 case RXRPC_CALL_SERVER_SECURING
:
663 case RXRPC_CALL_SERVER_ACCEPTING
:
665 goto error_release_sock
;
670 ret
= mutex_lock_interruptible(&call
->user_mutex
);
671 release_sock(&rx
->sk
);
677 if (p
.call
.tx_total_len
!= -1) {
679 if (call
->tx_total_len
!= -1 ||
683 call
->tx_total_len
= p
.call
.tx_total_len
;
687 switch (p
.call
.nr_timeouts
) {
689 j
= msecs_to_jiffies(p
.call
.timeouts
.normal
);
690 if (p
.call
.timeouts
.normal
> 0 && j
== 0)
692 WRITE_ONCE(call
->next_rx_timo
, j
);
695 j
= msecs_to_jiffies(p
.call
.timeouts
.idle
);
696 if (p
.call
.timeouts
.idle
> 0 && j
== 0)
698 WRITE_ONCE(call
->next_req_timo
, j
);
701 if (p
.call
.timeouts
.hard
> 0) {
702 j
= msecs_to_jiffies(p
.call
.timeouts
.hard
);
705 WRITE_ONCE(call
->expect_term_by
, j
);
706 rxrpc_reduce_call_timer(call
, j
, now
,
707 rxrpc_timer_set_for_hard
);
712 state
= READ_ONCE(call
->state
);
713 _debug("CALL %d USR %lx ST %d on CONN %p",
714 call
->debug_id
, call
->user_call_ID
, state
, call
->conn
);
716 if (state
>= RXRPC_CALL_COMPLETE
) {
717 /* it's too late for this call */
719 } else if (p
.command
== RXRPC_CMD_SEND_ABORT
) {
721 if (rxrpc_abort_call("CMD", call
, 0, p
.abort_code
, -ECONNABORTED
))
722 ret
= rxrpc_send_abort_packet(call
);
723 } else if (p
.command
!= RXRPC_CMD_SEND_DATA
) {
725 } else if (rxrpc_is_client_call(call
) &&
726 state
!= RXRPC_CALL_CLIENT_SEND_REQUEST
) {
727 /* request phase complete for this client call */
729 } else if (rxrpc_is_service_call(call
) &&
730 state
!= RXRPC_CALL_SERVER_ACK_REQUEST
&&
731 state
!= RXRPC_CALL_SERVER_SEND_REPLY
) {
732 /* Reply phase not begun or not complete for service call. */
735 ret
= rxrpc_send_data(rx
, call
, msg
, len
, NULL
);
739 mutex_unlock(&call
->user_mutex
);
741 rxrpc_put_call(call
, rxrpc_call_put
);
742 _leave(" = %d", ret
);
746 release_sock(&rx
->sk
);
751 * rxrpc_kernel_send_data - Allow a kernel service to send data on a call
752 * @sock: The socket the call is on
753 * @call: The call to send data through
754 * @msg: The data to send
755 * @len: The amount of data to send
756 * @notify_end_tx: Notification that the last packet is queued.
758 * Allow a kernel service to send data on a call. The call must be in an state
759 * appropriate to sending data. No control data should be supplied in @msg,
760 * nor should an address be supplied. MSG_MORE should be flagged if there's
761 * more data to come, otherwise this data will end the transmission phase.
763 int rxrpc_kernel_send_data(struct socket
*sock
, struct rxrpc_call
*call
,
764 struct msghdr
*msg
, size_t len
,
765 rxrpc_notify_end_tx_t notify_end_tx
)
769 _enter("{%d,%s},", call
->debug_id
, rxrpc_call_states
[call
->state
]);
771 ASSERTCMP(msg
->msg_name
, ==, NULL
);
772 ASSERTCMP(msg
->msg_control
, ==, NULL
);
774 mutex_lock(&call
->user_mutex
);
776 _debug("CALL %d USR %lx ST %d on CONN %p",
777 call
->debug_id
, call
->user_call_ID
, call
->state
, call
->conn
);
779 switch (READ_ONCE(call
->state
)) {
780 case RXRPC_CALL_CLIENT_SEND_REQUEST
:
781 case RXRPC_CALL_SERVER_ACK_REQUEST
:
782 case RXRPC_CALL_SERVER_SEND_REPLY
:
783 ret
= rxrpc_send_data(rxrpc_sk(sock
->sk
), call
, msg
, len
,
786 case RXRPC_CALL_COMPLETE
:
787 read_lock_bh(&call
->state_lock
);
789 read_unlock_bh(&call
->state_lock
);
792 /* Request phase complete for this client call */
793 trace_rxrpc_rx_eproto(call
, 0, tracepoint_string("late_send"));
798 mutex_unlock(&call
->user_mutex
);
799 _leave(" = %d", ret
);
802 EXPORT_SYMBOL(rxrpc_kernel_send_data
);
805 * rxrpc_kernel_abort_call - Allow a kernel service to abort a call
806 * @sock: The socket the call is on
807 * @call: The call to be aborted
808 * @abort_code: The abort code to stick into the ABORT packet
809 * @error: Local error value
810 * @why: 3-char string indicating why.
812 * Allow a kernel service to abort a call, if it's still in an abortable state
813 * and return true if the call was aborted, false if it was already complete.
815 bool rxrpc_kernel_abort_call(struct socket
*sock
, struct rxrpc_call
*call
,
816 u32 abort_code
, int error
, const char *why
)
820 _enter("{%d},%d,%d,%s", call
->debug_id
, abort_code
, error
, why
);
822 mutex_lock(&call
->user_mutex
);
824 aborted
= rxrpc_abort_call(why
, call
, 0, abort_code
, error
);
826 rxrpc_send_abort_packet(call
);
828 mutex_unlock(&call
->user_mutex
);
831 EXPORT_SYMBOL(rxrpc_kernel_abort_call
);
834 * rxrpc_kernel_set_tx_length - Set the total Tx length on a call
835 * @sock: The socket the call is on
836 * @call: The call to be informed
837 * @tx_total_len: The amount of data to be transmitted for this call
839 * Allow a kernel service to set the total transmit length on a call. This
840 * allows buffer-to-packet encrypt-and-copy to be performed.
842 * This function is primarily for use for setting the reply length since the
843 * request length can be set when beginning the call.
845 void rxrpc_kernel_set_tx_length(struct socket
*sock
, struct rxrpc_call
*call
,
848 WARN_ON(call
->tx_total_len
!= -1);
849 call
->tx_total_len
= tx_total_len
;
851 EXPORT_SYMBOL(rxrpc_kernel_set_tx_length
);