blob: 9c16a3f64c1b6dd5ee212d2e2529f33f32706805 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_ftp.c: IPVS ftp application module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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
Hannes Eder9aada7a2009-07-30 14:29:44 -070025#define KMSG_COMPONENT "IPVS"
26#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Herbert Xuaf1e1cf2007-10-14 00:39:33 -070034#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/protocol.h>
36#include <net/tcp.h>
Al Viro96d2ca42006-09-28 14:31:49 -070037#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
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 */
Simon Horman28b06c32006-09-27 22:53:24 -070050static unsigned short ports[IP_VS_APP_MAX_PORTS] = {21, 0};
51module_param_array(ports, ushort, NULL, 0);
Simon Horman70e76b72006-09-13 19:57:54 -070052MODULE_PARM_DESC(ports, "Ports to monitor for FTP control commands");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* Dummy variable */
56static int ip_vs_ftp_pasv;
57
58
59static int
60ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
61{
62 return 0;
63}
64
65
66static int
67ip_vs_ftp_done_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
68{
69 return 0;
70}
71
72
73/*
74 * Get <addr,port> from the string "xxx.xxx.xxx.xxx,ppp,ppp", started
75 * with the "pattern" and terminated with the "term" character.
76 * <addr,port> is in network order.
77 */
78static int ip_vs_ftp_get_addrport(char *data, char *data_limit,
79 const char *pattern, size_t plen, char term,
Al Viro014d7302006-09-28 14:29:52 -070080 __be32 *addr, __be16 *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 char **start, char **end)
82{
83 unsigned char p[6];
84 int i = 0;
85
86 if (data_limit - data < plen) {
87 /* check if there is partial match */
88 if (strnicmp(data, pattern, data_limit - data) == 0)
89 return -1;
90 else
91 return 0;
92 }
93
94 if (strnicmp(data, pattern, plen) != 0) {
95 return 0;
96 }
97 *start = data + plen;
98
99 for (data = *start; *data != term; data++) {
100 if (data == data_limit)
101 return -1;
102 }
103 *end = data;
104
105 memset(p, 0, sizeof(p));
106 for (data = *start; data != *end; data++) {
107 if (*data >= '0' && *data <= '9') {
108 p[i] = p[i]*10 + *data - '0';
109 } else if (*data == ',' && i < 5) {
110 i++;
111 } else {
112 /* unexpected character */
113 return -1;
114 }
115 }
116
117 if (i != 5)
118 return -1;
119
Al Viro96d2ca42006-09-28 14:31:49 -0700120 *addr = get_unaligned((__be32 *)p);
121 *port = get_unaligned((__be16 *)(p + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 1;
123}
124
125
126/*
127 * Look at outgoing ftp packets to catch the response to a PASV command
128 * from the server (inside-to-outside).
129 * When we see one, we build a connection entry with the client address,
130 * client port 0 (unknown at the moment), the server address and the
131 * server port. Mark the current connection entry as a control channel
132 * of the new entry. All this work is just to make the data connection
133 * can be scheduled to the right server later.
134 *
135 * The outgoing packet should be something like
136 * "227 Entering Passive Mode (xxx,xxx,xxx,xxx,ppp,ppp)".
137 * xxx,xxx,xxx,xxx is the server address, ppp,ppp is the server port number.
138 */
139static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700140 struct sk_buff *skb, int *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct iphdr *iph;
143 struct tcphdr *th;
144 char *data, *data_limit;
145 char *start, *end;
Julius Volz28364a52008-09-02 15:55:43 +0200146 union nf_inet_addr from;
Al Viro014d7302006-09-28 14:29:52 -0700147 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct ip_vs_conn *n_cp;
149 char buf[24]; /* xxx.xxx.xxx.xxx,ppp,ppp\000 */
150 unsigned buf_len;
151 int ret;
152
Julius Volza0eb6622008-09-02 15:55:51 +0200153#ifdef CONFIG_IP_VS_IPV6
154 /* This application helper doesn't work with IPv6 yet,
155 * so turn this into a no-op for IPv6 packets
156 */
157 if (cp->af == AF_INET6)
158 return 1;
159#endif
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *diff = 0;
162
163 /* Only useful for established sessions */
164 if (cp->state != IP_VS_TCP_S_ESTABLISHED)
165 return 1;
166
167 /* Linear packets are much easier to deal with. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700168 if (!skb_make_writable(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170
171 if (cp->app_data == &ip_vs_ftp_pasv) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700172 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
174 data = (char *)th + (th->doff << 2);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700175 data_limit = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (ip_vs_ftp_get_addrport(data, data_limit,
178 SERVER_STRING,
179 sizeof(SERVER_STRING)-1, ')',
Julius Volz28364a52008-09-02 15:55:43 +0200180 &from.ip, &port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 &start, &end) != 1)
182 return 1;
183
Harvey Harrison14d5e832008-10-31 00:54:29 -0700184 IP_VS_DBG(7, "PASV response (%pI4:%d) -> %pI4:%d detected\n",
185 &from.ip, ntohs(port), &cp->caddr.ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /*
188 * Now update or create an connection entry for it
189 */
Julius Volz28364a52008-09-02 15:55:43 +0200190 n_cp = ip_vs_conn_out_get(AF_INET, iph->protocol, &from, port,
191 &cp->caddr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (!n_cp) {
Julius Volz28364a52008-09-02 15:55:43 +0200193 n_cp = ip_vs_conn_new(AF_INET, IPPROTO_TCP,
194 &cp->caddr, 0,
195 &cp->vaddr, port,
196 &from, port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 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 */
Julius Volz28364a52008-09-02 15:55:43 +0200209 from.ip = n_cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 port = n_cp->vport;
Julius Volz28364a52008-09-02 15:55:43 +0200211 sprintf(buf, "%d,%d,%d,%d,%d,%d", NIPQUAD(from.ip),
Julian Anastasovbb831eb2006-11-10 14:57:37 -0800212 (ntohs(port)>>8)&255, ntohs(port)&255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 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 {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700225 ret = !ip_vs_skb_replace(skb, GFP_ATOMIC, start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 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 */
249static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700250 struct sk_buff *skb, int *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct iphdr *iph;
253 struct tcphdr *th;
254 char *data, *data_start, *data_limit;
255 char *start, *end;
Julius Volz28364a52008-09-02 15:55:43 +0200256 union nf_inet_addr to;
Al Viro014d7302006-09-28 14:29:52 -0700257 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct ip_vs_conn *n_cp;
259
Julius Volza0eb6622008-09-02 15:55:51 +0200260#ifdef CONFIG_IP_VS_IPV6
261 /* This application helper doesn't work with IPv6 yet,
262 * so turn this into a no-op for IPv6 packets
263 */
264 if (cp->af == AF_INET6)
265 return 1;
266#endif
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* no diff required for incoming packets */
269 *diff = 0;
270
271 /* Only useful for established sessions */
272 if (cp->state != IP_VS_TCP_S_ESTABLISHED)
273 return 1;
274
275 /* Linear packets are much easier to deal with. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700276 if (!skb_make_writable(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278
279 /*
280 * Detecting whether it is passive
281 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700282 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
284
285 /* Since there may be OPTIONS in the TCP packet and the HLEN is
286 the length of the header in 32-bit multiples, it is accurate
287 to calculate data address by th+HLEN*4 */
288 data = data_start = (char *)th + (th->doff << 2);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700289 data_limit = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 while (data <= data_limit - 6) {
292 if (strnicmp(data, "PASV\r\n", 6) == 0) {
293 /* Passive mode on */
Al Viro5e7ddac2006-10-10 22:49:07 +0100294 IP_VS_DBG(7, "got PASV at %td of %td\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 data - data_start,
296 data_limit - data_start);
297 cp->app_data = &ip_vs_ftp_pasv;
298 return 1;
299 }
300 data++;
301 }
302
303 /*
304 * To support virtual FTP server, the scenerio is as follows:
305 * FTP client ----> Load Balancer ----> FTP server
306 * First detect the port number in the application data,
307 * then create a new connection entry for the coming data
308 * connection.
309 */
310 if (ip_vs_ftp_get_addrport(data_start, data_limit,
311 CLIENT_STRING, sizeof(CLIENT_STRING)-1,
Julius Volz28364a52008-09-02 15:55:43 +0200312 '\r', &to.ip, &port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 &start, &end) != 1)
314 return 1;
315
Harvey Harrison14d5e832008-10-31 00:54:29 -0700316 IP_VS_DBG(7, "PORT %pI4:%d detected\n", &to.ip, ntohs(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* Passive mode off */
319 cp->app_data = NULL;
320
321 /*
322 * Now update or create a connection entry for it
323 */
Harvey Harrison14d5e832008-10-31 00:54:29 -0700324 IP_VS_DBG(7, "protocol %s %pI4:%d %pI4:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 ip_vs_proto_name(iph->protocol),
Harvey Harrison14d5e832008-10-31 00:54:29 -0700326 &to.ip, ntohs(port), &cp->vaddr.ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Julius Volz28364a52008-09-02 15:55:43 +0200328 n_cp = ip_vs_conn_in_get(AF_INET, iph->protocol,
329 &to, port,
330 &cp->vaddr, htons(ntohs(cp->vport)-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (!n_cp) {
Julius Volz28364a52008-09-02 15:55:43 +0200332 n_cp = ip_vs_conn_new(AF_INET, IPPROTO_TCP,
333 &to, port,
334 &cp->vaddr, htons(ntohs(cp->vport)-1),
335 &cp->daddr, htons(ntohs(cp->dport)-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 0,
337 cp->dest);
338 if (!n_cp)
339 return 0;
340
341 /* add its controller */
342 ip_vs_control_add(n_cp, cp);
343 }
344
345 /*
346 * Move tunnel to listen state
347 */
348 ip_vs_tcp_conn_listen(n_cp);
349 ip_vs_conn_put(n_cp);
350
351 return 1;
352}
353
354
355static struct ip_vs_app ip_vs_ftp = {
356 .name = "ftp",
357 .type = IP_VS_APP_TYPE_FTP,
358 .protocol = IPPROTO_TCP,
359 .module = THIS_MODULE,
360 .incs_list = LIST_HEAD_INIT(ip_vs_ftp.incs_list),
361 .init_conn = ip_vs_ftp_init_conn,
362 .done_conn = ip_vs_ftp_done_conn,
363 .bind_conn = NULL,
364 .unbind_conn = NULL,
365 .pkt_out = ip_vs_ftp_out,
366 .pkt_in = ip_vs_ftp_in,
367};
368
369
370/*
371 * ip_vs_ftp initialization
372 */
373static int __init ip_vs_ftp_init(void)
374{
375 int i, ret;
376 struct ip_vs_app *app = &ip_vs_ftp;
377
378 ret = register_ip_vs_app(app);
379 if (ret)
380 return ret;
381
382 for (i=0; i<IP_VS_APP_MAX_PORTS; i++) {
383 if (!ports[i])
384 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 ret = register_ip_vs_app_inc(app, app->protocol, ports[i]);
386 if (ret)
387 break;
Simon Hormanb5522162006-09-13 19:59:23 -0700388 IP_VS_INFO("%s: loaded support on port[%d] = %d\n",
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900389 app->name, i, ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 if (ret)
393 unregister_ip_vs_app(app);
394
395 return ret;
396}
397
398
399/*
400 * ip_vs_ftp finish.
401 */
402static void __exit ip_vs_ftp_exit(void)
403{
404 unregister_ip_vs_app(&ip_vs_ftp);
405}
406
407
408module_init(ip_vs_ftp_init);
409module_exit(ip_vs_ftp_exit);
410MODULE_LICENSE("GPL");