| 1 |
/* |
| 2 |
liboftp: this is an FTP library to simplify the work to a Developer |
| 3 |
who want to work with FTP servers (RFC 959). |
| 4 |
|
| 5 |
Copyright (c) 2009 hirohito higashi. All rights reserved. |
| 6 |
This file is distributed under BSD license. |
| 7 |
*/ |
| 8 |
|
| 9 |
|
| 10 |
/***** Feature test switches ************************************************/ |
| 11 |
/***** System headers *******************************************************/ |
| 12 |
#include <unistd.h> |
| 13 |
#include <sys/types.h> |
| 14 |
#include <sys/socket.h> |
| 15 |
#include <sys/uio.h> |
| 16 |
#include <fcntl.h> |
| 17 |
#include <string.h> |
| 18 |
#include <errno.h> |
| 19 |
|
| 20 |
|
| 21 |
/***** Local headers ********************************************************/ |
| 22 |
#include "liboftp.h" |
| 23 |
#include "sub.h" |
| 24 |
|
| 25 |
|
| 26 |
/***** Constat values *******************************************************/ |
| 27 |
#define TRANSFER_SEGMENT_SIZE 1024 /* 一度のrecv()で転送するバイト数 */ |
| 28 |
|
| 29 |
|
| 30 |
/***** Macros ***************************************************************/ |
| 31 |
/***** Typedefs *************************************************************/ |
| 32 |
/***** Function prototypes **************************************************/ |
| 33 |
/***** Local variables ******************************************************/ |
| 34 |
/***** Global variables *****************************************************/ |
| 35 |
/***** Signal catching functions ********************************************/ |
| 36 |
/***** Local functions ******************************************************/ |
| 37 |
/***** Global functions *****************************************************/ |
| 38 |
|
| 39 |
/****************************************************************************/ |
| 40 |
/*! ファイル取得してローカルファイルへ |
| 41 |
* |
| 42 |
*@param ftp LIBOFTPへのポインタ。 |
| 43 |
*@param fname サーバ上のファイル名 |
| 44 |
*@param local_fname ローカルファイル名 |
| 45 |
*@retval int エラーコード |
| 46 |
*@note |
| 47 |
*/ |
| 48 |
int ftp_get_file( LIBOFTP *ftp, const char *fname, const char *local_fname ) |
| 49 |
{ |
| 50 |
int data_socket; |
| 51 |
int n, res; |
| 52 |
int fd; |
| 53 |
char buf[TRANSFER_SEGMENT_SIZE]; |
| 54 |
|
| 55 |
|
| 56 |
/* |
| 57 |
* ローカルファイルオープン |
| 58 |
*/ |
| 59 |
fd = open( local_fname, O_WRONLY|O_CREAT, 0644 ); |
| 60 |
if( fd < 0 ) { |
| 61 |
DEBUGPRINT1( "local file open error. %s\n", strerror(errno) ); |
| 62 |
copy_strerror(); |
| 63 |
return LIBOFTP_ERROR_OS; |
| 64 |
} |
| 65 |
|
| 66 |
/* |
| 67 |
* 受信準備 |
| 68 |
*/ |
| 69 |
if( ftp->flag_passive ) { |
| 70 |
data_socket = ftp_getready_pasv( ftp, "RETR", fname ); |
| 71 |
} else { |
| 72 |
data_socket = ftp_getready_active( ftp, "RETR", fname ); |
| 73 |
} |
| 74 |
if( data_socket < 0 ) { |
| 75 |
close( fd ); |
| 76 |
return data_socket; |
| 77 |
} |
| 78 |
/* |
| 79 |
* タイムアウトが意図通りに働くように、分割してrecvする。 |
| 80 |
*/ |
| 81 |
while( 1 ) { |
| 82 |
n = recv( data_socket, buf, TRANSFER_SEGMENT_SIZE, 0 ); |
| 83 |
DEBUGPRINT1( "RECV: n=%d\n", n ); |
| 84 |
if( n < 0 ) { |
| 85 |
int ret; |
| 86 |
DEBUGPRINT1( "recv error. %s\n", strerror(errno) ); |
| 87 |
if( errno == EAGAIN ) { |
| 88 |
ret = LIBOFTP_ERROR_TIMEOUT; |
| 89 |
} else { |
| 90 |
ret = LIBOFTP_ERROR_OS; |
| 91 |
copy_strerror(); |
| 92 |
} |
| 93 |
close( fd ); |
| 94 |
close( data_socket ); |
| 95 |
return ret; |
| 96 |
} |
| 97 |
if( n == 0 ) { |
| 98 |
break; |
| 99 |
} |
| 100 |
|
| 101 |
if( write( fd, buf, n ) != n ) { |
| 102 |
DEBUGPRINT1( "write error. %s\n", strerror(errno) ); |
| 103 |
copy_strerror(); |
| 104 |
close( fd ); |
| 105 |
close( data_socket ); |
| 106 |
return LIBOFTP_ERROR_OS; |
| 107 |
} |
| 108 |
} |
| 109 |
close( fd ); |
| 110 |
close( data_socket ); |
| 111 |
|
| 112 |
/* |
| 113 |
* receive response. |
| 114 |
*/ |
| 115 |
res = ftp_receive_response( ftp, ftp->error_message, sizeof(ftp->error_message)-1 ); |
| 116 |
if( res != 226 ) { /* 226: Closing data connection. */ |
| 117 |
DEBUGPRINT1( "got illegal response %d\n", res ); |
| 118 |
return res < 0? res: LIBOFTP_ERROR_PROTOCOL; |
| 119 |
} |
| 120 |
|
| 121 |
return LIBOFTP_NOERROR; |
| 122 |
} |