1
2
3
4
5
6
7
8
9
10
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/skbuff.h>
14#include <linux/in.h>
15#include <linux/ip.h>
16#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];
26static unsigned int ports_c;
27static unsigned int max_dcc_channels = 8;
28static unsigned int dcc_timeout __read_mostly = 300;
29
30static char *irc_buffer;
31static DEFINE_SPINLOCK(irc_buffer_lock);
32
33unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
34 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");
44MODULE_ALIAS_NFCT_HELPER("irc");
45
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
54static const char *const dccprotos[] = {
55 "SEND ", "CHAT ", "MOVE ", "TSEND ", "SCHAT "
56};
57
58#define MINMATCHLEN 5
59
60
61
62
63
64
65
66
67
68
69static int parse_dcc(char *data, const char *data_end, u_int32_t *ip,
70 u_int16_t *port, char **ad_beg_p, char **ad_end_p)
71{
72 char *tmp;
73
74
75 while (*data++ != ' ')
76 if (data > data_end - 12)
77 return -1;
78
79
80
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
87 *ad_beg_p = data;
88 *ip = simple_strtoul(data, &data, 10);
89
90
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
103static int help(struct sk_buff *skb, unsigned int protoff,
104 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
105{
106 unsigned int dataoff;
107 const struct iphdr *iph;
108 const struct tcphdr *th;
109 struct tcphdr _tcph;
110 const char *data_limit;
111 char *data, *ib_ptr;
112 int dir = CTINFO2DIR(ctinfo);
113 struct nf_conntrack_expect *exp;
114 struct nf_conntrack_tuple *tuple;
115 u_int32_t dcc_ip;
116 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
123 if (dir == IP_CT_DIR_REPLY)
124 return NF_ACCEPT;
125
126
127 if (ctinfo != IP_CT_ESTABLISHED &&
128 ctinfo != IP_CT_ESTABLISHED + IP_CT_IS_REPLY)
129 return NF_ACCEPT;
130
131
132 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
133 if (th == NULL)
134 return NF_ACCEPT;
135
136
137 dataoff = protoff + th->doff*4;
138 if (dataoff >= skb->len)
139 return NF_ACCEPT;
140
141 spin_lock_bh(&irc_buffer_lock);
142 ib_ptr = skb_header_pointer(skb, dataoff, skb->len - dataoff,
143 irc_buffer);
144 BUG_ON(ib_ptr == NULL);
145
146 data = ib_ptr;
147 data_limit = ib_ptr + skb->len - dataoff;
148
149
150
151 while (data < data_limit - (19 + MINMATCHLEN)) {
152 if (memcmp(data, "\1DCC ", 5)) {
153 data++;
154 continue;
155 }
156 data += 5;
157
158
159 iph = ip_hdr(skb);
160 pr_debug("DCC found in master %pI4:%u %pI4:%u\n",
161 &iph->saddr, ntohs(th->source),
162 &iph->daddr, ntohs(th->dest));
163
164 for (i = 0; i < ARRAY_SIZE(dccprotos); i++) {
165 if (memcmp(data, dccprotos[i], strlen(dccprotos[i]))) {
166
167 continue;
168 }
169 data += strlen(dccprotos[i]);
170 pr_debug("DCC %s detected\n", dccprotos[i]);
171
172
173
174
175 if (parse_dcc(data, data_limit, &dcc_ip,
176 &dcc_port, &addr_beg_p, &addr_end_p)) {
177 pr_debug("unable to parse dcc command\n");
178 continue;
179 }
180 pr_debug("DCC bound ip/port: %u.%u.%u.%u:%u\n",
181 HIPQUAD(dcc_ip), dcc_port);
182
183
184 tuple = &ct->tuplehash[dir].tuple;
185 if (tuple->src.u3.ip != htonl(dcc_ip) &&
186 tuple->dst.u3.ip != htonl(dcc_ip)) {
187 if (net_ratelimit())
188 printk(KERN_WARNING
189 "Forged DCC command from %pI4: %pI4:%u\n",
190 &tuple->src.u3.ip,
191 &dcc_ip, dcc_port);
192 continue;
193 }
194
195 exp = nf_ct_expect_alloc(ct);
196 if (exp == NULL) {
197 ret = NF_DROP;
198 goto out;
199 }
200 tuple = &ct->tuplehash[!dir].tuple;
201 port = htons(dcc_port);
202 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT,
203 tuple->src.l3num,
204 NULL, &tuple->dst.u3,
205 IPPROTO_TCP, NULL, &port);
206
207 nf_nat_irc = rcu_dereference(nf_nat_irc_hook);
208 if (nf_nat_irc && ct->status & IPS_NAT_MASK)
209 ret = nf_nat_irc(skb, ctinfo,
210 addr_beg_p - ib_ptr,
211 addr_end_p - addr_beg_p,
212 exp);
213 else if (nf_ct_expect_related(exp) != 0)
214 ret = NF_DROP;
215 nf_ct_expect_put(exp);
216 goto out;
217 }
218 }
219 out:
220 spin_unlock_bh(&irc_buffer_lock);
221 return ret;
222}
223
224static struct nf_conntrack_helper irc[MAX_PORTS] __read_mostly;
225static char irc_names[MAX_PORTS][sizeof("irc-65535")] __read_mostly;
226static struct nf_conntrack_expect_policy irc_exp_policy;
227
228static void nf_conntrack_irc_fini(void);
229
230static int __init nf_conntrack_irc_init(void)
231{
232 int i, ret;
233 char *tmpname;
234
235 if (max_dcc_channels < 1) {
236 printk("nf_ct_irc: max_dcc_channels must not be zero\n");
237 return -EINVAL;
238 }
239
240 irc_exp_policy.max_expected = max_dcc_channels;
241 irc_exp_policy.timeout = dcc_timeout;
242
243 irc_buffer = kmalloc(65536, GFP_KERNEL);
244 if (!irc_buffer)
245 return -ENOMEM;
246
247
248 if (ports_c == 0)
249 ports[ports_c++] = IRC_PORT;
250
251 for (i = 0; i < ports_c; i++) {
252 irc[i].tuple.src.l3num = AF_INET;
253 irc[i].tuple.src.u.tcp.port = htons(ports[i]);
254 irc[i].tuple.dst.protonum = IPPROTO_TCP;
255 irc[i].expect_policy = &irc_exp_policy;
256 irc[i].me = THIS_MODULE;
257 irc[i].help = help;
258
259 tmpname = &irc_names[i][0];
260 if (ports[i] == IRC_PORT)
261 sprintf(tmpname, "irc");
262 else
263 sprintf(tmpname, "irc-%u", i);
264 irc[i].name = tmpname;
265
266 ret = nf_conntrack_helper_register(&irc[i]);
267 if (ret) {
268 printk("nf_ct_irc: failed to register helper "
269 "for pf: %u port: %u\n",
270 irc[i].tuple.src.l3num, ports[i]);
271 nf_conntrack_irc_fini();
272 return ret;
273 }
274 }
275 return 0;
276}
277
278
279
280static void nf_conntrack_irc_fini(void)
281{
282 int i;
283
284 for (i = 0; i < ports_c; i++)
285 nf_conntrack_helper_unregister(&irc[i]);
286 kfree(irc_buffer);
287}
288
289module_init(nf_conntrack_irc_init);
290module_exit(nf_conntrack_irc_fini);
291