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