1 /* RxRPC recvmsg() implementation
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #include <linux/net.h>
13 #include <linux/skbuff.h>
14 #include <linux/export.h>
16 #include <net/af_rxrpc.h>
17 #include "ar-internal.h"
20 * removal a call's user ID from the socket tree to make the user ID available
21 * again and so that it won't be seen again in association with that call
23 void rxrpc_remove_user_ID(struct rxrpc_sock
*rx
, struct rxrpc_call
*call
)
25 _debug("RELEASE CALL %d", call
->debug_id
);
27 if (test_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
)) {
28 write_lock_bh(&rx
->call_lock
);
29 rb_erase(&call
->sock_node
, &call
->socket
->calls
);
30 clear_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
);
31 write_unlock_bh(&rx
->call_lock
);
34 read_lock_bh(&call
->state_lock
);
35 if (!test_bit(RXRPC_CALL_RELEASED
, &call
->flags
) &&
36 !test_and_set_bit(RXRPC_CALL_RELEASE
, &call
->events
))
37 rxrpc_queue_call(call
);
38 read_unlock_bh(&call
->state_lock
);
42 * receive a message from an RxRPC socket
43 * - we need to be careful about two or more threads calling recvmsg
46 int rxrpc_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
47 struct msghdr
*msg
, size_t len
, int flags
)
49 struct rxrpc_skb_priv
*sp
;
50 struct rxrpc_call
*call
= NULL
, *continue_call
= NULL
;
51 struct rxrpc_sock
*rx
= rxrpc_sk(sock
->sk
);
54 int copy
, ret
, ullen
, offset
, copied
= 0;
59 _enter(",,,%zu,%d", len
, flags
);
61 if (flags
& (MSG_OOB
| MSG_TRUNC
))
64 ullen
= msg
->msg_flags
& MSG_CMSG_COMPAT
? 4 : sizeof(unsigned long);
66 timeo
= sock_rcvtimeo(&rx
->sk
, flags
& MSG_DONTWAIT
);
67 msg
->msg_flags
|= MSG_MORE
;
72 /* return immediately if a client socket has no outstanding
74 if (RB_EMPTY_ROOT(&rx
->calls
)) {
77 if (rx
->sk
.sk_state
!= RXRPC_SERVER_LISTENING
) {
78 release_sock(&rx
->sk
);
80 rxrpc_put_call(continue_call
);
85 /* get the next message on the Rx queue */
86 skb
= skb_peek(&rx
->sk
.sk_receive_queue
);
88 /* nothing remains on the queue */
90 (msg
->msg_flags
& MSG_PEEK
|| timeo
== 0))
93 /* wait for a message to turn up */
94 release_sock(&rx
->sk
);
95 prepare_to_wait_exclusive(sk_sleep(&rx
->sk
), &wait
,
97 ret
= sock_error(&rx
->sk
);
101 if (skb_queue_empty(&rx
->sk
.sk_receive_queue
)) {
102 if (signal_pending(current
))
103 goto wait_interrupted
;
104 timeo
= schedule_timeout(timeo
);
106 finish_wait(sk_sleep(&rx
->sk
), &wait
);
114 ASSERT(call
!= NULL
);
116 _debug("next pkt %s", rxrpc_pkts
[sp
->hdr
.type
]);
118 /* make sure we wait for the state to be updated in this call */
119 spin_lock_bh(&call
->lock
);
120 spin_unlock_bh(&call
->lock
);
122 if (test_bit(RXRPC_CALL_RELEASED
, &call
->flags
)) {
123 _debug("packet from released call");
124 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) != skb
)
130 /* determine whether to continue last data receive */
132 _debug("maybe cont");
133 if (call
!= continue_call
||
134 skb
->mark
!= RXRPC_SKB_MARK_DATA
) {
135 release_sock(&rx
->sk
);
136 rxrpc_put_call(continue_call
);
137 _leave(" = %d [noncont]", copied
);
142 rxrpc_get_call(call
);
144 /* copy the peer address and timestamp */
145 if (!continue_call
) {
148 sizeof(call
->conn
->trans
->peer
->srx
);
149 memcpy(msg
->msg_name
,
150 &call
->conn
->trans
->peer
->srx
, len
);
151 msg
->msg_namelen
= len
;
153 sock_recv_ts_and_drops(msg
, &rx
->sk
, skb
);
156 /* receive the message */
157 if (skb
->mark
!= RXRPC_SKB_MARK_DATA
)
158 goto receive_non_data_message
;
160 _debug("recvmsg DATA #%u { %d, %d }",
161 ntohl(sp
->hdr
.seq
), skb
->len
, sp
->offset
);
163 if (!continue_call
) {
164 /* only set the control data once per recvmsg() */
165 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_USER_CALL_ID
,
166 ullen
, &call
->user_call_ID
);
169 ASSERT(test_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
));
172 ASSERTCMP(ntohl(sp
->hdr
.seq
), >=, call
->rx_data_recv
);
173 ASSERTCMP(ntohl(sp
->hdr
.seq
), <=, call
->rx_data_recv
+ 1);
174 call
->rx_data_recv
= ntohl(sp
->hdr
.seq
);
176 ASSERTCMP(ntohl(sp
->hdr
.seq
), >, call
->rx_data_eaten
);
179 copy
= skb
->len
- offset
;
180 if (copy
> len
- copied
)
183 if (skb
->ip_summed
== CHECKSUM_UNNECESSARY
||
184 skb
->ip_summed
== CHECKSUM_PARTIAL
) {
185 ret
= skb_copy_datagram_iovec(skb
, offset
,
188 ret
= skb_copy_and_csum_datagram_iovec(skb
, offset
,
191 goto csum_copy_error
;
197 /* handle piecemeal consumption of data packets */
198 _debug("copied %d+%d", copy
, copied
);
203 if (!(flags
& MSG_PEEK
))
206 if (sp
->offset
< skb
->len
) {
207 _debug("buffer full");
208 ASSERTCMP(copied
, ==, len
);
212 /* we transferred the whole data packet */
213 if (sp
->hdr
.flags
& RXRPC_LAST_PACKET
) {
215 if (call
->conn
->out_clientflag
) {
216 /* last byte of reply received */
218 goto terminal_message
;
221 /* last bit of request received */
222 if (!(flags
& MSG_PEEK
)) {
223 _debug("eat packet");
224 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) !=
229 msg
->msg_flags
&= ~MSG_MORE
;
233 /* move on to the next data message */
236 continue_call
= sp
->call
;
238 rxrpc_put_call(call
);
241 if (flags
& MSG_PEEK
) {
244 if (skb
== (struct sk_buff
*) &rx
->sk
.sk_receive_queue
)
246 goto peek_next_packet
;
249 _debug("eat packet");
250 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) != skb
)
255 /* end of non-terminal data packet reception for the moment */
256 _debug("end rcv data");
258 release_sock(&rx
->sk
);
260 rxrpc_put_call(call
);
262 rxrpc_put_call(continue_call
);
263 _leave(" = %d [data]", copied
);
266 /* handle non-DATA messages such as aborts, incoming connections and
268 receive_non_data_message
:
271 if (skb
->mark
== RXRPC_SKB_MARK_NEW_CALL
) {
272 _debug("RECV NEW CALL");
273 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_NEW_CALL
, 0, &abort_code
);
276 if (!(flags
& MSG_PEEK
)) {
277 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) != skb
)
284 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_USER_CALL_ID
,
285 ullen
, &call
->user_call_ID
);
288 ASSERT(test_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
));
291 case RXRPC_SKB_MARK_DATA
:
293 case RXRPC_SKB_MARK_FINAL_ACK
:
294 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_ACK
, 0, &abort_code
);
296 case RXRPC_SKB_MARK_BUSY
:
297 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_BUSY
, 0, &abort_code
);
299 case RXRPC_SKB_MARK_REMOTE_ABORT
:
300 abort_code
= call
->abort_code
;
301 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_ABORT
, 4, &abort_code
);
303 case RXRPC_SKB_MARK_NET_ERROR
:
304 _debug("RECV NET ERROR %d", sp
->error
);
305 abort_code
= sp
->error
;
306 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_NET_ERROR
, 4, &abort_code
);
308 case RXRPC_SKB_MARK_LOCAL_ERROR
:
309 _debug("RECV LOCAL ERROR %d", sp
->error
);
310 abort_code
= sp
->error
;
311 ret
= put_cmsg(msg
, SOL_RXRPC
, RXRPC_LOCAL_ERROR
, 4,
324 msg
->msg_flags
&= ~MSG_MORE
;
325 msg
->msg_flags
|= MSG_EOR
;
327 if (!(flags
& MSG_PEEK
)) {
328 _net("free terminal skb %p", skb
);
329 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) != skb
)
332 rxrpc_remove_user_ID(rx
, call
);
335 release_sock(&rx
->sk
);
336 rxrpc_put_call(call
);
338 rxrpc_put_call(continue_call
);
339 _leave(" = %d", ret
);
343 _debug("copy error");
344 release_sock(&rx
->sk
);
345 rxrpc_put_call(call
);
347 rxrpc_put_call(continue_call
);
348 _leave(" = %d", ret
);
352 _debug("csum error");
353 release_sock(&rx
->sk
);
355 rxrpc_put_call(continue_call
);
357 if (!(flags
& MSG_PEEK
)) {
358 if (skb_dequeue(&rx
->sk
.sk_receive_queue
) != skb
)
361 skb_kill_datagram(&rx
->sk
, skb
, flags
);
362 rxrpc_put_call(call
);
366 ret
= sock_intr_errno(timeo
);
368 finish_wait(sk_sleep(&rx
->sk
), &wait
);
370 rxrpc_put_call(continue_call
);
373 _leave(" = %d [waitfail %d]", copied
, ret
);
379 * rxrpc_kernel_data_delivered - Record delivery of data message
380 * @skb: Message holding data
382 * Record the delivery of a data message. This permits RxRPC to keep its
383 * tracking correct. The socket buffer will be deleted.
385 void rxrpc_kernel_data_delivered(struct sk_buff
*skb
)
387 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
388 struct rxrpc_call
*call
= sp
->call
;
390 ASSERTCMP(ntohl(sp
->hdr
.seq
), >=, call
->rx_data_recv
);
391 ASSERTCMP(ntohl(sp
->hdr
.seq
), <=, call
->rx_data_recv
+ 1);
392 call
->rx_data_recv
= ntohl(sp
->hdr
.seq
);
394 ASSERTCMP(ntohl(sp
->hdr
.seq
), >, call
->rx_data_eaten
);
398 EXPORT_SYMBOL(rxrpc_kernel_data_delivered
);
401 * rxrpc_kernel_is_data_last - Determine if data message is last one
402 * @skb: Message holding data
404 * Determine if data message is last one for the parent call.
406 bool rxrpc_kernel_is_data_last(struct sk_buff
*skb
)
408 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
410 ASSERTCMP(skb
->mark
, ==, RXRPC_SKB_MARK_DATA
);
412 return sp
->hdr
.flags
& RXRPC_LAST_PACKET
;
415 EXPORT_SYMBOL(rxrpc_kernel_is_data_last
);
418 * rxrpc_kernel_get_abort_code - Get the abort code from an RxRPC abort message
419 * @skb: Message indicating an abort
421 * Get the abort code from an RxRPC abort message.
423 u32
rxrpc_kernel_get_abort_code(struct sk_buff
*skb
)
425 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
427 ASSERTCMP(skb
->mark
, ==, RXRPC_SKB_MARK_REMOTE_ABORT
);
429 return sp
->call
->abort_code
;
432 EXPORT_SYMBOL(rxrpc_kernel_get_abort_code
);
435 * rxrpc_kernel_get_error - Get the error number from an RxRPC error message
436 * @skb: Message indicating an error
438 * Get the error number from an RxRPC error message.
440 int rxrpc_kernel_get_error_number(struct sk_buff
*skb
)
442 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
447 EXPORT_SYMBOL(rxrpc_kernel_get_error_number
);