1 // SPDX-License-Identifier: GPL-2.0
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.
12 * (from old tcp.c code)
16 #include <linux/module.h>
17 #include <linux/sched/signal.h>
18 #include <linux/net.h>
19 #include <linux/signal.h>
20 #include <linux/tcp.h>
21 #include <linux/wait.h>
25 * sk_stream_write_space - stream socket write_space callback.
28 * FIXME: write proper description
30 void sk_stream_write_space(struct sock *sk)
32 struct socket *sock = sk->sk_socket;
35 if (sk_stream_is_writeable(sk) && sock) {
36 clear_bit(SOCK_NOSPACE, &sock->flags);
39 wq = rcu_dereference(sk->sk_wq);
40 if (skwq_has_sleeper(wq))
41 wake_up_interruptible_poll(&wq->wait, POLLOUT |
42 POLLWRNORM | POLLWRBAND);
43 if (wq && wq->fasync_list && !(sk->sk_shutdown & SEND_SHUTDOWN))
44 sock_wake_async(wq, SOCK_WAKE_SPACE, POLL_OUT);
50 * sk_stream_wait_connect - Wait for a socket to get into the connected state
51 * @sk: sock to wait on
52 * @timeo_p: for how long to wait
54 * Must be called with the socket locked.
56 int sk_stream_wait_connect(struct sock *sk, long *timeo_p)
58 DEFINE_WAIT_FUNC(wait, woken_wake_function);
59 struct task_struct *tsk = current;
63 int err = sock_error(sk);
66 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV))
70 if (signal_pending(tsk))
71 return sock_intr_errno(*timeo_p);
73 add_wait_queue(sk_sleep(sk), &wait);
74 sk->sk_write_pending++;
75 done = sk_wait_event(sk, timeo_p,
77 !((1 << sk->sk_state) &
78 ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)), &wait);
79 remove_wait_queue(sk_sleep(sk), &wait);
80 sk->sk_write_pending--;
84 EXPORT_SYMBOL(sk_stream_wait_connect);
87 * sk_stream_closing - Return 1 if we still have things to send in our buffers.
88 * @sk: socket to verify
90 static inline int sk_stream_closing(struct sock *sk)
92 return (1 << sk->sk_state) &
93 (TCPF_FIN_WAIT1 | TCPF_CLOSING | TCPF_LAST_ACK);
96 void sk_stream_wait_close(struct sock *sk, long timeout)
99 DEFINE_WAIT_FUNC(wait, woken_wake_function);
101 add_wait_queue(sk_sleep(sk), &wait);
104 if (sk_wait_event(sk, &timeout, !sk_stream_closing(sk), &wait))
106 } while (!signal_pending(current) && timeout);
108 remove_wait_queue(sk_sleep(sk), &wait);
111 EXPORT_SYMBOL(sk_stream_wait_close);
114 * sk_stream_wait_memory - Wait for more memory for a socket
115 * @sk: socket to wait for memory
116 * @timeo_p: for how long
118 int sk_stream_wait_memory(struct sock *sk, long *timeo_p)
122 long current_timeo = *timeo_p;
123 bool noblock = (*timeo_p ? false : true);
124 DEFINE_WAIT_FUNC(wait, woken_wake_function);
126 if (sk_stream_memory_free(sk))
127 current_timeo = vm_wait = (prandom_u32() % (HZ / 5)) + 2;
129 add_wait_queue(sk_sleep(sk), &wait);
132 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
134 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
138 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
141 if (signal_pending(current))
143 sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
144 if (sk_stream_memory_free(sk) && !vm_wait)
147 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
148 sk->sk_write_pending++;
149 sk_wait_event(sk, ¤t_timeo, sk->sk_err ||
150 (sk->sk_shutdown & SEND_SHUTDOWN) ||
151 (sk_stream_memory_free(sk) &&
153 sk->sk_write_pending--;
156 vm_wait -= current_timeo;
157 current_timeo = *timeo_p;
158 if (current_timeo != MAX_SCHEDULE_TIMEOUT &&
159 (current_timeo -= vm_wait) < 0)
163 *timeo_p = current_timeo;
166 remove_wait_queue(sk_sleep(sk), &wait);
176 err = sock_intr_errno(*timeo_p);
179 EXPORT_SYMBOL(sk_stream_wait_memory);
181 int sk_stream_error(struct sock *sk, int flags, int err)
184 err = sock_error(sk) ? : -EPIPE;
185 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
186 send_sig(SIGPIPE, current, 0);
189 EXPORT_SYMBOL(sk_stream_error);
191 void sk_stream_kill_queues(struct sock *sk)
193 /* First the read buffer. */
194 __skb_queue_purge(&sk->sk_receive_queue);
196 /* Next, the error queue. */
197 __skb_queue_purge(&sk->sk_error_queue);
199 /* Next, the write queue. */
200 WARN_ON(!skb_queue_empty(&sk->sk_write_queue));
202 /* Account for returned memory. */
205 WARN_ON(sk->sk_wmem_queued);
206 WARN_ON(sk->sk_forward_alloc);
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.
213 EXPORT_SYMBOL(sk_stream_kill_queues);