blob: b0d2cda6ec0ad802edab7a4ef22a79b80e53a204 [file] [log] [blame]
David Howells0b58b8a2016-09-02 22:39:45 +01001/* AF_RXRPC sendmsg() implementation.
2 *
3 * Copyright (C) 2007, 2016 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/net.h>
15#include <linux/gfp.h>
16#include <linux/skbuff.h>
17#include <linux/export.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010018#include <linux/sched/signal.h>
19
David Howells0b58b8a2016-09-02 22:39:45 +010020#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
David Howells3dc20f02016-09-04 13:25:21 +010024enum rxrpc_command {
25 RXRPC_CMD_SEND_DATA, /* send data message */
26 RXRPC_CMD_SEND_ABORT, /* request abort generation */
27 RXRPC_CMD_ACCEPT, /* [server] accept incoming call */
28 RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */
29};
30
David Howells3ab26a62017-06-07 14:41:52 +010031struct rxrpc_send_params {
David Howellse754eba2017-06-07 12:40:03 +010032 s64 tx_total_len; /* Total Tx data length (if send data) */
David Howells3ab26a62017-06-07 14:41:52 +010033 unsigned long user_call_ID; /* User's call ID */
34 u32 abort_code; /* Abort code to Tx (if abort) */
35 enum rxrpc_command command : 8; /* The command to implement */
36 bool exclusive; /* Shared or exclusive call */
37 bool upgrade; /* If the connection is upgradeable */
38};
39
David Howells0b58b8a2016-09-02 22:39:45 +010040/*
41 * wait for space to appear in the transmit/ACK window
42 * - caller holds the socket locked
43 */
44static int rxrpc_wait_for_tx_window(struct rxrpc_sock *rx,
45 struct rxrpc_call *call,
46 long *timeo)
47{
48 DECLARE_WAITQUEUE(myself, current);
49 int ret;
50
David Howells248f2192016-09-08 11:10:12 +010051 _enter(",{%u,%u,%u}",
52 call->tx_hard_ack, call->tx_top, call->tx_winsize);
David Howells0b58b8a2016-09-02 22:39:45 +010053
54 add_wait_queue(&call->waitq, &myself);
55
56 for (;;) {
57 set_current_state(TASK_INTERRUPTIBLE);
58 ret = 0;
David Howells57494342016-09-24 18:05:27 +010059 if (call->tx_top - call->tx_hard_ack <
60 min_t(unsigned int, call->tx_winsize,
61 call->cong_cwnd + call->cong_extra))
David Howells0b58b8a2016-09-02 22:39:45 +010062 break;
David Howells248f2192016-09-08 11:10:12 +010063 if (call->state >= RXRPC_CALL_COMPLETE) {
64 ret = -call->error;
65 break;
66 }
David Howells0b58b8a2016-09-02 22:39:45 +010067 if (signal_pending(current)) {
68 ret = sock_intr_errno(*timeo);
69 break;
70 }
71
David Howellsa124fe32016-09-17 10:49:13 +010072 trace_rxrpc_transmit(call, rxrpc_transmit_wait);
David Howells540b1c42017-02-27 15:43:06 +000073 mutex_unlock(&call->user_mutex);
David Howells0b58b8a2016-09-02 22:39:45 +010074 *timeo = schedule_timeout(*timeo);
David Howells540b1c42017-02-27 15:43:06 +000075 if (mutex_lock_interruptible(&call->user_mutex) < 0) {
76 ret = sock_intr_errno(*timeo);
77 break;
78 }
David Howells0b58b8a2016-09-02 22:39:45 +010079 }
80
81 remove_wait_queue(&call->waitq, &myself);
82 set_current_state(TASK_RUNNING);
83 _leave(" = %d", ret);
84 return ret;
85}
86
87/*
David Howells248f2192016-09-08 11:10:12 +010088 * Schedule an instant Tx resend.
David Howells0b58b8a2016-09-02 22:39:45 +010089 */
David Howells248f2192016-09-08 11:10:12 +010090static inline void rxrpc_instant_resend(struct rxrpc_call *call, int ix)
David Howells0b58b8a2016-09-02 22:39:45 +010091{
David Howells248f2192016-09-08 11:10:12 +010092 spin_lock_bh(&call->lock);
93
94 if (call->state < RXRPC_CALL_COMPLETE) {
95 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS;
96 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
David Howells0b58b8a2016-09-02 22:39:45 +010097 rxrpc_queue_call(call);
98 }
David Howells248f2192016-09-08 11:10:12 +010099
100 spin_unlock_bh(&call->lock);
David Howells0b58b8a2016-09-02 22:39:45 +0100101}
102
103/*
David Howells248f2192016-09-08 11:10:12 +0100104 * Queue a DATA packet for transmission, set the resend timeout and send the
105 * packet immediately
David Howells0b58b8a2016-09-02 22:39:45 +0100106 */
107static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,
108 bool last)
109{
110 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100111 rxrpc_seq_t seq = sp->hdr.seq;
112 int ret, ix;
David Howells70790db2016-09-23 12:39:22 +0100113 u8 annotation = RXRPC_TX_ANNO_UNACK;
David Howells0b58b8a2016-09-02 22:39:45 +0100114
David Howells248f2192016-09-08 11:10:12 +0100115 _net("queue skb %p [%d]", skb, seq);
David Howells0b58b8a2016-09-02 22:39:45 +0100116
David Howells248f2192016-09-08 11:10:12 +0100117 ASSERTCMP(seq, ==, call->tx_top + 1);
118
David Howells70790db2016-09-23 12:39:22 +0100119 if (last)
120 annotation |= RXRPC_TX_ANNO_LAST;
121
David Howellsb24d2892016-09-23 13:17:33 +0100122 /* We have to set the timestamp before queueing as the retransmit
123 * algorithm can see the packet as soon as we queue it.
124 */
125 skb->tstamp = ktime_get_real();
126
David Howells248f2192016-09-08 11:10:12 +0100127 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howells71f3ca42016-09-17 10:49:14 +0100128 rxrpc_get_skb(skb, rxrpc_skb_tx_got);
David Howells70790db2016-09-23 12:39:22 +0100129 call->rxtx_annotations[ix] = annotation;
David Howells0b58b8a2016-09-02 22:39:45 +0100130 smp_wmb();
David Howells248f2192016-09-08 11:10:12 +0100131 call->rxtx_buffer[ix] = skb;
132 call->tx_top = seq;
David Howells70790db2016-09-23 12:39:22 +0100133 if (last)
David Howellsa124fe32016-09-17 10:49:13 +0100134 trace_rxrpc_transmit(call, rxrpc_transmit_queue_last);
David Howells70790db2016-09-23 12:39:22 +0100135 else
David Howellsa124fe32016-09-17 10:49:13 +0100136 trace_rxrpc_transmit(call, rxrpc_transmit_queue);
David Howells0b58b8a2016-09-02 22:39:45 +0100137
138 if (last || call->state == RXRPC_CALL_SERVER_ACK_REQUEST) {
139 _debug("________awaiting reply/ACK__________");
140 write_lock_bh(&call->state_lock);
141 switch (call->state) {
142 case RXRPC_CALL_CLIENT_SEND_REQUEST:
143 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
144 break;
145 case RXRPC_CALL_SERVER_ACK_REQUEST:
146 call->state = RXRPC_CALL_SERVER_SEND_REPLY;
David Howells9749fd22016-10-06 08:11:50 +0100147 call->ack_at = call->expire_at;
148 if (call->ackr_reason == RXRPC_ACK_DELAY)
149 call->ackr_reason = 0;
150 __rxrpc_set_timer(call, rxrpc_timer_init_for_send_reply,
151 ktime_get_real());
David Howells0b58b8a2016-09-02 22:39:45 +0100152 if (!last)
153 break;
154 case RXRPC_CALL_SERVER_SEND_REPLY:
155 call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
156 break;
157 default:
158 break;
159 }
160 write_unlock_bh(&call->state_lock);
161 }
162
David Howells248f2192016-09-08 11:10:12 +0100163 if (seq == 1 && rxrpc_is_client_call(call))
164 rxrpc_expose_client_call(call);
165
David Howellsa1767072016-09-29 22:37:15 +0100166 ret = rxrpc_send_data_packet(call, skb, false);
David Howells0b58b8a2016-09-02 22:39:45 +0100167 if (ret < 0) {
168 _debug("need instant resend %d", ret);
David Howells248f2192016-09-08 11:10:12 +0100169 rxrpc_instant_resend(call, ix);
David Howellsdfc3da42016-09-23 12:39:23 +0100170 } else {
David Howellsdf0adc72016-09-26 22:12:49 +0100171 ktime_t now = ktime_get_real(), resend_at;
David Howellsdfc3da42016-09-23 12:39:23 +0100172
David Howellsdf0adc72016-09-26 22:12:49 +0100173 resend_at = ktime_add_ms(now, rxrpc_resend_timeout);
David Howellsdfc3da42016-09-23 12:39:23 +0100174
David Howellsdf0adc72016-09-26 22:12:49 +0100175 if (ktime_before(resend_at, call->resend_at)) {
David Howellsdfc3da42016-09-23 12:39:23 +0100176 call->resend_at = resend_at;
David Howellsdf0adc72016-09-26 22:12:49 +0100177 rxrpc_set_timer(call, rxrpc_timer_set_for_send, now);
David Howellsdfc3da42016-09-23 12:39:23 +0100178 }
David Howells0b58b8a2016-09-02 22:39:45 +0100179 }
180
David Howells71f3ca42016-09-17 10:49:14 +0100181 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells0b58b8a2016-09-02 22:39:45 +0100182 _leave("");
183}
184
185/*
David Howells0b58b8a2016-09-02 22:39:45 +0100186 * send data through a socket
187 * - must be called in process context
David Howells540b1c42017-02-27 15:43:06 +0000188 * - The caller holds the call user access mutex, but not the socket lock.
David Howells0b58b8a2016-09-02 22:39:45 +0100189 */
190static int rxrpc_send_data(struct rxrpc_sock *rx,
191 struct rxrpc_call *call,
192 struct msghdr *msg, size_t len)
193{
194 struct rxrpc_skb_priv *sp;
195 struct sk_buff *skb;
196 struct sock *sk = &rx->sk;
197 long timeo;
198 bool more;
199 int ret, copied;
200
201 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
202
203 /* this should be in poll */
204 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
205
206 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
207 return -EPIPE;
208
209 more = msg->msg_flags & MSG_MORE;
210
David Howellse754eba2017-06-07 12:40:03 +0100211 if (call->tx_total_len != -1) {
212 if (len > call->tx_total_len)
213 return -EMSGSIZE;
214 if (!more && len != call->tx_total_len)
215 return -EMSGSIZE;
216 }
217
David Howells0b58b8a2016-09-02 22:39:45 +0100218 skb = call->tx_pending;
219 call->tx_pending = NULL;
David Howells71f3ca42016-09-17 10:49:14 +0100220 rxrpc_see_skb(skb, rxrpc_skb_tx_seen);
David Howells0b58b8a2016-09-02 22:39:45 +0100221
222 copied = 0;
223 do {
David Howells7aa51da2016-09-22 00:29:31 +0100224 /* Check to see if there's a ping ACK to reply to. */
225 if (call->ackr_reason == RXRPC_ACK_PING_RESPONSE)
David Howellsa5af7e12016-10-06 08:11:49 +0100226 rxrpc_send_ack_packet(call, false);
David Howells7aa51da2016-09-22 00:29:31 +0100227
David Howells0b58b8a2016-09-02 22:39:45 +0100228 if (!skb) {
229 size_t size, chunk, max, space;
230
231 _debug("alloc");
232
David Howells248f2192016-09-08 11:10:12 +0100233 if (call->tx_top - call->tx_hard_ack >=
David Howells57494342016-09-24 18:05:27 +0100234 min_t(unsigned int, call->tx_winsize,
235 call->cong_cwnd + call->cong_extra)) {
David Howells0b58b8a2016-09-02 22:39:45 +0100236 ret = -EAGAIN;
237 if (msg->msg_flags & MSG_DONTWAIT)
238 goto maybe_error;
239 ret = rxrpc_wait_for_tx_window(rx, call,
240 &timeo);
241 if (ret < 0)
242 goto maybe_error;
243 }
244
David Howells182f5052016-09-17 10:49:12 +0100245 max = RXRPC_JUMBO_DATALEN;
David Howells0b58b8a2016-09-02 22:39:45 +0100246 max -= call->conn->security_size;
247 max &= ~(call->conn->size_align - 1UL);
248
249 chunk = max;
250 if (chunk > msg_data_left(msg) && !more)
251 chunk = msg_data_left(msg);
252
253 space = chunk + call->conn->size_align;
254 space &= ~(call->conn->size_align - 1UL);
255
David Howells5a924b82016-09-22 00:29:31 +0100256 size = space + call->conn->security_size;
David Howells0b58b8a2016-09-02 22:39:45 +0100257
258 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
259
260 /* create a buffer that we can retain until it's ACK'd */
261 skb = sock_alloc_send_skb(
262 sk, size, msg->msg_flags & MSG_DONTWAIT, &ret);
263 if (!skb)
264 goto maybe_error;
265
David Howells71f3ca42016-09-17 10:49:14 +0100266 rxrpc_new_skb(skb, rxrpc_skb_tx_new);
David Howells0b58b8a2016-09-02 22:39:45 +0100267
268 _debug("ALLOC SEND %p", skb);
269
270 ASSERTCMP(skb->mark, ==, 0);
271
David Howells5a924b82016-09-22 00:29:31 +0100272 _debug("HS: %u", call->conn->security_size);
273 skb_reserve(skb, call->conn->security_size);
274 skb->len += call->conn->security_size;
David Howells0b58b8a2016-09-02 22:39:45 +0100275
276 sp = rxrpc_skb(skb);
277 sp->remain = chunk;
278 if (sp->remain > skb_tailroom(skb))
279 sp->remain = skb_tailroom(skb);
280
281 _net("skb: hr %d, tr %d, hl %d, rm %d",
282 skb_headroom(skb),
283 skb_tailroom(skb),
284 skb_headlen(skb),
285 sp->remain);
286
287 skb->ip_summed = CHECKSUM_UNNECESSARY;
288 }
289
290 _debug("append");
291 sp = rxrpc_skb(skb);
292
293 /* append next segment of data to the current buffer */
294 if (msg_data_left(msg) > 0) {
295 int copy = skb_tailroom(skb);
296 ASSERTCMP(copy, >, 0);
297 if (copy > msg_data_left(msg))
298 copy = msg_data_left(msg);
299 if (copy > sp->remain)
300 copy = sp->remain;
301
302 _debug("add");
303 ret = skb_add_data(skb, &msg->msg_iter, copy);
304 _debug("added");
305 if (ret < 0)
306 goto efault;
307 sp->remain -= copy;
308 skb->mark += copy;
309 copied += copy;
David Howellse754eba2017-06-07 12:40:03 +0100310 if (call->tx_total_len != -1)
311 call->tx_total_len -= copy;
David Howells0b58b8a2016-09-02 22:39:45 +0100312 }
313
314 /* check for the far side aborting the call or a network error
315 * occurring */
316 if (call->state == RXRPC_CALL_COMPLETE)
317 goto call_terminated;
318
319 /* add the packet to the send queue if it's now full */
320 if (sp->remain <= 0 ||
321 (msg_data_left(msg) == 0 && !more)) {
322 struct rxrpc_connection *conn = call->conn;
323 uint32_t seq;
324 size_t pad;
325
326 /* pad out if we're using security */
327 if (conn->security_ix) {
328 pad = conn->security_size + skb->mark;
329 pad = conn->size_align - pad;
330 pad &= conn->size_align - 1;
331 _debug("pad %zu", pad);
332 if (pad)
Johannes Bergb080db52017-06-16 14:29:19 +0200333 skb_put_zero(skb, pad);
David Howells0b58b8a2016-09-02 22:39:45 +0100334 }
335
David Howells248f2192016-09-08 11:10:12 +0100336 seq = call->tx_top + 1;
David Howells0b58b8a2016-09-02 22:39:45 +0100337
David Howells0b58b8a2016-09-02 22:39:45 +0100338 sp->hdr.seq = seq;
David Howells0b58b8a2016-09-02 22:39:45 +0100339 sp->hdr._rsvd = 0;
David Howells5a924b82016-09-22 00:29:31 +0100340 sp->hdr.flags = conn->out_clientflag;
David Howells0b58b8a2016-09-02 22:39:45 +0100341
David Howells0b58b8a2016-09-02 22:39:45 +0100342 if (msg_data_left(msg) == 0 && !more)
343 sp->hdr.flags |= RXRPC_LAST_PACKET;
David Howells248f2192016-09-08 11:10:12 +0100344 else if (call->tx_top - call->tx_hard_ack <
345 call->tx_winsize)
David Howells0b58b8a2016-09-02 22:39:45 +0100346 sp->hdr.flags |= RXRPC_MORE_PACKETS;
David Howells0b58b8a2016-09-02 22:39:45 +0100347
348 ret = conn->security->secure_packet(
David Howells5a924b82016-09-22 00:29:31 +0100349 call, skb, skb->mark, skb->head);
David Howells0b58b8a2016-09-02 22:39:45 +0100350 if (ret < 0)
351 goto out;
352
David Howells0b58b8a2016-09-02 22:39:45 +0100353 rxrpc_queue_packet(call, skb, !msg_data_left(msg) && !more);
354 skb = NULL;
355 }
356 } while (msg_data_left(msg) > 0);
357
358success:
359 ret = copied;
360out:
361 call->tx_pending = skb;
362 _leave(" = %d", ret);
363 return ret;
364
365call_terminated:
David Howells71f3ca42016-09-17 10:49:14 +0100366 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells0b58b8a2016-09-02 22:39:45 +0100367 _leave(" = %d", -call->error);
David Howells248f2192016-09-08 11:10:12 +0100368 return -call->error;
David Howells0b58b8a2016-09-02 22:39:45 +0100369
370maybe_error:
371 if (copied)
372 goto success;
373 goto out;
374
375efault:
376 ret = -EFAULT;
377 goto out;
378}
David Howellsdf423a42016-09-02 22:39:45 +0100379
380/*
381 * extract control messages from the sendmsg() control buffer
382 */
David Howells3ab26a62017-06-07 14:41:52 +0100383static int rxrpc_sendmsg_cmsg(struct msghdr *msg, struct rxrpc_send_params *p)
David Howellsdf423a42016-09-02 22:39:45 +0100384{
385 struct cmsghdr *cmsg;
386 bool got_user_ID = false;
387 int len;
388
David Howellsdf423a42016-09-02 22:39:45 +0100389 if (msg->msg_controllen == 0)
390 return -EINVAL;
391
392 for_each_cmsghdr(cmsg, msg) {
393 if (!CMSG_OK(msg, cmsg))
394 return -EINVAL;
395
yuan linyu1ff8ceb2017-01-03 20:42:17 +0800396 len = cmsg->cmsg_len - sizeof(struct cmsghdr);
David Howellsdf423a42016-09-02 22:39:45 +0100397 _debug("CMSG %d, %d, %d",
398 cmsg->cmsg_level, cmsg->cmsg_type, len);
399
400 if (cmsg->cmsg_level != SOL_RXRPC)
401 continue;
402
403 switch (cmsg->cmsg_type) {
404 case RXRPC_USER_CALL_ID:
405 if (msg->msg_flags & MSG_CMSG_COMPAT) {
406 if (len != sizeof(u32))
407 return -EINVAL;
David Howells3ab26a62017-06-07 14:41:52 +0100408 p->user_call_ID = *(u32 *)CMSG_DATA(cmsg);
David Howellsdf423a42016-09-02 22:39:45 +0100409 } else {
410 if (len != sizeof(unsigned long))
411 return -EINVAL;
David Howells3ab26a62017-06-07 14:41:52 +0100412 p->user_call_ID = *(unsigned long *)
David Howellsdf423a42016-09-02 22:39:45 +0100413 CMSG_DATA(cmsg);
414 }
David Howellsdf423a42016-09-02 22:39:45 +0100415 got_user_ID = true;
416 break;
417
418 case RXRPC_ABORT:
David Howells3ab26a62017-06-07 14:41:52 +0100419 if (p->command != RXRPC_CMD_SEND_DATA)
David Howellsdf423a42016-09-02 22:39:45 +0100420 return -EINVAL;
David Howells3ab26a62017-06-07 14:41:52 +0100421 p->command = RXRPC_CMD_SEND_ABORT;
422 if (len != sizeof(p->abort_code))
David Howellsdf423a42016-09-02 22:39:45 +0100423 return -EINVAL;
David Howells3ab26a62017-06-07 14:41:52 +0100424 p->abort_code = *(unsigned int *)CMSG_DATA(cmsg);
425 if (p->abort_code == 0)
David Howellsdf423a42016-09-02 22:39:45 +0100426 return -EINVAL;
427 break;
428
429 case RXRPC_ACCEPT:
David Howells3ab26a62017-06-07 14:41:52 +0100430 if (p->command != RXRPC_CMD_SEND_DATA)
David Howellsdf423a42016-09-02 22:39:45 +0100431 return -EINVAL;
David Howells3ab26a62017-06-07 14:41:52 +0100432 p->command = RXRPC_CMD_ACCEPT;
David Howellsdf423a42016-09-02 22:39:45 +0100433 if (len != 0)
434 return -EINVAL;
435 break;
436
437 case RXRPC_EXCLUSIVE_CALL:
David Howells3ab26a62017-06-07 14:41:52 +0100438 p->exclusive = true;
David Howellsdf423a42016-09-02 22:39:45 +0100439 if (len != 0)
440 return -EINVAL;
441 break;
David Howells4e255722017-06-05 14:30:49 +0100442
443 case RXRPC_UPGRADE_SERVICE:
David Howells3ab26a62017-06-07 14:41:52 +0100444 p->upgrade = true;
David Howells4e255722017-06-05 14:30:49 +0100445 if (len != 0)
446 return -EINVAL;
447 break;
448
David Howellse754eba2017-06-07 12:40:03 +0100449 case RXRPC_TX_LENGTH:
450 if (p->tx_total_len != -1 || len != sizeof(__s64))
451 return -EINVAL;
452 p->tx_total_len = *(__s64 *)CMSG_DATA(cmsg);
453 if (p->tx_total_len < 0)
454 return -EINVAL;
455 break;
456
David Howellsdf423a42016-09-02 22:39:45 +0100457 default:
458 return -EINVAL;
459 }
460 }
461
462 if (!got_user_ID)
463 return -EINVAL;
David Howellse754eba2017-06-07 12:40:03 +0100464 if (p->tx_total_len != -1 && p->command != RXRPC_CMD_SEND_DATA)
465 return -EINVAL;
David Howellsdf423a42016-09-02 22:39:45 +0100466 _leave(" = 0");
467 return 0;
468}
469
470/*
David Howellsdf423a42016-09-02 22:39:45 +0100471 * Create a new client call for sendmsg().
David Howells540b1c42017-02-27 15:43:06 +0000472 * - Called with the socket lock held, which it must release.
473 * - If it returns a call, the call's lock will need releasing by the caller.
David Howellsdf423a42016-09-02 22:39:45 +0100474 */
475static struct rxrpc_call *
476rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg,
David Howells3ab26a62017-06-07 14:41:52 +0100477 struct rxrpc_send_params *p)
David Howells540b1c42017-02-27 15:43:06 +0000478 __releases(&rx->sk.sk_lock.slock)
David Howellsdf423a42016-09-02 22:39:45 +0100479{
480 struct rxrpc_conn_parameters cp;
481 struct rxrpc_call *call;
482 struct key *key;
483
484 DECLARE_SOCKADDR(struct sockaddr_rxrpc *, srx, msg->msg_name);
485
486 _enter("");
487
David Howells540b1c42017-02-27 15:43:06 +0000488 if (!msg->msg_name) {
489 release_sock(&rx->sk);
David Howellsdf423a42016-09-02 22:39:45 +0100490 return ERR_PTR(-EDESTADDRREQ);
David Howells540b1c42017-02-27 15:43:06 +0000491 }
David Howellsdf423a42016-09-02 22:39:45 +0100492
493 key = rx->key;
494 if (key && !rx->key->payload.data[0])
495 key = NULL;
496
497 memset(&cp, 0, sizeof(cp));
498 cp.local = rx->local;
499 cp.key = rx->key;
500 cp.security_level = rx->min_sec_level;
David Howells3ab26a62017-06-07 14:41:52 +0100501 cp.exclusive = rx->exclusive | p->exclusive;
502 cp.upgrade = p->upgrade;
David Howellsdf423a42016-09-02 22:39:45 +0100503 cp.service_id = srx->srx_service;
David Howellse754eba2017-06-07 12:40:03 +0100504 call = rxrpc_new_client_call(rx, &cp, srx, p->user_call_ID,
505 p->tx_total_len, GFP_KERNEL);
David Howells540b1c42017-02-27 15:43:06 +0000506 /* The socket is now unlocked */
David Howellsdf423a42016-09-02 22:39:45 +0100507
508 _leave(" = %p\n", call);
509 return call;
510}
511
512/*
513 * send a message forming part of a client call through an RxRPC socket
514 * - caller holds the socket locked
515 * - the socket may be either a client socket or a server socket
516 */
517int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
David Howells540b1c42017-02-27 15:43:06 +0000518 __releases(&rx->sk.sk_lock.slock)
David Howellsdf423a42016-09-02 22:39:45 +0100519{
David Howells146d8fe2017-03-04 00:01:41 +0000520 enum rxrpc_call_state state;
David Howellsdf423a42016-09-02 22:39:45 +0100521 struct rxrpc_call *call;
David Howellsdf423a42016-09-02 22:39:45 +0100522 int ret;
523
David Howells3ab26a62017-06-07 14:41:52 +0100524 struct rxrpc_send_params p = {
David Howellse754eba2017-06-07 12:40:03 +0100525 .tx_total_len = -1,
David Howells3ab26a62017-06-07 14:41:52 +0100526 .user_call_ID = 0,
527 .abort_code = 0,
528 .command = RXRPC_CMD_SEND_DATA,
529 .exclusive = false,
530 .upgrade = true,
531 };
532
David Howellsdf423a42016-09-02 22:39:45 +0100533 _enter("");
534
David Howells3ab26a62017-06-07 14:41:52 +0100535 ret = rxrpc_sendmsg_cmsg(msg, &p);
David Howellsdf423a42016-09-02 22:39:45 +0100536 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000537 goto error_release_sock;
David Howellsdf423a42016-09-02 22:39:45 +0100538
David Howells3ab26a62017-06-07 14:41:52 +0100539 if (p.command == RXRPC_CMD_ACCEPT) {
David Howells540b1c42017-02-27 15:43:06 +0000540 ret = -EINVAL;
David Howellsdf423a42016-09-02 22:39:45 +0100541 if (rx->sk.sk_state != RXRPC_SERVER_LISTENING)
David Howells540b1c42017-02-27 15:43:06 +0000542 goto error_release_sock;
David Howells3ab26a62017-06-07 14:41:52 +0100543 call = rxrpc_accept_call(rx, p.user_call_ID, NULL);
David Howells540b1c42017-02-27 15:43:06 +0000544 /* The socket is now unlocked. */
David Howellsdf423a42016-09-02 22:39:45 +0100545 if (IS_ERR(call))
546 return PTR_ERR(call);
David Howellsfff72422016-09-07 14:34:21 +0100547 rxrpc_put_call(call, rxrpc_call_put);
David Howellsdf423a42016-09-02 22:39:45 +0100548 return 0;
549 }
550
David Howells3ab26a62017-06-07 14:41:52 +0100551 call = rxrpc_find_call_by_user_ID(rx, p.user_call_ID);
David Howellsdf423a42016-09-02 22:39:45 +0100552 if (!call) {
David Howells540b1c42017-02-27 15:43:06 +0000553 ret = -EBADSLT;
David Howells3ab26a62017-06-07 14:41:52 +0100554 if (p.command != RXRPC_CMD_SEND_DATA)
David Howells540b1c42017-02-27 15:43:06 +0000555 goto error_release_sock;
David Howells3ab26a62017-06-07 14:41:52 +0100556 call = rxrpc_new_client_call_for_sendmsg(rx, msg, &p);
David Howells540b1c42017-02-27 15:43:06 +0000557 /* The socket is now unlocked... */
David Howellsdf423a42016-09-02 22:39:45 +0100558 if (IS_ERR(call))
559 return PTR_ERR(call);
David Howells540b1c42017-02-27 15:43:06 +0000560 /* ... and we have the call lock. */
561 } else {
David Howells146d8fe2017-03-04 00:01:41 +0000562 switch (READ_ONCE(call->state)) {
563 case RXRPC_CALL_UNINITIALISED:
564 case RXRPC_CALL_CLIENT_AWAIT_CONN:
565 case RXRPC_CALL_SERVER_PREALLOC:
566 case RXRPC_CALL_SERVER_SECURING:
567 case RXRPC_CALL_SERVER_ACCEPTING:
568 ret = -EBUSY;
David Howells37411ca2017-03-02 23:48:52 +0000569 goto error_release_sock;
David Howells146d8fe2017-03-04 00:01:41 +0000570 default:
571 break;
572 }
David Howells37411ca2017-03-02 23:48:52 +0000573
David Howells540b1c42017-02-27 15:43:06 +0000574 ret = mutex_lock_interruptible(&call->user_mutex);
575 release_sock(&rx->sk);
576 if (ret < 0) {
577 ret = -ERESTARTSYS;
578 goto error_put;
579 }
David Howellse754eba2017-06-07 12:40:03 +0100580
581 if (p.tx_total_len != -1) {
582 ret = -EINVAL;
583 if (call->tx_total_len != -1 ||
584 call->tx_pending ||
585 call->tx_top != 0)
586 goto error_put;
587 call->tx_total_len = p.tx_total_len;
588 }
David Howellsdf423a42016-09-02 22:39:45 +0100589 }
590
David Howells146d8fe2017-03-04 00:01:41 +0000591 state = READ_ONCE(call->state);
David Howellsdf423a42016-09-02 22:39:45 +0100592 _debug("CALL %d USR %lx ST %d on CONN %p",
David Howells146d8fe2017-03-04 00:01:41 +0000593 call->debug_id, call->user_call_ID, state, call->conn);
David Howellsdf423a42016-09-02 22:39:45 +0100594
David Howells146d8fe2017-03-04 00:01:41 +0000595 if (state >= RXRPC_CALL_COMPLETE) {
David Howellsdf423a42016-09-02 22:39:45 +0100596 /* it's too late for this call */
597 ret = -ESHUTDOWN;
David Howells3ab26a62017-06-07 14:41:52 +0100598 } else if (p.command == RXRPC_CMD_SEND_ABORT) {
David Howellsdf423a42016-09-02 22:39:45 +0100599 ret = 0;
David Howells3ab26a62017-06-07 14:41:52 +0100600 if (rxrpc_abort_call("CMD", call, 0, p.abort_code, -ECONNABORTED))
David Howells26cb02a2016-10-06 08:11:49 +0100601 ret = rxrpc_send_abort_packet(call);
David Howells3ab26a62017-06-07 14:41:52 +0100602 } else if (p.command != RXRPC_CMD_SEND_DATA) {
David Howellsdf423a42016-09-02 22:39:45 +0100603 ret = -EINVAL;
604 } else if (rxrpc_is_client_call(call) &&
David Howells146d8fe2017-03-04 00:01:41 +0000605 state != RXRPC_CALL_CLIENT_SEND_REQUEST) {
David Howellsdf423a42016-09-02 22:39:45 +0100606 /* request phase complete for this client call */
607 ret = -EPROTO;
608 } else if (rxrpc_is_service_call(call) &&
David Howells146d8fe2017-03-04 00:01:41 +0000609 state != RXRPC_CALL_SERVER_ACK_REQUEST &&
610 state != RXRPC_CALL_SERVER_SEND_REPLY) {
David Howellsdf423a42016-09-02 22:39:45 +0100611 /* Reply phase not begun or not complete for service call. */
612 ret = -EPROTO;
613 } else {
614 ret = rxrpc_send_data(rx, call, msg, len);
615 }
616
David Howells540b1c42017-02-27 15:43:06 +0000617 mutex_unlock(&call->user_mutex);
618error_put:
David Howellsfff72422016-09-07 14:34:21 +0100619 rxrpc_put_call(call, rxrpc_call_put);
David Howellsdf423a42016-09-02 22:39:45 +0100620 _leave(" = %d", ret);
621 return ret;
David Howells540b1c42017-02-27 15:43:06 +0000622
623error_release_sock:
624 release_sock(&rx->sk);
625 return ret;
David Howellsdf423a42016-09-02 22:39:45 +0100626}
627
628/**
629 * rxrpc_kernel_send_data - Allow a kernel service to send data on a call
630 * @sock: The socket the call is on
631 * @call: The call to send data through
632 * @msg: The data to send
633 * @len: The amount of data to send
634 *
635 * Allow a kernel service to send data on a call. The call must be in an state
636 * appropriate to sending data. No control data should be supplied in @msg,
637 * nor should an address be supplied. MSG_MORE should be flagged if there's
638 * more data to come, otherwise this data will end the transmission phase.
639 */
640int rxrpc_kernel_send_data(struct socket *sock, struct rxrpc_call *call,
641 struct msghdr *msg, size_t len)
642{
643 int ret;
644
645 _enter("{%d,%s},", call->debug_id, rxrpc_call_states[call->state]);
646
647 ASSERTCMP(msg->msg_name, ==, NULL);
648 ASSERTCMP(msg->msg_control, ==, NULL);
649
David Howells540b1c42017-02-27 15:43:06 +0000650 mutex_lock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100651
652 _debug("CALL %d USR %lx ST %d on CONN %p",
653 call->debug_id, call->user_call_ID, call->state, call->conn);
654
David Howells146d8fe2017-03-04 00:01:41 +0000655 switch (READ_ONCE(call->state)) {
656 case RXRPC_CALL_CLIENT_SEND_REQUEST:
657 case RXRPC_CALL_SERVER_ACK_REQUEST:
658 case RXRPC_CALL_SERVER_SEND_REPLY:
David Howellsdf423a42016-09-02 22:39:45 +0100659 ret = rxrpc_send_data(rxrpc_sk(sock->sk), call, msg, len);
David Howells146d8fe2017-03-04 00:01:41 +0000660 break;
661 case RXRPC_CALL_COMPLETE:
David Howells6fc166d2017-03-09 08:10:32 +0000662 read_lock_bh(&call->state_lock);
663 ret = -call->error;
664 read_unlock_bh(&call->state_lock);
David Howells146d8fe2017-03-04 00:01:41 +0000665 break;
666 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100667 /* Request phase complete for this client call */
668 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("late_send"));
David Howells146d8fe2017-03-04 00:01:41 +0000669 ret = -EPROTO;
670 break;
David Howellsdf423a42016-09-02 22:39:45 +0100671 }
672
David Howells540b1c42017-02-27 15:43:06 +0000673 mutex_unlock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100674 _leave(" = %d", ret);
675 return ret;
676}
677EXPORT_SYMBOL(rxrpc_kernel_send_data);
678
679/**
680 * rxrpc_kernel_abort_call - Allow a kernel service to abort a call
681 * @sock: The socket the call is on
682 * @call: The call to be aborted
683 * @abort_code: The abort code to stick into the ABORT packet
David Howells5a429762016-09-06 22:19:51 +0100684 * @error: Local error value
685 * @why: 3-char string indicating why.
David Howellsdf423a42016-09-02 22:39:45 +0100686 *
David Howells84a4c092017-04-06 10:11:59 +0100687 * Allow a kernel service to abort a call, if it's still in an abortable state
688 * and return true if the call was aborted, false if it was already complete.
David Howellsdf423a42016-09-02 22:39:45 +0100689 */
David Howells84a4c092017-04-06 10:11:59 +0100690bool rxrpc_kernel_abort_call(struct socket *sock, struct rxrpc_call *call,
David Howells5a429762016-09-06 22:19:51 +0100691 u32 abort_code, int error, const char *why)
David Howellsdf423a42016-09-02 22:39:45 +0100692{
David Howells84a4c092017-04-06 10:11:59 +0100693 bool aborted;
694
David Howells5a429762016-09-06 22:19:51 +0100695 _enter("{%d},%d,%d,%s", call->debug_id, abort_code, error, why);
David Howellsdf423a42016-09-02 22:39:45 +0100696
David Howells540b1c42017-02-27 15:43:06 +0000697 mutex_lock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100698
David Howells84a4c092017-04-06 10:11:59 +0100699 aborted = rxrpc_abort_call(why, call, 0, abort_code, error);
700 if (aborted)
David Howells26cb02a2016-10-06 08:11:49 +0100701 rxrpc_send_abort_packet(call);
David Howellsdf423a42016-09-02 22:39:45 +0100702
David Howells540b1c42017-02-27 15:43:06 +0000703 mutex_unlock(&call->user_mutex);
David Howells84a4c092017-04-06 10:11:59 +0100704 return aborted;
David Howellsdf423a42016-09-02 22:39:45 +0100705}
David Howellsdf423a42016-09-02 22:39:45 +0100706EXPORT_SYMBOL(rxrpc_kernel_abort_call);
David Howellse754eba2017-06-07 12:40:03 +0100707
708/**
709 * rxrpc_kernel_set_tx_length - Set the total Tx length on a call
710 * @sock: The socket the call is on
711 * @call: The call to be informed
712 * @tx_total_len: The amount of data to be transmitted for this call
713 *
714 * Allow a kernel service to set the total transmit length on a call. This
715 * allows buffer-to-packet encrypt-and-copy to be performed.
716 *
717 * This function is primarily for use for setting the reply length since the
718 * request length can be set when beginning the call.
719 */
720void rxrpc_kernel_set_tx_length(struct socket *sock, struct rxrpc_call *call,
721 s64 tx_total_len)
722{
723 WARN_ON(call->tx_total_len != -1);
724 call->tx_total_len = tx_total_len;
725}
726EXPORT_SYMBOL(rxrpc_kernel_set_tx_length);