2002-09-19 12:12:43 +04:00
|
|
|
/* $NetBSD: ip_ftp_pxy.c,v 1.26 2002/09/19 08:12:50 martti Exp $ */
|
2001-11-13 03:32:34 +03:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2002-09-19 12:12:43 +04:00
|
|
|
__KERNEL_RCSID(1, "$NetBSD: ip_ftp_pxy.c,v 1.26 2002/09/19 08:12:50 martti Exp $");
|
1997-05-28 04:17:11 +04:00
|
|
|
|
1997-05-26 19:18:15 +04:00
|
|
|
/*
|
1997-07-05 09:38:14 +04:00
|
|
|
* Simple FTP transparent proxy for in-kernel use. For use with the NAT
|
|
|
|
* code.
|
2000-05-03 15:12:03 +04:00
|
|
|
*
|
2002-09-19 12:08:14 +04:00
|
|
|
* Id: ip_ftp_pxy.c,v 2.7.2.38 2002/08/28 12:45:47 darrenr Exp
|
1997-05-26 19:18:15 +04:00
|
|
|
*/
|
1998-11-22 18:17:18 +03:00
|
|
|
#if SOLARIS && defined(_KERNEL)
|
|
|
|
extern kmutex_t ipf_rw;
|
|
|
|
#endif
|
1997-05-26 19:18:15 +04:00
|
|
|
|
|
|
|
#define isdigit(x) ((x) >= '0' && (x) <= '9')
|
2000-08-10 01:00:39 +04:00
|
|
|
#define isupper(x) (((unsigned)(x) >= 'A') && ((unsigned)(x) <= 'Z'))
|
|
|
|
#define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z'))
|
|
|
|
#define isalpha(x) (isupper(x) || islower(x))
|
|
|
|
#define toupper(x) (isupper(x) ? (x) : (x) - 'a' + 'A')
|
1997-05-26 19:18:15 +04:00
|
|
|
|
|
|
|
#define IPF_FTP_PROXY
|
|
|
|
|
|
|
|
#define IPF_MINPORTLEN 18
|
|
|
|
#define IPF_MAXPORTLEN 30
|
1998-11-22 18:17:18 +03:00
|
|
|
#define IPF_MIN227LEN 39
|
|
|
|
#define IPF_MAX227LEN 51
|
2000-05-03 15:12:03 +04:00
|
|
|
#define IPF_FTPBUFSZ 96 /* This *MUST* be >= 53! */
|
1997-05-26 19:18:15 +04:00
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
#define FTPXY_GO 0
|
|
|
|
#define FTPXY_INIT 1
|
|
|
|
#define FTPXY_USER_1 2
|
|
|
|
#define FTPXY_USOK_1 3
|
|
|
|
#define FTPXY_PASS_1 4
|
|
|
|
#define FTPXY_PAOK_1 5
|
|
|
|
#define FTPXY_AUTH_1 6
|
|
|
|
#define FTPXY_AUOK_1 7
|
|
|
|
#define FTPXY_ADAT_1 8
|
|
|
|
#define FTPXY_ADOK_1 9
|
|
|
|
#define FTPXY_ACCT_1 10
|
|
|
|
#define FTPXY_ACOK_1 11
|
|
|
|
#define FTPXY_USER_2 12
|
|
|
|
#define FTPXY_USOK_2 13
|
|
|
|
#define FTPXY_PASS_2 14
|
|
|
|
#define FTPXY_PAOK_2 15
|
1997-05-26 19:18:15 +04:00
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_client __P((fr_info_t *, ip_t *, nat_t *, ftpinfo_t *, int));
|
|
|
|
int ippr_ftp_complete __P((char *, size_t));
|
|
|
|
int ippr_ftp_in __P((fr_info_t *, ip_t *, ap_session_t *, nat_t *));
|
1999-12-12 14:11:15 +03:00
|
|
|
int ippr_ftp_init __P((void));
|
2000-05-03 15:12:03 +04:00
|
|
|
int ippr_ftp_new __P((fr_info_t *, ip_t *, ap_session_t *, nat_t *));
|
1998-11-22 18:17:18 +03:00
|
|
|
int ippr_ftp_out __P((fr_info_t *, ip_t *, ap_session_t *, nat_t *));
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_pasv __P((fr_info_t *, ip_t *, nat_t *, ftpside_t *, int));
|
|
|
|
int ippr_ftp_port __P((fr_info_t *, ip_t *, nat_t *, ftpside_t *, int));
|
|
|
|
int ippr_ftp_process __P((fr_info_t *, ip_t *, nat_t *, ftpinfo_t *, int));
|
|
|
|
int ippr_ftp_server __P((fr_info_t *, ip_t *, nat_t *, ftpinfo_t *, int));
|
2002-01-24 11:21:30 +03:00
|
|
|
int ippr_ftp_valid __P((int, char *, size_t));
|
|
|
|
int ippr_ftp_server_valid __P((char *, size_t));
|
|
|
|
int ippr_ftp_client_valid __P((char *, size_t));
|
2000-05-11 23:46:05 +04:00
|
|
|
u_short ippr_ftp_atoi __P((char **));
|
1997-05-27 05:19:48 +04:00
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
static frentry_t ftppxyfr;
|
2000-05-03 15:12:03 +04:00
|
|
|
int ippr_ftp_pasvonly = 0;
|
2000-08-10 01:00:39 +04:00
|
|
|
int ippr_ftp_insecure = 0;
|
1999-12-12 14:11:15 +03:00
|
|
|
|
1997-05-27 05:19:48 +04:00
|
|
|
|
1997-10-30 19:08:54 +03:00
|
|
|
/*
|
1999-12-12 14:11:15 +03:00
|
|
|
* Initialize local structures.
|
1997-10-30 19:08:54 +03:00
|
|
|
*/
|
1999-12-12 14:11:15 +03:00
|
|
|
int ippr_ftp_init()
|
1997-05-26 19:18:15 +04:00
|
|
|
{
|
2002-01-24 11:21:30 +03:00
|
|
|
bzero((char *)&ftppxyfr, sizeof(ftppxyfr));
|
|
|
|
ftppxyfr.fr_ref = 1;
|
|
|
|
ftppxyfr.fr_flags = FR_INQUE|FR_PASS|FR_QUICK|FR_KEEPSTATE;
|
1997-05-26 19:18:15 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-03 15:12:03 +04:00
|
|
|
int ippr_ftp_new(fin, ip, aps, nat)
|
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
ap_session_t *aps;
|
|
|
|
nat_t *nat;
|
|
|
|
{
|
|
|
|
ftpinfo_t *ftp;
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpside_t *f;
|
2000-05-03 15:12:03 +04:00
|
|
|
|
|
|
|
KMALLOC(ftp, ftpinfo_t *);
|
|
|
|
if (ftp == NULL)
|
|
|
|
return -1;
|
|
|
|
aps->aps_data = ftp;
|
|
|
|
aps->aps_psiz = sizeof(ftpinfo_t);
|
|
|
|
|
|
|
|
bzero((char *)ftp, sizeof(*ftp));
|
2000-05-11 23:46:05 +04:00
|
|
|
f = &ftp->ftp_side[0];
|
|
|
|
f->ftps_rptr = f->ftps_buf;
|
|
|
|
f->ftps_wptr = f->ftps_buf;
|
|
|
|
f = &ftp->ftp_side[1];
|
|
|
|
f->ftps_rptr = f->ftps_buf;
|
|
|
|
f->ftps_wptr = f->ftps_buf;
|
2002-01-24 11:21:30 +03:00
|
|
|
ftp->ftp_passok = FTPXY_INIT;
|
2000-05-03 15:12:03 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_port(fin, ip, nat, f, dlen)
|
1997-05-26 19:18:15 +04:00
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
nat_t *nat;
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpside_t *f;
|
|
|
|
int dlen;
|
1997-05-26 19:18:15 +04:00
|
|
|
{
|
1998-11-22 18:17:18 +03:00
|
|
|
tcphdr_t *tcp, tcph, *tcp2 = &tcph;
|
2000-05-11 23:46:05 +04:00
|
|
|
char newbuf[IPF_FTPBUFSZ], *s;
|
1999-12-12 14:11:15 +03:00
|
|
|
u_int a1, a2, a3, a4;
|
|
|
|
struct in_addr swip;
|
2002-01-24 11:21:30 +03:00
|
|
|
u_short a5, a6, sp;
|
2000-05-11 23:46:05 +04:00
|
|
|
size_t nlen, olen;
|
1998-11-22 18:17:18 +03:00
|
|
|
fr_info_t fi;
|
2000-05-11 23:46:05 +04:00
|
|
|
int inc, off;
|
1998-11-22 18:17:18 +03:00
|
|
|
nat_t *ipn;
|
|
|
|
mb_t *m;
|
1997-05-26 19:18:15 +04:00
|
|
|
#if SOLARIS
|
1997-11-14 15:40:06 +03:00
|
|
|
mb_t *m1;
|
1998-11-22 18:17:18 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
tcp = (tcphdr_t *)fin->fin_dp;
|
2000-05-03 15:12:03 +04:00
|
|
|
/*
|
2000-05-11 23:46:05 +04:00
|
|
|
* Check for client sending out PORT message.
|
2000-05-03 15:12:03 +04:00
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
if (dlen < IPF_MINPORTLEN)
|
2000-05-03 15:12:03 +04:00
|
|
|
return 0;
|
2000-08-10 01:00:39 +04:00
|
|
|
off = fin->fin_hlen + (tcp->th_off << 2);
|
1997-05-26 19:18:15 +04:00
|
|
|
/*
|
|
|
|
* Skip the PORT command + space
|
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
s = f->ftps_rptr + 5;
|
1997-05-26 19:18:15 +04:00
|
|
|
/*
|
|
|
|
* Pick out the address components, two at a time.
|
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
a1 = ippr_ftp_atoi(&s);
|
1997-05-26 19:18:15 +04:00
|
|
|
if (!s)
|
1998-11-22 18:17:18 +03:00
|
|
|
return 0;
|
2000-05-11 23:46:05 +04:00
|
|
|
a2 = ippr_ftp_atoi(&s);
|
1997-05-26 19:18:15 +04:00
|
|
|
if (!s)
|
1998-11-22 18:17:18 +03:00
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
* check that IP address in the PORT/PASV reply is the same as the
|
|
|
|
* sender of the command - prevents using PORT for port scanning.
|
|
|
|
*/
|
|
|
|
a1 <<= 16;
|
|
|
|
a1 |= a2;
|
|
|
|
if (a1 != ntohl(nat->nat_inip.s_addr))
|
|
|
|
return 0;
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
a5 = ippr_ftp_atoi(&s);
|
1997-05-26 19:18:15 +04:00
|
|
|
if (!s)
|
1998-11-22 18:17:18 +03:00
|
|
|
return 0;
|
1999-12-12 14:11:15 +03:00
|
|
|
if (*s == ')')
|
|
|
|
s++;
|
1998-11-22 18:17:18 +03:00
|
|
|
|
1997-05-26 19:18:15 +04:00
|
|
|
/*
|
|
|
|
* check for CR-LF at the end.
|
|
|
|
*/
|
1999-12-12 14:11:15 +03:00
|
|
|
if (*s == '\n')
|
|
|
|
s--;
|
|
|
|
if ((*s == '\r') && (*(s + 1) == '\n')) {
|
|
|
|
s += 2;
|
1998-11-22 18:17:18 +03:00
|
|
|
a6 = a5 & 0xff;
|
1999-12-12 14:11:15 +03:00
|
|
|
} else
|
1998-11-22 18:17:18 +03:00
|
|
|
return 0;
|
1997-05-26 19:18:15 +04:00
|
|
|
a5 >>= 8;
|
2001-03-26 10:11:46 +04:00
|
|
|
a5 &= 0xff;
|
1997-05-26 19:18:15 +04:00
|
|
|
/*
|
|
|
|
* Calculate new address parts for PORT command
|
|
|
|
*/
|
|
|
|
a1 = ntohl(ip->ip_src.s_addr);
|
|
|
|
a2 = (a1 >> 16) & 0xff;
|
|
|
|
a3 = (a1 >> 8) & 0xff;
|
|
|
|
a4 = a1 & 0xff;
|
|
|
|
a1 >>= 24;
|
2000-05-11 23:46:05 +04:00
|
|
|
olen = s - f->ftps_rptr;
|
2002-01-24 11:21:30 +03:00
|
|
|
/* DO NOT change this to snprintf! */
|
1999-12-12 14:11:15 +03:00
|
|
|
(void) sprintf(newbuf, "%s %u,%u,%u,%u,%u,%u\r\n",
|
1998-11-22 18:17:18 +03:00
|
|
|
"PORT", a1, a2, a3, a4, a5, a6);
|
|
|
|
|
1997-05-26 19:18:15 +04:00
|
|
|
nlen = strlen(newbuf);
|
|
|
|
inc = nlen - olen;
|
2000-05-03 15:12:03 +04:00
|
|
|
if ((inc + ip->ip_len) > 65535)
|
|
|
|
return 0;
|
|
|
|
|
2002-05-02 21:11:37 +04:00
|
|
|
#if !defined(_KERNEL)
|
|
|
|
m = *((mb_t **)fin->fin_mp);
|
|
|
|
bcopy(newbuf, (char *)m + off, nlen);
|
|
|
|
#else
|
|
|
|
# if SOLARIS
|
2000-05-11 23:46:05 +04:00
|
|
|
m = fin->fin_qfm;
|
1997-05-26 19:18:15 +04:00
|
|
|
for (m1 = m; m1->b_cont; m1 = m1->b_cont)
|
|
|
|
;
|
1998-11-22 18:17:18 +03:00
|
|
|
if ((inc > 0) && (m1->b_datap->db_lim - m1->b_wptr < inc)) {
|
1997-10-30 19:08:54 +03:00
|
|
|
mblk_t *nm;
|
|
|
|
|
|
|
|
/* alloc enough to keep same trailer space for lower driver */
|
1998-11-22 18:17:18 +03:00
|
|
|
nm = allocb(nlen, BPRI_MED);
|
1997-10-30 19:08:54 +03:00
|
|
|
PANIC((!nm),("ippr_ftp_out: allocb failed"));
|
|
|
|
|
|
|
|
nm->b_band = m1->b_band;
|
|
|
|
nm->b_wptr += nlen;
|
|
|
|
|
|
|
|
m1->b_wptr -= olen;
|
1998-11-22 18:17:18 +03:00
|
|
|
PANIC((m1->b_wptr < m1->b_rptr),
|
|
|
|
("ippr_ftp_out: cannot handle fragmented data block"));
|
1997-10-30 19:08:54 +03:00
|
|
|
|
|
|
|
linkb(m1, nm);
|
|
|
|
} else {
|
1999-12-12 14:11:15 +03:00
|
|
|
if (m1->b_datap->db_struiolim == m1->b_wptr)
|
|
|
|
m1->b_datap->db_struiolim += inc;
|
|
|
|
m1->b_datap->db_struioflag &= ~STRUIO_IP;
|
1997-10-30 19:08:54 +03:00
|
|
|
m1->b_wptr += inc;
|
|
|
|
}
|
|
|
|
copyin_mblk(m, off, nlen, newbuf);
|
2002-05-02 21:11:37 +04:00
|
|
|
# else
|
2000-05-11 23:46:05 +04:00
|
|
|
m = *((mb_t **)fin->fin_mp);
|
1997-10-30 19:08:54 +03:00
|
|
|
if (inc < 0)
|
|
|
|
m_adj(m, inc);
|
|
|
|
/* the mbuf chain will be extended if necessary by m_copyback() */
|
1997-05-26 19:18:15 +04:00
|
|
|
m_copyback(m, off, nlen, newbuf);
|
2002-05-02 21:11:37 +04:00
|
|
|
# ifdef M_PKTHDR
|
2000-08-10 01:00:39 +04:00
|
|
|
if (!(m->m_flags & M_PKTHDR))
|
|
|
|
m->m_pkthdr.len += inc;
|
2002-05-02 21:11:37 +04:00
|
|
|
# endif
|
2000-08-10 01:00:39 +04:00
|
|
|
# endif
|
1997-05-26 19:18:15 +04:00
|
|
|
#endif
|
1999-12-12 14:11:15 +03:00
|
|
|
if (inc != 0) {
|
2002-05-02 21:11:37 +04:00
|
|
|
#if (SOLARIS || defined(__sgi)) && defined(_KERNEL)
|
2002-01-24 11:23:40 +03:00
|
|
|
register u_32_t sum1, sum2;
|
1998-11-22 18:17:18 +03:00
|
|
|
|
1997-10-30 19:08:54 +03:00
|
|
|
sum1 = ip->ip_len;
|
|
|
|
sum2 = ip->ip_len + inc;
|
|
|
|
|
|
|
|
/* Because ~1 == -2, We really need ~1 == -1 */
|
|
|
|
if (sum1 > sum2)
|
|
|
|
sum2--;
|
|
|
|
sum2 -= sum1;
|
|
|
|
sum2 = (sum2 & 0xffff) + (sum2 >> 16);
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
fix_outcksum(fin, &ip->ip_sum, sum2);
|
1997-10-30 19:08:54 +03:00
|
|
|
#endif
|
|
|
|
ip->ip_len += inc;
|
|
|
|
}
|
1997-05-26 19:18:15 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add skeleton NAT entry for connection which will come back the
|
|
|
|
* other way.
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
sp = (a5 << 8 | a6);
|
2000-05-03 15:12:03 +04:00
|
|
|
/*
|
|
|
|
* Don't allow the PORT command to specify a port < 1024 due to
|
|
|
|
* security crap.
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
if (sp < 1024)
|
2000-05-03 15:12:03 +04:00
|
|
|
return 0;
|
1999-12-12 14:11:15 +03:00
|
|
|
/*
|
|
|
|
* The server may not make the connection back from port 20, but
|
|
|
|
* it is the most likely so use it here to check for a conflicting
|
|
|
|
* mapping.
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
bcopy((char *)fin, (char *)&fi, sizeof(fi));
|
|
|
|
fi.fin_data[0] = sp;
|
|
|
|
fi.fin_data[1] = fin->fin_data[1] - 1;
|
|
|
|
ipn = nat_outlookup(&fi, IPN_TCP, nat->nat_p, nat->nat_inip,
|
|
|
|
ip->ip_dst, 0);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (ipn == NULL) {
|
2000-05-11 23:46:05 +04:00
|
|
|
int slen;
|
|
|
|
|
|
|
|
slen = ip->ip_len;
|
|
|
|
ip->ip_len = fin->fin_hlen + sizeof(*tcp2);
|
1998-11-22 18:17:18 +03:00
|
|
|
bzero((char *)tcp2, sizeof(*tcp2));
|
1999-12-12 14:11:15 +03:00
|
|
|
tcp2->th_win = htons(8192);
|
2002-01-24 11:21:30 +03:00
|
|
|
tcp2->th_sport = htons(sp);
|
2000-05-11 23:46:05 +04:00
|
|
|
tcp2->th_off = 5;
|
2002-05-02 21:11:37 +04:00
|
|
|
tcp2->th_flags = TH_SYN;
|
1999-12-12 14:11:15 +03:00
|
|
|
tcp2->th_dport = 0; /* XXX - don't specify remote port */
|
|
|
|
fi.fin_data[1] = 0;
|
2001-03-26 10:11:46 +04:00
|
|
|
fi.fin_dlen = sizeof(*tcp2);
|
1998-11-22 18:17:18 +03:00
|
|
|
fi.fin_dp = (char *)tcp2;
|
2002-01-24 11:21:30 +03:00
|
|
|
fi.fin_fr = &ftppxyfr;
|
|
|
|
fi.fin_out = 1;
|
1998-11-22 18:17:18 +03:00
|
|
|
swip = ip->ip_src;
|
2001-03-26 10:11:46 +04:00
|
|
|
fi.fin_fi.fi_saddr = nat->nat_inip.s_addr;
|
1998-11-22 18:17:18 +03:00
|
|
|
ip->ip_src = nat->nat_inip;
|
2002-01-24 11:21:30 +03:00
|
|
|
ipn = nat_new(&fi, ip, nat->nat_ptr, NULL, IPN_TCP|FI_W_DPORT,
|
1999-12-12 14:11:15 +03:00
|
|
|
NAT_OUTBOUND);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (ipn != NULL) {
|
|
|
|
ipn->nat_age = fr_defnatage;
|
2002-01-24 11:21:30 +03:00
|
|
|
(void) fr_addstate(ip, &fi, NULL,
|
|
|
|
FI_W_DPORT|FI_IGNOREPKT);
|
1998-11-22 18:17:18 +03:00
|
|
|
}
|
2000-05-11 23:46:05 +04:00
|
|
|
ip->ip_len = slen;
|
1998-11-22 18:17:18 +03:00
|
|
|
ip->ip_src = swip;
|
|
|
|
}
|
2002-09-19 12:08:14 +04:00
|
|
|
return inc;
|
1998-11-22 18:17:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_client(fin, ip, nat, ftp, dlen)
|
1998-11-22 18:17:18 +03:00
|
|
|
fr_info_t *fin;
|
|
|
|
nat_t *nat;
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpinfo_t *ftp;
|
|
|
|
ip_t *ip;
|
|
|
|
int dlen;
|
1998-11-22 18:17:18 +03:00
|
|
|
{
|
2000-08-10 01:00:39 +04:00
|
|
|
char *rptr, *wptr, cmd[6], c;
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpside_t *f;
|
2000-08-10 01:00:39 +04:00
|
|
|
int inc, i;
|
2000-05-11 23:46:05 +04:00
|
|
|
|
|
|
|
inc = 0;
|
|
|
|
f = &ftp->ftp_side[0];
|
|
|
|
rptr = f->ftps_rptr;
|
|
|
|
wptr = f->ftps_wptr;
|
|
|
|
|
2000-08-10 01:00:39 +04:00
|
|
|
for (i = 0; (i < 5) && (i < dlen); i++) {
|
|
|
|
c = rptr[i];
|
|
|
|
if (isalpha(c)) {
|
|
|
|
cmd[i] = toupper(c);
|
|
|
|
} else {
|
|
|
|
cmd[i] = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmd[i] = '\0';
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
ftp->ftp_incok = 0;
|
|
|
|
if (!strncmp(cmd, "USER ", 5) || !strncmp(cmd, "XAUT ", 5)) {
|
|
|
|
if (ftp->ftp_passok == FTPXY_ADOK_1 ||
|
|
|
|
ftp->ftp_passok == FTPXY_AUOK_1) {
|
|
|
|
ftp->ftp_passok = FTPXY_USER_2;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
} else {
|
|
|
|
ftp->ftp_passok = FTPXY_USER_1;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
}
|
|
|
|
} else if (!strncmp(cmd, "AUTH ", 5)) {
|
|
|
|
ftp->ftp_passok = FTPXY_AUTH_1;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
} else if (!strncmp(cmd, "PASS ", 5)) {
|
|
|
|
if (ftp->ftp_passok == FTPXY_USOK_1) {
|
|
|
|
ftp->ftp_passok = FTPXY_PASS_1;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
} else if (ftp->ftp_passok == FTPXY_USOK_2) {
|
|
|
|
ftp->ftp_passok = FTPXY_PASS_2;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
}
|
|
|
|
} else if ((ftp->ftp_passok == FTPXY_AUOK_1) &&
|
|
|
|
!strncmp(cmd, "ADAT ", 5)) {
|
|
|
|
ftp->ftp_passok = FTPXY_ADAT_1;
|
|
|
|
ftp->ftp_incok = 1;
|
2002-03-14 15:32:36 +03:00
|
|
|
} else if ((ftp->ftp_passok == FTPXY_PAOK_1 ||
|
|
|
|
ftp->ftp_passok == FTPXY_PAOK_2) &&
|
2002-01-24 11:21:30 +03:00
|
|
|
!strncmp(cmd, "ACCT ", 5)) {
|
|
|
|
ftp->ftp_passok = FTPXY_ACCT_1;
|
|
|
|
ftp->ftp_incok = 1;
|
|
|
|
} else if ((ftp->ftp_passok == FTPXY_GO) && !ippr_ftp_pasvonly &&
|
2000-08-10 01:00:39 +04:00
|
|
|
!strncmp(cmd, "PORT ", 5)) {
|
|
|
|
inc = ippr_ftp_port(fin, ip, nat, f, dlen);
|
|
|
|
} else if (ippr_ftp_insecure && !ippr_ftp_pasvonly &&
|
|
|
|
!strncmp(cmd, "PORT ", 5)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
inc = ippr_ftp_port(fin, ip, nat, f, dlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((*rptr++ != '\n') && (rptr < wptr))
|
|
|
|
;
|
|
|
|
f->ftps_rptr = rptr;
|
|
|
|
return inc;
|
1998-11-22 18:17:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_pasv(fin, ip, nat, f, dlen)
|
1998-11-22 18:17:18 +03:00
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
nat_t *nat;
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpside_t *f;
|
|
|
|
int dlen;
|
1998-11-22 18:17:18 +03:00
|
|
|
{
|
2000-05-11 23:46:05 +04:00
|
|
|
tcphdr_t *tcp, tcph, *tcp2 = &tcph;
|
1999-12-12 14:11:15 +03:00
|
|
|
struct in_addr swip, swip2;
|
|
|
|
u_int a1, a2, a3, a4;
|
2002-03-14 15:32:36 +03:00
|
|
|
u_short a5, a6, dp;
|
2000-05-11 23:46:05 +04:00
|
|
|
fr_info_t fi;
|
|
|
|
nat_t *ipn;
|
2000-08-10 01:00:39 +04:00
|
|
|
int inc;
|
2000-05-21 22:45:53 +04:00
|
|
|
char *s;
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
#define PASV_REPLEN 24
|
2000-05-03 15:12:03 +04:00
|
|
|
/*
|
2000-05-11 23:46:05 +04:00
|
|
|
* Check for PASV reply message.
|
2000-05-03 15:12:03 +04:00
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
if (dlen < IPF_MIN227LEN)
|
2000-05-03 15:12:03 +04:00
|
|
|
return 0;
|
2002-01-24 11:21:30 +03:00
|
|
|
else if (strncmp(f->ftps_rptr, "227 Entering Passive Mod", PASV_REPLEN))
|
2000-05-03 15:12:03 +04:00
|
|
|
return 0;
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
tcp = (tcphdr_t *)fin->fin_dp;
|
|
|
|
|
1998-11-22 18:17:18 +03:00
|
|
|
/*
|
|
|
|
* Skip the PORT command + space
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
s = f->ftps_rptr + PASV_REPLEN;
|
1998-11-22 18:17:18 +03:00
|
|
|
while (*s && !isdigit(*s))
|
|
|
|
s++;
|
|
|
|
/*
|
|
|
|
* Pick out the address components, two at a time.
|
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
a1 = ippr_ftp_atoi(&s);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (!s)
|
|
|
|
return 0;
|
2000-05-11 23:46:05 +04:00
|
|
|
a2 = ippr_ftp_atoi(&s);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check that IP address in the PORT/PASV reply is the same as the
|
|
|
|
* sender of the command - prevents using PORT for port scanning.
|
|
|
|
*/
|
|
|
|
a1 <<= 16;
|
|
|
|
a1 |= a2;
|
|
|
|
if (a1 != ntohl(nat->nat_oip.s_addr))
|
|
|
|
return 0;
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
a5 = ippr_ftp_atoi(&s);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
|
1999-12-12 14:11:15 +03:00
|
|
|
if (*s == ')')
|
|
|
|
s++;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (*s == '.')
|
|
|
|
s++;
|
1999-12-12 14:11:15 +03:00
|
|
|
if (*s == '\n')
|
|
|
|
s--;
|
1998-11-22 18:17:18 +03:00
|
|
|
/*
|
|
|
|
* check for CR-LF at the end.
|
|
|
|
*/
|
1999-12-12 14:11:15 +03:00
|
|
|
if ((*s == '\r') && (*(s + 1) == '\n')) {
|
|
|
|
s += 2;
|
1998-11-22 18:17:18 +03:00
|
|
|
a6 = a5 & 0xff;
|
1999-12-12 14:11:15 +03:00
|
|
|
} else
|
1998-11-22 18:17:18 +03:00
|
|
|
return 0;
|
|
|
|
a5 >>= 8;
|
|
|
|
/*
|
|
|
|
* Calculate new address parts for 227 reply
|
|
|
|
*/
|
1999-12-12 14:11:15 +03:00
|
|
|
a1 = ntohl(ip->ip_src.s_addr);
|
1998-11-22 18:17:18 +03:00
|
|
|
a2 = (a1 >> 16) & 0xff;
|
|
|
|
a3 = (a1 >> 8) & 0xff;
|
|
|
|
a4 = a1 & 0xff;
|
|
|
|
a1 >>= 24;
|
2000-05-11 23:46:05 +04:00
|
|
|
inc = 0;
|
|
|
|
#if 0
|
|
|
|
olen = s - f->ftps_rptr;
|
1999-12-12 14:11:15 +03:00
|
|
|
(void) sprintf(newbuf, "%s %u,%u,%u,%u,%u,%u\r\n",
|
1998-11-22 18:17:18 +03:00
|
|
|
"227 Entering Passive Mode", a1, a2, a3, a4, a5, a6);
|
|
|
|
nlen = strlen(newbuf);
|
|
|
|
inc = nlen - olen;
|
2000-05-03 15:12:03 +04:00
|
|
|
if ((inc + ip->ip_len) > 65535)
|
|
|
|
return 0;
|
|
|
|
|
2002-05-02 21:11:37 +04:00
|
|
|
#if !defined(_KERNEL)
|
|
|
|
m = *((mb_t **)fin->fin_mp);
|
|
|
|
m_copyback(m, off, nlen, newbuf);
|
|
|
|
#else
|
|
|
|
# if SOLARIS
|
2000-05-11 23:46:05 +04:00
|
|
|
m = fin->fin_qfm;
|
1998-11-22 18:17:18 +03:00
|
|
|
for (m1 = m; m1->b_cont; m1 = m1->b_cont)
|
|
|
|
;
|
|
|
|
if ((inc > 0) && (m1->b_datap->db_lim - m1->b_wptr < inc)) {
|
|
|
|
mblk_t *nm;
|
|
|
|
|
|
|
|
/* alloc enough to keep same trailer space for lower driver */
|
|
|
|
nm = allocb(nlen, BPRI_MED);
|
|
|
|
PANIC((!nm),("ippr_ftp_out: allocb failed"));
|
|
|
|
|
|
|
|
nm->b_band = m1->b_band;
|
|
|
|
nm->b_wptr += nlen;
|
|
|
|
|
|
|
|
m1->b_wptr -= olen;
|
|
|
|
PANIC((m1->b_wptr < m1->b_rptr),
|
|
|
|
("ippr_ftp_out: cannot handle fragmented data block"));
|
|
|
|
|
|
|
|
linkb(m1, nm);
|
|
|
|
} else {
|
|
|
|
m1->b_wptr += inc;
|
|
|
|
}
|
2000-05-11 23:46:05 +04:00
|
|
|
/*copyin_mblk(m, off, nlen, newbuf);*/
|
2002-05-02 21:11:37 +04:00
|
|
|
# else /* SOLARIS */
|
2000-05-11 23:46:05 +04:00
|
|
|
m = *((mb_t **)fin->fin_mp);
|
1998-11-22 18:17:18 +03:00
|
|
|
if (inc < 0)
|
|
|
|
m_adj(m, inc);
|
|
|
|
/* the mbuf chain will be extended if necessary by m_copyback() */
|
2000-05-11 23:46:05 +04:00
|
|
|
/*m_copyback(m, off, nlen, newbuf);*/
|
2002-05-02 21:11:37 +04:00
|
|
|
# endif /* SOLARIS */
|
|
|
|
#endif /* _KERNEL */
|
1999-12-12 14:11:15 +03:00
|
|
|
if (inc != 0) {
|
2002-05-02 21:11:37 +04:00
|
|
|
#if (SOLARIS || defined(__sgi)) && defined(_KERNEL)
|
2002-01-24 11:23:40 +03:00
|
|
|
register u_32_t sum1, sum2;
|
1998-11-22 18:17:18 +03:00
|
|
|
|
|
|
|
sum1 = ip->ip_len;
|
|
|
|
sum2 = ip->ip_len + inc;
|
|
|
|
|
|
|
|
/* Because ~1 == -2, We really need ~1 == -1 */
|
|
|
|
if (sum1 > sum2)
|
|
|
|
sum2--;
|
|
|
|
sum2 -= sum1;
|
|
|
|
sum2 = (sum2 & 0xffff) + (sum2 >> 16);
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
fix_outcksum(fin, &ip->ip_sum, sum2);
|
2000-08-10 01:00:39 +04:00
|
|
|
#endif /* SOLARIS || defined(__sgi) */
|
1998-11-22 18:17:18 +03:00
|
|
|
ip->ip_len += inc;
|
|
|
|
}
|
2000-08-10 01:00:39 +04:00
|
|
|
#endif /* 0 */
|
1998-11-22 18:17:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add skeleton NAT entry for connection which will come back the
|
|
|
|
* other way.
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
bcopy((char *)fin, (char *)&fi, sizeof(fi));
|
|
|
|
fi.fin_data[0] = 0;
|
1999-12-12 14:11:15 +03:00
|
|
|
dp = htons(fin->fin_data[1] - 1);
|
2002-01-24 11:21:30 +03:00
|
|
|
fi.fin_data[1] = ntohs(dp);
|
|
|
|
ipn = nat_outlookup(&fi, IPN_TCP, nat->nat_p, nat->nat_inip,
|
|
|
|
ip->ip_dst, 0);
|
1999-12-12 14:11:15 +03:00
|
|
|
if (ipn == NULL) {
|
2000-05-11 23:46:05 +04:00
|
|
|
int slen;
|
|
|
|
|
|
|
|
slen = ip->ip_len;
|
|
|
|
ip->ip_len = fin->fin_hlen + sizeof(*tcp2);
|
1999-12-12 14:11:15 +03:00
|
|
|
bzero((char *)tcp2, sizeof(*tcp2));
|
|
|
|
tcp2->th_win = htons(8192);
|
|
|
|
tcp2->th_sport = 0; /* XXX - fake it for nat_new */
|
2000-05-11 23:46:05 +04:00
|
|
|
tcp2->th_off = 5;
|
2002-05-02 21:11:37 +04:00
|
|
|
tcp2->th_flags = TH_SYN;
|
2002-03-14 15:32:36 +03:00
|
|
|
fi.fin_data[1] = a5 << 8 | a6;
|
2001-03-26 10:11:46 +04:00
|
|
|
fi.fin_dlen = sizeof(*tcp2);
|
2002-03-14 15:32:36 +03:00
|
|
|
tcp2->th_dport = htons(fi.fin_data[1]);
|
|
|
|
fi.fin_data[0] = 0;
|
1999-12-12 14:11:15 +03:00
|
|
|
fi.fin_dp = (char *)tcp2;
|
2002-01-24 11:21:30 +03:00
|
|
|
fi.fin_fr = &ftppxyfr;
|
|
|
|
fi.fin_out = 1;
|
1999-12-12 14:11:15 +03:00
|
|
|
swip = ip->ip_src;
|
|
|
|
swip2 = ip->ip_dst;
|
2001-03-26 10:11:46 +04:00
|
|
|
fi.fin_fi.fi_daddr = ip->ip_src.s_addr;
|
|
|
|
fi.fin_fi.fi_saddr = nat->nat_inip.s_addr;
|
1999-12-12 14:11:15 +03:00
|
|
|
ip->ip_dst = ip->ip_src;
|
|
|
|
ip->ip_src = nat->nat_inip;
|
2002-01-24 11:21:30 +03:00
|
|
|
ipn = nat_new(&fi, ip, nat->nat_ptr, NULL, IPN_TCP|FI_W_SPORT,
|
1999-12-12 14:11:15 +03:00
|
|
|
NAT_OUTBOUND);
|
|
|
|
if (ipn != NULL) {
|
|
|
|
ipn->nat_age = fr_defnatage;
|
2002-01-24 11:21:30 +03:00
|
|
|
(void) fr_addstate(ip, &fi, NULL,
|
|
|
|
FI_W_SPORT|FI_IGNOREPKT);
|
1999-12-12 14:11:15 +03:00
|
|
|
}
|
2000-05-11 23:46:05 +04:00
|
|
|
ip->ip_len = slen;
|
1999-12-12 14:11:15 +03:00
|
|
|
ip->ip_src = swip;
|
|
|
|
ip->ip_dst = swip2;
|
|
|
|
}
|
1998-11-22 18:17:18 +03:00
|
|
|
return inc;
|
|
|
|
}
|
1997-05-26 19:18:15 +04:00
|
|
|
|
1998-11-22 18:17:18 +03:00
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_server(fin, ip, nat, ftp, dlen)
|
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
nat_t *nat;
|
|
|
|
ftpinfo_t *ftp;
|
|
|
|
int dlen;
|
|
|
|
{
|
|
|
|
char *rptr, *wptr;
|
|
|
|
ftpside_t *f;
|
|
|
|
int inc;
|
|
|
|
|
|
|
|
inc = 0;
|
|
|
|
f = &ftp->ftp_side[1];
|
|
|
|
rptr = f->ftps_rptr;
|
|
|
|
wptr = f->ftps_wptr;
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
if (!isdigit(*rptr) || !isdigit(*(rptr + 1)) || !isdigit(*(rptr + 2)))
|
2002-09-19 12:08:14 +04:00
|
|
|
return 0;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (ftp->ftp_passok == FTPXY_GO) {
|
|
|
|
if (!strncmp(rptr, "227 ", 4))
|
|
|
|
inc = ippr_ftp_pasv(fin, ip, nat, f, dlen);
|
2000-08-10 01:00:39 +04:00
|
|
|
} else if (ippr_ftp_insecure && !strncmp(rptr, "227 ", 4)) {
|
|
|
|
inc = ippr_ftp_pasv(fin, ip, nat, f, dlen);
|
2002-01-24 11:21:30 +03:00
|
|
|
} else if (*rptr == '5' || *rptr == '4')
|
|
|
|
ftp->ftp_passok = FTPXY_INIT;
|
|
|
|
else if (ftp->ftp_incok) {
|
|
|
|
if (*rptr == '3') {
|
|
|
|
if (ftp->ftp_passok == FTPXY_ACCT_1)
|
|
|
|
ftp->ftp_passok = FTPXY_GO;
|
|
|
|
else
|
|
|
|
ftp->ftp_passok++;
|
|
|
|
} else if (*rptr == '2') {
|
|
|
|
switch (ftp->ftp_passok)
|
|
|
|
{
|
|
|
|
case FTPXY_USER_1 :
|
|
|
|
case FTPXY_USER_2 :
|
|
|
|
case FTPXY_PASS_1 :
|
|
|
|
case FTPXY_PASS_2 :
|
|
|
|
case FTPXY_ACCT_1 :
|
|
|
|
ftp->ftp_passok = FTPXY_GO;
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
ftp->ftp_passok += 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-05-11 23:46:05 +04:00
|
|
|
}
|
2002-01-24 11:21:30 +03:00
|
|
|
ftp->ftp_incok = 0;
|
2000-05-11 23:46:05 +04:00
|
|
|
while ((*rptr++ != '\n') && (rptr < wptr))
|
|
|
|
;
|
|
|
|
f->ftps_rptr = rptr;
|
|
|
|
return inc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look to see if the buffer starts with something which we recognise as
|
|
|
|
* being the correct syntax for the FTP protocol.
|
|
|
|
*/
|
2002-01-24 11:21:30 +03:00
|
|
|
int ippr_ftp_client_valid(buf, len)
|
2000-05-11 23:46:05 +04:00
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
{
|
|
|
|
register char *s, c;
|
|
|
|
register size_t i = len;
|
|
|
|
|
|
|
|
if (i < 5)
|
|
|
|
return 2;
|
|
|
|
s = buf;
|
|
|
|
c = *s++;
|
|
|
|
i--;
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isalpha(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isalpha(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isalpha(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isalpha(c)) {
|
|
|
|
c = *s++;
|
|
|
|
i--;
|
|
|
|
if ((c != ' ') && (c != '\r'))
|
|
|
|
return 1;
|
|
|
|
} else if ((c != ' ') && (c != '\r'))
|
2000-05-11 23:46:05 +04:00
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 1;
|
2002-01-24 11:21:30 +03:00
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
for (; i; i--) {
|
|
|
|
c = *s++;
|
|
|
|
if (c == '\n')
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int ippr_ftp_server_valid(buf, len)
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
{
|
|
|
|
register char *s, c;
|
|
|
|
register size_t i = len;
|
|
|
|
|
|
|
|
if (i < 5)
|
|
|
|
return 2;
|
|
|
|
s = buf;
|
|
|
|
c = *s++;
|
|
|
|
i--;
|
|
|
|
|
|
|
|
if (isdigit(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isdigit(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if (isdigit(c)) {
|
2000-05-11 23:46:05 +04:00
|
|
|
c = *s++;
|
|
|
|
i--;
|
2002-01-24 11:21:30 +03:00
|
|
|
if ((c != '-') && (c != ' '))
|
2000-05-11 23:46:05 +04:00
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
} else
|
|
|
|
return 1;
|
|
|
|
for (; i; i--) {
|
|
|
|
c = *s++;
|
|
|
|
if (c == '\n')
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
int ippr_ftp_valid(side, buf, len)
|
|
|
|
int side;
|
|
|
|
char *buf;
|
|
|
|
size_t len;
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (side == 0)
|
|
|
|
ret = ippr_ftp_client_valid(buf, len);
|
|
|
|
else
|
|
|
|
ret = ippr_ftp_server_valid(buf, len);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-19 12:08:14 +04:00
|
|
|
/*
|
|
|
|
* rv == 0 for outbound processing,
|
|
|
|
* rv == 1 for inbound processing.
|
|
|
|
*/
|
2000-05-11 23:46:05 +04:00
|
|
|
int ippr_ftp_process(fin, ip, nat, ftp, rv)
|
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
nat_t *nat;
|
|
|
|
ftpinfo_t *ftp;
|
|
|
|
int rv;
|
|
|
|
{
|
2002-09-19 12:08:14 +04:00
|
|
|
int mlen, len, off, inc, i, sel, sel2, ok, ackoff, seqoff;
|
|
|
|
u_32_t thseq, thack;
|
2000-05-11 23:46:05 +04:00
|
|
|
char *rptr, *wptr;
|
2002-09-19 12:08:14 +04:00
|
|
|
ap_session_t *aps;
|
2000-08-10 01:00:39 +04:00
|
|
|
ftpside_t *f, *t;
|
2000-05-11 23:46:05 +04:00
|
|
|
tcphdr_t *tcp;
|
|
|
|
mb_t *m;
|
|
|
|
|
|
|
|
tcp = (tcphdr_t *)fin->fin_dp;
|
|
|
|
off = fin->fin_hlen + (tcp->th_off << 2);
|
2002-05-02 21:11:37 +04:00
|
|
|
#if SOLARIS && defined(_KERNEL)
|
2000-05-11 23:46:05 +04:00
|
|
|
m = fin->fin_qfm;
|
|
|
|
#else
|
|
|
|
m = *((mb_t **)fin->fin_mp);
|
|
|
|
#endif
|
|
|
|
|
2002-05-02 21:11:37 +04:00
|
|
|
#ifndef _KERNEL
|
|
|
|
mlen = mbuflen(m);
|
2000-05-11 23:46:05 +04:00
|
|
|
#else
|
2002-05-02 21:11:37 +04:00
|
|
|
# if SOLARIS
|
|
|
|
mlen = msgdsize(m);
|
|
|
|
# else
|
|
|
|
mlen = mbufchainlen(m);
|
|
|
|
# endif
|
2000-05-11 23:46:05 +04:00
|
|
|
#endif
|
2002-05-02 21:11:37 +04:00
|
|
|
mlen -= off;
|
2001-03-26 10:11:46 +04:00
|
|
|
|
2002-09-19 12:08:14 +04:00
|
|
|
aps = nat->nat_aps;
|
2000-08-10 01:00:39 +04:00
|
|
|
t = &ftp->ftp_side[1 - rv];
|
2001-03-26 10:11:46 +04:00
|
|
|
f = &ftp->ftp_side[rv];
|
2002-09-19 12:08:14 +04:00
|
|
|
thseq = ntohl(tcp->th_seq);
|
|
|
|
thack = ntohl(tcp->th_ack);
|
|
|
|
|
|
|
|
sel = aps->aps_sel[1 - rv];
|
|
|
|
sel2 = aps->aps_sel[rv];
|
|
|
|
if (rv == 0) {
|
|
|
|
seqoff = aps->aps_seqoff[sel];
|
|
|
|
if (aps->aps_seqmin[sel] > seqoff + thseq)
|
|
|
|
seqoff = aps->aps_seqoff[!sel];
|
|
|
|
ackoff = aps->aps_ackoff[sel2];
|
|
|
|
if (aps->aps_ackmin[sel2] > ackoff + thack)
|
|
|
|
ackoff = aps->aps_ackoff[!sel2];
|
2002-05-02 21:11:37 +04:00
|
|
|
} else {
|
2002-09-19 12:08:14 +04:00
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("seqoff %d thseq %x ackmin %x\n", seqoff, thseq,
|
|
|
|
aps->aps_ackmin[sel]);
|
|
|
|
#endif
|
|
|
|
seqoff = aps->aps_ackoff[sel];
|
|
|
|
if (aps->aps_ackmin[sel] > seqoff + thseq)
|
|
|
|
seqoff = aps->aps_ackoff[!sel];
|
|
|
|
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("ackoff %d thack %x seqmin %x\n", ackoff, thack,
|
|
|
|
aps->aps_seqmin[sel2]);
|
|
|
|
#endif
|
|
|
|
ackoff = aps->aps_seqoff[sel2];
|
|
|
|
if (ackoff > 0) {
|
|
|
|
if (aps->aps_seqmin[sel2] > ackoff + thack)
|
|
|
|
ackoff = aps->aps_seqoff[!sel2];
|
|
|
|
} else {
|
|
|
|
if (aps->aps_seqmin[sel2] > thack)
|
|
|
|
ackoff = aps->aps_seqoff[!sel2];
|
|
|
|
}
|
2002-05-02 21:11:37 +04:00
|
|
|
}
|
2002-09-19 12:08:14 +04:00
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("%s: %x seq %x/%d ack %x/%d len %d\n", rv ? "IN" : "OUT",
|
|
|
|
tcp->th_flags, thseq, seqoff, thack, ackoff, mlen);
|
|
|
|
printf("sel %d seqmin %x/%x offset %d/%d\n", sel,
|
|
|
|
aps->aps_seqmin[sel], aps->aps_seqmin[sel2],
|
|
|
|
aps->aps_seqoff[sel], aps->aps_seqoff[sel2]);
|
|
|
|
printf("sel %d ackmin %x/%x offset %d/%d\n", sel2,
|
|
|
|
aps->aps_ackmin[sel], aps->aps_ackmin[sel2],
|
|
|
|
aps->aps_ackoff[sel], aps->aps_ackoff[sel2]);
|
|
|
|
#endif
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
/*
|
|
|
|
* XXX - Ideally, this packet should get dropped because we now know
|
|
|
|
* that it is out of order (and there is no real danger in doing so
|
|
|
|
* apart from causing packets to go through here ordered).
|
|
|
|
*/
|
2002-09-19 12:08:14 +04:00
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("rv %d t:seq[0] %x seq[1] %x %d/%d\n",
|
|
|
|
rv, t->ftps_seq[0], t->ftps_seq[1], seqoff, ackoff);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ok = 0;
|
|
|
|
if (t->ftps_seq[0] == 0)
|
|
|
|
t->ftps_seq[0] = thack, ok = 1;
|
2002-05-02 21:11:37 +04:00
|
|
|
else {
|
2002-09-19 12:08:14 +04:00
|
|
|
if (ackoff == 0) {
|
|
|
|
if (t->ftps_seq[0] == thack)
|
|
|
|
ok = 1;
|
|
|
|
else if (t->ftps_seq[1] == thack) {
|
|
|
|
t->ftps_seq[0] = thack;
|
|
|
|
ok = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (t->ftps_seq[0] + ackoff == thack)
|
|
|
|
ok = 1;
|
|
|
|
else if (t->ftps_seq[0] == thack + ackoff)
|
|
|
|
ok = 1;
|
|
|
|
else if (t->ftps_seq[1] + ackoff == thack) {
|
|
|
|
t->ftps_seq[0] = thack - ackoff;
|
|
|
|
ok = 1;
|
|
|
|
} else if (t->ftps_seq[1] == thack + ackoff) {
|
|
|
|
t->ftps_seq[0] = thack - ackoff;
|
|
|
|
ok = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
if (!ok)
|
|
|
|
printf("not ok\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!mlen) {
|
|
|
|
if (t->ftps_seq[0] + ackoff != thack)
|
2002-05-02 21:11:37 +04:00
|
|
|
return APR_ERR(1);
|
2002-09-19 12:08:14 +04:00
|
|
|
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("f:seq[0] %x seq[1] %x\n", f->ftps_seq[0], f->ftps_seq[1]);
|
|
|
|
#endif
|
|
|
|
if (tcp->th_flags & TH_FIN) {
|
|
|
|
if (thseq + seqoff == f->ftps_seq[0] + 1 ||
|
|
|
|
f->ftps_seq[0] + seqoff + 1 == thseq ||
|
|
|
|
thseq + seqoff == f->ftps_seq[0] ||
|
|
|
|
thseq == f->ftps_seq[0] + seqoff)
|
|
|
|
;
|
|
|
|
else {
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("FIN: thseq %x seqoff %d ftps_seq %x\n",
|
|
|
|
thseq, seqoff, f->ftps_seq[0]);
|
|
|
|
#endif
|
|
|
|
return APR_ERR(1);
|
|
|
|
}
|
2002-05-02 21:11:37 +04:00
|
|
|
}
|
2002-09-19 12:08:14 +04:00
|
|
|
f->ftps_len = 0;
|
|
|
|
return 0;
|
2000-05-11 23:46:05 +04:00
|
|
|
}
|
2002-09-19 12:08:14 +04:00
|
|
|
|
|
|
|
ok = 0;
|
|
|
|
if (thseq == f->ftps_seq[0] || thseq == f->ftps_seq[1])
|
|
|
|
ok = 1;
|
|
|
|
/*
|
|
|
|
* Retransmitted data packet.
|
|
|
|
*/
|
|
|
|
else if (thseq + mlen == f->ftps_seq[0] ||
|
|
|
|
thseq + mlen == f->ftps_seq[1])
|
|
|
|
ok = 1;
|
|
|
|
if (ok == 0) {
|
|
|
|
inc = thseq - f->ftps_seq[0];
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("inc %d sel %d rv %d\n", inc, sel, rv);
|
|
|
|
printf("th_seq %x ftps_seq %x/%x\n", thseq, f->ftps_seq[0],
|
|
|
|
f->ftps_seq[1]);
|
|
|
|
printf("ackmin %x ackoff %d\n", aps->aps_ackmin[sel],
|
|
|
|
aps->aps_ackoff[sel]);
|
|
|
|
printf("seqmin %x seqoff %d\n", aps->aps_seqmin[sel],
|
|
|
|
aps->aps_seqoff[sel]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return APR_ERR(1);
|
|
|
|
}
|
|
|
|
|
2002-05-02 21:11:37 +04:00
|
|
|
inc = 0;
|
2002-09-19 12:08:14 +04:00
|
|
|
rptr = f->ftps_rptr;
|
|
|
|
wptr = f->ftps_wptr;
|
|
|
|
f->ftps_seq[0] = thseq;
|
|
|
|
f->ftps_seq[1] = f->ftps_seq[0] + mlen;
|
2001-03-26 10:11:46 +04:00
|
|
|
f->ftps_len = mlen;
|
2000-05-11 23:46:05 +04:00
|
|
|
|
|
|
|
while (mlen > 0) {
|
|
|
|
len = MIN(mlen, FTP_BUFSZ / 2);
|
|
|
|
|
2002-05-02 21:11:37 +04:00
|
|
|
#if !defined(_KERNEL)
|
|
|
|
bcopy((char *)m + off, wptr, len);
|
2000-05-11 23:46:05 +04:00
|
|
|
#else
|
2002-05-02 21:11:37 +04:00
|
|
|
# if SOLARIS
|
|
|
|
copyout_mblk(m, off, len, wptr);
|
|
|
|
# else
|
2000-05-11 23:46:05 +04:00
|
|
|
m_copydata(m, off, len, wptr);
|
2002-05-02 21:11:37 +04:00
|
|
|
# endif
|
2000-05-11 23:46:05 +04:00
|
|
|
#endif
|
|
|
|
mlen -= len;
|
|
|
|
off += len;
|
|
|
|
wptr += len;
|
|
|
|
f->ftps_wptr = wptr;
|
|
|
|
if (f->ftps_junk == 2)
|
2002-01-24 11:21:30 +03:00
|
|
|
f->ftps_junk = ippr_ftp_valid(rv, rptr, wptr - rptr);
|
2000-05-11 23:46:05 +04:00
|
|
|
|
|
|
|
while ((f->ftps_junk == 0) && (wptr > rptr)) {
|
2002-01-24 11:21:30 +03:00
|
|
|
f->ftps_junk = ippr_ftp_valid(rv, rptr, wptr - rptr);
|
2000-05-11 23:46:05 +04:00
|
|
|
if (f->ftps_junk == 0) {
|
2002-01-24 11:21:30 +03:00
|
|
|
f->ftps_cmds++;
|
2000-05-11 23:46:05 +04:00
|
|
|
len = wptr - rptr;
|
|
|
|
f->ftps_rptr = rptr;
|
|
|
|
if (rv)
|
|
|
|
inc += ippr_ftp_server(fin, ip, nat,
|
|
|
|
ftp, len);
|
|
|
|
else
|
|
|
|
inc += ippr_ftp_client(fin, ip, nat,
|
|
|
|
ftp, len);
|
|
|
|
rptr = f->ftps_rptr;
|
2002-01-24 11:21:30 +03:00
|
|
|
wptr = f->ftps_wptr;
|
2000-05-11 23:46:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-24 11:21:30 +03:00
|
|
|
/*
|
|
|
|
* Off to a bad start so lets just forget about using the
|
|
|
|
* ftp proxy for this connection.
|
|
|
|
*/
|
2002-05-02 21:11:37 +04:00
|
|
|
if ((f->ftps_cmds == 0) && (f->ftps_junk == 1)) {
|
2002-09-19 12:08:14 +04:00
|
|
|
/* f->ftps_seq[1] += inc; */
|
2002-01-24 11:21:30 +03:00
|
|
|
return APR_ERR(2);
|
2002-05-02 21:11:37 +04:00
|
|
|
}
|
2002-01-24 11:21:30 +03:00
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
while ((f->ftps_junk == 1) && (rptr < wptr)) {
|
|
|
|
while ((rptr < wptr) && (*rptr != '\r'))
|
|
|
|
rptr++;
|
|
|
|
|
2001-03-26 10:11:46 +04:00
|
|
|
if (*rptr == '\r') {
|
|
|
|
if (rptr + 1 < wptr) {
|
|
|
|
if (*(rptr + 1) == '\n') {
|
|
|
|
rptr += 2;
|
|
|
|
f->ftps_junk = 0;
|
|
|
|
} else
|
|
|
|
rptr++;
|
2000-05-11 23:46:05 +04:00
|
|
|
} else
|
2001-03-26 10:11:46 +04:00
|
|
|
break;
|
2000-05-11 23:46:05 +04:00
|
|
|
}
|
|
|
|
}
|
2001-03-26 10:11:46 +04:00
|
|
|
f->ftps_rptr = rptr;
|
2000-05-11 23:46:05 +04:00
|
|
|
|
|
|
|
if (rptr == wptr) {
|
|
|
|
rptr = wptr = f->ftps_buf;
|
|
|
|
} else {
|
|
|
|
if ((wptr > f->ftps_buf + FTP_BUFSZ / 2)) {
|
|
|
|
i = wptr - rptr;
|
|
|
|
if ((rptr == f->ftps_buf) ||
|
|
|
|
(wptr - rptr > FTP_BUFSZ / 2)) {
|
|
|
|
f->ftps_junk = 1;
|
|
|
|
rptr = wptr = f->ftps_buf;
|
|
|
|
} else {
|
|
|
|
bcopy(rptr, f->ftps_buf, i);
|
|
|
|
wptr = f->ftps_buf + i;
|
|
|
|
rptr = f->ftps_buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f->ftps_rptr = rptr;
|
|
|
|
f->ftps_wptr = wptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-19 12:08:14 +04:00
|
|
|
/* f->ftps_seq[1] += inc; */
|
|
|
|
if (tcp->th_flags & TH_FIN)
|
|
|
|
f->ftps_seq[1]++;
|
|
|
|
#ifndef _KERNEL
|
|
|
|
mlen = mbuflen(m);
|
|
|
|
#else
|
|
|
|
# if SOLARIS
|
|
|
|
mlen = msgdsize(m);
|
|
|
|
# else
|
|
|
|
mlen = mbufchainlen(m);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
off = fin->fin_hlen + (tcp->th_off << 2);
|
|
|
|
mlen -= off;
|
|
|
|
#if PROXY_DEBUG
|
|
|
|
printf("ftps_seq[1] = %x inc %d len %d\n", f->ftps_seq[1], inc, mlen);
|
|
|
|
#endif
|
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
f->ftps_rptr = rptr;
|
|
|
|
f->ftps_wptr = wptr;
|
2000-08-10 01:00:39 +04:00
|
|
|
return APR_INC(inc);
|
2000-05-11 23:46:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int ippr_ftp_out(fin, ip, aps, nat)
|
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
ap_session_t *aps;
|
|
|
|
nat_t *nat;
|
|
|
|
{
|
|
|
|
ftpinfo_t *ftp;
|
|
|
|
|
|
|
|
ftp = aps->aps_data;
|
|
|
|
if (ftp == NULL)
|
|
|
|
return 0;
|
|
|
|
return ippr_ftp_process(fin, ip, nat, ftp, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-11-22 18:17:18 +03:00
|
|
|
int ippr_ftp_in(fin, ip, aps, nat)
|
|
|
|
fr_info_t *fin;
|
|
|
|
ip_t *ip;
|
|
|
|
ap_session_t *aps;
|
|
|
|
nat_t *nat;
|
|
|
|
{
|
2000-05-11 23:46:05 +04:00
|
|
|
ftpinfo_t *ftp;
|
|
|
|
|
|
|
|
ftp = aps->aps_data;
|
|
|
|
if (ftp == NULL)
|
|
|
|
return 0;
|
|
|
|
return ippr_ftp_process(fin, ip, nat, ftp, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ippr_ftp_atoi - implement a version of atoi which processes numbers in
|
|
|
|
* pairs separated by commas (which are expected to be in the range 0 - 255),
|
|
|
|
* returning a 16 bit number combining either side of the , as the MSB and
|
|
|
|
* LSB.
|
|
|
|
*/
|
|
|
|
u_short ippr_ftp_atoi(ptr)
|
|
|
|
char **ptr;
|
|
|
|
{
|
|
|
|
register char *s = *ptr, c;
|
|
|
|
register u_char i = 0, j = 0;
|
1998-11-22 18:17:18 +03:00
|
|
|
|
2000-05-11 23:46:05 +04:00
|
|
|
while ((c = *s++) && isdigit(c)) {
|
|
|
|
i *= 10;
|
|
|
|
i += c - '0';
|
|
|
|
}
|
|
|
|
if (c != ',') {
|
|
|
|
*ptr = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
while ((c = *s++) && isdigit(c)) {
|
|
|
|
j *= 10;
|
|
|
|
j += c - '0';
|
|
|
|
}
|
|
|
|
*ptr = s;
|
2001-03-26 10:11:46 +04:00
|
|
|
i &= 0xff;
|
|
|
|
j &= 0xff;
|
2000-05-11 23:46:05 +04:00
|
|
|
return (i << 8) | j;
|
1997-05-26 19:18:15 +04:00
|
|
|
}
|