1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Operations on the network namespace
5 #ifndef __NET_NET_NAMESPACE_H
6 #define __NET_NET_NAMESPACE_H
8 #include <linux/atomic.h>
9 #include <linux/refcount.h>
10 #include <linux/workqueue.h>
11 #include <linux/list.h>
12 #include <linux/sysctl.h>
13 #include <linux/uidgid.h>
16 #include <net/netns/core.h>
17 #include <net/netns/mib.h>
18 #include <net/netns/unix.h>
19 #include <net/netns/packet.h>
20 #include <net/netns/ipv4.h>
21 #include <net/netns/ipv6.h>
22 #include <net/netns/ieee802154_6lowpan.h>
23 #include <net/netns/sctp.h>
24 #include <net/netns/dccp.h>
25 #include <net/netns/netfilter.h>
26 #include <net/netns/x_tables.h>
27 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
28 #include <net/netns/conntrack.h>
30 #include <net/netns/nftables.h>
31 #include <net/netns/xfrm.h>
32 #include <net/netns/mpls.h>
33 #include <net/netns/can.h>
34 #include <net/netns/xdp.h>
35 #include <linux/ns_common.h>
36 #include <linux/idr.h>
37 #include <linux/skbuff.h>
39 struct user_namespace;
40 struct proc_dir_entry;
43 struct ctl_table_header;
50 #define NETDEV_HASHBITS 8
51 #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
54 refcount_t passive; /* To decided when the network
55 * namespace should be freed.
57 refcount_t count; /* To decided when the network
58 * namespace should be shut down.
60 spinlock_t rules_mod_lock;
63 atomic64_t cookie_gen;
65 struct list_head list; /* list of network namespaces */
66 struct list_head exit_list; /* To linked to call pernet exit
67 * methods on dead net (
68 * pernet_ops_rwsem read locked),
69 * or to unregister pernet ops
70 * (pernet_ops_rwsem write locked).
72 struct llist_node cleanup_list; /* namespaces on death row */
74 struct user_namespace *user_ns; /* Owning user namespace */
75 struct ucounts *ucounts;
81 struct proc_dir_entry *proc_net;
82 struct proc_dir_entry *proc_net_stat;
85 struct ctl_table_set sysctls;
88 struct sock *rtnl; /* rtnetlink socket */
89 struct sock *genl_sock;
91 struct uevent_sock *uevent_sock; /* uevent socket */
93 struct list_head dev_base_head;
94 struct hlist_head *dev_name_head;
95 struct hlist_head *dev_index_head;
96 unsigned int dev_base_seq; /* protected by rtnl_mutex */
98 unsigned int dev_unreg_count;
101 struct list_head rules_ops;
103 struct list_head fib_notifier_ops; /* Populated by
104 * register_pernet_subsys()
106 struct net_device *loopback_dev; /* The loopback */
107 struct netns_core core;
108 struct netns_mib mib;
109 struct netns_packet packet;
110 struct netns_unix unx;
111 struct netns_ipv4 ipv4;
112 #if IS_ENABLED(CONFIG_IPV6)
113 struct netns_ipv6 ipv6;
115 #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
116 struct netns_ieee802154_lowpan ieee802154_lowpan;
118 #if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE)
119 struct netns_sctp sctp;
121 #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
122 struct netns_dccp dccp;
124 #ifdef CONFIG_NETFILTER
127 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
130 #if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE)
131 struct netns_nftables nft;
133 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
134 struct netns_nf_frag nf_frag;
135 struct ctl_table_header *nf_frag_frags_hdr;
138 struct sock *nfnl_stash;
139 #if IS_ENABLED(CONFIG_NETFILTER_NETLINK_ACCT)
140 struct list_head nfnl_acct_list;
142 #if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
143 struct list_head nfct_timeout_list;
146 #ifdef CONFIG_WEXT_CORE
147 struct sk_buff_head wext_nlevents;
149 struct net_generic __rcu *gen;
151 struct bpf_prog __rcu *flow_dissector_prog;
153 /* Note : following structs are cache line aligned */
155 struct netns_xfrm xfrm;
157 #if IS_ENABLED(CONFIG_IP_VS)
158 struct netns_ipvs *ipvs;
160 #if IS_ENABLED(CONFIG_MPLS)
161 struct netns_mpls mpls;
163 #if IS_ENABLED(CONFIG_CAN)
164 struct netns_can can;
166 #ifdef CONFIG_XDP_SOCKETS
167 struct netns_xdp xdp;
169 struct sock *diag_nlsk;
171 } __randomize_layout;
173 #include <linux/seq_file_net.h>
175 /* Init's network namespace */
176 extern struct net init_net;
179 struct net *copy_net_ns(unsigned long flags, struct user_namespace *user_ns,
180 struct net *old_net);
182 void net_ns_get_ownership(const struct net *net, kuid_t *uid, kgid_t *gid);
184 void net_ns_barrier(void);
185 #else /* CONFIG_NET_NS */
186 #include <linux/sched.h>
187 #include <linux/nsproxy.h>
188 static inline struct net *copy_net_ns(unsigned long flags,
189 struct user_namespace *user_ns, struct net *old_net)
191 if (flags & CLONE_NEWNET)
192 return ERR_PTR(-EINVAL);
196 static inline void net_ns_get_ownership(const struct net *net,
197 kuid_t *uid, kgid_t *gid)
199 *uid = GLOBAL_ROOT_UID;
200 *gid = GLOBAL_ROOT_GID;
203 static inline void net_ns_barrier(void) {}
204 #endif /* CONFIG_NET_NS */
207 extern struct list_head net_namespace_list;
209 struct net *get_net_ns_by_pid(pid_t pid);
210 struct net *get_net_ns_by_fd(int fd);
213 void ipx_register_sysctl(void);
214 void ipx_unregister_sysctl(void);
216 #define ipx_register_sysctl()
217 #define ipx_unregister_sysctl()
221 void __put_net(struct net *net);
223 static inline struct net *get_net(struct net *net)
225 refcount_inc(&net->count);
229 static inline struct net *maybe_get_net(struct net *net)
231 /* Used when we know struct net exists but we
232 * aren't guaranteed a previous reference count
233 * exists. If the reference count is zero this
234 * function fails and returns NULL.
236 if (!refcount_inc_not_zero(&net->count))
241 static inline void put_net(struct net *net)
243 if (refcount_dec_and_test(&net->count))
248 int net_eq(const struct net *net1, const struct net *net2)
253 static inline int check_net(const struct net *net)
255 return refcount_read(&net->count) != 0;
258 void net_drop_ns(void *);
262 static inline struct net *get_net(struct net *net)
267 static inline void put_net(struct net *net)
271 static inline struct net *maybe_get_net(struct net *net)
277 int net_eq(const struct net *net1, const struct net *net2)
282 static inline int check_net(const struct net *net)
287 #define net_drop_ns NULL
297 static inline void write_pnet(possible_net_t *pnet, struct net *net)
304 static inline struct net *read_pnet(const possible_net_t *pnet)
313 /* Protected by net_rwsem */
314 #define for_each_net(VAR) \
315 list_for_each_entry(VAR, &net_namespace_list, list)
317 #define for_each_net_rcu(VAR) \
318 list_for_each_entry_rcu(VAR, &net_namespace_list, list)
323 #define __net_initdata
324 #define __net_initconst
326 #define __net_init __init
327 #define __net_exit __ref
328 #define __net_initdata __initdata
329 #define __net_initconst __initconst
332 int peernet2id_alloc(struct net *net, struct net *peer);
333 int peernet2id(struct net *net, struct net *peer);
334 bool peernet_has_id(struct net *net, struct net *peer);
335 struct net *get_net_ns_by_id(struct net *net, int id);
337 struct pernet_operations {
338 struct list_head list;
340 * Below methods are called without any exclusive locks.
341 * More than one net may be constructed and destructed
342 * in parallel on several cpus. Every pernet_operations
343 * have to keep in mind all other pernet_operations and
344 * to introduce a locking, if they share common resources.
346 * The only time they are called with exclusive lock is
347 * from register_pernet_subsys(), unregister_pernet_subsys()
348 * register_pernet_device() and unregister_pernet_device().
350 * Exit methods using blocking RCU primitives, such as
351 * synchronize_rcu(), should be implemented via exit_batch.
352 * Then, destruction of a group of net requires single
353 * synchronize_rcu() related to these pernet_operations,
354 * instead of separate synchronize_rcu() for every net.
355 * Please, avoid synchronize_rcu() at all, where it's possible.
357 int (*init)(struct net *net);
358 void (*exit)(struct net *net);
359 void (*exit_batch)(struct list_head *net_exit_list);
365 * Use these carefully. If you implement a network device and it
366 * needs per network namespace operations use device pernet operations,
367 * otherwise use pernet subsys operations.
369 * Network interfaces need to be removed from a dying netns _before_
370 * subsys notifiers can be called, as most of the network code cleanup
371 * (which is done from subsys notifiers) runs with the assumption that
372 * dev_remove_pack has been called so no new packets will arrive during
373 * and after the cleanup functions have been called. dev_remove_pack
374 * is not per namespace so instead the guarantee of no more packets
375 * arriving in a network namespace is provided by ensuring that all
376 * network devices and all sockets have left the network namespace
377 * before the cleanup methods are called.
379 * For the longest time the ipv4 icmp code was registered as a pernet
380 * device which caused kernel oops, and panics during network
381 * namespace cleanup. So please don't get this wrong.
383 int register_pernet_subsys(struct pernet_operations *);
384 void unregister_pernet_subsys(struct pernet_operations *);
385 int register_pernet_device(struct pernet_operations *);
386 void unregister_pernet_device(struct pernet_operations *);
389 struct ctl_table_header;
392 int net_sysctl_init(void);
393 struct ctl_table_header *register_net_sysctl(struct net *net, const char *path,
394 struct ctl_table *table);
395 void unregister_net_sysctl_table(struct ctl_table_header *header);
397 static inline int net_sysctl_init(void) { return 0; }
398 static inline struct ctl_table_header *register_net_sysctl(struct net *net,
399 const char *path, struct ctl_table *table)
403 static inline void unregister_net_sysctl_table(struct ctl_table_header *header)
408 static inline int rt_genid_ipv4(struct net *net)
410 return atomic_read(&net->ipv4.rt_genid);
413 static inline void rt_genid_bump_ipv4(struct net *net)
415 atomic_inc(&net->ipv4.rt_genid);
418 extern void (*__fib6_flush_trees)(struct net *net);
419 static inline void rt_genid_bump_ipv6(struct net *net)
421 if (__fib6_flush_trees)
422 __fib6_flush_trees(net);
425 #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
426 static inline struct netns_ieee802154_lowpan *
427 net_ieee802154_lowpan(struct net *net)
429 return &net->ieee802154_lowpan;
433 /* For callers who don't really care about whether it's IPv4 or IPv6 */
434 static inline void rt_genid_bump_all(struct net *net)
436 rt_genid_bump_ipv4(net);
437 rt_genid_bump_ipv6(net);
440 static inline int fnhe_genid(struct net *net)
442 return atomic_read(&net->fnhe_genid);
445 static inline void fnhe_genid_bump(struct net *net)
447 atomic_inc(&net->fnhe_genid);
450 #endif /* __NET_NET_NAMESPACE_H */