Blame view

net/netfilter/nf_conntrack_irc.c 7.98 KB
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
1
2
3
  /* IRC extension for IP connection tracking, Version 1.21
   * (C) 2000-2002 by Harald Welte <laforge@gnumonks.org>
   * based on RR's ip_conntrack_ftp.c
f229f6ce4   Patrick McHardy   netfilter: add my...
4
   * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
5
6
7
8
9
10
11
12
13
14
15
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
   * as published by the Free Software Foundation; either version
   * 2 of the License, or (at your option) any later version.
   */
  
  #include <linux/module.h>
  #include <linux/moduleparam.h>
  #include <linux/skbuff.h>
  #include <linux/in.h>
0d53778e8   Patrick McHardy   [NETFILTER]: Conv...
16
  #include <linux/ip.h>
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
17
18
  #include <linux/tcp.h>
  #include <linux/netfilter.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
19
  #include <linux/slab.h>
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
20
21
22
23
24
25
26
27
  
  #include <net/netfilter/nf_conntrack.h>
  #include <net/netfilter/nf_conntrack_expect.h>
  #include <net/netfilter/nf_conntrack_helper.h>
  #include <linux/netfilter/nf_conntrack_irc.h>
  
  #define MAX_PORTS 8
  static unsigned short ports[MAX_PORTS];
2f0d2f103   Stephen Hemminger   [NETFILTER]: conn...
28
  static unsigned int ports_c;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
29
30
31
32
33
  static unsigned int max_dcc_channels = 8;
  static unsigned int dcc_timeout __read_mostly = 300;
  /* This is slow, but it's simple. --RR */
  static char *irc_buffer;
  static DEFINE_SPINLOCK(irc_buffer_lock);
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
34
  unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
35
  				enum ip_conntrack_info ctinfo,
051966c0c   Patrick McHardy   netfilter: nf_nat...
36
  				unsigned int protoff,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
37
38
39
40
41
42
43
44
45
  				unsigned int matchoff,
  				unsigned int matchlen,
  				struct nf_conntrack_expect *exp) __read_mostly;
  EXPORT_SYMBOL_GPL(nf_nat_irc_hook);
  
  MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
  MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS("ip_conntrack_irc");
4dc06f963   Pablo Neira Ayuso   netfilter: nf_con...
46
  MODULE_ALIAS_NFCT_HELPER("irc");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
47
48
49
50
51
52
53
54
  
  module_param_array(ports, ushort, &ports_c, 0400);
  MODULE_PARM_DESC(ports, "port numbers of IRC servers");
  module_param(max_dcc_channels, uint, 0400);
  MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per "
  				   "IRC session");
  module_param(dcc_timeout, uint, 0400);
  MODULE_PARM_DESC(dcc_timeout, "timeout on for unestablished DCC channels");
58c0fb0dd   Jan Engelhardt   [NETFILTER]: anno...
55
  static const char *const dccprotos[] = {
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
56
57
58
59
  	"SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
  };
  
  #define MINMATCHLEN	5
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
60
61
62
63
64
65
66
67
68
  /* tries to get the ip_addr and port out of a dcc command
   * return value: -1 on failure, 0 on success
   *	data		pointer to first byte of DCC command data
   *	data_end	pointer to last byte of dcc command data
   *	ip		returns parsed ip of dcc command
   *	port		returns parsed port of dcc command
   *	ad_beg_p	returns pointer to first byte of addr data
   *	ad_end_p	returns pointer to last byte of addr data
   */
f94096490   Harvey Harrison   netfilter: fix en...
69
  static int parse_dcc(char *data, const char *data_end, __be32 *ip,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
70
71
  		     u_int16_t *port, char **ad_beg_p, char **ad_end_p)
  {
e3b802ba8   Patrick McHardy   netfilter: nf_con...
72
  	char *tmp;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
73
74
75
76
77
  	/* at least 12: "AAAAAAAA P\1
  " */
  	while (*data++ != ' ')
  		if (data > data_end - 12)
  			return -1;
e3b802ba8   Patrick McHardy   netfilter: nf_con...
78
79
80
81
82
83
84
85
86
  	/* Make sure we have a newline character within the packet boundaries
  	 * because simple_strtoul parses until the first invalid character. */
  	for (tmp = data; tmp <= data_end; tmp++)
  		if (*tmp == '
  ')
  			break;
  	if (tmp > data_end || *tmp != '
  ')
  		return -1;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
87
  	*ad_beg_p = data;
f94096490   Harvey Harrison   netfilter: fix en...
88
  	*ip = cpu_to_be32(simple_strtoul(data, &data, 10));
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
89
90
91
92
93
94
95
96
97
98
99
100
101
  
  	/* skip blanks between ip and port */
  	while (*data == ' ') {
  		if (data >= data_end)
  			return -1;
  		data++;
  	}
  
  	*port = simple_strtoul(data, &data, 10);
  	*ad_end_p = data;
  
  	return 0;
  }
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
102
  static int help(struct sk_buff *skb, unsigned int protoff,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
103
104
105
  		struct nf_conn *ct, enum ip_conntrack_info ctinfo)
  {
  	unsigned int dataoff;
58c0fb0dd   Jan Engelhardt   [NETFILTER]: anno...
106
107
108
109
110
  	const struct iphdr *iph;
  	const struct tcphdr *th;
  	struct tcphdr _tcph;
  	const char *data_limit;
  	char *data, *ib_ptr;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
111
112
113
  	int dir = CTINFO2DIR(ctinfo);
  	struct nf_conntrack_expect *exp;
  	struct nf_conntrack_tuple *tuple;
f94096490   Harvey Harrison   netfilter: fix en...
114
  	__be32 dcc_ip;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
115
116
117
118
119
120
121
122
123
124
125
  	u_int16_t dcc_port;
  	__be16 port;
  	int i, ret = NF_ACCEPT;
  	char *addr_beg_p, *addr_end_p;
  	typeof(nf_nat_irc_hook) nf_nat_irc;
  
  	/* If packet is coming from IRC server */
  	if (dir == IP_CT_DIR_REPLY)
  		return NF_ACCEPT;
  
  	/* Until there's been traffic both ways, don't look in packets. */
fb0488337   Eric Dumazet   netfilter: add mo...
126
  	if (ctinfo != IP_CT_ESTABLISHED && ctinfo != IP_CT_ESTABLISHED_REPLY)
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
127
128
129
  		return NF_ACCEPT;
  
  	/* Not a full tcp header? */
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
130
  	th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
131
132
133
134
135
  	if (th == NULL)
  		return NF_ACCEPT;
  
  	/* No data? */
  	dataoff = protoff + th->doff*4;
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
136
  	if (dataoff >= skb->len)
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
137
138
139
  		return NF_ACCEPT;
  
  	spin_lock_bh(&irc_buffer_lock);
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
140
  	ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
141
142
143
144
  				    irc_buffer);
  	BUG_ON(ib_ptr == NULL);
  
  	data = ib_ptr;
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
145
  	data_limit = ib_ptr + skb->len - dataoff;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
146
147
148
149
150
151
152
153
154
155
156
157
  
  	/* strlen("\1DCC SENT t AAAAAAAA P\1
  ")=24
  	 * 5+MINMATCHLEN+strlen("t AAAAAAAA P\1
  ")=14 */
  	while (data < data_limit - (19 + MINMATCHLEN)) {
  		if (memcmp(data, "\1DCC ", 5)) {
  			data++;
  			continue;
  		}
  		data += 5;
  		/* we have at least (19+MINMATCHLEN)-5 bytes valid data left */
3db05fea5   Herbert Xu   [NETFILTER]: Repl...
158
  		iph = ip_hdr(skb);
14d5e834f   Harvey Harrison   net: replace NIPQ...
159
160
161
162
  		pr_debug("DCC found in master %pI4:%u %pI4:%u
  ",
  			 &iph->saddr, ntohs(th->source),
  			 &iph->daddr, ntohs(th->dest));
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
163
164
165
166
167
168
169
  
  		for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
  			if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
  				/* no match */
  				continue;
  			}
  			data += strlen(dccprotos[i]);
0d53778e8   Patrick McHardy   [NETFILTER]: Conv...
170
171
  			pr_debug("DCC %s detected
  ", dccprotos[i]);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
172
173
174
175
  
  			/* we have at least
  			 * (19+MINMATCHLEN)-5-dccprotos[i].matchlen bytes valid
  			 * data left (== 14/13 bytes) */
58c0fb0dd   Jan Engelhardt   [NETFILTER]: anno...
176
  			if (parse_dcc(data, data_limit, &dcc_ip,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
177
  				       &dcc_port, &addr_beg_p, &addr_end_p)) {
0d53778e8   Patrick McHardy   [NETFILTER]: Conv...
178
179
  				pr_debug("unable to parse dcc command
  ");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
180
181
  				continue;
  			}
f94096490   Harvey Harrison   netfilter: fix en...
182
183
184
185
  
  			pr_debug("DCC bound ip/port: %pI4:%u
  ",
  				 &dcc_ip, dcc_port);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
186
187
188
  
  			/* dcc_ip can be the internal OR external (NAT'ed) IP */
  			tuple = &ct->tuplehash[dir].tuple;
f94096490   Harvey Harrison   netfilter: fix en...
189
190
  			if (tuple->src.u3.ip != dcc_ip &&
  			    tuple->dst.u3.ip != dcc_ip) {
e87cc4728   Joe Perches   net: Convert net_...
191
192
193
194
  				net_warn_ratelimited("Forged DCC command from %pI4: %pI4:%u
  ",
  						     &tuple->src.u3.ip,
  						     &dcc_ip, dcc_port);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
195
196
  				continue;
  			}
6823645d6   Patrick McHardy   [NETFILTER]: nf_c...
197
  			exp = nf_ct_expect_alloc(ct);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
198
  			if (exp == NULL) {
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
199
200
  				nf_ct_helper_log(skb, ct,
  						 "cannot alloc expectation");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
201
202
203
204
205
  				ret = NF_DROP;
  				goto out;
  			}
  			tuple = &ct->tuplehash[!dir].tuple;
  			port = htons(dcc_port);
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
206
207
  			nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
  					  tuple->src.l3num,
6823645d6   Patrick McHardy   [NETFILTER]: nf_c...
208
209
  					  NULL, &tuple->dst.u3,
  					  IPPROTO_TCP, NULL, &port);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
210
211
  
  			nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
5901b6be8   Pablo Neira Ayuso   netfilter: nf_nat...
212
  			if (nf_nat_irc && ct->status & IPS_NAT_MASK)
051966c0c   Patrick McHardy   netfilter: nf_nat...
213
  				ret = nf_nat_irc(skb, ctinfo, protoff,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
214
215
216
  						 addr_beg_p - ib_ptr,
  						 addr_end_p - addr_beg_p,
  						 exp);
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
217
218
219
  			else if (nf_ct_expect_related(exp) != 0) {
  				nf_ct_helper_log(skb, ct,
  						 "cannot add expectation");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
220
  				ret = NF_DROP;
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
221
  			}
6823645d6   Patrick McHardy   [NETFILTER]: nf_c...
222
  			nf_ct_expect_put(exp);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
223
224
225
226
227
228
229
230
231
  			goto out;
  		}
  	}
   out:
  	spin_unlock_bh(&irc_buffer_lock);
  	return ret;
  }
  
  static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
232
  static struct nf_conntrack_expect_policy irc_exp_policy;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
233
234
235
236
237
238
  
  static void nf_conntrack_irc_fini(void);
  
  static int __init nf_conntrack_irc_init(void)
  {
  	int i, ret;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
239
240
  
  	if (max_dcc_channels < 1) {
654d0fbdc   Stephen Hemminger   netfilter: cleanu...
241
242
  		printk(KERN_ERR "nf_ct_irc: max_dcc_channels must not be zero
  ");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
243
244
  		return -EINVAL;
  	}
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
245
246
  	irc_exp_policy.max_expected = max_dcc_channels;
  	irc_exp_policy.timeout = dcc_timeout;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
247
248
249
250
251
252
253
254
255
256
257
258
  	irc_buffer = kmalloc(65536, GFP_KERNEL);
  	if (!irc_buffer)
  		return -ENOMEM;
  
  	/* If no port given, default to standard irc port */
  	if (ports_c == 0)
  		ports[ports_c++] = IRC_PORT;
  
  	for (i = 0; i < ports_c; i++) {
  		irc[i].tuple.src.l3num = AF_INET;
  		irc[i].tuple.src.u.tcp.port = htons(ports[i]);
  		irc[i].tuple.dst.protonum = IPPROTO_TCP;
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
259
  		irc[i].expect_policy = &irc_exp_policy;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
260
261
  		irc[i].me = THIS_MODULE;
  		irc[i].help = help;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
262
  		if (ports[i] == IRC_PORT)
3a8fc53a4   Pablo Neira Ayuso   netfilter: nf_ct_...
263
  			sprintf(irc[i].name, "irc");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
264
  		else
3a8fc53a4   Pablo Neira Ayuso   netfilter: nf_ct_...
265
  			sprintf(irc[i].name, "irc-%u", i);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
266
267
268
  
  		ret = nf_conntrack_helper_register(&irc[i]);
  		if (ret) {
654d0fbdc   Stephen Hemminger   netfilter: cleanu...
269
  			printk(KERN_ERR "nf_ct_irc: failed to register helper "
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
  			       "for pf: %u port: %u
  ",
  			       irc[i].tuple.src.l3num, ports[i]);
  			nf_conntrack_irc_fini();
  			return ret;
  		}
  	}
  	return 0;
  }
  
  /* This function is intentionally _NOT_ defined as __exit, because
   * it is needed by the init function */
  static void nf_conntrack_irc_fini(void)
  {
  	int i;
  
  	for (i = 0; i < ports_c; i++)
  		nf_conntrack_helper_unregister(&irc[i]);
  	kfree(irc_buffer);
  }
  
  module_init(nf_conntrack_irc_init);
  module_exit(nf_conntrack_irc_fini);