net_namespace.h 5.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * Operations on the network namespace
 */
#ifndef __NET_NET_NAMESPACE_H
#define __NET_NET_NAMESPACE_H

#include <asm/atomic.h>
#include <linux/workqueue.h>
#include <linux/list.h>

11
#include <net/netns/core.h>
P
Pavel Emelyanov 已提交
12
#include <net/netns/mib.h>
13
#include <net/netns/unix.h>
14
#include <net/netns/packet.h>
15
#include <net/netns/ipv4.h>
16
#include <net/netns/ipv6.h>
17
#include <net/netns/dccp.h>
18
#include <net/netns/x_tables.h>
19 20 21
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
#include <net/netns/conntrack.h>
#endif
22

23
struct proc_dir_entry;
24
struct net_device;
25
struct sock;
26
struct ctl_table_header;
27
struct net_generic;
28

29 30 31 32
struct net {
	atomic_t		count;		/* To decided when the network
						 *  namespace should be freed.
						 */
33
#ifdef NETNS_REFCNT_DEBUG
34 35 36
	atomic_t		use_count;	/* To track references we
						 * destroy on demand
						 */
37
#endif
38 39
	struct list_head	list;		/* list of network namespaces */
	struct work_struct	work;		/* work struct for freeing */
40 41 42

	struct proc_dir_entry 	*proc_net;
	struct proc_dir_entry 	*proc_net_stat;
43

44 45 46
#ifdef CONFIG_SYSCTL
	struct ctl_table_set	sysctls;
#endif
47

48 49
	struct net_device       *loopback_dev;          /* The loopback */

50 51 52
	struct list_head 	dev_base_head;
	struct hlist_head 	*dev_name_head;
	struct hlist_head	*dev_index_head;
53

54 55 56 57
	/* core fib_rules */
	struct list_head	rules_ops;
	spinlock_t		rules_mod_lock;

58
	struct sock 		*rtnl;			/* rtnetlink socket */
59

60
	struct netns_core	core;
P
Pavel Emelyanov 已提交
61
	struct netns_mib	mib;
62
	struct netns_packet	packet;
63
	struct netns_unix	unx;
64
	struct netns_ipv4	ipv4;
65 66 67
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
	struct netns_ipv6	ipv6;
#endif
68 69 70
#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
	struct netns_dccp	dccp;
#endif
71 72
#ifdef CONFIG_NETFILTER
	struct netns_xt		xt;
73 74 75
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
	struct netns_ct		ct;
#endif
76
#endif
77
	struct net_generic	*gen;
78 79
};

80

81 82
#include <linux/seq_file_net.h>

83
/* Init's network namespace */
84
extern struct net init_net;
85 86

#ifdef CONFIG_NET
87 88
#define INIT_NET_NS(net_ns) .net_ns = &init_net,

89
extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
90 91 92 93 94

#else /* CONFIG_NET */

#define INIT_NET_NS(net_ns)

95 96 97 98 99
static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
{
	/* There is nothing to copy so this is a noop */
	return net_ns;
}
100 101 102 103
#endif /* CONFIG_NET */


extern struct list_head net_namespace_list;
104

105
#ifdef CONFIG_NET_NS
106 107
extern void __put_net(struct net *net);

108 109 110 111 112
static inline int net_alive(struct net *net)
{
	return net && atomic_read(&net->count);
}

113 114 115 116 117 118
static inline struct net *get_net(struct net *net)
{
	atomic_inc(&net->count);
	return net;
}

119 120 121 122 123 124 125 126 127 128 129 130
static inline struct net *maybe_get_net(struct net *net)
{
	/* Used when we know struct net exists but we
	 * aren't guaranteed a previous reference count
	 * exists.  If the reference count is zero this
	 * function fails and returns NULL.
	 */
	if (!atomic_inc_not_zero(&net->count))
		net = NULL;
	return net;
}

131 132 133 134 135 136
static inline void put_net(struct net *net)
{
	if (atomic_dec_and_test(&net->count))
		__put_net(net);
}

137 138 139 140 141
static inline
int net_eq(const struct net *net1, const struct net *net2)
{
	return net1 == net2;
}
142
#else
143 144 145 146 147 148

static inline int net_alive(struct net *net)
{
	return 1;
}

149 150 151 152 153 154 155 156 157
static inline struct net *get_net(struct net *net)
{
	return net;
}

static inline void put_net(struct net *net)
{
}

158 159 160 161 162 163 164 165 166 167 168 169 170 171
static inline struct net *maybe_get_net(struct net *net)
{
	return net;
}

static inline
int net_eq(const struct net *net1, const struct net *net2)
{
	return 1;
}
#endif


#ifdef NETNS_REFCNT_DEBUG
172 173
static inline struct net *hold_net(struct net *net)
{
174 175
	if (net)
		atomic_inc(&net->use_count);
176 177 178 179 180
	return net;
}

static inline void release_net(struct net *net)
{
181 182
	if (net)
		atomic_dec(&net->use_count);
183
}
184 185
#else
static inline struct net *hold_net(struct net *net)
186 187 188
{
	return net;
}
189

190
static inline void release_net(struct net *net)
191 192
{
}
193
#endif
194

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
#ifdef CONFIG_NET_NS

static inline void write_pnet(struct net **pnet, struct net *net)
{
	*pnet = net;
}

static inline struct net *read_pnet(struct net * const *pnet)
{
	return *pnet;
}

#else

#define write_pnet(pnet, net)	do { (void)(net);} while (0)
#define read_pnet(pnet)		(&init_net)

#endif
213

214 215 216
#define for_each_net(VAR)				\
	list_for_each_entry(VAR, &net_namespace_list, list)

217 218 219
#ifdef CONFIG_NET_NS
#define __net_init
#define __net_exit
220
#define __net_initdata
221 222 223
#else
#define __net_init	__init
#define __net_exit	__exit_refok
224
#define __net_initdata	__initdata
225
#endif
226 227 228 229 230 231 232 233 234

struct pernet_operations {
	struct list_head list;
	int (*init)(struct net *net);
	void (*exit)(struct net *net);
};

extern int register_pernet_subsys(struct pernet_operations *);
extern void unregister_pernet_subsys(struct pernet_operations *);
235 236
extern int register_pernet_gen_subsys(int *id, struct pernet_operations *);
extern void unregister_pernet_gen_subsys(int id, struct pernet_operations *);
237 238
extern int register_pernet_device(struct pernet_operations *);
extern void unregister_pernet_device(struct pernet_operations *);
239 240
extern int register_pernet_gen_device(int *id, struct pernet_operations *);
extern void unregister_pernet_gen_device(int id, struct pernet_operations *);
241

242 243 244
struct ctl_path;
struct ctl_table;
struct ctl_table_header;
245

246 247
extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
	const struct ctl_path *path, struct ctl_table *table);
248 249
extern struct ctl_table_header *register_net_sysctl_rotable(
	const struct ctl_path *path, struct ctl_table *table);
250 251
extern void unregister_net_sysctl_table(struct ctl_table_header *header);

252
#endif /* __NET_NET_NAMESPACE_H */