]> bbs.cooldavid.org Git - net-next-2.6.git/blob - net/netfilter/ipvs/ip_vs_ftp.c
ipvs: netfilter connection tracking changes
[net-next-2.6.git] / net / netfilter / ipvs / ip_vs_ftp.c
1 /*
2  * ip_vs_ftp.c: IPVS ftp application module
3  *
4  * Authors:     Wensong Zhang <wensong@linuxvirtualserver.org>
5  *
6  * Changes:
7  *
8  *
9  *      This program is free software; you can redistribute it and/or
10  *      modify it under the terms of the GNU General Public License
11  *      as published by the Free Software Foundation; either version
12  *      2 of the License, or (at your option) any later version.
13  *
14  * Most code here is taken from ip_masq_ftp.c in kernel 2.2. The difference
15  * is that ip_vs_ftp module handles the reverse direction to ip_masq_ftp.
16  *
17  *              IP_MASQ_FTP ftp masquerading module
18  *
19  * Version:     @(#)ip_masq_ftp.c 0.04   02/05/96
20  *
21  * Author:      Wouter Gadeyne
22  *
23  */
24
25 #define KMSG_COMPONENT "IPVS"
26 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
27
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/kernel.h>
31 #include <linux/skbuff.h>
32 #include <linux/in.h>
33 #include <linux/ip.h>
34 #include <linux/netfilter.h>
35 #include <net/netfilter/nf_conntrack.h>
36 #include <net/netfilter/nf_conntrack_expect.h>
37 #include <net/netfilter/nf_nat.h>
38 #include <net/netfilter/nf_nat_helper.h>
39 #include <linux/gfp.h>
40 #include <net/protocol.h>
41 #include <net/tcp.h>
42 #include <asm/unaligned.h>
43
44 #include <net/ip_vs.h>
45
46
47 #define SERVER_STRING "227 Entering Passive Mode ("
48 #define CLIENT_STRING "PORT "
49
50
51 /*
52  * List of ports (up to IP_VS_APP_MAX_PORTS) to be handled by helper
53  * First port is set to the default port.
54  */
55 static unsigned short ports[IP_VS_APP_MAX_PORTS] = {21, 0};
56 module_param_array(ports, ushort, NULL, 0);
57 MODULE_PARM_DESC(ports, "Ports to monitor for FTP control commands");
58
59
60 /*      Dummy variable */
61 static int ip_vs_ftp_pasv;
62
63
64 static int
65 ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
66 {
67         /* We use connection tracking for the command connection */
68         cp->flags |= IP_VS_CONN_F_NFCT;
69         return 0;
70 }
71
72
73 static int
74 ip_vs_ftp_done_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
75 {
76         return 0;
77 }
78
79
80 /*
81  * Get <addr,port> from the string "xxx.xxx.xxx.xxx,ppp,ppp", started
82  * with the "pattern" and terminated with the "term" character.
83  * <addr,port> is in network order.
84  */
85 static int ip_vs_ftp_get_addrport(char *data, char *data_limit,
86                                   const char *pattern, size_t plen, char term,
87                                   __be32 *addr, __be16 *port,
88                                   char **start, char **end)
89 {
90         unsigned char p[6];
91         int i = 0;
92
93         if (data_limit - data < plen) {
94                 /* check if there is partial match */
95                 if (strnicmp(data, pattern, data_limit - data) == 0)
96                         return -1;
97                 else
98                         return 0;
99         }
100
101         if (strnicmp(data, pattern, plen) != 0) {
102                 return 0;
103         }
104         *start = data + plen;
105
106         for (data = *start; *data != term; data++) {
107                 if (data == data_limit)
108                         return -1;
109         }
110         *end = data;
111
112         memset(p, 0, sizeof(p));
113         for (data = *start; data != *end; data++) {
114                 if (*data >= '0' && *data <= '9') {
115                         p[i] = p[i]*10 + *data - '0';
116                 } else if (*data == ',' && i < 5) {
117                         i++;
118                 } else {
119                         /* unexpected character */
120                         return -1;
121                 }
122         }
123
124         if (i != 5)
125                 return -1;
126
127         *addr = get_unaligned((__be32 *)p);
128         *port = get_unaligned((__be16 *)(p + 4));
129         return 1;
130 }
131
132 /*
133  * Look at outgoing ftp packets to catch the response to a PASV command
134  * from the server (inside-to-outside).
135  * When we see one, we build a connection entry with the client address,
136  * client port 0 (unknown at the moment), the server address and the
137  * server port.  Mark the current connection entry as a control channel
138  * of the new entry. All this work is just to make the data connection
139  * can be scheduled to the right server later.
140  *
141  * The outgoing packet should be something like
142  *   "227 Entering Passive Mode (xxx,xxx,xxx,xxx,ppp,ppp)".
143  * xxx,xxx,xxx,xxx is the server address, ppp,ppp is the server port number.
144  */
145 static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
146                          struct sk_buff *skb, int *diff)
147 {
148         struct iphdr *iph;
149         struct tcphdr *th;
150         char *data, *data_limit;
151         char *start, *end;
152         union nf_inet_addr from;
153         __be16 port;
154         struct ip_vs_conn *n_cp;
155         char buf[24];           /* xxx.xxx.xxx.xxx,ppp,ppp\000 */
156         unsigned buf_len;
157         int ret = 0;
158         enum ip_conntrack_info ctinfo;
159         struct nf_conn *ct;
160
161 #ifdef CONFIG_IP_VS_IPV6
162         /* This application helper doesn't work with IPv6 yet,
163          * so turn this into a no-op for IPv6 packets
164          */
165         if (cp->af == AF_INET6)
166                 return 1;
167 #endif
168
169         *diff = 0;
170
171         /* Only useful for established sessions */
172         if (cp->state != IP_VS_TCP_S_ESTABLISHED)
173                 return 1;
174
175         /* Linear packets are much easier to deal with. */
176         if (!skb_make_writable(skb, skb->len))
177                 return 0;
178
179         if (cp->app_data == &ip_vs_ftp_pasv) {
180                 iph = ip_hdr(skb);
181                 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
182                 data = (char *)th + (th->doff << 2);
183                 data_limit = skb_tail_pointer(skb);
184
185                 if (ip_vs_ftp_get_addrport(data, data_limit,
186                                            SERVER_STRING,
187                                            sizeof(SERVER_STRING)-1, ')',
188                                            &from.ip, &port,
189                                            &start, &end) != 1)
190                         return 1;
191
192                 IP_VS_DBG(7, "PASV response (%pI4:%d) -> %pI4:%d detected\n",
193                           &from.ip, ntohs(port), &cp->caddr.ip, 0);
194
195                 /*
196                  * Now update or create an connection entry for it
197                  */
198                 n_cp = ip_vs_conn_out_get(AF_INET, iph->protocol, &from, port,
199                                           &cp->caddr, 0);
200                 if (!n_cp) {
201                         n_cp = ip_vs_conn_new(AF_INET, IPPROTO_TCP,
202                                               &cp->caddr, 0,
203                                               &cp->vaddr, port,
204                                               &from, port,
205                                               IP_VS_CONN_F_NO_CPORT |
206                                               IP_VS_CONN_F_NFCT,
207                                               cp->dest);
208                         if (!n_cp)
209                                 return 0;
210
211                         /* add its controller */
212                         ip_vs_control_add(n_cp, cp);
213                 }
214
215                 /*
216                  * Replace the old passive address with the new one
217                  */
218                 from.ip = n_cp->vaddr.ip;
219                 port = n_cp->vport;
220                 snprintf(buf, sizeof(buf), "%u,%u,%u,%u,%u,%u",
221                          ((unsigned char *)&from.ip)[0],
222                          ((unsigned char *)&from.ip)[1],
223                          ((unsigned char *)&from.ip)[2],
224                          ((unsigned char *)&from.ip)[3],
225                          ntohs(port) >> 8,
226                          ntohs(port) & 0xFF);
227
228                 buf_len = strlen(buf);
229
230                 ct = nf_ct_get(skb, &ctinfo);
231                 if (ct && !nf_ct_is_untracked(ct) && nfct_nat(ct)) {
232                         /* If mangling fails this function will return 0
233                          * which will cause the packet to be dropped.
234                          * Mangling can only fail under memory pressure,
235                          * hopefully it will succeed on the retransmitted
236                          * packet.
237                          */
238                         ret = nf_nat_mangle_tcp_packet(skb, ct, ctinfo,
239                                                        start-data, end-start,
240                                                        buf, buf_len);
241                         if (ret)
242                                 ip_vs_nfct_expect_related(skb, ct, n_cp,
243                                                           IPPROTO_TCP, 0, 0);
244                 }
245
246                 /*
247                  * Not setting 'diff' is intentional, otherwise the sequence
248                  * would be adjusted twice.
249                  */
250
251                 cp->app_data = NULL;
252                 ip_vs_tcp_conn_listen(n_cp);
253                 ip_vs_conn_put(n_cp);
254                 return ret;
255         }
256         return 1;
257 }
258
259
260 /*
261  * Look at incoming ftp packets to catch the PASV/PORT command
262  * (outside-to-inside).
263  *
264  * The incoming packet having the PORT command should be something like
265  *      "PORT xxx,xxx,xxx,xxx,ppp,ppp\n".
266  * xxx,xxx,xxx,xxx is the client address, ppp,ppp is the client port number.
267  * In this case, we create a connection entry using the client address and
268  * port, so that the active ftp data connection from the server can reach
269  * the client.
270  */
271 static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp,
272                         struct sk_buff *skb, int *diff)
273 {
274         struct iphdr *iph;
275         struct tcphdr *th;
276         char *data, *data_start, *data_limit;
277         char *start, *end;
278         union nf_inet_addr to;
279         __be16 port;
280         struct ip_vs_conn *n_cp;
281
282 #ifdef CONFIG_IP_VS_IPV6
283         /* This application helper doesn't work with IPv6 yet,
284          * so turn this into a no-op for IPv6 packets
285          */
286         if (cp->af == AF_INET6)
287                 return 1;
288 #endif
289
290         /* no diff required for incoming packets */
291         *diff = 0;
292
293         /* Only useful for established sessions */
294         if (cp->state != IP_VS_TCP_S_ESTABLISHED)
295                 return 1;
296
297         /* Linear packets are much easier to deal with. */
298         if (!skb_make_writable(skb, skb->len))
299                 return 0;
300
301         /*
302          * Detecting whether it is passive
303          */
304         iph = ip_hdr(skb);
305         th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
306
307         /* Since there may be OPTIONS in the TCP packet and the HLEN is
308            the length of the header in 32-bit multiples, it is accurate
309            to calculate data address by th+HLEN*4 */
310         data = data_start = (char *)th + (th->doff << 2);
311         data_limit = skb_tail_pointer(skb);
312
313         while (data <= data_limit - 6) {
314                 if (strnicmp(data, "PASV\r\n", 6) == 0) {
315                         /* Passive mode on */
316                         IP_VS_DBG(7, "got PASV at %td of %td\n",
317                                   data - data_start,
318                                   data_limit - data_start);
319                         cp->app_data = &ip_vs_ftp_pasv;
320                         return 1;
321                 }
322                 data++;
323         }
324
325         /*
326          * To support virtual FTP server, the scenerio is as follows:
327          *       FTP client ----> Load Balancer ----> FTP server
328          * First detect the port number in the application data,
329          * then create a new connection entry for the coming data
330          * connection.
331          */
332         if (ip_vs_ftp_get_addrport(data_start, data_limit,
333                                    CLIENT_STRING, sizeof(CLIENT_STRING)-1,
334                                    '\r', &to.ip, &port,
335                                    &start, &end) != 1)
336                 return 1;
337
338         IP_VS_DBG(7, "PORT %pI4:%d detected\n", &to.ip, ntohs(port));
339
340         /* Passive mode off */
341         cp->app_data = NULL;
342
343         /*
344          * Now update or create a connection entry for it
345          */
346         IP_VS_DBG(7, "protocol %s %pI4:%d %pI4:%d\n",
347                   ip_vs_proto_name(iph->protocol),
348                   &to.ip, ntohs(port), &cp->vaddr.ip, 0);
349
350         n_cp = ip_vs_conn_in_get(AF_INET, iph->protocol,
351                                  &to, port,
352                                  &cp->vaddr, htons(ntohs(cp->vport)-1));
353         if (!n_cp) {
354                 n_cp = ip_vs_conn_new(AF_INET, IPPROTO_TCP,
355                                       &to, port,
356                                       &cp->vaddr, htons(ntohs(cp->vport)-1),
357                                       &cp->daddr, htons(ntohs(cp->dport)-1),
358                                       IP_VS_CONN_F_NFCT,
359                                       cp->dest);
360                 if (!n_cp)
361                         return 0;
362
363                 /* add its controller */
364                 ip_vs_control_add(n_cp, cp);
365         }
366
367         /*
368          *      Move tunnel to listen state
369          */
370         ip_vs_tcp_conn_listen(n_cp);
371         ip_vs_conn_put(n_cp);
372
373         return 1;
374 }
375
376
377 static struct ip_vs_app ip_vs_ftp = {
378         .name =         "ftp",
379         .type =         IP_VS_APP_TYPE_FTP,
380         .protocol =     IPPROTO_TCP,
381         .module =       THIS_MODULE,
382         .incs_list =    LIST_HEAD_INIT(ip_vs_ftp.incs_list),
383         .init_conn =    ip_vs_ftp_init_conn,
384         .done_conn =    ip_vs_ftp_done_conn,
385         .bind_conn =    NULL,
386         .unbind_conn =  NULL,
387         .pkt_out =      ip_vs_ftp_out,
388         .pkt_in =       ip_vs_ftp_in,
389 };
390
391
392 /*
393  *      ip_vs_ftp initialization
394  */
395 static int __init ip_vs_ftp_init(void)
396 {
397         int i, ret;
398         struct ip_vs_app *app = &ip_vs_ftp;
399
400         ret = register_ip_vs_app(app);
401         if (ret)
402                 return ret;
403
404         for (i=0; i<IP_VS_APP_MAX_PORTS; i++) {
405                 if (!ports[i])
406                         continue;
407                 ret = register_ip_vs_app_inc(app, app->protocol, ports[i]);
408                 if (ret)
409                         break;
410                 pr_info("%s: loaded support on port[%d] = %d\n",
411                         app->name, i, ports[i]);
412         }
413
414         if (ret)
415                 unregister_ip_vs_app(app);
416
417         return ret;
418 }
419
420
421 /*
422  *      ip_vs_ftp finish.
423  */
424 static void __exit ip_vs_ftp_exit(void)
425 {
426         unregister_ip_vs_app(&ip_vs_ftp);
427 }
428
429
430 module_init(ip_vs_ftp_init);
431 module_exit(ip_vs_ftp_exit);
432 MODULE_LICENSE("GPL");