2 * Copyright (c) 2001 Charles Mott <cm@linktel.net>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/lib/libalias/alias_ftp.c,v 1.5.2.7 2001/12/06 09:00:26 ru Exp $
27 * $DragonFly: src/lib/libalias/alias_ftp.c,v 1.3 2004/08/20 00:08:17 joerg Exp $
31 Alias_ftp.c performs special processing for FTP sessions under
32 TCP. Specifically, when a PORT/EPRT command from the client
33 side or 227/229 reply from the server is sent, it is intercepted
34 and modified. The address is changed to the gateway machine
35 and an aliasing port is used.
37 For this routine to work, the message must fit entirely into a
38 single TCP packet. This is typically the case, but exceptions
39 can easily be envisioned under the actual specifications.
41 Probably the most troubling aspect of the approach taken here is
42 that the new message will typically be a different length, and
43 this causes a certain amount of bookkeeping to keep track of the
44 changes of sequence and acknowledgment numbers, since the client
45 machine is totally unaware of the modification to the TCP stream.
48 References: RFC 959, RFC 2428.
50 Initial version: August, 1996 (cjm)
53 Brian Somers and Martin Renters identified an IP checksum
54 error for modified IP packets.
56 Version 1.7: January 9, 1996 (cjm)
57 Differential checksum computation for change
60 Version 2.1: May, 1997 (cjm)
61 Very minor changes to conform with
62 local/global/function naming conventions
63 within the packet aliasing module.
65 Version 3.1: May, 2000 (eds)
66 Add support for passive mode, alias the 227 replies.
68 See HISTORY file for record of revisions.
72 #include <sys/param.h>
76 #include <netinet/in_systm.h>
77 #include <netinet/in.h>
78 #include <netinet/ip.h>
79 #include <netinet/tcp.h>
81 #include "alias_local.h"
83 #define FTP_CONTROL_PORT_NUMBER 21
84 #define MAX_MESSAGE_SIZE 128
86 enum ftp_message_type
{
94 static int ParseFtpPortCommand(char *, int);
95 static int ParseFtpEprtCommand(char *, int);
96 static int ParseFtp227Reply(char *, int);
97 static int ParseFtp229Reply(char *, int);
98 static void NewFtpMessage(struct ip
*, struct alias_link
*, int, int);
100 static struct in_addr true_addr
; /* in network byte order. */
101 static u_short true_port
; /* in host byte order. */
105 struct ip
*pip
, /* IP packet to examine/patch */
106 struct alias_link
*link
, /* The link to go through (aliased port) */
107 int maxpacketsize
/* The maximum size this packet can grow to (including headers) */)
109 int hlen
, tlen
, dlen
;
112 int ftp_message_type
;
114 /* Calculate data length of TCP packet */
115 tc
= (struct tcphdr
*) ((char *) pip
+ (pip
->ip_hl
<< 2));
116 hlen
= (pip
->ip_hl
+ tc
->th_off
) << 2;
117 tlen
= ntohs(pip
->ip_len
);
120 /* Place string pointer and beginning of data */
125 * Check that data length is not too long and previous message was
126 * properly terminated with CRLF.
128 if (dlen
<= MAX_MESSAGE_SIZE
&& GetLastLineCrlfTermed(link
)) {
129 ftp_message_type
= FTP_UNKNOWN_MESSAGE
;
131 if (ntohs(tc
->th_dport
) == FTP_CONTROL_PORT_NUMBER
) {
133 * When aliasing a client, check for the PORT/EPRT command.
135 if (ParseFtpPortCommand(sptr
, dlen
))
136 ftp_message_type
= FTP_PORT_COMMAND
;
137 else if (ParseFtpEprtCommand(sptr
, dlen
))
138 ftp_message_type
= FTP_EPRT_COMMAND
;
141 * When aliasing a server, check for the 227/229 reply.
143 if (ParseFtp227Reply(sptr
, dlen
))
144 ftp_message_type
= FTP_227_REPLY
;
145 else if (ParseFtp229Reply(sptr
, dlen
)) {
146 ftp_message_type
= FTP_229_REPLY
;
147 true_addr
.s_addr
= pip
->ip_src
.s_addr
;
151 if (ftp_message_type
!= FTP_UNKNOWN_MESSAGE
)
152 NewFtpMessage(pip
, link
, maxpacketsize
, ftp_message_type
);
155 /* Track the msgs which are CRLF term'd for PORT/PASV FW breach */
157 if (dlen
) { /* only if there's data */
158 sptr
= (char *) pip
; /* start over at beginning */
159 tlen
= ntohs(pip
->ip_len
); /* recalc tlen, pkt may have grown */
160 SetLastLineCrlfTermed(link
,
161 (sptr
[tlen
-2] == '\r') && (sptr
[tlen
-1] == '\n'));
166 ParseFtpPortCommand(char *sptr
, int dlen
)
174 /* Format: "PORT A,D,D,R,PO,RT". */
176 /* Return if data length is too short. */
180 addr
= port
= octet
= 0;
182 for (i
= 0; i
< dlen
; i
++) {
185 case -4: if (ch
== 'P') state
++; else return 0; break;
186 case -3: if (ch
== 'O') state
++; else return 0; break;
187 case -2: if (ch
== 'R') state
++; else return 0; break;
188 case -1: if (ch
== 'T') state
++; else return 0; break;
195 case 1: case 3: case 5: case 7: case 9: case 11:
202 case 2: case 4: case 6: case 8:
204 octet
= 10 * octet
+ ch
- '0';
205 else if (ch
== ',') {
206 addr
= (addr
<< 8) + octet
;
213 octet
= 10 * octet
+ ch
- '0';
214 else if (ch
== ',' || state
== 12) {
215 port
= (port
<< 8) + octet
;
224 true_addr
.s_addr
= htonl(addr
);
232 ParseFtpEprtCommand(char *sptr
, int dlen
)
240 /* Format: "EPRT |1|A.D.D.R|PORT|". */
242 /* Return if data length is too short. */
246 addr
= port
= octet
= 0;
247 delim
= '|'; /* XXX gcc -Wuninitialized */
249 for (i
= 0; i
< dlen
; i
++) {
253 case -4: if (ch
== 'E') state
++; else return 0; break;
254 case -3: if (ch
== 'P') state
++; else return 0; break;
255 case -2: if (ch
== 'R') state
++; else return 0; break;
256 case -1: if (ch
== 'T') state
++; else return 0; break;
265 if (ch
== '1') /* IPv4 address */
276 case 3: case 5: case 7: case 9:
283 case 4: case 6: case 8: case 10:
285 octet
= 10 * octet
+ ch
- '0';
286 else if (ch
== '.' || state
== 10) {
287 addr
= (addr
<< 8) + octet
;
301 port
= 10 * port
+ ch
- '0';
302 else if (ch
== delim
)
311 true_addr
.s_addr
= htonl(addr
);
319 ParseFtp227Reply(char *sptr
, int dlen
)
327 /* Format: "227 Entering Passive Mode (A,D,D,R,PO,RT)" */
329 /* Return if data length is too short. */
333 addr
= port
= octet
= 0;
336 for (i
= 0; i
< dlen
; i
++) {
340 case -3: if (ch
== '2') state
++; else return 0; break;
341 case -2: if (ch
== '2') state
++; else return 0; break;
342 case -1: if (ch
== '7') state
++; else return 0; break;
348 case 1: case 3: case 5: case 7: case 9: case 11:
355 case 2: case 4: case 6: case 8:
357 octet
= 10 * octet
+ ch
- '0';
358 else if (ch
== ',') {
359 addr
= (addr
<< 8) + octet
;
366 octet
= 10 * octet
+ ch
- '0';
367 else if (ch
== ',' || (state
== 12 && ch
== ')')) {
368 port
= (port
<< 8) + octet
;
378 true_addr
.s_addr
= htonl(addr
);
385 ParseFtp229Reply(char *sptr
, int dlen
)
391 /* Format: "229 Entering Extended Passive Mode (|||PORT|)" */
393 /* Return if data length is too short. */
398 delim
= '|'; /* XXX gcc -Wuninitialized */
401 for (i
= 0; i
< dlen
; i
++) {
405 case -3: if (ch
== '2') state
++; else return 0; break;
406 case -2: if (ch
== '2') state
++; else return 0; break;
407 case -1: if (ch
== '9') state
++; else return 0; break;
432 port
= 10 * port
+ ch
- '0';
433 else if (ch
== delim
)
455 NewFtpMessage(struct ip
*pip
,
456 struct alias_link
*link
,
458 int ftp_message_type
)
460 struct alias_link
*ftp_link
;
462 /* Security checks. */
463 if (pip
->ip_src
.s_addr
!= true_addr
.s_addr
)
466 if (true_port
< IPPORT_RESERVED
)
469 /* Establish link to address and port found in FTP control message. */
470 ftp_link
= FindUdpTcpOut(true_addr
, GetDestAddress(link
),
471 htons(true_port
), 0, IPPROTO_TCP
, 1);
473 if (ftp_link
!= NULL
)
475 int slen
, hlen
, tlen
, dlen
;
479 /* Punch hole in firewall */
480 PunchFWHole(ftp_link
);
483 /* Calculate data length of TCP packet */
484 tc
= (struct tcphdr
*) ((char *) pip
+ (pip
->ip_hl
<< 2));
485 hlen
= (pip
->ip_hl
+ tc
->th_off
) << 2;
486 tlen
= ntohs(pip
->ip_len
);
489 /* Create new FTP message. */
491 char stemp
[MAX_MESSAGE_SIZE
+ 1];
495 int a1
, a2
, a3
, a4
, p1
, p2
;
496 struct in_addr alias_address
;
498 /* Decompose alias address into quad format */
499 alias_address
= GetAliasAddress(link
);
500 ptr
= (u_char
*) &alias_address
.s_addr
;
501 a1
= *ptr
++; a2
=*ptr
++; a3
=*ptr
++; a4
=*ptr
;
503 alias_port
= GetAliasPort(ftp_link
);
505 switch (ftp_message_type
)
507 case FTP_PORT_COMMAND
:
509 /* Decompose alias port into pair format. */
510 ptr
= (char *) &alias_port
;
511 p1
= *ptr
++; p2
=*ptr
;
513 if (ftp_message_type
== FTP_PORT_COMMAND
) {
514 /* Generate PORT command string. */
515 sprintf(stemp
, "PORT %d,%d,%d,%d,%d,%d\r\n",
518 /* Generate 227 reply string. */
520 "227 Entering Passive Mode (%d,%d,%d,%d,%d,%d)\r\n",
524 case FTP_EPRT_COMMAND
:
525 /* Generate EPRT command string. */
526 sprintf(stemp
, "EPRT |1|%d.%d.%d.%d|%d|\r\n",
527 a1
,a2
,a3
,a4
,ntohs(alias_port
));
530 /* Generate 229 reply string. */
531 sprintf(stemp
, "229 Entering Extended Passive Mode (|||%d|)\r\n",
536 /* Save string length for IP header modification */
537 slen
= strlen(stemp
);
539 /* Copy modified buffer into IP packet. */
540 sptr
= (char *) pip
; sptr
+= hlen
;
541 strncpy(sptr
, stemp
, maxpacketsize
-hlen
);
544 /* Save information regarding modified seq and ack numbers */
548 SetAckModified(link
);
549 delta
= GetDeltaSeqOut(pip
, link
);
550 AddSeq(pip
, link
, delta
+slen
-dlen
);
553 /* Revise IP header */
557 new_len
= htons(hlen
+ slen
);
558 DifferentialChecksum(&pip
->ip_sum
,
562 pip
->ip_len
= new_len
;
565 /* Compute TCP checksum for revised packet */
567 tc
->th_sum
= TcpChecksum(pip
);
573 "PacketAlias/HandleFtpOut: Cannot allocate FTP data port\n");