[NETFILTER]: Fix whitespace errors
[linux-2.6-block.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
10#include <linux/init.h>
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/skbuff.h>
2e4e6a17
HW
14#include <linux/netfilter/x_tables.h>
15#include <linux/netfilter/xt_string.h>
7567662b
PNA
16#include <linux/textsearch.h>
17
18MODULE_AUTHOR("Pablo Neira Ayuso <pablo@eurodev.net>");
19MODULE_DESCRIPTION("IP tables string match module");
20MODULE_LICENSE("GPL");
2e4e6a17
HW
21MODULE_ALIAS("ipt_string");
22MODULE_ALIAS("ip6t_string");
7567662b
PNA
23
24static int match(const struct sk_buff *skb,
25 const struct net_device *in,
26 const struct net_device *out,
c4986734 27 const struct xt_match *match,
7567662b
PNA
28 const void *matchinfo,
29 int offset,
2e4e6a17 30 unsigned int protoff,
7567662b
PNA
31 int *hotdrop)
32{
3e72b2fe 33 const struct xt_string_info *conf = matchinfo;
7567662b 34 struct ts_state state;
7567662b
PNA
35
36 memset(&state, 0, sizeof(struct ts_state));
37
601e68e1
YH
38 return (skb_find_text((struct sk_buff *)skb, conf->from_offset,
39 conf->to_offset, conf->config, &state)
97c802a1 40 != UINT_MAX) ^ conf->invert;
7567662b
PNA
41}
42
2e4e6a17 43#define STRING_TEXT_PRIV(m) ((struct xt_string_info *) m)
7567662b
PNA
44
45static int checkentry(const char *tablename,
2e4e6a17 46 const void *ip,
c4986734 47 const struct xt_match *match,
7567662b 48 void *matchinfo,
7567662b
PNA
49 unsigned int hook_mask)
50{
2e4e6a17 51 struct xt_string_info *conf = matchinfo;
7567662b
PNA
52 struct ts_config *ts_conf;
53
7567662b
PNA
54 /* Damn, can't handle this case properly with iptables... */
55 if (conf->from_offset > conf->to_offset)
56 return 0;
3ab72088 57 if (conf->algo[XT_STRING_MAX_ALGO_NAME_SIZE - 1] != '\0')
601e68e1 58 return 0;
3ab72088
PM
59 if (conf->patlen > XT_STRING_MAX_PATTERN_SIZE)
60 return 0;
7567662b
PNA
61 ts_conf = textsearch_prepare(conf->algo, conf->pattern, conf->patlen,
62 GFP_KERNEL, TS_AUTOLOAD);
63 if (IS_ERR(ts_conf))
64 return 0;
65
66 conf->config = ts_conf;
67
68 return 1;
69}
70
efa74165 71static void destroy(const struct xt_match *match, void *matchinfo)
7567662b
PNA
72{
73 textsearch_destroy(STRING_TEXT_PRIV(matchinfo)->config);
74}
75
4470bbc7
PM
76static struct xt_match xt_string_match[] = {
77 {
78 .name = "string",
79 .family = AF_INET,
80 .checkentry = checkentry,
81 .match = match,
82 .destroy = destroy,
83 .matchsize = sizeof(struct xt_string_info),
84 .me = THIS_MODULE
85 },
86 {
87 .name = "string",
88 .family = AF_INET6,
89 .checkentry = checkentry,
90 .match = match,
91 .destroy = destroy,
92 .matchsize = sizeof(struct xt_string_info),
93 .me = THIS_MODULE
94 },
7567662b
PNA
95};
96
65b4b4e8 97static int __init xt_string_init(void)
7567662b 98{
4470bbc7 99 return xt_register_matches(xt_string_match, ARRAY_SIZE(xt_string_match));
7567662b
PNA
100}
101
65b4b4e8 102static void __exit xt_string_fini(void)
7567662b 103{
4470bbc7 104 xt_unregister_matches(xt_string_match, ARRAY_SIZE(xt_string_match));
7567662b
PNA
105}
106
65b4b4e8
AM
107module_init(xt_string_init);
108module_exit(xt_string_fini);