blob: 1972a149f958350c6f6dd5f466d36fed152b76fc [file] [log] [blame]
Patrick McHardy869f37d82006-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 McHardy869f37d82006-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
Pablo Neira Ayusoad6d9502016-01-03 22:41:24 +010012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Patrick McHardy869f37d82006-12-02 22:09:06 -080014#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/skbuff.h>
17#include <linux/in.h>
Patrick McHardy0d537782007-07-07 22:39:38 -070018#include <linux/ip.h>
Patrick McHardy869f37d82006-12-02 22:09:06 -080019#include <linux/tcp.h>
20#include <linux/netfilter.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Patrick McHardy869f37d82006-12-02 22:09:06 -080022
23#include <net/netfilter/nf_conntrack.h>
24#include <net/netfilter/nf_conntrack_expect.h>
25#include <net/netfilter/nf_conntrack_helper.h>
26#include <linux/netfilter/nf_conntrack_irc.h>
27
28#define MAX_PORTS 8
29static unsigned short ports[MAX_PORTS];
Stephen Hemminger2f0d2f12008-01-31 04:08:10 -080030static unsigned int ports_c;
Patrick McHardy869f37d82006-12-02 22:09:06 -080031static unsigned int max_dcc_channels = 8;
32static unsigned int dcc_timeout __read_mostly = 300;
33/* This is slow, but it's simple. --RR */
34static char *irc_buffer;
35static DEFINE_SPINLOCK(irc_buffer_lock);
36
Herbert Xu3db05fea2007-10-15 00:53:15 -070037unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
Patrick McHardy869f37d82006-12-02 22:09:06 -080038 enum ip_conntrack_info ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020039 unsigned int protoff,
Patrick McHardy869f37d82006-12-02 22:09:06 -080040 unsigned int matchoff,
41 unsigned int matchlen,
42 struct nf_conntrack_expect *exp) __read_mostly;
43EXPORT_SYMBOL_GPL(nf_nat_irc_hook);
44
45MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
46MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
47MODULE_LICENSE("GPL");
48MODULE_ALIAS("ip_conntrack_irc");
Pablo Neira Ayuso4dc06f962008-11-17 16:01:42 +010049MODULE_ALIAS_NFCT_HELPER("irc");
Patrick McHardy869f37d82006-12-02 22:09:06 -080050
51module_param_array(ports, ushort, &ports_c, 0400);
52MODULE_PARM_DESC(ports, "port numbers of IRC servers");
53module_param(max_dcc_channels, uint, 0400);
54MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per "
55 "IRC session");
56module_param(dcc_timeout, uint, 0400);
57MODULE_PARM_DESC(dcc_timeout, "timeout on for unestablished DCC channels");
58
Jan Engelhardt58c0fb02008-04-14 11:15:42 +020059static const char *const dccprotos[] = {
Patrick McHardy869f37d82006-12-02 22:09:06 -080060 "SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
61};
62
63#define MINMATCHLEN 5
64
Patrick McHardy869f37d82006-12-02 22:09:06 -080065/* 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
73 */
Harvey Harrisonf9409642009-03-28 15:38:30 +000074static int parse_dcc(char *data, const char *data_end, __be32 *ip,
Patrick McHardy869f37d82006-12-02 22:09:06 -080075 u_int16_t *port, char **ad_beg_p, char **ad_end_p)
76{
Patrick McHardye3b802b2008-09-07 18:21:24 -070077 char *tmp;
78
Patrick McHardy869f37d82006-12-02 22:09:06 -080079 /* at least 12: "AAAAAAAA P\1\n" */
80 while (*data++ != ' ')
81 if (data > data_end - 12)
82 return -1;
83
Patrick McHardye3b802b2008-09-07 18:21:24 -070084 /* Make sure we have a newline character within the packet boundaries
85 * because simple_strtoul parses until the first invalid character. */
86 for (tmp = data; tmp <= data_end; tmp++)
87 if (*tmp == '\n')
88 break;
89 if (tmp > data_end || *tmp != '\n')
90 return -1;
91
Patrick McHardy869f37d82006-12-02 22:09:06 -080092 *ad_beg_p = data;
Harvey Harrisonf9409642009-03-28 15:38:30 +000093 *ip = cpu_to_be32(simple_strtoul(data, &data, 10));
Patrick McHardy869f37d82006-12-02 22:09:06 -080094
95 /* skip blanks between ip and port */
96 while (*data == ' ') {
97 if (data >= data_end)
98 return -1;
99 data++;
100 }
101
102 *port = simple_strtoul(data, &data, 10);
103 *ad_end_p = data;
104
105 return 0;
106}
107
Herbert Xu3db05fea2007-10-15 00:53:15 -0700108static int help(struct sk_buff *skb, unsigned int protoff,
Patrick McHardy869f37d82006-12-02 22:09:06 -0800109 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
110{
111 unsigned int dataoff;
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200112 const struct iphdr *iph;
113 const struct tcphdr *th;
114 struct tcphdr _tcph;
115 const char *data_limit;
116 char *data, *ib_ptr;
Patrick McHardy869f37d82006-12-02 22:09:06 -0800117 int dir = CTINFO2DIR(ctinfo);
118 struct nf_conntrack_expect *exp;
119 struct nf_conntrack_tuple *tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000120 __be32 dcc_ip;
Patrick McHardy869f37d82006-12-02 22:09:06 -0800121 u_int16_t dcc_port;
122 __be16 port;
123 int i, ret = NF_ACCEPT;
124 char *addr_beg_p, *addr_end_p;
125 typeof(nf_nat_irc_hook) nf_nat_irc;
126
127 /* If packet is coming from IRC server */
128 if (dir == IP_CT_DIR_REPLY)
129 return NF_ACCEPT;
130
131 /* Until there's been traffic both ways, don't look in packets. */
Eric Dumazetfb048832011-05-19 15:44:27 +0200132 if (ctinfo != IP_CT_ESTABLISHED && ctinfo != IP_CT_ESTABLISHED_REPLY)
Patrick McHardy869f37d82006-12-02 22:09:06 -0800133 return NF_ACCEPT;
134
135 /* Not a full tcp header? */
Herbert Xu3db05fea2007-10-15 00:53:15 -0700136 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800137 if (th == NULL)
138 return NF_ACCEPT;
139
140 /* No data? */
141 dataoff = protoff + th->doff*4;
Herbert Xu3db05fea2007-10-15 00:53:15 -0700142 if (dataoff >= skb->len)
Patrick McHardy869f37d82006-12-02 22:09:06 -0800143 return NF_ACCEPT;
144
145 spin_lock_bh(&irc_buffer_lock);
Herbert Xu3db05fea2007-10-15 00:53:15 -0700146 ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
Patrick McHardy869f37d82006-12-02 22:09:06 -0800147 irc_buffer);
148 BUG_ON(ib_ptr == NULL);
149
150 data = ib_ptr;
Herbert Xu3db05fea2007-10-15 00:53:15 -0700151 data_limit = ib_ptr + skb->len - dataoff;
Patrick McHardy869f37d82006-12-02 22:09:06 -0800152
153 /* strlen("\1DCC SENT t AAAAAAAA P\1\n")=24
154 * 5+MINMATCHLEN+strlen("t AAAAAAAA P\1\n")=14 */
155 while (data < data_limit - (19 + MINMATCHLEN)) {
156 if (memcmp(data, "\1DCC ", 5)) {
157 data++;
158 continue;
159 }
160 data += 5;
161 /* we have at least (19+MINMATCHLEN)-5 bytes valid data left */
162
Herbert Xu3db05fea2007-10-15 00:53:15 -0700163 iph = ip_hdr(skb);
Harvey Harrison14d5e832008-10-31 00:54:29 -0700164 pr_debug("DCC found in master %pI4:%u %pI4:%u\n",
165 &iph->saddr, ntohs(th->source),
166 &iph->daddr, ntohs(th->dest));
Patrick McHardy869f37d82006-12-02 22:09:06 -0800167
168 for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
169 if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
170 /* no match */
171 continue;
172 }
173 data += strlen(dccprotos[i]);
Patrick McHardy0d537782007-07-07 22:39:38 -0700174 pr_debug("DCC %s detected\n", dccprotos[i]);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800175
176 /* we have at least
177 * (19+MINMATCHLEN)-5-dccprotos[i].matchlen bytes valid
178 * data left (== 14/13 bytes) */
Jan Engelhardt58c0fb02008-04-14 11:15:42 +0200179 if (parse_dcc(data, data_limit, &dcc_ip,
Patrick McHardy869f37d82006-12-02 22:09:06 -0800180 &dcc_port, &addr_beg_p, &addr_end_p)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700181 pr_debug("unable to parse dcc command\n");
Patrick McHardy869f37d82006-12-02 22:09:06 -0800182 continue;
183 }
Harvey Harrisonf9409642009-03-28 15:38:30 +0000184
185 pr_debug("DCC bound ip/port: %pI4:%u\n",
186 &dcc_ip, dcc_port);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800187
188 /* dcc_ip can be the internal OR external (NAT'ed) IP */
189 tuple = &ct->tuplehash[dir].tuple;
Harvey Harrisonf9409642009-03-28 15:38:30 +0000190 if (tuple->src.u3.ip != dcc_ip &&
191 tuple->dst.u3.ip != dcc_ip) {
Joe Perchese87cc472012-05-13 21:56:26 +0000192 net_warn_ratelimited("Forged DCC command from %pI4: %pI4:%u\n",
193 &tuple->src.u3.ip,
194 &dcc_ip, dcc_port);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800195 continue;
196 }
197
Patrick McHardy68236452007-07-07 22:30:49 -0700198 exp = nf_ct_expect_alloc(ct);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800199 if (exp == NULL) {
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100200 nf_ct_helper_log(skb, ct,
201 "cannot alloc expectation");
Patrick McHardy869f37d82006-12-02 22:09:06 -0800202 ret = NF_DROP;
203 goto out;
204 }
205 tuple = &ct->tuplehash[!dir].tuple;
206 port = htons(dcc_port);
Patrick McHardy6002f2662008-03-25 20:09:15 -0700207 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
208 tuple->src.l3num,
Patrick McHardy68236452007-07-07 22:30:49 -0700209 NULL, &tuple->dst.u3,
210 IPPROTO_TCP, NULL, &port);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800211
212 nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
Pablo Neira Ayuso5901b6b2012-08-26 19:14:27 +0200213 if (nf_nat_irc && ct->status & IPS_NAT_MASK)
Patrick McHardy051966c2012-08-26 19:14:04 +0200214 ret = nf_nat_irc(skb, ctinfo, protoff,
Patrick McHardy869f37d82006-12-02 22:09:06 -0800215 addr_beg_p - ib_ptr,
216 addr_end_p - addr_beg_p,
217 exp);
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100218 else if (nf_ct_expect_related(exp) != 0) {
219 nf_ct_helper_log(skb, ct,
220 "cannot add expectation");
Patrick McHardy869f37d82006-12-02 22:09:06 -0800221 ret = NF_DROP;
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +0100222 }
Patrick McHardy68236452007-07-07 22:30:49 -0700223 nf_ct_expect_put(exp);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800224 goto out;
225 }
226 }
227 out:
228 spin_unlock_bh(&irc_buffer_lock);
229 return ret;
230}
231
232static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
Patrick McHardy6002f2662008-03-25 20:09:15 -0700233static struct nf_conntrack_expect_policy irc_exp_policy;
Patrick McHardy869f37d82006-12-02 22:09:06 -0800234
235static void nf_conntrack_irc_fini(void);
236
237static int __init nf_conntrack_irc_init(void)
238{
239 int i, ret;
Patrick McHardy869f37d82006-12-02 22:09:06 -0800240
241 if (max_dcc_channels < 1) {
Pablo Neira Ayusoad6d9502016-01-03 22:41:24 +0100242 pr_err("max_dcc_channels must not be zero\n");
Patrick McHardy869f37d82006-12-02 22:09:06 -0800243 return -EINVAL;
244 }
245
Patrick McHardy6002f2662008-03-25 20:09:15 -0700246 irc_exp_policy.max_expected = max_dcc_channels;
247 irc_exp_policy.timeout = dcc_timeout;
248
Patrick McHardy869f37d82006-12-02 22:09:06 -0800249 irc_buffer = kmalloc(65536, GFP_KERNEL);
250 if (!irc_buffer)
251 return -ENOMEM;
252
253 /* If no port given, default to standard irc port */
254 if (ports_c == 0)
255 ports[ports_c++] = IRC_PORT;
256
257 for (i = 0; i < ports_c; i++) {
Gao Feng82de0be2016-07-18 11:39:23 +0800258 nf_ct_helper_init(&irc[i], AF_INET, IPPROTO_TCP, "irc",
259 IRC_PORT, ports[i], i, &irc_exp_policy,
260 0, 0, help, NULL, THIS_MODULE);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800261 }
Gao Feng82de0be2016-07-18 11:39:23 +0800262
263 ret = nf_conntrack_helpers_register(&irc[0], ports_c);
264 if (ret) {
265 pr_err("failed to register helpers\n");
266 kfree(irc_buffer);
267 return ret;
268 }
269
Patrick McHardy869f37d82006-12-02 22:09:06 -0800270 return 0;
271}
272
273/* This function is intentionally _NOT_ defined as __exit, because
274 * it is needed by the init function */
275static void nf_conntrack_irc_fini(void)
276{
Gao Feng82de0be2016-07-18 11:39:23 +0800277 nf_conntrack_helpers_unregister(irc, ports_c);
Patrick McHardy869f37d82006-12-02 22:09:06 -0800278 kfree(irc_buffer);
279}
280
281module_init(nf_conntrack_irc_init);
282module_exit(nf_conntrack_irc_fini);