blob: 7d329fb1f553a832e277e12989b8c49ede21ea0e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * SUCS NET3:
4 *
5 * Generic stream handling routines. These are generic for most
6 * protocols. Even IP. Tonight 8-).
7 * This is used because TCP, LLC (others too) layer all have mostly
8 * identical sendmsg() and recvmsg() code.
9 * So we (will) share it here.
10 *
11 * Authors: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
12 * (from old tcp.c code)
Alan Cox113aa832008-10-13 19:01:08 -070013 * Alan Cox <alan@lxorguk.ukuu.org.uk> (Borrowed comments 8-))
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16#include <linux/module.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010017#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/net.h>
19#include <linux/signal.h>
20#include <linux/tcp.h>
21#include <linux/wait.h>
22#include <net/sock.h>
23
24/**
25 * sk_stream_write_space - stream socket write_space callback.
Pavel Pisa4dc3b162005-05-01 08:59:25 -070026 * @sk: socket
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 * FIXME: write proper description
29 */
30void sk_stream_write_space(struct sock *sk)
31{
32 struct socket *sock = sk->sk_socket;
Eric Dumazet43815482010-04-29 11:01:49 +000033 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Eric Dumazet64dc6132013-07-22 20:26:31 -070035 if (sk_stream_is_writeable(sk) && sock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 clear_bit(SOCK_NOSPACE, &sock->flags);
37
Eric Dumazet43815482010-04-29 11:01:49 +000038 rcu_read_lock();
39 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +080040 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -080041 wake_up_interruptible_poll(&wq->wait, EPOLLOUT |
42 EPOLLWRNORM | EPOLLWRBAND);
Eric Dumazet43815482010-04-29 11:01:49 +000043 if (wq && wq->fasync_list && !(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -080044 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Eric Dumazet43815482010-04-29 11:01:49 +000045 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 }
47}
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/**
50 * sk_stream_wait_connect - Wait for a socket to get into the connected state
Pavel Pisa4dc3b162005-05-01 08:59:25 -070051 * @sk: sock to wait on
52 * @timeo_p: for how long to wait
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 *
54 * Must be called with the socket locked.
55 */
56int sk_stream_wait_connect(struct sock *sk, long *timeo_p)
57{
WANG Congd9dc8b02016-11-11 10:20:50 -080058 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct task_struct *tsk = current;
Herbert Xu6151b312005-11-04 09:56:56 +110060 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Herbert Xu6151b312005-11-04 09:56:56 +110062 do {
Benjamin LaHaisec1cbe4b2005-12-13 23:22:19 -080063 int err = sock_error(sk);
64 if (err)
65 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV))
67 return -EPIPE;
68 if (!*timeo_p)
69 return -EAGAIN;
70 if (signal_pending(tsk))
71 return sock_intr_errno(*timeo_p);
72
WANG Congd9dc8b02016-11-11 10:20:50 -080073 add_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 sk->sk_write_pending++;
Herbert Xu6151b312005-11-04 09:56:56 +110075 done = sk_wait_event(sk, timeo_p,
Benjamin LaHaisec1cbe4b2005-12-13 23:22:19 -080076 !sk->sk_err &&
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090077 !((1 << sk->sk_state) &
WANG Congd9dc8b02016-11-11 10:20:50 -080078 ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)), &wait);
79 remove_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 sk->sk_write_pending--;
Herbert Xu6151b312005-11-04 09:56:56 +110081 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83}
Linus Torvalds1da177e2005-04-16 15:20:36 -070084EXPORT_SYMBOL(sk_stream_wait_connect);
85
86/**
87 * sk_stream_closing - Return 1 if we still have things to send in our buffers.
Pavel Pisa4dc3b162005-05-01 08:59:25 -070088 * @sk: socket to verify
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
90static inline int sk_stream_closing(struct sock *sk)
91{
92 return (1 << sk->sk_state) &
93 (TCPF_FIN_WAIT1 | TCPF_CLOSING | TCPF_LAST_ACK);
94}
95
96void sk_stream_wait_close(struct sock *sk, long timeout)
97{
98 if (timeout) {
WANG Congd9dc8b02016-11-11 10:20:50 -080099 DEFINE_WAIT_FUNC(wait, woken_wake_function);
100
101 add_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 do {
WANG Congd9dc8b02016-11-11 10:20:50 -0800104 if (sk_wait_event(sk, &timeout, !sk_stream_closing(sk), &wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 break;
106 } while (!signal_pending(current) && timeout);
107
WANG Congd9dc8b02016-11-11 10:20:50 -0800108 remove_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111EXPORT_SYMBOL(sk_stream_wait_close);
112
113/**
114 * sk_stream_wait_memory - Wait for more memory for a socket
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700115 * @sk: socket to wait for memory
116 * @timeo_p: for how long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118int sk_stream_wait_memory(struct sock *sk, long *timeo_p)
119{
120 int err = 0;
121 long vm_wait = 0;
122 long current_timeo = *timeo_p;
Jason Baron790ba452015-05-06 15:52:23 +0000123 bool noblock = (*timeo_p ? false : true);
WANG Congd9dc8b02016-11-11 10:20:50 -0800124 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (sk_stream_memory_free(sk))
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500127 current_timeo = vm_wait = (prandom_u32() % (HZ / 5)) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
WANG Congd9dc8b02016-11-11 10:20:50 -0800129 add_wait_queue(sk_sleep(sk), &wait);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 while (1) {
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800132 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
135 goto do_error;
Jason Baron790ba452015-05-06 15:52:23 +0000136 if (!*timeo_p) {
137 if (noblock)
138 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto do_nonblock;
Jason Baron790ba452015-05-06 15:52:23 +0000140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (signal_pending(current))
142 goto do_interrupted;
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800143 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (sk_stream_memory_free(sk) && !vm_wait)
145 break;
146
147 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
148 sk->sk_write_pending++;
Nagendra Tomar482964e2010-10-02 23:45:06 +0000149 sk_wait_event(sk, &current_timeo, sk->sk_err ||
150 (sk->sk_shutdown & SEND_SHUTDOWN) ||
151 (sk_stream_memory_free(sk) &&
WANG Congd9dc8b02016-11-11 10:20:50 -0800152 !vm_wait), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 sk->sk_write_pending--;
154
155 if (vm_wait) {
156 vm_wait -= current_timeo;
157 current_timeo = *timeo_p;
158 if (current_timeo != MAX_SCHEDULE_TIMEOUT &&
159 (current_timeo -= vm_wait) < 0)
160 current_timeo = 0;
161 vm_wait = 0;
162 }
163 *timeo_p = current_timeo;
164 }
165out:
WANG Congd9dc8b02016-11-11 10:20:50 -0800166 remove_wait_queue(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return err;
168
169do_error:
170 err = -EPIPE;
171 goto out;
172do_nonblock:
173 err = -EAGAIN;
174 goto out;
175do_interrupted:
176 err = sock_intr_errno(*timeo_p);
177 goto out;
178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179EXPORT_SYMBOL(sk_stream_wait_memory);
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181int sk_stream_error(struct sock *sk, int flags, int err)
182{
183 if (err == -EPIPE)
184 err = sock_error(sk) ? : -EPIPE;
185 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
186 send_sig(SIGPIPE, current, 0);
187 return err;
188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189EXPORT_SYMBOL(sk_stream_error);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191void sk_stream_kill_queues(struct sock *sk)
192{
193 /* First the read buffer. */
194 __skb_queue_purge(&sk->sk_receive_queue);
195
196 /* Next, the error queue. */
197 __skb_queue_purge(&sk->sk_error_queue);
198
199 /* Next, the write queue. */
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700200 WARN_ON(!skb_queue_empty(&sk->sk_write_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* Account for returned memory. */
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800203 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700205 WARN_ON(sk->sk_wmem_queued);
206 WARN_ON(sk->sk_forward_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* It is _impossible_ for the backlog to contain anything
209 * when we get here. All user references to this socket
210 * have gone away, only the net layer knows can touch it.
211 */
212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213EXPORT_SYMBOL(sk_stream_kill_queues);