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/nexthop.h>
23 #include <net/netns/ieee802154_6lowpan.h>
24 #include <net/netns/sctp.h>
25 #include <net/netns/dccp.h>
26 #include <net/netns/netfilter.h>
27 #include <net/netns/x_tables.h>
28 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
29 #include <net/netns/conntrack.h>
31 #include <net/netns/nftables.h>
32 #include <net/netns/xfrm.h>
33 #include <net/netns/mpls.h>
34 #include <net/netns/can.h>
35 #include <net/netns/xdp.h>
36 #include <linux/ns_common.h>
37 #include <linux/idr.h>
38 #include <linux/skbuff.h>
39 #include <linux/notifier.h>
41 struct user_namespace
;
42 struct proc_dir_entry
;
45 struct ctl_table_header
;
52 #define NETDEV_HASHBITS 8
53 #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
56 /* First cache line can be often dirtied.
57 * Do not place here read-mostly fields.
59 refcount_t passive
; /* To decide when the network
60 * namespace should be freed.
62 refcount_t count
; /* To decided when the network
63 * namespace should be shut down.
65 spinlock_t rules_mod_lock
;
67 unsigned int dev_unreg_count
;
69 unsigned int dev_base_seq
; /* protected by rtnl_mutex */
75 struct list_head list
; /* list of network namespaces */
76 struct list_head exit_list
; /* To linked to call pernet exit
77 * methods on dead net (
78 * pernet_ops_rwsem read locked),
79 * or to unregister pernet ops
80 * (pernet_ops_rwsem write locked).
82 struct llist_node cleanup_list
; /* namespaces on death row */
85 struct key_tag
*key_domain
; /* Key domain of operation tag */
87 struct user_namespace
*user_ns
; /* Owning user namespace */
88 struct ucounts
*ucounts
;
93 struct list_head dev_base_head
;
94 struct proc_dir_entry
*proc_net
;
95 struct proc_dir_entry
*proc_net_stat
;
98 struct ctl_table_set sysctls
;
101 struct sock
*rtnl
; /* rtnetlink socket */
102 struct sock
*genl_sock
;
104 struct uevent_sock
*uevent_sock
; /* uevent socket */
106 struct hlist_head
*dev_name_head
;
107 struct hlist_head
*dev_index_head
;
108 struct raw_notifier_head netdev_chain
;
110 /* Note that @hash_mix can be read millions times per second,
111 * it is critical that it is on a read_mostly cache line.
115 struct net_device
*loopback_dev
; /* The loopback */
118 struct list_head rules_ops
;
120 struct netns_core core
;
121 struct netns_mib mib
;
122 struct netns_packet packet
;
123 struct netns_unix unx
;
124 struct netns_nexthop nexthop
;
125 struct netns_ipv4 ipv4
;
126 #if IS_ENABLED(CONFIG_IPV6)
127 struct netns_ipv6 ipv6
;
129 #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
130 struct netns_ieee802154_lowpan ieee802154_lowpan
;
132 #if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE)
133 struct netns_sctp sctp
;
135 #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
136 struct netns_dccp dccp
;
138 #ifdef CONFIG_NETFILTER
141 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
144 #if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE)
145 struct netns_nftables nft
;
147 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
148 struct netns_nf_frag nf_frag
;
149 struct ctl_table_header
*nf_frag_frags_hdr
;
152 struct sock
*nfnl_stash
;
153 #if IS_ENABLED(CONFIG_NETFILTER_NETLINK_ACCT)
154 struct list_head nfnl_acct_list
;
156 #if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
157 struct list_head nfct_timeout_list
;
160 #ifdef CONFIG_WEXT_CORE
161 struct sk_buff_head wext_nlevents
;
163 struct net_generic __rcu
*gen
;
165 struct bpf_prog __rcu
*flow_dissector_prog
;
167 /* Note : following structs are cache line aligned */
169 struct netns_xfrm xfrm
;
172 atomic64_t net_cookie
; /* written once */
174 #if IS_ENABLED(CONFIG_IP_VS)
175 struct netns_ipvs
*ipvs
;
177 #if IS_ENABLED(CONFIG_MPLS)
178 struct netns_mpls mpls
;
180 #if IS_ENABLED(CONFIG_CAN)
181 struct netns_can can
;
183 #ifdef CONFIG_XDP_SOCKETS
184 struct netns_xdp xdp
;
186 #if IS_ENABLED(CONFIG_CRYPTO_USER)
187 struct sock
*crypto_nlsk
;
189 struct sock
*diag_nlsk
;
190 } __randomize_layout
;
192 #include <linux/seq_file_net.h>
194 /* Init's network namespace */
195 extern struct net init_net
;
198 struct net
*copy_net_ns(unsigned long flags
, struct user_namespace
*user_ns
,
199 struct net
*old_net
);
201 void net_ns_get_ownership(const struct net
*net
, kuid_t
*uid
, kgid_t
*gid
);
203 void net_ns_barrier(void);
204 #else /* CONFIG_NET_NS */
205 #include <linux/sched.h>
206 #include <linux/nsproxy.h>
207 static inline struct net
*copy_net_ns(unsigned long flags
,
208 struct user_namespace
*user_ns
, struct net
*old_net
)
210 if (flags
& CLONE_NEWNET
)
211 return ERR_PTR(-EINVAL
);
215 static inline void net_ns_get_ownership(const struct net
*net
,
216 kuid_t
*uid
, kgid_t
*gid
)
218 *uid
= GLOBAL_ROOT_UID
;
219 *gid
= GLOBAL_ROOT_GID
;
222 static inline void net_ns_barrier(void) {}
223 #endif /* CONFIG_NET_NS */
226 extern struct list_head net_namespace_list
;
228 struct net
*get_net_ns_by_pid(pid_t pid
);
229 struct net
*get_net_ns_by_fd(int fd
);
231 u64
net_gen_cookie(struct net
*net
);
234 void ipx_register_sysctl(void);
235 void ipx_unregister_sysctl(void);
237 #define ipx_register_sysctl()
238 #define ipx_unregister_sysctl()
242 void __put_net(struct net
*net
);
244 static inline struct net
*get_net(struct net
*net
)
246 refcount_inc(&net
->count
);
250 static inline struct net
*maybe_get_net(struct net
*net
)
252 /* Used when we know struct net exists but we
253 * aren't guaranteed a previous reference count
254 * exists. If the reference count is zero this
255 * function fails and returns NULL.
257 if (!refcount_inc_not_zero(&net
->count
))
262 static inline void put_net(struct net
*net
)
264 if (refcount_dec_and_test(&net
->count
))
269 int net_eq(const struct net
*net1
, const struct net
*net2
)
274 static inline int check_net(const struct net
*net
)
276 return refcount_read(&net
->count
) != 0;
279 void net_drop_ns(void *);
283 static inline struct net
*get_net(struct net
*net
)
288 static inline void put_net(struct net
*net
)
292 static inline struct net
*maybe_get_net(struct net
*net
)
298 int net_eq(const struct net
*net1
, const struct net
*net2
)
303 static inline int check_net(const struct net
*net
)
308 #define net_drop_ns NULL
318 static inline void write_pnet(possible_net_t
*pnet
, struct net
*net
)
325 static inline struct net
*read_pnet(const possible_net_t
*pnet
)
334 /* Protected by net_rwsem */
335 #define for_each_net(VAR) \
336 list_for_each_entry(VAR, &net_namespace_list, list)
337 #define for_each_net_continue_reverse(VAR) \
338 list_for_each_entry_continue_reverse(VAR, &net_namespace_list, list)
339 #define for_each_net_rcu(VAR) \
340 list_for_each_entry_rcu(VAR, &net_namespace_list, list)
345 #define __net_initdata
346 #define __net_initconst
348 #define __net_init __init
349 #define __net_exit __ref
350 #define __net_initdata __initdata
351 #define __net_initconst __initconst
354 int peernet2id_alloc(struct net
*net
, struct net
*peer
, gfp_t gfp
);
355 int peernet2id(const struct net
*net
, struct net
*peer
);
356 bool peernet_has_id(const struct net
*net
, struct net
*peer
);
357 struct net
*get_net_ns_by_id(const struct net
*net
, int id
);
359 struct pernet_operations
{
360 struct list_head list
;
362 * Below methods are called without any exclusive locks.
363 * More than one net may be constructed and destructed
364 * in parallel on several cpus. Every pernet_operations
365 * have to keep in mind all other pernet_operations and
366 * to introduce a locking, if they share common resources.
368 * The only time they are called with exclusive lock is
369 * from register_pernet_subsys(), unregister_pernet_subsys()
370 * register_pernet_device() and unregister_pernet_device().
372 * Exit methods using blocking RCU primitives, such as
373 * synchronize_rcu(), should be implemented via exit_batch.
374 * Then, destruction of a group of net requires single
375 * synchronize_rcu() related to these pernet_operations,
376 * instead of separate synchronize_rcu() for every net.
377 * Please, avoid synchronize_rcu() at all, where it's possible.
379 * Note that a combination of pre_exit() and exit() can
380 * be used, since a synchronize_rcu() is guaranteed between
383 int (*init
)(struct net
*net
);
384 void (*pre_exit
)(struct net
*net
);
385 void (*exit
)(struct net
*net
);
386 void (*exit_batch
)(struct list_head
*net_exit_list
);
392 * Use these carefully. If you implement a network device and it
393 * needs per network namespace operations use device pernet operations,
394 * otherwise use pernet subsys operations.
396 * Network interfaces need to be removed from a dying netns _before_
397 * subsys notifiers can be called, as most of the network code cleanup
398 * (which is done from subsys notifiers) runs with the assumption that
399 * dev_remove_pack has been called so no new packets will arrive during
400 * and after the cleanup functions have been called. dev_remove_pack
401 * is not per namespace so instead the guarantee of no more packets
402 * arriving in a network namespace is provided by ensuring that all
403 * network devices and all sockets have left the network namespace
404 * before the cleanup methods are called.
406 * For the longest time the ipv4 icmp code was registered as a pernet
407 * device which caused kernel oops, and panics during network
408 * namespace cleanup. So please don't get this wrong.
410 int register_pernet_subsys(struct pernet_operations
*);
411 void unregister_pernet_subsys(struct pernet_operations
*);
412 int register_pernet_device(struct pernet_operations
*);
413 void unregister_pernet_device(struct pernet_operations
*);
416 struct ctl_table_header
;
419 int net_sysctl_init(void);
420 struct ctl_table_header
*register_net_sysctl(struct net
*net
, const char *path
,
421 struct ctl_table
*table
);
422 void unregister_net_sysctl_table(struct ctl_table_header
*header
);
424 static inline int net_sysctl_init(void) { return 0; }
425 static inline struct ctl_table_header
*register_net_sysctl(struct net
*net
,
426 const char *path
, struct ctl_table
*table
)
430 static inline void unregister_net_sysctl_table(struct ctl_table_header
*header
)
435 static inline int rt_genid_ipv4(const struct net
*net
)
437 return atomic_read(&net
->ipv4
.rt_genid
);
440 #if IS_ENABLED(CONFIG_IPV6)
441 static inline int rt_genid_ipv6(const struct net
*net
)
443 return atomic_read(&net
->ipv6
.fib6_sernum
);
447 static inline void rt_genid_bump_ipv4(struct net
*net
)
449 atomic_inc(&net
->ipv4
.rt_genid
);
452 extern void (*__fib6_flush_trees
)(struct net
*net
);
453 static inline void rt_genid_bump_ipv6(struct net
*net
)
455 if (__fib6_flush_trees
)
456 __fib6_flush_trees(net
);
459 #if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
460 static inline struct netns_ieee802154_lowpan
*
461 net_ieee802154_lowpan(struct net
*net
)
463 return &net
->ieee802154_lowpan
;
467 /* For callers who don't really care about whether it's IPv4 or IPv6 */
468 static inline void rt_genid_bump_all(struct net
*net
)
470 rt_genid_bump_ipv4(net
);
471 rt_genid_bump_ipv6(net
);
474 static inline int fnhe_genid(const struct net
*net
)
476 return atomic_read(&net
->fnhe_genid
);
479 static inline void fnhe_genid_bump(struct net
*net
)
481 atomic_inc(&net
->fnhe_genid
);
484 #endif /* __NET_NET_NAMESPACE_H */