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