[NETNS]: Remove ifdef CONFIG_NET braces in fs/proc/proc_net.c.
[deliverable/linux.git] / include / net / net_namespace.h
CommitLineData
5f256bec
EB
1/*
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
8efa6e93 11#include <net/netns/core.h>
a0a53c8b 12#include <net/netns/unix.h>
2aaef4e4 13#include <net/netns/packet.h>
8afd351c 14#include <net/netns/ipv4.h>
b0f159db 15#include <net/netns/ipv6.h>
8d870052 16#include <net/netns/x_tables.h>
a0a53c8b 17
457c4cbc 18struct proc_dir_entry;
2774c7ab 19struct net_device;
97c53cac 20struct sock;
1597fbc0
PE
21struct ctl_table_header;
22
5f256bec
EB
23struct 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 */
457c4cbc
EB
32
33 struct proc_dir_entry *proc_net;
34 struct proc_dir_entry *proc_net_stat;
881d966b 35
95bdfccb
EB
36 struct list_head sysctl_table_headers;
37
2774c7ab
EB
38 struct net_device *loopback_dev; /* The loopback */
39
881d966b
EB
40 struct list_head dev_base_head;
41 struct hlist_head *dev_name_head;
42 struct hlist_head *dev_index_head;
97c53cac 43
5fd30ee7
DL
44 /* core fib_rules */
45 struct list_head rules_ops;
46 spinlock_t rules_mod_lock;
47
97c53cac 48 struct sock *rtnl; /* rtnetlink socket */
d12d01d6 49
8efa6e93 50 struct netns_core core;
2aaef4e4 51 struct netns_packet packet;
a0a53c8b 52 struct netns_unix unx;
8afd351c 53 struct netns_ipv4 ipv4;
b0f159db
DL
54#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
55 struct netns_ipv6 ipv6;
56#endif
8d870052
AD
57#ifdef CONFIG_NETFILTER
58 struct netns_xt xt;
59#endif
5f256bec
EB
60};
61
225c0a01 62
4fabcd71
DL
63#ifdef CONFIG_NET
64/* Init's network namespace */
5f256bec 65extern struct net init_net;
4fabcd71 66#define INIT_NET_NS(net_ns) .net_ns = &init_net,
4fabcd71 67
9dd776b6 68extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
225c0a01
DL
69
70#else /* CONFIG_NET */
71
72#define INIT_NET_NS(net_ns)
73
9dd776b6
EB
74static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
75{
76 /* There is nothing to copy so this is a noop */
77 return net_ns;
78}
225c0a01
DL
79#endif /* CONFIG_NET */
80
81
82extern struct list_head net_namespace_list;
9dd776b6 83
d4655795 84#ifdef CONFIG_NET_NS
5f256bec
EB
85extern 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
077130c0
EB
93static 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
5f256bec
EB
105static 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);
120}
878628fb
YH
121
122static inline
123int net_eq(const struct net *net1, const struct net *net2)
124{
125 return net1 == net2;
126}
d4655795
PE
127#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}
878628fb
YH
150
151static inline
152int net_eq(const struct net *net1, const struct net *net2)
153{
154 return 1;
155}
d4655795 156#endif
5f256bec 157
5f256bec
EB
158#define for_each_net(VAR) \
159 list_for_each_entry(VAR, &net_namespace_list, list)
160
4665079c
PE
161#ifdef CONFIG_NET_NS
162#define __net_init
163#define __net_exit
022cbae6 164#define __net_initdata
4665079c
PE
165#else
166#define __net_init __init
167#define __net_exit __exit_refok
022cbae6 168#define __net_initdata __initdata
4665079c 169#endif
5f256bec
EB
170
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
95bdfccb
EB
182struct 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
5f256bec 189#endif /* __NET_NET_NAMESPACE_H */
This page took 0.111726 seconds and 5 git commands to generate.