net: Automatically allocate per namespace data.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / net / net_namespace.h
blob080774b9dbf3431ec68218b108175d9433beea07
1 /*
2 * Operations on the network namespace
3 */
4 #ifndef __NET_NET_NAMESPACE_H
5 #define __NET_NET_NAMESPACE_H
7 #include <asm/atomic.h>
8 #include <linux/workqueue.h>
9 #include <linux/list.h>
11 #include <net/netns/core.h>
12 #include <net/netns/mib.h>
13 #include <net/netns/unix.h>
14 #include <net/netns/packet.h>
15 #include <net/netns/ipv4.h>
16 #include <net/netns/ipv6.h>
17 #include <net/netns/dccp.h>
18 #include <net/netns/x_tables.h>
19 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
20 #include <net/netns/conntrack.h>
21 #endif
22 #include <net/netns/xfrm.h>
24 struct proc_dir_entry;
25 struct net_device;
26 struct sock;
27 struct ctl_table_header;
28 struct net_generic;
29 struct sock;
32 #define NETDEV_HASHBITS 8
33 #define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)
35 struct net {
36 atomic_t count; /* To decided when the network
37 * namespace should be freed.
39 #ifdef NETNS_REFCNT_DEBUG
40 atomic_t use_count; /* To track references we
41 * destroy on demand
43 #endif
44 struct list_head list; /* list of network namespaces */
45 struct list_head cleanup_list; /* namespaces on death row */
47 struct proc_dir_entry *proc_net;
48 struct proc_dir_entry *proc_net_stat;
50 #ifdef CONFIG_SYSCTL
51 struct ctl_table_set sysctls;
52 #endif
54 struct net_device *loopback_dev; /* The loopback */
56 struct list_head dev_base_head;
57 struct hlist_head *dev_name_head;
58 struct hlist_head *dev_index_head;
60 /* core fib_rules */
61 struct list_head rules_ops;
62 spinlock_t rules_mod_lock;
64 struct sock *rtnl; /* rtnetlink socket */
65 struct sock *genl_sock;
67 struct netns_core core;
68 struct netns_mib mib;
69 struct netns_packet packet;
70 struct netns_unix unx;
71 struct netns_ipv4 ipv4;
72 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
73 struct netns_ipv6 ipv6;
74 #endif
75 #if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
76 struct netns_dccp dccp;
77 #endif
78 #ifdef CONFIG_NETFILTER
79 struct netns_xt xt;
80 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
81 struct netns_ct ct;
82 #endif
83 #endif
84 #ifdef CONFIG_XFRM
85 struct netns_xfrm xfrm;
86 #endif
87 #ifdef CONFIG_WEXT_CORE
88 struct sk_buff_head wext_nlevents;
89 #endif
90 struct net_generic *gen;
94 #include <linux/seq_file_net.h>
96 /* Init's network namespace */
97 extern struct net init_net;
99 #ifdef CONFIG_NET
100 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
102 extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
104 #else /* CONFIG_NET */
106 #define INIT_NET_NS(net_ns)
108 static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
110 /* There is nothing to copy so this is a noop */
111 return net_ns;
113 #endif /* CONFIG_NET */
116 extern struct list_head net_namespace_list;
118 extern struct net *get_net_ns_by_pid(pid_t pid);
120 #ifdef CONFIG_NET_NS
121 extern void __put_net(struct net *net);
123 static inline struct net *get_net(struct net *net)
125 atomic_inc(&net->count);
126 return net;
129 static inline struct net *maybe_get_net(struct net *net)
131 /* Used when we know struct net exists but we
132 * aren't guaranteed a previous reference count
133 * exists. If the reference count is zero this
134 * function fails and returns NULL.
136 if (!atomic_inc_not_zero(&net->count))
137 net = NULL;
138 return net;
141 static inline void put_net(struct net *net)
143 if (atomic_dec_and_test(&net->count))
144 __put_net(net);
147 static inline
148 int net_eq(const struct net *net1, const struct net *net2)
150 return net1 == net2;
152 #else
154 static inline struct net *get_net(struct net *net)
156 return net;
159 static inline void put_net(struct net *net)
163 static inline struct net *maybe_get_net(struct net *net)
165 return net;
168 static inline
169 int net_eq(const struct net *net1, const struct net *net2)
171 return 1;
173 #endif
176 #ifdef NETNS_REFCNT_DEBUG
177 static inline struct net *hold_net(struct net *net)
179 if (net)
180 atomic_inc(&net->use_count);
181 return net;
184 static inline void release_net(struct net *net)
186 if (net)
187 atomic_dec(&net->use_count);
189 #else
190 static inline struct net *hold_net(struct net *net)
192 return net;
195 static inline void release_net(struct net *net)
198 #endif
200 #ifdef CONFIG_NET_NS
202 static inline void write_pnet(struct net **pnet, struct net *net)
204 *pnet = net;
207 static inline struct net *read_pnet(struct net * const *pnet)
209 return *pnet;
212 #else
214 #define write_pnet(pnet, net) do { (void)(net);} while (0)
215 #define read_pnet(pnet) (&init_net)
217 #endif
219 #define for_each_net(VAR) \
220 list_for_each_entry(VAR, &net_namespace_list, list)
222 #define for_each_net_rcu(VAR) \
223 list_for_each_entry_rcu(VAR, &net_namespace_list, list)
225 #ifdef CONFIG_NET_NS
226 #define __net_init
227 #define __net_exit
228 #define __net_initdata
229 #else
230 #define __net_init __init
231 #define __net_exit __exit_refok
232 #define __net_initdata __initdata
233 #endif
235 struct pernet_operations {
236 struct list_head list;
237 int (*init)(struct net *net);
238 void (*exit)(struct net *net);
239 int *id;
240 size_t size;
244 * Use these carefully. If you implement a network device and it
245 * needs per network namespace operations use device pernet operations,
246 * otherwise use pernet subsys operations.
248 * Network interfaces need to be removed from a dying netns _before_
249 * subsys notifiers can be called, as most of the network code cleanup
250 * (which is done from subsys notifiers) runs with the assumption that
251 * dev_remove_pack has been called so no new packets will arrive during
252 * and after the cleanup functions have been called. dev_remove_pack
253 * is not per namespace so instead the guarantee of no more packets
254 * arriving in a network namespace is provided by ensuring that all
255 * network devices and all sockets have left the network namespace
256 * before the cleanup methods are called.
258 * For the longest time the ipv4 icmp code was registered as a pernet
259 * device which caused kernel oops, and panics during network
260 * namespace cleanup. So please don't get this wrong.
262 extern int register_pernet_subsys(struct pernet_operations *);
263 extern void unregister_pernet_subsys(struct pernet_operations *);
264 extern int register_pernet_device(struct pernet_operations *);
265 extern void unregister_pernet_device(struct pernet_operations *);
267 static inline int register_pernet_gen_subsys(int *id, struct pernet_operations *ops)
269 ops->id = id;
270 return register_pernet_subsys(ops);
273 static inline void unregister_pernet_gen_subsys(int id, struct pernet_operations *ops)
275 return unregister_pernet_subsys(ops);
278 static inline int register_pernet_gen_device(int *id, struct pernet_operations *ops)
280 ops->id = id;
281 return register_pernet_device(ops);
284 static inline void unregister_pernet_gen_device(int id, struct pernet_operations *ops)
286 return unregister_pernet_device(ops);
289 struct ctl_path;
290 struct ctl_table;
291 struct ctl_table_header;
293 extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
294 const struct ctl_path *path, struct ctl_table *table);
295 extern struct ctl_table_header *register_net_sysctl_rotable(
296 const struct ctl_path *path, struct ctl_table *table);
297 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
299 #endif /* __NET_NET_NAMESPACE_H */