blob: f880b0f9f1070ea1e6dae1fc17c343bc87806d8f [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>
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070016#include <net/netns/dccp.h>
Alexey Dobriyan8d870052008-01-31 04:02:13 -080017#include <net/netns/x_tables.h>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080018
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020019struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070020struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080021struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110022struct ctl_table_header;
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070023struct net_generic;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110024
Eric W. Biederman5f256be2007-09-12 11:50:50 +020025struct net {
26 atomic_t count; /* To decided when the network
27 * namespace should be freed.
28 */
29 atomic_t use_count; /* To track references we
30 * destroy on demand
31 */
32 struct list_head list; /* list of network namespaces */
33 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020034
35 struct proc_dir_entry *proc_net;
36 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070037
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110038 struct list_head sysctl_table_headers;
39
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070040 struct net_device *loopback_dev; /* The loopback */
41
Eric W. Biederman881d9662007-09-17 11:56:21 -070042 struct list_head dev_base_head;
43 struct hlist_head *dev_name_head;
44 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080045
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080046 /* core fib_rules */
47 struct list_head rules_ops;
48 spinlock_t rules_mod_lock;
49
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080050 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080051
Pavel Emelyanov8efa6e92008-03-31 19:41:14 -070052 struct netns_core core;
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080053 struct netns_packet packet;
Denis V. Luneva0a53c82007-12-11 04:19:17 -080054 struct netns_unix unx;
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080055 struct netns_ipv4 ipv4;
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080056#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
57 struct netns_ipv6 ipv6;
58#endif
Pavel Emelyanov67019cc2008-04-13 22:28:42 -070059#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
60 struct netns_dccp dccp;
61#endif
Alexey Dobriyan8d870052008-01-31 04:02:13 -080062#ifdef CONFIG_NETFILTER
63 struct netns_xt xt;
64#endif
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070065 struct net_generic *gen;
Eric W. Biederman5f256be2007-09-12 11:50:50 +020066};
67
Denis V. Lunev225c0a02008-04-02 00:09:29 -070068
Denis V. Lunevc0f39322008-04-02 00:10:28 -070069#include <linux/seq_file_net.h>
70
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020071/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020072extern struct net init_net;
Denis V. Luneva4aa8342008-04-03 13:04:33 -070073
74#ifdef CONFIG_NET
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020075#define INIT_NET_NS(net_ns) .net_ns = &init_net,
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020076
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070077extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
Denis V. Lunev225c0a02008-04-02 00:09:29 -070078
79#else /* CONFIG_NET */
80
81#define INIT_NET_NS(net_ns)
82
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070083static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
84{
85 /* There is nothing to copy so this is a noop */
86 return net_ns;
87}
Denis V. Lunev225c0a02008-04-02 00:09:29 -070088#endif /* CONFIG_NET */
89
90
91extern struct list_head net_namespace_list;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070092
Pavel Emelyanovd4655792007-11-01 00:43:49 -070093#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +020094extern void __put_net(struct net *net);
95
96static inline struct net *get_net(struct net *net)
97{
98 atomic_inc(&net->count);
99 return net;
100}
101
Eric W. Biederman077130c2007-09-13 09:18:57 +0200102static inline struct net *maybe_get_net(struct net *net)
103{
104 /* Used when we know struct net exists but we
105 * aren't guaranteed a previous reference count
106 * exists. If the reference count is zero this
107 * function fails and returns NULL.
108 */
109 if (!atomic_inc_not_zero(&net->count))
110 net = NULL;
111 return net;
112}
113
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200114static inline void put_net(struct net *net)
115{
116 if (atomic_dec_and_test(&net->count))
117 __put_net(net);
118}
119
120static inline struct net *hold_net(struct net *net)
121{
122 atomic_inc(&net->use_count);
123 return net;
124}
125
126static inline void release_net(struct net *net)
127{
128 atomic_dec(&net->use_count);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200129}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900130
131static 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
137static inline struct net *get_net(struct net *net)
138{
139 return net;
140}
141
142static inline void put_net(struct net *net)
143{
144}
145
146static inline struct net *hold_net(struct net *net)
147{
148 return net;
149}
150
151static inline void release_net(struct net *net)
152{
153}
154
155static inline struct net *maybe_get_net(struct net *net)
156{
157 return net;
158}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900159
160static inline
161int net_eq(const struct net *net1, const struct net *net2)
162{
163 return 1;
164}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700165#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200166
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200167#define for_each_net(VAR) \
168 list_for_each_entry(VAR, &net_namespace_list, list)
169
Pavel Emelyanov46650792007-10-08 20:38:39 -0700170#ifdef CONFIG_NET_NS
171#define __net_init
172#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800173#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700174#else
175#define __net_init __init
176#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800177#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700178#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200179
180struct pernet_operations {
181 struct list_head list;
182 int (*init)(struct net *net);
183 void (*exit)(struct net *net);
184};
185
186extern int register_pernet_subsys(struct pernet_operations *);
187extern void unregister_pernet_subsys(struct pernet_operations *);
188extern int register_pernet_device(struct pernet_operations *);
189extern void unregister_pernet_device(struct pernet_operations *);
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700190extern int register_pernet_gen_device(int *id, struct pernet_operations *);
191extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200192
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100193struct ctl_path;
194struct ctl_table;
195struct ctl_table_header;
196extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
197 const struct ctl_path *path, struct ctl_table *table);
198extern void unregister_net_sysctl_table(struct ctl_table_header *header);
199
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200200#endif /* __NET_NET_NAMESPACE_H */