blob: 9dfd7960d90a1c365df6e191223264b66599f251 [file] [log] [blame]
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001/*
2 * NET Generic infrastructure for Network protocols.
3 *
Haishuang Yanfee83d02016-12-28 17:52:33 +08004 * Definitions for request_sock
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07005 *
6 * Authors: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 *
8 * From code originally in include/net/tcp.h
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15#ifndef _REQUEST_SOCK_H
16#define _REQUEST_SOCK_H
17
18#include <linux/slab.h>
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -070019#include <linux/spinlock.h>
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070020#include <linux/types.h>
Ilpo Järvinen547b7922008-07-25 21:43:18 -070021#include <linux/bug.h>
Reshetova, Elena41c6d652017-06-30 13:08:01 +030022#include <linux/refcount.h>
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -070023
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070024#include <net/sock.h>
25
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070026struct request_sock;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070027struct sk_buff;
28struct dst_entry;
29struct proto;
30
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070031struct request_sock_ops {
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070032 int family;
Alexey Dobriyan417ccf62017-05-23 00:21:39 +030033 unsigned int obj_size;
Christoph Lametere18b8902006-12-06 20:33:20 -080034 struct kmem_cache *slab;
Catalin Marinas7e56b5d2008-11-21 16:45:22 -080035 char *slab_name;
Eric Dumazetea3bea32015-09-25 07:39:23 -070036 int (*rtx_syn_ack)(const struct sock *sk,
Christoph Paasch1a2c6182013-03-17 08:23:34 +000037 struct request_sock *req);
Eric Dumazeta00e7442015-09-29 07:42:39 -070038 void (*send_ack)(const struct sock *sk, struct sk_buff *skb,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070039 struct request_sock *req);
Eric Dumazeta00e7442015-09-29 07:42:39 -070040 void (*send_reset)(const struct sock *sk,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080041 struct sk_buff *skb);
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070042 void (*destructor)(struct request_sock *req);
Eric Dumazet42cb80a2015-03-22 10:22:19 -070043 void (*syn_ack_timeout)(const struct request_sock *req);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070044};
45
Eric Dumazet1b70e972015-09-25 07:39:24 -070046int inet_rtx_syn_ack(const struct sock *parent, struct request_sock *req);
Eric Dumazete6c022a2012-10-27 23:16:46 +000047
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070048/* struct request_sock - mini sock to represent a connection request
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070049 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070050struct request_sock {
Eric Dumazet634fb9792013-10-09 15:21:29 -070051 struct sock_common __req_common;
Eric Dumazet1e2e0112015-03-12 16:44:06 -070052#define rsk_refcnt __req_common.skc_refcnt
Eric Dumazet52452c52015-03-19 19:04:19 -070053#define rsk_hash __req_common.skc_hash
Eric Dumazet8e5eb542015-10-08 19:33:22 -070054#define rsk_listener __req_common.skc_listener
Eric Dumazeted53d0a2015-10-08 19:33:23 -070055#define rsk_window_clamp __req_common.skc_window_clamp
56#define rsk_rcv_wnd __req_common.skc_rcv_wnd
Eric Dumazet1e2e0112015-03-12 16:44:06 -070057
Eric Dumazet3fb62c52013-04-19 14:29:25 -070058 struct request_sock *dl_next;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070059 u16 mss;
Eric Dumazete6c022a2012-10-27 23:16:46 +000060 u8 num_retrans; /* number of retransmits */
61 u8 cookie_ts:1; /* syncookie: encode tcpopts in timestamp */
62 u8 num_timeout:7; /* number of timeouts */
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070063 u32 ts_recent;
Eric Dumazetfa76ce732015-03-19 19:04:20 -070064 struct timer_list rsk_timer;
Eric Dumazet72a3eff2006-11-16 02:30:37 -080065 const struct request_sock_ops *rsk_ops;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070066 struct sock *sk;
Eric Dumazetcd8ae852015-05-03 21:34:46 -070067 u32 *saved_syn;
Venkat Yekkirala4237c752006-07-24 23:32:50 -070068 u32 secid;
Venkat Yekkirala6b877692006-11-08 17:04:09 -060069 u32 peer_secid;
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070070};
71
Florian Westphalb1f0a0e2015-12-21 21:29:24 +010072static inline struct request_sock *inet_reqsk(const struct sock *sk)
Eric Dumazetb267cdd2015-10-02 11:43:27 -070073{
74 return (struct request_sock *)sk;
75}
76
77static inline struct sock *req_to_sk(struct request_sock *req)
78{
79 return (struct sock *)req;
80}
81
Eric Dumazet4e9a5782015-03-17 18:32:28 -070082static inline struct request_sock *
Eric Dumazeta1a53442015-10-04 21:08:11 -070083reqsk_alloc(const struct request_sock_ops *ops, struct sock *sk_listener,
84 bool attach_listener)
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -070085{
Eric Dumazete96f78a2015-10-03 06:27:28 -070086 struct request_sock *req;
87
88 req = kmem_cache_alloc(ops->slab, GFP_ATOMIC | __GFP_NOWARN);
Eric Dumazet3a5d1c02016-04-01 08:52:16 -070089 if (!req)
90 return NULL;
91 req->rsk_listener = NULL;
92 if (attach_listener) {
Reshetova, Elena41c6d652017-06-30 13:08:01 +030093 if (unlikely(!refcount_inc_not_zero(&sk_listener->sk_refcnt))) {
Eric Dumazet3a5d1c02016-04-01 08:52:16 -070094 kmem_cache_free(ops->slab, req);
95 return NULL;
Eric Dumazeta1a53442015-10-04 21:08:11 -070096 }
Eric Dumazet3a5d1c02016-04-01 08:52:16 -070097 req->rsk_listener = sk_listener;
Eric Dumazet4e9a5782015-03-17 18:32:28 -070098 }
Eric Dumazet3a5d1c02016-04-01 08:52:16 -070099 req->rsk_ops = ops;
100 req_to_sk(req)->sk_prot = sk_listener->sk_prot;
101 sk_node_init(&req_to_sk(req)->sk_node);
102 sk_tx_queue_clear(req_to_sk(req));
103 req->saved_syn = NULL;
Reshetova, Elena41c6d652017-06-30 13:08:01 +0300104 refcount_set(&req->rsk_refcnt, 0);
Eric Dumazet3a5d1c02016-04-01 08:52:16 -0700105
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700106 return req;
107}
108
Guillaume Nault9403cf22019-03-19 16:05:44 +0100109static inline void __reqsk_free(struct request_sock *req)
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700110{
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700111 req->rsk_ops->destructor(req);
Eric Dumazet4e9a5782015-03-17 18:32:28 -0700112 if (req->rsk_listener)
113 sock_put(req->rsk_listener);
Eric Dumazetcd8ae852015-05-03 21:34:46 -0700114 kfree(req->saved_syn);
Eric Dumazet13854e52015-03-15 21:12:16 -0700115 kmem_cache_free(req->rsk_ops->slab, req);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700116}
117
Guillaume Nault9403cf22019-03-19 16:05:44 +0100118static inline void reqsk_free(struct request_sock *req)
119{
120 WARN_ON_ONCE(refcount_read(&req->rsk_refcnt) != 0);
121 __reqsk_free(req);
122}
123
Eric Dumazet1e2e0112015-03-12 16:44:06 -0700124static inline void reqsk_put(struct request_sock *req)
125{
Reshetova, Elena41c6d652017-06-30 13:08:01 +0300126 if (refcount_dec_and_test(&req->rsk_refcnt))
Eric Dumazet1e2e0112015-03-12 16:44:06 -0700127 reqsk_free(req);
128}
129
Jerry Chu10467162012-08-31 12:29:11 +0000130/*
131 * For a TCP Fast Open listener -
132 * lock - protects the access to all the reqsk, which is co-owned by
133 * the listener and the child socket.
134 * qlen - pending TFO requests (still in TCP_SYN_RECV).
135 * max_qlen - max TFO reqs allowed before TFO is disabled.
136 *
137 * XXX (TFO) - ideally these fields can be made as part of "listen_sock"
138 * structure above. But there is some implementation difficulty due to
139 * listen_sock being part of request_sock_queue hence will be freed when
140 * a listener is stopped. But TFO related fields may continue to be
141 * accessed even after a listener is closed, until its sk_refcnt drops
142 * to 0 implying no more outstanding TFO reqs. One solution is to keep
143 * listen_opt around until sk_refcnt drops to 0. But there is some other
144 * complexity that needs to be resolved. E.g., a listener can be disabled
145 * temporarily through shutdown()->tcp_disconnect(), and re-enabled later.
146 */
147struct fastopen_queue {
148 struct request_sock *rskq_rst_head; /* Keep track of past TFO */
149 struct request_sock *rskq_rst_tail; /* requests that caused RST.
150 * This is part of the defense
151 * against spoofing attack.
152 */
153 spinlock_t lock;
154 int qlen; /* # of pending (TCP_SYN_RECV) reqs */
155 int max_qlen; /* != 0 iff TFO is currently enabled */
Yuchung Cheng1fba70e2017-10-18 11:22:51 -0700156
157 struct tcp_fastopen_context __rcu *ctx; /* cipher context for cookie */
Jerry Chu10467162012-08-31 12:29:11 +0000158};
159
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700160/** struct request_sock_queue - queue of request_socks
161 *
162 * @rskq_accept_head - FIFO head of established children
163 * @rskq_accept_tail - FIFO tail of established children
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -0700164 * @rskq_defer_accept - User waits for some data after accept()
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700165 *
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700166 */
167struct request_sock_queue {
Eric Dumazetfff1f302015-10-02 11:43:23 -0700168 spinlock_t rskq_lock;
169 u8 rskq_defer_accept;
Eric Dumazetef547f22015-10-02 11:43:37 -0700170
Eric Dumazet8d2675f2015-10-02 11:43:25 -0700171 u32 synflood_warned;
Eric Dumazetaac065c2015-10-02 11:43:24 -0700172 atomic_t qlen;
173 atomic_t young;
174
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700175 struct request_sock *rskq_accept_head;
176 struct request_sock *rskq_accept_tail;
Eric Dumazet0536fcc2015-09-29 07:42:52 -0700177 struct fastopen_queue fastopenq; /* Check max_qlen != 0 to determine
178 * if TFO is enabled.
Jerry Chu10467162012-08-31 12:29:11 +0000179 */
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700180};
181
Eric Dumazetef547f22015-10-02 11:43:37 -0700182void reqsk_queue_alloc(struct request_sock_queue *queue);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700183
Joe Perchesc0f45022013-09-22 10:32:20 -0700184void reqsk_fastopen_remove(struct sock *sk, struct request_sock *req,
185 bool reset);
Arnaldo Carvalho de Melo83e36092005-08-09 19:33:31 -0700186
Eric Dumazetfff1f302015-10-02 11:43:23 -0700187static inline bool reqsk_queue_empty(const struct request_sock_queue *queue)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700188{
189 return queue->rskq_accept_head == NULL;
190}
191
Eric Dumazetfff1f302015-10-02 11:43:23 -0700192static inline struct request_sock *reqsk_queue_remove(struct request_sock_queue *queue,
193 struct sock *parent)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700194{
Eric Dumazetfff1f302015-10-02 11:43:23 -0700195 struct request_sock *req;
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700196
Eric Dumazetfff1f302015-10-02 11:43:23 -0700197 spin_lock_bh(&queue->rskq_lock);
198 req = queue->rskq_accept_head;
199 if (req) {
200 sk_acceptq_removed(parent);
201 queue->rskq_accept_head = req->dl_next;
202 if (queue->rskq_accept_head == NULL)
203 queue->rskq_accept_tail = NULL;
204 }
205 spin_unlock_bh(&queue->rskq_lock);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700206 return req;
207}
208
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700209static inline void reqsk_queue_removed(struct request_sock_queue *queue,
210 const struct request_sock *req)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700211{
Eric Dumazete6c022a2012-10-27 23:16:46 +0000212 if (req->num_timeout == 0)
Eric Dumazetaac065c2015-10-02 11:43:24 -0700213 atomic_dec(&queue->young);
214 atomic_dec(&queue->qlen);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700215}
216
Eric Dumazetfa76ce732015-03-19 19:04:20 -0700217static inline void reqsk_queue_added(struct request_sock_queue *queue)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700218{
Eric Dumazetaac065c2015-10-02 11:43:24 -0700219 atomic_inc(&queue->young);
220 atomic_inc(&queue->qlen);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700221}
222
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700223static inline int reqsk_queue_len(const struct request_sock_queue *queue)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700224{
Eric Dumazetaac065c2015-10-02 11:43:24 -0700225 return atomic_read(&queue->qlen);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700226}
227
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700228static inline int reqsk_queue_len_young(const struct request_sock_queue *queue)
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700229{
Eric Dumazetaac065c2015-10-02 11:43:24 -0700230 return atomic_read(&queue->young);
Arnaldo Carvalho de Melo0e875062005-06-18 22:47:59 -0700231}
232
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700233#endif /* _REQUEST_SOCK_H */