allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / netfilter / nf_conntrack_irc.c
blob1b7d8c1d965ed76c80655832bd1b5dd373dd72a0
1 /* IRC extension for IP connection tracking, Version 1.21
2 * (C) 2000-2002 by Harald Welte <laforge@gnumonks.org>
3 * based on RR's ip_conntrack_ftp.c
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
11 #include <linux/module.h>
12 #include <linux/moduleparam.h>
13 #include <linux/skbuff.h>
14 #include <linux/in.h>
15 #include <linux/tcp.h>
16 #include <linux/netfilter.h>
18 #include <net/netfilter/nf_conntrack.h>
19 #include <net/netfilter/nf_conntrack_expect.h>
20 #include <net/netfilter/nf_conntrack_helper.h>
21 #include <linux/netfilter/nf_conntrack_irc.h>
23 #define MAX_PORTS 8
24 static unsigned short ports[MAX_PORTS];
25 static int ports_c;
26 static unsigned int max_dcc_channels = 8;
27 static unsigned int dcc_timeout __read_mostly = 300;
28 /* This is slow, but it's simple. --RR */
29 static char *irc_buffer;
30 static DEFINE_SPINLOCK(irc_buffer_lock);
32 unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
33 enum ip_conntrack_info ctinfo,
34 unsigned int matchoff,
35 unsigned int matchlen,
36 struct nf_conntrack_expect *exp) __read_mostly;
37 EXPORT_SYMBOL_GPL(nf_nat_irc_hook);
39 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
40 MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
41 MODULE_LICENSE("GPL");
42 MODULE_ALIAS("ip_conntrack_irc");
44 module_param_array(ports, ushort, &ports_c, 0400);
45 MODULE_PARM_DESC(ports, "port numbers of IRC servers");
46 module_param(max_dcc_channels, uint, 0400);
47 MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per "
48 "IRC session");
49 module_param(dcc_timeout, uint, 0400);
50 MODULE_PARM_DESC(dcc_timeout, "timeout on for unestablished DCC channels");
52 static const char *dccprotos[] = {
53 "SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
56 #define MINMATCHLEN 5
58 #if 0
59 #define DEBUGP(format, args...) printk(KERN_DEBUG "%s:%s:" format, \
60 __FILE__, __FUNCTION__ , ## args)
61 #else
62 #define DEBUGP(format, args...)
63 #endif
65 /* tries to get the ip_addr and port out of a dcc command
66 * return value: -1 on failure, 0 on success
67 * data pointer to first byte of DCC command data
68 * data_end pointer to last byte of dcc command data
69 * ip returns parsed ip of dcc command
70 * port returns parsed port of dcc command
71 * ad_beg_p returns pointer to first byte of addr data
72 * ad_end_p returns pointer to last byte of addr data
74 static int parse_dcc(char *data, char *data_end, u_int32_t *ip,
75 u_int16_t *port, char **ad_beg_p, char **ad_end_p)
77 /* at least 12: "AAAAAAAA P\1\n" */
78 while (*data++ != ' ')
79 if (data > data_end - 12)
80 return -1;
82 *ad_beg_p = data;
83 *ip = simple_strtoul(data, &data, 10);
85 /* skip blanks between ip and port */
86 while (*data == ' ') {
87 if (data >= data_end)
88 return -1;
89 data++;
92 *port = simple_strtoul(data, &data, 10);
93 *ad_end_p = data;
95 return 0;
98 static int help(struct sk_buff *skb, unsigned int protoff,
99 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
101 unsigned int dataoff;
102 struct tcphdr _tcph, *th;
103 char *data, *data_limit, *ib_ptr;
104 int dir = CTINFO2DIR(ctinfo);
105 struct nf_conntrack_expect *exp;
106 struct nf_conntrack_tuple *tuple;
107 u_int32_t dcc_ip;
108 u_int16_t dcc_port;
109 __be16 port;
110 int i, ret = NF_ACCEPT;
111 char *addr_beg_p, *addr_end_p;
112 typeof(nf_nat_irc_hook) nf_nat_irc;
114 /* If packet is coming from IRC server */
115 if (dir == IP_CT_DIR_REPLY)
116 return NF_ACCEPT;
118 /* Until there's been traffic both ways, don't look in packets. */
119 if (ctinfo != IP_CT_ESTABLISHED &&
120 ctinfo != IP_CT_ESTABLISHED + IP_CT_IS_REPLY)
121 return NF_ACCEPT;
123 /* Not a full tcp header? */
124 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
125 if (th == NULL)
126 return NF_ACCEPT;
128 /* No data? */
129 dataoff = protoff + th->doff*4;
130 if (dataoff >= skb->len)
131 return NF_ACCEPT;
133 spin_lock_bh(&irc_buffer_lock);
134 ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
135 irc_buffer);
136 BUG_ON(ib_ptr == NULL);
138 data = ib_ptr;
139 data_limit = ib_ptr + skb->len - dataoff;
141 /* strlen("\1DCC SENT t AAAAAAAA P\1\n")=24
142 * 5+MINMATCHLEN+strlen("t AAAAAAAA P\1\n")=14 */
143 while (data < data_limit - (19 + MINMATCHLEN)) {
144 if (memcmp(data, "\1DCC ", 5)) {
145 data++;
146 continue;
148 data += 5;
149 /* we have at least (19+MINMATCHLEN)-5 bytes valid data left */
151 DEBUGP("DCC found in master %u.%u.%u.%u:%u %u.%u.%u.%u:%u...\n",
152 NIPQUAD(iph->saddr), ntohs(th->source),
153 NIPQUAD(iph->daddr), ntohs(th->dest));
155 for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
156 if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
157 /* no match */
158 continue;
160 data += strlen(dccprotos[i]);
161 DEBUGP("DCC %s detected\n", dccprotos[i]);
163 /* we have at least
164 * (19+MINMATCHLEN)-5-dccprotos[i].matchlen bytes valid
165 * data left (== 14/13 bytes) */
166 if (parse_dcc((char *)data, data_limit, &dcc_ip,
167 &dcc_port, &addr_beg_p, &addr_end_p)) {
168 DEBUGP("unable to parse dcc command\n");
169 continue;
171 DEBUGP("DCC bound ip/port: %u.%u.%u.%u:%u\n",
172 HIPQUAD(dcc_ip), dcc_port);
174 /* dcc_ip can be the internal OR external (NAT'ed) IP */
175 tuple = &ct->tuplehash[dir].tuple;
176 if (tuple->src.u3.ip != htonl(dcc_ip) &&
177 tuple->dst.u3.ip != htonl(dcc_ip)) {
178 if (net_ratelimit())
179 printk(KERN_WARNING
180 "Forged DCC command from "
181 "%u.%u.%u.%u: %u.%u.%u.%u:%u\n",
182 NIPQUAD(tuple->src.u3.ip),
183 HIPQUAD(dcc_ip), dcc_port);
184 continue;
187 exp = nf_conntrack_expect_alloc(ct);
188 if (exp == NULL) {
189 ret = NF_DROP;
190 goto out;
192 tuple = &ct->tuplehash[!dir].tuple;
193 port = htons(dcc_port);
194 nf_conntrack_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
195 tuple->src.l3num,
196 NULL, &tuple->dst.u3,
197 IPPROTO_TCP, NULL, &port);
199 nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
200 if (nf_nat_irc && ct->status & IPS_NAT_MASK)
201 ret = nf_nat_irc(skb, ctinfo,
202 addr_beg_p - ib_ptr,
203 addr_end_p - addr_beg_p,
204 exp);
205 else if (nf_conntrack_expect_related(exp) != 0)
206 ret = NF_DROP;
207 nf_conntrack_expect_put(exp);
208 goto out;
211 out:
212 spin_unlock_bh(&irc_buffer_lock);
213 return ret;
216 static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
217 static char irc_names[MAX_PORTS][sizeof("irc-65535")] __read_mostly;
218 static struct nf_conntrack_expect_policy irc_exp_policy;
220 static void nf_conntrack_irc_fini(void);
222 static int __init nf_conntrack_irc_init(void)
224 int i, ret;
225 char *tmpname;
227 if (max_dcc_channels < 1) {
228 printk("nf_ct_irc: max_dcc_channels must not be zero\n");
229 return -EINVAL;
232 irc_exp_policy.max_expected = max_dcc_channels;
233 irc_exp_policy.timeout = dcc_timeout;
235 irc_buffer = kmalloc(65536, GFP_KERNEL);
236 if (!irc_buffer)
237 return -ENOMEM;
239 /* If no port given, default to standard irc port */
240 if (ports_c == 0)
241 ports[ports_c++] = IRC_PORT;
243 for (i = 0; i < ports_c; i++) {
244 irc[i].tuple.src.l3num = AF_INET;
245 irc[i].tuple.src.u.tcp.port = htons(ports[i]);
246 irc[i].tuple.dst.protonum = IPPROTO_TCP;
247 irc[i].mask.src.l3num = 0xFFFF;
248 irc[i].mask.src.u.tcp.port = htons(0xFFFF);
249 irc[i].mask.dst.protonum = 0xFF;
250 irc[i].expect_policy = &irc_exp_policy;
251 irc[i].me = THIS_MODULE;
252 irc[i].help = help;
254 tmpname = &irc_names[i][0];
255 if (ports[i] == IRC_PORT)
256 sprintf(tmpname, "irc");
257 else
258 sprintf(tmpname, "irc-%u", i);
259 irc[i].name = tmpname;
261 ret = nf_conntrack_helper_register(&irc[i]);
262 if (ret) {
263 printk("nf_ct_irc: failed to register helper "
264 "for pf: %u port: %u\n",
265 irc[i].tuple.src.l3num, ports[i]);
266 nf_conntrack_irc_fini();
267 return ret;
270 return 0;
273 /* This function is intentionally _NOT_ defined as __exit, because
274 * it is needed by the init function */
275 static void nf_conntrack_irc_fini(void)
277 int i;
279 for (i = 0; i < ports_c; i++)
280 nf_conntrack_helper_unregister(&irc[i]);
281 kfree(irc_buffer);
284 module_init(nf_conntrack_irc_init);
285 module_exit(nf_conntrack_irc_fini);