Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[deliverable/linux.git] / net / netfilter / xt_string.c
CommitLineData
7567662b 1/* String matching match for iptables
601e68e1 2 *
7567662b
PNA
3 * (C) 2005 Pablo Neira Ayuso <pablo@eurodev.net>
4 *
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.
8 */
9
5a0e3ad6 10#include <linux/gfp.h>
7567662b
PNA
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/skbuff.h>
2e4e6a17
HW
15#include <linux/netfilter/x_tables.h>
16#include <linux/netfilter/xt_string.h>
7567662b
PNA
17#include <linux/textsearch.h>
18
19MODULE_AUTHOR("Pablo Neira Ayuso <pablo@eurodev.net>");
2ae15b64 20MODULE_DESCRIPTION("Xtables: string-based matching");
7567662b 21MODULE_LICENSE("GPL");
2e4e6a17
HW
22MODULE_ALIAS("ipt_string");
23MODULE_ALIAS("ip6t_string");
7567662b 24
d3c5ee6d 25static bool
62fc8051 26string_mt(const struct sk_buff *skb, struct xt_action_param *par)
7567662b 27{
f7108a20 28 const struct xt_string_info *conf = par->matchinfo;
7567662b 29 struct ts_state state;
d879e19e 30 bool invert;
7567662b 31
d879e19e 32 invert = conf->u.v1.flags & XT_STRING_FLAG_INVERT;
4ad3f261 33
601e68e1
YH
34 return (skb_find_text((struct sk_buff *)skb, conf->from_offset,
35 conf->to_offset, conf->config, &state)
4ad3f261 36 != UINT_MAX) ^ invert;
7567662b
PNA
37}
38
e79ec50b 39#define STRING_TEXT_PRIV(m) ((struct xt_string_info *)(m))
7567662b 40
b0f38452 41static int string_mt_check(const struct xt_mtchk_param *par)
7567662b 42{
9b4fce7a 43 struct xt_string_info *conf = par->matchinfo;
7567662b 44 struct ts_config *ts_conf;
4ad3f261 45 int flags = TS_AUTOLOAD;
7567662b 46
7567662b
PNA
47 /* Damn, can't handle this case properly with iptables... */
48 if (conf->from_offset > conf->to_offset)
bd414ee6 49 return -EINVAL;
3ab72088 50 if (conf->algo[XT_STRING_MAX_ALGO_NAME_SIZE - 1] != '\0')
bd414ee6 51 return -EINVAL;
3ab72088 52 if (conf->patlen > XT_STRING_MAX_PATTERN_SIZE)
bd414ee6 53 return -EINVAL;
d879e19e
JE
54 if (conf->u.v1.flags &
55 ~(XT_STRING_FLAG_IGNORECASE | XT_STRING_FLAG_INVERT))
56 return -EINVAL;
57 if (conf->u.v1.flags & XT_STRING_FLAG_IGNORECASE)
58 flags |= TS_IGNORECASE;
7567662b 59 ts_conf = textsearch_prepare(conf->algo, conf->pattern, conf->patlen,
4ad3f261 60 GFP_KERNEL, flags);
7567662b 61 if (IS_ERR(ts_conf))
4a5a5c73 62 return PTR_ERR(ts_conf);
7567662b
PNA
63
64 conf->config = ts_conf;
bd414ee6 65 return 0;
7567662b
PNA
66}
67
6be3d859 68static void string_mt_destroy(const struct xt_mtdtor_param *par)
7567662b 69{
6be3d859 70 textsearch_destroy(STRING_TEXT_PRIV(par->matchinfo)->config);
7567662b
PNA
71}
72
d879e19e
JE
73static struct xt_match xt_string_mt_reg __read_mostly = {
74 .name = "string",
75 .revision = 1,
76 .family = NFPROTO_UNSPEC,
77 .checkentry = string_mt_check,
78 .match = string_mt,
79 .destroy = string_mt_destroy,
80 .matchsize = sizeof(struct xt_string_info),
81 .me = THIS_MODULE,
7567662b
PNA
82};
83
d3c5ee6d 84static int __init string_mt_init(void)
7567662b 85{
d879e19e 86 return xt_register_match(&xt_string_mt_reg);
7567662b
PNA
87}
88
d3c5ee6d 89static void __exit string_mt_exit(void)
7567662b 90{
d879e19e 91 xt_unregister_match(&xt_string_mt_reg);
7567662b
PNA
92}
93
d3c5ee6d
JE
94module_init(string_mt_init);
95module_exit(string_mt_exit);
This page took 0.694502 seconds and 5 git commands to generate.