[PATCH] Notifier chain update: API changes
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / netfilter_ipv4 / ip_conntrack.h
CommitLineData
1da177e4
LT
1#ifndef _IP_CONNTRACK_H
2#define _IP_CONNTRACK_H
ac3247ba 3
9fb9cbb1 4#include <linux/netfilter/nf_conntrack_common.h>
1da177e4
LT
5
6#ifdef __KERNEL__
7#include <linux/config.h>
8#include <linux/netfilter_ipv4/ip_conntrack_tuple.h>
9#include <linux/bitops.h>
10#include <linux/compiler.h>
11#include <asm/atomic.h>
12
13#include <linux/netfilter_ipv4/ip_conntrack_tcp.h>
14#include <linux/netfilter_ipv4/ip_conntrack_icmp.h>
926b50f9 15#include <linux/netfilter_ipv4/ip_conntrack_proto_gre.h>
1da177e4
LT
16#include <linux/netfilter_ipv4/ip_conntrack_sctp.h>
17
18/* per conntrack: protocol private data */
19union ip_conntrack_proto {
20 /* insert conntrack proto private data here */
926b50f9 21 struct ip_ct_gre gre;
1da177e4
LT
22 struct ip_ct_sctp sctp;
23 struct ip_ct_tcp tcp;
24 struct ip_ct_icmp icmp;
25};
26
27union ip_conntrack_expect_proto {
28 /* insert expect proto private data here */
29};
30
31/* Add protocol helper include file here */
5e35941d 32#include <linux/netfilter_ipv4/ip_conntrack_h323.h>
926b50f9 33#include <linux/netfilter_ipv4/ip_conntrack_pptp.h>
1da177e4
LT
34#include <linux/netfilter_ipv4/ip_conntrack_amanda.h>
35#include <linux/netfilter_ipv4/ip_conntrack_ftp.h>
36#include <linux/netfilter_ipv4/ip_conntrack_irc.h>
37
38/* per conntrack: application helper private data */
39union ip_conntrack_help {
40 /* insert conntrack helper private data (master) here */
5e35941d 41 struct ip_ct_h323_master ct_h323_info;
926b50f9 42 struct ip_ct_pptp_master ct_pptp_info;
1da177e4
LT
43 struct ip_ct_ftp_master ct_ftp_info;
44 struct ip_ct_irc_master ct_irc_info;
45};
46
47#ifdef CONFIG_IP_NF_NAT_NEEDED
48#include <linux/netfilter_ipv4/ip_nat.h>
926b50f9
HW
49#include <linux/netfilter_ipv4/ip_nat_pptp.h>
50
51/* per conntrack: nat application helper private data */
52union ip_conntrack_nat_help {
53 /* insert nat helper private data here */
54 struct ip_nat_pptp nat_pptp_info;
55};
1da177e4
LT
56#endif
57
58#include <linux/types.h>
59#include <linux/skbuff.h>
60
61#ifdef CONFIG_NETFILTER_DEBUG
62#define IP_NF_ASSERT(x) \
63do { \
64 if (!(x)) \
65 /* Wooah! I'm tripping my conntrack in a frenzy of \
66 netplay... */ \
67 printk("NF_IP_ASSERT: %s:%i(%s)\n", \
68 __FILE__, __LINE__, __FUNCTION__); \
69} while(0)
70#else
71#define IP_NF_ASSERT(x)
72#endif
73
1da177e4
LT
74struct ip_conntrack_helper;
75
76struct ip_conntrack
77{
78 /* Usage count in here is 1 for hash table/destruct timer, 1 per skb,
79 plus 1 for any connection(s) we are `master' for */
80 struct nf_conntrack ct_general;
81
82 /* Have we seen traffic both ways yet? (bitset) */
83 unsigned long status;
84
85 /* Timer function; drops refcnt when it goes off. */
86 struct timer_list timeout;
87
88#ifdef CONFIG_IP_NF_CT_ACCT
89 /* Accounting Information (same cache line as other written members) */
90 struct ip_conntrack_counter counters[IP_CT_DIR_MAX];
91#endif
92 /* If we were expected by an expectation, this will be it */
93 struct ip_conntrack *master;
94
95 /* Current number of expected connections */
96 unsigned int expecting;
97
080774a2
HW
98 /* Unique ID that identifies this conntrack*/
99 unsigned int id;
100
1da177e4
LT
101 /* Helper, if any. */
102 struct ip_conntrack_helper *helper;
103
104 /* Storage reserved for other modules: */
105 union ip_conntrack_proto proto;
106
107 union ip_conntrack_help help;
108
109#ifdef CONFIG_IP_NF_NAT_NEEDED
110 struct {
111 struct ip_nat_info info;
926b50f9 112 union ip_conntrack_nat_help help;
1da177e4
LT
113#if defined(CONFIG_IP_NF_TARGET_MASQUERADE) || \
114 defined(CONFIG_IP_NF_TARGET_MASQUERADE_MODULE)
115 int masq_index;
116#endif
117 } nat;
118#endif /* CONFIG_IP_NF_NAT_NEEDED */
119
120#if defined(CONFIG_IP_NF_CONNTRACK_MARK)
bf3a46aa 121 u_int32_t mark;
1da177e4
LT
122#endif
123
124 /* Traversed often, so hopefully in different cacheline to top */
125 /* These are my tuples; original and reply */
126 struct ip_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
127};
128
129struct ip_conntrack_expect
130{
131 /* Internal linked list (global expectation list) */
132 struct list_head list;
133
134 /* We expect this tuple, with the following mask */
135 struct ip_conntrack_tuple tuple, mask;
136
137 /* Function to call after setup and insertion */
138 void (*expectfn)(struct ip_conntrack *new,
139 struct ip_conntrack_expect *this);
140
141 /* The conntrack of the master connection */
142 struct ip_conntrack *master;
143
144 /* Timer function; deletes the expectation. */
145 struct timer_list timeout;
146
4acdbdbe
RR
147 /* Usage count. */
148 atomic_t use;
149
080774a2
HW
150 /* Unique ID */
151 unsigned int id;
152
2248bcfc
PM
153 /* Flags */
154 unsigned int flags;
155
1da177e4
LT
156#ifdef CONFIG_IP_NF_NAT_NEEDED
157 /* This is the original per-proto part, used to map the
158 * expected connection the way the recipient expects. */
159 union ip_conntrack_manip_proto saved_proto;
160 /* Direction relative to the master connection. */
161 enum ip_conntrack_dir dir;
162#endif
163};
164
2248bcfc
PM
165#define IP_CT_EXPECT_PERMANENT 0x1
166
1da177e4
LT
167static inline struct ip_conntrack *
168tuplehash_to_ctrack(const struct ip_conntrack_tuple_hash *hash)
169{
170 return container_of(hash, struct ip_conntrack,
171 tuplehash[hash->tuple.dst.dir]);
172}
173
174/* get master conntrack via master expectation */
175#define master_ct(conntr) (conntr->master)
176
177/* Alter reply tuple (maybe alter helper). */
178extern void
179ip_conntrack_alter_reply(struct ip_conntrack *conntrack,
180 const struct ip_conntrack_tuple *newreply);
181
182/* Is this tuple taken? (ignoring any belonging to the given
183 conntrack). */
184extern int
185ip_conntrack_tuple_taken(const struct ip_conntrack_tuple *tuple,
186 const struct ip_conntrack *ignored_conntrack);
187
188/* Return conntrack_info and tuple hash for given skb. */
189static inline struct ip_conntrack *
190ip_conntrack_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
191{
192 *ctinfo = skb->nfctinfo;
193 return (struct ip_conntrack *)skb->nfct;
194}
195
196/* decrement reference count on a conntrack */
080774a2
HW
197static inline void
198ip_conntrack_put(struct ip_conntrack *ct)
199{
200 IP_NF_ASSERT(ct);
201 nf_conntrack_put(&ct->ct_general);
202}
1da177e4 203
1da177e4
LT
204extern int invert_tuplepr(struct ip_conntrack_tuple *inverse,
205 const struct ip_conntrack_tuple *orig);
206
1dfbab59
HW
207extern void __ip_ct_refresh_acct(struct ip_conntrack *ct,
208 enum ip_conntrack_info ctinfo,
209 const struct sk_buff *skb,
210 unsigned long extra_jiffies,
211 int do_acct);
212
213/* Refresh conntrack for this many jiffies and do accounting */
214static inline void ip_ct_refresh_acct(struct ip_conntrack *ct,
215 enum ip_conntrack_info ctinfo,
216 const struct sk_buff *skb,
217 unsigned long extra_jiffies)
218{
219 __ip_ct_refresh_acct(ct, ctinfo, skb, extra_jiffies, 1);
220}
221
1da177e4 222/* Refresh conntrack for this many jiffies */
1dfbab59
HW
223static inline void ip_ct_refresh(struct ip_conntrack *ct,
224 const struct sk_buff *skb,
225 unsigned long extra_jiffies)
226{
227 __ip_ct_refresh_acct(ct, 0, skb, extra_jiffies, 0);
228}
1da177e4
LT
229
230/* These are for NAT. Icky. */
231/* Update TCP window tracking data when NAT mangles the packet */
232extern void ip_conntrack_tcp_update(struct sk_buff *skb,
233 struct ip_conntrack *conntrack,
234 enum ip_conntrack_dir dir);
235
236/* Call me when a conntrack is destroyed. */
237extern void (*ip_conntrack_destroyed)(struct ip_conntrack *conntrack);
238
239/* Fake conntrack entry for untracked connections */
240extern struct ip_conntrack ip_conntrack_untracked;
241
242/* Returns new sk_buff, or NULL */
243struct sk_buff *
244ip_ct_gather_frags(struct sk_buff *skb, u_int32_t user);
245
246/* Iterate over all conntracks: if iter returns true, it's deleted. */
247extern void
248ip_ct_iterate_cleanup(int (*iter)(struct ip_conntrack *i, void *data),
249 void *data);
250
080774a2
HW
251extern struct ip_conntrack_helper *
252__ip_conntrack_helper_find_byname(const char *);
253extern struct ip_conntrack_helper *
254ip_conntrack_helper_find_get(const struct ip_conntrack_tuple *tuple);
255extern void ip_conntrack_helper_put(struct ip_conntrack_helper *helper);
256
257extern struct ip_conntrack_protocol *
258__ip_conntrack_proto_find(u_int8_t protocol);
259extern struct ip_conntrack_protocol *
260ip_conntrack_proto_find_get(u_int8_t protocol);
261extern void ip_conntrack_proto_put(struct ip_conntrack_protocol *proto);
262
263extern void ip_ct_remove_expectations(struct ip_conntrack *ct);
264
265extern struct ip_conntrack *ip_conntrack_alloc(struct ip_conntrack_tuple *,
266 struct ip_conntrack_tuple *);
267
268extern void ip_conntrack_free(struct ip_conntrack *ct);
269
270extern void ip_conntrack_hash_insert(struct ip_conntrack *ct);
271
272extern struct ip_conntrack_expect *
273__ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);
274
275extern struct ip_conntrack_expect *
a41bc002 276ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);
080774a2
HW
277
278extern struct ip_conntrack_tuple_hash *
279__ip_conntrack_find(const struct ip_conntrack_tuple *tuple,
280 const struct ip_conntrack *ignored_conntrack);
281
282extern void ip_conntrack_flush(void);
283
1da177e4
LT
284/* It's confirmed if it is, or has been in the hash table. */
285static inline int is_confirmed(struct ip_conntrack *ct)
286{
287 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
288}
289
ac3247ba
HW
290static inline int is_dying(struct ip_conntrack *ct)
291{
292 return test_bit(IPS_DYING_BIT, &ct->status);
293}
294
1da177e4
LT
295extern unsigned int ip_conntrack_htable_size;
296
1da177e4
LT
297#define CONNTRACK_STAT_INC(count) (__get_cpu_var(ip_conntrack_stat).count++)
298
ac3247ba
HW
299#ifdef CONFIG_IP_NF_CONNTRACK_EVENTS
300#include <linux/notifier.h>
a86888b9 301#include <linux/interrupt.h>
ac3247ba
HW
302
303struct ip_conntrack_ecache {
304 struct ip_conntrack *ct;
305 unsigned int events;
306};
307DECLARE_PER_CPU(struct ip_conntrack_ecache, ip_conntrack_ecache);
308
309#define CONNTRACK_ECACHE(x) (__get_cpu_var(ip_conntrack_ecache).x)
310
e041c683
AS
311extern struct atomic_notifier_head ip_conntrack_chain;
312extern struct atomic_notifier_head ip_conntrack_expect_chain;
ac3247ba
HW
313
314static inline int ip_conntrack_register_notifier(struct notifier_block *nb)
315{
e041c683 316 return atomic_notifier_chain_register(&ip_conntrack_chain, nb);
ac3247ba
HW
317}
318
319static inline int ip_conntrack_unregister_notifier(struct notifier_block *nb)
320{
e041c683 321 return atomic_notifier_chain_unregister(&ip_conntrack_chain, nb);
ac3247ba
HW
322}
323
324static inline int
325ip_conntrack_expect_register_notifier(struct notifier_block *nb)
326{
e041c683 327 return atomic_notifier_chain_register(&ip_conntrack_expect_chain, nb);
ac3247ba
HW
328}
329
330static inline int
331ip_conntrack_expect_unregister_notifier(struct notifier_block *nb)
332{
e041c683
AS
333 return atomic_notifier_chain_unregister(&ip_conntrack_expect_chain,
334 nb);
ac3247ba
HW
335}
336
a86888b9
PM
337extern void ip_ct_deliver_cached_events(const struct ip_conntrack *ct);
338extern void __ip_ct_event_cache_init(struct ip_conntrack *ct);
339
ac3247ba
HW
340static inline void
341ip_conntrack_event_cache(enum ip_conntrack_events event,
342 const struct sk_buff *skb)
343{
a86888b9
PM
344 struct ip_conntrack *ct = (struct ip_conntrack *)skb->nfct;
345 struct ip_conntrack_ecache *ecache;
346
347 local_bh_disable();
348 ecache = &__get_cpu_var(ip_conntrack_ecache);
349 if (ct != ecache->ct)
350 __ip_ct_event_cache_init(ct);
ac3247ba 351 ecache->events |= event;
a86888b9 352 local_bh_enable();
ac3247ba
HW
353}
354
ac3247ba
HW
355static inline void ip_conntrack_event(enum ip_conntrack_events event,
356 struct ip_conntrack *ct)
357{
358 if (is_confirmed(ct) && !is_dying(ct))
e041c683 359 atomic_notifier_call_chain(&ip_conntrack_chain, event, ct);
ac3247ba
HW
360}
361
362static inline void
363ip_conntrack_expect_event(enum ip_conntrack_expect_events event,
364 struct ip_conntrack_expect *exp)
365{
e041c683 366 atomic_notifier_call_chain(&ip_conntrack_expect_chain, event, exp);
ac3247ba
HW
367}
368#else /* CONFIG_IP_NF_CONNTRACK_EVENTS */
369static inline void ip_conntrack_event_cache(enum ip_conntrack_events event,
370 const struct sk_buff *skb) {}
371static inline void ip_conntrack_event(enum ip_conntrack_events event,
372 struct ip_conntrack *ct) {}
a86888b9 373static inline void ip_ct_deliver_cached_events(const struct ip_conntrack *ct) {}
ac3247ba
HW
374static inline void
375ip_conntrack_expect_event(enum ip_conntrack_expect_events event,
376 struct ip_conntrack_expect *exp) {}
377#endif /* CONFIG_IP_NF_CONNTRACK_EVENTS */
378
1da177e4
LT
379#ifdef CONFIG_IP_NF_NAT_NEEDED
380static inline int ip_nat_initialized(struct ip_conntrack *conntrack,
381 enum ip_nat_manip_type manip)
382{
383 if (manip == IP_NAT_MANIP_SRC)
384 return test_bit(IPS_SRC_NAT_DONE_BIT, &conntrack->status);
385 return test_bit(IPS_DST_NAT_DONE_BIT, &conntrack->status);
386}
387#endif /* CONFIG_IP_NF_NAT_NEEDED */
388
389#endif /* __KERNEL__ */
390#endif /* _IP_CONNTRACK_H */