blob: 700c53a3c6fa22d9e49f522616da870b99522d3c [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
Denis V. Luneva0a53c82007-12-11 04:19:17 -080022
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020023struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070024struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080025struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110026struct ctl_table_header;
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070027struct net_generic;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110028
Eric W. Biederman5f256be2007-09-12 11:50:50 +020029struct net {
30 atomic_t count; /* To decided when the network
31 * namespace should be freed.
32 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070033#ifdef NETNS_REFCNT_DEBUG
Eric W. Biederman5f256be2007-09-12 11:50:50 +020034 atomic_t use_count; /* To track references we
35 * destroy on demand
36 */
Denis V. Lunev5d1e4462008-04-16 01:58:04 -070037#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +020038 struct list_head list; /* list of network namespaces */
39 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020040
41 struct proc_dir_entry *proc_net;
42 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070043
Al Viro73455092008-07-14 21:22:20 -040044#ifdef CONFIG_SYSCTL
45 struct ctl_table_set sysctls;
46#endif
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110047
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070048 struct net_device *loopback_dev; /* The loopback */
49
Eric W. Biederman881d9662007-09-17 11:56:21 -070050 struct list_head dev_base_head;
51 struct hlist_head *dev_name_head;
52 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080053
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080054 /* core fib_rules */
55 struct list_head rules_ops;
56 spinlock_t rules_mod_lock;
57
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080058 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080059
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070060 struct netns_core core;
Pavel Emelyanov852566f2008-07-18 04:01:24 -070061 struct netns_mib mib;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080062 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080063 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080064 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080065#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
66 struct netns_ipv6 ipv6;
67#endif
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070068#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
69 struct netns_dccp dccp;
70#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080071#ifdef CONFIG_NETFILTER
72 struct netns_xt xt;
Alexey Dobriyandfdb8d72008-10-08 11:35:02 +020073#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
74 struct netns_ct ct;
75#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080076#endif
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070077 struct net_generic *gen;
Eric W. Biederman5f256be2007-09-12 11:50:50 +020078};
79
Denis V. Lunev225c0a02008-04-02 00:09:29 -070080
Denis V. Lunevc0f39322008-04-02 00:10:28 -070081#include <linux/seq_file_net.h>
82
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020083/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020084extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070085
86#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020087#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020088
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070089extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070090
91#else /* CONFIG_NET */
92
93#define INIT_NET_NS(net_ns)
94
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070095static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
96{
97 /* There is nothing to copy so this is a noop */
98 return net_ns;
99}
Denis V. Lunev225c0a02008-04-02 00:09:29 -0700100#endif /* CONFIG_NET */
101
102
103extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -0700104
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700105#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200106extern void __put_net(struct net *net);
107
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700108static inline int net_alive(struct net *net)
109{
110 return net && atomic_read(&net->count);
111}
112
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200113static inline struct net *get_net(struct net *net)
114{
115 atomic_inc(&net->count);
116 return net;
117}
118
Eric W. Biederman077130c2007-09-13 09:18:57 +0200119static inline struct net *maybe_get_net(struct net *net)
120{
121 /* Used when we know struct net exists but we
122 * aren't guaranteed a previous reference count
123 * exists. If the reference count is zero this
124 * function fails and returns NULL.
125 */
126 if (!atomic_inc_not_zero(&net->count))
127 net = NULL;
128 return net;
129}
130
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200131static inline void put_net(struct net *net)
132{
133 if (atomic_dec_and_test(&net->count))
134 __put_net(net);
135}
136
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900137static inline
138int net_eq(const struct net *net1, const struct net *net2)
139{
140 return net1 == net2;
141}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700142#else
Eric W. Biedermanb9f75f42008-06-20 22:16:51 -0700143
144static inline int net_alive(struct net *net)
145{
146 return 1;
147}
148
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700149static inline struct net *get_net(struct net *net)
150{
151 return net;
152}
153
154static inline void put_net(struct net *net)
155{
156}
157
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700158static inline struct net *maybe_get_net(struct net *net)
159{
160 return net;
161}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900162
163static inline
164int net_eq(const struct net *net1, const struct net *net2)
165{
166 return 1;
167}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700168#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200169
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700170
171#ifdef NETNS_REFCNT_DEBUG
172static inline struct net *hold_net(struct net *net)
173{
174 if (net)
175 atomic_inc(&net->use_count);
176 return net;
177}
178
179static inline void release_net(struct net *net)
180{
181 if (net)
182 atomic_dec(&net->use_count);
183}
184#else
185static inline struct net *hold_net(struct net *net)
186{
187 return net;
188}
189
190static inline void release_net(struct net *net)
191{
192}
193#endif
194
195
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200196#define for_each_net(VAR) \
197 list_for_each_entry(VAR, &net_namespace_list, list)
198
Pavel Emelyanov46650792007-10-08 20:38:39 -0700199#ifdef CONFIG_NET_NS
200#define __net_init
201#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800202#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700203#else
204#define __net_init __init
205#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800206#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700207#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200208
209struct pernet_operations {
210 struct list_head list;
211 int (*init)(struct net *net);
212 void (*exit)(struct net *net);
213};
214
215extern int register_pernet_subsys(struct pernet_operations *);
216extern void unregister_pernet_subsys(struct pernet_operations *);
Alexey Dobriyan485ac572008-10-30 23:55:16 -0700217extern int register_pernet_gen_subsys(int *id, struct pernet_operations *);
218extern void unregister_pernet_gen_subsys(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200219extern int register_pernet_device(struct pernet_operations *);
220extern void unregister_pernet_device(struct pernet_operations *);
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700221extern int register_pernet_gen_device(int *id, struct pernet_operations *);
222extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200223
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100224struct ctl_path;
225struct ctl_table;
226struct ctl_table_header;
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700227
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100228extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
229 const struct ctl_path *path, struct ctl_table *table);
Pavel Emelyanovd62c6122008-05-19 13:45:33 -0700230extern struct ctl_table_header *register_net_sysctl_rotable(
231 const struct ctl_path *path, struct ctl_table *table);
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100232extern void unregister_net_sysctl_table(struct ctl_table_header *header);
233
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200234#endif /* __NET_NET_NAMESPACE_H */