Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / include / net / net_namespace.h
blob10f66c3905d2a87cb489a841dc06a58388b6f6ec
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/unix.h>
12 #include <net/netns/packet.h>
13 #include <net/netns/ipv4.h>
14 #include <net/netns/ipv6.h>
15 #include <net/netns/x_tables.h>
17 struct proc_dir_entry;
18 struct net_device;
19 struct sock;
20 struct ctl_table_header;
22 struct net {
23 atomic_t count; /* To decided when the network
24 * namespace should be freed.
26 atomic_t use_count; /* To track references we
27 * destroy on demand
29 struct list_head list; /* list of network namespaces */
30 struct work_struct work; /* work struct for freeing */
32 struct proc_dir_entry *proc_net;
33 struct proc_dir_entry *proc_net_stat;
34 <<<<<<< HEAD:include/net/net_namespace.h
35 struct proc_dir_entry *proc_net_root;
36 =======
37 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:include/net/net_namespace.h
39 struct list_head sysctl_table_headers;
41 struct net_device *loopback_dev; /* The loopback */
43 struct list_head dev_base_head;
44 struct hlist_head *dev_name_head;
45 struct hlist_head *dev_index_head;
47 /* core fib_rules */
48 struct list_head rules_ops;
49 spinlock_t rules_mod_lock;
51 struct sock *rtnl; /* rtnetlink socket */
53 /* core sysctls */
54 struct ctl_table_header *sysctl_core_hdr;
55 int sysctl_somaxconn;
57 struct netns_packet packet;
58 struct netns_unix unx;
59 struct netns_ipv4 ipv4;
60 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
61 struct netns_ipv6 ipv6;
62 #endif
63 #ifdef CONFIG_NETFILTER
64 struct netns_xt xt;
65 #endif
68 #ifdef CONFIG_NET
69 /* Init's network namespace */
70 extern struct net init_net;
71 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
72 #else
73 #define INIT_NET_NS(net_ns)
74 #endif
76 extern struct list_head net_namespace_list;
78 #ifdef CONFIG_NET
79 extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
80 #else
81 static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
83 /* There is nothing to copy so this is a noop */
84 return net_ns;
86 #endif
88 #ifdef CONFIG_NET_NS
89 extern void __put_net(struct net *net);
91 static inline struct net *get_net(struct net *net)
93 atomic_inc(&net->count);
94 return net;
97 static inline struct net *maybe_get_net(struct net *net)
99 /* Used when we know struct net exists but we
100 * aren't guaranteed a previous reference count
101 * exists. If the reference count is zero this
102 * function fails and returns NULL.
104 if (!atomic_inc_not_zero(&net->count))
105 net = NULL;
106 return net;
109 static inline void put_net(struct net *net)
111 if (atomic_dec_and_test(&net->count))
112 __put_net(net);
115 static inline struct net *hold_net(struct net *net)
117 atomic_inc(&net->use_count);
118 return net;
121 static inline void release_net(struct net *net)
123 atomic_dec(&net->use_count);
125 #else
126 static inline struct net *get_net(struct net *net)
128 return net;
131 static inline void put_net(struct net *net)
135 static inline struct net *hold_net(struct net *net)
137 return net;
140 static inline void release_net(struct net *net)
144 static inline struct net *maybe_get_net(struct net *net)
146 return net;
148 #endif
150 #define for_each_net(VAR) \
151 list_for_each_entry(VAR, &net_namespace_list, list)
153 #ifdef CONFIG_NET_NS
154 #define __net_init
155 #define __net_exit
156 #define __net_initdata
157 #else
158 #define __net_init __init
159 #define __net_exit __exit_refok
160 #define __net_initdata __initdata
161 #endif
163 struct pernet_operations {
164 struct list_head list;
165 int (*init)(struct net *net);
166 void (*exit)(struct net *net);
169 extern int register_pernet_subsys(struct pernet_operations *);
170 extern void unregister_pernet_subsys(struct pernet_operations *);
171 extern int register_pernet_device(struct pernet_operations *);
172 extern void unregister_pernet_device(struct pernet_operations *);
174 struct ctl_path;
175 struct ctl_table;
176 struct ctl_table_header;
177 extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
178 const struct ctl_path *path, struct ctl_table *table);
179 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
181 #endif /* __NET_NET_NAMESPACE_H */