blob: 0fd2976db7ee9a7bdb5db99c912ce707116a8283 [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
Patrick McHardyf229f6c2013-04-06 15:24:29 +02004 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Patrick McHardy869f37d2006-12-02 22:09:06 -08005 *
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
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/skbuff.h>
15#include <linux/in.h>
Patrick McHardy0d537782007-07-07 22:39:38 -070016#include <linux/ip.h>
Patrick McHardy869f37d2006-12-02 22:09:06 -080017#include <linux/tcp.h>
18#include <linux/netfilter.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Patrick McHardy869f37d2006-12-02 22:09:06 -080020
21#include <net/netfilter/nf_conntrack.h>
22#include <net/netfilter/nf_conntrack_expect.h>
23#include <net/netfilter/nf_conntrack_helper.h>
24#include <linux/netfilter/nf_conntrack_irc.h>
25
26#define MAX_PORTS 8
27static unsigned short ports[MAX_PORTS];
Stephen Hemminger2f0d2f12008-01-31 04:08:10 -080028static unsigned int ports_c;
Patrick McHardy869f37d2006-12-02 22:09:06 -080029static unsigned int max_dcc_channels = 8;
30static unsigned int dcc_timeout __read_mostly = 300;
31/* This is slow, but it's simple. --RR */
32static char *irc_buffer;
33static DEFINE_SPINLOCK(irc_buffer_lock);
34
Herbert Xu3db05fe2007-10-15 00:53:15 -070035unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
Patrick McHardy869f37d2006-12-02 22:09:06 -080036 enum ip_conntrack_info ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020037 unsigned int protoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -080038 unsigned int matchoff,
39 unsigned int matchlen,
40 struct nf_conntrack_expect *exp) __read_mostly;
41EXPORT_SYMBOL_GPL(nf_nat_irc_hook);
42
43MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
44MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
45MODULE_LICENSE("GPL");
46MODULE_ALIAS("ip_conntrack_irc");
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +010047MODULE_ALIAS_NFCT_HELPER("irc");
Patrick McHardy869f37d2006-12-02 22:09:06 -080048
49module_param_array(ports, ushort, &ports_c, 0400);
50MODULE_PARM_DESC(ports, "port numbers of IRC servers");
51module_param(max_dcc_channels, uint, 0400);
52MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per "
53 "IRC session");
54module_param(dcc_timeout, uint, 0400);
55MODULE_PARM_DESC(dcc_timeout, "timeout on for unestablished DCC channels");
56
Jan Engelhardt58c0fb02008-04-14 11:15:42 +020057static const char *const dccprotos[] = {
Patrick McHardy869f37d2006-12-02 22:09:06 -080058 "SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
59};
60
61#define MINMATCHLEN 5
62
Patrick McHardy869f37d2006-12-02 22:09:06 -080063/* tries to get the ip_addr and port out of a dcc command
64 * return value: -1 on failure, 0 on success
65 * data pointer to first byte of DCC command data
66 * data_end pointer to last byte of dcc command data
67 * ip returns parsed ip of dcc command
68 * port returns parsed port of dcc command
69 * ad_beg_p returns pointer to first byte of addr data
70 * ad_end_p returns pointer to last byte of addr data
71 */
Harvey Harrisonf9409642009-03-28 15:38:30 +000072static int parse_dcc(char *data, const char *data_end, __be32 *ip,
Patrick McHardy869f37d2006-12-02 22:09:06 -080073 u_int16_t *port, char **ad_beg_p, char **ad_end_p)
74{
Patrick McHardye3b802b2008-09-07 18:21:24 -070075 char *tmp;
76
Patrick McHardy869f37d2006-12-02 22:09:06 -080077 /* at least 12: "AAAAAAAA P\1\n" */
78 while (*data++ != ' ')
79 if (data > data_end - 12)
80 return -1;
81
Patrick McHardye3b802b2008-09-07 18:21:24 -070082 /* Make sure we have a newline character within the packet boundaries
83 * because simple_strtoul parses until the first invalid character. */
84 for (tmp = data; tmp <= data_end; tmp++)
85 if (*tmp == '\n')
86 break;
87 if (tmp > data_end || *tmp != '\n')
88 return -1;
89
Patrick McHardy869f37d2006-12-02 22:09:06 -080090 *ad_beg_p = data;
Harvey Harrisonf9409642009-03-28 15:38:30 +000091 *ip = cpu_to_be32(simple_strtoul(data, &data, 10));
Patrick McHardy869f37d2006-12-02 22:09:06 -080092
93 /* skip blanks between ip and port */
94 while (*data == ' ') {
95 if (data >= data_end)
96 return -1;
97 data++;
98 }
99
100 *port = simple_strtoul(data, &data, 10);
101 *ad_end_p = data;
102
103 return 0;
104}
105
Herbert Xu3db05fe2007-10-15 00:53:15 -0700106static int help(struct sk_buff *skb, unsigned int protoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800107 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
108{
109 unsigned int dataoff;
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200110 const struct iphdr *iph;
111 const struct tcphdr *th;
112 struct tcphdr _tcph;
113 const char *data_limit;
114 char *data, *ib_ptr;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800115 int dir = CTINFO2DIR(ctinfo);
116 struct nf_conntrack_expect *exp;
117 struct nf_conntrack_tuple *tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000118 __be32 dcc_ip;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800119 u_int16_t dcc_port;
120 __be16 port;
121 int i, ret = NF_ACCEPT;
122 char *addr_beg_p, *addr_end_p;
123 typeof(nf_nat_irc_hook) nf_nat_irc;
124
125 /* If packet is coming from IRC server */
126 if (dir == IP_CT_DIR_REPLY)
127 return NF_ACCEPT;
128
129 /* Until there's been traffic both ways, don't look in packets. */
Eric Dumazetfb048832011-05-19 15:44:27 +0200130 if (ctinfo != IP_CT_ESTABLISHED && ctinfo != IP_CT_ESTABLISHED_REPLY)
Patrick McHardy869f37d2006-12-02 22:09:06 -0800131 return NF_ACCEPT;
132
133 /* Not a full tcp header? */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700134 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800135 if (th == NULL)
136 return NF_ACCEPT;
137
138 /* No data? */
139 dataoff = protoff + th->doff*4;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700140 if (dataoff >= skb->len)
Patrick McHardy869f37d2006-12-02 22:09:06 -0800141 return NF_ACCEPT;
142
143 spin_lock_bh(&irc_buffer_lock);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700144 ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800145 irc_buffer);
146 BUG_ON(ib_ptr == NULL);
147
148 data = ib_ptr;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700149 data_limit = ib_ptr + skb->len - dataoff;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800150
151 /* strlen("\1DCC SENT t AAAAAAAA P\1\n")=24
152 * 5+MINMATCHLEN+strlen("t AAAAAAAA P\1\n")=14 */
153 while (data < data_limit - (19 + MINMATCHLEN)) {
154 if (memcmp(data, "\1DCC ", 5)) {
155 data++;
156 continue;
157 }
158 data += 5;
159 /* we have at least (19+MINMATCHLEN)-5 bytes valid data left */
160
Herbert Xu3db05fe2007-10-15 00:53:15 -0700161 iph = ip_hdr(skb);
Harvey Harrison14d5e832008-10-31 00:54:29 -0700162 pr_debug("DCC found in master %pI4:%u %pI4:%u\n",
163 &iph->saddr, ntohs(th->source),
164 &iph->daddr, ntohs(th->dest));
Patrick McHardy869f37d2006-12-02 22:09:06 -0800165
166 for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
167 if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
168 /* no match */
169 continue;
170 }
171 data += strlen(dccprotos[i]);
Patrick McHardy0d537782007-07-07 22:39:38 -0700172 pr_debug("DCC %s detected\n", dccprotos[i]);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800173
174 /* we have at least
175 * (19+MINMATCHLEN)-5-dccprotos[i].matchlen bytes valid
176 * data left (== 14/13 bytes) */
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200177 if (parse_dcc(data, data_limit, &dcc_ip,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800178 &dcc_port, &addr_beg_p, &addr_end_p)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700179 pr_debug("unable to parse dcc command\n");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800180 continue;
181 }
Harvey Harrisonf9409642009-03-28 15:38:30 +0000182
183 pr_debug("DCC bound ip/port: %pI4:%u\n",
184 &dcc_ip, dcc_port);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800185
186 /* dcc_ip can be the internal OR external (NAT'ed) IP */
187 tuple = &ct->tuplehash[dir].tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000188 if (tuple->src.u3.ip != dcc_ip &&
189 tuple->dst.u3.ip != dcc_ip) {
Joe Perchese87cc472012-05-13 21:56:26 +0000190 net_warn_ratelimited("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) {
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100198 nf_ct_helper_log(skb, ct,
199 "cannot alloc expectation");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800200 ret = NF_DROP;
201 goto out;
202 }
203 tuple = &ct->tuplehash[!dir].tuple;
204 port = htons(dcc_port);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700205 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
206 tuple->src.l3num,
Patrick McHardy68236452007-07-07 22:30:49 -0700207 NULL, &tuple->dst.u3,
208 IPPROTO_TCP, NULL, &port);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800209
210 nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
Pablo Neira Ayuso5901b6b2012-08-26 19:14:27 +0200211 if (nf_nat_irc && ct->status & IPS_NAT_MASK)
Patrick McHardy051966c2012-08-26 19:14:04 +0200212 ret = nf_nat_irc(skb, ctinfo, protoff,
Patrick McHardy869f37d2006-12-02 22:09:06 -0800213 addr_beg_p - ib_ptr,
214 addr_end_p - addr_beg_p,
215 exp);
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100216 else if (nf_ct_expect_related(exp) != 0) {
217 nf_ct_helper_log(skb, ct,
218 "cannot add expectation");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800219 ret = NF_DROP;
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100220 }
Patrick McHardy68236452007-07-07 22:30:49 -0700221 nf_ct_expect_put(exp);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800222 goto out;
223 }
224 }
225 out:
226 spin_unlock_bh(&irc_buffer_lock);
227 return ret;
228}
229
230static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700231static struct nf_conntrack_expect_policy irc_exp_policy;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800232
233static void nf_conntrack_irc_fini(void);
234
235static int __init nf_conntrack_irc_init(void)
236{
237 int i, ret;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800238
239 if (max_dcc_channels < 1) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200240 printk(KERN_ERR "nf_ct_irc: max_dcc_channels must not be zero\n");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800241 return -EINVAL;
242 }
243
Patrick McHardy6002f2662008-03-25 20:09:15 -0700244 irc_exp_policy.max_expected = max_dcc_channels;
245 irc_exp_policy.timeout = dcc_timeout;
246
Patrick McHardy869f37d2006-12-02 22:09:06 -0800247 irc_buffer = kmalloc(65536, GFP_KERNEL);
248 if (!irc_buffer)
249 return -ENOMEM;
250
251 /* If no port given, default to standard irc port */
252 if (ports_c == 0)
253 ports[ports_c++] = IRC_PORT;
254
255 for (i = 0; i < ports_c; i++) {
256 irc[i].tuple.src.l3num = AF_INET;
257 irc[i].tuple.src.u.tcp.port = htons(ports[i]);
258 irc[i].tuple.dst.protonum = IPPROTO_TCP;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700259 irc[i].expect_policy = &irc_exp_policy;
Patrick McHardy869f37d2006-12-02 22:09:06 -0800260 irc[i].me = THIS_MODULE;
261 irc[i].help = help;
262
Patrick McHardy869f37d2006-12-02 22:09:06 -0800263 if (ports[i] == IRC_PORT)
Pablo Neira Ayuso3a8fc532012-01-15 16:34:08 +0100264 sprintf(irc[i].name, "irc");
Patrick McHardy869f37d2006-12-02 22:09:06 -0800265 else
Pablo Neira Ayuso3a8fc532012-01-15 16:34:08 +0100266 sprintf(irc[i].name, "irc-%u", i);
Patrick McHardy869f37d2006-12-02 22:09:06 -0800267
268 ret = nf_conntrack_helper_register(&irc[i]);
269 if (ret) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200270 printk(KERN_ERR "nf_ct_irc: failed to register helper "
Patrick McHardy869f37d2006-12-02 22:09:06 -0800271 "for pf: %u port: %u\n",
272 irc[i].tuple.src.l3num, ports[i]);
273 nf_conntrack_irc_fini();
274 return ret;
275 }
276 }
277 return 0;
278}
279
280/* This function is intentionally _NOT_ defined as __exit, because
281 * it is needed by the init function */
282static void nf_conntrack_irc_fini(void)
283{
284 int i;
285
286 for (i = 0; i < ports_c; i++)
287 nf_conntrack_helper_unregister(&irc[i]);
288 kfree(irc_buffer);
289}
290
291module_init(nf_conntrack_irc_init);
292module_exit(nf_conntrack_irc_fini);