Merge tag 'seccomp-v4.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/kees...
[deliverable/linux.git] / include / net / netfilter / nf_conntrack_helper.h
CommitLineData
9fb9cbb1
YK
1/*
2 * connection tracking helpers.
3 *
4 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
5 * - generalize L3 protocol dependent part.
6 *
7 * Derived from include/linux/netfiter_ipv4/ip_conntrack_helper.h
8 */
9
10#ifndef _NF_CONNTRACK_HELPER_H
11#define _NF_CONNTRACK_HELPER_H
12#include <net/netfilter/nf_conntrack.h>
ceceae1b 13#include <net/netfilter/nf_conntrack_extend.h>
1afc5679 14#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1
YK
15
16struct module;
17
12f7a505
PNA
18enum nf_ct_helper_flags {
19 NF_CT_HELPER_F_USERSPACE = (1 << 0),
20 NF_CT_HELPER_F_CONFIGURED = (1 << 1),
21};
22
af9d32ad
HE
23#define NF_CT_HELPER_NAME_LEN 16
24
fd2c3ef7 25struct nf_conntrack_helper {
b8a7fe6c 26 struct hlist_node hnode; /* Internal use. */
9fb9cbb1 27
3a8fc53a 28 char name[NF_CT_HELPER_NAME_LEN]; /* name of the module */
9fb9cbb1 29 struct module *me; /* pointer to self */
6002f266 30 const struct nf_conntrack_expect_policy *expect_policy;
9fb9cbb1 31
1afc5679
PNA
32 /* length of internal data, ie. sizeof(struct nf_ct_*_master) */
33 size_t data_len;
34
d4156e8c 35 /* Tuple of things we will help (compared against server response) */
9fb9cbb1 36 struct nf_conntrack_tuple tuple;
d4156e8c 37
9fb9cbb1
YK
38 /* Function to call when data passes; return verdict, or -1 to
39 invalidate. */
3db05fea 40 int (*help)(struct sk_buff *skb,
9fb9cbb1
YK
41 unsigned int protoff,
42 struct nf_conn *ct,
43 enum ip_conntrack_info conntrackinfo);
c1d10adb 44
f09943fe
PM
45 void (*destroy)(struct nf_conn *ct);
46
ae243bee 47 int (*from_nlattr)(struct nlattr *attr, struct nf_conn *ct);
fdf70832 48 int (*to_nlattr)(struct sk_buff *skb, const struct nf_conn *ct);
6002f266 49 unsigned int expect_class_max;
12f7a505
PNA
50
51 unsigned int flags;
52 unsigned int queue_num; /* For user-space helpers. */
9fb9cbb1
YK
53};
54
4e77be46
JP
55struct nf_conntrack_helper *__nf_conntrack_helper_find(const char *name,
56 u16 l3num, u8 protonum);
7e5d03bb 57
4e77be46
JP
58struct nf_conntrack_helper *nf_conntrack_helper_try_module_get(const char *name,
59 u16 l3num,
60 u8 protonum);
82de0be6
GF
61void nf_ct_helper_init(struct nf_conntrack_helper *helper,
62 u16 l3num, u16 protonum, const char *name,
63 u16 default_port, u16 spec_port, u32 id,
64 const struct nf_conntrack_expect_policy *exp_pol,
65 u32 expect_class_max, u32 data_len,
66 int (*help)(struct sk_buff *skb, unsigned int protoff,
67 struct nf_conn *ct,
68 enum ip_conntrack_info ctinfo),
69 int (*from_nlattr)(struct nlattr *attr,
70 struct nf_conn *ct),
71 struct module *module);
84f3bb9a 72
4e77be46
JP
73int nf_conntrack_helper_register(struct nf_conntrack_helper *);
74void nf_conntrack_helper_unregister(struct nf_conntrack_helper *);
9fb9cbb1 75
82de0be6
GF
76int nf_conntrack_helpers_register(struct nf_conntrack_helper *, unsigned int);
77void nf_conntrack_helpers_unregister(struct nf_conntrack_helper *,
78 unsigned int);
79
4e77be46
JP
80struct nf_conn_help *nf_ct_helper_ext_add(struct nf_conn *ct,
81 struct nf_conntrack_helper *helper,
82 gfp_t gfp);
b560580a 83
4e77be46
JP
84int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl,
85 gfp_t flags);
226c0c0e 86
4e77be46 87void nf_ct_helper_destroy(struct nf_conn *ct);
9858a3ae 88
ceceae1b
YK
89static inline struct nf_conn_help *nfct_help(const struct nf_conn *ct)
90{
91 return nf_ct_ext_find(ct, NF_CT_EXT_HELPER);
92}
b334aadc 93
1afc5679
PNA
94static inline void *nfct_help_data(const struct nf_conn *ct)
95{
96 struct nf_conn_help *help;
97
98 help = nf_ct_ext_find(ct, NF_CT_EXT_HELPER);
99
100 return (void *)help->data;
101}
102
4e77be46
JP
103int nf_conntrack_helper_pernet_init(struct net *net);
104void nf_conntrack_helper_pernet_fini(struct net *net);
5e615b22 105
4e77be46
JP
106int nf_conntrack_helper_init(void);
107void nf_conntrack_helper_fini(void);
b334aadc 108
4e77be46
JP
109int nf_conntrack_broadcast_help(struct sk_buff *skb, unsigned int protoff,
110 struct nf_conn *ct,
111 enum ip_conntrack_info ctinfo,
112 unsigned int timeout);
93557f53 113
544d5c7d
PNA
114struct nf_ct_helper_expectfn {
115 struct list_head head;
116 const char *name;
117 void (*expectfn)(struct nf_conn *ct, struct nf_conntrack_expect *exp);
118};
119
b20ab9cc
PNA
120__printf(3,4)
121void nf_ct_helper_log(struct sk_buff *skb, const struct nf_conn *ct,
122 const char *fmt, ...);
123
544d5c7d
PNA
124void nf_ct_helper_expectfn_register(struct nf_ct_helper_expectfn *n);
125void nf_ct_helper_expectfn_unregister(struct nf_ct_helper_expectfn *n);
126struct nf_ct_helper_expectfn *
127nf_ct_helper_expectfn_find_by_name(const char *name);
128struct nf_ct_helper_expectfn *
129nf_ct_helper_expectfn_find_by_symbol(const void *symbol);
130
12f7a505
PNA
131extern struct hlist_head *nf_ct_helper_hash;
132extern unsigned int nf_ct_helper_hsize;
133
9fb9cbb1 134#endif /*_NF_CONNTRACK_HELPER_H*/
This page took 0.789204 seconds and 5 git commands to generate.