1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * NET Generic infrastructure for Network protocols.
5 * Definitions for request_sock
7 * Authors: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
9 * From code originally in include/net/tcp.h
11 #ifndef _REQUEST_SOCK_H
12 #define _REQUEST_SOCK_H
14 #include <linux/slab.h>
15 #include <linux/spinlock.h>
16 #include <linux/types.h>
17 #include <linux/bug.h>
18 #include <linux/refcount.h>
21 #include <net/rstreason.h>
28 struct request_sock_ops
{
30 unsigned int obj_size
;
31 struct kmem_cache
*slab
;
33 int (*rtx_syn_ack
)(const struct sock
*sk
,
34 struct request_sock
*req
);
35 void (*send_ack
)(const struct sock
*sk
, struct sk_buff
*skb
,
36 struct request_sock
*req
);
37 void (*send_reset
)(const struct sock
*sk
,
39 enum sk_rst_reason reason
);
40 void (*destructor
)(struct request_sock
*req
);
41 void (*syn_ack_timeout
)(const struct request_sock
*req
);
44 int inet_rtx_syn_ack(const struct sock
*parent
, struct request_sock
*req
);
53 /* struct request_sock - mini sock to represent a connection request
56 struct sock_common __req_common
;
57 #define rsk_refcnt __req_common.skc_refcnt
58 #define rsk_hash __req_common.skc_hash
59 #define rsk_listener __req_common.skc_listener
60 #define rsk_window_clamp __req_common.skc_window_clamp
61 #define rsk_rcv_wnd __req_common.skc_rcv_wnd
63 struct request_sock
*dl_next
;
65 u8 num_retrans
; /* number of retransmits */
66 u8 syncookie
:1; /* True if
67 * 1) tcpopts needs to be encoded in
69 * 2) ACK is validated by BPF kfunc.
71 u8 num_timeout
:7; /* number of timeouts */
73 struct timer_list rsk_timer
;
74 const struct request_sock_ops
*rsk_ops
;
76 struct saved_syn
*saved_syn
;
82 static inline struct request_sock
*inet_reqsk(const struct sock
*sk
)
84 return (struct request_sock
*)sk
;
87 static inline struct sock
*req_to_sk(struct request_sock
*req
)
89 return (struct sock
*)req
;
93 * skb_steal_sock - steal a socket from an sk_buff
94 * @skb: sk_buff to steal the socket from
95 * @refcounted: is set to true if the socket is reference-counted
96 * @prefetched: is set to true if the socket was assigned from bpf
98 static inline struct sock
*skb_steal_sock(struct sk_buff
*skb
,
99 bool *refcounted
, bool *prefetched
)
101 struct sock
*sk
= skb
->sk
;
109 *prefetched
= skb_sk_is_prefetched(skb
);
111 #if IS_ENABLED(CONFIG_SYN_COOKIES)
112 if (sk
->sk_state
== TCP_NEW_SYN_RECV
&& inet_reqsk(sk
)->syncookie
) {
113 struct request_sock
*req
= inet_reqsk(sk
);
116 sk
= req
->rsk_listener
;
117 req
->rsk_listener
= NULL
;
121 *refcounted
= sk_is_refcounted(sk
);
126 skb
->destructor
= NULL
;
131 static inline void __reqsk_free(struct request_sock
*req
)
133 req
->rsk_ops
->destructor(req
);
134 if (req
->rsk_listener
)
135 sock_put(req
->rsk_listener
);
136 kfree(req
->saved_syn
);
137 kmem_cache_free(req
->rsk_ops
->slab
, req
);
140 static inline void reqsk_free(struct request_sock
*req
)
142 DEBUG_NET_WARN_ON_ONCE(refcount_read(&req
->rsk_refcnt
) != 0);
146 static inline void reqsk_put(struct request_sock
*req
)
148 if (refcount_dec_and_test(&req
->rsk_refcnt
))
153 * For a TCP Fast Open listener -
154 * lock - protects the access to all the reqsk, which is co-owned by
155 * the listener and the child socket.
156 * qlen - pending TFO requests (still in TCP_SYN_RECV).
157 * max_qlen - max TFO reqs allowed before TFO is disabled.
159 * XXX (TFO) - ideally these fields can be made as part of "listen_sock"
160 * structure above. But there is some implementation difficulty due to
161 * listen_sock being part of request_sock_queue hence will be freed when
162 * a listener is stopped. But TFO related fields may continue to be
163 * accessed even after a listener is closed, until its sk_refcnt drops
164 * to 0 implying no more outstanding TFO reqs. One solution is to keep
165 * listen_opt around until sk_refcnt drops to 0. But there is some other
166 * complexity that needs to be resolved. E.g., a listener can be disabled
167 * temporarily through shutdown()->tcp_disconnect(), and re-enabled later.
169 struct fastopen_queue
{
170 struct request_sock
*rskq_rst_head
; /* Keep track of past TFO */
171 struct request_sock
*rskq_rst_tail
; /* requests that caused RST.
172 * This is part of the defense
173 * against spoofing attack.
176 int qlen
; /* # of pending (TCP_SYN_RECV) reqs */
177 int max_qlen
; /* != 0 iff TFO is currently enabled */
179 struct tcp_fastopen_context __rcu
*ctx
; /* cipher context for cookie */
182 /** struct request_sock_queue - queue of request_socks
184 * @rskq_accept_head - FIFO head of established children
185 * @rskq_accept_tail - FIFO tail of established children
186 * @rskq_defer_accept - User waits for some data after accept()
189 struct request_sock_queue
{
190 spinlock_t rskq_lock
;
191 u8 rskq_defer_accept
;
197 struct request_sock
*rskq_accept_head
;
198 struct request_sock
*rskq_accept_tail
;
199 struct fastopen_queue fastopenq
; /* Check max_qlen != 0 to determine
204 void reqsk_queue_alloc(struct request_sock_queue
*queue
);
206 void reqsk_fastopen_remove(struct sock
*sk
, struct request_sock
*req
,
209 static inline bool reqsk_queue_empty(const struct request_sock_queue
*queue
)
211 return READ_ONCE(queue
->rskq_accept_head
) == NULL
;
214 static inline struct request_sock
*reqsk_queue_remove(struct request_sock_queue
*queue
,
217 struct request_sock
*req
;
219 spin_lock_bh(&queue
->rskq_lock
);
220 req
= queue
->rskq_accept_head
;
222 sk_acceptq_removed(parent
);
223 WRITE_ONCE(queue
->rskq_accept_head
, req
->dl_next
);
224 if (queue
->rskq_accept_head
== NULL
)
225 queue
->rskq_accept_tail
= NULL
;
227 spin_unlock_bh(&queue
->rskq_lock
);
231 static inline void reqsk_queue_removed(struct request_sock_queue
*queue
,
232 const struct request_sock
*req
)
234 if (req
->num_timeout
== 0)
235 atomic_dec(&queue
->young
);
236 atomic_dec(&queue
->qlen
);
239 static inline void reqsk_queue_added(struct request_sock_queue
*queue
)
241 atomic_inc(&queue
->young
);
242 atomic_inc(&queue
->qlen
);
245 static inline int reqsk_queue_len(const struct request_sock_queue
*queue
)
247 return atomic_read(&queue
->qlen
);
250 static inline int reqsk_queue_len_young(const struct request_sock_queue
*queue
)
252 return atomic_read(&queue
->young
);
255 /* RFC 7323 2.3 Using the Window Scale Option
256 * The window field (SEG.WND) of every outgoing segment, with the
257 * exception of <SYN> segments, MUST be right-shifted by
258 * Rcv.Wind.Shift bits.
260 * This means the SEG.WND carried in SYNACK can not exceed 65535.
261 * We use this property to harden TCP stack while in NEW_SYN_RECV state.
263 static inline u32
tcp_synack_window(const struct request_sock
*req
)
265 return min(req
->rsk_rcv_wnd
, 65535U);
267 #endif /* _REQUEST_SOCK_H */