f4070b530868da8d93606e1cefea92661d21836c
[linux-flexiantxendom0-3.2.10.git] / net / ipv4 / ipvs / ip_vs_ftp.c
1 /*
2  * ip_vs_ftp.c: IPVS ftp application module
3  *
4  * Version:     $Id: ip_vs_ftp.c,v 1.13 2002/09/15 08:14:08 wensong Exp $
5  *
6  * Authors:     Wensong Zhang <wensong@linuxvirtualserver.org>
7  *
8  * Changes:
9  *
10  *
11  *      This program is free software; you can redistribute it and/or
12  *      modify it under the terms of the GNU General Public License
13  *      as published by the Free Software Foundation; either version
14  *      2 of the License, or (at your option) any later version.
15  *
16  * Most code here is taken from ip_masq_ftp.c in kernel 2.2. The difference
17  * is that ip_vs_ftp module handles the reverse direction to ip_masq_ftp.
18  *
19  *              IP_MASQ_FTP ftp masquerading module
20  *
21  * Version:     @(#)ip_masq_ftp.c 0.04   02/05/96
22  *
23  * Author:      Wouter Gadeyne
24  *
25  */
26
27 #include <linux/config.h>
28 #include <linux/module.h>
29 #include <asm/system.h>
30 #include <linux/types.h>
31 #include <linux/kernel.h>
32 #include <linux/skbuff.h>
33 #include <linux/in.h>
34 #include <linux/ip.h>
35 #include <linux/init.h>
36 #include <net/protocol.h>
37 #include <net/tcp.h>
38
39 #include <net/ip_vs.h>
40
41
42 #define SERVER_STRING "227 Entering Passive Mode ("
43 #define CLIENT_STRING "PORT "
44
45
46 /*
47  * List of ports (up to IP_VS_APP_MAX_PORTS) to be handled by helper
48  * First port is set to the default port.
49  */
50 static int ports[IP_VS_APP_MAX_PORTS] = {21, 0};
51
52 /*
53  *      Debug level
54  */
55 #ifdef CONFIG_IP_VS_DEBUG
56 static int debug=0;
57 MODULE_PARM(debug, "i");
58 #endif
59
60 MODULE_PARM(ports, "1-" __MODULE_STRING(IP_VS_APP_MAX_PORTS) "i");
61
62 /*      Dummy variable */
63 static int ip_vs_ftp_pasv;
64
65
66 static int
67 ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
68 {
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                                   __u32 *addr, __u16 *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 = (p[3]<<24) | (p[2]<<16) | (p[1]<<8) | p[0];
128         *port = (p[5]<<8) | p[4];
129         return 1;
130 }
131
132
133 /*
134  * Look at outgoing ftp packets to catch the response to a PASV command
135  * from the server (inside-to-outside).
136  * When we see one, we build a connection entry with the client address,
137  * client port 0 (unknown at the moment), the server address and the
138  * server port.  Mark the current connection entry as a control channel
139  * of the new entry. All this work is just to make the data connection
140  * can be scheduled to the right server later.
141  *
142  * The outgoing packet should be something like
143  *   "227 Entering Passive Mode (xxx,xxx,xxx,xxx,ppp,ppp)".
144  * xxx,xxx,xxx,xxx is the server address, ppp,ppp is the server port number.
145  */
146 static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
147                          struct sk_buff **pskb, int *diff)
148 {
149         struct iphdr *iph;
150         struct tcphdr *th;
151         char *data, *data_limit;
152         char *start, *end;
153         __u32 from;
154         __u16 port;
155         struct ip_vs_conn *n_cp;
156         char buf[24];           /* xxx.xxx.xxx.xxx,ppp,ppp\000 */
157         unsigned buf_len;
158         int ret;
159
160         *diff = 0;
161
162         /* Only useful for established sessions */
163         if (cp->state != IP_VS_TCP_S_ESTABLISHED)
164                 return 1;
165
166         /* Linear packets are much easier to deal with. */
167         if (!ip_vs_make_skb_writable(pskb, (*pskb)->len))
168                 return 0;
169
170         if (cp->app_data == &ip_vs_ftp_pasv) {
171                 iph = (*pskb)->nh.iph;
172                 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
173                 data = (char *)th + (th->doff << 2);
174                 data_limit = (*pskb)->tail;
175
176                 if (ip_vs_ftp_get_addrport(data, data_limit,
177                                            SERVER_STRING,
178                                            sizeof(SERVER_STRING)-1, ')',
179                                            &from, &port,
180                                            &start, &end) != 1)
181                         return 1;
182
183                 IP_VS_DBG(1-debug, "PASV response (%u.%u.%u.%u:%d) -> "
184                           "%u.%u.%u.%u:%d detected\n",
185                           NIPQUAD(from), ntohs(port), NIPQUAD(cp->caddr), 0);
186
187                 /*
188                  * Now update or create an connection entry for it
189                  */
190                 n_cp = ip_vs_conn_out_get(iph->protocol, from, port,
191                                           cp->caddr, 0);
192                 if (!n_cp) {
193                         n_cp = ip_vs_conn_new(IPPROTO_TCP,
194                                               cp->caddr, 0,
195                                               cp->vaddr, port,
196                                               from, port,
197                                               IP_VS_CONN_F_NO_CPORT,
198                                               cp->dest);
199                         if (!n_cp)
200                                 return 0;
201
202                         /* add its controller */
203                         ip_vs_control_add(n_cp, cp);
204                 }
205
206                 /*
207                  * Replace the old passive address with the new one
208                  */
209                 from = n_cp->vaddr;
210                 port = n_cp->vport;
211                 sprintf(buf,"%d,%d,%d,%d,%d,%d", NIPQUAD(from),
212                         port&255, (port>>8)&255);
213                 buf_len = strlen(buf);
214
215                 /*
216                  * Calculate required delta-offset to keep TCP happy
217                  */
218                 *diff = buf_len - (end-start);
219
220                 if (*diff == 0) {
221                         /* simply replace it with new passive address */
222                         memcpy(start, buf, buf_len);
223                         ret = 1;
224                 } else {
225                         ret = !ip_vs_skb_replace(*pskb, GFP_ATOMIC, start,
226                                           end-start, buf, buf_len);
227                 }
228
229                 cp->app_data = NULL;
230                 ip_vs_tcp_conn_listen(n_cp);
231                 ip_vs_conn_put(n_cp);
232                 return ret;
233         }
234         return 1;
235 }
236
237
238 /*
239  * Look at incoming ftp packets to catch the PASV/PORT command
240  * (outside-to-inside).
241  *
242  * The incoming packet having the PORT command should be something like
243  *      "PORT xxx,xxx,xxx,xxx,ppp,ppp\n".
244  * xxx,xxx,xxx,xxx is the client address, ppp,ppp is the client port number.
245  * In this case, we create a connection entry using the client address and
246  * port, so that the active ftp data connection from the server can reach
247  * the client.
248  */
249 static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp,
250                         struct sk_buff **pskb, int *diff)
251 {
252         struct iphdr *iph;
253         struct tcphdr *th;
254         char *data, *data_start, *data_limit;
255         char *start, *end;
256         __u32 to;
257         __u16 port;
258         struct ip_vs_conn *n_cp;
259
260         /* no diff required for incoming packets */
261         *diff = 0;
262
263         /* Only useful for established sessions */
264         if (cp->state != IP_VS_TCP_S_ESTABLISHED)
265                 return 1;
266
267         /* Linear packets are much easier to deal with. */
268         if (!ip_vs_make_skb_writable(pskb, (*pskb)->len))
269                 return 0;
270
271         /*
272          * Detecting whether it is passive
273          */
274         iph = (*pskb)->nh.iph;
275         th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
276
277         /* Since there may be OPTIONS in the TCP packet and the HLEN is
278            the length of the header in 32-bit multiples, it is accurate
279            to calculate data address by th+HLEN*4 */
280         data = data_start = (char *)th + (th->doff << 2);
281         data_limit = (*pskb)->tail;
282
283         while (data <= data_limit - 6) {
284                 if (strnicmp(data, "PASV\r\n", 6) == 0) {
285                         /* Passive mode on */
286                         IP_VS_DBG(1-debug, "got PASV at %d of %d\n",
287                                   data - data_start,
288                                   data_limit - data_start);
289                         cp->app_data = &ip_vs_ftp_pasv;
290                         return 1;
291                 }
292                 data++;
293         }
294
295         /*
296          * To support virtual FTP server, the scenerio is as follows:
297          *       FTP client ----> Load Balancer ----> FTP server
298          * First detect the port number in the application data,
299          * then create a new connection entry for the coming data
300          * connection.
301          */
302         if (ip_vs_ftp_get_addrport(data_start, data_limit,
303                                    CLIENT_STRING, sizeof(CLIENT_STRING)-1,
304                                    '\r', &to, &port,
305                                    &start, &end) != 1)
306                 return 1;
307
308         IP_VS_DBG(1-debug, "PORT %u.%u.%u.%u:%d detected\n",
309                   NIPQUAD(to), ntohs(port));
310
311         /* Passive mode off */
312         cp->app_data = NULL;
313
314         /*
315          * Now update or create a connection entry for it
316          */
317         IP_VS_DBG(1-debug, "protocol %s %u.%u.%u.%u:%d %u.%u.%u.%u:%d\n",
318                   ip_vs_proto_name(iph->protocol),
319                   NIPQUAD(to), ntohs(port), NIPQUAD(cp->vaddr), 0);
320
321         n_cp = ip_vs_conn_in_get(iph->protocol,
322                                  to, port,
323                                  cp->vaddr, htons(ntohs(cp->vport)-1));
324         if (!n_cp) {
325                 n_cp = ip_vs_conn_new(IPPROTO_TCP,
326                                       to, port,
327                                       cp->vaddr, htons(ntohs(cp->vport)-1),
328                                       cp->daddr, htons(ntohs(cp->dport)-1),
329                                       0,
330                                       cp->dest);
331                 if (!n_cp)
332                         return 0;
333
334                 /* add its controller */
335                 ip_vs_control_add(n_cp, cp);
336         }
337
338         /*
339          *      Move tunnel to listen state
340          */
341         ip_vs_tcp_conn_listen(n_cp);
342         ip_vs_conn_put(n_cp);
343
344         return 1;
345 }
346
347
348 static struct ip_vs_app ip_vs_ftp = {
349         .name =         "ftp",
350         .type =         IP_VS_APP_TYPE_FTP,
351         .protocol =     IPPROTO_TCP,
352         .module =       THIS_MODULE,
353         .incs_list =    LIST_HEAD_INIT(ip_vs_ftp.incs_list),
354         .init_conn =    ip_vs_ftp_init_conn,
355         .done_conn =    ip_vs_ftp_done_conn,
356         .bind_conn =    NULL,
357         .unbind_conn =  NULL,
358         .pkt_out =      ip_vs_ftp_out,
359         .pkt_in =       ip_vs_ftp_in,
360 };
361
362
363 /*
364  *      ip_vs_ftp initialization
365  */
366 static int __init ip_vs_ftp_init(void)
367 {
368         int i, ret;
369         struct ip_vs_app *app = &ip_vs_ftp;
370
371         ret = register_ip_vs_app(app);
372         if (ret)
373                 return ret;
374
375         for (i=0; i<IP_VS_APP_MAX_PORTS; i++) {
376                 if (!ports[i])
377                         continue;
378                 ret = register_ip_vs_app_inc(app, app->protocol, ports[i]);
379                 if (ret)
380                         break;
381                 IP_VS_DBG(1-debug, "%s: loaded support on port[%d] = %d\n",
382                           app->name, i, ports[i]);
383         }
384
385         if (ret)
386                 unregister_ip_vs_app(app);
387
388         return ret;
389 }
390
391
392 /*
393  *      ip_vs_ftp finish.
394  */
395 static void __exit ip_vs_ftp_exit(void)
396 {
397         unregister_ip_vs_app(&ip_vs_ftp);
398 }
399
400
401 module_init(ip_vs_ftp_init);
402 module_exit(ip_vs_ftp_exit);
403 MODULE_LICENSE("GPL");