ipv4.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * ipv4 in net namespaces
  3. */
  4. #ifndef __NETNS_IPV4_H__
  5. #define __NETNS_IPV4_H__
  6. #include <linux/uidgid.h>
  7. #include <net/inet_frag.h>
  8. struct tcpm_hash_bucket;
  9. struct ctl_table_header;
  10. struct ipv4_devconf;
  11. struct fib_rules_ops;
  12. struct hlist_head;
  13. struct fib_table;
  14. struct sock;
  15. struct local_ports {
  16. seqlock_t lock;
  17. int range[2];
  18. };
  19. struct ping_group_range {
  20. seqlock_t lock;
  21. kgid_t range[2];
  22. };
  23. struct netns_ipv4 {
  24. #ifdef CONFIG_SYSCTL
  25. struct ctl_table_header *forw_hdr;
  26. struct ctl_table_header *frags_hdr;
  27. struct ctl_table_header *ipv4_hdr;
  28. struct ctl_table_header *route_hdr;
  29. struct ctl_table_header *xfrm4_hdr;
  30. #endif
  31. struct ipv4_devconf *devconf_all;
  32. struct ipv4_devconf *devconf_dflt;
  33. #ifdef CONFIG_IP_MULTIPLE_TABLES
  34. struct fib_rules_ops *rules_ops;
  35. bool fib_has_custom_rules;
  36. struct fib_table *fib_local;
  37. struct fib_table *fib_main;
  38. struct fib_table *fib_default;
  39. #endif
  40. #ifdef CONFIG_IP_ROUTE_CLASSID
  41. int fib_num_tclassid_users;
  42. #endif
  43. struct hlist_head *fib_table_hash;
  44. struct sock *fibnl;
  45. struct sock **icmp_sk;
  46. struct inet_peer_base *peers;
  47. struct tcpm_hash_bucket *tcp_metrics_hash;
  48. unsigned int tcp_metrics_hash_log;
  49. struct netns_frags frags;
  50. #ifdef CONFIG_NETFILTER
  51. struct xt_table *iptable_filter;
  52. struct xt_table *iptable_mangle;
  53. struct xt_table *iptable_raw;
  54. struct xt_table *arptable_filter;
  55. #ifdef CONFIG_SECURITY
  56. struct xt_table *iptable_security;
  57. #endif
  58. struct xt_table *nat_table;
  59. #endif
  60. int sysctl_icmp_echo_ignore_all;
  61. int sysctl_icmp_echo_ignore_broadcasts;
  62. int sysctl_icmp_ignore_bogus_error_responses;
  63. int sysctl_icmp_ratelimit;
  64. int sysctl_icmp_ratemask;
  65. int sysctl_icmp_errors_use_inbound_ifaddr;
  66. struct local_ports ip_local_ports;
  67. int sysctl_tcp_ecn;
  68. int sysctl_ip_no_pmtu_disc;
  69. int sysctl_ip_fwd_use_pmtu;
  70. int sysctl_fwmark_reflect;
  71. int sysctl_tcp_fwmark_accept;
  72. struct ping_group_range ping_group_range;
  73. atomic_t dev_addr_genid;
  74. #ifdef CONFIG_SYSCTL
  75. unsigned long *sysctl_local_reserved_ports;
  76. #endif
  77. #ifdef CONFIG_IP_MROUTE
  78. #ifndef CONFIG_IP_MROUTE_MULTIPLE_TABLES
  79. struct mr_table *mrt;
  80. #else
  81. struct list_head mr_tables;
  82. struct fib_rules_ops *mr_rules_ops;
  83. #endif
  84. #endif
  85. atomic_t rt_genid;
  86. };
  87. #endif