b0cf07519b81eb4f1ac71d674fc56d817b51ec3c
[safe/jmp/linux-2.6] / include / net / net_namespace.h
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
11 struct proc_dir_entry;
12 struct net_device;
13 struct sock;
14 struct net {
15         atomic_t                count;          /* To decided when the network
16                                                  *  namespace should be freed.
17                                                  */
18         atomic_t                use_count;      /* To track references we
19                                                  * destroy on demand
20                                                  */
21         struct list_head        list;           /* list of network namespaces */
22         struct work_struct      work;           /* work struct for freeing */
23
24         struct proc_dir_entry   *proc_net;
25         struct proc_dir_entry   *proc_net_stat;
26         struct proc_dir_entry   *proc_net_root;
27
28         struct list_head        sysctl_table_headers;
29
30         struct net_device       *loopback_dev;          /* The loopback */
31
32         struct list_head        dev_base_head;
33         struct hlist_head       *dev_name_head;
34         struct hlist_head       *dev_index_head;
35
36         struct sock             *rtnl;                  /* rtnetlink socket */
37
38         /* List of all packet sockets. */
39         rwlock_t                packet_sklist_lock;
40         struct hlist_head       packet_sklist;
41
42         /* unix sockets */
43         int                     sysctl_unix_max_dgram_qlen;
44 };
45
46 #ifdef CONFIG_NET
47 /* Init's network namespace */
48 extern struct net init_net;
49 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
50 #else
51 #define INIT_NET_NS(net_ns)
52 #endif
53
54 extern struct list_head net_namespace_list;
55
56 #ifdef CONFIG_NET
57 extern struct net *copy_net_ns(unsigned long flags, struct net *net_ns);
58 #else
59 static inline struct net *copy_net_ns(unsigned long flags, struct net *net_ns)
60 {
61         /* There is nothing to copy so this is a noop */
62         return net_ns;
63 }
64 #endif
65
66 #ifdef CONFIG_NET_NS
67 extern void __put_net(struct net *net);
68
69 static inline struct net *get_net(struct net *net)
70 {
71         atomic_inc(&net->count);
72         return net;
73 }
74
75 static inline struct net *maybe_get_net(struct net *net)
76 {
77         /* Used when we know struct net exists but we
78          * aren't guaranteed a previous reference count
79          * exists.  If the reference count is zero this
80          * function fails and returns NULL.
81          */
82         if (!atomic_inc_not_zero(&net->count))
83                 net = NULL;
84         return net;
85 }
86
87 static inline void put_net(struct net *net)
88 {
89         if (atomic_dec_and_test(&net->count))
90                 __put_net(net);
91 }
92
93 static inline struct net *hold_net(struct net *net)
94 {
95         atomic_inc(&net->use_count);
96         return net;
97 }
98
99 static inline void release_net(struct net *net)
100 {
101         atomic_dec(&net->use_count);
102 }
103 #else
104 static inline struct net *get_net(struct net *net)
105 {
106         return net;
107 }
108
109 static inline void put_net(struct net *net)
110 {
111 }
112
113 static inline struct net *hold_net(struct net *net)
114 {
115         return net;
116 }
117
118 static inline void release_net(struct net *net)
119 {
120 }
121
122 static inline struct net *maybe_get_net(struct net *net)
123 {
124         return net;
125 }
126 #endif
127
128 #define for_each_net(VAR)                               \
129         list_for_each_entry(VAR, &net_namespace_list, list)
130
131 #ifdef CONFIG_NET_NS
132 #define __net_init
133 #define __net_exit
134 #define __net_initdata
135 #else
136 #define __net_init      __init
137 #define __net_exit      __exit_refok
138 #define __net_initdata  __initdata
139 #endif
140
141 struct pernet_operations {
142         struct list_head list;
143         int (*init)(struct net *net);
144         void (*exit)(struct net *net);
145 };
146
147 extern int register_pernet_subsys(struct pernet_operations *);
148 extern void unregister_pernet_subsys(struct pernet_operations *);
149 extern int register_pernet_device(struct pernet_operations *);
150 extern void unregister_pernet_device(struct pernet_operations *);
151
152 struct ctl_path;
153 struct ctl_table;
154 struct ctl_table_header;
155 extern struct ctl_table_header *register_net_sysctl_table(struct net *net,
156         const struct ctl_path *path, struct ctl_table *table);
157 extern void unregister_net_sysctl_table(struct ctl_table_header *header);
158
159 #endif /* __NET_NET_NAMESPACE_H */