net_namespace.h 12.0 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6 7
/*
 * Operations on the network namespace
 */
#ifndef __NET_NET_NAMESPACE_H
#define __NET_NET_NAMESPACE_H

A
Arun Sharma 已提交
8
#include <linux/atomic.h>
9
#include <linux/refcount.h>
10 11
#include <linux/workqueue.h>
#include <linux/list.h>
12
#include <linux/sysctl.h>
13
#include <linux/uidgid.h>
14

15
#include <net/flow.h>
16
#include <net/netns/core.h>
P
Pavel Emelyanov 已提交
17
#include <net/netns/mib.h>
18
#include <net/netns/unix.h>
19
#include <net/netns/packet.h>
20
#include <net/netns/ipv4.h>
21
#include <net/netns/ipv6.h>
D
David Ahern 已提交
22
#include <net/netns/nexthop.h>
23
#include <net/netns/ieee802154_6lowpan.h>
24
#include <net/netns/sctp.h>
25
#include <net/netns/dccp.h>
26
#include <net/netns/netfilter.h>
27
#include <net/netns/x_tables.h>
28 29 30
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
#include <net/netns/conntrack.h>
#endif
31
#include <net/netns/nftables.h>
32
#include <net/netns/xfrm.h>
E
Eric W. Biederman 已提交
33
#include <net/netns/mpls.h>
34
#include <net/netns/can.h>
35
#include <net/netns/xdp.h>
36
#include <linux/ns_common.h>
37 38
#include <linux/idr.h>
#include <linux/skbuff.h>
39
#include <linux/notifier.h>
40

41
struct user_namespace;
42
struct proc_dir_entry;
43
struct net_device;
44
struct sock;
45
struct ctl_table_header;
46
struct net_generic;
47
struct uevent_sock;
J
Julian Anastasov 已提交
48
struct netns_ipvs;
49
struct bpf_prog;
50

51 52 53 54

#define NETDEV_HASHBITS    8
#define NETDEV_HASHENTRIES (1 << NETDEV_HASHBITS)

55
struct net {
56 57 58
	/* First cache line can be often dirtied.
	 * Do not place here read-mostly fields.
	 */
59
	refcount_t		passive;	/* To decide when the network
60 61
						 * namespace should be freed.
						 */
62
	refcount_t		count;		/* To decided when the network
63
						 *  namespace should be shut down.
64
						 */
E
Eric Dumazet 已提交
65 66
	spinlock_t		rules_mod_lock;

67 68 69 70 71 72 73
	unsigned int		dev_unreg_count;

	unsigned int		dev_base_seq;	/* protected by rtnl_mutex */
	int			ifindex;

	spinlock_t		nsid_lock;
	atomic_t		fnhe_genid;
E
Eric Dumazet 已提交
74

75
	struct list_head	list;		/* list of network namespaces */
K
Kirill Tkhai 已提交
76
	struct list_head	exit_list;	/* To linked to call pernet exit
77 78 79 80
						 * methods on dead net (
						 * pernet_ops_rwsem read locked),
						 * or to unregister pernet ops
						 * (pernet_ops_rwsem write locked).
K
Kirill Tkhai 已提交
81
						 */
82 83
	struct llist_node	cleanup_list;	/* namespaces on death row */

84 85 86
#ifdef CONFIG_KEYS
	struct key_tag		*key_domain;	/* Key domain of operation tag */
#endif
87
	struct user_namespace   *user_ns;	/* Owning user namespace */
88
	struct ucounts		*ucounts;
89
	struct idr		netns_ids;
90

91
	struct ns_common	ns;
92

93
	struct list_head 	dev_base_head;
94 95
	struct proc_dir_entry 	*proc_net;
	struct proc_dir_entry 	*proc_net_stat;
96

97 98 99
#ifdef CONFIG_SYSCTL
	struct ctl_table_set	sysctls;
#endif
100

E
Eric Dumazet 已提交
101 102
	struct sock 		*rtnl;			/* rtnetlink socket */
	struct sock		*genl_sock;
103

104 105
	struct uevent_sock	*uevent_sock;		/* uevent socket */

106 107
	struct hlist_head 	*dev_name_head;
	struct hlist_head	*dev_index_head;
108 109
	struct raw_notifier_head	netdev_chain;

110 111 112 113 114 115
	/* Note that @hash_mix can be read millions times per second,
	 * it is critical that it is on a read_mostly cache line.
	 */
	u32			hash_mix;

	struct net_device       *loopback_dev;          /* The loopback */
116

117 118 119
	/* core fib_rules */
	struct list_head	rules_ops;

120
	struct netns_core	core;
P
Pavel Emelyanov 已提交
121
	struct netns_mib	mib;
122
	struct netns_packet	packet;
123
	struct netns_unix	unx;
D
David Ahern 已提交
124
	struct netns_nexthop	nexthop;
125
	struct netns_ipv4	ipv4;
E
Eric Dumazet 已提交
126
#if IS_ENABLED(CONFIG_IPV6)
127 128
	struct netns_ipv6	ipv6;
#endif
129 130 131
#if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
	struct netns_ieee802154_lowpan	ieee802154_lowpan;
#endif
132 133 134
#if defined(CONFIG_IP_SCTP) || defined(CONFIG_IP_SCTP_MODULE)
	struct netns_sctp	sctp;
#endif
135 136 137
#if defined(CONFIG_IP_DCCP) || defined(CONFIG_IP_DCCP_MODULE)
	struct netns_dccp	dccp;
#endif
138
#ifdef CONFIG_NETFILTER
139
	struct netns_nf		nf;
140
	struct netns_xt		xt;
141 142
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
	struct netns_ct		ct;
143
#endif
144 145 146
#if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE)
	struct netns_nftables	nft;
#endif
147 148
#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
	struct netns_nf_frag	nf_frag;
149
	struct ctl_table_header *nf_frag_frags_hdr;
150
#endif
151 152
	struct sock		*nfnl;
	struct sock		*nfnl_stash;
153 154 155
#if IS_ENABLED(CONFIG_NETFILTER_NETLINK_ACCT)
	struct list_head        nfnl_acct_list;
#endif
156 157 158
#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
	struct list_head	nfct_timeout_list;
#endif
159
#endif
J
Johannes Berg 已提交
160
#ifdef CONFIG_WEXT_CORE
161
	struct sk_buff_head	wext_nlevents;
162
#endif
E
Eric Dumazet 已提交
163
	struct net_generic __rcu	*gen;
E
Eric Dumazet 已提交
164

165 166
	struct bpf_prog __rcu	*flow_dissector_prog;

E
Eric Dumazet 已提交
167 168 169 170
	/* Note : following structs are cache line aligned */
#ifdef CONFIG_XFRM
	struct netns_xfrm	xfrm;
#endif
171 172 173

	atomic64_t		net_cookie; /* written once */

174
#if IS_ENABLED(CONFIG_IP_VS)
175
	struct netns_ipvs	*ipvs;
E
Eric W. Biederman 已提交
176 177 178
#endif
#if IS_ENABLED(CONFIG_MPLS)
	struct netns_mpls	mpls;
179 180 181
#endif
#if IS_ENABLED(CONFIG_CAN)
	struct netns_can	can;
182 183 184
#endif
#ifdef CONFIG_XDP_SOCKETS
	struct netns_xdp	xdp;
185 186 187
#endif
#if IS_ENABLED(CONFIG_CRYPTO_USER)
	struct sock		*crypto_nlsk;
188
#endif
A
Andrey Vagin 已提交
189
	struct sock		*diag_nlsk;
190
} __randomize_layout;
191

192 193
#include <linux/seq_file_net.h>

194
/* Init's network namespace */
195
extern struct net init_net;
196

197
#ifdef CONFIG_NET_NS
198 199
struct net *copy_net_ns(unsigned long flags, struct user_namespace *user_ns,
			struct net *old_net);
200

201 202
void net_ns_get_ownership(const struct net *net, kuid_t *uid, kgid_t *gid);

203
void net_ns_barrier(void);
204 205 206
#else /* CONFIG_NET_NS */
#include <linux/sched.h>
#include <linux/nsproxy.h>
207 208
static inline struct net *copy_net_ns(unsigned long flags,
	struct user_namespace *user_ns, struct net *old_net)
209
{
210 211 212
	if (flags & CLONE_NEWNET)
		return ERR_PTR(-EINVAL);
	return old_net;
213
}
214

215 216 217 218 219 220 221
static inline void net_ns_get_ownership(const struct net *net,
					kuid_t *uid, kgid_t *gid)
{
	*uid = GLOBAL_ROOT_UID;
	*gid = GLOBAL_ROOT_GID;
}

222
static inline void net_ns_barrier(void) {}
223
#endif /* CONFIG_NET_NS */
224 225 226


extern struct list_head net_namespace_list;
227

228
struct net *get_net_ns_by_pid(pid_t pid);
229
struct net *get_net_ns_by_fd(int fd);
230

231 232
u64 net_gen_cookie(struct net *net);

233 234 235 236 237 238 239 240
#ifdef CONFIG_SYSCTL
void ipx_register_sysctl(void);
void ipx_unregister_sysctl(void);
#else
#define ipx_register_sysctl()
#define ipx_unregister_sysctl()
#endif

241
#ifdef CONFIG_NET_NS
242
void __put_net(struct net *net);
243 244 245

static inline struct net *get_net(struct net *net)
{
246
	refcount_inc(&net->count);
247 248 249
	return net;
}

250 251 252 253 254 255 256
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.
	 */
257
	if (!refcount_inc_not_zero(&net->count))
258 259 260 261
		net = NULL;
	return net;
}

262 263
static inline void put_net(struct net *net)
{
264
	if (refcount_dec_and_test(&net->count))
265 266 267
		__put_net(net);
}

268 269 270 271 272
static inline
int net_eq(const struct net *net1, const struct net *net2)
{
	return net1 == net2;
}
273

274 275
static inline int check_net(const struct net *net)
{
276
	return refcount_read(&net->count) != 0;
277 278
}

279
void net_drop_ns(void *);
280

281
#else
282

283 284 285 286 287 288 289 290 291
static inline struct net *get_net(struct net *net)
{
	return net;
}

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

292 293 294 295 296 297 298 299 300 301
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;
}
302

303 304 305 306 307
static inline int check_net(const struct net *net)
{
	return 1;
}

308
#define net_drop_ns NULL
309 310 311
#endif


312
typedef struct {
313
#ifdef CONFIG_NET_NS
314 315 316
	struct net *net;
#endif
} possible_net_t;
317

318
static inline void write_pnet(possible_net_t *pnet, struct net *net)
319
{
320 321 322
#ifdef CONFIG_NET_NS
	pnet->net = net;
#endif
323 324
}

325
static inline struct net *read_pnet(const possible_net_t *pnet)
326
{
327 328
#ifdef CONFIG_NET_NS
	return pnet->net;
329
#else
330
	return &init_net;
331
#endif
332
}
333

334
/* Protected by net_rwsem */
335 336
#define for_each_net(VAR)				\
	list_for_each_entry(VAR, &net_namespace_list, list)
337 338
#define for_each_net_continue_reverse(VAR)		\
	list_for_each_entry_continue_reverse(VAR, &net_namespace_list, list)
339 340 341
#define for_each_net_rcu(VAR)				\
	list_for_each_entry_rcu(VAR, &net_namespace_list, list)

342 343 344
#ifdef CONFIG_NET_NS
#define __net_init
#define __net_exit
345
#define __net_initdata
346
#define __net_initconst
347 348
#else
#define __net_init	__init
349
#define __net_exit	__ref
350
#define __net_initdata	__initdata
351
#define __net_initconst	__initconst
352
#endif
353

354
int peernet2id_alloc(struct net *net, struct net *peer, gfp_t gfp);
355 356 357
int peernet2id(const struct net *net, struct net *peer);
bool peernet_has_id(const struct net *net, struct net *peer);
struct net *get_net_ns_by_id(const struct net *net, int id);
358

359 360
struct pernet_operations {
	struct list_head list;
361 362 363 364 365 366 367
	/*
	 * Below methods are called without any exclusive locks.
	 * More than one net may be constructed and destructed
	 * in parallel on several cpus. Every pernet_operations
	 * have to keep in mind all other pernet_operations and
	 * to introduce a locking, if they share common resources.
	 *
K
Kirill Tkhai 已提交
368 369 370 371
	 * The only time they are called with exclusive lock is
	 * from register_pernet_subsys(), unregister_pernet_subsys()
	 * register_pernet_device() and unregister_pernet_device().
	 *
372 373 374 375 376 377
	 * Exit methods using blocking RCU primitives, such as
	 * synchronize_rcu(), should be implemented via exit_batch.
	 * Then, destruction of a group of net requires single
	 * synchronize_rcu() related to these pernet_operations,
	 * instead of separate synchronize_rcu() for every net.
	 * Please, avoid synchronize_rcu() at all, where it's possible.
378 379 380 381
	 *
	 * Note that a combination of pre_exit() and exit() can
	 * be used, since a synchronize_rcu() is guaranteed between
	 * the calls.
382
	 */
383
	int (*init)(struct net *net);
384
	void (*pre_exit)(struct net *net);
385
	void (*exit)(struct net *net);
386
	void (*exit_batch)(struct list_head *net_exit_list);
387
	unsigned int *id;
388
	size_t size;
389 390
};

E
Eric W. Biederman 已提交
391 392 393 394 395
/*
 * Use these carefully.  If you implement a network device and it
 * needs per network namespace operations use device pernet operations,
 * otherwise use pernet subsys operations.
 *
396 397 398 399 400 401 402 403 404
 * Network interfaces need to be removed from a dying netns _before_
 * subsys notifiers can be called, as most of the network code cleanup
 * (which is done from subsys notifiers) runs with the assumption that
 * dev_remove_pack has been called so no new packets will arrive during
 * and after the cleanup functions have been called.  dev_remove_pack
 * is not per namespace so instead the guarantee of no more packets
 * arriving in a network namespace is provided by ensuring that all
 * network devices and all sockets have left the network namespace
 * before the cleanup methods are called.
E
Eric W. Biederman 已提交
405 406 407 408 409
 *
 * For the longest time the ipv4 icmp code was registered as a pernet
 * device which caused kernel oops, and panics during network
 * namespace cleanup.   So please don't get this wrong.
 */
410 411 412 413
int register_pernet_subsys(struct pernet_operations *);
void unregister_pernet_subsys(struct pernet_operations *);
int register_pernet_device(struct pernet_operations *);
void unregister_pernet_device(struct pernet_operations *);
414

415 416
struct ctl_table;
struct ctl_table_header;
417

418
#ifdef CONFIG_SYSCTL
419 420 421 422
int net_sysctl_init(void);
struct ctl_table_header *register_net_sysctl(struct net *net, const char *path,
					     struct ctl_table *table);
void unregister_net_sysctl_table(struct ctl_table_header *header);
423 424 425 426 427 428 429 430 431 432 433 434
#else
static inline int net_sysctl_init(void) { return 0; }
static inline struct ctl_table_header *register_net_sysctl(struct net *net,
	const char *path, struct ctl_table *table)
{
	return NULL;
}
static inline void unregister_net_sysctl_table(struct ctl_table_header *header)
{
}
#endif

435
static inline int rt_genid_ipv4(const struct net *net)
436
{
F
fan.du 已提交
437
	return atomic_read(&net->ipv4.rt_genid);
438 439
}

F
fan.du 已提交
440
static inline void rt_genid_bump_ipv4(struct net *net)
441
{
F
fan.du 已提交
442 443 444
	atomic_inc(&net->ipv4.rt_genid);
}

H
Hannes Frederic Sowa 已提交
445
extern void (*__fib6_flush_trees)(struct net *net);
F
fan.du 已提交
446 447
static inline void rt_genid_bump_ipv6(struct net *net)
{
H
Hannes Frederic Sowa 已提交
448 449
	if (__fib6_flush_trees)
		__fib6_flush_trees(net);
F
fan.du 已提交
450 451
}

452 453 454 455 456 457 458 459
#if IS_ENABLED(CONFIG_IEEE802154_6LOWPAN)
static inline struct netns_ieee802154_lowpan *
net_ieee802154_lowpan(struct net *net)
{
	return &net->ieee802154_lowpan;
}
#endif

F
fan.du 已提交
460 461 462 463 464
/* For callers who don't really care about whether it's IPv4 or IPv6 */
static inline void rt_genid_bump_all(struct net *net)
{
	rt_genid_bump_ipv4(net);
	rt_genid_bump_ipv6(net);
465
}
466

467
static inline int fnhe_genid(const struct net *net)
468 469 470 471 472 473 474 475 476
{
	return atomic_read(&net->fnhe_genid);
}

static inline void fnhe_genid_bump(struct net *net)
{
	atomic_inc(&net->fnhe_genid);
}

477
#endif /* __NET_NET_NAMESPACE_H */