blob: a8eb43cf0c7ed8fe895f901ddbc25f85bc608806 [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
Al Viro73455092008-07-14 21:22:20 -040041#ifdef CONFIG_SYSCTL
42 struct ctl_table_set sysctls;
43#endif
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110044
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070045 struct net_device *loopback_dev; /* The loopback */
46
Eric W. Biederman881d9662007-09-17 11:56:21 -070047 struct list_head dev_base_head;
48 struct hlist_head *dev_name_head;
49 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080050
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080051 /* core fib_rules */
52 struct list_head rules_ops;
53 spinlock_t rules_mod_lock;
54
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080055 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080056
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070057 struct netns_core core;
Pavel Emelyanov852566f2008-07-18 04:01:24 -070058 struct netns_mib mib;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080059 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080060 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080061 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080062#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
63 struct netns_ipv6 ipv6;
64#endif
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070065#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
66 struct netns_dccp dccp;
67#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080068#ifdef CONFIG_NETFILTER
69 struct netns_xt xt;
70#endif
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070071 struct net_generic *gen;
Eric W. Biederman5f256be2007-09-12 11:50:50 +020072};
73
Denis V. Lunev225c0a02008-04-02 00:09:29 -070074
Denis V. Lunevc0f39322008-04-02 00:10:28 -070075#include <linux/seq_file_net.h>
76
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020077/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020078extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070079
80#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020081#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020082
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070083extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070084
85#else /* CONFIG_NET */
86
87#define INIT_NET_NS(net_ns)
88
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070089static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
90{
91 /* There is nothing to copy so this is a noop */
92 return net_ns;
93}
Denis V. Lunev225c0a02008-04-02 00:09:29 -070094#endif /* CONFIG_NET */
95
96
97extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070098
Pavel Emelyanovd4655792007-11-01 00:43:49 -070099#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200100extern void __put_net(struct net *net);
101
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700102static inline int net_alive(struct net *net)
103{
104 return net && atomic_read(&net->count);
105}
106
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200107static inline struct net *get_net(struct net *net)
108{
109 atomic_inc(&net->count);
110 return net;
111}
112
Eric W. Biederman077130c2007-09-13 09:18:57 +0200113static inline struct net *maybe_get_net(struct net *net)
114{
115 /* Used when we know struct net exists but we
116 * aren't guaranteed a previous reference count
117 * exists. If the reference count is zero this
118 * function fails and returns NULL.
119 */
120 if (!atomic_inc_not_zero(&net->count))
121 net = NULL;
122 return net;
123}
124
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200125static inline void put_net(struct net *net)
126{
127 if (atomic_dec_and_test(&net->count))
128 __put_net(net);
129}
130
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900131static inline
132int net_eq(const struct net *net1, const struct net *net2)
133{
134 return net1 == net2;
135}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700136#else
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700137
138static inline int net_alive(struct net *net)
139{
140 return 1;
141}
142
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700143static inline struct net *get_net(struct net *net)
144{
145 return net;
146}
147
148static inline void put_net(struct net *net)
149{
150}
151
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700152static inline struct net *maybe_get_net(struct net *net)
153{
154 return net;
155}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900156
157static inline
158int net_eq(const struct net *net1, const struct net *net2)
159{
160 return 1;
161}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700162#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200163
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700164
165#ifdef NETNS_REFCNT_DEBUG
166static inline struct net *hold_net(struct net *net)
167{
168 if (net)
169 atomic_inc(&net->use_count);
170 return net;
171}
172
173static inline void release_net(struct net *net)
174{
175 if (net)
176 atomic_dec(&net->use_count);
177}
178#else
179static inline struct net *hold_net(struct net *net)
180{
181 return net;
182}
183
184static inline void release_net(struct net *net)
185{
186}
187#endif
188
189
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200190#define for_each_net(VAR) \
191 list_for_each_entry(VAR, &net_namespace_list, list)
192
Pavel Emelyanov46650792007-10-08 20:38:39 -0700193#ifdef CONFIG_NET_NS
194#define __net_init
195#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800196#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700197#else
198#define __net_init __init
199#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800200#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700201#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200202
203struct pernet_operations {
204 struct list_head list;
205 int (*init)(struct net *net);
206 void (*exit)(struct net *net);
207};
208
209extern int register_pernet_subsys(struct pernet_operations *);
210extern void unregister_pernet_subsys(struct pernet_operations *);
211extern int register_pernet_device(struct pernet_operations *);
212extern void unregister_pernet_device(struct pernet_operations *);
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700213extern int register_pernet_gen_device(int *id, struct pernet_operations *);
214extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200215
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100216struct ctl_path;
217struct ctl_table;
218struct ctl_table_header;
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700219
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100220extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
221 const struct ctl_path *path, struct ctl_table *table);
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700222extern struct ctl_table_header *register_net_sysctl_rotable(
223 const struct ctl_path *path, struct ctl_table *table);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100224extern void unregister_net_sysctl_table(struct ctl_table_header *header);
225
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200226#endif /* __NET_NET_NAMESPACE_H */