blob: 0ab62ed2fdef304c86ab8fa7e14c484a7db9de08 [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>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080012#include <net/netns/unix.h>
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080013#include <net/netns/packet.h>
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080014#include <net/netns/ipv4.h>
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080015#include <net/netns/ipv6.h>
Alexey Dobriyan8d870052008-01-31 04:02:13 -080016#include <net/netns/x_tables.h>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080017
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020018struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070019struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080020struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110021struct ctl_table_header;
22
Eric W. Biederman5f256be2007-09-12 11:50:50 +020023struct net {
24 atomic_t count; /* To decided when the network
25 * namespace should be freed.
26 */
27 atomic_t use_count; /* To track references we
28 * destroy on demand
29 */
30 struct list_head list; /* list of network namespaces */
31 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020032
33 struct proc_dir_entry *proc_net;
34 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070035
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110036 struct list_head sysctl_table_headers;
37
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070038 struct net_device *loopback_dev; /* The loopback */
39
Eric W. Biederman881d9662007-09-17 11:56:21 -070040 struct list_head dev_base_head;
41 struct hlist_head *dev_name_head;
42 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080043
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080044 /* core fib_rules */
45 struct list_head rules_ops;
46 spinlock_t rules_mod_lock;
47
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080048 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080049
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070050 struct netns_core core;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080051 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080052 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080053 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080054#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
55 struct netns_ipv6 ipv6;
56#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080057#ifdef CONFIG_NETFILTER
58 struct netns_xt xt;
59#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +020060};
61
Denis V. Lunev225c0a02008-04-02 00:09:29 -070062
Denis V. Lunevc0f39322008-04-02 00:10:28 -070063#include <linux/seq_file_net.h>
64
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020065/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020066extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070067
68#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020069#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020070
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070071extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070072
73#else /* CONFIG_NET */
74
75#define INIT_NET_NS(net_ns)
76
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070077static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
78{
79 /* There is nothing to copy so this is a noop */
80 return net_ns;
81}
Denis V. Lunev225c0a02008-04-02 00:09:29 -070082#endif /* CONFIG_NET */
83
84
85extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070086
Pavel Emelyanovd4655792007-11-01 00:43:49 -070087#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +020088extern void __put_net(struct net *net);
89
90static inline struct net *get_net(struct net *net)
91{
92 atomic_inc(&net->count);
93 return net;
94}
95
Eric W. Biederman077130c2007-09-13 09:18:57 +020096static inline struct net *maybe_get_net(struct net *net)
97{
98 /* Used when we know struct net exists but we
99 * aren't guaranteed a previous reference count
100 * exists. If the reference count is zero this
101 * function fails and returns NULL.
102 */
103 if (!atomic_inc_not_zero(&net->count))
104 net = NULL;
105 return net;
106}
107
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200108static inline void put_net(struct net *net)
109{
110 if (atomic_dec_and_test(&net->count))
111 __put_net(net);
112}
113
114static inline struct net *hold_net(struct net *net)
115{
116 atomic_inc(&net->use_count);
117 return net;
118}
119
120static inline void release_net(struct net *net)
121{
122 atomic_dec(&net->use_count);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200123}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900124
125static inline
126int net_eq(const struct net *net1, const struct net *net2)
127{
128 return net1 == net2;
129}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700130#else
131static inline struct net *get_net(struct net *net)
132{
133 return net;
134}
135
136static inline void put_net(struct net *net)
137{
138}
139
140static inline struct net *hold_net(struct net *net)
141{
142 return net;
143}
144
145static inline void release_net(struct net *net)
146{
147}
148
149static inline struct net *maybe_get_net(struct net *net)
150{
151 return net;
152}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900153
154static inline
155int net_eq(const struct net *net1, const struct net *net2)
156{
157 return 1;
158}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700159#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200160
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200161#define for_each_net(VAR) \
162 list_for_each_entry(VAR, &net_namespace_list, list)
163
Pavel Emelyanov46650792007-10-08 20:38:39 -0700164#ifdef CONFIG_NET_NS
165#define __net_init
166#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800167#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700168#else
169#define __net_init __init
170#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800171#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700172#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200173
174struct pernet_operations {
175 struct list_head list;
176 int (*init)(struct net *net);
177 void (*exit)(struct net *net);
178};
179
180extern int register_pernet_subsys(struct pernet_operations *);
181extern void unregister_pernet_subsys(struct pernet_operations *);
182extern int register_pernet_device(struct pernet_operations *);
183extern void unregister_pernet_device(struct pernet_operations *);
184
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100185struct ctl_path;
186struct ctl_table;
187struct ctl_table_header;
188extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
189 const struct ctl_path *path, struct ctl_table *table);
190extern void unregister_net_sysctl_table(struct ctl_table_header *header);
191
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200192#endif /* __NET_NET_NAMESPACE_H */