1
2
3
4
5#ifndef __NET_NET_NAMESPACE_H
6#define __NET_NET_NAMESPACE_H
7
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>
14
15#include <net/flow.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>
30#endif
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>
40
41struct user_namespace;
42struct proc_dir_entry;
43struct net_device;
44struct sock;
45struct ctl_table_header;
46struct net_generic;
47struct uevent_sock;
48struct netns_ipvs;
49struct bpf_prog;
50
51
52#define NETDEV_HASHBITS 8
53#define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
54
55struct net {
56
57
58
59 refcount_t passive;
60
61
62 refcount_t count;
63
64
65 spinlock_t rules_mod_lock;
66
67 unsigned int dev_unreg_count;
68
69 unsigned int dev_base_seq;
70 int ifindex;
71
72 spinlock_t nsid_lock;
73 atomic_t fnhe_genid;
74
75 struct list_head list;
76 struct list_head exit_list;
77
78
79
80
81
82 struct llist_node cleanup_list;
83
84#ifdef CONFIG_KEYS
85 struct key_tag *key_domain;
86#endif
87 struct user_namespace *user_ns;
88 struct ucounts *ucounts;
89 struct idr netns_ids;
90
91 struct ns_common ns;
92
93 struct list_head dev_base_head;
94 struct proc_dir_entry *proc_net;
95 struct proc_dir_entry *proc_net_stat;
96
97#ifdef CONFIG_SYSCTL
98 struct ctl_table_set sysctls;
99#endif
100
101 struct sock *rtnl;
102 struct sock *genl_sock;
103
104 struct uevent_sock *uevent_sock;
105
106 struct hlist_head *dev_name_head;
107 struct hlist_head *dev_index_head;
108 struct raw_notifier_head netdev_chain;
109
110
111
112
113 u32 hash_mix;
114
115 struct net_device *loopback_dev;
116
117
118 struct list_head rules_ops;
119
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;
128#endif
129#if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
130 struct netns_ieee802154_lowpan ieee802154_lowpan;
131#endif
132#if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE)
133 struct netns_sctp sctp;
134#endif
135#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
136 struct netns_dccp dccp;
137#endif
138#ifdef CONFIG_NETFILTER
139 struct netns_nf nf;
140 struct netns_xt xt;
141#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
142 struct netns_ct ct;
143#endif
144#if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE)
145 struct netns_nftables nft;
146#endif
147#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
148 struct netns_nf_frag nf_frag;
149 struct ctl_table_header *nf_frag_frags_hdr;
150#endif
151 struct sock *nfnl;
152 struct sock *nfnl_stash;
153#if IS_ENABLED(CONFIG_NETFILTER_NETLINK_ACCT)
154 struct list_head nfnl_acct_list;
155#endif
156#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
157 struct list_head nfct_timeout_list;
158#endif
159#endif
160#ifdef CONFIG_WEXT_CORE
161 struct sk_buff_head wext_nlevents;
162#endif
163 struct net_generic __rcu *gen;
164
165 struct bpf_prog __rcu *flow_dissector_prog;
166
167
168#ifdef CONFIG_XFRM
169 struct netns_xfrm xfrm;
170#endif
171
172 atomic64_t net_cookie;
173
174#if IS_ENABLED(CONFIG_IP_VS)
175 struct netns_ipvs *ipvs;
176#endif
177#if IS_ENABLED(CONFIG_MPLS)
178 struct netns_mpls mpls;
179#endif
180#if IS_ENABLED(CONFIG_CAN)
181 struct netns_can can;
182#endif
183#ifdef CONFIG_XDP_SOCKETS
184 struct netns_xdp xdp;
185#endif
186#if IS_ENABLED(CONFIG_CRYPTO_USER)
187 struct sock *crypto_nlsk;
188#endif
189 struct sock *diag_nlsk;
190} __randomize_layout;
191
192#include <linux/seq_file_net.h>
193
194
195extern struct net init_net;
196
197#ifdef CONFIG_NET_NS
198struct net *copy_net_ns(unsigned long flags, struct user_namespace *user_ns,
199 struct net *old_net);
200
201void net_ns_get_ownership(const struct net *net, kuid_t *uid, kgid_t *gid);
202
203void net_ns_barrier(void);
204#else
205#include <linux/sched.h>
206#include <linux/nsproxy.h>
207static inline struct net *copy_net_ns(unsigned long flags,
208 struct user_namespace *user_ns, struct net *old_net)
209{
210 if (flags & CLONE_NEWNET)
211 return ERR_PTR(-EINVAL);
212 return old_net;
213}
214
215static inline void net_ns_get_ownership(const struct net *net,
216 kuid_t *uid, kgid_t *gid)
217{
218 *uid = GLOBAL_ROOT_UID;
219 *gid = GLOBAL_ROOT_GID;
220}
221
222static inline void net_ns_barrier(void) {}
223#endif
224
225
226extern struct list_head net_namespace_list;
227
228struct net *get_net_ns_by_pid(pid_t pid);
229struct net *get_net_ns_by_fd(int fd);
230
231u64 net_gen_cookie(struct net *net);
232
233#ifdef CONFIG_SYSCTL
234void ipx_register_sysctl(void);
235void ipx_unregister_sysctl(void);
236#else
237#define ipx_register_sysctl()
238#define ipx_unregister_sysctl()
239#endif
240
241#ifdef CONFIG_NET_NS
242void __put_net(struct net *net);
243
244static inline struct net *get_net(struct net *net)
245{
246 refcount_inc(&net->count);
247 return net;
248}
249
250static inline struct net *maybe_get_net(struct net *net)
251{
252
253
254
255
256
257 if (!refcount_inc_not_zero(&net->count))
258 net = NULL;
259 return net;
260}
261
262static inline void put_net(struct net *net)
263{
264 if (refcount_dec_and_test(&net->count))
265 __put_net(net);
266}
267
268static inline
269int net_eq(const struct net *net1, const struct net *net2)
270{
271 return net1 == net2;
272}
273
274static inline int check_net(const struct net *net)
275{
276 return refcount_read(&net->count) != 0;
277}
278
279void net_drop_ns(void *);
280
281#else
282
283static inline struct net *get_net(struct net *net)
284{
285 return net;
286}
287
288static inline void put_net(struct net *net)
289{
290}
291
292static inline struct net *maybe_get_net(struct net *net)
293{
294 return net;
295}
296
297static inline
298int net_eq(const struct net *net1, const struct net *net2)
299{
300 return 1;
301}
302
303static inline int check_net(const struct net *net)
304{
305 return 1;
306}
307
308#define net_drop_ns NULL
309#endif
310
311
312typedef struct {
313#ifdef CONFIG_NET_NS
314 struct net *net;
315#endif
316} possible_net_t;
317
318static inline void write_pnet(possible_net_t *pnet, struct net *net)
319{
320#ifdef CONFIG_NET_NS
321 pnet->net = net;
322#endif
323}
324
325static inline struct net *read_pnet(const possible_net_t *pnet)
326{
327#ifdef CONFIG_NET_NS
328 return pnet->net;
329#else
330 return &init_net;
331#endif
332}
333
334
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)
341
342#ifdef CONFIG_NET_NS
343#define __net_init
344#define __net_exit
345#define __net_initdata
346#define __net_initconst
347#else
348#define __net_init __init
349#define __net_exit __ref
350#define __net_initdata __initdata
351#define __net_initconst __initconst
352#endif
353
354int peernet2id_alloc(struct net *net, struct net *peer, gfp_t gfp);
355int peernet2id(const struct net *net, struct net *peer);
356bool peernet_has_id(const struct net *net, struct net *peer);
357struct net *get_net_ns_by_id(const struct net *net, int id);
358
359struct pernet_operations {
360 struct list_head list;
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
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);
387 unsigned int *id;
388 size_t size;
389};
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410int register_pernet_subsys(struct pernet_operations *);
411void unregister_pernet_subsys(struct pernet_operations *);
412int register_pernet_device(struct pernet_operations *);
413void unregister_pernet_device(struct pernet_operations *);
414
415struct ctl_table;
416struct ctl_table_header;
417
418#ifdef CONFIG_SYSCTL
419int net_sysctl_init(void);
420struct ctl_table_header *register_net_sysctl(struct net *net, const char *path,
421 struct ctl_table *table);
422void unregister_net_sysctl_table(struct ctl_table_header *header);
423#else
424static inline int net_sysctl_init(void) { return 0; }
425static inline struct ctl_table_header *register_net_sysctl(struct net *net,
426 const char *path, struct ctl_table *table)
427{
428 return NULL;
429}
430static inline void unregister_net_sysctl_table(struct ctl_table_header *header)
431{
432}
433#endif
434
435static inline int rt_genid_ipv4(const struct net *net)
436{
437 return atomic_read(&net->ipv4.rt_genid);
438}
439
440#if IS_ENABLED(CONFIG_IPV6)
441static inline int rt_genid_ipv6(const struct net *net)
442{
443 return atomic_read(&net->ipv6.fib6_sernum);
444}
445#endif
446
447static inline void rt_genid_bump_ipv4(struct net *net)
448{
449 atomic_inc(&net->ipv4.rt_genid);
450}
451
452extern void (*__fib6_flush_trees)(struct net *net);
453static inline void rt_genid_bump_ipv6(struct net *net)
454{
455 if (__fib6_flush_trees)
456 __fib6_flush_trees(net);
457}
458
459#if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
460static inline struct netns_ieee802154_lowpan *
461net_ieee802154_lowpan(struct net *net)
462{
463 return &net->ieee802154_lowpan;
464}
465#endif
466
467
468static inline void rt_genid_bump_all(struct net *net)
469{
470 rt_genid_bump_ipv4(net);
471 rt_genid_bump_ipv6(net);
472}
473
474static inline int fnhe_genid(const struct net *net)
475{
476 return atomic_read(&net->fnhe_genid);
477}
478
479static inline void fnhe_genid_bump(struct net *net)
480{
481 atomic_inc(&net->fnhe_genid);
482}
483
484#endif
485