blob: 8bd98c84f77e7962c55dee04084c8ee05128f1bd [file] [log] [blame]
Patrick McHardy869f37d2006-12-02 22:09:06 -08001/* 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
4 *
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 */
10
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/skbuff.h>
14#include <linux/in.h>
Patrick McHardy0d537782007-07-07 22:39:38 -070015#include <linux/ip.h>
Patrick McHardy869f37d2006-12-02 22:09:06 -080016#include <linux/tcp.h>
17#include <linux/netfilter.h>
18
19#include <net/netfilter/nf_conntrack.h>
20#include <net/netfilter/nf_conntrack_expect.h>
21#include <net/netfilter/nf_conntrack_helper.h>
22#include <linux/netfilter/nf_conntrack_irc.h>
23
24#define MAX_PORTS 8
25static unsigned short ports[MAX_PORTS];
Stephen Hemminger2f0d2f12008-01-31 04:08:10 -080026static unsigned int ports_c;
Patrick McHardy869f37d2006-12-02 22:09:06 -080027static unsigned int max_dcc_channels = 8;
28static unsigned int dcc_timeout __read_mostly = 300;
29/* This is slow, but it's simple. --RR */
30static char *irc_buffer;
31static DEFINE_SPINLOCK(irc_buffer_lock);
32
Herbert Xu3db05fe2007-10-15 00:53:15 -070033unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
Patrick McHardy869f37d2006-12-02 22:09:06 -080034 enum ip_conntrack_info ctinfo,
35 unsigned int matchoff,
36 unsigned int matchlen,
37 struct nf_conntrack_expect *exp) __read_mostly;
38EXPORT_SYMBOL_GPL(nf_nat_irc_hook);
39
40MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
41MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
42MODULE_LICENSE("GPL");
43MODULE_ALIAS("ip_conntrack_irc");
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +010044MODULE_ALIAS_NFCT_HELPER("irc");
Patrick McHardy869f37d2006-12-02 22:09:06 -080045
46module_param_array(ports, ushort, &ports_c, 0400);
47MODULE_PARM_DESC(ports, "port numbers of IRC servers");
48module_param(max_dcc_channels, uint, 0400);
49MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per "
50 "IRC session");
51module_param(dcc_timeout, uint, 0400);
52MODULE_PARM_DESC(dcc_timeout, "timeout on for unestablished DCC channels");
53
Jan Engelhardt58c0fb02008-04-14 11:15:42 +020054static const char *const dccprotos[] = {
Patrick McHardy869f37d2006-12-02 22:09:06 -080055 "SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
56};
57
58#define MINMATCHLEN 5
59
Patrick McHardy869f37d2006-12-02 22:09:06 -080060/* tries to get the ip_addr and port out of a dcc command
61 * return value: -1 on failure, 0 on success
62 * data pointer to first byte of DCC command data
63 * data_end pointer to last byte of dcc command data
64 * ip returns parsed ip of dcc command
65 * port returns parsed port of dcc command
66 * ad_beg_p returns pointer to first byte of addr data
67 * ad_end_p returns pointer to last byte of addr data
68 */
Harvey Harrisonf9409642009-03-28 15:38:30 +000069static int parse_dcc(char *data, const char *data_end, __be32 *ip,
Patrick McHardy869f37d2006-12-02 22:09:06 -080070 u_int16_t *port, char **ad_beg_p, char **ad_end_p)
71{
Patrick McHardye3b802b2008-09-07 18:21:24 -070072 char *tmp;
73
Patrick McHardy869f37d2006-12-02 22:09:06 -080074 /* at least 12: "AAAAAAAA P\1\n" */
75 while (*data++ != ' ')
76 if (data > data_end - 12)
77 return -1;
78
Patrick McHardye3b802b2008-09-07 18:21:24 -070079 /* Make sure we have a newline character within the packet boundaries
80 * because simple_strtoul parses until the first invalid character. */
81 for (tmp = data; tmp <= data_end; tmp++)
82 if (*tmp == '\n')
83 break;
84 if (tmp > data_end || *tmp != '\n')
85 return -1;
86
Patrick McHardy869f37d2006-12-02 22:09:06 -080087 *ad_beg_p = data;
Harvey Harrisonf9409642009-03-28 15:38:30 +000088 *ip = cpu_to_be32(simple_strtoul(data, &data, 10));
Patrick McHardy869f37d2006-12-02 22:09:06 -080089
90 /* skip blanks between ip and port */
91 while (*data == ' ') {
92 if (data >= data_end)
93 return -1;
94 data++;
95 }
96
97 *port = simple_strtoul(data, &data, 10);
98 *ad_end_p = data;
99
100 return 0;
101}
102
Herbert Xu3db05fe2007-10-15 00:53:15 -0700103static int help(struct sk_buff *skb, unsigned int protoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800104 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
105{
106 unsigned int dataoff;
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200107 const struct iphdr *iph;
108 const struct tcphdr *th;
109 struct tcphdr _tcph;
110 const char *data_limit;
111 char *data, *ib_ptr;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800112 int dir = CTINFO2DIR(ctinfo);
113 struct nf_conntrack_expect *exp;
114 struct nf_conntrack_tuple *tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000115 __be32 dcc_ip;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800116 u_int16_t dcc_port;
117 __be16 port;
118 int i, ret = NF_ACCEPT;
119 char *addr_beg_p, *addr_end_p;
120 typeof(nf_nat_irc_hook) nf_nat_irc;
121
122 /* If packet is coming from IRC server */
123 if (dir == IP_CT_DIR_REPLY)
124 return NF_ACCEPT;
125
126 /* Until there's been traffic both ways, don't look in packets. */
127 if (ctinfo != IP_CT_ESTABLISHED &&
128 ctinfo != IP_CT_ESTABLISHED + IP_CT_IS_REPLY)
129 return NF_ACCEPT;
130
131 /* Not a full tcp header? */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700132 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800133 if (th == NULL)
134 return NF_ACCEPT;
135
136 /* No data? */
137 dataoff = protoff + th->doff*4;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700138 if (dataoff >= skb->len)
Patrick McHardy869f37d2006-12-02 22:09:06 -0800139 return NF_ACCEPT;
140
141 spin_lock_bh(&irc_buffer_lock);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700142 ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800143 irc_buffer);
144 BUG_ON(ib_ptr == NULL);
145
146 data = ib_ptr;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700147 data_limit = ib_ptr + skb->len - dataoff;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800148
149 /* strlen("\1DCC SENT t AAAAAAAA P\1\n")=24
150 * 5+MINMATCHLEN+strlen("t AAAAAAAA P\1\n")=14 */
151 while (data < data_limit - (19 + MINMATCHLEN)) {
152 if (memcmp(data, "\1DCC ", 5)) {
153 data++;
154 continue;
155 }
156 data += 5;
157 /* we have at least (19+MINMATCHLEN)-5 bytes valid data left */
158
Herbert Xu3db05fe2007-10-15 00:53:15 -0700159 iph = ip_hdr(skb);
Harvey Harrison14d5e832008-10-31 00:54:29 -0700160 pr_debug("DCC found in master %pI4:%u %pI4:%u\n",
161 &iph->saddr, ntohs(th->source),
162 &iph->daddr, ntohs(th->dest));
Patrick McHardy869f37d2006-12-02 22:09:06 -0800163
164 for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
165 if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
166 /* no match */
167 continue;
168 }
169 data += strlen(dccprotos[i]);
Patrick McHardy0d537782007-07-07 22:39:38 -0700170 pr_debug("DCC %s detected\n", dccprotos[i]);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800171
172 /* we have at least
173 * (19+MINMATCHLEN)-5-dccprotos[i].matchlen bytes valid
174 * data left (== 14/13 bytes) */
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200175 if (parse_dcc(data, data_limit, &dcc_ip,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800176 &dcc_port, &addr_beg_p, &addr_end_p)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700177 pr_debug("unable to parse dcc command\n");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800178 continue;
179 }
Harvey Harrisonf9409642009-03-28 15:38:30 +0000180
181 pr_debug("DCC bound ip/port: %pI4:%u\n",
182 &dcc_ip, dcc_port);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800183
184 /* dcc_ip can be the internal OR external (NAT'ed) IP */
185 tuple = &ct->tuplehash[dir].tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000186 if (tuple->src.u3.ip != dcc_ip &&
187 tuple->dst.u3.ip != dcc_ip) {
Patrick McHardy869f37d2006-12-02 22:09:06 -0800188 if (net_ratelimit())
189 printk(KERN_WARNING
Harvey Harrison14d5e832008-10-31 00:54:29 -0700190 "Forged DCC command from %pI4: %pI4:%u\n",
191 &tuple->src.u3.ip,
192 &dcc_ip, dcc_port);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800193 continue;
194 }
195
Patrick McHardy68236452007-07-07 22:30:49 -0700196 exp = nf_ct_expect_alloc(ct);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800197 if (exp == NULL) {
198 ret = NF_DROP;
199 goto out;
200 }
201 tuple = &ct->tuplehash[!dir].tuple;
202 port = htons(dcc_port);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700203 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
204 tuple->src.l3num,
Patrick McHardy68236452007-07-07 22:30:49 -0700205 NULL, &tuple->dst.u3,
206 IPPROTO_TCP, NULL, &port);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800207
208 nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
209 if (nf_nat_irc && ct->status & IPS_NAT_MASK)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700210 ret = nf_nat_irc(skb, ctinfo,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800211 addr_beg_p - ib_ptr,
212 addr_end_p - addr_beg_p,
213 exp);
Patrick McHardy68236452007-07-07 22:30:49 -0700214 else if (nf_ct_expect_related(exp) != 0)
Patrick McHardy869f37d2006-12-02 22:09:06 -0800215 ret = NF_DROP;
Patrick McHardy68236452007-07-07 22:30:49 -0700216 nf_ct_expect_put(exp);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800217 goto out;
218 }
219 }
220 out:
221 spin_unlock_bh(&irc_buffer_lock);
222 return ret;
223}
224
225static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
226static char irc_names[MAX_PORTS][sizeof("irc-65535")] __read_mostly;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700227static struct nf_conntrack_expect_policy irc_exp_policy;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800228
229static void nf_conntrack_irc_fini(void);
230
231static int __init nf_conntrack_irc_init(void)
232{
233 int i, ret;
234 char *tmpname;
235
236 if (max_dcc_channels < 1) {
237 printk("nf_ct_irc: max_dcc_channels must not be zero\n");
238 return -EINVAL;
239 }
240
Patrick McHardy6002f2662008-03-25 20:09:15 -0700241 irc_exp_policy.max_expected = max_dcc_channels;
242 irc_exp_policy.timeout = dcc_timeout;
243
Patrick McHardy869f37d2006-12-02 22:09:06 -0800244 irc_buffer = kmalloc(65536, GFP_KERNEL);
245 if (!irc_buffer)
246 return -ENOMEM;
247
248 /* If no port given, default to standard irc port */
249 if (ports_c == 0)
250 ports[ports_c++] = IRC_PORT;
251
252 for (i = 0; i < ports_c; i++) {
253 irc[i].tuple.src.l3num = AF_INET;
254 irc[i].tuple.src.u.tcp.port = htons(ports[i]);
255 irc[i].tuple.dst.protonum = IPPROTO_TCP;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700256 irc[i].expect_policy = &irc_exp_policy;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800257 irc[i].me = THIS_MODULE;
258 irc[i].help = help;
259
260 tmpname = &irc_names[i][0];
261 if (ports[i] == IRC_PORT)
262 sprintf(tmpname, "irc");
263 else
264 sprintf(tmpname, "irc-%u", i);
265 irc[i].name = tmpname;
266
267 ret = nf_conntrack_helper_register(&irc[i]);
268 if (ret) {
269 printk("nf_ct_irc: failed to register helper "
270 "for pf: %u port: %u\n",
271 irc[i].tuple.src.l3num, ports[i]);
272 nf_conntrack_irc_fini();
273 return ret;
274 }
275 }
276 return 0;
277}
278
279/* This function is intentionally _NOT_ defined as __exit, because
280 * it is needed by the init function */
281static void nf_conntrack_irc_fini(void)
282{
283 int i;
284
285 for (i = 0; i < ports_c; i++)
286 nf_conntrack_helper_unregister(&irc[i]);
287 kfree(irc_buffer);
288}
289
290module_init(nf_conntrack_irc_init);
291module_exit(nf_conntrack_irc_fini);