blob: 7f8fc5d123c550e437be2279039ea5d4f4bd6d43 [file] [log] [blame]
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -07001#ifndef _NF_CONNTRACK_EXTEND_H
2#define _NF_CONNTRACK_EXTEND_H
3
4#include <net/netfilter/nf_conntrack.h>
5
6enum nf_ct_ext_id
7{
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -07008 NF_CT_EXT_HELPER,
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -07009 NF_CT_EXT_NAT,
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070010 NF_CT_EXT_ACCT,
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020011 NF_CT_EXT_ECACHE,
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070012 NF_CT_EXT_NUM,
13};
14
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -070015#define NF_CT_EXT_HELPER_TYPE struct nf_conn_help
Yasuyuki Kozakai2d59e5c2007-07-07 22:24:28 -070016#define NF_CT_EXT_NAT_TYPE struct nf_conn_nat
Krzysztof Piotr Oledzki58401572008-07-21 10:01:34 -070017#define NF_CT_EXT_ACCT_TYPE struct nf_conn_counter
Pablo Neira Ayusoa0891aa2009-06-13 12:26:29 +020018#define NF_CT_EXT_ECACHE_TYPE struct nf_conntrack_ecache
Yasuyuki Kozakaiceceae12007-07-07 22:23:42 -070019
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070020/* Extensions: optional stuff which isn't permanently in struct. */
21struct nf_ct_ext {
Patrick McHardy68b80f12008-06-17 15:51:47 -070022 struct rcu_head rcu;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070023 u8 offset[NF_CT_EXT_NUM];
24 u8 len;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070025 char data[0];
26};
27
28static inline int nf_ct_ext_exist(const struct nf_conn *ct, u8 id)
29{
30 return (ct->ext && ct->ext->offset[id]);
31}
32
33static inline void *__nf_ct_ext_find(const struct nf_conn *ct, u8 id)
34{
35 if (!nf_ct_ext_exist(ct, id))
36 return NULL;
37
38 return (void *)ct->ext + ct->ext->offset[id];
39}
40#define nf_ct_ext_find(ext, id) \
41 ((id##_TYPE *)__nf_ct_ext_find((ext), (id)))
42
43/* Destroy all relationships */
44extern void __nf_ct_ext_destroy(struct nf_conn *ct);
45static inline void nf_ct_ext_destroy(struct nf_conn *ct)
46{
47 if (ct->ext)
48 __nf_ct_ext_destroy(ct);
49}
50
51/* Free operation. If you want to free a object referred from private area,
52 * please implement __nf_ct_ext_free() and call it.
53 */
54static inline void nf_ct_ext_free(struct nf_conn *ct)
55{
56 if (ct->ext)
57 kfree(ct->ext);
58}
59
60/* Add this type, returns pointer to data or NULL. */
61void *
62__nf_ct_ext_add(struct nf_conn *ct, enum nf_ct_ext_id id, gfp_t gfp);
63#define nf_ct_ext_add(ct, id, gfp) \
64 ((id##_TYPE *)__nf_ct_ext_add((ct), (id), (gfp)))
65
66#define NF_CT_EXT_F_PREALLOC 0x0001
67
68struct nf_ct_ext_type
69{
70 /* Destroys relationships (can be NULL). */
71 void (*destroy)(struct nf_conn *ct);
72 /* Called when realloacted (can be NULL).
73 Contents has already been moved. */
Patrick McHardy86577c62008-02-07 17:56:34 -080074 void (*move)(void *new, void *old);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070075
76 enum nf_ct_ext_id id;
77
78 unsigned int flags;
79
80 /* Length and min alignment. */
81 u8 len;
82 u8 align;
83 /* initial size of nf_ct_ext. */
84 u8 alloc_size;
85};
86
87int nf_ct_extend_register(struct nf_ct_ext_type *type);
88void nf_ct_extend_unregister(struct nf_ct_ext_type *type);
89#endif /* _NF_CONNTRACK_EXTEND_H */