1 /* String matching match for iptables
3 * (C) 2005 Pablo Neira Ayuso <pablo@eurodev.net>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/gfp.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/skbuff.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter/xt_string.h>
17 #include <linux/textsearch.h>
19 MODULE_AUTHOR("Pablo Neira Ayuso <pablo@eurodev.net>");
20 MODULE_DESCRIPTION("Xtables: string-based matching");
21 MODULE_LICENSE("GPL");
22 MODULE_ALIAS("ipt_string");
23 MODULE_ALIAS("ip6t_string");
26 string_mt(const struct sk_buff
*skb
, struct xt_action_param
*par
)
28 const struct xt_string_info
*conf
= par
->matchinfo
;
29 struct ts_state state
;
32 memset(&state
, 0, sizeof(struct ts_state
));
33 invert
= conf
->u
.v1
.flags
& XT_STRING_FLAG_INVERT
;
35 return (skb_find_text((struct sk_buff
*)skb
, conf
->from_offset
,
36 conf
->to_offset
, conf
->config
, &state
)
37 != UINT_MAX
) ^ invert
;
40 #define STRING_TEXT_PRIV(m) ((struct xt_string_info *)(m))
42 static int string_mt_check(const struct xt_mtchk_param
*par
)
44 struct xt_string_info
*conf
= par
->matchinfo
;
45 struct ts_config
*ts_conf
;
46 int flags
= TS_AUTOLOAD
;
48 /* Damn, can't handle this case properly with iptables... */
49 if (conf
->from_offset
> conf
->to_offset
)
51 if (conf
->algo
[XT_STRING_MAX_ALGO_NAME_SIZE
- 1] != '\0')
53 if (conf
->patlen
> XT_STRING_MAX_PATTERN_SIZE
)
55 if (conf
->u
.v1
.flags
&
56 ~(XT_STRING_FLAG_IGNORECASE
| XT_STRING_FLAG_INVERT
))
58 if (conf
->u
.v1
.flags
& XT_STRING_FLAG_IGNORECASE
)
59 flags
|= TS_IGNORECASE
;
60 ts_conf
= textsearch_prepare(conf
->algo
, conf
->pattern
, conf
->patlen
,
63 return PTR_ERR(ts_conf
);
65 conf
->config
= ts_conf
;
69 static void string_mt_destroy(const struct xt_mtdtor_param
*par
)
71 textsearch_destroy(STRING_TEXT_PRIV(par
->matchinfo
)->config
);
74 static struct xt_match xt_string_mt_reg __read_mostly
= {
77 .family
= NFPROTO_UNSPEC
,
78 .checkentry
= string_mt_check
,
80 .destroy
= string_mt_destroy
,
81 .matchsize
= sizeof(struct xt_string_info
),
85 static int __init
string_mt_init(void)
87 return xt_register_match(&xt_string_mt_reg
);
90 static void __exit
string_mt_exit(void)
92 xt_unregister_match(&xt_string_mt_reg
);
95 module_init(string_mt_init
);
96 module_exit(string_mt_exit
);