blob: f8f3d1a5fc35ec3abeb5739b911769d3c698e603 [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
Denis V. Luneva0a53c82007-12-11 04:19:17 -080011#include <net/netns/unix.h>
Denis V. Lunev2aaef4e2007-12-11 04:19:54 -080012#include <net/netns/packet.h>
Pavel Emelyanov8afd3512007-12-16 13:29:36 -080013#include <net/netns/ipv4.h>
Daniel Lezcanob0f159d2008-01-10 02:49:06 -080014#include <net/netns/ipv6.h>
Alexey Dobriyan8d870052008-01-31 04:02:13 -080015#include <net/netns/x_tables.h>
Denis V. Luneva0a53c82007-12-11 04:19:17 -080016
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020017struct proc_dir_entry;
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070018struct net_device;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080019struct sock;
Pavel Emelyanov1597fbc2007-12-01 23:51:01 +110020struct ctl_table_header;
21
Eric W. Biederman5f256be2007-09-12 11:50:50 +020022struct net {
23 atomic_t count; /* To decided when the network
24 * namespace should be freed.
25 */
26 atomic_t use_count; /* To track references we
27 * destroy on demand
28 */
29 struct list_head list; /* list of network namespaces */
30 struct work_struct work; /* work struct for freeing */
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020031
32 struct proc_dir_entry *proc_net;
33 struct proc_dir_entry *proc_net_stat;
Eric W. Biederman881d9662007-09-17 11:56:21 -070034
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110035 struct list_head sysctl_table_headers;
36
Eric W. Biederman2774c7a2007-09-26 22:10:56 -070037 struct net_device *loopback_dev; /* The loopback */
38
Eric W. Biederman881d9662007-09-17 11:56:21 -070039 struct list_head dev_base_head;
40 struct hlist_head *dev_name_head;
41 struct hlist_head *dev_index_head;
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080042
Denis V. Lunev5fd30ee2008-01-10 03:20:28 -080043 /* core fib_rules */
44 struct list_head rules_ops;
45 spinlock_t rules_mod_lock;
46
Denis V. Lunev97c53ca2007-11-19 22:26:51 -080047 struct sock *rtnl; /* rtnetlink socket */
Denis V. Lunevd12d01d2007-11-19 22:28:35 -080048
Pavel Emelyanov024626e2007-12-08 00:09:24 -080049 /* core sysctls */
50 struct ctl_table_header *sysctl_core_hdr;
Pavel Emelyanovb8e1f9b2007-12-08 00:12:33 -080051 int sysctl_somaxconn;
Pavel Emelyanov024626e2007-12-08 00:09:24 -080052
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
Alexey Dobriyan8d870052008-01-31 04:02:13 -080059#ifdef CONFIG_NETFILTER
60 struct netns_xt xt;
61#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +020062};
63
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020064#ifdef CONFIG_NET
65/* Init's network namespace */
Eric W. Biederman5f256be2007-09-12 11:50:50 +020066extern struct net init_net;
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020067#define INIT_NET_NS(net_ns) .net_ns = &init_net,
68#else
69#define INIT_NET_NS(net_ns)
70#endif
71
Eric W. Biederman5f256be2007-09-12 11:50:50 +020072extern struct list_head net_namespace_list;
73
Eric W. Biederman9dd776b2007-09-26 22:04:26 -070074#ifdef CONFIG_NET
75extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
76#else
77static 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}
82#endif
83
Pavel Emelyanovd4655792007-11-01 00:43:49 -070084#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +020085extern void __put_net(struct net *net);
86
87static inline struct net *get_net(struct net *net)
88{
89 atomic_inc(&net->count);
90 return net;
91}
92
Eric W. Biederman077130c2007-09-13 09:18:57 +020093static inline struct net *maybe_get_net(struct net *net)
94{
95 /* Used when we know struct net exists but we
96 * aren't guaranteed a previous reference count
97 * exists. If the reference count is zero this
98 * function fails and returns NULL.
99 */
100 if (!atomic_inc_not_zero(&net->count))
101 net = NULL;
102 return net;
103}
104
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200105static inline void put_net(struct net *net)
106{
107 if (atomic_dec_and_test(&net->count))
108 __put_net(net);
109}
110
111static inline struct net *hold_net(struct net *net)
112{
113 atomic_inc(&net->use_count);
114 return net;
115}
116
117static inline void release_net(struct net *net)
118{
119 atomic_dec(&net->use_count);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200120}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900121
122static inline
123int net_eq(const struct net *net1, const struct net *net2)
124{
125 return net1 == net2;
126}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700127#else
128static inline struct net *get_net(struct net *net)
129{
130 return net;
131}
132
133static inline void put_net(struct net *net)
134{
135}
136
137static inline struct net *hold_net(struct net *net)
138{
139 return net;
140}
141
142static inline void release_net(struct net *net)
143{
144}
145
146static inline struct net *maybe_get_net(struct net *net)
147{
148 return net;
149}
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900150
151static inline
152int net_eq(const struct net *net1, const struct net *net2)
153{
154 return 1;
155}
Pavel Emelyanovd4655792007-11-01 00:43:49 -0700156#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200157
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200158#define for_each_net(VAR) \
159 list_for_each_entry(VAR, &net_namespace_list, list)
160
Pavel Emelyanov46650792007-10-08 20:38:39 -0700161#ifdef CONFIG_NET_NS
162#define __net_init
163#define __net_exit
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800164#define __net_initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700165#else
166#define __net_init __init
167#define __net_exit __exit_refok
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800168#define __net_initdata __initdata
Pavel Emelyanov46650792007-10-08 20:38:39 -0700169#endif
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200170
171struct pernet_operations {
172 struct list_head list;
173 int (*init)(struct net *net);
174 void (*exit)(struct net *net);
175};
176
177extern int register_pernet_subsys(struct pernet_operations *);
178extern void unregister_pernet_subsys(struct pernet_operations *);
179extern int register_pernet_device(struct pernet_operations *);
180extern void unregister_pernet_device(struct pernet_operations *);
181
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +1100182struct ctl_path;
183struct ctl_table;
184struct ctl_table_header;
185extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
186 const struct ctl_path *path, struct ctl_table *table);
187extern void unregister_net_sysctl_table(struct ctl_table_header *header);
188
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200189#endif /* __NET_NET_NAMESPACE_H */