c01d45fe08c3d8d57c37f608de97ae93e70cdf7c
[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 #ifdef CONFIG_NET
63 /* Init's network namespace */
64 extern struct net init_net;
65 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
66 #else
67 #define INIT_NET_NS(net_ns)
68 #endif
69
70 extern struct list_head net_namespace_list;
71
72 #ifdef CONFIG_NET
73 extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
74 #else
75 static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
76 {
77         /* There is nothing to copy so this is a noop */
78         return net_ns;
79 }
80 #endif
81
82 #ifdef CONFIG_NET_NS
83 extern void __put_net(struct net *net);
84
85 static inline struct net *get_net(struct net *net)
86 {
87         atomic_inc(&net->count);
88         return net;
89 }
90
91 static inline struct net *maybe_get_net(struct net *net)
92 {
93         /* Used when we know struct net exists but we
94          * aren't guaranteed a previous reference count
95          * exists.  If the reference count is zero this
96          * function fails and returns NULL.
97          */
98         if (!atomic_inc_not_zero(&net->count))
99                 net = NULL;
100         return net;
101 }
102
103 static inline void put_net(struct net *net)
104 {
105         if (atomic_dec_and_test(&net->count))
106                 __put_net(net);
107 }
108
109 static inline struct net *hold_net(struct net *net)
110 {
111         atomic_inc(&net->use_count);
112         return net;
113 }
114
115 static inline void release_net(struct net *net)
116 {
117         atomic_dec(&net->use_count);
118 }
119
120 static inline
121 int net_eq(const struct net *net1, const struct net *net2)
122 {
123         return net1 == net2;
124 }
125 #else
126 static inline struct net *get_net(struct net *net)
127 {
128         return net;
129 }
130
131 static inline void put_net(struct net *net)
132 {
133 }
134
135 static inline struct net *hold_net(struct net *net)
136 {
137         return net;
138 }
139
140 static inline void release_net(struct net *net)
141 {
142 }
143
144 static inline struct net *maybe_get_net(struct net *net)
145 {
146         return net;
147 }
148
149 static inline
150 int net_eq(const struct net *net1, const struct net *net2)
151 {
152         return 1;
153 }
154 #endif
155
156 #define for_each_net(VAR)                               \
157         list_for_each_entry(VAR, &net_namespace_list, list)
158
159 #ifdef CONFIG_NET_NS
160 #define __net_init
161 #define __net_exit
162 #define __net_initdata
163 #else
164 #define __net_init      __init
165 #define __net_exit      __exit_refok
166 #define __net_initdata  __initdata
167 #endif
168
169 struct pernet_operations {
170         struct list_head list;
171         int (*init)(struct net *net);
172         void (*exit)(struct net *net);
173 };
174
175 extern int register_pernet_subsys(struct pernet_operations *);
176 extern void unregister_pernet_subsys(struct pernet_operations *);
177 extern int register_pernet_device(struct pernet_operations *);
178 extern void unregister_pernet_device(struct pernet_operations *);
179
180 struct ctl_path;
181 struct ctl_table;
182 struct ctl_table_header;
183 extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
184         const struct ctl_path *path, struct ctl_table *table);
185 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
186
187 #endif /* __NET_NET_NAMESPACE_H */