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