[NETNS]: Merge ifdef CONFIG_NET in include/net/net_namespace.h.
[pandora-kernel.git] / include / net / net_namespace.h
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
11 #include <net/netns/core.h>
12 #include <net/netns/unix.h>
13 #include <net/netns/packet.h>
14 #include <net/netns/ipv4.h>
15 #include <net/netns/ipv6.h>
16 #include <net/netns/x_tables.h>
17
18 struct proc_dir_entry;
19 struct net_device;
20 struct sock;
21 struct ctl_table_header;
22
23 struct net {
24         atomic_t                count;          /* To decided when the network
25                                                  *  namespace should be freed.
26                                                  */
27         atomic_t                use_count;      /* To track references we
28                                                  * destroy on demand
29                                                  */
30         struct list_head        list;           /* list of network namespaces */
31         struct work_struct      work;           /* work struct for freeing */
32
33         struct proc_dir_entry   *proc_net;
34         struct proc_dir_entry   *proc_net_stat;
35
36         struct list_head        sysctl_table_headers;
37
38         struct net_device       *loopback_dev;          /* The loopback */
39
40         struct list_head        dev_base_head;
41         struct hlist_head       *dev_name_head;
42         struct hlist_head       *dev_index_head;
43
44         /* core fib_rules */
45         struct list_head        rules_ops;
46         spinlock_t              rules_mod_lock;
47
48         struct sock             *rtnl;                  /* rtnetlink socket */
49
50         struct netns_core       core;
51         struct netns_packet     packet;
52         struct netns_unix       unx;
53         struct netns_ipv4       ipv4;
54 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
55         struct netns_ipv6       ipv6;
56 #endif
57 #ifdef CONFIG_NETFILTER
58         struct netns_xt         xt;
59 #endif
60 };
61
62
63 #ifdef CONFIG_NET
64 /* Init's network namespace */
65 extern struct net init_net;
66 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
67
68 extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
69
70 #else /* CONFIG_NET */
71
72 #define INIT_NET_NS(net_ns)
73
74 static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
75 {
76         /* There is nothing to copy so this is a noop */
77         return net_ns;
78 }
79 #endif /* CONFIG_NET */
80
81
82 extern struct list_head net_namespace_list;
83
84 #ifdef CONFIG_NET_NS
85 extern void __put_net(struct net *net);
86
87 static inline struct net *get_net(struct net *net)
88 {
89         atomic_inc(&net->count);
90         return net;
91 }
92
93 static 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
105 static inline void put_net(struct net *net)
106 {
107         if (atomic_dec_and_test(&net->count))
108                 __put_net(net);
109 }
110
111 static inline struct net *hold_net(struct net *net)
112 {
113         atomic_inc(&net->use_count);
114         return net;
115 }
116
117 static inline void release_net(struct net *net)
118 {
119         atomic_dec(&net->use_count);
120 }
121
122 static inline
123 int net_eq(const struct net *net1, const struct net *net2)
124 {
125         return net1 == net2;
126 }
127 #else
128 static inline struct net *get_net(struct net *net)
129 {
130         return net;
131 }
132
133 static inline void put_net(struct net *net)
134 {
135 }
136
137 static inline struct net *hold_net(struct net *net)
138 {
139         return net;
140 }
141
142 static inline void release_net(struct net *net)
143 {
144 }
145
146 static inline struct net *maybe_get_net(struct net *net)
147 {
148         return net;
149 }
150
151 static inline
152 int net_eq(const struct net *net1, const struct net *net2)
153 {
154         return 1;
155 }
156 #endif
157
158 #define for_each_net(VAR)                               \
159         list_for_each_entry(VAR, &net_namespace_list, list)
160
161 #ifdef CONFIG_NET_NS
162 #define __net_init
163 #define __net_exit
164 #define __net_initdata
165 #else
166 #define __net_init      __init
167 #define __net_exit      __exit_refok
168 #define __net_initdata  __initdata
169 #endif
170
171 struct pernet_operations {
172         struct list_head list;
173         int (*init)(struct net *net);
174         void (*exit)(struct net *net);
175 };
176
177 extern int register_pernet_subsys(struct pernet_operations *);
178 extern void unregister_pernet_subsys(struct pernet_operations *);
179 extern int register_pernet_device(struct pernet_operations *);
180 extern void unregister_pernet_device(struct pernet_operations *);
181
182 struct ctl_path;
183 struct ctl_table;
184 struct ctl_table_header;
185 extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
186         const struct ctl_path *path, struct ctl_table *table);
187 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
188
189 #endif /* __NET_NET_NAMESPACE_H */