[NET] NETNS: Omit neigh_parms->net and pneigh_entry->net without CONFIG_NET_NS.
[linux-2.6-block.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
a0a53c8b 11#include <net/netns/unix.h>
2aaef4e4 12#include <net/netns/packet.h>
8afd351c 13#include <net/netns/ipv4.h>
b0f159db 14#include <net/netns/ipv6.h>
8d870052 15#include <net/netns/x_tables.h>
a0a53c8b 16
457c4cbc 17struct proc_dir_entry;
2774c7ab 18struct net_device;
97c53cac 19struct sock;
1597fbc0
PE
20struct ctl_table_header;
21
5f256bec
EB
22struct net {
23 atomic_t count; /* To decided when the network
24 * namespace should be freed.
25 */
26 atomic_t use_count; /* To track references we
27 * destroy on demand
28 */
29 struct list_head list; /* list of network namespaces */
30 struct work_struct work; /* work struct for freeing */
457c4cbc
EB
31
32 struct proc_dir_entry *proc_net;
33 struct proc_dir_entry *proc_net_stat;
881d966b 34
95bdfccb
EB
35 struct list_head sysctl_table_headers;
36
2774c7ab
EB
37 struct net_device *loopback_dev; /* The loopback */
38
881d966b
EB
39 struct list_head dev_base_head;
40 struct hlist_head *dev_name_head;
41 struct hlist_head *dev_index_head;
97c53cac 42
5fd30ee7
DL
43 /* core fib_rules */
44 struct list_head rules_ops;
45 spinlock_t rules_mod_lock;
46
97c53cac 47 struct sock *rtnl; /* rtnetlink socket */
d12d01d6 48
024626e3
PE
49 /* core sysctls */
50 struct ctl_table_header *sysctl_core_hdr;
b8e1f9b5 51 int sysctl_somaxconn;
024626e3 52
2aaef4e4 53 struct netns_packet packet;
a0a53c8b 54 struct netns_unix unx;
8afd351c 55 struct netns_ipv4 ipv4;
b0f159db
DL
56#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
57 struct netns_ipv6 ipv6;
58#endif
8d870052
AD
59#ifdef CONFIG_NETFILTER
60 struct netns_xt xt;
61#endif
5f256bec
EB
62};
63
4fabcd71
DL
64#ifdef CONFIG_NET
65/* Init's network namespace */
5f256bec 66extern struct net init_net;
4fabcd71
DL
67#define INIT_NET_NS(net_ns) .net_ns = &init_net,
68#else
69#define INIT_NET_NS(net_ns)
70#endif
71
5f256bec
EB
72extern struct list_head net_namespace_list;
73
9dd776b6
EB
74#ifdef CONFIG_NET
75extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
76#else
77static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
78{
79 /* There is nothing to copy so this is a noop */
80 return net_ns;
81}
82#endif
83
d4655795 84#ifdef CONFIG_NET_NS
5f256bec
EB
85extern void __put_net(struct net *net);
86
87static inline struct net *get_net(struct net *net)
88{
89 atomic_inc(&net->count);
90 return net;
91}
92
077130c0
EB
93static inline struct net *maybe_get_net(struct net *net)
94{
95 /* Used when we know struct net exists but we
96 * aren't guaranteed a previous reference count
97 * exists. If the reference count is zero this
98 * function fails and returns NULL.
99 */
100 if (!atomic_inc_not_zero(&net->count))
101 net = NULL;
102 return net;
103}
104
5f256bec
EB
105static inline void put_net(struct net *net)
106{
107 if (atomic_dec_and_test(&net->count))
108 __put_net(net);
109}
110
111static inline struct net *hold_net(struct net *net)
112{
113 atomic_inc(&net->use_count);
114 return net;
115}
116
117static inline void release_net(struct net *net)
118{
119 atomic_dec(&net->use_count);
120}
d4655795
PE
121#else
122static inline struct net *get_net(struct net *net)
123{
124 return net;
125}
126
127static inline void put_net(struct net *net)
128{
129}
130
131static inline struct net *hold_net(struct net *net)
132{
133 return net;
134}
135
136static inline void release_net(struct net *net)
137{
138}
139
140static inline struct net *maybe_get_net(struct net *net)
141{
142 return net;
143}
144#endif
5f256bec 145
5f256bec
EB
146#define for_each_net(VAR) \
147 list_for_each_entry(VAR, &net_namespace_list, list)
148
4665079c
PE
149#ifdef CONFIG_NET_NS
150#define __net_init
151#define __net_exit
022cbae6 152#define __net_initdata
4665079c
PE
153#else
154#define __net_init __init
155#define __net_exit __exit_refok
022cbae6 156#define __net_initdata __initdata
4665079c 157#endif
5f256bec
EB
158
159struct pernet_operations {
160 struct list_head list;
161 int (*init)(struct net *net);
162 void (*exit)(struct net *net);
163};
164
165extern int register_pernet_subsys(struct pernet_operations *);
166extern void unregister_pernet_subsys(struct pernet_operations *);
167extern int register_pernet_device(struct pernet_operations *);
168extern void unregister_pernet_device(struct pernet_operations *);
169
95bdfccb
EB
170struct ctl_path;
171struct ctl_table;
172struct ctl_table_header;
173extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
174 const struct ctl_path *path, struct ctl_table *table);
175extern void unregister_net_sysctl_table(struct ctl_table_header *header);
176
5f256bec 177#endif /* __NET_NET_NAMESPACE_H */