blob: 6e41b20bf9f86301de750b9b942afad786c10ccf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * SUCS NET3:
3 *
4 * Generic stream handling routines. These are generic for most
5 * protocols. Even IP. Tonight 8-).
6 * This is used because TCP, LLC (others too) layer all have mostly
7 * identical sendmsg() and recvmsg() code.
8 * So we (will) share it here.
9 *
10 * Authors: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
11 * (from old tcp.c code)
Alan Cox113aa832008-10-13 19:01:08 -070012 * Alan Cox <alan@lxorguk.ukuu.org.uk> (Borrowed comments 8-))
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#include <linux/module.h>
16#include <linux/net.h>
17#include <linux/signal.h>
18#include <linux/tcp.h>
19#include <linux/wait.h>
20#include <net/sock.h>
21
22/**
23 * sk_stream_write_space - stream socket write_space callback.
Pavel Pisa4dc3b162005-05-01 08:59:25 -070024 * @sk: socket
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
26 * FIXME: write proper description
27 */
28void sk_stream_write_space(struct sock *sk)
29{
30 struct socket *sock = sk->sk_socket;
Eric Dumazet43815482010-04-29 11:01:49 +000031 struct socket_wq *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Eric Dumazet64dc6132013-07-22 20:26:31 -070033 if (sk_stream_is_writeable(sk) && sock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 clear_bit(SOCK_NOSPACE, &sock->flags);
35
Eric Dumazet43815482010-04-29 11:01:49 +000036 rcu_read_lock();
37 wq = rcu_dereference(sk->sk_wq);
Herbert Xu1ce0bf52015-11-26 13:55:39 +080038 if (skwq_has_sleeper(wq))
Eric Dumazet43815482010-04-29 11:01:49 +000039 wake_up_interruptible_poll(&wq->wait, POLLOUT |
John Dykstra9dc20c52009-05-12 15:34:50 +000040 POLLWRNORM | POLLWRBAND);
Eric Dumazet43815482010-04-29 11:01:49 +000041 if (wq && wq->fasync_list && !(sk->sk_shutdown & SEND_SHUTDOWN))
Eric Dumazetceb5d582015-11-29 20:03:11 -080042 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
Eric Dumazet43815482010-04-29 11:01:49 +000043 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 }
45}
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/**
48 * sk_stream_wait_connect - Wait for a socket to get into the connected state
Pavel Pisa4dc3b162005-05-01 08:59:25 -070049 * @sk: sock to wait on
50 * @timeo_p: for how long to wait
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 *
52 * Must be called with the socket locked.
53 */
54int sk_stream_wait_connect(struct sock *sk, long *timeo_p)
55{
56 struct task_struct *tsk = current;
57 DEFINE_WAIT(wait);
Herbert Xu6151b312005-11-04 09:56:56 +110058 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Herbert Xu6151b312005-11-04 09:56:56 +110060 do {
Benjamin LaHaisec1cbe4b2005-12-13 23:22:19 -080061 int err = sock_error(sk);
62 if (err)
63 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV))
65 return -EPIPE;
66 if (!*timeo_p)
67 return -EAGAIN;
68 if (signal_pending(tsk))
69 return sock_intr_errno(*timeo_p);
70
Eric Dumazetaa395142010-04-20 13:03:51 +000071 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 sk->sk_write_pending++;
Herbert Xu6151b312005-11-04 09:56:56 +110073 done = sk_wait_event(sk, timeo_p,
Benjamin LaHaisec1cbe4b2005-12-13 23:22:19 -080074 !sk->sk_err &&
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090075 !((1 << sk->sk_state) &
Herbert Xu6151b312005-11-04 09:56:56 +110076 ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)));
Eric Dumazetaa395142010-04-20 13:03:51 +000077 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 sk->sk_write_pending--;
Herbert Xu6151b312005-11-04 09:56:56 +110079 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
81}
Linus Torvalds1da177e2005-04-16 15:20:36 -070082EXPORT_SYMBOL(sk_stream_wait_connect);
83
84/**
85 * sk_stream_closing - Return 1 if we still have things to send in our buffers.
Pavel Pisa4dc3b162005-05-01 08:59:25 -070086 * @sk: socket to verify
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88static inline int sk_stream_closing(struct sock *sk)
89{
90 return (1 << sk->sk_state) &
91 (TCPF_FIN_WAIT1 | TCPF_CLOSING | TCPF_LAST_ACK);
92}
93
94void sk_stream_wait_close(struct sock *sk, long timeout)
95{
96 if (timeout) {
97 DEFINE_WAIT(wait);
98
99 do {
Eric Dumazetaa395142010-04-20 13:03:51 +0000100 prepare_to_wait(sk_sleep(sk), &wait,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 TASK_INTERRUPTIBLE);
102 if (sk_wait_event(sk, &timeout, !sk_stream_closing(sk)))
103 break;
104 } while (!signal_pending(current) && timeout);
105
Eric Dumazetaa395142010-04-20 13:03:51 +0000106 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109EXPORT_SYMBOL(sk_stream_wait_close);
110
111/**
112 * sk_stream_wait_memory - Wait for more memory for a socket
Pavel Pisa4dc3b162005-05-01 08:59:25 -0700113 * @sk: socket to wait for memory
114 * @timeo_p: for how long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116int sk_stream_wait_memory(struct sock *sk, long *timeo_p)
117{
118 int err = 0;
119 long vm_wait = 0;
120 long current_timeo = *timeo_p;
121 DEFINE_WAIT(wait);
122
123 if (sk_stream_memory_free(sk))
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500124 current_timeo = vm_wait = (prandom_u32() % (HZ / 5)) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 while (1) {
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800127 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Eric Dumazetaa395142010-04-20 13:03:51 +0000129 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
132 goto do_error;
Eric Dumazetfda20922019-08-16 21:26:22 -0700133 if (!*timeo_p)
134 goto do_eagain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (signal_pending(current))
136 goto do_interrupted;
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800137 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (sk_stream_memory_free(sk) && !vm_wait)
139 break;
140
141 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
142 sk->sk_write_pending++;
Nagendra Tomar482964e2010-10-02 23:45:06 +0000143 sk_wait_event(sk, &current_timeo, sk->sk_err ||
144 (sk->sk_shutdown & SEND_SHUTDOWN) ||
145 (sk_stream_memory_free(sk) &&
146 !vm_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 sk->sk_write_pending--;
148
149 if (vm_wait) {
150 vm_wait -= current_timeo;
151 current_timeo = *timeo_p;
152 if (current_timeo != MAX_SCHEDULE_TIMEOUT &&
153 (current_timeo -= vm_wait) < 0)
154 current_timeo = 0;
155 vm_wait = 0;
156 }
157 *timeo_p = current_timeo;
158 }
159out:
Eric Dumazetaa395142010-04-20 13:03:51 +0000160 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return err;
162
163do_error:
164 err = -EPIPE;
165 goto out;
Eric Dumazetfda20922019-08-16 21:26:22 -0700166do_eagain:
167 /* Make sure that whenever EAGAIN is returned, EPOLLOUT event can
168 * be generated later.
169 * When TCP receives ACK packets that make room, tcp_check_space()
170 * only calls tcp_new_space() if SOCK_NOSPACE is set.
171 */
172 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 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);