blob: e6937318546ceee3b32a63bd791932c1ea1e12de [file] [log] [blame]
Patrick McHardy48b1de42013-08-27 08:50:14 +02001#ifndef _NF_CONNTRACK_SYNPROXY_H
2#define _NF_CONNTRACK_SYNPROXY_H
3
4#include <net/netns/generic.h>
5
6struct nf_conn_synproxy {
7 u32 isn;
8 u32 its;
9 u32 tsoff;
10};
11
12static inline struct nf_conn_synproxy *nfct_synproxy(const struct nf_conn *ct)
13{
14#if IS_ENABLED(CONFIG_NETFILTER_SYNPROXY)
15 return nf_ct_ext_find(ct, NF_CT_EXT_SYNPROXY);
16#else
17 return NULL;
18#endif
19}
20
21static inline struct nf_conn_synproxy *nfct_synproxy_ext_add(struct nf_conn *ct)
22{
23#if IS_ENABLED(CONFIG_NETFILTER_SYNPROXY)
24 return nf_ct_ext_add(ct, NF_CT_EXT_SYNPROXY, GFP_ATOMIC);
25#else
26 return NULL;
27#endif
28}
29
Gao Feng4440a2a2016-09-13 08:49:18 +080030static inline bool nf_ct_add_synproxy(struct nf_conn *ct,
31 const struct nf_conn *tmpl)
32{
33 if (tmpl && nfct_synproxy(tmpl)) {
34 if (!nfct_seqadj_ext_add(ct))
35 return false;
36
37 if (!nfct_synproxy_ext_add(ct))
38 return false;
39 }
40
41 return true;
42}
43
Patrick McHardy48b1de42013-08-27 08:50:14 +020044struct synproxy_stats {
45 unsigned int syn_received;
46 unsigned int cookie_invalid;
47 unsigned int cookie_valid;
48 unsigned int cookie_retrans;
49 unsigned int conn_reopened;
50};
51
52struct synproxy_net {
53 struct nf_conn *tmpl;
54 struct synproxy_stats __percpu *stats;
55};
56
57extern int synproxy_net_id;
58static inline struct synproxy_net *synproxy_pernet(struct net *net)
59{
60 return net_generic(net, synproxy_net_id);
61}
62
63struct synproxy_options {
64 u8 options;
65 u8 wscale;
66 u16 mss;
67 u32 tsval;
68 u32 tsecr;
69};
70
71struct tcphdr;
72struct xt_synproxy_info;
David S. Miller4fbef952013-10-01 17:06:14 -040073bool synproxy_parse_options(const struct sk_buff *skb, unsigned int doff,
Joe Perches4e77be42013-09-23 11:37:48 -070074 const struct tcphdr *th,
75 struct synproxy_options *opts);
76unsigned int synproxy_options_size(const struct synproxy_options *opts);
77void synproxy_build_options(struct tcphdr *th,
78 const struct synproxy_options *opts);
Patrick McHardy48b1de42013-08-27 08:50:14 +020079
Joe Perches4e77be42013-09-23 11:37:48 -070080void synproxy_init_timestamp_cookie(const struct xt_synproxy_info *info,
81 struct synproxy_options *opts);
82void synproxy_check_timestamp_cookie(struct synproxy_options *opts);
Patrick McHardy48b1de42013-08-27 08:50:14 +020083
Joe Perches4e77be42013-09-23 11:37:48 -070084unsigned int synproxy_tstamp_adjust(struct sk_buff *skb, unsigned int protoff,
85 struct tcphdr *th, struct nf_conn *ct,
86 enum ip_conntrack_info ctinfo,
87 const struct nf_conn_synproxy *synproxy);
Patrick McHardy48b1de42013-08-27 08:50:14 +020088
89#endif /* _NF_CONNTRACK_SYNPROXY_H */