blob: 3855620b78a9760081c590d44bf9794f0e993390 [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>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080019
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020020struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070021struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080022struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110023struct ctl_table_header;
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070024struct net_generic;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110025
Eric W. Biederman5f256be2007-09-12 11:50:50 +020026struct net {
27 atomic_t count; /* To decided when the network
28 * namespace should be freed.
29 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070030#ifdef NETNS_REFCNT_DEBUG
Eric W. Biederman5f256be2007-09-12 11:50:50 +020031 atomic_t use_count; /* To track references we
32 * destroy on demand
33 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070034#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +020035 struct list_head list; /* list of network namespaces */
36 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020037
38 struct proc_dir_entry *proc_net;
39 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070040
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110041 struct list_head sysctl_table_headers;
42
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070043 struct net_device *loopback_dev; /* The loopback */
44
Eric W. Biederman881d9662007-09-17 11:56:21 -070045 struct list_head dev_base_head;
46 struct hlist_head *dev_name_head;
47 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080048
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080049 /* core fib_rules */
50 struct list_head rules_ops;
51 spinlock_t rules_mod_lock;
52
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080053 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080054
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070055 struct netns_core core;
Pavel Emelyanov852566f2008-07-18 04:01:24 -070056 struct netns_mib mib;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080057 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080058 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080059 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080060#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
61 struct netns_ipv6 ipv6;
62#endif
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070063#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
64 struct netns_dccp dccp;
65#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080066#ifdef CONFIG_NETFILTER
67 struct netns_xt xt;
68#endif
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070069 struct net_generic *gen;
Eric W. Biederman5f256be2007-09-12 11:50:50 +020070};
71
Denis V. Lunev225c0a02008-04-02 00:09:29 -070072
Denis V. Lunevc0f39322008-04-02 00:10:28 -070073#include <linux/seq_file_net.h>
74
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020075/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020076extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070077
78#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020079#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020080
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070081extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070082
83#else /* CONFIG_NET */
84
85#define INIT_NET_NS(net_ns)
86
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070087static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
88{
89 /* There is nothing to copy so this is a noop */
90 return net_ns;
91}
Denis V. Lunev225c0a02008-04-02 00:09:29 -070092#endif /* CONFIG_NET */
93
94
95extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070096
Pavel Emelyanovd4655792007-11-01 00:43:49 -070097#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +020098extern void __put_net(struct net *net);
99
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700100static inline int net_alive(struct net *net)
101{
102 return net && atomic_read(&net->count);
103}
104
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200105static inline struct net *get_net(struct net *net)
106{
107 atomic_inc(&net->count);
108 return net;
109}
110
Eric W. Biederman077130c2007-09-13 09:18:57 +0200111static inline struct net *maybe_get_net(struct net *net)
112{
113 /* Used when we know struct net exists but we
114 * aren't guaranteed a previous reference count
115 * exists. If the reference count is zero this
116 * function fails and returns NULL.
117 */
118 if (!atomic_inc_not_zero(&net->count))
119 net = NULL;
120 return net;
121}
122
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200123static inline void put_net(struct net *net)
124{
125 if (atomic_dec_and_test(&net->count))
126 __put_net(net);
127}
128
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900129static inline
130int net_eq(const struct net *net1, const struct net *net2)
131{
132 return net1 == net2;
133}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700134#else
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700135
136static inline int net_alive(struct net *net)
137{
138 return 1;
139}
140
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700141static inline struct net *get_net(struct net *net)
142{
143 return net;
144}
145
146static inline void put_net(struct net *net)
147{
148}
149
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700150static inline struct net *maybe_get_net(struct net *net)
151{
152 return net;
153}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900154
155static inline
156int net_eq(const struct net *net1, const struct net *net2)
157{
158 return 1;
159}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700160#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200161
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700162
163#ifdef NETNS_REFCNT_DEBUG
164static inline struct net *hold_net(struct net *net)
165{
166 if (net)
167 atomic_inc(&net->use_count);
168 return net;
169}
170
171static inline void release_net(struct net *net)
172{
173 if (net)
174 atomic_dec(&net->use_count);
175}
176#else
177static inline struct net *hold_net(struct net *net)
178{
179 return net;
180}
181
182static inline void release_net(struct net *net)
183{
184}
185#endif
186
187
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200188#define for_each_net(VAR) \
189 list_for_each_entry(VAR, &net_namespace_list, list)
190
Pavel Emelyanov46650792007-10-08 20:38:39 -0700191#ifdef CONFIG_NET_NS
192#define __net_init
193#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800194#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700195#else
196#define __net_init __init
197#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800198#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700199#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200200
201struct pernet_operations {
202 struct list_head list;
203 int (*init)(struct net *net);
204 void (*exit)(struct net *net);
205};
206
207extern int register_pernet_subsys(struct pernet_operations *);
208extern void unregister_pernet_subsys(struct pernet_operations *);
209extern int register_pernet_device(struct pernet_operations *);
210extern void unregister_pernet_device(struct pernet_operations *);
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700211extern int register_pernet_gen_device(int *id, struct pernet_operations *);
212extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200213
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100214struct ctl_path;
215struct ctl_table;
216struct ctl_table_header;
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700217
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100218extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
219 const struct ctl_path *path, struct ctl_table *table);
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700220extern struct ctl_table_header *register_net_sysctl_rotable(
221 const struct ctl_path *path, struct ctl_table *table);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100222extern void unregister_net_sysctl_table(struct ctl_table_header *header);
223
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200224#endif /* __NET_NET_NAMESPACE_H */