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>
27 struct request_sock_ops {
29 unsigned int obj_size;
30 struct kmem_cache *slab;
32 int (*rtx_syn_ack)(const struct sock *sk,
33 struct request_sock *req);
34 void (*send_ack)(const struct sock *sk, struct sk_buff *skb,
35 struct request_sock *req);
36 void (*send_reset)(const struct sock *sk,
38 void (*destructor)(struct request_sock *req);
39 void (*syn_ack_timeout)(const struct request_sock *req);
42 int inet_rtx_syn_ack(const struct sock *parent, struct request_sock *req);
51 /* struct request_sock - mini sock to represent a connection request
54 struct sock_common __req_common;
55 #define rsk_refcnt __req_common.skc_refcnt
56 #define rsk_hash __req_common.skc_hash
57 #define rsk_listener __req_common.skc_listener
58 #define rsk_window_clamp __req_common.skc_window_clamp
59 #define rsk_rcv_wnd __req_common.skc_rcv_wnd
61 struct request_sock *dl_next;
63 u8 num_retrans; /* number of retransmits */
64 u8 syncookie:1; /* syncookie: encode tcpopts in timestamp */
65 u8 num_timeout:7; /* number of timeouts */
67 struct timer_list rsk_timer;
68 const struct request_sock_ops *rsk_ops;
70 struct saved_syn *saved_syn;
75 static inline struct request_sock *inet_reqsk(const struct sock *sk)
77 return (struct request_sock *)sk;
80 static inline struct sock *req_to_sk(struct request_sock *req)
82 return (struct sock *)req;
85 static inline struct request_sock *
86 reqsk_alloc(const struct request_sock_ops *ops, struct sock *sk_listener,
89 struct request_sock *req;
91 req = kmem_cache_alloc(ops->slab, GFP_ATOMIC | __GFP_NOWARN);
94 req->rsk_listener = NULL;
95 if (attach_listener) {
96 if (unlikely(!refcount_inc_not_zero(&sk_listener->sk_refcnt))) {
97 kmem_cache_free(ops->slab, req);
100 req->rsk_listener = sk_listener;
103 req_to_sk(req)->sk_prot = sk_listener->sk_prot;
104 sk_node_init(&req_to_sk(req)->sk_node);
105 sk_tx_queue_clear(req_to_sk(req));
106 req->saved_syn = NULL;
107 req->num_timeout = 0;
108 req->num_retrans = 0;
110 refcount_set(&req->rsk_refcnt, 0);
115 static inline void __reqsk_free(struct request_sock *req)
117 req->rsk_ops->destructor(req);
118 if (req->rsk_listener)
119 sock_put(req->rsk_listener);
120 kfree(req->saved_syn);
121 kmem_cache_free(req->rsk_ops->slab, req);
124 static inline void reqsk_free(struct request_sock *req)
126 WARN_ON_ONCE(refcount_read(&req->rsk_refcnt) != 0);
130 static inline void reqsk_put(struct request_sock *req)
132 if (refcount_dec_and_test(&req->rsk_refcnt))
137 * For a TCP Fast Open listener -
138 * lock - protects the access to all the reqsk, which is co-owned by
139 * the listener and the child socket.
140 * qlen - pending TFO requests (still in TCP_SYN_RECV).
141 * max_qlen - max TFO reqs allowed before TFO is disabled.
143 * XXX (TFO) - ideally these fields can be made as part of "listen_sock"
144 * structure above. But there is some implementation difficulty due to
145 * listen_sock being part of request_sock_queue hence will be freed when
146 * a listener is stopped. But TFO related fields may continue to be
147 * accessed even after a listener is closed, until its sk_refcnt drops
148 * to 0 implying no more outstanding TFO reqs. One solution is to keep
149 * listen_opt around until sk_refcnt drops to 0. But there is some other
150 * complexity that needs to be resolved. E.g., a listener can be disabled
151 * temporarily through shutdown()->tcp_disconnect(), and re-enabled later.
153 struct fastopen_queue {
154 struct request_sock *rskq_rst_head; /* Keep track of past TFO */
155 struct request_sock *rskq_rst_tail; /* requests that caused RST.
156 * This is part of the defense
157 * against spoofing attack.
160 int qlen; /* # of pending (TCP_SYN_RECV) reqs */
161 int max_qlen; /* != 0 iff TFO is currently enabled */
163 struct tcp_fastopen_context __rcu *ctx; /* cipher context for cookie */
166 /** struct request_sock_queue - queue of request_socks
168 * @rskq_accept_head - FIFO head of established children
169 * @rskq_accept_tail - FIFO tail of established children
170 * @rskq_defer_accept - User waits for some data after accept()
173 struct request_sock_queue {
174 spinlock_t rskq_lock;
175 u8 rskq_defer_accept;
181 struct request_sock *rskq_accept_head;
182 struct request_sock *rskq_accept_tail;
183 struct fastopen_queue fastopenq; /* Check max_qlen != 0 to determine
188 void reqsk_queue_alloc(struct request_sock_queue *queue);
190 void reqsk_fastopen_remove(struct sock *sk, struct request_sock *req,
193 static inline bool reqsk_queue_empty(const struct request_sock_queue *queue)
195 return READ_ONCE(queue->rskq_accept_head) == NULL;
198 static inline struct request_sock *reqsk_queue_remove(struct request_sock_queue *queue,
201 struct request_sock *req;
203 spin_lock_bh(&queue->rskq_lock);
204 req = queue->rskq_accept_head;
206 sk_acceptq_removed(parent);
207 WRITE_ONCE(queue->rskq_accept_head, req->dl_next);
208 if (queue->rskq_accept_head == NULL)
209 queue->rskq_accept_tail = NULL;
211 spin_unlock_bh(&queue->rskq_lock);
215 static inline void reqsk_queue_removed(struct request_sock_queue *queue,
216 const struct request_sock *req)
218 if (req->num_timeout == 0)
219 atomic_dec(&queue->young);
220 atomic_dec(&queue->qlen);
223 static inline void reqsk_queue_added(struct request_sock_queue *queue)
225 atomic_inc(&queue->young);
226 atomic_inc(&queue->qlen);
229 static inline int reqsk_queue_len(const struct request_sock_queue *queue)
231 return atomic_read(&queue->qlen);
234 static inline int reqsk_queue_len_young(const struct request_sock_queue *queue)
236 return atomic_read(&queue->young);
239 #endif /* _REQUEST_SOCK_H */