blob: 2c842851d72e512c12ad8aaf1a12d0441cf5de52 [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/*
David Howells3067bf82020-06-03 22:21:16 +010062 * Transition a call to the complete state.
63 */
64bool __rxrpc_set_call_completion(struct rxrpc_call *call,
65 enum rxrpc_call_completion compl,
66 u32 abort_code,
67 int error)
68{
69 if (call->state < RXRPC_CALL_COMPLETE) {
70 call->abort_code = abort_code;
71 call->error = error;
72 call->completion = compl,
73 call->state = RXRPC_CALL_COMPLETE;
74 trace_rxrpc_call_complete(call);
75 wake_up(&call->waitq);
David Howells5ac0d622020-06-03 22:21:16 +010076 rxrpc_notify_socket(call);
David Howells3067bf82020-06-03 22:21:16 +010077 return true;
78 }
79 return false;
80}
81
82bool rxrpc_set_call_completion(struct rxrpc_call *call,
83 enum rxrpc_call_completion compl,
84 u32 abort_code,
85 int error)
86{
David Howells5ac0d622020-06-03 22:21:16 +010087 bool ret = false;
David Howells3067bf82020-06-03 22:21:16 +010088
David Howells5ac0d622020-06-03 22:21:16 +010089 if (call->state < RXRPC_CALL_COMPLETE) {
90 write_lock_bh(&call->state_lock);
91 ret = __rxrpc_set_call_completion(call, compl, abort_code, error);
92 write_unlock_bh(&call->state_lock);
93 }
David Howells3067bf82020-06-03 22:21:16 +010094 return ret;
95}
96
97/*
98 * Record that a call successfully completed.
99 */
100bool __rxrpc_call_completed(struct rxrpc_call *call)
101{
102 return __rxrpc_set_call_completion(call, RXRPC_CALL_SUCCEEDED, 0, 0);
103}
104
105bool rxrpc_call_completed(struct rxrpc_call *call)
106{
David Howells5ac0d622020-06-03 22:21:16 +0100107 bool ret = false;
David Howells3067bf82020-06-03 22:21:16 +0100108
David Howells5ac0d622020-06-03 22:21:16 +0100109 if (call->state < RXRPC_CALL_COMPLETE) {
110 write_lock_bh(&call->state_lock);
111 ret = __rxrpc_call_completed(call);
112 write_unlock_bh(&call->state_lock);
113 }
David Howells3067bf82020-06-03 22:21:16 +0100114 return ret;
115}
116
117/*
118 * Record that a call is locally aborted.
119 */
120bool __rxrpc_abort_call(const char *why, struct rxrpc_call *call,
121 rxrpc_seq_t seq, u32 abort_code, int error)
122{
123 trace_rxrpc_abort(call->debug_id, why, call->cid, call->call_id, seq,
124 abort_code, error);
125 return __rxrpc_set_call_completion(call, RXRPC_CALL_LOCALLY_ABORTED,
126 abort_code, error);
127}
128
129bool rxrpc_abort_call(const char *why, struct rxrpc_call *call,
130 rxrpc_seq_t seq, u32 abort_code, int error)
131{
132 bool ret;
133
134 write_lock_bh(&call->state_lock);
135 ret = __rxrpc_abort_call(why, call, seq, abort_code, error);
136 write_unlock_bh(&call->state_lock);
137 return ret;
138}
139
140/*
David Howells248f2192016-09-08 11:10:12 +0100141 * Pass a call terminating message to userspace.
142 */
143static int rxrpc_recvmsg_term(struct rxrpc_call *call, struct msghdr *msg)
144{
145 u32 tmp = 0;
146 int ret;
147
148 switch (call->completion) {
149 case RXRPC_CALL_SUCCEEDED:
150 ret = 0;
151 if (rxrpc_is_service_call(call))
152 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ACK, 0, &tmp);
153 break;
154 case RXRPC_CALL_REMOTELY_ABORTED:
155 tmp = call->abort_code;
156 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ABORT, 4, &tmp);
157 break;
158 case RXRPC_CALL_LOCALLY_ABORTED:
159 tmp = call->abort_code;
160 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_ABORT, 4, &tmp);
161 break;
162 case RXRPC_CALL_NETWORK_ERROR:
David Howells3a927892017-04-06 10:11:56 +0100163 tmp = -call->error;
David Howells248f2192016-09-08 11:10:12 +0100164 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_NET_ERROR, 4, &tmp);
165 break;
166 case RXRPC_CALL_LOCAL_ERROR:
David Howells3a927892017-04-06 10:11:56 +0100167 tmp = -call->error;
David Howells248f2192016-09-08 11:10:12 +0100168 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_LOCAL_ERROR, 4, &tmp);
169 break;
170 default:
171 pr_err("Invalid terminal call state %u\n", call->state);
172 BUG();
173 break;
174 }
175
David Howells84997902016-09-17 11:13:31 +0100176 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_terminal, call->rx_hard_ack,
177 call->rx_pkt_offset, call->rx_pkt_len, ret);
David Howells248f2192016-09-08 11:10:12 +0100178 return ret;
179}
180
181/*
David Howells248f2192016-09-08 11:10:12 +0100182 * End the packet reception phase.
183 */
David Howellsb69d94d2016-09-24 18:05:27 +0100184static void rxrpc_end_rx_phase(struct rxrpc_call *call, rxrpc_serial_t serial)
David Howells248f2192016-09-08 11:10:12 +0100185{
186 _enter("%d,%s", call->debug_id, rxrpc_call_states[call->state]);
187
David Howells58dc63c2016-09-17 10:49:13 +0100188 trace_rxrpc_receive(call, rxrpc_receive_end, 0, call->rx_top);
David Howells816c9fc2016-09-17 10:49:11 +0100189 ASSERTCMP(call->rx_hard_ack, ==, call->rx_top);
190
David Howells248f2192016-09-08 11:10:12 +0100191 if (call->state == RXRPC_CALL_CLIENT_RECV_REPLY) {
David Howellse8c3af62019-08-09 15:20:41 +0100192 rxrpc_propose_ACK(call, RXRPC_ACK_IDLE, serial, false, true,
David Howells9c7ad432016-09-23 13:50:40 +0100193 rxrpc_propose_ack_terminal_ack);
David Howellsa71a26512018-07-23 17:18:37 +0100194 //rxrpc_send_ack_packet(call, false, NULL);
David Howells248f2192016-09-08 11:10:12 +0100195 }
196
197 write_lock_bh(&call->state_lock);
198
199 switch (call->state) {
200 case RXRPC_CALL_CLIENT_RECV_REPLY:
201 __rxrpc_call_completed(call);
David Howells9749fd22016-10-06 08:11:50 +0100202 write_unlock_bh(&call->state_lock);
David Howells248f2192016-09-08 11:10:12 +0100203 break;
204
205 case RXRPC_CALL_SERVER_RECV_REQUEST:
David Howells71f3ca42016-09-17 10:49:14 +0100206 call->tx_phase = true;
David Howells248f2192016-09-08 11:10:12 +0100207 call->state = RXRPC_CALL_SERVER_ACK_REQUEST;
David Howellsa158bdd2017-11-24 10:18:41 +0000208 call->expect_req_by = jiffies + MAX_JIFFY_OFFSET;
David Howells9749fd22016-10-06 08:11:50 +0100209 write_unlock_bh(&call->state_lock);
David Howellse8c3af62019-08-09 15:20:41 +0100210 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial, false, true,
David Howells9749fd22016-10-06 08:11:50 +0100211 rxrpc_propose_ack_processing_op);
David Howells248f2192016-09-08 11:10:12 +0100212 break;
213 default:
David Howells9749fd22016-10-06 08:11:50 +0100214 write_unlock_bh(&call->state_lock);
David Howells248f2192016-09-08 11:10:12 +0100215 break;
216 }
David Howells248f2192016-09-08 11:10:12 +0100217}
218
219/*
220 * Discard a packet we've used up and advance the Rx window by one.
221 */
222static void rxrpc_rotate_rx_window(struct rxrpc_call *call)
223{
David Howells816c9fc2016-09-17 10:49:11 +0100224 struct rxrpc_skb_priv *sp;
David Howells248f2192016-09-08 11:10:12 +0100225 struct sk_buff *skb;
David Howells58dc63c2016-09-17 10:49:13 +0100226 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +0100227 rxrpc_seq_t hard_ack, top;
David Howellse2de6c402019-08-27 09:51:30 +0100228 bool last = false;
229 u8 subpacket;
David Howells248f2192016-09-08 11:10:12 +0100230 int ix;
231
232 _enter("%d", call->debug_id);
233
234 hard_ack = call->rx_hard_ack;
235 top = smp_load_acquire(&call->rx_top);
236 ASSERT(before(hard_ack, top));
237
238 hard_ack++;
239 ix = hard_ack & RXRPC_RXTX_BUFF_MASK;
240 skb = call->rxtx_buffer[ix];
David Howells987db9f2019-08-19 09:25:38 +0100241 rxrpc_see_skb(skb, rxrpc_skb_rotated);
David Howells816c9fc2016-09-17 10:49:11 +0100242 sp = rxrpc_skb(skb);
David Howellse2de6c402019-08-27 09:51:30 +0100243
244 subpacket = call->rxtx_annotations[ix] & RXRPC_RX_ANNO_SUBPACKET;
245 serial = sp->hdr.serial + subpacket;
246
247 if (subpacket == sp->nr_subpackets - 1 &&
248 sp->rx_flags & RXRPC_SKB_INCL_LAST)
249 last = true;
David Howells58dc63c2016-09-17 10:49:13 +0100250
David Howells248f2192016-09-08 11:10:12 +0100251 call->rxtx_buffer[ix] = NULL;
252 call->rxtx_annotations[ix] = 0;
253 /* Barrier against rxrpc_input_data(). */
254 smp_store_release(&call->rx_hard_ack, hard_ack);
255
David Howells987db9f2019-08-19 09:25:38 +0100256 rxrpc_free_skb(skb, rxrpc_skb_freed);
David Howells248f2192016-09-08 11:10:12 +0100257
David Howells58dc63c2016-09-17 10:49:13 +0100258 trace_rxrpc_receive(call, rxrpc_receive_rotate, serial, hard_ack);
David Howellse2de6c402019-08-27 09:51:30 +0100259 if (last) {
David Howellsb69d94d2016-09-24 18:05:27 +0100260 rxrpc_end_rx_phase(call, serial);
David Howells805b21b2016-09-24 18:05:26 +0100261 } else {
262 /* Check to see if there's an ACK that needs sending. */
263 if (after_eq(hard_ack, call->ackr_consumed + 2) ||
264 after_eq(top, call->ackr_seen + 2) ||
265 (hard_ack == top && after(hard_ack, call->ackr_consumed)))
David Howellse8c3af62019-08-09 15:20:41 +0100266 rxrpc_propose_ACK(call, RXRPC_ACK_DELAY, serial,
David Howells8637aba2017-11-24 10:18:41 +0000267 true, true,
David Howells805b21b2016-09-24 18:05:26 +0100268 rxrpc_propose_ack_rotate_rx);
David Howells8637aba2017-11-24 10:18:41 +0000269 if (call->ackr_reason && call->ackr_reason != RXRPC_ACK_DELAY)
David Howellsbd1fdf82017-11-24 10:18:42 +0000270 rxrpc_send_ack_packet(call, false, NULL);
David Howells805b21b2016-09-24 18:05:26 +0100271 }
David Howells248f2192016-09-08 11:10:12 +0100272}
273
274/*
275 * Decrypt and verify a (sub)packet. The packet's length may be changed due to
276 * padding, but if this is the case, the packet length will be resident in the
277 * socket buffer. Note that we can't modify the master skb info as the skb may
278 * be the home to multiple subpackets.
279 */
280static int rxrpc_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
281 u8 annotation,
282 unsigned int offset, unsigned int len)
283{
284 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
285 rxrpc_seq_t seq = sp->hdr.seq;
286 u16 cksum = sp->hdr.cksum;
David Howellse2de6c402019-08-27 09:51:30 +0100287 u8 subpacket = annotation & RXRPC_RX_ANNO_SUBPACKET;
David Howells248f2192016-09-08 11:10:12 +0100288
289 _enter("");
290
291 /* For all but the head jumbo subpacket, the security checksum is in a
292 * jumbo header immediately prior to the data.
293 */
David Howellse2de6c402019-08-27 09:51:30 +0100294 if (subpacket > 0) {
David Howells248f2192016-09-08 11:10:12 +0100295 __be16 tmp;
296 if (skb_copy_bits(skb, offset - 2, &tmp, 2) < 0)
297 BUG();
298 cksum = ntohs(tmp);
David Howellse2de6c402019-08-27 09:51:30 +0100299 seq += subpacket;
David Howells248f2192016-09-08 11:10:12 +0100300 }
301
David Howells91fcfbe2019-10-07 10:58:29 +0100302 return call->security->verify_packet(call, skb, offset, len,
303 seq, cksum);
David Howells248f2192016-09-08 11:10:12 +0100304}
305
306/*
307 * Locate the data within a packet. This is complicated by:
308 *
309 * (1) An skb may contain a jumbo packet - so we have to find the appropriate
310 * subpacket.
311 *
312 * (2) The (sub)packets may be encrypted and, if so, the encrypted portion
313 * contains an extra header which includes the true length of the data,
314 * excluding any encrypted padding.
315 */
316static int rxrpc_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
317 u8 *_annotation,
David Howellsf9c32432019-10-31 12:13:46 +0000318 unsigned int *_offset, unsigned int *_len,
319 bool *_last)
David Howells248f2192016-09-08 11:10:12 +0100320{
David Howellse2de6c402019-08-27 09:51:30 +0100321 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells775e5b72016-09-30 13:26:03 +0100322 unsigned int offset = sizeof(struct rxrpc_wire_header);
Colin Ian King650b4ec2018-03-12 17:25:38 +0000323 unsigned int len;
David Howellsf9c32432019-10-31 12:13:46 +0000324 bool last = false;
David Howells248f2192016-09-08 11:10:12 +0100325 int ret;
326 u8 annotation = *_annotation;
David Howellse2de6c402019-08-27 09:51:30 +0100327 u8 subpacket = annotation & RXRPC_RX_ANNO_SUBPACKET;
David Howells248f2192016-09-08 11:10:12 +0100328
David Howells248f2192016-09-08 11:10:12 +0100329 /* Locate the subpacket */
David Howellse2de6c402019-08-27 09:51:30 +0100330 offset += subpacket * RXRPC_JUMBO_SUBPKTLEN;
David Howells775e5b72016-09-30 13:26:03 +0100331 len = skb->len - offset;
David Howellse2de6c402019-08-27 09:51:30 +0100332 if (subpacket < sp->nr_subpackets - 1)
333 len = RXRPC_JUMBO_DATALEN;
David Howellsf9c32432019-10-31 12:13:46 +0000334 else if (sp->rx_flags & RXRPC_SKB_INCL_LAST)
335 last = true;
David Howells248f2192016-09-08 11:10:12 +0100336
337 if (!(annotation & RXRPC_RX_ANNO_VERIFIED)) {
338 ret = rxrpc_verify_packet(call, skb, annotation, offset, len);
339 if (ret < 0)
340 return ret;
341 *_annotation |= RXRPC_RX_ANNO_VERIFIED;
342 }
343
344 *_offset = offset;
345 *_len = len;
David Howellsf9c32432019-10-31 12:13:46 +0000346 *_last = last;
David Howells91fcfbe2019-10-07 10:58:29 +0100347 call->security->locate_data(call, skb, _offset, _len);
David Howells248f2192016-09-08 11:10:12 +0100348 return 0;
349}
350
351/*
352 * Deliver messages to a call. This keeps processing packets until the buffer
353 * is filled and we find either more DATA (returns 0) or the end of the DATA
354 * (returns 1). If more packets are required, it returns -EAGAIN.
355 */
356static int rxrpc_recvmsg_data(struct socket *sock, struct rxrpc_call *call,
357 struct msghdr *msg, struct iov_iter *iter,
358 size_t len, int flags, size_t *_offset)
359{
360 struct rxrpc_skb_priv *sp;
361 struct sk_buff *skb;
David Howellse2de6c402019-08-27 09:51:30 +0100362 rxrpc_serial_t serial;
David Howells248f2192016-09-08 11:10:12 +0100363 rxrpc_seq_t hard_ack, top, seq;
364 size_t remain;
David Howellsf9c32432019-10-31 12:13:46 +0000365 bool rx_pkt_last;
David Howells248f2192016-09-08 11:10:12 +0100366 unsigned int rx_pkt_offset, rx_pkt_len;
David Howells816c9fc2016-09-17 10:49:11 +0100367 int ix, copy, ret = -EAGAIN, ret2;
David Howells248f2192016-09-08 11:10:12 +0100368
David Howellsd0b35a42018-07-23 17:18:38 +0100369 if (test_and_clear_bit(RXRPC_CALL_RX_UNDERRUN, &call->flags) &&
370 call->ackr_reason)
371 rxrpc_send_ack_packet(call, false, NULL);
372
David Howells248f2192016-09-08 11:10:12 +0100373 rx_pkt_offset = call->rx_pkt_offset;
374 rx_pkt_len = call->rx_pkt_len;
David Howellsf9c32432019-10-31 12:13:46 +0000375 rx_pkt_last = call->rx_pkt_last;
David Howells248f2192016-09-08 11:10:12 +0100376
David Howells816c9fc2016-09-17 10:49:11 +0100377 if (call->state >= RXRPC_CALL_SERVER_ACK_REQUEST) {
378 seq = call->rx_hard_ack;
379 ret = 1;
380 goto done;
381 }
382
David Howells248f2192016-09-08 11:10:12 +0100383 /* Barriers against rxrpc_input_data(). */
384 hard_ack = call->rx_hard_ack;
David Howellsd7e15832017-02-24 21:57:13 +0000385 seq = hard_ack + 1;
David Howellsf9c32432019-10-31 12:13:46 +0000386
David Howellsd7e15832017-02-24 21:57:13 +0000387 while (top = smp_load_acquire(&call->rx_top),
388 before_eq(seq, top)
389 ) {
David Howells248f2192016-09-08 11:10:12 +0100390 ix = seq & RXRPC_RXTX_BUFF_MASK;
391 skb = call->rxtx_buffer[ix];
David Howells84997902016-09-17 11:13:31 +0100392 if (!skb) {
393 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_hole, seq,
394 rx_pkt_offset, rx_pkt_len, 0);
David Howells248f2192016-09-08 11:10:12 +0100395 break;
David Howells84997902016-09-17 11:13:31 +0100396 }
David Howells248f2192016-09-08 11:10:12 +0100397 smp_rmb();
David Howells987db9f2019-08-19 09:25:38 +0100398 rxrpc_see_skb(skb, rxrpc_skb_seen);
David Howells248f2192016-09-08 11:10:12 +0100399 sp = rxrpc_skb(skb);
400
David Howellse2de6c402019-08-27 09:51:30 +0100401 if (!(flags & MSG_PEEK)) {
402 serial = sp->hdr.serial;
403 serial += call->rxtx_annotations[ix] & RXRPC_RX_ANNO_SUBPACKET;
David Howells58dc63c2016-09-17 10:49:13 +0100404 trace_rxrpc_receive(call, rxrpc_receive_front,
David Howellse2de6c402019-08-27 09:51:30 +0100405 serial, seq);
406 }
David Howells58dc63c2016-09-17 10:49:13 +0100407
David Howells248f2192016-09-08 11:10:12 +0100408 if (msg)
409 sock_recv_timestamp(msg, sock->sk, skb);
410
David Howells2e2ea512016-09-17 10:49:11 +0100411 if (rx_pkt_offset == 0) {
David Howells816c9fc2016-09-17 10:49:11 +0100412 ret2 = rxrpc_locate_data(call, skb,
413 &call->rxtx_annotations[ix],
David Howellsf9c32432019-10-31 12:13:46 +0000414 &rx_pkt_offset, &rx_pkt_len,
415 &rx_pkt_last);
David Howells84997902016-09-17 11:13:31 +0100416 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_next, seq,
417 rx_pkt_offset, rx_pkt_len, ret2);
David Howells816c9fc2016-09-17 10:49:11 +0100418 if (ret2 < 0) {
419 ret = ret2;
David Howells2e2ea512016-09-17 10:49:11 +0100420 goto out;
David Howells816c9fc2016-09-17 10:49:11 +0100421 }
David Howells84997902016-09-17 11:13:31 +0100422 } else {
423 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_cont, seq,
424 rx_pkt_offset, rx_pkt_len, 0);
David Howells2e2ea512016-09-17 10:49:11 +0100425 }
David Howells248f2192016-09-08 11:10:12 +0100426
427 /* We have to handle short, empty and used-up DATA packets. */
428 remain = len - *_offset;
429 copy = rx_pkt_len;
430 if (copy > remain)
431 copy = remain;
432 if (copy > 0) {
David Howells816c9fc2016-09-17 10:49:11 +0100433 ret2 = skb_copy_datagram_iter(skb, rx_pkt_offset, iter,
434 copy);
435 if (ret2 < 0) {
436 ret = ret2;
David Howells248f2192016-09-08 11:10:12 +0100437 goto out;
David Howells816c9fc2016-09-17 10:49:11 +0100438 }
David Howells248f2192016-09-08 11:10:12 +0100439
440 /* handle piecemeal consumption of data packets */
David Howells248f2192016-09-08 11:10:12 +0100441 rx_pkt_offset += copy;
442 rx_pkt_len -= copy;
443 *_offset += copy;
444 }
445
446 if (rx_pkt_len > 0) {
David Howells84997902016-09-17 11:13:31 +0100447 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_full, seq,
448 rx_pkt_offset, rx_pkt_len, 0);
David Howells248f2192016-09-08 11:10:12 +0100449 ASSERTCMP(*_offset, ==, len);
David Howells816c9fc2016-09-17 10:49:11 +0100450 ret = 0;
David Howells248f2192016-09-08 11:10:12 +0100451 break;
452 }
453
454 /* The whole packet has been transferred. */
David Howells248f2192016-09-08 11:10:12 +0100455 if (!(flags & MSG_PEEK))
456 rxrpc_rotate_rx_window(call);
457 rx_pkt_offset = 0;
458 rx_pkt_len = 0;
459
David Howellsf9c32432019-10-31 12:13:46 +0000460 if (rx_pkt_last) {
David Howells816c9fc2016-09-17 10:49:11 +0100461 ASSERTCMP(seq, ==, READ_ONCE(call->rx_top));
462 ret = 1;
463 goto out;
464 }
David Howellsd7e15832017-02-24 21:57:13 +0000465
466 seq++;
David Howells248f2192016-09-08 11:10:12 +0100467 }
468
David Howells248f2192016-09-08 11:10:12 +0100469out:
470 if (!(flags & MSG_PEEK)) {
471 call->rx_pkt_offset = rx_pkt_offset;
472 call->rx_pkt_len = rx_pkt_len;
David Howellsf9c32432019-10-31 12:13:46 +0000473 call->rx_pkt_last = rx_pkt_last;
David Howells248f2192016-09-08 11:10:12 +0100474 }
David Howells816c9fc2016-09-17 10:49:11 +0100475done:
David Howells84997902016-09-17 11:13:31 +0100476 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_data_return, seq,
477 rx_pkt_offset, rx_pkt_len, ret);
David Howellsd0b35a42018-07-23 17:18:38 +0100478 if (ret == -EAGAIN)
479 set_bit(RXRPC_CALL_RX_UNDERRUN, &call->flags);
David Howells248f2192016-09-08 11:10:12 +0100480 return ret;
481}
482
483/*
484 * Receive a message from an RxRPC socket
David Howells17926a72007-04-26 15:48:28 -0700485 * - we need to be careful about two or more threads calling recvmsg
486 * simultaneously
487 */
Ying Xue1b784142015-03-02 15:37:48 +0800488int rxrpc_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
489 int flags)
David Howells17926a72007-04-26 15:48:28 -0700490{
David Howells248f2192016-09-08 11:10:12 +0100491 struct rxrpc_call *call;
David Howells17926a72007-04-26 15:48:28 -0700492 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
David Howells248f2192016-09-08 11:10:12 +0100493 struct list_head *l;
494 size_t copied = 0;
David Howells17926a72007-04-26 15:48:28 -0700495 long timeo;
David Howells248f2192016-09-08 11:10:12 +0100496 int ret;
David Howells17926a72007-04-26 15:48:28 -0700497
498 DEFINE_WAIT(wait);
499
David Howells84997902016-09-17 11:13:31 +0100500 trace_rxrpc_recvmsg(NULL, rxrpc_recvmsg_enter, 0, 0, 0, 0);
David Howells17926a72007-04-26 15:48:28 -0700501
502 if (flags & (MSG_OOB | MSG_TRUNC))
503 return -EOPNOTSUPP;
504
David Howells17926a72007-04-26 15:48:28 -0700505 timeo = sock_rcvtimeo(&rx->sk, flags & MSG_DONTWAIT);
David Howells17926a72007-04-26 15:48:28 -0700506
David Howells248f2192016-09-08 11:10:12 +0100507try_again:
David Howells17926a72007-04-26 15:48:28 -0700508 lock_sock(&rx->sk);
509
David Howells248f2192016-09-08 11:10:12 +0100510 /* Return immediately if a client socket has no outstanding calls */
511 if (RB_EMPTY_ROOT(&rx->calls) &&
512 list_empty(&rx->recvmsg_q) &&
513 rx->sk.sk_state != RXRPC_SERVER_LISTENING) {
514 release_sock(&rx->sk);
David Howells639f1812020-07-20 12:41:46 +0100515 return -EAGAIN;
David Howells248f2192016-09-08 11:10:12 +0100516 }
517
518 if (list_empty(&rx->recvmsg_q)) {
519 ret = -EWOULDBLOCK;
David Howells84997902016-09-17 11:13:31 +0100520 if (timeo == 0) {
521 call = NULL;
David Howells248f2192016-09-08 11:10:12 +0100522 goto error_no_call;
David Howells84997902016-09-17 11:13:31 +0100523 }
David Howells248f2192016-09-08 11:10:12 +0100524
525 release_sock(&rx->sk);
526
527 /* Wait for something to happen */
528 prepare_to_wait_exclusive(sk_sleep(&rx->sk), &wait,
529 TASK_INTERRUPTIBLE);
530 ret = sock_error(&rx->sk);
531 if (ret)
532 goto wait_error;
533
534 if (list_empty(&rx->recvmsg_q)) {
535 if (signal_pending(current))
536 goto wait_interrupted;
David Howells84997902016-09-17 11:13:31 +0100537 trace_rxrpc_recvmsg(NULL, rxrpc_recvmsg_wait,
538 0, 0, 0, 0);
David Howells248f2192016-09-08 11:10:12 +0100539 timeo = schedule_timeout(timeo);
David Howells17926a72007-04-26 15:48:28 -0700540 }
David Howells248f2192016-09-08 11:10:12 +0100541 finish_wait(sk_sleep(&rx->sk), &wait);
542 goto try_again;
543 }
David Howells17926a72007-04-26 15:48:28 -0700544
David Howells248f2192016-09-08 11:10:12 +0100545 /* Find the next call and dequeue it if we're not just peeking. If we
546 * do dequeue it, that comes with a ref that we will need to release.
547 */
548 write_lock_bh(&rx->recvmsg_lock);
549 l = rx->recvmsg_q.next;
550 call = list_entry(l, struct rxrpc_call, recvmsg_link);
551 if (!(flags & MSG_PEEK))
552 list_del_init(&call->recvmsg_link);
553 else
David Howellsfff724292016-09-07 14:34:21 +0100554 rxrpc_get_call(call, rxrpc_call_got);
David Howells248f2192016-09-08 11:10:12 +0100555 write_unlock_bh(&rx->recvmsg_lock);
David Howells17926a72007-04-26 15:48:28 -0700556
David Howells84997902016-09-17 11:13:31 +0100557 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_dequeue, 0, 0, 0, 0);
David Howells17926a72007-04-26 15:48:28 -0700558
David Howells540b1c42017-02-27 15:43:06 +0000559 /* We're going to drop the socket lock, so we need to lock the call
560 * against interference by sendmsg.
561 */
562 if (!mutex_trylock(&call->user_mutex)) {
563 ret = -EWOULDBLOCK;
564 if (flags & MSG_DONTWAIT)
565 goto error_requeue_call;
566 ret = -ERESTARTSYS;
567 if (mutex_lock_interruptible(&call->user_mutex) < 0)
568 goto error_requeue_call;
569 }
570
571 release_sock(&rx->sk);
572
David Howells248f2192016-09-08 11:10:12 +0100573 if (test_bit(RXRPC_CALL_RELEASED, &call->flags))
David Howells17926a72007-04-26 15:48:28 -0700574 BUG();
David Howells248f2192016-09-08 11:10:12 +0100575
576 if (test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
577 if (flags & MSG_CMSG_COMPAT) {
578 unsigned int id32 = call->user_call_ID;
579
580 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_USER_CALL_ID,
581 sizeof(unsigned int), &id32);
582 } else {
David Howellsa16b8d02018-02-15 22:59:00 +0000583 unsigned long idl = call->user_call_ID;
584
David Howells248f2192016-09-08 11:10:12 +0100585 ret = put_cmsg(msg, SOL_RXRPC, RXRPC_USER_CALL_ID,
David Howellsa16b8d02018-02-15 22:59:00 +0000586 sizeof(unsigned long), &idl);
David Howellsf5c17aa2016-08-30 09:49:28 +0100587 }
David Howells248f2192016-09-08 11:10:12 +0100588 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000589 goto error_unlock_call;
David Howells248f2192016-09-08 11:10:12 +0100590 }
591
David Howells655500982020-07-29 00:03:56 +0100592 if (msg->msg_name && call->peer) {
David Howells68d6d1a2017-06-05 14:30:49 +0100593 struct sockaddr_rxrpc *srx = msg->msg_name;
594 size_t len = sizeof(call->peer->srx);
595
596 memcpy(msg->msg_name, &call->peer->srx, len);
597 srx->srx_service = call->service_id;
David Howells248f2192016-09-08 11:10:12 +0100598 msg->msg_namelen = len;
599 }
600
David Howells146d8fe2017-03-04 00:01:41 +0000601 switch (READ_ONCE(call->state)) {
David Howells248f2192016-09-08 11:10:12 +0100602 case RXRPC_CALL_CLIENT_RECV_REPLY:
603 case RXRPC_CALL_SERVER_RECV_REQUEST:
604 case RXRPC_CALL_SERVER_ACK_REQUEST:
605 ret = rxrpc_recvmsg_data(sock, call, msg, &msg->msg_iter, len,
606 flags, &copied);
607 if (ret == -EAGAIN)
608 ret = 0;
David Howells33b603f2016-09-13 22:36:21 +0100609
610 if (after(call->rx_top, call->rx_hard_ack) &&
611 call->rxtx_buffer[(call->rx_hard_ack + 1) & RXRPC_RXTX_BUFF_MASK])
612 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700613 break;
614 default:
David Howells248f2192016-09-08 11:10:12 +0100615 ret = 0;
David Howells17926a72007-04-26 15:48:28 -0700616 break;
617 }
618
619 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000620 goto error_unlock_call;
David Howells17926a72007-04-26 15:48:28 -0700621
David Howells248f2192016-09-08 11:10:12 +0100622 if (call->state == RXRPC_CALL_COMPLETE) {
623 ret = rxrpc_recvmsg_term(call, msg);
624 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000625 goto error_unlock_call;
David Howells248f2192016-09-08 11:10:12 +0100626 if (!(flags & MSG_PEEK))
627 rxrpc_release_call(rx, call);
628 msg->msg_flags |= MSG_EOR;
629 ret = 1;
David Howells17926a72007-04-26 15:48:28 -0700630 }
631
David Howells248f2192016-09-08 11:10:12 +0100632 if (ret == 0)
633 msg->msg_flags |= MSG_MORE;
634 else
635 msg->msg_flags &= ~MSG_MORE;
636 ret = copied;
David Howells17926a72007-04-26 15:48:28 -0700637
David Howells540b1c42017-02-27 15:43:06 +0000638error_unlock_call:
639 mutex_unlock(&call->user_mutex);
David Howellsfff724292016-09-07 14:34:21 +0100640 rxrpc_put_call(call, rxrpc_call_put);
David Howells540b1c42017-02-27 15:43:06 +0000641 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_return, 0, 0, 0, ret);
642 return ret;
643
644error_requeue_call:
645 if (!(flags & MSG_PEEK)) {
646 write_lock_bh(&rx->recvmsg_lock);
647 list_add(&call->recvmsg_link, &rx->recvmsg_q);
648 write_unlock_bh(&rx->recvmsg_lock);
649 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_requeue, 0, 0, 0, 0);
650 } else {
651 rxrpc_put_call(call, rxrpc_call_put);
652 }
David Howells248f2192016-09-08 11:10:12 +0100653error_no_call:
654 release_sock(&rx->sk);
Eric Dumazet6dce3c22019-02-04 08:36:06 -0800655error_trace:
David Howells84997902016-09-17 11:13:31 +0100656 trace_rxrpc_recvmsg(call, rxrpc_recvmsg_return, 0, 0, 0, ret);
David Howells17926a72007-04-26 15:48:28 -0700657 return ret;
658
David Howells17926a72007-04-26 15:48:28 -0700659wait_interrupted:
660 ret = sock_intr_errno(timeo);
661wait_error:
Eric Dumazet4a4771a2010-04-25 22:20:06 +0000662 finish_wait(sk_sleep(&rx->sk), &wait);
David Howells84997902016-09-17 11:13:31 +0100663 call = NULL;
Eric Dumazet6dce3c22019-02-04 08:36:06 -0800664 goto error_trace;
David Howellsd0016482016-08-30 20:42:14 +0100665}
David Howells651350d2007-04-26 15:50:17 -0700666
667/**
David Howellsd0016482016-08-30 20:42:14 +0100668 * rxrpc_kernel_recv_data - Allow a kernel service to receive data/info
669 * @sock: The socket that the call exists on
670 * @call: The call to send data through
David Howellseb9950e2018-08-03 17:06:56 +0100671 * @iter: The buffer to receive into
David Howellsd0016482016-08-30 20:42:14 +0100672 * @want_more: True if more data is expected to be read
673 * @_abort: Where the abort code is stored if -ECONNABORTED is returned
David Howellsa68f4a22017-10-18 11:36:39 +0100674 * @_service: Where to store the actual service ID (may be upgraded)
David Howells651350d2007-04-26 15:50:17 -0700675 *
David Howellsd0016482016-08-30 20:42:14 +0100676 * Allow a kernel service to receive data and pick up information about the
677 * state of a call. Returns 0 if got what was asked for and there's more
678 * available, 1 if we got what was asked for and we're at the end of the data
679 * and -EAGAIN if we need more data.
680 *
681 * Note that we may return -EAGAIN to drain empty packets at the end of the
682 * data, even if we've already copied over the requested data.
683 *
David Howellsd0016482016-08-30 20:42:14 +0100684 * *_abort should also be initialised to 0.
David Howells651350d2007-04-26 15:50:17 -0700685 */
David Howellsd0016482016-08-30 20:42:14 +0100686int rxrpc_kernel_recv_data(struct socket *sock, struct rxrpc_call *call,
David Howellseb9950e2018-08-03 17:06:56 +0100687 struct iov_iter *iter,
David Howellsa68f4a22017-10-18 11:36:39 +0100688 bool want_more, u32 *_abort, u16 *_service)
David Howells651350d2007-04-26 15:50:17 -0700689{
David Howellseb9950e2018-08-03 17:06:56 +0100690 size_t offset = 0;
David Howellsd0016482016-08-30 20:42:14 +0100691 int ret;
David Howells651350d2007-04-26 15:50:17 -0700692
David Howellseb9950e2018-08-03 17:06:56 +0100693 _enter("{%d,%s},%zu,%d",
David Howells248f2192016-09-08 11:10:12 +0100694 call->debug_id, rxrpc_call_states[call->state],
David Howellseb9950e2018-08-03 17:06:56 +0100695 iov_iter_count(iter), want_more);
David Howellsd0016482016-08-30 20:42:14 +0100696
David Howells2d914c12020-09-30 21:27:18 +0100697 ASSERTCMP(call->state, !=, RXRPC_CALL_SERVER_SECURING);
David Howellsd0016482016-08-30 20:42:14 +0100698
David Howells540b1c42017-02-27 15:43:06 +0000699 mutex_lock(&call->user_mutex);
David Howellsd0016482016-08-30 20:42:14 +0100700
David Howells146d8fe2017-03-04 00:01:41 +0000701 switch (READ_ONCE(call->state)) {
David Howellsd0016482016-08-30 20:42:14 +0100702 case RXRPC_CALL_CLIENT_RECV_REPLY:
703 case RXRPC_CALL_SERVER_RECV_REQUEST:
704 case RXRPC_CALL_SERVER_ACK_REQUEST:
David Howellseb9950e2018-08-03 17:06:56 +0100705 ret = rxrpc_recvmsg_data(sock, call, NULL, iter,
706 iov_iter_count(iter), 0,
707 &offset);
David Howellsd0016482016-08-30 20:42:14 +0100708 if (ret < 0)
709 goto out;
710
711 /* We can only reach here with a partially full buffer if we
712 * have reached the end of the data. We must otherwise have a
713 * full buffer or have been given -EAGAIN.
714 */
715 if (ret == 1) {
David Howellseb9950e2018-08-03 17:06:56 +0100716 if (iov_iter_count(iter) > 0)
David Howellsd0016482016-08-30 20:42:14 +0100717 goto short_data;
718 if (!want_more)
719 goto read_phase_complete;
720 ret = 0;
721 goto out;
722 }
723
724 if (!want_more)
725 goto excess_data;
726 goto out;
727
728 case RXRPC_CALL_COMPLETE:
729 goto call_complete;
730
731 default:
David Howellsd0016482016-08-30 20:42:14 +0100732 ret = -EINPROGRESS;
733 goto out;
734 }
735
736read_phase_complete:
737 ret = 1;
738out:
David Howellsd0b35a42018-07-23 17:18:38 +0100739 switch (call->ackr_reason) {
740 case RXRPC_ACK_IDLE:
741 break;
742 case RXRPC_ACK_DELAY:
743 if (ret != -EAGAIN)
744 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500745 fallthrough;
David Howellsd0b35a42018-07-23 17:18:38 +0100746 default:
747 rxrpc_send_ack_packet(call, false, NULL);
748 }
749
David Howellsa68f4a22017-10-18 11:36:39 +0100750 if (_service)
751 *_service = call->service_id;
David Howells540b1c42017-02-27 15:43:06 +0000752 mutex_unlock(&call->user_mutex);
David Howellseb9950e2018-08-03 17:06:56 +0100753 _leave(" = %d [%zu,%d]", ret, iov_iter_count(iter), *_abort);
David Howellsd0016482016-08-30 20:42:14 +0100754 return ret;
755
756short_data:
David Howellsfb46f6e2017-04-06 10:12:00 +0100757 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("short_data"));
David Howellsd0016482016-08-30 20:42:14 +0100758 ret = -EBADMSG;
759 goto out;
760excess_data:
David Howellsfb46f6e2017-04-06 10:12:00 +0100761 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("excess_data"));
David Howellsd0016482016-08-30 20:42:14 +0100762 ret = -EMSGSIZE;
763 goto out;
764call_complete:
765 *_abort = call->abort_code;
David Howells3a927892017-04-06 10:11:56 +0100766 ret = call->error;
David Howellsd0016482016-08-30 20:42:14 +0100767 if (call->completion == RXRPC_CALL_SUCCEEDED) {
768 ret = 1;
David Howellseb9950e2018-08-03 17:06:56 +0100769 if (iov_iter_count(iter) > 0)
David Howellsd0016482016-08-30 20:42:14 +0100770 ret = -ECONNRESET;
771 }
772 goto out;
David Howells651350d2007-04-26 15:50:17 -0700773}
David Howellsd0016482016-08-30 20:42:14 +0100774EXPORT_SYMBOL(rxrpc_kernel_recv_data);
David Howells2070a3e2018-10-04 09:42:29 +0100775
776/**
777 * rxrpc_kernel_get_reply_time - Get timestamp on first reply packet
778 * @sock: The socket that the call exists on
779 * @call: The call to query
780 * @_ts: Where to put the timestamp
781 *
782 * Retrieve the timestamp from the first DATA packet of the reply if it is
783 * in the ring. Returns true if successful, false if not.
784 */
785bool rxrpc_kernel_get_reply_time(struct socket *sock, struct rxrpc_call *call,
786 ktime_t *_ts)
787{
788 struct sk_buff *skb;
789 rxrpc_seq_t hard_ack, top, seq;
790 bool success = false;
791
792 mutex_lock(&call->user_mutex);
793
794 if (READ_ONCE(call->state) != RXRPC_CALL_CLIENT_RECV_REPLY)
795 goto out;
796
797 hard_ack = call->rx_hard_ack;
798 if (hard_ack != 0)
799 goto out;
800
801 seq = hard_ack + 1;
802 top = smp_load_acquire(&call->rx_top);
803 if (after(seq, top))
804 goto out;
805
806 skb = call->rxtx_buffer[seq & RXRPC_RXTX_BUFF_MASK];
807 if (!skb)
808 goto out;
809
810 *_ts = skb_get_ktime(skb);
811 success = true;
812
813out:
814 mutex_unlock(&call->user_mutex);
815 return success;
816}
817EXPORT_SYMBOL(rxrpc_kernel_get_reply_time);