blob: 1086c8b280a868101df7b44691eccac40bd7b3e1 [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;
Jason Baron790ba452015-05-06 15:52:23 +0000121 bool noblock = (*timeo_p ? false : true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 DEFINE_WAIT(wait);
123
124 if (sk_stream_memory_free(sk))
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500125 current_timeo = vm_wait = (prandom_u32() % (HZ / 5)) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 while (1) {
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800128 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Eric Dumazetaa395142010-04-20 13:03:51 +0000130 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
133 goto do_error;
Jason Baron790ba452015-05-06 15:52:23 +0000134 if (!*timeo_p) {
135 if (noblock)
136 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 goto do_nonblock;
Jason Baron790ba452015-05-06 15:52:23 +0000138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (signal_pending(current))
140 goto do_interrupted;
Eric Dumazet9cd3e072015-11-29 20:03:10 -0800141 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (sk_stream_memory_free(sk) && !vm_wait)
143 break;
144
145 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
146 sk->sk_write_pending++;
Nagendra Tomar482964e2010-10-02 23:45:06 +0000147 sk_wait_event(sk, &current_timeo, sk->sk_err ||
148 (sk->sk_shutdown & SEND_SHUTDOWN) ||
149 (sk_stream_memory_free(sk) &&
150 !vm_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 sk->sk_write_pending--;
152
153 if (vm_wait) {
154 vm_wait -= current_timeo;
155 current_timeo = *timeo_p;
156 if (current_timeo != MAX_SCHEDULE_TIMEOUT &&
157 (current_timeo -= vm_wait) < 0)
158 current_timeo = 0;
159 vm_wait = 0;
160 }
161 *timeo_p = current_timeo;
162 }
163out:
Eric Dumazetaa395142010-04-20 13:03:51 +0000164 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return err;
166
167do_error:
168 err = -EPIPE;
169 goto out;
170do_nonblock:
171 err = -EAGAIN;
172 goto out;
173do_interrupted:
174 err = sock_intr_errno(*timeo_p);
175 goto out;
176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177EXPORT_SYMBOL(sk_stream_wait_memory);
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179int sk_stream_error(struct sock *sk, int flags, int err)
180{
181 if (err == -EPIPE)
182 err = sock_error(sk) ? : -EPIPE;
183 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
184 send_sig(SIGPIPE, current, 0);
185 return err;
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187EXPORT_SYMBOL(sk_stream_error);
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189void sk_stream_kill_queues(struct sock *sk)
190{
191 /* First the read buffer. */
192 __skb_queue_purge(&sk->sk_receive_queue);
193
194 /* Next, the error queue. */
195 __skb_queue_purge(&sk->sk_error_queue);
196
197 /* Next, the write queue. */
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700198 WARN_ON(!skb_queue_empty(&sk->sk_write_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* Account for returned memory. */
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800201 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700203 WARN_ON(sk->sk_wmem_queued);
204 WARN_ON(sk->sk_forward_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* It is _impossible_ for the backlog to contain anything
207 * when we get here. All user references to this socket
208 * have gone away, only the net layer knows can touch it.
209 */
210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211EXPORT_SYMBOL(sk_stream_kill_queues);