Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Operations on the network namespace |
| 3 | */ |
| 4 | #ifndef __NET_NET_NAMESPACE_H |
| 5 | #define __NET_NET_NAMESPACE_H |
| 6 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 7 | #include <linux/atomic.h> |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 8 | #include <linux/workqueue.h> |
| 9 | #include <linux/list.h> |
David S. Miller | bee9525 | 2011-05-26 16:40:37 -0400 | [diff] [blame] | 10 | #include <linux/sysctl.h> |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 11 | |
Cong Wang | 6a66271 | 2014-04-15 16:25:34 -0700 | [diff] [blame] | 12 | #include <net/flow.h> |
Pavel Emelyanov | 8efa6e9 | 2008-03-31 19:41:14 -0700 | [diff] [blame] | 13 | #include <net/netns/core.h> |
Pavel Emelyanov | 852566f5 | 2008-07-18 04:01:24 -0700 | [diff] [blame] | 14 | #include <net/netns/mib.h> |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 15 | #include <net/netns/unix.h> |
Denis V. Lunev | 2aaef4e | 2007-12-11 04:19:54 -0800 | [diff] [blame] | 16 | #include <net/netns/packet.h> |
Pavel Emelyanov | 8afd351 | 2007-12-16 13:29:36 -0800 | [diff] [blame] | 17 | #include <net/netns/ipv4.h> |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 18 | #include <net/netns/ipv6.h> |
Alexander Aring | 633fc86 | 2014-02-28 07:32:49 +0100 | [diff] [blame] | 19 | #include <net/netns/ieee802154_6lowpan.h> |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 20 | #include <net/netns/sctp.h> |
Pavel Emelyanov | 67019cc | 2008-04-13 22:28:42 -0700 | [diff] [blame] | 21 | #include <net/netns/dccp.h> |
Gao feng | f3c1a44 | 2013-03-24 23:50:39 +0000 | [diff] [blame] | 22 | #include <net/netns/netfilter.h> |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 23 | #include <net/netns/x_tables.h> |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 24 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
| 25 | #include <net/netns/conntrack.h> |
| 26 | #endif |
Pablo Neira Ayuso | 99633ab | 2013-10-10 23:28:33 +0200 | [diff] [blame] | 27 | #include <net/netns/nftables.h> |
Alexey Dobriyan | d62ddc2 | 2008-11-25 17:14:31 -0800 | [diff] [blame] | 28 | #include <net/netns/xfrm.h> |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 29 | |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 30 | struct user_namespace; |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 31 | struct proc_dir_entry; |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 32 | struct net_device; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 33 | struct sock; |
Pavel Emelyanov | 1597fbc | 2007-12-01 23:51:01 +1100 | [diff] [blame] | 34 | struct ctl_table_header; |
Pavel Emelyanov | dec827d | 2008-04-15 00:36:08 -0700 | [diff] [blame] | 35 | struct net_generic; |
Johannes Berg | 134e637 | 2009-07-10 09:51:34 +0000 | [diff] [blame] | 36 | struct sock; |
Julian Anastasov | 2553d06 | 2011-03-04 12:18:07 +0200 | [diff] [blame] | 37 | struct netns_ipvs; |
Pavel Emelyanov | 1597fbc | 2007-12-01 23:51:01 +1100 | [diff] [blame] | 38 | |
Eric Dumazet | 7c28bd0 | 2009-10-24 06:13:17 -0700 | [diff] [blame] | 39 | |
| 40 | #define NETDEV_HASHBITS 8 |
| 41 | #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS) |
| 42 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 43 | struct net { |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 44 | atomic_t passive; /* To decided when the network |
| 45 | * namespace should be freed. |
| 46 | */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 47 | atomic_t count; /* To decided when the network |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 48 | * namespace should be shut down. |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 49 | */ |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 50 | #ifdef NETNS_REFCNT_DEBUG |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 51 | atomic_t use_count; /* To track references we |
| 52 | * destroy on demand |
| 53 | */ |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 54 | #endif |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 55 | spinlock_t rules_mod_lock; |
| 56 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 57 | struct list_head list; /* list of network namespaces */ |
Eric W. Biederman | 2b035b3 | 2009-11-29 22:25:27 +0000 | [diff] [blame] | 58 | struct list_head cleanup_list; /* namespaces on death row */ |
Eric W. Biederman | 72ad937 | 2009-12-03 02:29:03 +0000 | [diff] [blame] | 59 | struct list_head exit_list; /* Use only net_mutex */ |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 60 | |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 61 | struct user_namespace *user_ns; /* Owning user namespace */ |
| 62 | |
Eric W. Biederman | 98f842e | 2011-06-15 10:21:48 -0700 | [diff] [blame] | 63 | unsigned int proc_inum; |
| 64 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 65 | struct proc_dir_entry *proc_net; |
| 66 | struct proc_dir_entry *proc_net_stat; |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 67 | |
Al Viro | 7345509 | 2008-07-14 21:22:20 -0400 | [diff] [blame] | 68 | #ifdef CONFIG_SYSCTL |
| 69 | struct ctl_table_set sysctls; |
| 70 | #endif |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 71 | |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 72 | struct sock *rtnl; /* rtnetlink socket */ |
| 73 | struct sock *genl_sock; |
Eric W. Biederman | 2774c7a | 2007-09-26 22:10:56 -0700 | [diff] [blame] | 74 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 75 | struct list_head dev_base_head; |
| 76 | struct hlist_head *dev_name_head; |
| 77 | struct hlist_head *dev_index_head; |
Thomas Graf | 4e985ad | 2011-06-21 03:11:20 +0000 | [diff] [blame] | 78 | unsigned int dev_base_seq; /* protected by rtnl_mutex */ |
Pavel Emelyanov | aa79e66 | 2012-08-08 21:53:19 +0000 | [diff] [blame] | 79 | int ifindex; |
Eric W. Biederman | 50624c9 | 2013-09-23 21:19:49 -0700 | [diff] [blame] | 80 | unsigned int dev_unreg_count; |
Denis V. Lunev | 97c53ca | 2007-11-19 22:26:51 -0800 | [diff] [blame] | 81 | |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 82 | /* core fib_rules */ |
| 83 | struct list_head rules_ops; |
Denis V. Lunev | 5fd30ee | 2008-01-10 03:20:28 -0800 | [diff] [blame] | 84 | |
Denis V. Lunev | d12d01d | 2007-11-19 22:28:35 -0800 | [diff] [blame] | 85 | |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 86 | struct net_device *loopback_dev; /* The loopback */ |
Pavel Emelyanov | 8efa6e9 | 2008-03-31 19:41:14 -0700 | [diff] [blame] | 87 | struct netns_core core; |
Pavel Emelyanov | 852566f5 | 2008-07-18 04:01:24 -0700 | [diff] [blame] | 88 | struct netns_mib mib; |
Denis V. Lunev | 2aaef4e | 2007-12-11 04:19:54 -0800 | [diff] [blame] | 89 | struct netns_packet packet; |
Denis V. Lunev | a0a53c8 | 2007-12-11 04:19:17 -0800 | [diff] [blame] | 90 | struct netns_unix unx; |
Pavel Emelyanov | 8afd351 | 2007-12-16 13:29:36 -0800 | [diff] [blame] | 91 | struct netns_ipv4 ipv4; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 92 | #if IS_ENABLED(CONFIG_IPV6) |
Daniel Lezcano | b0f159d | 2008-01-10 02:49:06 -0800 | [diff] [blame] | 93 | struct netns_ipv6 ipv6; |
| 94 | #endif |
Alexander Aring | 633fc86 | 2014-02-28 07:32:49 +0100 | [diff] [blame] | 95 | #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN) |
| 96 | struct netns_ieee802154_lowpan ieee802154_lowpan; |
| 97 | #endif |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 98 | #if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE) |
| 99 | struct netns_sctp sctp; |
| 100 | #endif |
Pavel Emelyanov | 67019cc | 2008-04-13 22:28:42 -0700 | [diff] [blame] | 101 | #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE) |
| 102 | struct netns_dccp dccp; |
| 103 | #endif |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 104 | #ifdef CONFIG_NETFILTER |
Gao feng | f3c1a44 | 2013-03-24 23:50:39 +0000 | [diff] [blame] | 105 | struct netns_nf nf; |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 106 | struct netns_xt xt; |
Alexey Dobriyan | dfdb8d7 | 2008-10-08 11:35:02 +0200 | [diff] [blame] | 107 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
| 108 | struct netns_ct ct; |
| 109 | #endif |
Pablo Neira Ayuso | 99633ab | 2013-10-10 23:28:33 +0200 | [diff] [blame] | 110 | #if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE) |
| 111 | struct netns_nftables nft; |
| 112 | #endif |
Amerigo Wang | c038a76 | 2012-09-18 16:50:08 +0000 | [diff] [blame] | 113 | #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6) |
| 114 | struct netns_nf_frag nf_frag; |
| 115 | #endif |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 116 | struct sock *nfnl; |
| 117 | struct sock *nfnl_stash; |
Alexey Dobriyan | 8d87005 | 2008-01-31 04:02:13 -0800 | [diff] [blame] | 118 | #endif |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 119 | #ifdef CONFIG_WEXT_CORE |
Johannes Berg | b333b3d22 | 2009-06-24 01:34:48 +0000 | [diff] [blame] | 120 | struct sk_buff_head wext_nlevents; |
| 121 | #endif |
Eric Dumazet | 1c87733 | 2010-10-25 03:20:11 +0000 | [diff] [blame] | 122 | struct net_generic __rcu *gen; |
Eric Dumazet | 8e602ce | 2010-10-14 05:56:18 +0000 | [diff] [blame] | 123 | |
| 124 | /* Note : following structs are cache line aligned */ |
| 125 | #ifdef CONFIG_XFRM |
| 126 | struct netns_xfrm xfrm; |
| 127 | #endif |
JunweiZhang | 8b4d14d | 2013-06-26 16:40:06 +0800 | [diff] [blame] | 128 | #if IS_ENABLED(CONFIG_IP_VS) |
Hans Schillstrom | 61b1ab4 | 2011-01-03 14:44:42 +0100 | [diff] [blame] | 129 | struct netns_ipvs *ipvs; |
JunweiZhang | 8b4d14d | 2013-06-26 16:40:06 +0800 | [diff] [blame] | 130 | #endif |
Andrey Vagin | 51d7ccc | 2012-07-16 04:28:49 +0000 | [diff] [blame] | 131 | struct sock *diag_nlsk; |
Timo Teräs | 5aad1de | 2013-05-27 20:46:33 +0000 | [diff] [blame] | 132 | atomic_t fnhe_genid; |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 133 | }; |
| 134 | |
Denis V. Lunev | c0f3932 | 2008-04-02 00:10:28 -0700 | [diff] [blame] | 135 | #include <linux/seq_file_net.h> |
| 136 | |
Daniel Lezcano | 4fabcd7 | 2007-09-13 09:16:29 +0200 | [diff] [blame] | 137 | /* Init's network namespace */ |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 138 | extern struct net init_net; |
Denis V. Lunev | a4aa834 | 2008-04-03 13:04:33 -0700 | [diff] [blame] | 139 | |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 140 | #ifdef CONFIG_NET_NS |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 141 | struct net *copy_net_ns(unsigned long flags, struct user_namespace *user_ns, |
| 142 | struct net *old_net); |
Denis V. Lunev | 225c0a0 | 2008-04-02 00:09:29 -0700 | [diff] [blame] | 143 | |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 144 | #else /* CONFIG_NET_NS */ |
| 145 | #include <linux/sched.h> |
| 146 | #include <linux/nsproxy.h> |
Eric W. Biederman | 038e733 | 2012-06-14 02:31:10 -0700 | [diff] [blame] | 147 | static inline struct net *copy_net_ns(unsigned long flags, |
| 148 | struct user_namespace *user_ns, struct net *old_net) |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 149 | { |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 150 | if (flags & CLONE_NEWNET) |
| 151 | return ERR_PTR(-EINVAL); |
| 152 | return old_net; |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 153 | } |
Eric W. Biederman | d727abc | 2012-06-14 02:16:42 -0700 | [diff] [blame] | 154 | #endif /* CONFIG_NET_NS */ |
Denis V. Lunev | 225c0a0 | 2008-04-02 00:09:29 -0700 | [diff] [blame] | 155 | |
| 156 | |
| 157 | extern struct list_head net_namespace_list; |
Eric W. Biederman | 9dd776b | 2007-09-26 22:04:26 -0700 | [diff] [blame] | 158 | |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 159 | struct net *get_net_ns_by_pid(pid_t pid); |
| 160 | struct net *get_net_ns_by_fd(int pid); |
Johannes Berg | 30ffee8 | 2009-07-10 09:51:35 +0000 | [diff] [blame] | 161 | |
Rashika Kheria | 535d3ae | 2014-02-09 22:29:14 +0530 | [diff] [blame] | 162 | #ifdef CONFIG_SYSCTL |
| 163 | void ipx_register_sysctl(void); |
| 164 | void ipx_unregister_sysctl(void); |
| 165 | #else |
| 166 | #define ipx_register_sysctl() |
| 167 | #define ipx_unregister_sysctl() |
| 168 | #endif |
| 169 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 170 | #ifdef CONFIG_NET_NS |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 171 | void __put_net(struct net *net); |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 172 | |
| 173 | static inline struct net *get_net(struct net *net) |
| 174 | { |
| 175 | atomic_inc(&net->count); |
| 176 | return net; |
| 177 | } |
| 178 | |
Eric W. Biederman | 077130c | 2007-09-13 09:18:57 +0200 | [diff] [blame] | 179 | static inline struct net *maybe_get_net(struct net *net) |
| 180 | { |
| 181 | /* Used when we know struct net exists but we |
| 182 | * aren't guaranteed a previous reference count |
| 183 | * exists. If the reference count is zero this |
| 184 | * function fails and returns NULL. |
| 185 | */ |
| 186 | if (!atomic_inc_not_zero(&net->count)) |
| 187 | net = NULL; |
| 188 | return net; |
| 189 | } |
| 190 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 191 | static inline void put_net(struct net *net) |
| 192 | { |
| 193 | if (atomic_dec_and_test(&net->count)) |
| 194 | __put_net(net); |
| 195 | } |
| 196 | |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 197 | static inline |
| 198 | int net_eq(const struct net *net1, const struct net *net2) |
| 199 | { |
| 200 | return net1 == net2; |
| 201 | } |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 202 | |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 203 | void net_drop_ns(void *); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 204 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 205 | #else |
Eric W. Biederman | b9f75f4 | 2008-06-20 22:16:51 -0700 | [diff] [blame] | 206 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 207 | static inline struct net *get_net(struct net *net) |
| 208 | { |
| 209 | return net; |
| 210 | } |
| 211 | |
| 212 | static inline void put_net(struct net *net) |
| 213 | { |
| 214 | } |
| 215 | |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 216 | static inline struct net *maybe_get_net(struct net *net) |
| 217 | { |
| 218 | return net; |
| 219 | } |
YOSHIFUJI Hideaki | 878628f | 2008-03-26 03:57:35 +0900 | [diff] [blame] | 220 | |
| 221 | static inline |
| 222 | int net_eq(const struct net *net1, const struct net *net2) |
| 223 | { |
| 224 | return 1; |
| 225 | } |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 226 | |
| 227 | #define net_drop_ns NULL |
Pavel Emelyanov | d465579 | 2007-11-01 00:43:49 -0700 | [diff] [blame] | 228 | #endif |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 229 | |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 230 | |
| 231 | #ifdef NETNS_REFCNT_DEBUG |
| 232 | static inline struct net *hold_net(struct net *net) |
| 233 | { |
| 234 | if (net) |
| 235 | atomic_inc(&net->use_count); |
| 236 | return net; |
| 237 | } |
| 238 | |
| 239 | static inline void release_net(struct net *net) |
| 240 | { |
| 241 | if (net) |
| 242 | atomic_dec(&net->use_count); |
| 243 | } |
| 244 | #else |
| 245 | static inline struct net *hold_net(struct net *net) |
| 246 | { |
| 247 | return net; |
| 248 | } |
| 249 | |
| 250 | static inline void release_net(struct net *net) |
| 251 | { |
| 252 | } |
| 253 | #endif |
| 254 | |
Eric Dumazet | 8f424b5 | 2008-11-12 00:53:30 -0800 | [diff] [blame] | 255 | #ifdef CONFIG_NET_NS |
| 256 | |
| 257 | static inline void write_pnet(struct net **pnet, struct net *net) |
| 258 | { |
| 259 | *pnet = net; |
| 260 | } |
| 261 | |
| 262 | static inline struct net *read_pnet(struct net * const *pnet) |
| 263 | { |
| 264 | return *pnet; |
| 265 | } |
| 266 | |
| 267 | #else |
| 268 | |
| 269 | #define write_pnet(pnet, net) do { (void)(net);} while (0) |
| 270 | #define read_pnet(pnet) (&init_net) |
| 271 | |
| 272 | #endif |
Denis V. Lunev | 5d1e446 | 2008-04-16 01:58:04 -0700 | [diff] [blame] | 273 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 274 | #define for_each_net(VAR) \ |
| 275 | list_for_each_entry(VAR, &net_namespace_list, list) |
| 276 | |
Johannes Berg | 11a28d3 | 2009-07-10 09:51:33 +0000 | [diff] [blame] | 277 | #define for_each_net_rcu(VAR) \ |
| 278 | list_for_each_entry_rcu(VAR, &net_namespace_list, list) |
| 279 | |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 280 | #ifdef CONFIG_NET_NS |
| 281 | #define __net_init |
| 282 | #define __net_exit |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 283 | #define __net_initdata |
Andi Kleen | 04a6f82 | 2012-10-04 17:12:11 -0700 | [diff] [blame] | 284 | #define __net_initconst |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 285 | #else |
| 286 | #define __net_init __init |
| 287 | #define __net_exit __exit_refok |
Denis V. Lunev | 022cbae | 2007-11-13 03:23:50 -0800 | [diff] [blame] | 288 | #define __net_initdata __initdata |
Andi Kleen | 04a6f82 | 2012-10-04 17:12:11 -0700 | [diff] [blame] | 289 | #define __net_initconst __initconst |
Pavel Emelyanov | 4665079 | 2007-10-08 20:38:39 -0700 | [diff] [blame] | 290 | #endif |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 291 | |
| 292 | struct pernet_operations { |
| 293 | struct list_head list; |
| 294 | int (*init)(struct net *net); |
| 295 | void (*exit)(struct net *net); |
Eric W. Biederman | 72ad937 | 2009-12-03 02:29:03 +0000 | [diff] [blame] | 296 | void (*exit_batch)(struct list_head *net_exit_list); |
Eric W. Biederman | f875bae | 2009-11-29 22:25:28 +0000 | [diff] [blame] | 297 | int *id; |
| 298 | size_t size; |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 299 | }; |
| 300 | |
Eric W. Biederman | 17edde5 | 2009-02-22 00:11:09 -0800 | [diff] [blame] | 301 | /* |
| 302 | * Use these carefully. If you implement a network device and it |
| 303 | * needs per network namespace operations use device pernet operations, |
| 304 | * otherwise use pernet subsys operations. |
| 305 | * |
Johannes Berg | 4edf547 | 2009-07-15 06:16:34 +0000 | [diff] [blame] | 306 | * Network interfaces need to be removed from a dying netns _before_ |
| 307 | * subsys notifiers can be called, as most of the network code cleanup |
| 308 | * (which is done from subsys notifiers) runs with the assumption that |
| 309 | * dev_remove_pack has been called so no new packets will arrive during |
| 310 | * and after the cleanup functions have been called. dev_remove_pack |
| 311 | * is not per namespace so instead the guarantee of no more packets |
| 312 | * arriving in a network namespace is provided by ensuring that all |
| 313 | * network devices and all sockets have left the network namespace |
| 314 | * before the cleanup methods are called. |
Eric W. Biederman | 17edde5 | 2009-02-22 00:11:09 -0800 | [diff] [blame] | 315 | * |
| 316 | * For the longest time the ipv4 icmp code was registered as a pernet |
| 317 | * device which caused kernel oops, and panics during network |
| 318 | * namespace cleanup. So please don't get this wrong. |
| 319 | */ |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 320 | int register_pernet_subsys(struct pernet_operations *); |
| 321 | void unregister_pernet_subsys(struct pernet_operations *); |
| 322 | int register_pernet_device(struct pernet_operations *); |
| 323 | void unregister_pernet_device(struct pernet_operations *); |
Eric W. Biederman | f875bae | 2009-11-29 22:25:28 +0000 | [diff] [blame] | 324 | |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 325 | struct ctl_table; |
| 326 | struct ctl_table_header; |
Pavel Emelyanov | d62c612 | 2008-05-19 13:45:33 -0700 | [diff] [blame] | 327 | |
Eric W. Biederman | 2ca794e | 2012-04-19 13:20:32 +0000 | [diff] [blame] | 328 | #ifdef CONFIG_SYSCTL |
Joe Perches | e67e16e | 2013-09-21 10:22:48 -0700 | [diff] [blame] | 329 | int net_sysctl_init(void); |
| 330 | struct ctl_table_header *register_net_sysctl(struct net *net, const char *path, |
| 331 | struct ctl_table *table); |
| 332 | void unregister_net_sysctl_table(struct ctl_table_header *header); |
Eric W. Biederman | 48c7495 | 2012-04-23 12:13:02 +0000 | [diff] [blame] | 333 | #else |
| 334 | static inline int net_sysctl_init(void) { return 0; } |
| 335 | static inline struct ctl_table_header *register_net_sysctl(struct net *net, |
| 336 | const char *path, struct ctl_table *table) |
| 337 | { |
| 338 | return NULL; |
| 339 | } |
| 340 | static inline void unregister_net_sysctl_table(struct ctl_table_header *header) |
| 341 | { |
| 342 | } |
| 343 | #endif |
| 344 | |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 345 | static inline int rt_genid_ipv4(struct net *net) |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 346 | { |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 347 | return atomic_read(&net->ipv4.rt_genid); |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 348 | } |
| 349 | |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 350 | static inline void rt_genid_bump_ipv4(struct net *net) |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 351 | { |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 352 | atomic_inc(&net->ipv4.rt_genid); |
| 353 | } |
| 354 | |
| 355 | #if IS_ENABLED(CONFIG_IPV6) |
| 356 | static inline int rt_genid_ipv6(struct net *net) |
| 357 | { |
| 358 | return atomic_read(&net->ipv6.rt_genid); |
| 359 | } |
| 360 | |
| 361 | static inline void rt_genid_bump_ipv6(struct net *net) |
| 362 | { |
| 363 | atomic_inc(&net->ipv6.rt_genid); |
| 364 | } |
| 365 | #else |
| 366 | static inline int rt_genid_ipv6(struct net *net) |
| 367 | { |
| 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | static inline void rt_genid_bump_ipv6(struct net *net) |
| 372 | { |
| 373 | } |
| 374 | #endif |
| 375 | |
Luis R. Rodriguez | 599018a | 2014-04-17 18:22:54 -0700 | [diff] [blame] | 376 | #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN) |
| 377 | static inline struct netns_ieee802154_lowpan * |
| 378 | net_ieee802154_lowpan(struct net *net) |
| 379 | { |
| 380 | return &net->ieee802154_lowpan; |
| 381 | } |
Luis R. Rodriguez | 599018a | 2014-04-17 18:22:54 -0700 | [diff] [blame] | 382 | #endif |
| 383 | |
fan.du | ca4c3fc | 2013-07-30 08:33:53 +0800 | [diff] [blame] | 384 | /* For callers who don't really care about whether it's IPv4 or IPv6 */ |
| 385 | static inline void rt_genid_bump_all(struct net *net) |
| 386 | { |
| 387 | rt_genid_bump_ipv4(net); |
| 388 | rt_genid_bump_ipv6(net); |
Nicolas Dichtel | b42664f | 2012-09-10 22:09:44 +0000 | [diff] [blame] | 389 | } |
Eric W. Biederman | 95bdfcc | 2007-11-30 23:55:42 +1100 | [diff] [blame] | 390 | |
Timo Teräs | 5aad1de | 2013-05-27 20:46:33 +0000 | [diff] [blame] | 391 | static inline int fnhe_genid(struct net *net) |
| 392 | { |
| 393 | return atomic_read(&net->fnhe_genid); |
| 394 | } |
| 395 | |
| 396 | static inline void fnhe_genid_bump(struct net *net) |
| 397 | { |
| 398 | atomic_inc(&net->fnhe_genid); |
| 399 | } |
| 400 | |
Eric W. Biederman | 5f256be | 2007-09-12 11:50:50 +0200 | [diff] [blame] | 401 | #endif /* __NET_NET_NAMESPACE_H */ |