2 * Operations on the network namespace
4 #ifndef __NET_NET_NAMESPACE_H
5 #define __NET_NET_NAMESPACE_H
7 #include <linux/atomic.h>
8 #include <linux/workqueue.h>
9 #include <linux/list.h>
10 #include <linux/sysctl.h>
12 #include <net/netns/core.h>
13 #include <net/netns/mib.h>
14 #include <net/netns/unix.h>
15 #include <net/netns/packet.h>
16 #include <net/netns/ipv4.h>
17 #include <net/netns/ipv6.h>
18 #include <net/netns/sctp.h>
19 #include <net/netns/dccp.h>
20 #include <net/netns/x_tables.h>
21 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
22 #include <net/netns/conntrack.h>
24 #include <net/netns/xfrm.h>
26 struct user_namespace;
27 struct proc_dir_entry;
30 struct ctl_table_header;
36 #define NETDEV_HASHBITS 8
37 #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
40 atomic_t passive; /* To decided when the network
41 * namespace should be freed.
43 atomic_t count; /* To decided when the network
44 * namespace should be shut down.
46 #ifdef NETNS_REFCNT_DEBUG
47 atomic_t use_count; /* To track references we
51 spinlock_t rules_mod_lock;
53 struct list_head list; /* list of network namespaces */
54 struct list_head cleanup_list; /* namespaces on death row */
55 struct list_head exit_list; /* Use only net_mutex */
57 struct user_namespace *user_ns; /* Owning user namespace */
59 struct proc_dir_entry *proc_net;
60 struct proc_dir_entry *proc_net_stat;
63 struct ctl_table_set sysctls;
66 struct sock *rtnl; /* rtnetlink socket */
67 struct sock *genl_sock;
69 struct list_head dev_base_head;
70 struct hlist_head *dev_name_head;
71 struct hlist_head *dev_index_head;
72 unsigned int dev_base_seq; /* protected by rtnl_mutex */
76 struct list_head rules_ops;
79 struct net_device *loopback_dev; /* The loopback */
80 struct netns_core core;
82 struct netns_packet packet;
83 struct netns_unix unx;
84 struct netns_ipv4 ipv4;
85 #if IS_ENABLED(CONFIG_IPV6)
86 struct netns_ipv6 ipv6;
88 #if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE)
89 struct netns_sctp sctp;
91 #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
92 struct netns_dccp dccp;
94 #ifdef CONFIG_NETFILTER
96 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
99 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
100 struct netns_nf_frag nf_frag;
103 struct sock *nfnl_stash;
105 #ifdef CONFIG_WEXT_CORE
106 struct sk_buff_head wext_nlevents;
108 struct net_generic __rcu *gen;
110 /* Note : following structs are cache line aligned */
112 struct netns_xfrm xfrm;
114 struct netns_ipvs *ipvs;
115 struct sock *diag_nlsk;
120 * ifindex generation is per-net namespace, and loopback is
121 * always the 1st device in ns (see net_dev_init), thus any
122 * loopback device should get ifindex 1
125 #define LOOPBACK_IFINDEX 1
127 #include <linux/seq_file_net.h>
129 /* Init's network namespace */
130 extern struct net init_net;
133 extern struct net *copy_net_ns(unsigned long flags,
134 struct user_namespace *user_ns, struct net *old_net);
136 #else /* CONFIG_NET_NS */
137 #include <linux/sched.h>
138 #include <linux/nsproxy.h>
139 static inline struct net *copy_net_ns(unsigned long flags,
140 struct user_namespace *user_ns, struct net *old_net)
142 if (flags & CLONE_NEWNET)
143 return ERR_PTR(-EINVAL);
146 #endif /* CONFIG_NET_NS */
149 extern struct list_head net_namespace_list;
151 extern struct net *get_net_ns_by_pid(pid_t pid);
152 extern struct net *get_net_ns_by_fd(int pid);
155 extern void __put_net(struct net *net);
157 static inline struct net *get_net(struct net *net)
159 atomic_inc(&net->count);
163 static inline struct net *maybe_get_net(struct net *net)
165 /* Used when we know struct net exists but we
166 * aren't guaranteed a previous reference count
167 * exists. If the reference count is zero this
168 * function fails and returns NULL.
170 if (!atomic_inc_not_zero(&net->count))
175 static inline void put_net(struct net *net)
177 if (atomic_dec_and_test(&net->count))
182 int net_eq(const struct net *net1, const struct net *net2)
187 extern void net_drop_ns(void *);
191 static inline struct net *get_net(struct net *net)
196 static inline void put_net(struct net *net)
200 static inline struct net *maybe_get_net(struct net *net)
206 int net_eq(const struct net *net1, const struct net *net2)
211 #define net_drop_ns NULL
215 #ifdef NETNS_REFCNT_DEBUG
216 static inline struct net *hold_net(struct net *net)
219 atomic_inc(&net->use_count);
223 static inline void release_net(struct net *net)
226 atomic_dec(&net->use_count);
229 static inline struct net *hold_net(struct net *net)
234 static inline void release_net(struct net *net)
241 static inline void write_pnet(struct net **pnet, struct net *net)
246 static inline struct net *read_pnet(struct net * const *pnet)
253 #define write_pnet(pnet, net) do { (void)(net);} while (0)
254 #define read_pnet(pnet) (&init_net)
258 #define for_each_net(VAR) \
259 list_for_each_entry(VAR, &net_namespace_list, list)
261 #define for_each_net_rcu(VAR) \
262 list_for_each_entry_rcu(VAR, &net_namespace_list, list)
267 #define __net_initdata
268 #define __net_initconst
270 #define __net_init __init
271 #define __net_exit __exit_refok
272 #define __net_initdata __initdata
273 #define __net_initconst __initconst
276 struct pernet_operations {
277 struct list_head list;
278 int (*init)(struct net *net);
279 void (*exit)(struct net *net);
280 void (*exit_batch)(struct list_head *net_exit_list);
286 * Use these carefully. If you implement a network device and it
287 * needs per network namespace operations use device pernet operations,
288 * otherwise use pernet subsys operations.
290 * Network interfaces need to be removed from a dying netns _before_
291 * subsys notifiers can be called, as most of the network code cleanup
292 * (which is done from subsys notifiers) runs with the assumption that
293 * dev_remove_pack has been called so no new packets will arrive during
294 * and after the cleanup functions have been called. dev_remove_pack
295 * is not per namespace so instead the guarantee of no more packets
296 * arriving in a network namespace is provided by ensuring that all
297 * network devices and all sockets have left the network namespace
298 * before the cleanup methods are called.
300 * For the longest time the ipv4 icmp code was registered as a pernet
301 * device which caused kernel oops, and panics during network
302 * namespace cleanup. So please don't get this wrong.
304 extern int register_pernet_subsys(struct pernet_operations *);
305 extern void unregister_pernet_subsys(struct pernet_operations *);
306 extern int register_pernet_device(struct pernet_operations *);
307 extern void unregister_pernet_device(struct pernet_operations *);
310 struct ctl_table_header;
313 extern int net_sysctl_init(void);
314 extern struct ctl_table_header *register_net_sysctl(struct net *net,
315 const char *path, struct ctl_table *table);
316 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
318 static inline int net_sysctl_init(void) { return 0; }
319 static inline struct ctl_table_header *register_net_sysctl(struct net *net,
320 const char *path, struct ctl_table *table)
324 static inline void unregister_net_sysctl_table(struct ctl_table_header *header)
329 static inline int rt_genid(struct net *net)
331 return atomic_read(&net->rt_genid);
334 static inline void rt_genid_bump(struct net *net)
336 atomic_inc(&net->rt_genid);
339 #endif /* __NET_NET_NAMESPACE_H */