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