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