Loading...
1/*
2 * ipv4 in net namespaces
3 */
4
5#ifndef __NETNS_IPV4_H__
6#define __NETNS_IPV4_H__
7
8#include <linux/uidgid.h>
9#include <net/inet_frag.h>
10#include <linux/rcupdate.h>
11
12struct tcpm_hash_bucket;
13struct ctl_table_header;
14struct ipv4_devconf;
15struct fib_rules_ops;
16struct hlist_head;
17struct fib_table;
18struct sock;
19struct local_ports {
20 seqlock_t lock;
21 int range[2];
22 bool warned;
23};
24
25struct ping_group_range {
26 seqlock_t lock;
27 kgid_t range[2];
28};
29
30struct netns_ipv4 {
31#ifdef CONFIG_SYSCTL
32 struct ctl_table_header *forw_hdr;
33 struct ctl_table_header *frags_hdr;
34 struct ctl_table_header *ipv4_hdr;
35 struct ctl_table_header *route_hdr;
36 struct ctl_table_header *xfrm4_hdr;
37#endif
38 struct ipv4_devconf *devconf_all;
39 struct ipv4_devconf *devconf_dflt;
40#ifdef CONFIG_IP_MULTIPLE_TABLES
41 struct fib_rules_ops *rules_ops;
42 bool fib_has_custom_rules;
43 struct fib_table __rcu *fib_local;
44 struct fib_table __rcu *fib_main;
45 struct fib_table __rcu *fib_default;
46#endif
47#ifdef CONFIG_IP_ROUTE_CLASSID
48 int fib_num_tclassid_users;
49#endif
50 struct hlist_head *fib_table_hash;
51 bool fib_offload_disabled;
52 struct sock *fibnl;
53
54 struct sock * __percpu *icmp_sk;
55 struct sock *mc_autojoin_sk;
56
57 struct inet_peer_base *peers;
58 struct sock * __percpu *tcp_sk;
59 struct netns_frags frags;
60#ifdef CONFIG_NETFILTER
61 struct xt_table *iptable_filter;
62 struct xt_table *iptable_mangle;
63 struct xt_table *iptable_raw;
64 struct xt_table *arptable_filter;
65#ifdef CONFIG_SECURITY
66 struct xt_table *iptable_security;
67#endif
68 struct xt_table *nat_table;
69#endif
70
71 int sysctl_icmp_echo_ignore_all;
72 int sysctl_icmp_echo_ignore_broadcasts;
73 int sysctl_icmp_ignore_bogus_error_responses;
74 int sysctl_icmp_ratelimit;
75 int sysctl_icmp_ratemask;
76 int sysctl_icmp_errors_use_inbound_ifaddr;
77
78 struct local_ports ip_local_ports;
79
80 int sysctl_tcp_ecn;
81 int sysctl_tcp_ecn_fallback;
82
83 int sysctl_ip_default_ttl;
84 int sysctl_ip_no_pmtu_disc;
85 int sysctl_ip_fwd_use_pmtu;
86 int sysctl_ip_nonlocal_bind;
87 /* Shall we try to damage output packets if routing dev changes? */
88 int sysctl_ip_dynaddr;
89 int sysctl_ip_early_demux;
90
91 int sysctl_fwmark_reflect;
92 int sysctl_tcp_fwmark_accept;
93#ifdef CONFIG_NET_L3_MASTER_DEV
94 int sysctl_tcp_l3mdev_accept;
95#endif
96 int sysctl_tcp_mtu_probing;
97 int sysctl_tcp_base_mss;
98 int sysctl_tcp_probe_threshold;
99 u32 sysctl_tcp_probe_interval;
100
101 int sysctl_tcp_keepalive_time;
102 int sysctl_tcp_keepalive_probes;
103 int sysctl_tcp_keepalive_intvl;
104
105 int sysctl_tcp_syn_retries;
106 int sysctl_tcp_synack_retries;
107 int sysctl_tcp_syncookies;
108 int sysctl_tcp_reordering;
109 int sysctl_tcp_retries1;
110 int sysctl_tcp_retries2;
111 int sysctl_tcp_orphan_retries;
112 int sysctl_tcp_fin_timeout;
113 unsigned int sysctl_tcp_notsent_lowat;
114
115 int sysctl_igmp_max_memberships;
116 int sysctl_igmp_max_msf;
117 int sysctl_igmp_llm_reports;
118 int sysctl_igmp_qrv;
119
120 struct ping_group_range ping_group_range;
121
122 atomic_t dev_addr_genid;
123
124#ifdef CONFIG_SYSCTL
125 unsigned long *sysctl_local_reserved_ports;
126#endif
127
128#ifdef CONFIG_IP_MROUTE
129#ifndef CONFIG_IP_MROUTE_MULTIPLE_TABLES
130 struct mr_table *mrt;
131#else
132 struct list_head mr_tables;
133 struct fib_rules_ops *mr_rules_ops;
134#endif
135#endif
136 atomic_t rt_genid;
137};
138#endif
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * ipv4 in net namespaces
4 */
5
6#ifndef __NETNS_IPV4_H__
7#define __NETNS_IPV4_H__
8
9#include <linux/uidgid.h>
10#include <net/inet_frag.h>
11#include <linux/rcupdate.h>
12#include <linux/siphash.h>
13
14struct tcpm_hash_bucket;
15struct ctl_table_header;
16struct ipv4_devconf;
17struct fib_rules_ops;
18struct hlist_head;
19struct fib_table;
20struct sock;
21struct local_ports {
22 seqlock_t lock;
23 int range[2];
24 bool warned;
25};
26
27struct ping_group_range {
28 seqlock_t lock;
29 kgid_t range[2];
30};
31
32struct inet_hashinfo;
33
34struct inet_timewait_death_row {
35 atomic_t tw_count;
36
37 struct inet_hashinfo *hashinfo ____cacheline_aligned_in_smp;
38 int sysctl_max_tw_buckets;
39};
40
41struct tcp_fastopen_context;
42
43struct netns_ipv4 {
44#ifdef CONFIG_SYSCTL
45 struct ctl_table_header *forw_hdr;
46 struct ctl_table_header *frags_hdr;
47 struct ctl_table_header *ipv4_hdr;
48 struct ctl_table_header *route_hdr;
49 struct ctl_table_header *xfrm4_hdr;
50#endif
51 struct ipv4_devconf *devconf_all;
52 struct ipv4_devconf *devconf_dflt;
53 struct ip_ra_chain __rcu *ra_chain;
54 struct mutex ra_mutex;
55#ifdef CONFIG_IP_MULTIPLE_TABLES
56 struct fib_rules_ops *rules_ops;
57 bool fib_has_custom_rules;
58 unsigned int fib_rules_require_fldissect;
59 struct fib_table __rcu *fib_main;
60 struct fib_table __rcu *fib_default;
61#endif
62 bool fib_has_custom_local_routes;
63#ifdef CONFIG_IP_ROUTE_CLASSID
64 int fib_num_tclassid_users;
65#endif
66 struct hlist_head *fib_table_hash;
67 bool fib_offload_disabled;
68 struct sock *fibnl;
69
70 struct sock * __percpu *icmp_sk;
71 struct sock *mc_autojoin_sk;
72
73 struct inet_peer_base *peers;
74 struct sock * __percpu *tcp_sk;
75 struct fqdir *fqdir;
76#ifdef CONFIG_NETFILTER
77 struct xt_table *iptable_filter;
78 struct xt_table *iptable_mangle;
79 struct xt_table *iptable_raw;
80 struct xt_table *arptable_filter;
81#ifdef CONFIG_SECURITY
82 struct xt_table *iptable_security;
83#endif
84 struct xt_table *nat_table;
85#endif
86
87 int sysctl_icmp_echo_ignore_all;
88 int sysctl_icmp_echo_ignore_broadcasts;
89 int sysctl_icmp_ignore_bogus_error_responses;
90 int sysctl_icmp_ratelimit;
91 int sysctl_icmp_ratemask;
92 int sysctl_icmp_errors_use_inbound_ifaddr;
93
94 struct local_ports ip_local_ports;
95
96 int sysctl_tcp_ecn;
97 int sysctl_tcp_ecn_fallback;
98
99 int sysctl_ip_default_ttl;
100 int sysctl_ip_no_pmtu_disc;
101 int sysctl_ip_fwd_use_pmtu;
102 int sysctl_ip_fwd_update_priority;
103 int sysctl_ip_nonlocal_bind;
104 int sysctl_ip_autobind_reuse;
105 /* Shall we try to damage output packets if routing dev changes? */
106 int sysctl_ip_dynaddr;
107 int sysctl_ip_early_demux;
108#ifdef CONFIG_NET_L3_MASTER_DEV
109 int sysctl_raw_l3mdev_accept;
110#endif
111 int sysctl_tcp_early_demux;
112 int sysctl_udp_early_demux;
113
114 int sysctl_nexthop_compat_mode;
115
116 int sysctl_fwmark_reflect;
117 int sysctl_tcp_fwmark_accept;
118#ifdef CONFIG_NET_L3_MASTER_DEV
119 int sysctl_tcp_l3mdev_accept;
120#endif
121 int sysctl_tcp_mtu_probing;
122 int sysctl_tcp_mtu_probe_floor;
123 int sysctl_tcp_base_mss;
124 int sysctl_tcp_min_snd_mss;
125 int sysctl_tcp_probe_threshold;
126 u32 sysctl_tcp_probe_interval;
127
128 int sysctl_tcp_keepalive_time;
129 int sysctl_tcp_keepalive_probes;
130 int sysctl_tcp_keepalive_intvl;
131
132 int sysctl_tcp_syn_retries;
133 int sysctl_tcp_synack_retries;
134 int sysctl_tcp_syncookies;
135 int sysctl_tcp_reordering;
136 int sysctl_tcp_retries1;
137 int sysctl_tcp_retries2;
138 int sysctl_tcp_orphan_retries;
139 int sysctl_tcp_fin_timeout;
140 unsigned int sysctl_tcp_notsent_lowat;
141 int sysctl_tcp_tw_reuse;
142 int sysctl_tcp_sack;
143 int sysctl_tcp_window_scaling;
144 int sysctl_tcp_timestamps;
145 int sysctl_tcp_early_retrans;
146 int sysctl_tcp_recovery;
147 int sysctl_tcp_thin_linear_timeouts;
148 int sysctl_tcp_slow_start_after_idle;
149 int sysctl_tcp_retrans_collapse;
150 int sysctl_tcp_stdurg;
151 int sysctl_tcp_rfc1337;
152 int sysctl_tcp_abort_on_overflow;
153 int sysctl_tcp_fack;
154 int sysctl_tcp_max_reordering;
155 int sysctl_tcp_dsack;
156 int sysctl_tcp_app_win;
157 int sysctl_tcp_adv_win_scale;
158 int sysctl_tcp_frto;
159 int sysctl_tcp_nometrics_save;
160 int sysctl_tcp_no_ssthresh_metrics_save;
161 int sysctl_tcp_moderate_rcvbuf;
162 int sysctl_tcp_tso_win_divisor;
163 int sysctl_tcp_workaround_signed_windows;
164 int sysctl_tcp_limit_output_bytes;
165 int sysctl_tcp_challenge_ack_limit;
166 int sysctl_tcp_min_tso_segs;
167 int sysctl_tcp_min_rtt_wlen;
168 int sysctl_tcp_autocorking;
169 int sysctl_tcp_invalid_ratelimit;
170 int sysctl_tcp_pacing_ss_ratio;
171 int sysctl_tcp_pacing_ca_ratio;
172 int sysctl_tcp_wmem[3];
173 int sysctl_tcp_rmem[3];
174 int sysctl_tcp_comp_sack_nr;
175 unsigned long sysctl_tcp_comp_sack_delay_ns;
176 unsigned long sysctl_tcp_comp_sack_slack_ns;
177 struct inet_timewait_death_row tcp_death_row;
178 int sysctl_max_syn_backlog;
179 int sysctl_tcp_fastopen;
180 const struct tcp_congestion_ops __rcu *tcp_congestion_control;
181 struct tcp_fastopen_context __rcu *tcp_fastopen_ctx;
182 spinlock_t tcp_fastopen_ctx_lock;
183 unsigned int sysctl_tcp_fastopen_blackhole_timeout;
184 atomic_t tfo_active_disable_times;
185 unsigned long tfo_active_disable_stamp;
186
187 int sysctl_udp_wmem_min;
188 int sysctl_udp_rmem_min;
189
190#ifdef CONFIG_NET_L3_MASTER_DEV
191 int sysctl_udp_l3mdev_accept;
192#endif
193
194 int sysctl_igmp_max_memberships;
195 int sysctl_igmp_max_msf;
196 int sysctl_igmp_llm_reports;
197 int sysctl_igmp_qrv;
198
199 struct ping_group_range ping_group_range;
200
201 atomic_t dev_addr_genid;
202
203#ifdef CONFIG_SYSCTL
204 unsigned long *sysctl_local_reserved_ports;
205 int sysctl_ip_prot_sock;
206#endif
207
208#ifdef CONFIG_IP_MROUTE
209#ifndef CONFIG_IP_MROUTE_MULTIPLE_TABLES
210 struct mr_table *mrt;
211#else
212 struct list_head mr_tables;
213 struct fib_rules_ops *mr_rules_ops;
214#endif
215#endif
216#ifdef CONFIG_IP_ROUTE_MULTIPATH
217 int sysctl_fib_multipath_use_neigh;
218 int sysctl_fib_multipath_hash_policy;
219#endif
220
221 struct fib_notifier_ops *notifier_ops;
222 unsigned int fib_seq; /* protected by rtnl_mutex */
223
224 struct fib_notifier_ops *ipmr_notifier_ops;
225 unsigned int ipmr_seq; /* protected by rtnl_mutex */
226
227 atomic_t rt_genid;
228 siphash_key_t ip_id_key;
229};
230#endif