netfilter: nf_ct_helper: allocate 16 bytes for the helper and policy names
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / net / netfilter / nf_conntrack_amanda.c
CommitLineData
16958900
PM
1/* Amanda extension for IP connection tracking
2 *
3 * (C) 2002 by Brian J. Murrell <netfilter@interlinx.bc.ca>
4 * based on HW's ip_conntrack_irc.c as well as other modules
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/textsearch.h>
15#include <linux/skbuff.h>
16#include <linux/in.h>
17#include <linux/udp.h>
1863f096 18#include <linux/netfilter.h>
5a0e3ad6 19#include <linux/gfp.h>
16958900
PM
20
21#include <net/netfilter/nf_conntrack.h>
22#include <net/netfilter/nf_conntrack_expect.h>
23#include <net/netfilter/nf_conntrack_ecache.h>
24#include <net/netfilter/nf_conntrack_helper.h>
25#include <linux/netfilter/nf_conntrack_amanda.h>
26
27static unsigned int master_timeout __read_mostly = 300;
28static char *ts_algo = "kmp";
29
30MODULE_AUTHOR("Brian J. Murrell <netfilter@interlinx.bc.ca>");
31MODULE_DESCRIPTION("Amanda connection tracking module");
32MODULE_LICENSE("GPL");
33MODULE_ALIAS("ip_conntrack_amanda");
4dc06f96 34MODULE_ALIAS_NFCT_HELPER("amanda");
16958900
PM
35
36module_param(master_timeout, uint, 0600);
37MODULE_PARM_DESC(master_timeout, "timeout for the master connection");
38module_param(ts_algo, charp, 0400);
39MODULE_PARM_DESC(ts_algo, "textsearch algorithm to use (default kmp)");
40
3db05fea 41unsigned int (*nf_nat_amanda_hook)(struct sk_buff *skb,
16958900
PM
42 enum ip_conntrack_info ctinfo,
43 unsigned int matchoff,
44 unsigned int matchlen,
45 struct nf_conntrack_expect *exp)
46 __read_mostly;
47EXPORT_SYMBOL_GPL(nf_nat_amanda_hook);
48
49enum amanda_strings {
50 SEARCH_CONNECT,
51 SEARCH_NEWLINE,
52 SEARCH_DATA,
53 SEARCH_MESG,
54 SEARCH_INDEX,
55};
56
57static struct {
58c0fb0d 58 const char *string;
16958900
PM
59 size_t len;
60 struct ts_config *ts;
61} search[] __read_mostly = {
62 [SEARCH_CONNECT] = {
63 .string = "CONNECT ",
64 .len = 8,
65 },
66 [SEARCH_NEWLINE] = {
67 .string = "\n",
68 .len = 1,
69 },
70 [SEARCH_DATA] = {
71 .string = "DATA ",
72 .len = 5,
73 },
74 [SEARCH_MESG] = {
75 .string = "MESG ",
76 .len = 5,
77 },
78 [SEARCH_INDEX] = {
79 .string = "INDEX ",
80 .len = 6,
81 },
82};
83
3db05fea 84static int amanda_help(struct sk_buff *skb,
16958900
PM
85 unsigned int protoff,
86 struct nf_conn *ct,
87 enum ip_conntrack_info ctinfo)
88{
89 struct ts_state ts;
90 struct nf_conntrack_expect *exp;
91 struct nf_conntrack_tuple *tuple;
92 unsigned int dataoff, start, stop, off, i;
93 char pbuf[sizeof("65535")], *tmp;
94 u_int16_t len;
95 __be16 port;
16958900
PM
96 int ret = NF_ACCEPT;
97 typeof(nf_nat_amanda_hook) nf_nat_amanda;
98
99 /* Only look at packets from the Amanda server */
100 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL)
101 return NF_ACCEPT;
102
103 /* increase the UDP timeout of the master connection as replies from
104 * Amanda clients to the server can be quite delayed */
3db05fea 105 nf_ct_refresh(ct, skb, master_timeout * HZ);
16958900
PM
106
107 /* No data? */
108 dataoff = protoff + sizeof(struct udphdr);
3db05fea 109 if (dataoff >= skb->len) {
e87cc472 110 net_err_ratelimited("amanda_help: skblen = %u\n", skb->len);
16958900
PM
111 return NF_ACCEPT;
112 }
113
114 memset(&ts, 0, sizeof(ts));
3db05fea 115 start = skb_find_text(skb, dataoff, skb->len,
16958900
PM
116 search[SEARCH_CONNECT].ts, &ts);
117 if (start == UINT_MAX)
118 goto out;
119 start += dataoff + search[SEARCH_CONNECT].len;
120
121 memset(&ts, 0, sizeof(ts));
3db05fea 122 stop = skb_find_text(skb, start, skb->len,
16958900
PM
123 search[SEARCH_NEWLINE].ts, &ts);
124 if (stop == UINT_MAX)
125 goto out;
126 stop += start;
127
128 for (i = SEARCH_DATA; i <= SEARCH_INDEX; i++) {
129 memset(&ts, 0, sizeof(ts));
3db05fea 130 off = skb_find_text(skb, start, stop, search[i].ts, &ts);
16958900
PM
131 if (off == UINT_MAX)
132 continue;
133 off += start + search[i].len;
134
135 len = min_t(unsigned int, sizeof(pbuf) - 1, stop - off);
3db05fea 136 if (skb_copy_bits(skb, off, pbuf, len))
16958900
PM
137 break;
138 pbuf[len] = '\0';
139
140 port = htons(simple_strtoul(pbuf, &tmp, 10));
141 len = tmp - pbuf;
142 if (port == 0 || len > 5)
143 break;
144
6823645d 145 exp = nf_ct_expect_alloc(ct);
16958900
PM
146 if (exp == NULL) {
147 ret = NF_DROP;
148 goto out;
149 }
150 tuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
5e8fbe2a
PM
151 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
152 nf_ct_l3num(ct),
6002f266 153 &tuple->src.u3, &tuple->dst.u3,
6823645d 154 IPPROTO_TCP, NULL, &port);
16958900
PM
155
156 nf_nat_amanda = rcu_dereference(nf_nat_amanda_hook);
157 if (nf_nat_amanda && ct->status & IPS_NAT_MASK)
3db05fea 158 ret = nf_nat_amanda(skb, ctinfo, off - dataoff,
16958900 159 len, exp);
6823645d 160 else if (nf_ct_expect_related(exp) != 0)
16958900 161 ret = NF_DROP;
6823645d 162 nf_ct_expect_put(exp);
16958900
PM
163 }
164
165out:
166 return ret;
167}
168
6002f266
PM
169static const struct nf_conntrack_expect_policy amanda_exp_policy = {
170 .max_expected = 3,
171 .timeout = 180,
172};
173
16958900
PM
174static struct nf_conntrack_helper amanda_helper[2] __read_mostly = {
175 {
176 .name = "amanda",
16958900
PM
177 .me = THIS_MODULE,
178 .help = amanda_help,
179 .tuple.src.l3num = AF_INET,
09640e63 180 .tuple.src.u.udp.port = cpu_to_be16(10080),
16958900 181 .tuple.dst.protonum = IPPROTO_UDP,
6002f266 182 .expect_policy = &amanda_exp_policy,
16958900
PM
183 },
184 {
185 .name = "amanda",
16958900
PM
186 .me = THIS_MODULE,
187 .help = amanda_help,
188 .tuple.src.l3num = AF_INET6,
09640e63 189 .tuple.src.u.udp.port = cpu_to_be16(10080),
16958900 190 .tuple.dst.protonum = IPPROTO_UDP,
6002f266 191 .expect_policy = &amanda_exp_policy,
16958900
PM
192 },
193};
194
195static void __exit nf_conntrack_amanda_fini(void)
196{
197 int i;
198
199 nf_conntrack_helper_unregister(&amanda_helper[0]);
200 nf_conntrack_helper_unregister(&amanda_helper[1]);
201 for (i = 0; i < ARRAY_SIZE(search); i++)
202 textsearch_destroy(search[i].ts);
203}
204
205static int __init nf_conntrack_amanda_init(void)
206{
207 int ret, i;
208
16958900
PM
209 for (i = 0; i < ARRAY_SIZE(search); i++) {
210 search[i].ts = textsearch_prepare(ts_algo, search[i].string,
211 search[i].len,
212 GFP_KERNEL, TS_AUTOLOAD);
c764c9ad
AM
213 if (IS_ERR(search[i].ts)) {
214 ret = PTR_ERR(search[i].ts);
16958900 215 goto err1;
c764c9ad 216 }
16958900
PM
217 }
218 ret = nf_conntrack_helper_register(&amanda_helper[0]);
219 if (ret < 0)
220 goto err1;
221 ret = nf_conntrack_helper_register(&amanda_helper[1]);
222 if (ret < 0)
223 goto err2;
224 return 0;
225
226err2:
227 nf_conntrack_helper_unregister(&amanda_helper[0]);
228err1:
c764c9ad
AM
229 while (--i >= 0)
230 textsearch_destroy(search[i].ts);
231
16958900
PM
232 return ret;
233}
234
235module_init(nf_conntrack_amanda_init);
236module_exit(nf_conntrack_amanda_fini);