/* Alias_ftp.c performs special processing for FTP sessions under TCP. Specifically, when a PORT command from the client side is sent, it is intercepted and modified. The address is changed to the gateway machine and an aliasing port is used. For this routine to work, the PORT command must fit entirely into a single TCP packet. This is typically the case, but exceptions can easily be envisioned under the actual specifications. Probably the most troubling aspect of the approach taken here is that the new PORT command will typically be a different length, and this causes a certain amount of bookkeeping to keep track of the changes of sequence and acknowledgment numbers, since the client machine is totally unaware of the modification to the TCP stream. This version also supports the EPRT command, which is functionally equivalent to the PORT command, but was designed to support both IPv4 and IPv6 addresses. See RFC 2428 for specifications. This software is placed into the public domain with no restrictions on its distribution. Initial version: August, 1996 (cjm) Version 1.6 Brian Somers and Martin Renters identified an IP checksum error for modified IP packets. Version 1.7: January 9, 1996 (cjm) Differential checksum computation for change in IP packet length. Version 2.1: May, 1997 (cjm) Very minor changes to conform with local/global/function naming conventions within the packet aliasing module. See HISTORY file for record of revisions. $FreeBSD$ */ /* Includes */ #include #include #include #include #include #include #include #include #include "alias_local.h" static int ParseFtpPortCommand(char *, int, struct ip *, struct alias_link *, int); static void ParseFtpEprtCommand(char *, int, struct ip *, struct alias_link *, int); static void NewFtpPortCommand(struct ip *, struct alias_link *, struct in_addr, u_short, int, int); void AliasHandleFtpOut( struct ip *pip, /* IP packet to examine/patch */ struct alias_link *link, /* The link to go through (aliased port) */ int maxpacketsize /* The maximum size this packet can grow to (including headers) */) { int hlen, tlen, dlen; char *sptr; struct tcphdr *tc; /* Calculate data length of TCP packet */ tc = (struct tcphdr *) ((char *) pip + (pip->ip_hl << 2)); hlen = (pip->ip_hl + tc->th_off) << 2; tlen = ntohs(pip->ip_len); dlen = tlen - hlen; /* Return if data length is too long or too short */ if (dlen<10 || dlen>80) return; /* Place string pointer and beginning of data */ sptr = (char *) pip; sptr += hlen; /* Parse through string using state diagram method */ if (!ParseFtpPortCommand(sptr, dlen, pip, link, maxpacketsize)) ParseFtpEprtCommand(sptr, dlen, pip, link, maxpacketsize); } static int ParseFtpPortCommand( char *sptr, int dlen, struct ip *pip, /* IP packet to examine/patch */ struct alias_link *link, /* The link to go through (aliased port) */ int maxpacketsize /* The maximum size this packet can grow to (including headers) */) { struct in_addr true_addr; u_short true_port; char ch; int i, state; u_long a1, a2, a3, a4; u_short p1, p2; a1=0; a2=0; a3=0; a4=0; p1=0; p2=0; state=-4; for (i=0; iip_hl << 2)); hlen = (pip->ip_hl + tc->th_off) << 2; tlen = ntohs(pip->ip_len); dlen = tlen - hlen; /* Create new PORT command */ { char stemp[80]; char *sptr; u_short alias_port; u_char *ptr; int a1, a2, a3, a4, p1, p2; struct in_addr alias_address; /* Decompose alias address into quad format */ alias_address = GetAliasAddress(link); ptr = (u_char *) &alias_address.s_addr; a1 = *ptr++; a2=*ptr++; a3=*ptr++; a4=*ptr; alias_port = GetAliasPort(ftp_link); if (is_eprt) { /* Generate EPRT command string */ sprintf(stemp, "EPRT |1|%d.%d.%d.%d|%d|\r\n", a1,a2,a3,a4,ntohs(alias_port)); } else { /* Decompose alias port into pair format */ ptr = (char *) &alias_port; p1 = *ptr++; p2=*ptr; /* Generate PORT command string */ sprintf(stemp, "PORT %d,%d,%d,%d,%d,%d\r\n", a1,a2,a3,a4,p1,p2); } /* Save string length for IP header modification */ slen = strlen(stemp); /* Copy into IP packet */ sptr = (char *) pip; sptr += hlen; strncpy(sptr, stemp, maxpacketsize-hlen); } /* Save information regarding modified seq and ack numbers */ { int delta; SetAckModified(link); delta = GetDeltaSeqOut(pip, link); AddSeq(pip, link, delta+slen-dlen); } /* Revise IP header */ { u_short new_len; new_len = htons(hlen + slen); DifferentialChecksum(&pip->ip_sum, &new_len, &pip->ip_len, 1); pip->ip_len = new_len; } /* Compute TCP checksum for revised packet */ tc->th_sum = 0; tc->th_sum = TcpChecksum(pip); } else { #ifdef DEBUG fprintf(stderr, "PacketAlias/HandleFtpOut: Cannot allocate FTP data port\n"); #endif } }