blob: 6fc13d905c5ffaced2e1658038ab97934d61f42d [file] [log] [blame]
Eric W. Biederman5f256be2007-09-12 11:50:50 +02001/*
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
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070011#include <net/netns/core.h>
Pavel Emelyanov852566f2008-07-18 04:01:24 -070012#include <net/netns/mib.h>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080013#include <net/netns/unix.h>
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080014#include <net/netns/packet.h>
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080015#include <net/netns/ipv4.h>
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080016#include <net/netns/ipv6.h>
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070017#include <net/netns/dccp.h>
Alexey Dobriyan8d870052008-01-31 04:02:13 -080018#include <net/netns/x_tables.h>
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +020019#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
20#include <net/netns/conntrack.h>
21#endif
Alexey Dobriyand62ddc22008-11-25 17:14:31 -080022#include <net/netns/xfrm.h>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080023
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020024struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070025struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080026struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110027struct ctl_table_header;
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070028struct net_generic;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110029
Eric W. Biederman5f256be2007-09-12 11:50:50 +020030struct net {
31 atomic_t count; /* To decided when the network
32 * namespace should be freed.
33 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070034#ifdef NETNS_REFCNT_DEBUG
Eric W. Biederman5f256be2007-09-12 11:50:50 +020035 atomic_t use_count; /* To track references we
36 * destroy on demand
37 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070038#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +020039 struct list_head list; /* list of network namespaces */
40 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020041
42 struct proc_dir_entry *proc_net;
43 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070044
Al Viro73455092008-07-14 21:22:20 -040045#ifdef CONFIG_SYSCTL
46 struct ctl_table_set sysctls;
47#endif
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110048
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070049 struct net_device *loopback_dev; /* The loopback */
50
Eric W. Biederman881d9662007-09-17 11:56:21 -070051 struct list_head dev_base_head;
52 struct hlist_head *dev_name_head;
53 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080054
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080055 /* core fib_rules */
56 struct list_head rules_ops;
57 spinlock_t rules_mod_lock;
58
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080059 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080060
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070061 struct netns_core core;
Pavel Emelyanov852566f2008-07-18 04:01:24 -070062 struct netns_mib mib;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080063 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080064 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080065 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080066#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
67 struct netns_ipv6 ipv6;
68#endif
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070069#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
70 struct netns_dccp dccp;
71#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080072#ifdef CONFIG_NETFILTER
73 struct netns_xt xt;
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +020074#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
75 struct netns_ct ct;
76#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080077#endif
Alexey Dobriyand62ddc22008-11-25 17:14:31 -080078#ifdef CONFIG_XFRM
79 struct netns_xfrm xfrm;
80#endif
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070081 struct net_generic *gen;
Eric W. Biederman5f256be2007-09-12 11:50:50 +020082};
83
Denis V. Lunev225c0a02008-04-02 00:09:29 -070084
Denis V. Lunevc0f39322008-04-02 00:10:28 -070085#include <linux/seq_file_net.h>
86
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020087/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020088extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070089
90#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020091#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020092
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070093extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070094
95#else /* CONFIG_NET */
96
97#define INIT_NET_NS(net_ns)
98
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070099static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
100{
101 /* There is nothing to copy so this is a noop */
102 return net_ns;
103}
Denis V. Lunev225c0a02008-04-02 00:09:29 -0700104#endif /* CONFIG_NET */
105
106
107extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -0700108
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700109#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200110extern void __put_net(struct net *net);
111
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700112static inline int net_alive(struct net *net)
113{
114 return net && atomic_read(&net->count);
115}
116
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200117static inline struct net *get_net(struct net *net)
118{
119 atomic_inc(&net->count);
120 return net;
121}
122
Eric W. Biederman077130c2007-09-13 09:18:57 +0200123static inline struct net *maybe_get_net(struct net *net)
124{
125 /* Used when we know struct net exists but we
126 * aren't guaranteed a previous reference count
127 * exists. If the reference count is zero this
128 * function fails and returns NULL.
129 */
130 if (!atomic_inc_not_zero(&net->count))
131 net = NULL;
132 return net;
133}
134
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200135static inline void put_net(struct net *net)
136{
137 if (atomic_dec_and_test(&net->count))
138 __put_net(net);
139}
140
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900141static inline
142int net_eq(const struct net *net1, const struct net *net2)
143{
144 return net1 == net2;
145}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700146#else
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700147
148static inline int net_alive(struct net *net)
149{
150 return 1;
151}
152
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700153static inline struct net *get_net(struct net *net)
154{
155 return net;
156}
157
158static inline void put_net(struct net *net)
159{
160}
161
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700162static inline struct net *maybe_get_net(struct net *net)
163{
164 return net;
165}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900166
167static inline
168int net_eq(const struct net *net1, const struct net *net2)
169{
170 return 1;
171}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700172#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200173
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700174
175#ifdef NETNS_REFCNT_DEBUG
176static inline struct net *hold_net(struct net *net)
177{
178 if (net)
179 atomic_inc(&net->use_count);
180 return net;
181}
182
183static inline void release_net(struct net *net)
184{
185 if (net)
186 atomic_dec(&net->use_count);
187}
188#else
189static inline struct net *hold_net(struct net *net)
190{
191 return net;
192}
193
194static inline void release_net(struct net *net)
195{
196}
197#endif
198
Eric Dumazet8f424b52008-11-12 00:53:30 -0800199#ifdef CONFIG_NET_NS
200
201static inline void write_pnet(struct net **pnet, struct net *net)
202{
203 *pnet = net;
204}
205
206static inline struct net *read_pnet(struct net * const *pnet)
207{
208 return *pnet;
209}
210
211#else
212
213#define write_pnet(pnet, net) do { (void)(net);} while (0)
214#define read_pnet(pnet) (&init_net)
215
216#endif
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700217
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200218#define for_each_net(VAR) \
219 list_for_each_entry(VAR, &net_namespace_list, list)
220
Pavel Emelyanov46650792007-10-08 20:38:39 -0700221#ifdef CONFIG_NET_NS
222#define __net_init
223#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800224#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700225#else
226#define __net_init __init
227#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800228#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700229#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200230
231struct pernet_operations {
232 struct list_head list;
233 int (*init)(struct net *net);
234 void (*exit)(struct net *net);
235};
236
237extern int register_pernet_subsys(struct pernet_operations *);
238extern void unregister_pernet_subsys(struct pernet_operations *);
Alexey Dobriyan485ac572008-10-30 23:55:16 -0700239extern int register_pernet_gen_subsys(int *id, struct pernet_operations *);
240extern void unregister_pernet_gen_subsys(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200241extern int register_pernet_device(struct pernet_operations *);
242extern void unregister_pernet_device(struct pernet_operations *);
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700243extern int register_pernet_gen_device(int *id, struct pernet_operations *);
244extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200245
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100246struct ctl_path;
247struct ctl_table;
248struct ctl_table_header;
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700249
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100250extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
251 const struct ctl_path *path, struct ctl_table *table);
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700252extern struct ctl_table_header *register_net_sysctl_rotable(
253 const struct ctl_path *path, struct ctl_table *table);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100254extern void unregister_net_sysctl_table(struct ctl_table_header *header);
255
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200256#endif /* __NET_NET_NAMESPACE_H */