2007-12-16 21:29:36 +00:00
|
|
|
/*
|
|
|
|
* ipv4 in net namespaces
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NETNS_IPV4_H__
|
|
|
|
#define __NETNS_IPV4_H__
|
2008-01-10 11:27:51 +00:00
|
|
|
|
2008-01-22 14:02:14 +00:00
|
|
|
#include <net/inet_frag.h>
|
|
|
|
|
2007-12-16 21:31:47 +00:00
|
|
|
struct ctl_table_header;
|
|
|
|
struct ipv4_devconf;
|
2008-01-10 11:27:51 +00:00
|
|
|
struct fib_rules_ops;
|
2008-01-10 11:28:24 +00:00
|
|
|
struct hlist_head;
|
2008-01-10 11:28:55 +00:00
|
|
|
struct sock;
|
2007-12-16 21:31:47 +00:00
|
|
|
|
2007-12-16 21:29:36 +00:00
|
|
|
struct netns_ipv4 {
|
2008-01-06 07:08:49 +00:00
|
|
|
#ifdef CONFIG_SYSCTL
|
2007-12-16 21:31:47 +00:00
|
|
|
struct ctl_table_header *forw_hdr;
|
2008-01-22 14:08:36 +00:00
|
|
|
struct ctl_table_header *frags_hdr;
|
2008-03-26 08:56:24 +00:00
|
|
|
struct ctl_table_header *ipv4_hdr;
|
2008-07-06 02:02:33 +00:00
|
|
|
struct ctl_table_header *route_hdr;
|
2008-01-06 07:08:49 +00:00
|
|
|
#endif
|
2007-12-16 21:31:47 +00:00
|
|
|
struct ipv4_devconf *devconf_all;
|
|
|
|
struct ipv4_devconf *devconf_dflt;
|
2008-01-10 11:27:51 +00:00
|
|
|
#ifdef CONFIG_IP_MULTIPLE_TABLES
|
|
|
|
struct fib_rules_ops *rules_ops;
|
|
|
|
#endif
|
2008-01-10 11:28:24 +00:00
|
|
|
struct hlist_head *fib_table_hash;
|
2008-01-10 11:28:55 +00:00
|
|
|
struct sock *fibnl;
|
2008-01-22 14:02:14 +00:00
|
|
|
|
2008-02-29 19:19:58 +00:00
|
|
|
struct sock **icmp_sk;
|
2008-04-03 21:31:33 +00:00
|
|
|
struct sock *tcp_sock;
|
2008-02-29 19:19:58 +00:00
|
|
|
|
2008-01-22 14:02:14 +00:00
|
|
|
struct netns_frags frags;
|
2008-01-31 12:03:23 +00:00
|
|
|
#ifdef CONFIG_NETFILTER
|
|
|
|
struct xt_table *iptable_filter;
|
|
|
|
struct xt_table *iptable_mangle;
|
|
|
|
struct xt_table *iptable_raw;
|
2008-01-31 12:05:09 +00:00
|
|
|
struct xt_table *arptable_filter;
|
2008-06-09 22:57:24 +00:00
|
|
|
struct xt_table *iptable_security;
|
2008-10-08 09:35:10 +00:00
|
|
|
struct xt_table *nat_table;
|
2008-10-08 09:35:11 +00:00
|
|
|
struct hlist_head *nat_bysource;
|
|
|
|
int nat_vmalloced;
|
2008-01-31 12:03:23 +00:00
|
|
|
#endif
|
2008-03-26 08:55:37 +00:00
|
|
|
|
|
|
|
int sysctl_icmp_echo_ignore_all;
|
|
|
|
int sysctl_icmp_echo_ignore_broadcasts;
|
|
|
|
int sysctl_icmp_ignore_bogus_error_responses;
|
|
|
|
int sysctl_icmp_ratelimit;
|
|
|
|
int sysctl_icmp_ratemask;
|
|
|
|
int sysctl_icmp_errors_use_inbound_ifaddr;
|
2008-10-27 19:28:25 +00:00
|
|
|
int sysctl_rt_cache_rebuild_count;
|
|
|
|
int current_rt_cache_rebuild_count;
|
2008-07-06 02:02:59 +00:00
|
|
|
|
|
|
|
struct timer_list rt_secret_timer;
|
2008-07-06 02:04:32 +00:00
|
|
|
atomic_t rt_genid;
|
2009-01-22 04:56:15 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_IP_MROUTE
|
|
|
|
struct sock *mroute_sk;
|
2009-01-22 04:56:18 +00:00
|
|
|
struct mfc_cache **mfc_cache_array;
|
2009-01-22 04:56:16 +00:00
|
|
|
struct vif_device *vif_table;
|
|
|
|
int maxvif;
|
2009-01-22 04:56:19 +00:00
|
|
|
atomic_t cache_resolve_queue_len;
|
2009-01-22 04:56:20 +00:00
|
|
|
int mroute_do_assert;
|
|
|
|
int mroute_do_pim;
|
2009-01-22 04:56:21 +00:00
|
|
|
#if defined(CONFIG_IP_PIMSM_V1) || defined(CONFIG_IP_PIMSM_V2)
|
|
|
|
int mroute_reg_vif_num;
|
|
|
|
#endif
|
2009-01-22 04:56:15 +00:00
|
|
|
#endif
|
2007-12-16 21:29:36 +00:00
|
|
|
};
|
|
|
|
#endif
|