blob: 3b0becb1204156eff6753f2399ec09c40fd233b0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells17926a72007-04-26 15:48:28 -07002/* RxRPC recvmsg() implementation
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells17926a72007-04-26 15:48:28 -07006 */
7
Joe Perches9b6d5392016-06-02 12:08:52 -07008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
David Howells17926a72007-04-26 15:48:28 -070010#include <linux/net.h>
11#include <linux/skbuff.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040012#include <linux/export.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010013#include <linux/sched/signal.h>
14
David Howells17926a72007-04-26 15:48:28 -070015#include <net/sock.h>
16#include <net/af_rxrpc.h>
17#include "ar-internal.h"
18
19/*
David Howells248f2192016-09-08 11:10:12 +010020 * Post a call for attention by the socket or kernel service. Further
21 * notifications are suppressed by putting recvmsg_link on a dummy queue.
22 */
23void rxrpc_notify_socket(struct rxrpc_call *call)
24{
25 struct rxrpc_sock *rx;
26 struct sock *sk;
27
28 _enter("%d", call->debug_id);
29
30 if (!list_empty(&call->recvmsg_link))
31 return;
32
33 rcu_read_lock();
34
35 rx = rcu_dereference(call->socket);
36 sk = &rx->sk;
37 if (rx && sk->sk_state < RXRPC_CLOSE) {
38 if (call->notify_rx) {
David Howells20acbd92017-11-02 15:06:08 +000039 spin_lock_bh(&call->notify_lock);
David Howells248f2192016-09-08 11:10:12 +010040 call->notify_rx(sk, call, call->user_call_ID);
David Howells20acbd92017-11-02 15:06:08 +000041 spin_unlock_bh(&call->notify_lock);
David Howells248f2192016-09-08 11:10:12 +010042 } else {
43 write_lock_bh(&rx->recvmsg_lock);
44 if (list_empty(&call->recvmsg_link)) {
45 rxrpc_get_call(call, rxrpc_call_got);
46 list_add_tail(&call->recvmsg_link, &rx->recvmsg_q);
47 }
48 write_unlock_bh(&rx->recvmsg_lock);
49
50 if (!sock_flag(sk, SOCK_DEAD)) {
51 _debug("call %ps", sk->sk_data_ready);
52 sk->sk_data_ready(sk);
53 }
54 }
55 }
56
57 rcu_read_unlock();
58 _leave("");
59}
60
61/*
62 * Pass a call terminating message to userspace.
63 */
64static int rxrpc_recvmsg_term(struct rxrpc_call *call, struct msghdr *msg)
65{
66 u32 tmp = 0;
67 int ret;
68
69 switch (call->completion) {
70 case RXRPC_CALL_SUCCEEDED:
71 ret = 0;
72 if (rxrpc_is_service_call(call))
73 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ACK, 0, &tmp);
74 break;
75 case RXRPC_CALL_REMOTELY_ABORTED:
76 tmp = call->abort_code;
77 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ABORT, 4, &tmp);
78 break;
79 case RXRPC_CALL_LOCALLY_ABORTED:
80 tmp = call->abort_code;
81 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ABORT, 4, &tmp);
82 break;
83 case RXRPC_CALL_NETWORK_ERROR:
David Howells3a927892017-04-06 10:11:56 +010084 tmp = -call->error;
David Howells248f2192016-09-08 11:10:12 +010085 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_NET_ERROR, 4, &tmp);
86 break;
87 case RXRPC_CALL_LOCAL_ERROR:
David Howells3a927892017-04-06 10:11:56 +010088 tmp = -call->error;
David Howells248f2192016-09-08 11:10:12 +010089 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_LOCAL_ERROR, 4, &tmp);
90 break;
91 default:
92 pr_err("Invalid terminal call state %u\n", call->state);
93 BUG();
94 break;
95 }
96
David Howells84997902016-09-17 11:13:31 +010097 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_terminal, call->rx_hard_ack,
98 call->rx_pkt_offset, call->rx_pkt_len, ret);
David Howells248f2192016-09-08 11:10:12 +010099 return ret;
100}
101
102/*
103 * Pass back notification of a new call. The call is added to the
104 * to-be-accepted list. This means that the next call to be accepted might not
105 * be the last call seen awaiting acceptance, but unless we leave this on the
106 * front of the queue and block all other messages until someone gives us a
107 * user_ID for it, there's not a lot we can do.
108 */
109static int rxrpc_recvmsg_new_call(struct rxrpc_sock *rx,
110 struct rxrpc_call *call,
111 struct msghdr *msg, int flags)
112{
113 int tmp = 0, ret;
114
115 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_NEW_CALL, 0, &tmp);
116
117 if (ret == 0 && !(flags & MSG_PEEK)) {
118 _debug("to be accepted");
119 write_lock_bh(&rx->recvmsg_lock);
120 list_del_init(&call->recvmsg_link);
121 write_unlock_bh(&rx->recvmsg_lock);
122
David Howells3432a752016-09-13 09:05:14 +0100123 rxrpc_get_call(call, rxrpc_call_got);
David Howells248f2192016-09-08 11:10:12 +0100124 write_lock(&rx->call_lock);
125 list_add_tail(&call->accept_link, &rx->to_be_accepted);
126 write_unlock(&rx->call_lock);
127 }
128
David Howells84997902016-09-17 11:13:31 +0100129 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_to_be_accepted, 1, 0, 0, ret);
David Howells248f2192016-09-08 11:10:12 +0100130 return ret;
131}
132
133/*
134 * End the packet reception phase.
135 */
David Howellsb69d94d2016-09-24 18:05:27 +0100136static void rxrpc_end_rx_phase(struct rxrpc_call *call, rxrpc_serial_t serial)
David Howells248f2192016-09-08 11:10:12 +0100137{
138 _enter("%d,%s", call->debug_id, rxrpc_call_states[call->state]);
139
David Howells58dc63c2016-09-17 10:49:13 +0100140 trace_rxrpc_receive(call, rxrpc_receive_end, 0, call->rx_top);
David Howells816c9fc2016-09-17 10:49:11 +0100141 ASSERTCMP(call->rx_hard_ack, ==, call->rx_top);
142
David Howells248f2192016-09-08 11:10:12 +0100143 if (call->state == RXRPC_CALL_CLIENT_RECV_REPLY) {
David Howellse8c3af62019-08-09 15:20:41 +0100144 rxrpc_propose_ACK(call, RXRPC_ACK_IDLE, serial, false, true,
David Howells9c7ad432016-09-23 13:50:40 +0100145 rxrpc_propose_ack_terminal_ack);
David Howellsa71a26512018-07-23 17:18:37 +0100146 //rxrpc_send_ack_packet(call, false, NULL);
David Howells248f2192016-09-08 11:10:12 +0100147 }
148
149 write_lock_bh(&call->state_lock);
150
151 switch (call->state) {
152 case RXRPC_CALL_CLIENT_RECV_REPLY:
153 __rxrpc_call_completed(call);
David Howells9749fd22016-10-06 08:11:50 +0100154 write_unlock_bh(&call->state_lock);
David Howells248f2192016-09-08 11:10:12 +0100155 break;
156
157 case RXRPC_CALL_SERVER_RECV_REQUEST:
David Howells71f3ca42016-09-17 10:49:14 +0100158 call->tx_phase = true;
David Howells248f2192016-09-08 11:10:12 +0100159 call->state = RXRPC_CALL_SERVER_ACK_REQUEST;
David Howellsa158bdd2017-11-24 10:18:41 +0000160 call->expect_req_by = jiffies + MAX_JIFFY_OFFSET;
David Howells9749fd22016-10-06 08:11:50 +0100161 write_unlock_bh(&call->state_lock);
David Howellse8c3af62019-08-09 15:20:41 +0100162 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial, false, true,
David Howells9749fd22016-10-06 08:11:50 +0100163 rxrpc_propose_ack_processing_op);
David Howells248f2192016-09-08 11:10:12 +0100164 break;
165 default:
David Howells9749fd22016-10-06 08:11:50 +0100166 write_unlock_bh(&call->state_lock);
David Howells248f2192016-09-08 11:10:12 +0100167 break;
168 }
David Howells248f2192016-09-08 11:10:12 +0100169}
170
171/*
172 * Discard a packet we've used up and advance the Rx window by one.
173 */
174static void rxrpc_rotate_rx_window(struct rxrpc_call *call)
175{
David Howells816c9fc2016-09-17 10:49:11 +0100176 struct rxrpc_skb_priv *sp;
David Howells248f2192016-09-08 11:10:12 +0100177 struct sk_buff *skb;
David Howells58dc63c2016-09-17 10:49:13 +0100178 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +0100179 rxrpc_seq_t hard_ack, top;
David Howellse2de6c402019-08-27 09:51:30 +0100180 bool last = false;
181 u8 subpacket;
David Howells248f2192016-09-08 11:10:12 +0100182 int ix;
183
184 _enter("%d", call->debug_id);
185
186 hard_ack = call->rx_hard_ack;
187 top = smp_load_acquire(&call->rx_top);
188 ASSERT(before(hard_ack, top));
189
190 hard_ack++;
191 ix = hard_ack & RXRPC_RXTX_BUFF_MASK;
192 skb = call->rxtx_buffer[ix];
David Howells987db9f2019-08-19 09:25:38 +0100193 rxrpc_see_skb(skb, rxrpc_skb_rotated);
David Howells816c9fc2016-09-17 10:49:11 +0100194 sp = rxrpc_skb(skb);
David Howellse2de6c402019-08-27 09:51:30 +0100195
196 subpacket = call->rxtx_annotations[ix] & RXRPC_RX_ANNO_SUBPACKET;
197 serial = sp->hdr.serial + subpacket;
198
199 if (subpacket == sp->nr_subpackets - 1 &&
200 sp->rx_flags & RXRPC_SKB_INCL_LAST)
201 last = true;
David Howells58dc63c2016-09-17 10:49:13 +0100202
David Howells248f2192016-09-08 11:10:12 +0100203 call->rxtx_buffer[ix] = NULL;
204 call->rxtx_annotations[ix] = 0;
205 /* Barrier against rxrpc_input_data(). */
206 smp_store_release(&call->rx_hard_ack, hard_ack);
207
David Howells987db9f2019-08-19 09:25:38 +0100208 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howells248f2192016-09-08 11:10:12 +0100209
David Howells58dc63c2016-09-17 10:49:13 +0100210 trace_rxrpc_receive(call, rxrpc_receive_rotate, serial, hard_ack);
David Howellse2de6c402019-08-27 09:51:30 +0100211 if (last) {
David Howellsb69d94d2016-09-24 18:05:27 +0100212 rxrpc_end_rx_phase(call, serial);
David Howells805b21b2016-09-24 18:05:26 +0100213 } else {
214 /* Check to see if there's an ACK that needs sending. */
215 if (after_eq(hard_ack, call->ackr_consumed + 2) ||
216 after_eq(top, call->ackr_seen + 2) ||
217 (hard_ack == top && after(hard_ack, call->ackr_consumed)))
David Howellse8c3af62019-08-09 15:20:41 +0100218 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial,
David Howells8637aba2017-11-24 10:18:41 +0000219 true, true,
David Howells805b21b2016-09-24 18:05:26 +0100220 rxrpc_propose_ack_rotate_rx);
David Howells8637aba2017-11-24 10:18:41 +0000221 if (call->ackr_reason && call->ackr_reason != RXRPC_ACK_DELAY)
David Howellsbd1fdf82017-11-24 10:18:42 +0000222 rxrpc_send_ack_packet(call, false, NULL);
David Howells805b21b2016-09-24 18:05:26 +0100223 }
David Howells248f2192016-09-08 11:10:12 +0100224}
225
226/*
227 * Decrypt and verify a (sub)packet. The packet's length may be changed due to
228 * padding, but if this is the case, the packet length will be resident in the
229 * socket buffer. Note that we can't modify the master skb info as the skb may
230 * be the home to multiple subpackets.
231 */
232static int rxrpc_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
233 u8 annotation,
234 unsigned int offset, unsigned int len)
235{
236 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
237 rxrpc_seq_t seq = sp->hdr.seq;
238 u16 cksum = sp->hdr.cksum;
David Howellse2de6c402019-08-27 09:51:30 +0100239 u8 subpacket = annotation & RXRPC_RX_ANNO_SUBPACKET;
David Howells248f2192016-09-08 11:10:12 +0100240
241 _enter("");
242
243 /* For all but the head jumbo subpacket, the security checksum is in a
244 * jumbo header immediately prior to the data.
245 */
David Howellse2de6c402019-08-27 09:51:30 +0100246 if (subpacket > 0) {
David Howells248f2192016-09-08 11:10:12 +0100247 __be16 tmp;
248 if (skb_copy_bits(skb, offset - 2, &tmp, 2) < 0)
249 BUG();
250 cksum = ntohs(tmp);
David Howellse2de6c402019-08-27 09:51:30 +0100251 seq += subpacket;
David Howells248f2192016-09-08 11:10:12 +0100252 }
253
254 return call->conn->security->verify_packet(call, skb, offset, len,
255 seq, cksum);
256}
257
258/*
259 * Locate the data within a packet. This is complicated by:
260 *
261 * (1) An skb may contain a jumbo packet - so we have to find the appropriate
262 * subpacket.
263 *
264 * (2) The (sub)packets may be encrypted and, if so, the encrypted portion
265 * contains an extra header which includes the true length of the data,
266 * excluding any encrypted padding.
267 */
268static int rxrpc_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
269 u8 *_annotation,
270 unsigned int *_offset, unsigned int *_len)
271{
David Howellse2de6c402019-08-27 09:51:30 +0100272 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells775e5b72016-09-30 13:26:03 +0100273 unsigned int offset = sizeof(struct rxrpc_wire_header);
Colin Ian King650b4ec2018-03-12 17:25:38 +0000274 unsigned int len;
David Howells248f2192016-09-08 11:10:12 +0100275 int ret;
276 u8 annotation = *_annotation;
David Howellse2de6c402019-08-27 09:51:30 +0100277 u8 subpacket = annotation & RXRPC_RX_ANNO_SUBPACKET;
David Howells248f2192016-09-08 11:10:12 +0100278
David Howells248f2192016-09-08 11:10:12 +0100279 /* Locate the subpacket */
David Howellse2de6c402019-08-27 09:51:30 +0100280 offset += subpacket * RXRPC_JUMBO_SUBPKTLEN;
David Howells775e5b72016-09-30 13:26:03 +0100281 len = skb->len - offset;
David Howellse2de6c402019-08-27 09:51:30 +0100282 if (subpacket < sp->nr_subpackets - 1)
283 len = RXRPC_JUMBO_DATALEN;
David Howells248f2192016-09-08 11:10:12 +0100284
285 if (!(annotation & RXRPC_RX_ANNO_VERIFIED)) {
286 ret = rxrpc_verify_packet(call, skb, annotation, offset, len);
287 if (ret < 0)
288 return ret;
289 *_annotation |= RXRPC_RX_ANNO_VERIFIED;
290 }
291
292 *_offset = offset;
293 *_len = len;
294 call->conn->security->locate_data(call, skb, _offset, _len);
295 return 0;
296}
297
298/*
299 * Deliver messages to a call. This keeps processing packets until the buffer
300 * is filled and we find either more DATA (returns 0) or the end of the DATA
301 * (returns 1). If more packets are required, it returns -EAGAIN.
302 */
303static int rxrpc_recvmsg_data(struct socket *sock, struct rxrpc_call *call,
304 struct msghdr *msg, struct iov_iter *iter,
305 size_t len, int flags, size_t *_offset)
306{
307 struct rxrpc_skb_priv *sp;
308 struct sk_buff *skb;
David Howellse2de6c402019-08-27 09:51:30 +0100309 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +0100310 rxrpc_seq_t hard_ack, top, seq;
311 size_t remain;
312 bool last;
313 unsigned int rx_pkt_offset, rx_pkt_len;
David Howells816c9fc2016-09-17 10:49:11 +0100314 int ix, copy, ret = -EAGAIN, ret2;
David Howells248f2192016-09-08 11:10:12 +0100315
David Howellsd0b35a42018-07-23 17:18:38 +0100316 if (test_and_clear_bit(RXRPC_CALL_RX_UNDERRUN, &call->flags) &&
317 call->ackr_reason)
318 rxrpc_send_ack_packet(call, false, NULL);
319
David Howells248f2192016-09-08 11:10:12 +0100320 rx_pkt_offset = call->rx_pkt_offset;
321 rx_pkt_len = call->rx_pkt_len;
322
David Howells816c9fc2016-09-17 10:49:11 +0100323 if (call->state >= RXRPC_CALL_SERVER_ACK_REQUEST) {
324 seq = call->rx_hard_ack;
325 ret = 1;
326 goto done;
327 }
328
David Howells248f2192016-09-08 11:10:12 +0100329 /* Barriers against rxrpc_input_data(). */
330 hard_ack = call->rx_hard_ack;
David Howellsd7e15832017-02-24 21:57:13 +0000331 seq = hard_ack + 1;
332 while (top = smp_load_acquire(&call->rx_top),
333 before_eq(seq, top)
334 ) {
David Howells248f2192016-09-08 11:10:12 +0100335 ix = seq & RXRPC_RXTX_BUFF_MASK;
336 skb = call->rxtx_buffer[ix];
David Howells84997902016-09-17 11:13:31 +0100337 if (!skb) {
338 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_hole, seq,
339 rx_pkt_offset, rx_pkt_len, 0);
David Howells248f2192016-09-08 11:10:12 +0100340 break;
David Howells84997902016-09-17 11:13:31 +0100341 }
David Howells248f2192016-09-08 11:10:12 +0100342 smp_rmb();
David Howells987db9f2019-08-19 09:25:38 +0100343 rxrpc_see_skb(skb, rxrpc_skb_seen);
David Howells248f2192016-09-08 11:10:12 +0100344 sp = rxrpc_skb(skb);
345
David Howellse2de6c402019-08-27 09:51:30 +0100346 if (!(flags & MSG_PEEK)) {
347 serial = sp->hdr.serial;
348 serial += call->rxtx_annotations[ix] & RXRPC_RX_ANNO_SUBPACKET;
David Howells58dc63c2016-09-17 10:49:13 +0100349 trace_rxrpc_receive(call, rxrpc_receive_front,
David Howellse2de6c402019-08-27 09:51:30 +0100350 serial, seq);
351 }
David Howells58dc63c2016-09-17 10:49:13 +0100352
David Howells248f2192016-09-08 11:10:12 +0100353 if (msg)
354 sock_recv_timestamp(msg, sock->sk, skb);
355
David Howells2e2ea512016-09-17 10:49:11 +0100356 if (rx_pkt_offset == 0) {
David Howells816c9fc2016-09-17 10:49:11 +0100357 ret2 = rxrpc_locate_data(call, skb,
358 &call->rxtx_annotations[ix],
359 &rx_pkt_offset, &rx_pkt_len);
David Howells84997902016-09-17 11:13:31 +0100360 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_next, seq,
361 rx_pkt_offset, rx_pkt_len, ret2);
David Howells816c9fc2016-09-17 10:49:11 +0100362 if (ret2 < 0) {
363 ret = ret2;
David Howells2e2ea512016-09-17 10:49:11 +0100364 goto out;
David Howells816c9fc2016-09-17 10:49:11 +0100365 }
David Howells84997902016-09-17 11:13:31 +0100366 } else {
367 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_cont, seq,
368 rx_pkt_offset, rx_pkt_len, 0);
David Howells2e2ea512016-09-17 10:49:11 +0100369 }
David Howells248f2192016-09-08 11:10:12 +0100370
371 /* We have to handle short, empty and used-up DATA packets. */
372 remain = len - *_offset;
373 copy = rx_pkt_len;
374 if (copy > remain)
375 copy = remain;
376 if (copy > 0) {
David Howells816c9fc2016-09-17 10:49:11 +0100377 ret2 = skb_copy_datagram_iter(skb, rx_pkt_offset, iter,
378 copy);
379 if (ret2 < 0) {
380 ret = ret2;
David Howells248f2192016-09-08 11:10:12 +0100381 goto out;
David Howells816c9fc2016-09-17 10:49:11 +0100382 }
David Howells248f2192016-09-08 11:10:12 +0100383
384 /* handle piecemeal consumption of data packets */
David Howells248f2192016-09-08 11:10:12 +0100385 rx_pkt_offset += copy;
386 rx_pkt_len -= copy;
387 *_offset += copy;
388 }
389
390 if (rx_pkt_len > 0) {
David Howells84997902016-09-17 11:13:31 +0100391 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_full, seq,
392 rx_pkt_offset, rx_pkt_len, 0);
David Howells248f2192016-09-08 11:10:12 +0100393 ASSERTCMP(*_offset, ==, len);
David Howells816c9fc2016-09-17 10:49:11 +0100394 ret = 0;
David Howells248f2192016-09-08 11:10:12 +0100395 break;
396 }
397
398 /* The whole packet has been transferred. */
399 last = sp->hdr.flags & RXRPC_LAST_PACKET;
400 if (!(flags & MSG_PEEK))
401 rxrpc_rotate_rx_window(call);
402 rx_pkt_offset = 0;
403 rx_pkt_len = 0;
404
David Howells816c9fc2016-09-17 10:49:11 +0100405 if (last) {
406 ASSERTCMP(seq, ==, READ_ONCE(call->rx_top));
407 ret = 1;
408 goto out;
409 }
David Howellsd7e15832017-02-24 21:57:13 +0000410
411 seq++;
David Howells248f2192016-09-08 11:10:12 +0100412 }
413
David Howells248f2192016-09-08 11:10:12 +0100414out:
415 if (!(flags & MSG_PEEK)) {
416 call->rx_pkt_offset = rx_pkt_offset;
417 call->rx_pkt_len = rx_pkt_len;
418 }
David Howells816c9fc2016-09-17 10:49:11 +0100419done:
David Howells84997902016-09-17 11:13:31 +0100420 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_data_return, seq,
421 rx_pkt_offset, rx_pkt_len, ret);
David Howellsd0b35a42018-07-23 17:18:38 +0100422 if (ret == -EAGAIN)
423 set_bit(RXRPC_CALL_RX_UNDERRUN, &call->flags);
David Howells248f2192016-09-08 11:10:12 +0100424 return ret;
425}
426
427/*
428 * Receive a message from an RxRPC socket
David Howells17926a72007-04-26 15:48:28 -0700429 * - we need to be careful about two or more threads calling recvmsg
430 * simultaneously
431 */
Ying Xue1b784142015-03-02 15:37:48 +0800432int rxrpc_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
433 int flags)
David Howells17926a72007-04-26 15:48:28 -0700434{
David Howells248f2192016-09-08 11:10:12 +0100435 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700436 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
David Howells248f2192016-09-08 11:10:12 +0100437 struct list_head *l;
438 size_t copied = 0;
David Howells17926a72007-04-26 15:48:28 -0700439 long timeo;
David Howells248f2192016-09-08 11:10:12 +0100440 int ret;
David Howells17926a72007-04-26 15:48:28 -0700441
442 DEFINE_WAIT(wait);
443
David Howells84997902016-09-17 11:13:31 +0100444 trace_rxrpc_recvmsg(NULL, rxrpc_recvmsg_enter, 0, 0, 0, 0);
David Howells17926a72007-04-26 15:48:28 -0700445
446 if (flags & (MSG_OOB | MSG_TRUNC))
447 return -EOPNOTSUPP;
448
David Howells17926a72007-04-26 15:48:28 -0700449 timeo = sock_rcvtimeo(&rx->sk, flags & MSG_DONTWAIT);
David Howells17926a72007-04-26 15:48:28 -0700450
David Howells248f2192016-09-08 11:10:12 +0100451try_again:
David Howells17926a72007-04-26 15:48:28 -0700452 lock_sock(&rx->sk);
453
David Howells248f2192016-09-08 11:10:12 +0100454 /* Return immediately if a client socket has no outstanding calls */
455 if (RB_EMPTY_ROOT(&rx->calls) &&
456 list_empty(&rx->recvmsg_q) &&
457 rx->sk.sk_state != RXRPC_SERVER_LISTENING) {
458 release_sock(&rx->sk);
459 return -ENODATA;
460 }
461
462 if (list_empty(&rx->recvmsg_q)) {
463 ret = -EWOULDBLOCK;
David Howells84997902016-09-17 11:13:31 +0100464 if (timeo == 0) {
465 call = NULL;
David Howells248f2192016-09-08 11:10:12 +0100466 goto error_no_call;
David Howells84997902016-09-17 11:13:31 +0100467 }
David Howells248f2192016-09-08 11:10:12 +0100468
469 release_sock(&rx->sk);
470
471 /* Wait for something to happen */
472 prepare_to_wait_exclusive(sk_sleep(&rx->sk), &wait,
473 TASK_INTERRUPTIBLE);
474 ret = sock_error(&rx->sk);
475 if (ret)
476 goto wait_error;
477
478 if (list_empty(&rx->recvmsg_q)) {
479 if (signal_pending(current))
480 goto wait_interrupted;
David Howells84997902016-09-17 11:13:31 +0100481 trace_rxrpc_recvmsg(NULL, rxrpc_recvmsg_wait,
482 0, 0, 0, 0);
David Howells248f2192016-09-08 11:10:12 +0100483 timeo = schedule_timeout(timeo);
David Howells17926a72007-04-26 15:48:28 -0700484 }
David Howells248f2192016-09-08 11:10:12 +0100485 finish_wait(sk_sleep(&rx->sk), &wait);
486 goto try_again;
487 }
David Howells17926a72007-04-26 15:48:28 -0700488
David Howells248f2192016-09-08 11:10:12 +0100489 /* Find the next call and dequeue it if we're not just peeking. If we
490 * do dequeue it, that comes with a ref that we will need to release.
491 */
492 write_lock_bh(&rx->recvmsg_lock);
493 l = rx->recvmsg_q.next;
494 call = list_entry(l, struct rxrpc_call, recvmsg_link);
495 if (!(flags & MSG_PEEK))
496 list_del_init(&call->recvmsg_link);
497 else
David Howellsfff724292016-09-07 14:34:21 +0100498 rxrpc_get_call(call, rxrpc_call_got);
David Howells248f2192016-09-08 11:10:12 +0100499 write_unlock_bh(&rx->recvmsg_lock);
David Howells17926a72007-04-26 15:48:28 -0700500
David Howells84997902016-09-17 11:13:31 +0100501 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_dequeue, 0, 0, 0, 0);
David Howells17926a72007-04-26 15:48:28 -0700502
David Howells540b1c42017-02-27 15:43:06 +0000503 /* We're going to drop the socket lock, so we need to lock the call
504 * against interference by sendmsg.
505 */
506 if (!mutex_trylock(&call->user_mutex)) {
507 ret = -EWOULDBLOCK;
508 if (flags & MSG_DONTWAIT)
509 goto error_requeue_call;
510 ret = -ERESTARTSYS;
511 if (mutex_lock_interruptible(&call->user_mutex) < 0)
512 goto error_requeue_call;
513 }
514
515 release_sock(&rx->sk);
516
David Howells248f2192016-09-08 11:10:12 +0100517 if (test_bit(RXRPC_CALL_RELEASED, &call->flags))
David Howells17926a72007-04-26 15:48:28 -0700518 BUG();
David Howells248f2192016-09-08 11:10:12 +0100519
520 if (test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
521 if (flags & MSG_CMSG_COMPAT) {
522 unsigned int id32 = call->user_call_ID;
523
524 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_USER_CALL_ID,
525 sizeof(unsigned int), &id32);
526 } else {
David Howellsa16b8d02018-02-15 22:59:00 +0000527 unsigned long idl = call->user_call_ID;
528
David Howells248f2192016-09-08 11:10:12 +0100529 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_USER_CALL_ID,
David Howellsa16b8d02018-02-15 22:59:00 +0000530 sizeof(unsigned long), &idl);
David Howellsf5c17aa2016-08-30 09:49:28 +0100531 }
David Howells248f2192016-09-08 11:10:12 +0100532 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000533 goto error_unlock_call;
David Howells248f2192016-09-08 11:10:12 +0100534 }
535
536 if (msg->msg_name) {
David Howells68d6d1a2017-06-05 14:30:49 +0100537 struct sockaddr_rxrpc *srx = msg->msg_name;
538 size_t len = sizeof(call->peer->srx);
539
540 memcpy(msg->msg_name, &call->peer->srx, len);
541 srx->srx_service = call->service_id;
David Howells248f2192016-09-08 11:10:12 +0100542 msg->msg_namelen = len;
543 }
544
David Howells146d8fe2017-03-04 00:01:41 +0000545 switch (READ_ONCE(call->state)) {
David Howells248f2192016-09-08 11:10:12 +0100546 case RXRPC_CALL_SERVER_ACCEPTING:
547 ret = rxrpc_recvmsg_new_call(rx, call, msg, flags);
David Howells17926a72007-04-26 15:48:28 -0700548 break;
David Howells248f2192016-09-08 11:10:12 +0100549 case RXRPC_CALL_CLIENT_RECV_REPLY:
550 case RXRPC_CALL_SERVER_RECV_REQUEST:
551 case RXRPC_CALL_SERVER_ACK_REQUEST:
552 ret = rxrpc_recvmsg_data(sock, call, msg, &msg->msg_iter, len,
553 flags, &copied);
554 if (ret == -EAGAIN)
555 ret = 0;
David Howells33b603f2016-09-13 22:36:21 +0100556
557 if (after(call->rx_top, call->rx_hard_ack) &&
558 call->rxtx_buffer[(call->rx_hard_ack + 1) & RXRPC_RXTX_BUFF_MASK])
559 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700560 break;
561 default:
David Howells248f2192016-09-08 11:10:12 +0100562 ret = 0;
David Howells17926a72007-04-26 15:48:28 -0700563 break;
564 }
565
566 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000567 goto error_unlock_call;
David Howells17926a72007-04-26 15:48:28 -0700568
David Howells248f2192016-09-08 11:10:12 +0100569 if (call->state == RXRPC_CALL_COMPLETE) {
570 ret = rxrpc_recvmsg_term(call, msg);
571 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000572 goto error_unlock_call;
David Howells248f2192016-09-08 11:10:12 +0100573 if (!(flags & MSG_PEEK))
574 rxrpc_release_call(rx, call);
575 msg->msg_flags |= MSG_EOR;
576 ret = 1;
David Howells17926a72007-04-26 15:48:28 -0700577 }
578
David Howells248f2192016-09-08 11:10:12 +0100579 if (ret == 0)
580 msg->msg_flags |= MSG_MORE;
581 else
582 msg->msg_flags &= ~MSG_MORE;
583 ret = copied;
David Howells17926a72007-04-26 15:48:28 -0700584
David Howells540b1c42017-02-27 15:43:06 +0000585error_unlock_call:
586 mutex_unlock(&call->user_mutex);
David Howellsfff724292016-09-07 14:34:21 +0100587 rxrpc_put_call(call, rxrpc_call_put);
David Howells540b1c42017-02-27 15:43:06 +0000588 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_return, 0, 0, 0, ret);
589 return ret;
590
591error_requeue_call:
592 if (!(flags & MSG_PEEK)) {
593 write_lock_bh(&rx->recvmsg_lock);
594 list_add(&call->recvmsg_link, &rx->recvmsg_q);
595 write_unlock_bh(&rx->recvmsg_lock);
596 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_requeue, 0, 0, 0, 0);
597 } else {
598 rxrpc_put_call(call, rxrpc_call_put);
599 }
David Howells248f2192016-09-08 11:10:12 +0100600error_no_call:
601 release_sock(&rx->sk);
Eric Dumazet6dce3c22019-02-04 08:36:06 -0800602error_trace:
David Howells84997902016-09-17 11:13:31 +0100603 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_return, 0, 0, 0, ret);
David Howells17926a72007-04-26 15:48:28 -0700604 return ret;
605
David Howells17926a72007-04-26 15:48:28 -0700606wait_interrupted:
607 ret = sock_intr_errno(timeo);
608wait_error:
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000609 finish_wait(sk_sleep(&rx->sk), &wait);
David Howells84997902016-09-17 11:13:31 +0100610 call = NULL;
Eric Dumazet6dce3c22019-02-04 08:36:06 -0800611 goto error_trace;
David Howellsd0016482016-08-30 20:42:14 +0100612}
David Howells651350d2007-04-26 15:50:17 -0700613
614/**
David Howellsd0016482016-08-30 20:42:14 +0100615 * rxrpc_kernel_recv_data - Allow a kernel service to receive data/info
616 * @sock: The socket that the call exists on
617 * @call: The call to send data through
David Howellseb9950e2018-08-03 17:06:56 +0100618 * @iter: The buffer to receive into
David Howellsd0016482016-08-30 20:42:14 +0100619 * @want_more: True if more data is expected to be read
620 * @_abort: Where the abort code is stored if -ECONNABORTED is returned
David Howellsa68f4a22017-10-18 11:36:39 +0100621 * @_service: Where to store the actual service ID (may be upgraded)
David Howells651350d2007-04-26 15:50:17 -0700622 *
David Howellsd0016482016-08-30 20:42:14 +0100623 * Allow a kernel service to receive data and pick up information about the
624 * state of a call. Returns 0 if got what was asked for and there's more
625 * available, 1 if we got what was asked for and we're at the end of the data
626 * and -EAGAIN if we need more data.
627 *
628 * Note that we may return -EAGAIN to drain empty packets at the end of the
629 * data, even if we've already copied over the requested data.
630 *
David Howellsd0016482016-08-30 20:42:14 +0100631 * *_abort should also be initialised to 0.
David Howells651350d2007-04-26 15:50:17 -0700632 */
David Howellsd0016482016-08-30 20:42:14 +0100633int rxrpc_kernel_recv_data(struct socket *sock, struct rxrpc_call *call,
David Howellseb9950e2018-08-03 17:06:56 +0100634 struct iov_iter *iter,
David Howellsa68f4a22017-10-18 11:36:39 +0100635 bool want_more, u32 *_abort, u16 *_service)
David Howells651350d2007-04-26 15:50:17 -0700636{
David Howellseb9950e2018-08-03 17:06:56 +0100637 size_t offset = 0;
David Howellsd0016482016-08-30 20:42:14 +0100638 int ret;
David Howells651350d2007-04-26 15:50:17 -0700639
David Howellseb9950e2018-08-03 17:06:56 +0100640 _enter("{%d,%s},%zu,%d",
David Howells248f2192016-09-08 11:10:12 +0100641 call->debug_id, rxrpc_call_states[call->state],
David Howellseb9950e2018-08-03 17:06:56 +0100642 iov_iter_count(iter), want_more);
David Howellsd0016482016-08-30 20:42:14 +0100643
David Howellsd0016482016-08-30 20:42:14 +0100644 ASSERTCMP(call->state, !=, RXRPC_CALL_SERVER_ACCEPTING);
645
David Howells540b1c42017-02-27 15:43:06 +0000646 mutex_lock(&call->user_mutex);
David Howellsd0016482016-08-30 20:42:14 +0100647
David Howells146d8fe2017-03-04 00:01:41 +0000648 switch (READ_ONCE(call->state)) {
David Howellsd0016482016-08-30 20:42:14 +0100649 case RXRPC_CALL_CLIENT_RECV_REPLY:
650 case RXRPC_CALL_SERVER_RECV_REQUEST:
651 case RXRPC_CALL_SERVER_ACK_REQUEST:
David Howellseb9950e2018-08-03 17:06:56 +0100652 ret = rxrpc_recvmsg_data(sock, call, NULL, iter,
653 iov_iter_count(iter), 0,
654 &offset);
David Howellsd0016482016-08-30 20:42:14 +0100655 if (ret < 0)
656 goto out;
657
658 /* We can only reach here with a partially full buffer if we
659 * have reached the end of the data. We must otherwise have a
660 * full buffer or have been given -EAGAIN.
661 */
662 if (ret == 1) {
David Howellseb9950e2018-08-03 17:06:56 +0100663 if (iov_iter_count(iter) > 0)
David Howellsd0016482016-08-30 20:42:14 +0100664 goto short_data;
665 if (!want_more)
666 goto read_phase_complete;
667 ret = 0;
668 goto out;
669 }
670
671 if (!want_more)
672 goto excess_data;
673 goto out;
674
675 case RXRPC_CALL_COMPLETE:
676 goto call_complete;
677
678 default:
David Howellsd0016482016-08-30 20:42:14 +0100679 ret = -EINPROGRESS;
680 goto out;
681 }
682
683read_phase_complete:
684 ret = 1;
685out:
David Howellsd0b35a42018-07-23 17:18:38 +0100686 switch (call->ackr_reason) {
687 case RXRPC_ACK_IDLE:
688 break;
689 case RXRPC_ACK_DELAY:
690 if (ret != -EAGAIN)
691 break;
692 /* Fall through */
693 default:
694 rxrpc_send_ack_packet(call, false, NULL);
695 }
696
David Howellsa68f4a22017-10-18 11:36:39 +0100697 if (_service)
698 *_service = call->service_id;
David Howells540b1c42017-02-27 15:43:06 +0000699 mutex_unlock(&call->user_mutex);
David Howellseb9950e2018-08-03 17:06:56 +0100700 _leave(" = %d [%zu,%d]", ret, iov_iter_count(iter), *_abort);
David Howellsd0016482016-08-30 20:42:14 +0100701 return ret;
702
703short_data:
David Howellsfb46f6e2017-04-06 10:12:00 +0100704 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("short_data"));
David Howellsd0016482016-08-30 20:42:14 +0100705 ret = -EBADMSG;
706 goto out;
707excess_data:
David Howellsfb46f6e2017-04-06 10:12:00 +0100708 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("excess_data"));
David Howellsd0016482016-08-30 20:42:14 +0100709 ret = -EMSGSIZE;
710 goto out;
711call_complete:
712 *_abort = call->abort_code;
David Howells3a927892017-04-06 10:11:56 +0100713 ret = call->error;
David Howellsd0016482016-08-30 20:42:14 +0100714 if (call->completion == RXRPC_CALL_SUCCEEDED) {
715 ret = 1;
David Howellseb9950e2018-08-03 17:06:56 +0100716 if (iov_iter_count(iter) > 0)
David Howellsd0016482016-08-30 20:42:14 +0100717 ret = -ECONNRESET;
718 }
719 goto out;
David Howells651350d2007-04-26 15:50:17 -0700720}
David Howellsd0016482016-08-30 20:42:14 +0100721EXPORT_SYMBOL(rxrpc_kernel_recv_data);
David Howells2070a3e2018-10-04 09:42:29 +0100722
723/**
724 * rxrpc_kernel_get_reply_time - Get timestamp on first reply packet
725 * @sock: The socket that the call exists on
726 * @call: The call to query
727 * @_ts: Where to put the timestamp
728 *
729 * Retrieve the timestamp from the first DATA packet of the reply if it is
730 * in the ring. Returns true if successful, false if not.
731 */
732bool rxrpc_kernel_get_reply_time(struct socket *sock, struct rxrpc_call *call,
733 ktime_t *_ts)
734{
735 struct sk_buff *skb;
736 rxrpc_seq_t hard_ack, top, seq;
737 bool success = false;
738
739 mutex_lock(&call->user_mutex);
740
741 if (READ_ONCE(call->state) != RXRPC_CALL_CLIENT_RECV_REPLY)
742 goto out;
743
744 hard_ack = call->rx_hard_ack;
745 if (hard_ack != 0)
746 goto out;
747
748 seq = hard_ack + 1;
749 top = smp_load_acquire(&call->rx_top);
750 if (after(seq, top))
751 goto out;
752
753 skb = call->rxtx_buffer[seq & RXRPC_RXTX_BUFF_MASK];
754 if (!skb)
755 goto out;
756
757 *_ts = skb_get_ktime(skb);
758 success = true;
759
760out:
761 mutex_unlock(&call->user_mutex);
762 return success;
763}
764EXPORT_SYMBOL(rxrpc_kernel_get_reply_time);