blob: 5a4801e7f560d8a9a8ef06d93814f86f469c6dc7 [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 Howells0b58b8a2016-09-02 22:39:45 +010031/*
32 * wait for space to appear in the transmit/ACK window
33 * - caller holds the socket locked
34 */
35static int rxrpc_wait_for_tx_window(struct rxrpc_sock *rx,
36 struct rxrpc_call *call,
37 long *timeo)
38{
39 DECLARE_WAITQUEUE(myself, current);
40 int ret;
41
David Howells248f2192016-09-08 11:10:12 +010042 _enter(",{%u,%u,%u}",
43 call->tx_hard_ack, call->tx_top, call->tx_winsize);
David Howells0b58b8a2016-09-02 22:39:45 +010044
45 add_wait_queue(&call->waitq, &myself);
46
47 for (;;) {
48 set_current_state(TASK_INTERRUPTIBLE);
49 ret = 0;
David Howells57494342016-09-24 18:05:27 +010050 if (call->tx_top - call->tx_hard_ack <
51 min_t(unsigned int, call->tx_winsize,
52 call->cong_cwnd + call->cong_extra))
David Howells0b58b8a2016-09-02 22:39:45 +010053 break;
David Howells248f2192016-09-08 11:10:12 +010054 if (call->state >= RXRPC_CALL_COMPLETE) {
55 ret = -call->error;
56 break;
57 }
David Howells0b58b8a2016-09-02 22:39:45 +010058 if (signal_pending(current)) {
59 ret = sock_intr_errno(*timeo);
60 break;
61 }
62
David Howellsa124fe32016-09-17 10:49:13 +010063 trace_rxrpc_transmit(call, rxrpc_transmit_wait);
David Howells540b1c42017-02-27 15:43:06 +000064 mutex_unlock(&call->user_mutex);
David Howells0b58b8a2016-09-02 22:39:45 +010065 *timeo = schedule_timeout(*timeo);
David Howells540b1c42017-02-27 15:43:06 +000066 if (mutex_lock_interruptible(&call->user_mutex) < 0) {
67 ret = sock_intr_errno(*timeo);
68 break;
69 }
David Howells0b58b8a2016-09-02 22:39:45 +010070 }
71
72 remove_wait_queue(&call->waitq, &myself);
73 set_current_state(TASK_RUNNING);
74 _leave(" = %d", ret);
75 return ret;
76}
77
78/*
David Howells248f2192016-09-08 11:10:12 +010079 * Schedule an instant Tx resend.
David Howells0b58b8a2016-09-02 22:39:45 +010080 */
David Howells248f2192016-09-08 11:10:12 +010081static inline void rxrpc_instant_resend(struct rxrpc_call *call, int ix)
David Howells0b58b8a2016-09-02 22:39:45 +010082{
David Howells248f2192016-09-08 11:10:12 +010083 spin_lock_bh(&call->lock);
84
85 if (call->state < RXRPC_CALL_COMPLETE) {
86 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS;
87 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
David Howells0b58b8a2016-09-02 22:39:45 +010088 rxrpc_queue_call(call);
89 }
David Howells248f2192016-09-08 11:10:12 +010090
91 spin_unlock_bh(&call->lock);
David Howells0b58b8a2016-09-02 22:39:45 +010092}
93
94/*
David Howells248f2192016-09-08 11:10:12 +010095 * Queue a DATA packet for transmission, set the resend timeout and send the
96 * packet immediately
David Howells0b58b8a2016-09-02 22:39:45 +010097 */
98static void rxrpc_queue_packet(struct rxrpc_call *call, struct sk_buff *skb,
99 bool last)
100{
101 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells248f2192016-09-08 11:10:12 +0100102 rxrpc_seq_t seq = sp->hdr.seq;
103 int ret, ix;
David Howells70790db2016-09-23 12:39:22 +0100104 u8 annotation = RXRPC_TX_ANNO_UNACK;
David Howells0b58b8a2016-09-02 22:39:45 +0100105
David Howells248f2192016-09-08 11:10:12 +0100106 _net("queue skb %p [%d]", skb, seq);
David Howells0b58b8a2016-09-02 22:39:45 +0100107
David Howells248f2192016-09-08 11:10:12 +0100108 ASSERTCMP(seq, ==, call->tx_top + 1);
109
David Howells70790db2016-09-23 12:39:22 +0100110 if (last)
111 annotation |= RXRPC_TX_ANNO_LAST;
112
David Howellsb24d2892016-09-23 13:17:33 +0100113 /* We have to set the timestamp before queueing as the retransmit
114 * algorithm can see the packet as soon as we queue it.
115 */
116 skb->tstamp = ktime_get_real();
117
David Howells248f2192016-09-08 11:10:12 +0100118 ix = seq & RXRPC_RXTX_BUFF_MASK;
David Howells71f3ca42016-09-17 10:49:14 +0100119 rxrpc_get_skb(skb, rxrpc_skb_tx_got);
David Howells70790db2016-09-23 12:39:22 +0100120 call->rxtx_annotations[ix] = annotation;
David Howells0b58b8a2016-09-02 22:39:45 +0100121 smp_wmb();
David Howells248f2192016-09-08 11:10:12 +0100122 call->rxtx_buffer[ix] = skb;
123 call->tx_top = seq;
David Howells70790db2016-09-23 12:39:22 +0100124 if (last)
David Howellsa124fe32016-09-17 10:49:13 +0100125 trace_rxrpc_transmit(call, rxrpc_transmit_queue_last);
David Howells70790db2016-09-23 12:39:22 +0100126 else
David Howellsa124fe32016-09-17 10:49:13 +0100127 trace_rxrpc_transmit(call, rxrpc_transmit_queue);
David Howells0b58b8a2016-09-02 22:39:45 +0100128
129 if (last || call->state == RXRPC_CALL_SERVER_ACK_REQUEST) {
130 _debug("________awaiting reply/ACK__________");
131 write_lock_bh(&call->state_lock);
132 switch (call->state) {
133 case RXRPC_CALL_CLIENT_SEND_REQUEST:
134 call->state = RXRPC_CALL_CLIENT_AWAIT_REPLY;
135 break;
136 case RXRPC_CALL_SERVER_ACK_REQUEST:
137 call->state = RXRPC_CALL_SERVER_SEND_REPLY;
David Howells9749fd22016-10-06 08:11:50 +0100138 call->ack_at = call->expire_at;
139 if (call->ackr_reason == RXRPC_ACK_DELAY)
140 call->ackr_reason = 0;
141 __rxrpc_set_timer(call, rxrpc_timer_init_for_send_reply,
142 ktime_get_real());
David Howells0b58b8a2016-09-02 22:39:45 +0100143 if (!last)
144 break;
145 case RXRPC_CALL_SERVER_SEND_REPLY:
146 call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
147 break;
148 default:
149 break;
150 }
151 write_unlock_bh(&call->state_lock);
152 }
153
David Howells248f2192016-09-08 11:10:12 +0100154 if (seq == 1 && rxrpc_is_client_call(call))
155 rxrpc_expose_client_call(call);
156
David Howellsa1767072016-09-29 22:37:15 +0100157 ret = rxrpc_send_data_packet(call, skb, false);
David Howells0b58b8a2016-09-02 22:39:45 +0100158 if (ret < 0) {
159 _debug("need instant resend %d", ret);
David Howells248f2192016-09-08 11:10:12 +0100160 rxrpc_instant_resend(call, ix);
David Howellsdfc3da42016-09-23 12:39:23 +0100161 } else {
David Howellsdf0adc72016-09-26 22:12:49 +0100162 ktime_t now = ktime_get_real(), resend_at;
David Howellsdfc3da42016-09-23 12:39:23 +0100163
David Howellsdf0adc72016-09-26 22:12:49 +0100164 resend_at = ktime_add_ms(now, rxrpc_resend_timeout);
David Howellsdfc3da42016-09-23 12:39:23 +0100165
David Howellsdf0adc72016-09-26 22:12:49 +0100166 if (ktime_before(resend_at, call->resend_at)) {
David Howellsdfc3da42016-09-23 12:39:23 +0100167 call->resend_at = resend_at;
David Howellsdf0adc72016-09-26 22:12:49 +0100168 rxrpc_set_timer(call, rxrpc_timer_set_for_send, now);
David Howellsdfc3da42016-09-23 12:39:23 +0100169 }
David Howells0b58b8a2016-09-02 22:39:45 +0100170 }
171
David Howells71f3ca42016-09-17 10:49:14 +0100172 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells0b58b8a2016-09-02 22:39:45 +0100173 _leave("");
174}
175
176/*
David Howells0b58b8a2016-09-02 22:39:45 +0100177 * send data through a socket
178 * - must be called in process context
David Howells540b1c42017-02-27 15:43:06 +0000179 * - The caller holds the call user access mutex, but not the socket lock.
David Howells0b58b8a2016-09-02 22:39:45 +0100180 */
181static int rxrpc_send_data(struct rxrpc_sock *rx,
182 struct rxrpc_call *call,
183 struct msghdr *msg, size_t len)
184{
185 struct rxrpc_skb_priv *sp;
186 struct sk_buff *skb;
187 struct sock *sk = &rx->sk;
188 long timeo;
189 bool more;
190 int ret, copied;
191
192 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
193
194 /* this should be in poll */
195 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
196
197 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
198 return -EPIPE;
199
200 more = msg->msg_flags & MSG_MORE;
201
202 skb = call->tx_pending;
203 call->tx_pending = NULL;
David Howells71f3ca42016-09-17 10:49:14 +0100204 rxrpc_see_skb(skb, rxrpc_skb_tx_seen);
David Howells0b58b8a2016-09-02 22:39:45 +0100205
206 copied = 0;
207 do {
David Howells7aa51da2016-09-22 00:29:31 +0100208 /* Check to see if there's a ping ACK to reply to. */
209 if (call->ackr_reason == RXRPC_ACK_PING_RESPONSE)
David Howellsa5af7e12016-10-06 08:11:49 +0100210 rxrpc_send_ack_packet(call, false);
David Howells7aa51da2016-09-22 00:29:31 +0100211
David Howells0b58b8a2016-09-02 22:39:45 +0100212 if (!skb) {
213 size_t size, chunk, max, space;
214
215 _debug("alloc");
216
David Howells248f2192016-09-08 11:10:12 +0100217 if (call->tx_top - call->tx_hard_ack >=
David Howells57494342016-09-24 18:05:27 +0100218 min_t(unsigned int, call->tx_winsize,
219 call->cong_cwnd + call->cong_extra)) {
David Howells0b58b8a2016-09-02 22:39:45 +0100220 ret = -EAGAIN;
221 if (msg->msg_flags & MSG_DONTWAIT)
222 goto maybe_error;
223 ret = rxrpc_wait_for_tx_window(rx, call,
224 &timeo);
225 if (ret < 0)
226 goto maybe_error;
227 }
228
David Howells182f5052016-09-17 10:49:12 +0100229 max = RXRPC_JUMBO_DATALEN;
David Howells0b58b8a2016-09-02 22:39:45 +0100230 max -= call->conn->security_size;
231 max &= ~(call->conn->size_align - 1UL);
232
233 chunk = max;
234 if (chunk > msg_data_left(msg) && !more)
235 chunk = msg_data_left(msg);
236
237 space = chunk + call->conn->size_align;
238 space &= ~(call->conn->size_align - 1UL);
239
David Howells5a924b82016-09-22 00:29:31 +0100240 size = space + call->conn->security_size;
David Howells0b58b8a2016-09-02 22:39:45 +0100241
242 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
243
244 /* create a buffer that we can retain until it's ACK'd */
245 skb = sock_alloc_send_skb(
246 sk, size, msg->msg_flags & MSG_DONTWAIT, &ret);
247 if (!skb)
248 goto maybe_error;
249
David Howells71f3ca42016-09-17 10:49:14 +0100250 rxrpc_new_skb(skb, rxrpc_skb_tx_new);
David Howells0b58b8a2016-09-02 22:39:45 +0100251
252 _debug("ALLOC SEND %p", skb);
253
254 ASSERTCMP(skb->mark, ==, 0);
255
David Howells5a924b82016-09-22 00:29:31 +0100256 _debug("HS: %u", call->conn->security_size);
257 skb_reserve(skb, call->conn->security_size);
258 skb->len += call->conn->security_size;
David Howells0b58b8a2016-09-02 22:39:45 +0100259
260 sp = rxrpc_skb(skb);
261 sp->remain = chunk;
262 if (sp->remain > skb_tailroom(skb))
263 sp->remain = skb_tailroom(skb);
264
265 _net("skb: hr %d, tr %d, hl %d, rm %d",
266 skb_headroom(skb),
267 skb_tailroom(skb),
268 skb_headlen(skb),
269 sp->remain);
270
271 skb->ip_summed = CHECKSUM_UNNECESSARY;
272 }
273
274 _debug("append");
275 sp = rxrpc_skb(skb);
276
277 /* append next segment of data to the current buffer */
278 if (msg_data_left(msg) > 0) {
279 int copy = skb_tailroom(skb);
280 ASSERTCMP(copy, >, 0);
281 if (copy > msg_data_left(msg))
282 copy = msg_data_left(msg);
283 if (copy > sp->remain)
284 copy = sp->remain;
285
286 _debug("add");
287 ret = skb_add_data(skb, &msg->msg_iter, copy);
288 _debug("added");
289 if (ret < 0)
290 goto efault;
291 sp->remain -= copy;
292 skb->mark += copy;
293 copied += copy;
294 }
295
296 /* check for the far side aborting the call or a network error
297 * occurring */
298 if (call->state == RXRPC_CALL_COMPLETE)
299 goto call_terminated;
300
301 /* add the packet to the send queue if it's now full */
302 if (sp->remain <= 0 ||
303 (msg_data_left(msg) == 0 && !more)) {
304 struct rxrpc_connection *conn = call->conn;
305 uint32_t seq;
306 size_t pad;
307
308 /* pad out if we're using security */
309 if (conn->security_ix) {
310 pad = conn->security_size + skb->mark;
311 pad = conn->size_align - pad;
312 pad &= conn->size_align - 1;
313 _debug("pad %zu", pad);
314 if (pad)
315 memset(skb_put(skb, pad), 0, pad);
316 }
317
David Howells248f2192016-09-08 11:10:12 +0100318 seq = call->tx_top + 1;
David Howells0b58b8a2016-09-02 22:39:45 +0100319
David Howells0b58b8a2016-09-02 22:39:45 +0100320 sp->hdr.seq = seq;
David Howells0b58b8a2016-09-02 22:39:45 +0100321 sp->hdr._rsvd = 0;
David Howells5a924b82016-09-22 00:29:31 +0100322 sp->hdr.flags = conn->out_clientflag;
David Howells0b58b8a2016-09-02 22:39:45 +0100323
David Howells0b58b8a2016-09-02 22:39:45 +0100324 if (msg_data_left(msg) == 0 && !more)
325 sp->hdr.flags |= RXRPC_LAST_PACKET;
David Howells248f2192016-09-08 11:10:12 +0100326 else if (call->tx_top - call->tx_hard_ack <
327 call->tx_winsize)
David Howells0b58b8a2016-09-02 22:39:45 +0100328 sp->hdr.flags |= RXRPC_MORE_PACKETS;
David Howells0b58b8a2016-09-02 22:39:45 +0100329
330 ret = conn->security->secure_packet(
David Howells5a924b82016-09-22 00:29:31 +0100331 call, skb, skb->mark, skb->head);
David Howells0b58b8a2016-09-02 22:39:45 +0100332 if (ret < 0)
333 goto out;
334
David Howells0b58b8a2016-09-02 22:39:45 +0100335 rxrpc_queue_packet(call, skb, !msg_data_left(msg) && !more);
336 skb = NULL;
337 }
338 } while (msg_data_left(msg) > 0);
339
340success:
341 ret = copied;
342out:
343 call->tx_pending = skb;
344 _leave(" = %d", ret);
345 return ret;
346
347call_terminated:
David Howells71f3ca42016-09-17 10:49:14 +0100348 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells0b58b8a2016-09-02 22:39:45 +0100349 _leave(" = %d", -call->error);
David Howells248f2192016-09-08 11:10:12 +0100350 return -call->error;
David Howells0b58b8a2016-09-02 22:39:45 +0100351
352maybe_error:
353 if (copied)
354 goto success;
355 goto out;
356
357efault:
358 ret = -EFAULT;
359 goto out;
360}
David Howellsdf423a42016-09-02 22:39:45 +0100361
362/*
363 * extract control messages from the sendmsg() control buffer
364 */
365static int rxrpc_sendmsg_cmsg(struct msghdr *msg,
366 unsigned long *user_call_ID,
367 enum rxrpc_command *command,
368 u32 *abort_code,
David Howells4e255722017-06-05 14:30:49 +0100369 bool *_exclusive,
370 bool *_upgrade)
David Howellsdf423a42016-09-02 22:39:45 +0100371{
372 struct cmsghdr *cmsg;
373 bool got_user_ID = false;
374 int len;
375
376 *command = RXRPC_CMD_SEND_DATA;
377
378 if (msg->msg_controllen == 0)
379 return -EINVAL;
380
381 for_each_cmsghdr(cmsg, msg) {
382 if (!CMSG_OK(msg, cmsg))
383 return -EINVAL;
384
yuan linyu1ff8ceb2017-01-03 20:42:17 +0800385 len = cmsg->cmsg_len - sizeof(struct cmsghdr);
David Howellsdf423a42016-09-02 22:39:45 +0100386 _debug("CMSG %d, %d, %d",
387 cmsg->cmsg_level, cmsg->cmsg_type, len);
388
389 if (cmsg->cmsg_level != SOL_RXRPC)
390 continue;
391
392 switch (cmsg->cmsg_type) {
393 case RXRPC_USER_CALL_ID:
394 if (msg->msg_flags & MSG_CMSG_COMPAT) {
395 if (len != sizeof(u32))
396 return -EINVAL;
397 *user_call_ID = *(u32 *) CMSG_DATA(cmsg);
398 } else {
399 if (len != sizeof(unsigned long))
400 return -EINVAL;
401 *user_call_ID = *(unsigned long *)
402 CMSG_DATA(cmsg);
403 }
404 _debug("User Call ID %lx", *user_call_ID);
405 got_user_ID = true;
406 break;
407
408 case RXRPC_ABORT:
409 if (*command != RXRPC_CMD_SEND_DATA)
410 return -EINVAL;
411 *command = RXRPC_CMD_SEND_ABORT;
412 if (len != sizeof(*abort_code))
413 return -EINVAL;
414 *abort_code = *(unsigned int *) CMSG_DATA(cmsg);
415 _debug("Abort %x", *abort_code);
416 if (*abort_code == 0)
417 return -EINVAL;
418 break;
419
420 case RXRPC_ACCEPT:
421 if (*command != RXRPC_CMD_SEND_DATA)
422 return -EINVAL;
423 *command = RXRPC_CMD_ACCEPT;
424 if (len != 0)
425 return -EINVAL;
426 break;
427
428 case RXRPC_EXCLUSIVE_CALL:
429 *_exclusive = true;
430 if (len != 0)
431 return -EINVAL;
432 break;
David Howells4e255722017-06-05 14:30:49 +0100433
434 case RXRPC_UPGRADE_SERVICE:
435 *_upgrade = true;
436 if (len != 0)
437 return -EINVAL;
438 break;
439
David Howellsdf423a42016-09-02 22:39:45 +0100440 default:
441 return -EINVAL;
442 }
443 }
444
445 if (!got_user_ID)
446 return -EINVAL;
447 _leave(" = 0");
448 return 0;
449}
450
451/*
David Howellsdf423a42016-09-02 22:39:45 +0100452 * Create a new client call for sendmsg().
David Howells540b1c42017-02-27 15:43:06 +0000453 * - Called with the socket lock held, which it must release.
454 * - If it returns a call, the call's lock will need releasing by the caller.
David Howellsdf423a42016-09-02 22:39:45 +0100455 */
456static struct rxrpc_call *
457rxrpc_new_client_call_for_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg,
David Howells4e255722017-06-05 14:30:49 +0100458 unsigned long user_call_ID, bool exclusive,
459 bool upgrade)
David Howells540b1c42017-02-27 15:43:06 +0000460 __releases(&rx->sk.sk_lock.slock)
David Howellsdf423a42016-09-02 22:39:45 +0100461{
462 struct rxrpc_conn_parameters cp;
463 struct rxrpc_call *call;
464 struct key *key;
465
466 DECLARE_SOCKADDR(struct sockaddr_rxrpc *, srx, msg->msg_name);
467
468 _enter("");
469
David Howells540b1c42017-02-27 15:43:06 +0000470 if (!msg->msg_name) {
471 release_sock(&rx->sk);
David Howellsdf423a42016-09-02 22:39:45 +0100472 return ERR_PTR(-EDESTADDRREQ);
David Howells540b1c42017-02-27 15:43:06 +0000473 }
David Howellsdf423a42016-09-02 22:39:45 +0100474
475 key = rx->key;
476 if (key && !rx->key->payload.data[0])
477 key = NULL;
478
479 memset(&cp, 0, sizeof(cp));
480 cp.local = rx->local;
481 cp.key = rx->key;
482 cp.security_level = rx->min_sec_level;
483 cp.exclusive = rx->exclusive | exclusive;
David Howells4e255722017-06-05 14:30:49 +0100484 cp.upgrade = upgrade;
David Howellsdf423a42016-09-02 22:39:45 +0100485 cp.service_id = srx->srx_service;
486 call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, GFP_KERNEL);
David Howells540b1c42017-02-27 15:43:06 +0000487 /* The socket is now unlocked */
David Howellsdf423a42016-09-02 22:39:45 +0100488
489 _leave(" = %p\n", call);
490 return call;
491}
492
493/*
494 * send a message forming part of a client call through an RxRPC socket
495 * - caller holds the socket locked
496 * - the socket may be either a client socket or a server socket
497 */
498int rxrpc_do_sendmsg(struct rxrpc_sock *rx, struct msghdr *msg, size_t len)
David Howells540b1c42017-02-27 15:43:06 +0000499 __releases(&rx->sk.sk_lock.slock)
David Howellsdf423a42016-09-02 22:39:45 +0100500{
David Howells146d8fe2017-03-04 00:01:41 +0000501 enum rxrpc_call_state state;
David Howellsdf423a42016-09-02 22:39:45 +0100502 enum rxrpc_command cmd;
503 struct rxrpc_call *call;
504 unsigned long user_call_ID = 0;
505 bool exclusive = false;
David Howells4e255722017-06-05 14:30:49 +0100506 bool upgrade = true;
David Howellsdf423a42016-09-02 22:39:45 +0100507 u32 abort_code = 0;
508 int ret;
509
510 _enter("");
511
512 ret = rxrpc_sendmsg_cmsg(msg, &user_call_ID, &cmd, &abort_code,
David Howells4e255722017-06-05 14:30:49 +0100513 &exclusive, &upgrade);
David Howellsdf423a42016-09-02 22:39:45 +0100514 if (ret < 0)
David Howells540b1c42017-02-27 15:43:06 +0000515 goto error_release_sock;
David Howellsdf423a42016-09-02 22:39:45 +0100516
517 if (cmd == RXRPC_CMD_ACCEPT) {
David Howells540b1c42017-02-27 15:43:06 +0000518 ret = -EINVAL;
David Howellsdf423a42016-09-02 22:39:45 +0100519 if (rx->sk.sk_state != RXRPC_SERVER_LISTENING)
David Howells540b1c42017-02-27 15:43:06 +0000520 goto error_release_sock;
David Howellsdf423a42016-09-02 22:39:45 +0100521 call = rxrpc_accept_call(rx, user_call_ID, NULL);
David Howells540b1c42017-02-27 15:43:06 +0000522 /* The socket is now unlocked. */
David Howellsdf423a42016-09-02 22:39:45 +0100523 if (IS_ERR(call))
524 return PTR_ERR(call);
David Howellsfff724292016-09-07 14:34:21 +0100525 rxrpc_put_call(call, rxrpc_call_put);
David Howellsdf423a42016-09-02 22:39:45 +0100526 return 0;
527 }
528
529 call = rxrpc_find_call_by_user_ID(rx, user_call_ID);
530 if (!call) {
David Howells540b1c42017-02-27 15:43:06 +0000531 ret = -EBADSLT;
David Howellsdf423a42016-09-02 22:39:45 +0100532 if (cmd != RXRPC_CMD_SEND_DATA)
David Howells540b1c42017-02-27 15:43:06 +0000533 goto error_release_sock;
David Howellsdf423a42016-09-02 22:39:45 +0100534 call = rxrpc_new_client_call_for_sendmsg(rx, msg, user_call_ID,
David Howells4e255722017-06-05 14:30:49 +0100535 exclusive, upgrade);
David Howells540b1c42017-02-27 15:43:06 +0000536 /* The socket is now unlocked... */
David Howellsdf423a42016-09-02 22:39:45 +0100537 if (IS_ERR(call))
538 return PTR_ERR(call);
David Howells540b1c42017-02-27 15:43:06 +0000539 /* ... and we have the call lock. */
540 } else {
David Howells146d8fe2017-03-04 00:01:41 +0000541 switch (READ_ONCE(call->state)) {
542 case RXRPC_CALL_UNINITIALISED:
543 case RXRPC_CALL_CLIENT_AWAIT_CONN:
544 case RXRPC_CALL_SERVER_PREALLOC:
545 case RXRPC_CALL_SERVER_SECURING:
546 case RXRPC_CALL_SERVER_ACCEPTING:
547 ret = -EBUSY;
David Howells37411ca2017-03-02 23:48:52 +0000548 goto error_release_sock;
David Howells146d8fe2017-03-04 00:01:41 +0000549 default:
550 break;
551 }
David Howells37411ca2017-03-02 23:48:52 +0000552
David Howells540b1c42017-02-27 15:43:06 +0000553 ret = mutex_lock_interruptible(&call->user_mutex);
554 release_sock(&rx->sk);
555 if (ret < 0) {
556 ret = -ERESTARTSYS;
557 goto error_put;
558 }
David Howellsdf423a42016-09-02 22:39:45 +0100559 }
560
David Howells146d8fe2017-03-04 00:01:41 +0000561 state = READ_ONCE(call->state);
David Howellsdf423a42016-09-02 22:39:45 +0100562 _debug("CALL %d USR %lx ST %d on CONN %p",
David Howells146d8fe2017-03-04 00:01:41 +0000563 call->debug_id, call->user_call_ID, state, call->conn);
David Howellsdf423a42016-09-02 22:39:45 +0100564
David Howells146d8fe2017-03-04 00:01:41 +0000565 if (state >= RXRPC_CALL_COMPLETE) {
David Howellsdf423a42016-09-02 22:39:45 +0100566 /* it's too late for this call */
567 ret = -ESHUTDOWN;
568 } else if (cmd == RXRPC_CMD_SEND_ABORT) {
David Howellsdf423a42016-09-02 22:39:45 +0100569 ret = 0;
David Howells3a927892017-04-06 10:11:56 +0100570 if (rxrpc_abort_call("CMD", call, 0, abort_code, -ECONNABORTED))
David Howells26cb02a2016-10-06 08:11:49 +0100571 ret = rxrpc_send_abort_packet(call);
David Howellsdf423a42016-09-02 22:39:45 +0100572 } else if (cmd != RXRPC_CMD_SEND_DATA) {
573 ret = -EINVAL;
574 } else if (rxrpc_is_client_call(call) &&
David Howells146d8fe2017-03-04 00:01:41 +0000575 state != RXRPC_CALL_CLIENT_SEND_REQUEST) {
David Howellsdf423a42016-09-02 22:39:45 +0100576 /* request phase complete for this client call */
577 ret = -EPROTO;
578 } else if (rxrpc_is_service_call(call) &&
David Howells146d8fe2017-03-04 00:01:41 +0000579 state != RXRPC_CALL_SERVER_ACK_REQUEST &&
580 state != RXRPC_CALL_SERVER_SEND_REPLY) {
David Howellsdf423a42016-09-02 22:39:45 +0100581 /* Reply phase not begun or not complete for service call. */
582 ret = -EPROTO;
583 } else {
584 ret = rxrpc_send_data(rx, call, msg, len);
585 }
586
David Howells540b1c42017-02-27 15:43:06 +0000587 mutex_unlock(&call->user_mutex);
588error_put:
David Howellsfff724292016-09-07 14:34:21 +0100589 rxrpc_put_call(call, rxrpc_call_put);
David Howellsdf423a42016-09-02 22:39:45 +0100590 _leave(" = %d", ret);
591 return ret;
David Howells540b1c42017-02-27 15:43:06 +0000592
593error_release_sock:
594 release_sock(&rx->sk);
595 return ret;
David Howellsdf423a42016-09-02 22:39:45 +0100596}
597
598/**
599 * rxrpc_kernel_send_data - Allow a kernel service to send data on a call
600 * @sock: The socket the call is on
601 * @call: The call to send data through
602 * @msg: The data to send
603 * @len: The amount of data to send
604 *
605 * Allow a kernel service to send data on a call. The call must be in an state
606 * appropriate to sending data. No control data should be supplied in @msg,
607 * nor should an address be supplied. MSG_MORE should be flagged if there's
608 * more data to come, otherwise this data will end the transmission phase.
609 */
610int rxrpc_kernel_send_data(struct socket *sock, struct rxrpc_call *call,
611 struct msghdr *msg, size_t len)
612{
613 int ret;
614
615 _enter("{%d,%s},", call->debug_id, rxrpc_call_states[call->state]);
616
617 ASSERTCMP(msg->msg_name, ==, NULL);
618 ASSERTCMP(msg->msg_control, ==, NULL);
619
David Howells540b1c42017-02-27 15:43:06 +0000620 mutex_lock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100621
622 _debug("CALL %d USR %lx ST %d on CONN %p",
623 call->debug_id, call->user_call_ID, call->state, call->conn);
624
David Howells146d8fe2017-03-04 00:01:41 +0000625 switch (READ_ONCE(call->state)) {
626 case RXRPC_CALL_CLIENT_SEND_REQUEST:
627 case RXRPC_CALL_SERVER_ACK_REQUEST:
628 case RXRPC_CALL_SERVER_SEND_REPLY:
David Howellsdf423a42016-09-02 22:39:45 +0100629 ret = rxrpc_send_data(rxrpc_sk(sock->sk), call, msg, len);
David Howells146d8fe2017-03-04 00:01:41 +0000630 break;
631 case RXRPC_CALL_COMPLETE:
David Howells6fc166d2017-03-09 08:10:32 +0000632 read_lock_bh(&call->state_lock);
633 ret = -call->error;
634 read_unlock_bh(&call->state_lock);
David Howells146d8fe2017-03-04 00:01:41 +0000635 break;
636 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100637 /* Request phase complete for this client call */
638 trace_rxrpc_rx_eproto(call, 0, tracepoint_string("late_send"));
David Howells146d8fe2017-03-04 00:01:41 +0000639 ret = -EPROTO;
640 break;
David Howellsdf423a42016-09-02 22:39:45 +0100641 }
642
David Howells540b1c42017-02-27 15:43:06 +0000643 mutex_unlock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100644 _leave(" = %d", ret);
645 return ret;
646}
647EXPORT_SYMBOL(rxrpc_kernel_send_data);
648
649/**
650 * rxrpc_kernel_abort_call - Allow a kernel service to abort a call
651 * @sock: The socket the call is on
652 * @call: The call to be aborted
653 * @abort_code: The abort code to stick into the ABORT packet
David Howells5a429762016-09-06 22:19:51 +0100654 * @error: Local error value
655 * @why: 3-char string indicating why.
David Howellsdf423a42016-09-02 22:39:45 +0100656 *
David Howells84a4c092017-04-06 10:11:59 +0100657 * Allow a kernel service to abort a call, if it's still in an abortable state
658 * and return true if the call was aborted, false if it was already complete.
David Howellsdf423a42016-09-02 22:39:45 +0100659 */
David Howells84a4c092017-04-06 10:11:59 +0100660bool rxrpc_kernel_abort_call(struct socket *sock, struct rxrpc_call *call,
David Howells5a429762016-09-06 22:19:51 +0100661 u32 abort_code, int error, const char *why)
David Howellsdf423a42016-09-02 22:39:45 +0100662{
David Howells84a4c092017-04-06 10:11:59 +0100663 bool aborted;
664
David Howells5a429762016-09-06 22:19:51 +0100665 _enter("{%d},%d,%d,%s", call->debug_id, abort_code, error, why);
David Howellsdf423a42016-09-02 22:39:45 +0100666
David Howells540b1c42017-02-27 15:43:06 +0000667 mutex_lock(&call->user_mutex);
David Howellsdf423a42016-09-02 22:39:45 +0100668
David Howells84a4c092017-04-06 10:11:59 +0100669 aborted = rxrpc_abort_call(why, call, 0, abort_code, error);
670 if (aborted)
David Howells26cb02a2016-10-06 08:11:49 +0100671 rxrpc_send_abort_packet(call);
David Howellsdf423a42016-09-02 22:39:45 +0100672
David Howells540b1c42017-02-27 15:43:06 +0000673 mutex_unlock(&call->user_mutex);
David Howells84a4c092017-04-06 10:11:59 +0100674 return aborted;
David Howellsdf423a42016-09-02 22:39:45 +0100675}
676
677EXPORT_SYMBOL(rxrpc_kernel_abort_call);