Merge branch 'for-airlied' of git://people.freedesktop.org/~danvet/drm-intel into...
[deliverable/linux.git] / include / net / net_namespace.h
CommitLineData
5f256bec
EB
1/*
2 * Operations on the network namespace
3 */
4#ifndef __NET_NET_NAMESPACE_H
5#define __NET_NET_NAMESPACE_H
6
60063497 7#include <linux/atomic.h>
5f256bec
EB
8#include <linux/workqueue.h>
9#include <linux/list.h>
bee95250 10#include <linux/sysctl.h>
5f256bec 11
8efa6e93 12#include <net/netns/core.h>
852566f5 13#include <net/netns/mib.h>
a0a53c8b 14#include <net/netns/unix.h>
2aaef4e4 15#include <net/netns/packet.h>
8afd351c 16#include <net/netns/ipv4.h>
b0f159db 17#include <net/netns/ipv6.h>
67019cc9 18#include <net/netns/dccp.h>
8d870052 19#include <net/netns/x_tables.h>
dfdb8d79
AD
20#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
21#include <net/netns/conntrack.h>
22#endif
d62ddc21 23#include <net/netns/xfrm.h>
a0a53c8b 24
457c4cbc 25struct proc_dir_entry;
2774c7ab 26struct net_device;
97c53cac 27struct sock;
1597fbc0 28struct ctl_table_header;
dec827d1 29struct net_generic;
134e6375 30struct sock;
2553d064 31struct netns_ipvs;
1597fbc0 32
7c28bd0b
ED
33
34#define NETDEV_HASHBITS 8
35#define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
36
5f256bec 37struct net {
a685e089
AV
38 atomic_t passive; /* To decided when the network
39 * namespace should be freed.
40 */
5f256bec 41 atomic_t count; /* To decided when the network
a685e089 42 * namespace should be shut down.
5f256bec 43 */
5d1e4468 44#ifdef NETNS_REFCNT_DEBUG
5f256bec
EB
45 atomic_t use_count; /* To track references we
46 * destroy on demand
47 */
5d1e4468 48#endif
8e602ce2
ED
49 spinlock_t rules_mod_lock;
50
5f256bec 51 struct list_head list; /* list of network namespaces */
2b035b39 52 struct list_head cleanup_list; /* namespaces on death row */
72ad937a 53 struct list_head exit_list; /* Use only net_mutex */
457c4cbc
EB
54
55 struct proc_dir_entry *proc_net;
56 struct proc_dir_entry *proc_net_stat;
881d966b 57
73455092
AV
58#ifdef CONFIG_SYSCTL
59 struct ctl_table_set sysctls;
60#endif
95bdfccb 61
8e602ce2
ED
62 struct sock *rtnl; /* rtnetlink socket */
63 struct sock *genl_sock;
2774c7ab 64
881d966b
EB
65 struct list_head dev_base_head;
66 struct hlist_head *dev_name_head;
67 struct hlist_head *dev_index_head;
4e985ada 68 unsigned int dev_base_seq; /* protected by rtnl_mutex */
97c53cac 69
5fd30ee7
DL
70 /* core fib_rules */
71 struct list_head rules_ops;
5fd30ee7 72
d12d01d6 73
8e602ce2 74 struct net_device *loopback_dev; /* The loopback */
8efa6e93 75 struct netns_core core;
852566f5 76 struct netns_mib mib;
2aaef4e4 77 struct netns_packet packet;
a0a53c8b 78 struct netns_unix unx;
8afd351c 79 struct netns_ipv4 ipv4;
dfd56b8b 80#if IS_ENABLED(CONFIG_IPV6)
b0f159db
DL
81 struct netns_ipv6 ipv6;
82#endif
67019cc9
PE
83#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
84 struct netns_dccp dccp;
85#endif
8d870052
AD
86#ifdef CONFIG_NETFILTER
87 struct netns_xt xt;
dfdb8d79
AD
88#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
89 struct netns_ct ct;
90#endif
cd8c20b6
AD
91 struct sock *nfnl;
92 struct sock *nfnl_stash;
d62ddc21 93#endif
3d23e349 94#ifdef CONFIG_WEXT_CORE
b333b3d2 95 struct sk_buff_head wext_nlevents;
8d870052 96#endif
1c87733d 97 struct net_generic __rcu *gen;
8e602ce2
ED
98
99 /* Note : following structs are cache line aligned */
100#ifdef CONFIG_XFRM
101 struct netns_xfrm xfrm;
102#endif
61b1ab45 103 struct netns_ipvs *ipvs;
51d7cccf 104 struct sock *diag_nlsk;
b42664f8 105 atomic_t rt_genid;
5f256bec
EB
106};
107
225c0a01 108
c0f39322
DL
109#include <linux/seq_file_net.h>
110
4fabcd71 111/* Init's network namespace */
5f256bec 112extern struct net init_net;
a4aa834a
DL
113
114#ifdef CONFIG_NET
9dd776b6 115extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
225c0a01
DL
116
117#else /* CONFIG_NET */
9dd776b6
EB
118static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
119{
120 /* There is nothing to copy so this is a noop */
121 return net_ns;
122}
225c0a01
DL
123#endif /* CONFIG_NET */
124
125
126extern struct list_head net_namespace_list;
9dd776b6 127
30ffee84 128extern struct net *get_net_ns_by_pid(pid_t pid);
f0630529 129extern struct net *get_net_ns_by_fd(int pid);
30ffee84 130
d4655795 131#ifdef CONFIG_NET_NS
5f256bec
EB
132extern void __put_net(struct net *net);
133
134static inline struct net *get_net(struct net *net)
135{
136 atomic_inc(&net->count);
137 return net;
138}
139
077130c0
EB
140static inline struct net *maybe_get_net(struct net *net)
141{
142 /* Used when we know struct net exists but we
143 * aren't guaranteed a previous reference count
144 * exists. If the reference count is zero this
145 * function fails and returns NULL.
146 */
147 if (!atomic_inc_not_zero(&net->count))
148 net = NULL;
149 return net;
150}
151
5f256bec
EB
152static inline void put_net(struct net *net)
153{
154 if (atomic_dec_and_test(&net->count))
155 __put_net(net);
156}
157
878628fb
YH
158static inline
159int net_eq(const struct net *net1, const struct net *net2)
160{
161 return net1 == net2;
162}
a685e089
AV
163
164extern void net_drop_ns(void *);
165
d4655795 166#else
b9f75f45 167
d4655795
PE
168static inline struct net *get_net(struct net *net)
169{
170 return net;
171}
172
173static inline void put_net(struct net *net)
174{
175}
176
5d1e4468
DL
177static inline struct net *maybe_get_net(struct net *net)
178{
179 return net;
180}
181
182static inline
183int net_eq(const struct net *net1, const struct net *net2)
184{
185 return 1;
186}
a685e089
AV
187
188#define net_drop_ns NULL
5d1e4468
DL
189#endif
190
191
192#ifdef NETNS_REFCNT_DEBUG
d4655795
PE
193static inline struct net *hold_net(struct net *net)
194{
5d1e4468
DL
195 if (net)
196 atomic_inc(&net->use_count);
d4655795
PE
197 return net;
198}
199
200static inline void release_net(struct net *net)
201{
5d1e4468
DL
202 if (net)
203 atomic_dec(&net->use_count);
d4655795 204}
5d1e4468
DL
205#else
206static inline struct net *hold_net(struct net *net)
d4655795
PE
207{
208 return net;
209}
878628fb 210
5d1e4468 211static inline void release_net(struct net *net)
878628fb 212{
878628fb 213}
d4655795 214#endif
5f256bec 215
8f424b5f
ED
216#ifdef CONFIG_NET_NS
217
218static inline void write_pnet(struct net **pnet, struct net *net)
219{
220 *pnet = net;
221}
222
223static inline struct net *read_pnet(struct net * const *pnet)
224{
225 return *pnet;
226}
227
228#else
229
230#define write_pnet(pnet, net) do { (void)(net);} while (0)
231#define read_pnet(pnet) (&init_net)
232
233#endif
5d1e4468 234
5f256bec
EB
235#define for_each_net(VAR) \
236 list_for_each_entry(VAR, &net_namespace_list, list)
237
11a28d37
JB
238#define for_each_net_rcu(VAR) \
239 list_for_each_entry_rcu(VAR, &net_namespace_list, list)
240
4665079c
PE
241#ifdef CONFIG_NET_NS
242#define __net_init
243#define __net_exit
022cbae6 244#define __net_initdata
4665079c
PE
245#else
246#define __net_init __init
247#define __net_exit __exit_refok
022cbae6 248#define __net_initdata __initdata
4665079c 249#endif
5f256bec
EB
250
251struct pernet_operations {
252 struct list_head list;
253 int (*init)(struct net *net);
254 void (*exit)(struct net *net);
72ad937a 255 void (*exit_batch)(struct list_head *net_exit_list);
f875bae0
EB
256 int *id;
257 size_t size;
5f256bec
EB
258};
259
17edde52
EB
260/*
261 * Use these carefully. If you implement a network device and it
262 * needs per network namespace operations use device pernet operations,
263 * otherwise use pernet subsys operations.
264 *
4edf547b
JB
265 * Network interfaces need to be removed from a dying netns _before_
266 * subsys notifiers can be called, as most of the network code cleanup
267 * (which is done from subsys notifiers) runs with the assumption that
268 * dev_remove_pack has been called so no new packets will arrive during
269 * and after the cleanup functions have been called. dev_remove_pack
270 * is not per namespace so instead the guarantee of no more packets
271 * arriving in a network namespace is provided by ensuring that all
272 * network devices and all sockets have left the network namespace
273 * before the cleanup methods are called.
17edde52
EB
274 *
275 * For the longest time the ipv4 icmp code was registered as a pernet
276 * device which caused kernel oops, and panics during network
277 * namespace cleanup. So please don't get this wrong.
278 */
5f256bec
EB
279extern int register_pernet_subsys(struct pernet_operations *);
280extern void unregister_pernet_subsys(struct pernet_operations *);
281extern int register_pernet_device(struct pernet_operations *);
282extern void unregister_pernet_device(struct pernet_operations *);
f875bae0 283
95bdfccb
EB
284struct ctl_table;
285struct ctl_table_header;
d62c612e 286
2ca794e5
EB
287#ifdef CONFIG_SYSCTL
288extern int net_sysctl_init(void);
ab41a2ca
EB
289extern struct ctl_table_header *register_net_sysctl(struct net *net,
290 const char *path, struct ctl_table *table);
95bdfccb 291extern void unregister_net_sysctl_table(struct ctl_table_header *header);
48c74958
EB
292#else
293static inline int net_sysctl_init(void) { return 0; }
294static inline struct ctl_table_header *register_net_sysctl(struct net *net,
295 const char *path, struct ctl_table *table)
296{
297 return NULL;
298}
299static inline void unregister_net_sysctl_table(struct ctl_table_header *header)
300{
301}
302#endif
303
b42664f8
ND
304static inline int rt_genid(struct net *net)
305{
306 return atomic_read(&net->rt_genid);
307}
308
309static inline void rt_genid_bump(struct net *net)
310{
311 atomic_inc(&net->rt_genid);
312}
95bdfccb 313
5f256bec 314#endif /* __NET_NET_NAMESPACE_H */
This page took 0.489138 seconds and 5 git commands to generate.