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