1995-04-25 15:05:11 +00:00
|
|
|
/*
|
|
|
|
Library for ftpd clients.(libftp)
|
|
|
|
Copyright by Oleg Orel
|
|
|
|
All rights reserved.
|
1995-05-30 05:51:47 +00:00
|
|
|
|
|
|
|
This library is desined for free, non-commercial software creation.
|
|
|
|
It is changeable and can be improved. The author would greatly appreciate
|
1995-04-25 15:05:11 +00:00
|
|
|
any advises, new components and patches of the existing programs.
|
|
|
|
Commercial usage is also possible with participation of it's author.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "FtpLibrary.h"
|
1995-04-25 15:08:02 +00:00
|
|
|
#include <unistd.h>
|
1995-04-25 15:05:11 +00:00
|
|
|
|
|
|
|
STATUS FtpData(FTP * con,char * command , char * file ,char * mode)
|
|
|
|
{
|
|
|
|
struct sockaddr_in data,from;
|
|
|
|
register struct hostent *host;
|
1995-04-25 15:08:02 +00:00
|
|
|
String hostname;
|
|
|
|
int NewSocket,Accepted_Socket,len=sizeof(data),one=1,fromlen=sizeof(from),
|
|
|
|
i = 0;
|
1995-04-25 15:05:11 +00:00
|
|
|
char *a,*b;
|
|
|
|
|
|
|
|
FREE(data);
|
|
|
|
FREE(from);
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
if ( gethostname( hostname , sizeof hostname ) == -1 )
|
|
|
|
return EXIT(con,QUIT);
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
if ((host=(struct hostent *)gethostbyname(hostname))==0)
|
|
|
|
return EXIT(con,QUIT);
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
data.sin_family = host -> h_addrtype;
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
bcopy(host-> h_addr_list[0],(char *)&data.sin_addr,host->h_length);
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
if ((NewSocket = socket ( AF_INET , SOCK_STREAM , 0 ))<0)
|
|
|
|
return EXIT(con,QUIT);
|
|
|
|
|
|
|
|
if ( setsockopt ( NewSocket , SOL_SOCKET , SO_REUSEADDR ,
|
|
|
|
(char *)&one , sizeof(one) ) < 0 )
|
|
|
|
{
|
|
|
|
close(NewSocket);
|
|
|
|
return EXIT ( con,QUIT );
|
|
|
|
}
|
|
|
|
|
|
|
|
data.sin_port = 0 ;
|
|
|
|
|
|
|
|
if ( bind ( NewSocket , (struct sockaddr *)&data , sizeof data ) < 0 )
|
|
|
|
return EXIT(con,QUIT);
|
|
|
|
|
1995-04-25 15:08:02 +00:00
|
|
|
if ( getsockname ( NewSocket , (struct sockaddr *)&data , &len ) < 0 )
|
1995-04-25 15:05:11 +00:00
|
|
|
return EXIT(con,QUIT);
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:05:11 +00:00
|
|
|
if ( listen ( NewSocket , 1 ) < 0 )
|
|
|
|
return EXIT(con,QUIT);
|
|
|
|
|
|
|
|
a = ( char * ) & data.sin_addr;
|
|
|
|
b = ( char * ) & data.sin_port;
|
|
|
|
|
|
|
|
FtpAssert(con,FtpPort(con,CUT(a[0]),CUT(a[1]),CUT(a[2]),
|
|
|
|
CUT(a[3]),CUT(b[0]),CUT(b[1])));
|
|
|
|
|
|
|
|
if ( con -> seek != 0)
|
|
|
|
{
|
|
|
|
if ((i = FtpCommand ( con, "REST %d" , con -> seek , 0, EOF)) != 350 )
|
|
|
|
return -i;
|
|
|
|
}
|
1995-05-30 05:51:47 +00:00
|
|
|
|
|
|
|
FtpAssert(con, FtpCommand ( con , command , file ,
|
1995-04-25 15:05:11 +00:00
|
|
|
200, 120 , 150 , 125 , 250 , EOF ));
|
1995-05-30 05:51:47 +00:00
|
|
|
|
1995-04-25 15:08:02 +00:00
|
|
|
if (( Accepted_Socket = accept (NewSocket , (struct sockaddr *)&from , &fromlen )) < 0)
|
1995-04-25 15:05:11 +00:00
|
|
|
{
|
|
|
|
close(NewSocket);
|
|
|
|
return EXIT(con,QUIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(NewSocket);
|
|
|
|
|
|
|
|
FTPDATA(con) = fdopen(Accepted_Socket, "r+");
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|